diff -u linux-nvidia-tegra-5.15.0/Documentation/admin-guide/sysctl/net.rst linux-nvidia-tegra-5.15.0/Documentation/admin-guide/sysctl/net.rst --- linux-nvidia-tegra-5.15.0/Documentation/admin-guide/sysctl/net.rst +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/Documentation/devicetree/bindings/timestamp/nvidia,tegra194-hte.yaml linux-nvidia-tegra-5.15.0/Documentation/devicetree/bindings/timestamp/nvidia,tegra194-hte.yaml --- linux-nvidia-tegra-5.15.0/Documentation/devicetree/bindings/timestamp/nvidia,tegra194-hte.yaml +++ linux-nvidia-tegra-5.15.0/Documentation/devicetree/bindings/timestamp/nvidia,tegra194-hte.yaml @@ -4,7 +4,7 @@ $id: http://devicetree.org/schemas/timestamp/nvidia,tegra194-hte.yaml# $schema: http://devicetree.org/meta-schemas/core.yaml# -title: Tegra194 on chip generic hardware timestamping engine (HTE) +title: Tegra on chip generic hardware timestamping engine (HTE) provider maintainers: - Dipen Patel @@ -23,6 +23,8 @@ enum: - nvidia,tegra194-gte-aon - nvidia,tegra194-gte-lic + - nvidia,tegra234-gte-aon + - nvidia,tegra234-gte-lic reg: maxItems: 1 @@ -40,12 +42,20 @@ nvidia,slices: $ref: /schemas/types.yaml#/definitions/uint32 + deprecated: true description: HTE lines are arranged in 32 bit slice where each bit represents different line/signal that it can enable/configure for the timestamp. It is u32 - property and depends on the HTE instance in the chip. The value 3 is for - GPIO GTE and 11 for IRQ GTE. - enum: [3, 11] + property and the value depends on the HTE instance in the chip. The AON + GTE instances for both Tegra194 and Tegra234 has 3 slices. The Tegra194 + LIC instance has 11 slices and Tegra234 LIC has 17 slices. + enum: [3, 11, 17] + + nvidia,gpio-controller: + $ref: /schemas/types.yaml#/definitions/phandle + description: + The phandle to AON gpio controller instance. This is required to handle + namespace conversion between GPIO and GTE. '#timestamp-cells': description: @@ -59,9 +69,53 @@ - compatible - reg - interrupts - - nvidia,slices - "#timestamp-cells" +allOf: + - if: + properties: + compatible: + contains: + enum: + - nvidia,tegra194-gte-aon + - nvidia,tegra234-gte-aon + then: + properties: + nvidia,slices: + const: 3 + + - if: + properties: + compatible: + contains: + enum: + - nvidia,tegra194-gte-lic + then: + properties: + nvidia,slices: + const: 11 + + - if: + properties: + compatible: + contains: + enum: + - nvidia,tegra234-gte-lic + then: + properties: + nvidia,slices: + const: 17 + + - if: + properties: + compatible: + contains: + enum: + - nvidia,tegra234-gte-aon + then: + required: + - nvidia,gpio-controller + additionalProperties: false examples: @@ -71,7 +125,6 @@ reg = <0xc1e0000 0x10000>; interrupts = <0 13 0x4>; nvidia,int-threshold = <1>; - nvidia,slices = <3>; #timestamp-cells = <1>; }; @@ -81,7 +134,6 @@ reg = <0x3aa0000 0x10000>; interrupts = <0 11 0x4>; nvidia,int-threshold = <1>; - nvidia,slices = <11>; #timestamp-cells = <1>; }; diff -u linux-nvidia-tegra-5.15.0/Documentation/driver-api/hte/index.rst linux-nvidia-tegra-5.15.0/Documentation/driver-api/hte/index.rst --- linux-nvidia-tegra-5.15.0/Documentation/driver-api/hte/index.rst +++ linux-nvidia-tegra-5.15.0/Documentation/driver-api/hte/index.rst @@ -20,3 +20,3 @@ - tegra194-hte + tegra-hte reverted: --- linux-nvidia-tegra-5.15.0/Documentation/driver-api/hte/tegra194-hte.rst +++ linux-nvidia-tegra-5.15.0.orig/Documentation/driver-api/hte/tegra194-hte.rst @@ -1,49 +0,0 @@ -.. SPDX-License-Identifier: GPL-2.0+ - -HTE Kernel provider driver -========================== - -Description ------------ -The Nvidia tegra194 HTE provider driver implements two GTE -(Generic Timestamping Engine) instances: 1) GPIO GTE and 2) LIC -(Legacy Interrupt Controller) IRQ GTE. Both GTE instances get the -timestamp from the system counter TSC which has 31.25MHz clock rate, and the -driver converts clock tick rate to nanoseconds before storing it as timestamp -value. - -GPIO GTE --------- - -This GTE instance timestamps GPIO in real time. For that to happen GPIO -needs to be configured as input. The always on (AON) GPIO controller instance -supports timestamping GPIOs in real time and it has 39 GPIO lines. The GPIO GTE -and AON GPIO controller are tightly coupled as it requires very specific bits -to be set in GPIO config register before GPIO GTE can be used, for that GPIOLIB -adds two optional APIs as below. The GPIO GTE code supports both kernel -and userspace consumers. The kernel space consumers can directly talk to HTE -subsystem while userspace consumers timestamp requests go through GPIOLIB CDEV -framework to HTE subsystem. - -.. kernel-doc:: drivers/gpio/gpiolib.c - :functions: gpiod_enable_hw_timestamp_ns gpiod_disable_hw_timestamp_ns - -For userspace consumers, GPIO_V2_LINE_FLAG_EVENT_CLOCK_HTE flag must be -specified during IOCTL calls. Refer to ``tools/gpio/gpio-event-mon.c``, which -returns the timestamp in nanoseconds. - -LIC (Legacy Interrupt Controller) IRQ GTE ------------------------------------------ - -This GTE instance timestamps LIC IRQ lines in real time. There are 352 IRQ -lines which this instance can add timestamps to in real time. The hte -devicetree binding described at ``Documentation/devicetree/bindings/hte/`` -provides an example of how a consumer can request an IRQ line. Since it is a -one-to-one mapping with IRQ GTE provider, consumers can simply specify the IRQ -number that they are interested in. There is no userspace consumer support for -this GTE instance in the HTE framework. - -The provider source code of both IRQ and GPIO GTE instances is located at -``drivers/hte/hte-tegra194.c``. The test driver -``drivers/hte/hte-tegra194-test.c`` demonstrates HTE API usage for both IRQ -and GPIO GTE. diff -u linux-nvidia-tegra-5.15.0/MAINTAINERS linux-nvidia-tegra-5.15.0/MAINTAINERS --- linux-nvidia-tegra-5.15.0/MAINTAINERS +++ linux-nvidia-tegra-5.15.0/MAINTAINERS @@ -8659,6 +8659,9 @@ HTE SUBSYSTEM M: Dipen Patel +L: timestamp@lists.linux.dev +T: git git://git.kernel.org/pub/scm/linux/kernel/git/pateldipen1984/linux.git +Q: https://patchwork.kernel.org/project/timestamp/list/ S: Maintained F: Documentation/devicetree/bindings/timestamp/ F: Documentation/driver-api/hte/ diff -u linux-nvidia-tegra-5.15.0/Makefile linux-nvidia-tegra-5.15.0/Makefile --- linux-nvidia-tegra-5.15.0/Makefile +++ linux-nvidia-tegra-5.15.0/Makefile @@ -1,7 +1,7 @@ # SPDX-License-Identifier: GPL-2.0 VERSION = 5 PATCHLEVEL = 15 -SUBLEVEL = 136 +SUBLEVEL = 148 EXTRAVERSION = NAME = Trick or Treat diff -u linux-nvidia-tegra-5.15.0/arch/arm/boot/dts/am33xx.dtsi linux-nvidia-tegra-5.15.0/arch/arm/boot/dts/am33xx.dtsi --- linux-nvidia-tegra-5.15.0/arch/arm/boot/dts/am33xx.dtsi +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/arch/arm/boot/dts/dra7.dtsi linux-nvidia-tegra-5.15.0/arch/arm/boot/dts/dra7.dtsi --- linux-nvidia-tegra-5.15.0/arch/arm/boot/dts/dra7.dtsi +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/arch/arm/boot/dts/imx7s.dtsi linux-nvidia-tegra-5.15.0/arch/arm/boot/dts/imx7s.dtsi --- linux-nvidia-tegra-5.15.0/arch/arm/boot/dts/imx7s.dtsi +++ linux-nvidia-tegra-5.15.0/arch/arm/boot/dts/imx7s.dtsi @@ -438,7 +438,7 @@ }; gpt1: timer@302d0000 { - compatible = "fsl,imx7d-gpt", "fsl,imx6sx-gpt"; + compatible = "fsl,imx7d-gpt", "fsl,imx6dl-gpt"; reg = <0x302d0000 0x10000>; interrupts = ; clocks = <&clks IMX7D_GPT1_ROOT_CLK>, @@ -447,7 +447,7 @@ }; gpt2: timer@302e0000 { - compatible = "fsl,imx7d-gpt", "fsl,imx6sx-gpt"; + compatible = "fsl,imx7d-gpt", "fsl,imx6dl-gpt"; reg = <0x302e0000 0x10000>; interrupts = ; clocks = <&clks IMX7D_GPT2_ROOT_CLK>, @@ -457,7 +457,7 @@ }; gpt3: timer@302f0000 { - compatible = "fsl,imx7d-gpt", "fsl,imx6sx-gpt"; + compatible = "fsl,imx7d-gpt", "fsl,imx6dl-gpt"; reg = <0x302f0000 0x10000>; interrupts = ; clocks = <&clks IMX7D_GPT3_ROOT_CLK>, @@ -467,7 +467,7 @@ }; gpt4: timer@30300000 { - compatible = "fsl,imx7d-gpt", "fsl,imx6sx-gpt"; + compatible = "fsl,imx7d-gpt", "fsl,imx6dl-gpt"; reg = <0x30300000 0x10000>; interrupts = ; clocks = <&clks IMX7D_GPT4_ROOT_CLK>, diff -u linux-nvidia-tegra-5.15.0/arch/arm/boot/dts/motorola-mapphone-common.dtsi linux-nvidia-tegra-5.15.0/arch/arm/boot/dts/motorola-mapphone-common.dtsi --- linux-nvidia-tegra-5.15.0/arch/arm/boot/dts/motorola-mapphone-common.dtsi +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/arch/arm/boot/dts/qcom-apq8064.dtsi linux-nvidia-tegra-5.15.0/arch/arm/boot/dts/qcom-apq8064.dtsi --- linux-nvidia-tegra-5.15.0/arch/arm/boot/dts/qcom-apq8064.dtsi +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/arch/arm/boot/dts/qcom-mdm9615.dtsi linux-nvidia-tegra-5.15.0/arch/arm/boot/dts/qcom-mdm9615.dtsi --- linux-nvidia-tegra-5.15.0/arch/arm/boot/dts/qcom-mdm9615.dtsi +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/arch/arm/boot/dts/qcom-sdx55.dtsi linux-nvidia-tegra-5.15.0/arch/arm/boot/dts/qcom-sdx55.dtsi --- linux-nvidia-tegra-5.15.0/arch/arm/boot/dts/qcom-sdx55.dtsi +++ linux-nvidia-tegra-5.15.0/arch/arm/boot/dts/qcom-sdx55.dtsi @@ -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-nvidia-tegra-5.15.0/arch/arm/mach-imx/mmdc.c linux-nvidia-tegra-5.15.0/arch/arm/mach-imx/mmdc.c --- linux-nvidia-tegra-5.15.0/arch/arm/mach-imx/mmdc.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/arch/arm64/Kconfig linux-nvidia-tegra-5.15.0/arch/arm64/Kconfig --- linux-nvidia-tegra-5.15.0/arch/arm64/Kconfig +++ linux-nvidia-tegra-5.15.0/arch/arm64/Kconfig @@ -1156,6 +1156,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-nvidia-tegra-5.15.0/arch/arm64/boot/dts/freescale/fsl-ls208xa.dtsi linux-nvidia-tegra-5.15.0/arch/arm64/boot/dts/freescale/fsl-ls208xa.dtsi --- linux-nvidia-tegra-5.15.0/arch/arm64/boot/dts/freescale/fsl-ls208xa.dtsi +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/arch/arm64/boot/dts/freescale/imx8mm.dtsi linux-nvidia-tegra-5.15.0/arch/arm64/boot/dts/freescale/imx8mm.dtsi --- linux-nvidia-tegra-5.15.0/arch/arm64/boot/dts/freescale/imx8mm.dtsi +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/arch/arm64/boot/dts/freescale/imx8mn.dtsi linux-nvidia-tegra-5.15.0/arch/arm64/boot/dts/freescale/imx8mn.dtsi --- linux-nvidia-tegra-5.15.0/arch/arm64/boot/dts/freescale/imx8mn.dtsi +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/arch/arm64/boot/dts/freescale/imx8mp.dtsi linux-nvidia-tegra-5.15.0/arch/arm64/boot/dts/freescale/imx8mp.dtsi --- linux-nvidia-tegra-5.15.0/arch/arm64/boot/dts/freescale/imx8mp.dtsi +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/arch/arm64/boot/dts/freescale/imx8mq.dtsi linux-nvidia-tegra-5.15.0/arch/arm64/boot/dts/freescale/imx8mq.dtsi --- linux-nvidia-tegra-5.15.0/arch/arm64/boot/dts/freescale/imx8mq.dtsi +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/arch/arm64/boot/dts/marvell/armada-3720-turris-mox.dts linux-nvidia-tegra-5.15.0/arch/arm64/boot/dts/marvell/armada-3720-turris-mox.dts --- linux-nvidia-tegra-5.15.0/arch/arm64/boot/dts/marvell/armada-3720-turris-mox.dts +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/arch/arm64/boot/dts/mediatek/mt7622-bananapi-bpi-r64.dts linux-nvidia-tegra-5.15.0/arch/arm64/boot/dts/mediatek/mt7622-bananapi-bpi-r64.dts --- linux-nvidia-tegra-5.15.0/arch/arm64/boot/dts/mediatek/mt7622-bananapi-bpi-r64.dts +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/arch/arm64/boot/dts/mediatek/mt8183-kukui.dtsi linux-nvidia-tegra-5.15.0/arch/arm64/boot/dts/mediatek/mt8183-kukui.dtsi --- linux-nvidia-tegra-5.15.0/arch/arm64/boot/dts/mediatek/mt8183-kukui.dtsi +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/arch/arm64/boot/dts/mediatek/mt8183.dtsi linux-nvidia-tegra-5.15.0/arch/arm64/boot/dts/mediatek/mt8183.dtsi --- linux-nvidia-tegra-5.15.0/arch/arm64/boot/dts/mediatek/mt8183.dtsi +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/arch/arm64/boot/dts/nvidia/tegra234.dtsi linux-nvidia-tegra-5.15.0/arch/arm64/boot/dts/nvidia/tegra234.dtsi --- linux-nvidia-tegra-5.15.0/arch/arm64/boot/dts/nvidia/tegra234.dtsi +++ linux-nvidia-tegra-5.15.0/arch/arm64/boot/dts/nvidia/tegra234.dtsi @@ -1151,6 +1151,14 @@ clock-names = "fuse"; }; + hte_lic: hardware-timestamp@3aa0000 { + compatible = "nvidia,tegra234-gte-lic"; + reg = <0x0 0x3aa0000 0x0 0x10000>; + interrupts = ; + nvidia,int-threshold = <1>; + #timestamp-cells = <1>; + }; + hsp_top0: hsp@3c00000 { compatible = "nvidia,tegra234-hsp", "nvidia,tegra194-hsp"; reg = <0x03c00000 0xa0000>; @@ -1818,6 +1826,15 @@ #mbox-cells = <2>; }; + hte_aon: hardware-timestamp@c1e0000 { + compatible = "nvidia,tegra234-gte-aon"; + reg = <0x0 0xc1e0000 0x0 0x10000>; + interrupts = ; + nvidia,int-threshold = <1>; + nvidia,gpio-controller = <&gpio_aon>; + #timestamp-cells = <1>; + }; + gen2_i2c: i2c@c240000 { compatible = "nvidia,tegra194-i2c"; reg = <0xc240000 0x100>; diff -u linux-nvidia-tegra-5.15.0/arch/arm64/boot/dts/qcom/apq8016-sbc.dts linux-nvidia-tegra-5.15.0/arch/arm64/boot/dts/qcom/apq8016-sbc.dts --- linux-nvidia-tegra-5.15.0/arch/arm64/boot/dts/qcom/apq8016-sbc.dts +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/arch/arm64/boot/dts/qcom/ipq6018.dtsi linux-nvidia-tegra-5.15.0/arch/arm64/boot/dts/qcom/ipq6018.dtsi --- linux-nvidia-tegra-5.15.0/arch/arm64/boot/dts/qcom/ipq6018.dtsi +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/arch/arm64/boot/dts/qcom/msm8916.dtsi linux-nvidia-tegra-5.15.0/arch/arm64/boot/dts/qcom/msm8916.dtsi --- linux-nvidia-tegra-5.15.0/arch/arm64/boot/dts/qcom/msm8916.dtsi +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/arch/arm64/boot/dts/qcom/msm8992-xiaomi-libra.dts linux-nvidia-tegra-5.15.0/arch/arm64/boot/dts/qcom/msm8992-xiaomi-libra.dts --- linux-nvidia-tegra-5.15.0/arch/arm64/boot/dts/qcom/msm8992-xiaomi-libra.dts +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/arch/arm64/boot/dts/qcom/qrb5165-rb5.dts linux-nvidia-tegra-5.15.0/arch/arm64/boot/dts/qcom/qrb5165-rb5.dts --- linux-nvidia-tegra-5.15.0/arch/arm64/boot/dts/qcom/qrb5165-rb5.dts +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/arch/arm64/boot/dts/qcom/sc7180.dtsi linux-nvidia-tegra-5.15.0/arch/arm64/boot/dts/qcom/sc7180.dtsi --- linux-nvidia-tegra-5.15.0/arch/arm64/boot/dts/qcom/sc7180.dtsi +++ linux-nvidia-tegra-5.15.0/arch/arm64/boot/dts/qcom/sc7180.dtsi @@ -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-nvidia-tegra-5.15.0/arch/arm64/boot/dts/qcom/sc7280.dtsi linux-nvidia-tegra-5.15.0/arch/arm64/boot/dts/qcom/sc7280.dtsi --- linux-nvidia-tegra-5.15.0/arch/arm64/boot/dts/qcom/sc7280.dtsi +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/arch/arm64/boot/dts/qcom/sdm845-db845c.dts linux-nvidia-tegra-5.15.0/arch/arm64/boot/dts/qcom/sdm845-db845c.dts --- linux-nvidia-tegra-5.15.0/arch/arm64/boot/dts/qcom/sdm845-db845c.dts +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/arch/arm64/boot/dts/qcom/sdm845.dtsi linux-nvidia-tegra-5.15.0/arch/arm64/boot/dts/qcom/sdm845.dtsi --- linux-nvidia-tegra-5.15.0/arch/arm64/boot/dts/qcom/sdm845.dtsi +++ linux-nvidia-tegra-5.15.0/arch/arm64/boot/dts/qcom/sdm845.dtsi @@ -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-nvidia-tegra-5.15.0/arch/arm64/boot/dts/qcom/sm8150.dtsi linux-nvidia-tegra-5.15.0/arch/arm64/boot/dts/qcom/sm8150.dtsi --- linux-nvidia-tegra-5.15.0/arch/arm64/boot/dts/qcom/sm8150.dtsi +++ linux-nvidia-tegra-5.15.0/arch/arm64/boot/dts/qcom/sm8150.dtsi @@ -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-nvidia-tegra-5.15.0/arch/arm64/boot/dts/qcom/sm8250.dtsi linux-nvidia-tegra-5.15.0/arch/arm64/boot/dts/qcom/sm8250.dtsi --- linux-nvidia-tegra-5.15.0/arch/arm64/boot/dts/qcom/sm8250.dtsi +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/arch/arm64/boot/dts/rockchip/rk3399.dtsi linux-nvidia-tegra-5.15.0/arch/arm64/boot/dts/rockchip/rk3399.dtsi --- linux-nvidia-tegra-5.15.0/arch/arm64/boot/dts/rockchip/rk3399.dtsi +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/arch/arm64/boot/dts/ti/k3-am65-main.dtsi linux-nvidia-tegra-5.15.0/arch/arm64/boot/dts/ti/k3-am65-main.dtsi --- linux-nvidia-tegra-5.15.0/arch/arm64/boot/dts/ti/k3-am65-main.dtsi +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/arch/arm64/configs/defconfig linux-nvidia-tegra-5.15.0/arch/arm64/configs/defconfig --- linux-nvidia-tegra-5.15.0/arch/arm64/configs/defconfig +++ linux-nvidia-tegra-5.15.0/arch/arm64/configs/defconfig @@ -356,6 +356,7 @@ CONFIG_NET_DSA_MSCC_FELIX=m CONFIG_AMD_XGBE=y CONFIG_NET_XGENE=y +CONFIG_AQTION=m CONFIG_ATL1C=m CONFIG_BCMGENET=m CONFIG_BNX2X=m @@ -430,6 +431,7 @@ CONFIG_MWIFIEX_PCIE=m CONFIG_WL18XX=m CONFIG_WLCORE_SDIO=m +CONFIG_INPUT_JOYDEV=m CONFIG_INPUT_EVDEV=y CONFIG_KEYBOARD_ADC=m CONFIG_KEYBOARD_GPIO=y @@ -860,6 +862,7 @@ CONFIG_SND_SOC_LPASS_VA_MACRO=m CONFIG_SND_SIMPLE_CARD=m CONFIG_SND_AUDIO_GRAPH_CARD=m +CONFIG_HIDRAW=y CONFIG_HID_MULTITOUCH=m CONFIG_I2C_HID_ACPI=m CONFIG_I2C_HID_OF=m @@ -1008,6 +1011,7 @@ CONFIG_RENESAS_USB_DMAC=m CONFIG_TI_K3_UDMA=y CONFIG_TI_K3_UDMA_GLUE_LAYER=y +CONFIG_DMATEST=m CONFIG_UIO=m CONFIG_VFIO=y CONFIG_VFIO_PCI=y @@ -1019,6 +1023,7 @@ CONFIG_STAGING=y CONFIG_STAGING_MEDIA=y CONFIG_VIDEO_HANTRO=m +CONFIG_ASHMEM=m CONFIG_CHROME_PLATFORMS=y CONFIG_CROS_EC=y CONFIG_CROS_EC_I2C=y @@ -1207,6 +1212,8 @@ CONFIG_QCOM_L2_PMU=y CONFIG_QCOM_L3_PMU=y CONFIG_HISI_PMU=y +CONFIG_ANDROID=y +CONFIG_ANDROID_BINDER_IPC=m CONFIG_NVMEM_IMX_OCOTP=y CONFIG_NVMEM_IMX_OCOTP_SCU=y CONFIG_MTK_EFUSE=y @@ -1288,13 +1295,15 @@ CONFIG_FORTIFY_SOURCE=y CONFIG_SECURITY_SELINUX=y CONFIG_SECURITY_YAMA=y -CONFIG_LSM="lockdown,yama,loadpin,safesetid,integrity,selinux,bpf" +CONFIG_LSM="landlock,lockdown,yama,loadpin,safesetid,integrity,selinux,bpf" CONFIG_CRYPTO_TEST=m CONFIG_CRYPTO_ECHAINIV=y CONFIG_CRYPTO_LZO=m CONFIG_CRYPTO_ANSI_CPRNG=y -CONFIG_CRYPTO_USER_API_HASH=y +CONFIG_CRYPTO_USER_API_HASH=m +CONFIG_CRYPTO_USER_API_SKCIPHER=m CONFIG_CRYPTO_USER_API_RNG=m +CONFIG_CRYPTO_USER_API_AEAD=m CONFIG_CRYPTO_DEV_SUN8I_CE=m CONFIG_CRYPTO_DEV_FSL_CAAM=m CONFIG_CRYPTO_DEV_FSL_DPAA2_CAAM=m diff -u linux-nvidia-tegra-5.15.0/arch/arm64/configs/tegra_prod_defconfig linux-nvidia-tegra-5.15.0/arch/arm64/configs/tegra_prod_defconfig --- linux-nvidia-tegra-5.15.0/arch/arm64/configs/tegra_prod_defconfig +++ linux-nvidia-tegra-5.15.0/arch/arm64/configs/tegra_prod_defconfig @@ -1183,7 +1183,7 @@ CONFIG_FORTIFY_SOURCE=y CONFIG_SECURITY_SELINUX=y CONFIG_SECURITY_YAMA=y -CONFIG_LSM="lockdown,yama,loadpin,safesetid,integrity,selinux,bpf" +CONFIG_LSM="landlock,lockdown,yama,loadpin,safesetid,integrity,selinux,bpf" CONFIG_CRYPTO_ECHAINIV=y CONFIG_CRYPTO_ANSI_CPRNG=y CONFIG_CRYPTO_USER_API_HASH=y diff -u linux-nvidia-tegra-5.15.0/arch/arm64/include/asm/pgtable.h linux-nvidia-tegra-5.15.0/arch/arm64/include/asm/pgtable.h --- linux-nvidia-tegra-5.15.0/arch/arm64/include/asm/pgtable.h +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/arch/arm64/kvm/arm.c linux-nvidia-tegra-5.15.0/arch/arm64/kvm/arm.c --- linux-nvidia-tegra-5.15.0/arch/arm64/kvm/arm.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/arch/arm64/kvm/vgic/vgic-its.c linux-nvidia-tegra-5.15.0/arch/arm64/kvm/vgic/vgic-its.c --- linux-nvidia-tegra-5.15.0/arch/arm64/kvm/vgic/vgic-its.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/arch/arm64/kvm/vgic/vgic.h linux-nvidia-tegra-5.15.0/arch/arm64/kvm/vgic/vgic.h --- linux-nvidia-tegra-5.15.0/arch/arm64/kvm/vgic/vgic.h +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/arch/ia64/mm/contig.c linux-nvidia-tegra-5.15.0/arch/ia64/mm/contig.c --- linux-nvidia-tegra-5.15.0/arch/ia64/mm/contig.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/arch/mips/Kconfig linux-nvidia-tegra-5.15.0/arch/mips/Kconfig --- linux-nvidia-tegra-5.15.0/arch/mips/Kconfig +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/arch/mips/alchemy/devboards/db1200.c linux-nvidia-tegra-5.15.0/arch/mips/alchemy/devboards/db1200.c --- linux-nvidia-tegra-5.15.0/arch/mips/alchemy/devboards/db1200.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/arch/mips/kernel/setup.c linux-nvidia-tegra-5.15.0/arch/mips/kernel/setup.c --- linux-nvidia-tegra-5.15.0/arch/mips/kernel/setup.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/arch/parisc/kernel/entry.S linux-nvidia-tegra-5.15.0/arch/parisc/kernel/entry.S --- linux-nvidia-tegra-5.15.0/arch/parisc/kernel/entry.S +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/arch/parisc/kernel/head.S linux-nvidia-tegra-5.15.0/arch/parisc/kernel/head.S --- linux-nvidia-tegra-5.15.0/arch/parisc/kernel/head.S +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/arch/powerpc/Makefile linux-nvidia-tegra-5.15.0/arch/powerpc/Makefile --- linux-nvidia-tegra-5.15.0/arch/powerpc/Makefile +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/arch/powerpc/boot/crt0.S linux-nvidia-tegra-5.15.0/arch/powerpc/boot/crt0.S --- linux-nvidia-tegra-5.15.0/arch/powerpc/boot/crt0.S +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/arch/powerpc/include/asm/book3s/32/mmu-hash.h linux-nvidia-tegra-5.15.0/arch/powerpc/include/asm/book3s/32/mmu-hash.h --- linux-nvidia-tegra-5.15.0/arch/powerpc/include/asm/book3s/32/mmu-hash.h +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/arch/powerpc/include/asm/interrupt.h linux-nvidia-tegra-5.15.0/arch/powerpc/include/asm/interrupt.h --- linux-nvidia-tegra-5.15.0/arch/powerpc/include/asm/interrupt.h +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/arch/powerpc/include/asm/sections.h linux-nvidia-tegra-5.15.0/arch/powerpc/include/asm/sections.h --- linux-nvidia-tegra-5.15.0/arch/powerpc/include/asm/sections.h +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/arch/powerpc/kernel/entry_32.S linux-nvidia-tegra-5.15.0/arch/powerpc/kernel/entry_32.S --- linux-nvidia-tegra-5.15.0/arch/powerpc/kernel/entry_32.S +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/arch/powerpc/kernel/head_32.h linux-nvidia-tegra-5.15.0/arch/powerpc/kernel/head_32.h --- linux-nvidia-tegra-5.15.0/arch/powerpc/kernel/head_32.h +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/arch/powerpc/kernel/interrupt.c linux-nvidia-tegra-5.15.0/arch/powerpc/kernel/interrupt.c --- linux-nvidia-tegra-5.15.0/arch/powerpc/kernel/interrupt.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/arch/powerpc/kernel/setup-common.c linux-nvidia-tegra-5.15.0/arch/powerpc/kernel/setup-common.c --- linux-nvidia-tegra-5.15.0/arch/powerpc/kernel/setup-common.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/arch/powerpc/kernel/trace/ftrace_64_mprofile.S linux-nvidia-tegra-5.15.0/arch/powerpc/kernel/trace/ftrace_64_mprofile.S --- linux-nvidia-tegra-5.15.0/arch/powerpc/kernel/trace/ftrace_64_mprofile.S +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/arch/powerpc/kernel/traps.c linux-nvidia-tegra-5.15.0/arch/powerpc/kernel/traps.c --- linux-nvidia-tegra-5.15.0/arch/powerpc/kernel/traps.c +++ linux-nvidia-tegra-5.15.0/arch/powerpc/kernel/traps.c @@ -1153,6 +1153,7 @@ __single_step_exception(regs); } +#ifdef CONFIG_PPC_FPU_REGS static inline int __parse_fpscr(unsigned long fpscr) { int ret = FPE_FLTUNK; @@ -1179,6 +1180,7 @@ return ret; } +#endif static void parse_fpe(struct pt_regs *regs) { diff -u linux-nvidia-tegra-5.15.0/arch/powerpc/kernel/vmlinux.lds.S linux-nvidia-tegra-5.15.0/arch/powerpc/kernel/vmlinux.lds.S --- linux-nvidia-tegra-5.15.0/arch/powerpc/kernel/vmlinux.lds.S +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/arch/powerpc/lib/Makefile linux-nvidia-tegra-5.15.0/arch/powerpc/lib/Makefile --- linux-nvidia-tegra-5.15.0/arch/powerpc/lib/Makefile +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/arch/powerpc/mm/mem.c linux-nvidia-tegra-5.15.0/arch/powerpc/mm/mem.c --- linux-nvidia-tegra-5.15.0/arch/powerpc/mm/mem.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/arch/powerpc/perf/core-book3s.c linux-nvidia-tegra-5.15.0/arch/powerpc/perf/core-book3s.c --- linux-nvidia-tegra-5.15.0/arch/powerpc/perf/core-book3s.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/arch/powerpc/perf/imc-pmu.c linux-nvidia-tegra-5.15.0/arch/powerpc/perf/imc-pmu.c --- linux-nvidia-tegra-5.15.0/arch/powerpc/perf/imc-pmu.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/arch/powerpc/platforms/powernv/opal-prd.c linux-nvidia-tegra-5.15.0/arch/powerpc/platforms/powernv/opal-prd.c --- linux-nvidia-tegra-5.15.0/arch/powerpc/platforms/powernv/opal-prd.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/arch/powerpc/platforms/pseries/iommu.c linux-nvidia-tegra-5.15.0/arch/powerpc/platforms/pseries/iommu.c --- linux-nvidia-tegra-5.15.0/arch/powerpc/platforms/pseries/iommu.c +++ linux-nvidia-tegra-5.15.0/arch/powerpc/platforms/pseries/iommu.c @@ -1250,7 +1250,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; @@ -1265,7 +1264,6 @@ if (find_existing_ddw(pdn, &dev->dev.archdata.dma_offset, &len)) { direct_mapping = (len >= max_ram_len); - ddw_enabled = true; goto out_unlock; } @@ -1420,8 +1418,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 { @@ -1468,7 +1466,6 @@ spin_unlock(&dma_win_list_lock); dev->dev.archdata.dma_offset = win_addr; - ddw_enabled = true; goto out_unlock; out_del_list: @@ -1504,10 +1501,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-nvidia-tegra-5.15.0/arch/powerpc/platforms/pseries/lpar.c linux-nvidia-tegra-5.15.0/arch/powerpc/platforms/pseries/lpar.c --- linux-nvidia-tegra-5.15.0/arch/powerpc/platforms/pseries/lpar.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/arch/riscv/kernel/module.c linux-nvidia-tegra-5.15.0/arch/riscv/kernel/module.c --- linux-nvidia-tegra-5.15.0/arch/riscv/kernel/module.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/arch/riscv/kernel/patch.c linux-nvidia-tegra-5.15.0/arch/riscv/kernel/patch.c --- linux-nvidia-tegra-5.15.0/arch/riscv/kernel/patch.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/arch/riscv/kernel/probes/simulate-insn.c linux-nvidia-tegra-5.15.0/arch/riscv/kernel/probes/simulate-insn.c --- linux-nvidia-tegra-5.15.0/arch/riscv/kernel/probes/simulate-insn.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/arch/s390/include/asm/pci_io.h linux-nvidia-tegra-5.15.0/arch/s390/include/asm/pci_io.h --- linux-nvidia-tegra-5.15.0/arch/s390/include/asm/pci_io.h +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/arch/s390/kernel/setup.c linux-nvidia-tegra-5.15.0/arch/s390/kernel/setup.c --- linux-nvidia-tegra-5.15.0/arch/s390/kernel/setup.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/arch/s390/mm/pgtable.c linux-nvidia-tegra-5.15.0/arch/s390/mm/pgtable.c --- linux-nvidia-tegra-5.15.0/arch/s390/mm/pgtable.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/arch/s390/pci/pci_mmio.c linux-nvidia-tegra-5.15.0/arch/s390/pci/pci_mmio.c --- linux-nvidia-tegra-5.15.0/arch/s390/pci/pci_mmio.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/arch/sh/Kconfig.debug linux-nvidia-tegra-5.15.0/arch/sh/Kconfig.debug --- linux-nvidia-tegra-5.15.0/arch/sh/Kconfig.debug +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/arch/x86/events/intel/lbr.c linux-nvidia-tegra-5.15.0/arch/x86/events/intel/lbr.c --- linux-nvidia-tegra-5.15.0/arch/x86/events/intel/lbr.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/arch/x86/events/intel/pt.c linux-nvidia-tegra-5.15.0/arch/x86/events/intel/pt.c --- linux-nvidia-tegra-5.15.0/arch/x86/events/intel/pt.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/arch/x86/events/perf_event.h linux-nvidia-tegra-5.15.0/arch/x86/events/perf_event.h --- linux-nvidia-tegra-5.15.0/arch/x86/events/perf_event.h +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/arch/x86/include/asm/msr-index.h linux-nvidia-tegra-5.15.0/arch/x86/include/asm/msr-index.h --- linux-nvidia-tegra-5.15.0/arch/x86/include/asm/msr-index.h +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/arch/x86/include/asm/uaccess.h linux-nvidia-tegra-5.15.0/arch/x86/include/asm/uaccess.h --- linux-nvidia-tegra-5.15.0/arch/x86/include/asm/uaccess.h +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/arch/x86/kernel/acpi/boot.c linux-nvidia-tegra-5.15.0/arch/x86/kernel/acpi/boot.c --- linux-nvidia-tegra-5.15.0/arch/x86/kernel/acpi/boot.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/arch/x86/kernel/alternative.c linux-nvidia-tegra-5.15.0/arch/x86/kernel/alternative.c --- linux-nvidia-tegra-5.15.0/arch/x86/kernel/alternative.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/arch/x86/kernel/cpu/amd.c linux-nvidia-tegra-5.15.0/arch/x86/kernel/cpu/amd.c --- linux-nvidia-tegra-5.15.0/arch/x86/kernel/cpu/amd.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/arch/x86/kernel/cpu/bugs.c linux-nvidia-tegra-5.15.0/arch/x86/kernel/cpu/bugs.c --- linux-nvidia-tegra-5.15.0/arch/x86/kernel/cpu/bugs.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/arch/x86/kernel/cpu/hygon.c linux-nvidia-tegra-5.15.0/arch/x86/kernel/cpu/hygon.c --- linux-nvidia-tegra-5.15.0/arch/x86/kernel/cpu/hygon.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/arch/x86/kernel/head64.c linux-nvidia-tegra-5.15.0/arch/x86/kernel/head64.c --- linux-nvidia-tegra-5.15.0/arch/x86/kernel/head64.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/arch/x86/kernel/i8259.c linux-nvidia-tegra-5.15.0/arch/x86/kernel/i8259.c --- linux-nvidia-tegra-5.15.0/arch/x86/kernel/i8259.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/arch/x86/kernel/kprobes/core.c linux-nvidia-tegra-5.15.0/arch/x86/kernel/kprobes/core.c --- linux-nvidia-tegra-5.15.0/arch/x86/kernel/kprobes/core.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/arch/x86/kernel/setup.c linux-nvidia-tegra-5.15.0/arch/x86/kernel/setup.c --- linux-nvidia-tegra-5.15.0/arch/x86/kernel/setup.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/arch/x86/kernel/tsc.c linux-nvidia-tegra-5.15.0/arch/x86/kernel/tsc.c --- linux-nvidia-tegra-5.15.0/arch/x86/kernel/tsc.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/arch/x86/kernel/vmlinux.lds.S linux-nvidia-tegra-5.15.0/arch/x86/kernel/vmlinux.lds.S --- linux-nvidia-tegra-5.15.0/arch/x86/kernel/vmlinux.lds.S +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/arch/x86/kvm/emulate.c linux-nvidia-tegra-5.15.0/arch/x86/kvm/emulate.c --- linux-nvidia-tegra-5.15.0/arch/x86/kvm/emulate.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/arch/x86/kvm/hyperv.c linux-nvidia-tegra-5.15.0/arch/x86/kvm/hyperv.c --- linux-nvidia-tegra-5.15.0/arch/x86/kvm/hyperv.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/arch/x86/kvm/lapic.c linux-nvidia-tegra-5.15.0/arch/x86/kvm/lapic.c --- linux-nvidia-tegra-5.15.0/arch/x86/kvm/lapic.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/arch/x86/kvm/svm/svm.c linux-nvidia-tegra-5.15.0/arch/x86/kvm/svm/svm.c --- linux-nvidia-tegra-5.15.0/arch/x86/kvm/svm/svm.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/arch/x86/kvm/x86.c linux-nvidia-tegra-5.15.0/arch/x86/kvm/x86.c --- linux-nvidia-tegra-5.15.0/arch/x86/kvm/x86.c +++ linux-nvidia-tegra-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 diff -u linux-nvidia-tegra-5.15.0/arch/x86/kvm/x86.h linux-nvidia-tegra-5.15.0/arch/x86/kvm/x86.h --- linux-nvidia-tegra-5.15.0/arch/x86/kvm/x86.h +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/arch/x86/mm/numa.c linux-nvidia-tegra-5.15.0/arch/x86/mm/numa.c --- linux-nvidia-tegra-5.15.0/arch/x86/mm/numa.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/arch/x86/net/bpf_jit_comp.c linux-nvidia-tegra-5.15.0/arch/x86/net/bpf_jit_comp.c --- linux-nvidia-tegra-5.15.0/arch/x86/net/bpf_jit_comp.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/block/bio.c linux-nvidia-tegra-5.15.0/block/bio.c --- linux-nvidia-tegra-5.15.0/block/bio.c +++ linux-nvidia-tegra-5.15.0/block/bio.c @@ -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-nvidia-tegra-5.15.0/block/blk-cgroup.c linux-nvidia-tegra-5.15.0/block/blk-cgroup.c --- linux-nvidia-tegra-5.15.0/block/blk-cgroup.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/block/blk-core.c linux-nvidia-tegra-5.15.0/block/blk-core.c --- linux-nvidia-tegra-5.15.0/block/blk-core.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/block/blk-settings.c linux-nvidia-tegra-5.15.0/block/blk-settings.c --- linux-nvidia-tegra-5.15.0/block/blk-settings.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/block/blk-throttle.c linux-nvidia-tegra-5.15.0/block/blk-throttle.c --- linux-nvidia-tegra-5.15.0/block/blk-throttle.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/block/fops.c linux-nvidia-tegra-5.15.0/block/fops.c --- linux-nvidia-tegra-5.15.0/block/fops.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/block/genhd.c linux-nvidia-tegra-5.15.0/block/genhd.c --- linux-nvidia-tegra-5.15.0/block/genhd.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/block/ioctl.c linux-nvidia-tegra-5.15.0/block/ioctl.c --- linux-nvidia-tegra-5.15.0/block/ioctl.c +++ linux-nvidia-tegra-5.15.0/block/ioctl.c @@ -18,7 +18,7 @@ { struct gendisk *disk = bdev->bd_disk; struct blkpg_partition p; - long long start, length; + sector_t start, length; if (!capable(CAP_SYS_ADMIN)) return -EACCES; @@ -33,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-nvidia-tegra-5.15.0/crypto/pcrypt.c linux-nvidia-tegra-5.15.0/crypto/pcrypt.c --- linux-nvidia-tegra-5.15.0/crypto/pcrypt.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/debian.master/abi/abiname +++ linux-nvidia-tegra-5.15.0.orig/debian.master/abi/abiname @@ -1 +0,0 @@ -94 reverted: --- linux-nvidia-tegra-5.15.0/debian.master/abi/amd64/generic +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/debian.master/abi/amd64/generic.compiler +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/debian.master/abi/amd64/generic.modules +++ linux-nvidia-tegra-5.15.0.orig/debian.master/abi/amd64/generic.modules @@ -1,6036 +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 -f81604 -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-m058ssan -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-pcf85263 -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-nvidia-tegra-5.15.0/debian.master/abi/amd64/generic.modules.builtin +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/debian.master/abi/amd64/generic.retpoline +++ linux-nvidia-tegra-5.15.0.orig/debian.master/abi/amd64/generic.retpoline @@ -1 +0,0 @@ -# retpoline v1.0 reverted: --- linux-nvidia-tegra-5.15.0/debian.master/abi/arm64/generic +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/debian.master/abi/arm64/generic-64k +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/debian.master/abi/arm64/generic-64k.compiler +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/debian.master/abi/arm64/generic-64k.modules +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/debian.master/abi/arm64/generic-64k.modules.builtin +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/debian.master/abi/arm64/generic-64k.retpoline +++ linux-nvidia-tegra-5.15.0.orig/debian.master/abi/arm64/generic-64k.retpoline @@ -1 +0,0 @@ -# RETPOLINE NOT ENABLED reverted: --- linux-nvidia-tegra-5.15.0/debian.master/abi/arm64/generic.compiler +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/debian.master/abi/arm64/generic.modules +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/debian.master/abi/arm64/generic.modules.builtin +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/debian.master/abi/arm64/generic.retpoline +++ linux-nvidia-tegra-5.15.0.orig/debian.master/abi/arm64/generic.retpoline @@ -1 +0,0 @@ -# RETPOLINE NOT ENABLED reverted: --- linux-nvidia-tegra-5.15.0/debian.master/abi/armhf/generic +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/debian.master/abi/armhf/generic-lpae +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/debian.master/abi/armhf/generic-lpae.compiler +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/debian.master/abi/armhf/generic-lpae.modules +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/debian.master/abi/armhf/generic-lpae.modules.builtin +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/debian.master/abi/armhf/generic-lpae.retpoline +++ linux-nvidia-tegra-5.15.0.orig/debian.master/abi/armhf/generic-lpae.retpoline @@ -1 +0,0 @@ -# RETPOLINE NOT ENABLED reverted: --- linux-nvidia-tegra-5.15.0/debian.master/abi/armhf/generic.compiler +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/debian.master/abi/armhf/generic.modules +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/debian.master/abi/armhf/generic.modules.builtin +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/debian.master/abi/armhf/generic.retpoline +++ linux-nvidia-tegra-5.15.0.orig/debian.master/abi/armhf/generic.retpoline @@ -1 +0,0 @@ -# RETPOLINE NOT ENABLED reverted: --- linux-nvidia-tegra-5.15.0/debian.master/abi/fwinfo +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/debian.master/abi/ppc64el/generic +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/debian.master/abi/ppc64el/generic.compiler +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/debian.master/abi/ppc64el/generic.modules +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/debian.master/abi/ppc64el/generic.modules.builtin +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/debian.master/abi/ppc64el/generic.retpoline +++ linux-nvidia-tegra-5.15.0.orig/debian.master/abi/ppc64el/generic.retpoline @@ -1 +0,0 @@ -# RETPOLINE NOT ENABLED reverted: --- linux-nvidia-tegra-5.15.0/debian.master/abi/s390x/generic +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/debian.master/abi/s390x/generic.compiler +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/debian.master/abi/s390x/generic.modules +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/debian.master/abi/s390x/generic.modules.builtin +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/debian.master/abi/s390x/generic.retpoline +++ linux-nvidia-tegra-5.15.0.orig/debian.master/abi/s390x/generic.retpoline @@ -1 +0,0 @@ -# RETPOLINE NOT ENABLED reverted: --- linux-nvidia-tegra-5.15.0/debian.master/abi/version +++ linux-nvidia-tegra-5.15.0.orig/debian.master/abi/version @@ -1 +0,0 @@ -5.15.0-94.104 diff -u linux-nvidia-tegra-5.15.0/debian.master/changelog linux-nvidia-tegra-5.15.0/debian.master/changelog --- linux-nvidia-tegra-5.15.0/debian.master/changelog +++ linux-nvidia-tegra-5.15.0/debian.master/changelog @@ -1,15 +1,942 @@ -linux (5.15.0-97.107) jammy; urgency=medium +linux (5.15.0-105.115) jammy; urgency=medium - * jammy/linux: 5.15.0-97.107 -proposed tracker (LP: #2052600) + * jammy/linux: 5.15.0-105.115 -proposed tracker (LP: #2061372) + + * Jammy update: v5.15.149 upstream stable release (LP: #2059014) // CIFS + stopped working/is unstable with kernel update to 5.15.0-102.112 + (LP: #2060780) + - smb3: Replace smb2pdu 1-element arrays with flex-arrays + + -- Roxana Nicolescu Mon, 15 Apr 2024 10:38:15 +0200 + +linux (5.15.0-103.113) jammy; urgency=medium + + * jammy/linux: 5.15.0-103.113 -proposed tracker (LP: #2059683) * Packaging resync (LP: #1786013) + - [Packaging] drop getabis data + + * Remove getabis scripts (LP: #2059143) + - [Packaging] Remove getabis + + * CVE-2023-24023 + - Bluetooth: Add more enc key size check + + * CVE-2023-52600 + - jfs: fix uaf in jfs_evict_inode + + * Jammy update: v5.15.149 upstream stable release (LP: #2059014) // + CVE-2023-52603 + - UBSAN: array-index-out-of-bounds in dtSplitRoot + + * CVE-2024-26581 + - netfilter: nft_set_rbtree: skip end interval element from gc + + -- Manuel Diewald Thu, 28 Mar 2024 19:21:10 +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-51781 - - appletalk: Fix Use-After-Free in atalk_ioctl + * CVE-2023-0340 + - vhost: use kzalloc() instead of kmalloc() followed by memset() * CVE-2023-51780 - atm: Fix Use-After-Free in do_vcc_ioctl @@ -17,13 +944,1135 @@ * 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-2024-0646 - - net: tls, update curr on splice as well + * 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 - -- Manuel Diewald Wed, 07 Feb 2024 11:17:02 +0100 + -- Stefan Bader Fri, 02 Feb 2024 14:05:20 +0100 linux (5.15.0-94.104) jammy; urgency=medium diff -u linux-nvidia-tegra-5.15.0/debian.master/config/annotations linux-nvidia-tegra-5.15.0/debian.master/config/annotations --- linux-nvidia-tegra-5.15.0/debian.master/config/annotations +++ linux-nvidia-tegra-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'}> @@ -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'}> @@ -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'}> diff -u linux-nvidia-tegra-5.15.0/debian.master/control.d/generic.inclusion-list linux-nvidia-tegra-5.15.0/debian.master/control.d/generic.inclusion-list --- linux-nvidia-tegra-5.15.0/debian.master/control.d/generic.inclusion-list +++ linux-nvidia-tegra-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/* reverted: --- linux-nvidia-tegra-5.15.0/debian.master/etc/getabis +++ linux-nvidia-tegra-5.15.0.orig/debian.master/etc/getabis @@ -1,19 +0,0 @@ -repo_list=( - "http://archive.ubuntu.com/ubuntu/pool/main/l/linux" - "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux" - "http://archive.ubuntu.com/ubuntu/pool/universe/l/linux" - "http://ports.ubuntu.com/ubuntu-ports/pool/universe/l/linux" - "http://ppa.launchpad.net/canonical-kernel-team/ppa/ubuntu/pool/main/l/linux" - "http://ppa.launchpad.net/canonical-kernel-team/ppa2/ubuntu/pool/main/l/linux" - "http://ppa.launchpad.net/canonical-kernel-team/unstable/ubuntu/pool/main/l/linux" - "http://ppa.launchpad.net/canonical-kernel-team/bootstrap/ubuntu/pool/main/l/linux" -) - -package_prefixes linux-buildinfo - -getall armhf generic -getall armhf generic-lpae -getall amd64 generic -getall arm64 generic generic-64k -getall ppc64el generic -getall s390x generic diff -u linux-nvidia-tegra-5.15.0/debian.master/reconstruct linux-nvidia-tegra-5.15.0/debian.master/reconstruct --- linux-nvidia-tegra-5.15.0/debian.master/reconstruct +++ linux-nvidia-tegra-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' @@ -19,7 +18,6 @@ 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 +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' @@ -52,8 +48,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 +93,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-nvidia-tegra-5.15.0/debian.master/tracking-bug linux-nvidia-tegra-5.15.0/debian.master/tracking-bug --- linux-nvidia-tegra-5.15.0/debian.master/tracking-bug +++ linux-nvidia-tegra-5.15.0/debian.master/tracking-bug @@ -1 +1 @@ -2052600 s2024.01.08-2 +2061372 s2024.03.04-2 diff -u linux-nvidia-tegra-5.15.0/debian.master/upstream-stable linux-nvidia-tegra-5.15.0/debian.master/upstream-stable --- linux-nvidia-tegra-5.15.0/debian.master/upstream-stable +++ linux-nvidia-tegra-5.15.0/debian.master/upstream-stable @@ -3 +3 @@ - linux-5.15.y = v5.15.136 + linux-5.15.y = v5.15.148 reverted: --- linux-nvidia-tegra-5.15.0/debian.nvidia-tegra/abi/abiname +++ linux-nvidia-tegra-5.15.0.orig/debian.nvidia-tegra/abi/abiname @@ -1 +0,0 @@ -1021 reverted: --- linux-nvidia-tegra-5.15.0/debian.nvidia-tegra/abi/arm64/nvidia-tegra +++ linux-nvidia-tegra-5.15.0.orig/debian.nvidia-tegra/abi/arm64/nvidia-tegra @@ -1,26432 +0,0 @@ -CRYPTO_INTERNAL EXPORT_SYMBOL_GPL 0x458045bb crypto_cipher_encrypt_one vmlinux -CRYPTO_INTERNAL EXPORT_SYMBOL_GPL 0x8bf28912 crypto_cipher_setkey vmlinux -CRYPTO_INTERNAL EXPORT_SYMBOL_GPL 0x91fe848e crypto_cipher_decrypt_one vmlinux -CXL EXPORT_SYMBOL_GPL 0x003fd9d6 to_cxl_nvdimm_bridge drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x0996f217 cxl_map_component_regs drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x0dc2479d devm_cxl_add_port drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x14997f34 cxl_map_device_regs drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x31e0dcbc to_cxl_nvdimm drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x4e006a88 is_root_decoder drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x55007d9f devm_cxl_add_memdev drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x7250288a devm_cxl_add_nvdimm drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x821bd85c is_cxl_nvdimm drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x90b04793 cxl_bus_type drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x9370c6f7 cxl_probe_device_regs drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x93e650c7 to_cxl_decoder drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xa5da44d0 __cxl_driver_register drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xa94fcefc cxl_probe_component_regs drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xf2cfa3a4 cxl_driver_unregister drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xf7b757fe devm_cxl_add_decoder drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xf8469101 cxl_add_dport drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xfcdbea13 devm_cxl_add_nvdimm_bridge drivers/cxl/core/cxl_core -EXPORT_SYMBOL arch/arm64/crypto/aes-ce-cipher 0x68f275ad ce_aes_expandkey -EXPORT_SYMBOL arch/arm64/crypto/aes-ce-cipher 0xf699e020 ce_aes_setkey -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 0x22f1a57b crypto_nhpoly1305_update_helper -EXPORT_SYMBOL crypto/nhpoly1305 0x417d54eb crypto_nhpoly1305_final -EXPORT_SYMBOL crypto/nhpoly1305 0x62747c80 crypto_nhpoly1305_init -EXPORT_SYMBOL crypto/nhpoly1305 0x66e46eec crypto_nhpoly1305_final_helper -EXPORT_SYMBOL crypto/nhpoly1305 0xa24bb428 crypto_nhpoly1305_setkey -EXPORT_SYMBOL crypto/nhpoly1305 0xe2aeb0b4 crypto_nhpoly1305_update -EXPORT_SYMBOL crypto/sha3_generic 0x7a5cb2f2 crypto_sha3_final -EXPORT_SYMBOL crypto/sha3_generic 0xa23ff506 crypto_sha3_update -EXPORT_SYMBOL crypto/sha3_generic 0xf1818f72 crypto_sha3_init -EXPORT_SYMBOL crypto/sm2_generic 0x1ee20b91 sm2_compute_z_digest -EXPORT_SYMBOL crypto/sm3_generic 0xc609c02e crypto_sm3_final -EXPORT_SYMBOL crypto/sm3_generic 0xc77c727f crypto_sm3_update -EXPORT_SYMBOL crypto/sm3_generic 0xee662f1b 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 0x17e3c200 suni_init -EXPORT_SYMBOL drivers/bcma/bcma 0x49fb8558 bcma_core_dma_translation -EXPORT_SYMBOL drivers/bcma/bcma 0xb2852039 bcma_core_irq -EXPORT_SYMBOL drivers/block/drbd/drbd 0x127a5901 drbd_set_st_err_str -EXPORT_SYMBOL drivers/block/drbd/drbd 0x35131b36 drbd_role_str -EXPORT_SYMBOL drivers/block/drbd/drbd 0x7730f22d drbd_conn_str -EXPORT_SYMBOL drivers/block/drbd/drbd 0xaf27bebf drbd_disk_str -EXPORT_SYMBOL drivers/bluetooth/btbcm 0x76fed021 btbcm_patchram -EXPORT_SYMBOL drivers/bluetooth/btrsi 0x160fe9ff rsi_bt_ops -EXPORT_SYMBOL drivers/bus/mhi/host/mhi 0x346edcd3 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 0x4ce570de ipmi_get_smi_info -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 0xb2214941 ipmi_smi_watcher_register -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xb4b02400 ipmi_smi_watcher_unregister -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xd54a5050 ipmi_unregister_for_cmd -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xe4330a39 ipmi_unregister_smi -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xe4f4665b ipmi_validate_addr -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 0xf6841f30 ipmi_add_smi -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 0x4289074c st33zp24_pm_suspend -EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x603c2335 st33zp24_remove -EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0xa2e01f82 st33zp24_pm_resume -EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0xc95fa88f st33zp24_probe -EXPORT_SYMBOL drivers/char/xillybus/xillybus_class 0x8521ab6e xillybus_find_inode -EXPORT_SYMBOL drivers/char/xillybus/xillybus_class 0xd12b62ad xillybus_cleanup_chrdev -EXPORT_SYMBOL drivers/char/xillybus/xillybus_class 0xe0282844 xillybus_init_chrdev -EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x111a9c84 xillybus_endpoint_discovery -EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x25978d50 xillybus_isr -EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x704091c3 xillybus_endpoint_remove -EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0xd5b3c5db xillybus_init_endpoint -EXPORT_SYMBOL drivers/clk/qcom/clk-qcom 0x25c98843 clk_alpha_pll_zonda_ops -EXPORT_SYMBOL drivers/clk/qcom/clk-qcom 0xa03f8920 clk_alpha_pll_postdiv_lucid_5lpe_ops -EXPORT_SYMBOL drivers/clk/qcom/clk-qcom 0xd89a02cf clk_alpha_pll_fixed_lucid_5lpe_ops -EXPORT_SYMBOL drivers/clk/qcom/clk-qcom 0xed46e5cc clk_alpha_pll_lucid_5lpe_ops -EXPORT_SYMBOL drivers/crypto/atmel-i2c 0x34f2895f atmel_i2c_send_receive -EXPORT_SYMBOL drivers/crypto/atmel-i2c 0x80a11b1d atmel_i2c_init_read_cmd -EXPORT_SYMBOL drivers/crypto/atmel-i2c 0xb0b30ee2 atmel_i2c_probe -EXPORT_SYMBOL drivers/crypto/atmel-i2c 0xb41c0755 atmel_i2c_enqueue -EXPORT_SYMBOL drivers/crypto/atmel-i2c 0xc71ed50c atmel_i2c_init_genkey_cmd -EXPORT_SYMBOL drivers/crypto/atmel-i2c 0xf283e995 atmel_i2c_init_random_cmd -EXPORT_SYMBOL drivers/crypto/atmel-i2c 0xfaab573f atmel_i2c_init_ecdh_cmd -EXPORT_SYMBOL drivers/crypto/caam/caam 0x01de5ff4 caam_drv_ctx_update -EXPORT_SYMBOL drivers/crypto/caam/caam 0x16edbfba caam_drv_ctx_init -EXPORT_SYMBOL drivers/crypto/caam/caam 0x17572340 caam_congested -EXPORT_SYMBOL drivers/crypto/caam/caam 0x37734e06 caam_dpaa2 -EXPORT_SYMBOL drivers/crypto/caam/caam 0x44ae4bc4 qi_cache_free -EXPORT_SYMBOL drivers/crypto/caam/caam 0x953607b3 caam_drv_ctx_rel -EXPORT_SYMBOL drivers/crypto/caam/caam 0xc0eaa792 qi_cache_alloc -EXPORT_SYMBOL drivers/crypto/caam/caam 0xc17be7e0 caam_qi_enqueue -EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0x2d758341 caam_jr_free -EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0x4a2b7c3b gen_split_key -EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0x6db379a1 caam_jr_alloc -EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0x6f0fd9a0 caam_jr_enqueue -EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0xec2551f3 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 0x53499ace dpaa2_caam_enqueue -EXPORT_SYMBOL drivers/crypto/caam/error 0x26d6f8e6 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 0x70922d7c xilinx_vdma_channel_set_config -EXPORT_SYMBOL drivers/firewire/firewire-core 0x00117b48 fw_iso_resource_manage -EXPORT_SYMBOL drivers/firewire/firewire-core 0x042d1cda fw_iso_context_queue -EXPORT_SYMBOL drivers/firewire/firewire-core 0x050aa6f4 fw_send_response -EXPORT_SYMBOL drivers/firewire/firewire-core 0x0bc6094c fw_core_remove_descriptor -EXPORT_SYMBOL drivers/firewire/firewire-core 0x0f4fc803 fw_core_remove_card -EXPORT_SYMBOL drivers/firewire/firewire-core 0x2885fec5 fw_get_request_speed -EXPORT_SYMBOL drivers/firewire/firewire-core 0x2d207fe8 fw_card_initialize -EXPORT_SYMBOL drivers/firewire/firewire-core 0x33e16fb3 fw_iso_context_flush_completions -EXPORT_SYMBOL drivers/firewire/firewire-core 0x3a771e39 fw_core_add_descriptor -EXPORT_SYMBOL drivers/firewire/firewire-core 0x3b798cf6 fw_cancel_transaction -EXPORT_SYMBOL drivers/firewire/firewire-core 0x3c56ef91 fw_workqueue -EXPORT_SYMBOL drivers/firewire/firewire-core 0x41283855 fw_fill_response -EXPORT_SYMBOL drivers/firewire/firewire-core 0x4837e7ed fw_iso_buffer_destroy -EXPORT_SYMBOL drivers/firewire/firewire-core 0x6472c907 fw_core_add_address_handler -EXPORT_SYMBOL drivers/firewire/firewire-core 0x6dc50487 fw_csr_string -EXPORT_SYMBOL drivers/firewire/firewire-core 0x73d9278a fw_iso_context_create -EXPORT_SYMBOL drivers/firewire/firewire-core 0x7ed0ae34 fw_core_remove_address_handler -EXPORT_SYMBOL drivers/firewire/firewire-core 0x7fa52810 fw_core_handle_bus_reset -EXPORT_SYMBOL drivers/firewire/firewire-core 0x850c3314 fw_core_handle_request -EXPORT_SYMBOL drivers/firewire/firewire-core 0x86468d44 fw_rcode_string -EXPORT_SYMBOL drivers/firewire/firewire-core 0xaedf84ce fw_high_memory_region -EXPORT_SYMBOL drivers/firewire/firewire-core 0xb188b4b9 fw_iso_context_destroy -EXPORT_SYMBOL drivers/firewire/firewire-core 0xb515e980 fw_bus_type -EXPORT_SYMBOL drivers/firewire/firewire-core 0xb67b22a8 fw_card_add -EXPORT_SYMBOL drivers/firewire/firewire-core 0xc4fa5343 fw_device_enable_phys_dma -EXPORT_SYMBOL drivers/firewire/firewire-core 0xc818557c fw_iso_buffer_init -EXPORT_SYMBOL drivers/firewire/firewire-core 0xc8aa3026 fw_schedule_bus_reset -EXPORT_SYMBOL drivers/firewire/firewire-core 0xccec60e8 fw_iso_context_stop -EXPORT_SYMBOL drivers/firewire/firewire-core 0xde5d81a6 fw_iso_context_queue_flush -EXPORT_SYMBOL drivers/firewire/firewire-core 0xe021e7bc fw_iso_context_start -EXPORT_SYMBOL drivers/firewire/firewire-core 0xe3fde125 fw_csr_iterator_next -EXPORT_SYMBOL drivers/firewire/firewire-core 0xe6bd3f74 fw_run_transaction -EXPORT_SYMBOL drivers/firewire/firewire-core 0xe80e5087 fw_csr_iterator_init -EXPORT_SYMBOL drivers/firewire/firewire-core 0xf3e3e798 fw_send_request -EXPORT_SYMBOL drivers/firewire/firewire-core 0xffb06b59 fw_core_handle_response -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 0x357fb2a3 imx_dsp_free_channel -EXPORT_SYMBOL drivers/firmware/imx/imx-dsp 0xa1dfe966 imx_dsp_ring_doorbell -EXPORT_SYMBOL drivers/firmware/imx/imx-dsp 0xb7b1ff1f imx_dsp_request_channel -EXPORT_SYMBOL drivers/fpga/dfl 0x9ce54c39 dfl_driver_unregister -EXPORT_SYMBOL drivers/fpga/dfl 0xbe45a036 __dfl_driver_register -EXPORT_SYMBOL drivers/gpu/drm/drm 0x00079318 drm_file_get_master -EXPORT_SYMBOL drivers/gpu/drm/drm 0x00738a74 drm_driver_legacy_fb_format -EXPORT_SYMBOL drivers/gpu/drm/drm 0x021473a9 drm_plane_create_blend_mode_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x02fe6a3b drm_dev_set_unique -EXPORT_SYMBOL drivers/gpu/drm/drm 0x02ff5611 drm_get_edid -EXPORT_SYMBOL drivers/gpu/drm/drm 0x03a76564 drm_vblank_work_cancel_sync -EXPORT_SYMBOL drivers/gpu/drm/drm 0x03c63897 __drm_get_edid_firmware_path -EXPORT_SYMBOL drivers/gpu/drm/drm 0x04dc18e4 drm_syncobj_add_point -EXPORT_SYMBOL drivers/gpu/drm/drm 0x04e58d7f drm_any_plane_has_format -EXPORT_SYMBOL drivers/gpu/drm/drm 0x04ed7775 drm_of_crtc_port_mask -EXPORT_SYMBOL drivers/gpu/drm/drm 0x05839e07 drm_modeset_lock_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0676ddee drm_plane_enable_fb_damage_clips -EXPORT_SYMBOL drivers/gpu/drm/drm 0x070b28aa drm_ht_remove_item -EXPORT_SYMBOL drivers/gpu/drm/drm 0x078583f3 drm_framebuffer_unregister_private -EXPORT_SYMBOL drivers/gpu/drm/drm 0x07b88812 drm_atomic_get_plane_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0x07dcc3d8 drm_aperture_remove_conflicting_framebuffers -EXPORT_SYMBOL drivers/gpu/drm/drm 0x07fb449a drm_vma_offset_manager_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0881875a drm_read -EXPORT_SYMBOL drivers/gpu/drm/drm 0x08afb29f drm_writeback_connector_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x08d01b0b drm_atomic_commit -EXPORT_SYMBOL drivers/gpu/drm/drm 0x094a208e drm_crtc_create_scaling_filter_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x09e3e751 drm_hdmi_avi_infoframe_bars -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0a5ac479 drm_bridge_remove -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0a72f765 drm_clflush_virt_range -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0bbd3f41 drm_framebuffer_plane_height -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0bd0a041 drm_bridge_chain_mode_valid -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0cf4c7b0 drm_gem_map_detach -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0d145d36 drm_crtc_vblank_off -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0d9b4753 drm_mode_equal -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0dd55ce6 drm_crtc_vblank_helper_get_vblank_timestamp_internal -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0e7d02c5 drm_crtc_accurate_vblank_count -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0edaade9 of_drm_get_panel_orientation -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0f2a288a drm_connector_attach_hdr_output_metadata_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 0x1039d7b5 drm_master_get -EXPORT_SYMBOL drivers/gpu/drm/drm 0x107742a9 drm_get_subpixel_order_name -EXPORT_SYMBOL drivers/gpu/drm/drm 0x10ef5bce drm_plane_get_damage_clips -EXPORT_SYMBOL drivers/gpu/drm/drm 0x114020f8 drm_gem_handle_create -EXPORT_SYMBOL drivers/gpu/drm/drm 0x115fb975 drm_mode_create_aspect_ratio_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1224ba8c drm_i2c_encoder_destroy -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 0x12f128eb drm_dev_dbg -EXPORT_SYMBOL drivers/gpu/drm/drm 0x13caebda drm_i2c_encoder_prepare -EXPORT_SYMBOL drivers/gpu/drm/drm 0x14a17031 drm_gem_cma_print_info -EXPORT_SYMBOL drivers/gpu/drm/drm 0x153d478d drm_modeset_unlock_all -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1614a6ff drm_crtc_vblank_restore -EXPORT_SYMBOL drivers/gpu/drm/drm 0x168708e1 drm_crtc_enable_color_mgmt -EXPORT_SYMBOL drivers/gpu/drm/drm 0x16ba8400 drm_atomic_set_fb_for_plane -EXPORT_SYMBOL drivers/gpu/drm/drm 0x178e4c1c drm_connector_unregister -EXPORT_SYMBOL drivers/gpu/drm/drm 0x17915338 drm_atomic_private_obj_fini -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1858dd60 drm_atomic_print_new_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0x18bfd2fa drm_mode_create_tile_group -EXPORT_SYMBOL drivers/gpu/drm/drm 0x191010bb drm_display_info_set_bus_formats -EXPORT_SYMBOL drivers/gpu/drm/drm 0x191ec1b6 drm_vblank_work_schedule -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1a411479 drm_syncobj_free -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1a920021 drm_atomic_set_crtc_for_plane -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1ba1d313 drm_atomic_state_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1d3b97f2 drm_atomic_bridge_chain_enable -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1dcd2c49 of_drm_find_bridge -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1e74bc6f drm_mode_prune_invalid -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1ef46e65 __drmm_encoder_alloc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1fbfe1b2 drm_connector_register -EXPORT_SYMBOL drivers/gpu/drm/drm 0x20edb464 drm_atomic_normalize_zpos -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2183c08c drm_mm_scan_add_block -EXPORT_SYMBOL drivers/gpu/drm/drm 0x21d541eb drm_flip_work_queue_task -EXPORT_SYMBOL drivers/gpu/drm/drm 0x23f654d8 drm_edid_to_sad -EXPORT_SYMBOL drivers/gpu/drm/drm 0x241672e5 drm_property_create_range -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2436e298 drm_gtf_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0x246996df drm_crtc_wait_one_vblank -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 0x25b7c29a drm_mode_create_suggested_offset_properties -EXPORT_SYMBOL drivers/gpu/drm/drm 0x25daad93 __drm_mm_interval_first -EXPORT_SYMBOL drivers/gpu/drm/drm 0x26f34872 drm_gem_shmem_purge_locked -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2754dad8 drm_mm_reserve_node -EXPORT_SYMBOL drivers/gpu/drm/drm 0x27f430a7 drm_mode_object_get -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2850cb5a drm_panel_get_modes -EXPORT_SYMBOL drivers/gpu/drm/drm 0x28779e52 drm_printf -EXPORT_SYMBOL drivers/gpu/drm/drm 0x29691f7f drm_syncobj_get_fd -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 0x2aa758ec drm_client_rotation -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2b2bfba6 drm_gem_dmabuf_export -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2b4e68f5 drm_get_edid_switcheroo -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2b5cce49 drm_atomic_get_private_obj_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2b8325da drm_i2c_encoder_save -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2c65b4fe drm_client_framebuffer_create -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2d50570f drm_rect_calc_hscale -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2e3f9266 drm_compat_ioctl -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2e77af07 drm_modeset_lock_all_ctx -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2e84085e drm_mode_create_tv_properties -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2e91e7b5 drm_mode_create_from_cmdline_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2ec96448 drm_panel_add -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2ed3c600 drm_mode_debug_printmodeline -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2faec961 drm_mode_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm 0x300eb854 drm_gem_get_pages -EXPORT_SYMBOL drivers/gpu/drm/drm 0x31b8a5e3 __drm_set_edid_firmware_path -EXPORT_SYMBOL drivers/gpu/drm/drm 0x31fba317 drm_gem_shmem_pin -EXPORT_SYMBOL drivers/gpu/drm/drm 0x32a0cc37 drm_print_bits -EXPORT_SYMBOL drivers/gpu/drm/drm 0x32cc6e65 drm_plane_create_alpha_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x32eafda0 drm_atomic_set_crtc_for_connector -EXPORT_SYMBOL drivers/gpu/drm/drm 0x331188fe drm_hdmi_infoframe_set_hdr_metadata -EXPORT_SYMBOL drivers/gpu/drm/drm 0x337ec6a0 drm_mode_object_find -EXPORT_SYMBOL drivers/gpu/drm/drm 0x33826830 drm_connector_set_link_status_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x33cb2d0c drm_wait_one_vblank -EXPORT_SYMBOL drivers/gpu/drm/drm 0x33f2905b drm_i2c_encoder_mode_fixup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x343c9c69 drm_bridge_chain_post_disable -EXPORT_SYMBOL drivers/gpu/drm/drm 0x345d2dcf drm_mode_plane_set_obj_prop -EXPORT_SYMBOL drivers/gpu/drm/drm 0x34df98ba drm_mode_probed_add -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3644e214 drm_property_create_blob -EXPORT_SYMBOL drivers/gpu/drm/drm 0x372e47ab __drmm_universal_plane_alloc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x384ee134 drm_i2c_encoder_mode_set -EXPORT_SYMBOL drivers/gpu/drm/drm 0x38e50514 drm_gem_shmem_purge -EXPORT_SYMBOL drivers/gpu/drm/drm 0x392aa94c drm_atomic_get_new_private_obj_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3aa95852 drm_atomic_set_mode_for_crtc -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 0x3bf1fa1b drm_dev_put -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3c22a4d8 drm_vma_offset_manager_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3dc4739d drm_panel_prepare -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3e024e10 drm_atomic_get_old_private_obj_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3e50b109 drm_gem_fence_array_add -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3f19e0aa drm_gem_vm_open -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3f405489 __drm_printfn_err -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4010dcfd drm_ioctl -EXPORT_SYMBOL drivers/gpu/drm/drm 0x41d57b84 drm_atomic_state_alloc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x439a693b drm_hdcp_update_content_protection -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4403a9c3 drm_mode_get_hv_timing -EXPORT_SYMBOL drivers/gpu/drm/drm 0x44594a73 drm_property_create_bool -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 0x461e1213 drm_gem_put_pages -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4831a37e drm_print_regset32 -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4831da6e drm_vma_offset_remove -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4998feb6 drm_plane_create_zpos_immutable_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x49cae506 drm_hdmi_avi_infoframe_quant_range -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4a103f19 drm_mode_create_scaling_mode_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4a168593 drm_property_blob_put -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4a35d30d drm_mode_set_name -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4b4546ff drm_gem_shmem_get_pages -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4b5e122c drm_open -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4b7ebf95 drm_mm_remove_node -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4bad7c8b drm_gem_shmem_print_info -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4c5437e4 drm_bridge_chain_mode_set -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4c91e8b9 drm_panel_unprepare -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4d33390a drm_modeset_unlock -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4d6d5263 drm_gtf_mode_complex -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4f18a150 __drm_debug -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4f495ced drm_send_event_locked -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4f7dc1a8 drm_crtc_vblank_count_and_time -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 0x521ad6d0 drm_puts -EXPORT_SYMBOL drivers/gpu/drm/drm 0x52815621 of_drm_find_panel -EXPORT_SYMBOL drivers/gpu/drm/drm 0x53db83bf drm_gem_vm_close -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5499d5e1 drm_atomic_private_obj_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x553b1de6 drm_state_dump -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5542443b drm_flip_work_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5696cc26 drm_crtc_init_with_planes -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 0x587248a1 drm_gem_prime_mmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0x58d597f1 drm_crtc_arm_vblank_event -EXPORT_SYMBOL drivers/gpu/drm/drm 0x58e0c6a4 drm_atomic_add_affected_connectors -EXPORT_SYMBOL drivers/gpu/drm/drm 0x58e24aea drm_connector_set_vrr_capable_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x59056243 drm_mm_replace_node -EXPORT_SYMBOL drivers/gpu/drm/drm 0x595e7c58 drm_writeback_prepare_job -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5a4f404d drm_av_sync_delay -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5aeaf53f drm_universal_plane_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5c6db41c drm_modeset_acquire_fini -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5c822845 drm_aperture_remove_conflicting_pci_framebuffers -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5cd8b3cb drm_mode_is_420_also -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5d48138b drm_encoder_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5d661e61 drm_i2c_encoder_dpms -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5d736468 drm_gem_prime_handle_to_fd -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5d7cb610 drm_gem_shmem_vmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5d9a0d42 drm_crtc_vblank_helper_get_vblank_timestamp -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5f7985a5 drm_mm_scan_remove_block -EXPORT_SYMBOL drivers/gpu/drm/drm 0x60889819 drm_connector_attach_max_bpc_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x609aa6d0 drm_connector_attach_content_protection_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x60bad60b drm_connector_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6205fdc6 drm_vblank_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x62c0b9b9 drm_connector_set_path_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x632bad58 drm_dev_has_vblank -EXPORT_SYMBOL drivers/gpu/drm/drm 0x634ac1da drm_gem_dmabuf_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0x64e41809 drm_client_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x65686634 drm_mode_create_tv_margin_properties -EXPORT_SYMBOL drivers/gpu/drm/drm 0x65702bd6 drm_default_rgb_quant_range -EXPORT_SYMBOL drivers/gpu/drm/drm 0x67340d4f drm_modeset_lock -EXPORT_SYMBOL drivers/gpu/drm/drm 0x67a3c772 drm_crtc_vblank_put -EXPORT_SYMBOL drivers/gpu/drm/drm 0x69c8357f drm_plane_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x69dcb3eb drm_client_modeset_commit -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6ab8de4d drm_mode_validate_ycbcr420 -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6b217263 drm_send_event -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6d3638cb drm_crtc_send_vblank_event -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6dee8703 drm_clflush_pages -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6e30ba8e drm_rect_rotate_inv -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6e71a7c0 drm_atomic_get_old_bridge_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6ece4ad4 drm_panel_of_backlight -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6ef2f78e drm_format_info -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6f2493a5 drm_client_dev_hotplug -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6f919f8a drm_plane_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7005f42c drm_connector_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x706a1102 drm_crtc_handle_vblank -EXPORT_SYMBOL drivers/gpu/drm/drm 0x70cfc3d4 drm_mode_config_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x711495b1 drm_client_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0x712d835f drm_atomic_get_crtc_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7278688f drm_gem_fence_array_add_implicit -EXPORT_SYMBOL drivers/gpu/drm/drm 0x73f4fa5e drm_gem_shmem_put_pages -EXPORT_SYMBOL drivers/gpu/drm/drm 0x74a84135 drm_atomic_bridge_chain_disable -EXPORT_SYMBOL drivers/gpu/drm/drm 0x756265b1 drm_framebuffer_remove -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7680e0e6 drm_modeset_acquire_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x770435d1 drm_plane_get_damage_clips_count -EXPORT_SYMBOL drivers/gpu/drm/drm 0x770a7096 drm_bridge_add -EXPORT_SYMBOL drivers/gpu/drm/drm 0x786249a4 drm_i2c_encoder_detect -EXPORT_SYMBOL drivers/gpu/drm/drm 0x794efa9e drm_modeset_backoff -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7a6ebcd7 drm_client_modeset_probe -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7acddc12 drm_mode_object_put -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7b2e2166 drm_vma_node_revoke -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7d12cc70 drm_gem_mmap_obj -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7d5e3df0 drm_property_replace_blob -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7e14bda6 drm_encoder_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7ec04480 drm_atomic_state_default_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7edf470b drm_edid_duplicate -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7f690fce drm_hdmi_avi_infoframe_colorspace -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7f9c3007 drm_gem_handle_delete -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fde3edf drm_syncobj_replace_fence -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8093a941 drm_gem_shmem_vunmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0x80eda7a7 drm_framebuffer_plane_width -EXPORT_SYMBOL drivers/gpu/drm/drm 0x810f6909 drm_atomic_get_new_connector_for_encoder -EXPORT_SYMBOL drivers/gpu/drm/drm 0x811d8b3a drm_gem_mmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0x81992424 drm_edid_header_is_valid -EXPORT_SYMBOL drivers/gpu/drm/drm 0x819ad442 drm_property_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm 0x81b0a6a6 drm_syncobj_find -EXPORT_SYMBOL drivers/gpu/drm/drm 0x81e6e370 drm_master_internal_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0x83272d5b drm_gem_lock_reservations -EXPORT_SYMBOL drivers/gpu/drm/drm 0x838df40c drm_client_register -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 0x85a3f5ea drm_mode_create_dp_colorspace_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x85ebac87 drm_gem_unlock_reservations -EXPORT_SYMBOL drivers/gpu/drm/drm 0x86278e55 drm_atomic_get_old_connector_for_encoder -EXPORT_SYMBOL drivers/gpu/drm/drm 0x871ab41a drm_rect_intersect -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8818151a drm_debugfs_remove_files -EXPORT_SYMBOL drivers/gpu/drm/drm 0x89773bff drm_gem_object_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8a12276e drm_crtc_vblank_count -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8a676e91 drm_mode_parse_command_line_for_connector -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8ab73aed drm_poll -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8abbe04c drm_mode_set_config_internal -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8b562cda drm_gem_free_mmap_offset -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8d58c2fa drm_event_cancel_free -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8d72789e drm_edid_is_valid -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8ee57332 drm_dev_unplug -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8f8a0e65 drm_client_buffer_vmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9036c4d9 drm_bridge_chain_pre_enable -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9147bfaa drm_gem_create_mmap_offset_size -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9180b304 drm_client_modeset_commit_locked -EXPORT_SYMBOL drivers/gpu/drm/drm 0x91fec1cc drm_rect_calc_vscale -EXPORT_SYMBOL drivers/gpu/drm/drm 0x92ee8a9d drm_get_format_info -EXPORT_SYMBOL drivers/gpu/drm/drm 0x93378eae drm_ioctl_permit -EXPORT_SYMBOL drivers/gpu/drm/drm 0x93669390 drm_mode_is_420_only -EXPORT_SYMBOL drivers/gpu/drm/drm 0x93705633 drm_gem_vunmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0x938ec025 drm_property_create -EXPORT_SYMBOL drivers/gpu/drm/drm 0x939b02e8 drm_connector_update_edid_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x94689651 drm_dev_get -EXPORT_SYMBOL drivers/gpu/drm/drm 0x95741fe0 drm_i2c_encoder_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x95dbc76d drm_ht_create -EXPORT_SYMBOL drivers/gpu/drm/drm 0x96655367 drm_property_lookup_blob -EXPORT_SYMBOL drivers/gpu/drm/drm 0x972ee354 drm_dev_register -EXPORT_SYMBOL drivers/gpu/drm/drm 0x97402ac4 drm_mode_create_dvi_i_properties -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9767c279 drm_connector_list_iter_next -EXPORT_SYMBOL drivers/gpu/drm/drm 0x990cbbe9 drm_connector_attach_content_type_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x99fd20aa drm_rect_clip_scaled -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9a036e94 __devm_drm_dev_alloc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9a87ec32 drm_gem_private_object_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9a8df269 drm_connector_set_panel_orientation -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9ad4b1c0 drm_send_event_timestamp_locked -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9b285573 drm_match_cea_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9b2eaf8e drm_property_blob_get -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 0x9c0e9cd4 drm_gem_vmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9ca3e8f0 drm_gem_object_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9ccbfcef drm_gem_unmap_dma_buf -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9ce050be drm_mode_copy -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9cede50d drm_calc_timestamping_constants -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9e014133 drm_connector_attach_encoder -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9ebba417 drm_detect_monitor_audio -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9ef04927 drm_bridge_chain_disable -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9f77d4b1 drm_writeback_queue_job -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa068bd48 drm_dev_unregister -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa0713087 drm_ht_find_item -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa10bb671 drm_plane_force_disable -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa28538b6 drm_master_put -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa343ad84 drm_mode_duplicate -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa38c4c94 drm_memcpy_from_wc -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa44e01a8 drm_gem_dmabuf_vmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa56c974a drm_of_component_probe -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa5ae42e8 drm_display_mode_from_cea_vic -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa5b46809 drm_atomic_set_mode_prop_for_crtc -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa5c482f5 drm_ioctl_kernel -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa72c1793 drm_panel_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa7c81095 drm_plane_create_color_properties -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa85e4f87 drm_atomic_get_bridge_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa889516d drm_object_property_set_value -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa8de23b7 __drmm_add_action_or_reset -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa985cccc drm_warn_on_modeset_not_all_locked -EXPORT_SYMBOL drivers/gpu/drm/drm 0xaadd4224 devm_aperture_acquire_from_firmware -EXPORT_SYMBOL drivers/gpu/drm/drm 0xac56a6c1 drm_gem_dmabuf_vunmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0xacbd7328 drm_gem_shmem_madvise -EXPORT_SYMBOL drivers/gpu/drm/drm 0xacf34ea2 drm_connector_attach_edid_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xad4e902b drm_color_ctm_s31_32_to_qm_n -EXPORT_SYMBOL drivers/gpu/drm/drm 0xad7e8b9a drm_client_modeset_check -EXPORT_SYMBOL drivers/gpu/drm/drm 0xadf00b93 drm_gem_shmem_unpin -EXPORT_SYMBOL drivers/gpu/drm/drm 0xae277372 __drm_crtc_commit_free -EXPORT_SYMBOL drivers/gpu/drm/drm 0xae83bffb drm_dev_enter -EXPORT_SYMBOL drivers/gpu/drm/drm 0xaedc3887 drm_dev_printk -EXPORT_SYMBOL drivers/gpu/drm/drm 0xaee1786b drm_prime_gem_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm 0xaf16251c drm_connector_has_possible_encoder -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb053adda drm_rect_rotate -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb065c309 drm_atomic_bridge_chain_post_disable -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb080ce0e drm_writeback_get_out_fence -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb0b05ff5 drm_clflush_sg -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb0ed609c drm_connector_attach_vrr_capable_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb11ac7a7 __drm_err -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb11bbc0d drm_crtc_vblank_on -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb160703d __drm_atomic_helper_disable_plane -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb197fdb2 drm_connector_attach_scaling_mode_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb1ac8af3 drm_prime_sg_to_page_array -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb1e27a5a drm_is_current_master -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb22dfd68 drm_format_info_min_pitch -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb2d88197 drm_gem_dmabuf_mmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb3327cc6 drm_noop -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 0xb423855c drm_mode_validate_driver -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb43dccdc drm_atomic_nonblocking_commit -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb4d7cc68 drm_atomic_get_new_bridge_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb51fe5b7 drm_bridge_attach -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb560b447 drm_connector_attach_colorspace_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb6127243 drm_need_swiotlb -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb73c5e30 drm_crtc_vblank_waitqueue -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb73c77c9 drm_panel_disable -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb798215a drm_probe_ddc -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb7ab9714 drm_gem_prime_import -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb826cd2b drm_mode_config_reset -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb8a5c123 drm_atomic_get_connector_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb9adae50 drm_property_create_signed_range -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb9cad492 __drm_atomic_state_free -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbb16b7cf drm_atomic_bridge_chain_pre_enable -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbb472a5c drm_mode_put_tile_group -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbb7091d1 drm_syncobj_create -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbc0ad4e4 drm_connector_attach_tv_margin_properties -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbc0fbd42 drm_connector_init_with_ddc -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbc167f3a drm_property_add_enum -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbc19657e drm_modeset_lock_all -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbc81e38f drm_gem_dma_resv_wait -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbd5e8aff drm_panel_remove -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbde5679f drm_vblank_work_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbe0f4e9e drm_connector_list_iter_end -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbe33614a drm_prime_pages_to_sg -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbe73718b drm_crtc_from_index -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbea92fb5 drm_plane_from_index -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbee3f3d3 drm_property_create_bitmask -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbfc2c475 drm_client_buffer_vunmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc0228f35 drm_object_attach_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc029dd8d drm_writeback_cleanup_job -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc206b1a8 drm_object_property_get_value -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc2ce7843 __drmm_add_action -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc3e3a7e9 drm_mode_find_dmt -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc3f40ecc drm_framebuffer_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc422409b drm_bridge_chain_mode_fixup -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc458baee __drmm_crtc_alloc_with_planes -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc4770c35 drm_atomic_state_default_clear -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc48deeea drm_hdmi_avi_infoframe_content_type -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc62916c3 drm_connector_set_panel_orientation_with_quirk -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc6323239 drm_flip_work_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc636a169 drm_gem_prime_export -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc745be3d drm_panel_enable -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 0xc86cdbe3 drm_atomic_bridge_chain_check -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc9bcd353 drm_put_dev -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc9be0984 drm_add_edid_modes -EXPORT_SYMBOL drivers/gpu/drm/drm 0xca190085 drm_format_info_block_height -EXPORT_SYMBOL drivers/gpu/drm/drm 0xca3a1bf9 drm_crtc_vblank_get -EXPORT_SYMBOL drivers/gpu/drm/drm 0xca545e00 drm_cvt_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0xca636854 drm_plane_create_zpos_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xca9b52ba drm_modeset_drop_locks -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcb2340b8 drm_rect_debug_print -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcbd4efc9 drm_crtc_set_max_vblank_count -EXPORT_SYMBOL drivers/gpu/drm/drm 0xccc59759 drm_format_info_block_width -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcce4cb5c drm_debugfs_create_files -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcef1c9d6 drm_property_create_object -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcf11a549 drm_flip_work_allocate_task -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcfb9e42e drm_property_create_enum -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd05fda43 drm_prime_get_contiguous_size -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd0ba2572 drm_atomic_set_fence_for_plane -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd0c62bf1 drm_invalid_op -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd12a4a24 drm_bridge_chain_enable -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd13f9985 drm_edid_block_valid -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd1a9b912 __drm_atomic_helper_set_config -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd2d31012 drm_format_info_bpp -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd2f93c5b drm_atomic_add_affected_planes -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd30dc68c drm_connector_atomic_hdr_metadata_equal -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd3ea7365 drm_hdmi_vendor_infoframe_from_display_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd56945c7 drmm_kmalloc -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd680a377 drm_gem_object_free -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd72be02d drm_handle_vblank -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd73f3514 drm_dev_alloc -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd793f762 drm_event_reserve_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd7a0fb59 drm_vblank_work_flush -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd7a9cf42 drm_mode_validate_size -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd83aa5cd drm_gem_prime_fd_to_handle -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd84134dc drmm_mode_config_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd9298445 drm_atomic_state_clear -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdacef18c drm_gem_map_attach -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdbf32e69 drm_plane_create_rotation_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdc79501b drm_gem_objects_lookup -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdcfdddfd drm_gem_cma_prime_import_sg_table_vmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdd671fc8 drm_detect_hdmi_monitor -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdd6f4595 drm_gem_object_lookup -EXPORT_SYMBOL drivers/gpu/drm/drm 0xde6891c6 drm_gem_create_mmap_offset -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 0xe04e0ca7 drm_atomic_add_encoder_bridges -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe0cc0670 drm_of_find_possible_crtcs -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe0f8e989 drm_sysfs_connector_status_event -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe1a8b125 drm_event_reserve_init_locked -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe1b255ce drm_client_framebuffer_flush -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe24b5cf8 drm_writeback_signal_completion -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe2cbe331 drm_plane_create_scaling_filter_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe317082a __drm_printfn_info -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe42b1fdc drm_property_replace_global_blob -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe5d52bbb drm_crtc_check_viewport -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe5fdb6dd drm_i2c_encoder_restore -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe7f86bfe drm_add_override_edid_modes -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 0xe9463c6c drm_set_preferred_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe998d712 drm_framebuffer_lookup -EXPORT_SYMBOL drivers/gpu/drm/drm 0xea00fe81 __drm_printfn_coredump -EXPORT_SYMBOL drivers/gpu/drm/drm 0xea9361f3 drm_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0xeaf63135 drmm_kfree -EXPORT_SYMBOL drivers/gpu/drm/drm 0xeb16e0cb drm_gem_prime_import_dev -EXPORT_SYMBOL drivers/gpu/drm/drm 0xeb8f8ecf drm_connector_list_iter_begin -EXPORT_SYMBOL drivers/gpu/drm/drm 0xebdb006e drm_gem_map_dma_buf -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 0xed675c3a drm_crtc_vblank_reset -EXPORT_SYMBOL drivers/gpu/drm/drm 0xedb2fa34 drm_crtc_commit_wait -EXPORT_SYMBOL drivers/gpu/drm/drm 0xef6cfefe drm_mode_get_tile_group -EXPORT_SYMBOL drivers/gpu/drm/drm 0xef8a941b drm_sysfs_hotplug_event -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf01b8f1d drm_release_noglobal -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 0xf1735671 drm_connector_attach_dp_subconnector_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf1b5340a drm_mode_vrefresh -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf1d24c02 drm_color_lut_check -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf2757a1a drm_add_modes_noedid -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf2a6abca drm_atomic_check_only -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf406e46a drm_get_connector_type_name -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf43c23e6 drm_hdmi_avi_infoframe_from_display_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf555a933 drm_mode_crtc_set_gamma_size -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf6d2a614 drm_mode_create_content_type_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf6d81d06 drm_connector_set_tile_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf72fee52 drm_client_modeset_dpms -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf81dd205 drm_connector_list_update -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf824c7db __drm_printfn_debug -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf8522287 drm_syncobj_get_handle -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf8b540d4 drm_framebuffer_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf907bda1 drm_client_framebuffer_delete -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfa709eea drm_mode_create_hdmi_colorspace_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfb6c5862 drm_master_internal_acquire -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfc664326 drm_modeset_lock_single_interruptible -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfd4b719f drm_i2c_encoder_commit -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfe434b9b drm_crtc_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfe6bca82 drm_syncobj_find_fence -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfeb953b1 __drm_printfn_seq_file -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfee00b6f drm_mode_create -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x011d2f9f drm_helper_force_disable_all -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x013d9dbd 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 0x02ce2884 drm_kms_helper_poll_fini -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x038b6994 drm_dp_send_query_stream_enc_status -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x03c89f6f drm_kms_helper_poll_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x04607af6 drm_dp_dual_mode_set_tmds_output -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x05363f9b __drm_gem_reset_shadow_plane -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x058ad443 drm_fb_helper_prepare -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x05a43761 drm_fb_xrgb8888_to_rgb888 -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0789151f drm_atomic_helper_prepare_planes -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x080c637b drm_dp_set_subconnector_property -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x089e60ba drm_dp_start_crc -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x09575188 drm_atomic_helper_check_plane_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0a2b37f9 drm_dp_pcon_hdmi_frl_link_error_count -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0ac5ab3c __drm_atomic_helper_bridge_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0ad1d5ef drm_mode_config_helper_resume -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0cd1056b drm_fb_xrgb8888_to_rgb332 -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x10cf3ad2 drm_kms_helper_poll_disable -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x10fc5dfd drm_atomic_helper_commit_planes -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x110b2f05 drm_panel_bridge_remove -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x11e74c26 drm_atomic_helper_connector_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1235b509 drm_atomic_helper_commit_cleanup_done -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x12b941b0 drm_atomic_helper_connector_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1427c17d drm_dp_remote_aux_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x14c38f25 drm_gem_fb_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x14d237b6 drm_dp_downstream_debug -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x155398cf drm_gem_fb_vunmap -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 0x176fc0d3 drm_fb_xrgb8888_to_gray8 -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1a001410 drm_atomic_helper_resume -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1a0ff9bd drm_lspcon_set_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1a5bf3ca drm_dsc_dp_rc_buffer_size -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1a91f6ce drm_primary_helper_funcs -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 0x1be4b39b drm_dp_cec_set_edid -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1c9a516c drm_atomic_helper_check_modeset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1d5a6ece drm_atomic_helper_wait_for_dependencies -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1f4180b1 drm_fb_blit -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x20707abe drm_dp_dpcd_write -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x216503bf devm_drm_panel_bridge_add -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x23961837 drm_dp_downstream_max_bpc -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x24cb414b drm_atomic_helper_disable_plane -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2579c895 drm_atomic_helper_plane_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2650fd2c __drm_atomic_helper_connector_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x26815dbc drm_dp_link_rate_to_bw_code -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2692167a drm_panel_bridge_connector -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x26b4be1c drm_atomic_helper_calc_timestamping_constants -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x27aaccc8 drm_scdc_write -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x27c13cef drm_dp_dpcd_read -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2872977e drm_atomic_helper_wait_for_vblanks -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x28744875 drm_fb_helper_sys_fillrect -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x28c51c74 drm_helper_disable_unused_functions -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x28ed1d10 __drm_gem_duplicate_shadow_plane_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2aadabd1 drm_atomic_helper_update_plane -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2ad6a3cc drm_atomic_helper_disable_planes_on_crtc -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2b4241f4 drm_fb_helper_set_par -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2cc1493b drm_atomic_helper_page_flip -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2d09ec93 drm_dp_atomic_release_vcpi_slots -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2d91bee2 drm_helper_move_panel_connectors_to_head -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2e0aeecd drm_atomic_helper_check -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2ec4e989 drm_gem_destroy_shadow_plane_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2fa94ef2 drm_dp_downstream_444_to_420_conversion -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x304da1e4 drm_dp_find_vcpi_slots -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x305ab4b9 drm_atomic_helper_commit_modeset_enables -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x30a6e9bc drm_panel_dp_aux_backlight -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x31dc748d drm_fb_memcpy -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x34bece46 drm_kms_helper_hotplug_event -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x361d4ba5 drm_atomic_helper_damage_iter_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x364a08ef drm_dp_set_phy_test_pattern -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x36e0945a drm_atomic_helper_dirtyfb -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x36f0a06f drm_fb_helper_deferred_io -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x37a9a3df drm_fb_helper_cfb_fillrect -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x38a65d10 drm_gem_duplicate_shadow_plane_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x392a838b drm_dp_downstream_max_dotclock -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3bb6dc50 drm_atomic_helper_shutdown -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3d650890 drm_fb_helper_ioctl -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3e7d706b drm_dp_dual_mode_get_tmds_output -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3ec28412 drm_atomic_helper_crtc_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3ed6a06a __drm_atomic_helper_crtc_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3fb5af7f drm_dp_pcon_pps_override_buf -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3fd97ac3 drm_dp_vsc_sdp_log -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x40ae4eef drm_fb_helper_sys_imageblit -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4252b301 drm_atomic_helper_connector_tv_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x42690726 drm_dp_read_sink_count -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x44803c79 drm_edp_backlight_set_level -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x44823323 drm_scdc_get_scrambling_status -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x45ae84eb drm_fb_helper_cfb_imageblit -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4603c416 drm_dp_pcon_dsc_bpp_incr -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x464a7410 drm_dp_dual_mode_read -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x46eae4d8 drm_atomic_helper_commit_planes_on_crtc -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x47a026b3 drm_fb_helper_sys_write -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x47c710bf drm_dp_link_train_clock_recovery_delay -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x487048a1 drm_dp_mst_topology_mgr_suspend -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x498e107a drm_lspcon_get_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4a76f61c drm_atomic_helper_suspend -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4c9b4692 drm_dp_mst_dsc_aux_for_port -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4cbbf167 drm_gem_prepare_shadow_fb -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4ee4c951 drm_dp_pcon_frl_configure_2 -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4f43647c drm_primary_helper_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4faed68e drm_dp_pcon_hdmi_link_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x53cb65ee drm_dp_update_payload_part2 -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5407ae9e drm_dp_get_dual_mode_type_name -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x558b31e8 drm_gem_fb_vmap -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x567d21f1 drm_helper_encoder_in_use -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x56a663e9 drm_dp_dsc_sink_line_buf_depth -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x575b89f0 drm_fb_memcpy_toio -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x582f248e drm_dp_get_adjust_request_pre_emphasis -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x588395de drm_dp_mst_put_port_malloc -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 0x5a4e7d65 __drm_atomic_helper_crtc_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5a545411 drm_atomic_helper_async_check -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5acf7d16 drm_dp_mst_topology_mgr_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5bcb9863 drm_fb_helper_restore_fbdev_mode_unlocked -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5c306b55 drm_dp_cec_unregister_connector -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5dab0d61 drm_atomic_helper_setup_commit -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5ed221d5 drm_dp_pcon_is_frl_ready -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x61788b4e drm_atomic_helper_commit_modeset_disables -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x62a68543 drm_helper_resume_force_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x631d797f drm_dp_dpcd_read_link_status -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x639f4213 drm_fb_helper_output_poll_changed -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 0x65c23708 drm_gem_simple_display_pipe_prepare_fb -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x674f5426 __drm_atomic_helper_plane_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x677227e0 devm_drm_panel_bridge_add_typed -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x67dc85b3 drm_atomic_helper_check_crtc_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x680ebf62 drm_dp_pcon_reset_frl_config -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x68d8dce7 drm_dp_downstream_is_tmds -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x69d048f2 drm_dp_mst_reset_vcpi_slots -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6a40afc1 drm_dp_pcon_frl_configure_1 -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6b07663c drm_dp_mst_connector_late_register -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6b3b8b5b drm_gem_fb_end_cpu_access -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 0x6c3b485c drm_crtc_helper_set_config -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6d99d699 __drm_atomic_helper_crtc_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7053fa72 drm_dp_get_pcon_max_frl_bw -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x73011db0 drm_dp_bw_code_to_link_rate -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7361420c drm_dp_lttpr_link_train_channel_eq_delay -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x73ec5b04 drm_dp_send_real_edid_checksum -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x741d3568 drm_dp_mst_connector_early_unregister -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x741fc206 drm_dp_aux_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7649bac7 drm_fb_helper_check_var -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x768a02f8 drm_atomic_helper_plane_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x76ff6644 drm_dp_lttpr_pre_emphasis_level_3_supported -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x772feabe drm_dp_mst_deallocate_vcpi -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7785c3a8 drm_dp_pcon_pps_default -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x78d2511c drm_dp_read_mst_cap -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x79f45b97 drm_dp_pcon_convert_rgb_to_ycbcr -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7af569fe drm_dp_mst_topology_mgr_resume -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7eb63544 drm_gem_simple_kms_reset_shadow_plane -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7f91e8db drm_fb_helper_fill_info -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x804294f6 drm_atomic_helper_commit_duplicated_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x807bb3ce __drm_atomic_helper_connector_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x811ed1c7 drm_fb_helper_set_suspend_unlocked -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8202307e drm_dp_stop_crc -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x829b6048 drm_dp_dsc_sink_max_slice_count -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x82e434fd drm_dp_read_lttpr_common_caps -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x82f7ad6c drm_dp_mst_get_vcpi_slots -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x83b56b74 drm_atomic_helper_wait_for_fences -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8473a9c1 drm_gem_fb_create_handle -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x84ae7bdf drm_dp_mst_topology_state_funcs -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x84ffcbef drm_fb_helper_fini -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x856ef7d0 drm_fbdev_generic_setup -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x863318a7 drm_atomic_helper_fake_vblank -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x87719ea9 drm_helper_hpd_irq_event -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x877516fe drm_gem_simple_kms_cleanup_shadow_fb -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8788e2bb drm_fb_helper_debug_leave -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x88498723 drm_dp_send_power_updown_phy -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x894b1f57 drm_dp_get_adjust_request_post_cursor -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x89c37ba0 drm_scdc_set_high_tmds_clock_ratio -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8b0e2131 __drm_gem_destroy_shadow_plane_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8c708973 drm_atomic_helper_bridge_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8c85fc82 drm_atomic_helper_connector_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8ca2d9e4 drm_dp_calc_pbn_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8cbd0e6f drm_atomic_helper_commit_tail -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8d701329 drm_dp_clock_recovery_ok -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8eb60ab9 drm_dp_mst_atomic_enable_dsc -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8ff11ba0 drm_scdc_read -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x903055bd drm_atomic_helper_page_flip_target -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x90cb90af drm_fb_helper_set_suspend -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x922fa66e drm_dp_dual_mode_write -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x925954f2 drm_dp_read_sink_count_cap -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x94891b8b drm_fb_helper_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x94f042c7 drm_dp_read_dpcd_caps -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x95875074 drm_edp_backlight_disable -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x964b41f0 drm_dp_get_phy_test_pattern -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x96f4ed8d drm_dp_get_vc_payload_bw -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9aa60a59 drm_dp_pcon_hdmi_link_active -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9aea4d3d drm_atomic_get_mst_topology_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9b81addc drm_self_refresh_helper_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9ccfef38 drm_dp_pcon_frl_prepare -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9d13b963 drm_fb_xrgb8888_to_rgb565 -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9d58d7b7 drm_gem_fb_begin_cpu_access -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9d62e223 __drm_atomic_helper_plane_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9e3be0be drm_dp_read_desc -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9ef89bc5 drm_edp_backlight_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa0574913 drm_atomic_helper_damage_merged -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa11d60aa drm_fb_helper_hotplug_event -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa1b8e36c drm_atomic_helper_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa1b96a6d drm_fb_helper_blank -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa1fefe6a drm_dp_psr_setup_time -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa2fcecc4 drm_atomic_helper_async_commit -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa4a920cc drm_dp_check_act_status -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa4b7f082 drm_atomic_helper_commit_hw_done -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa5749b38 drm_dp_mst_allocate_vcpi -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa5a0ac61 __drm_atomic_helper_plane_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa748a3ef drm_fb_helper_initial_config -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa77f6474 drm_dp_mst_hpd_irq -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa843606e drm_dp_dsc_sink_supported_input_bpcs -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa9fa1a5a drm_fb_helper_pan_display -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xab06c138 drm_dp_update_payload_part1 -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xab930157 drm_helper_probe_detect -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xaba9318c drm_fb_swab -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xad76cc2f drm_dp_dual_mode_max_tmds_clock -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xad93b061 drm_atomic_helper_disable_all -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xadf2905b drm_dp_mst_get_edid -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xaf267620 drm_dp_lttpr_count -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb0fa11f6 drm_crtc_helper_set_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb167c34e drm_fb_helper_unregister_fbi -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb1ffe1b1 drm_dp_aux_unregister -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb2e2443d drm_edp_backlight_enable -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb2f75c15 drm_atomic_helper_crtc_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb44abdfc drm_dp_mst_topology_mgr_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb53fd3e5 drm_fb_helper_debug_enter -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb67862d7 drm_dp_mst_topology_mgr_set_mst -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb69a4cf9 drm_atomic_helper_cleanup_planes -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xba08fd0f drm_helper_probe_single_connector_modes -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbb5b6346 drm_kms_helper_poll_enable -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbf68908e 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 0xc036afac drm_dp_cec_irq -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc0c2a2b0 drm_dp_downstream_id -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc0edc059 drm_dp_pcon_pps_override_param -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc1445b95 drm_gem_simple_kms_destroy_shadow_plane_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc2b5968d drm_fb_helper_cfb_copyarea -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc4e83e9f drm_dp_read_downstream_info -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc5c99a79 drm_dp_get_adjust_request_voltage -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc656d8d3 drm_atomic_helper_set_config -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc685718c drm_atomic_helper_check_plane_damage -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc79ecffb drm_dp_downstream_is_type -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc997d604 drm_fb_helper_lastclose -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc9ad5e72 __drm_atomic_helper_crtc_state_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcabbe1a7 drm_atomic_helper_bridge_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcaf04c78 drm_helper_mode_fill_fb_struct -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcb27e8b7 __drm_atomic_helper_bridge_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcb72e24a drm_dp_mst_detect_port -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcb7e5436 drm_self_refresh_helper_alter_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcbc66753 drm_gem_reset_shadow_plane -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcbf08630 drm_dp_cec_unset_edid -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xce53346c drm_atomic_helper_crtc_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcec5f50f __drm_atomic_helper_connector_state_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd03efbee drm_dp_aux_register -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd097a221 drm_simple_encoder_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd121f426 drm_fb_xrgb8888_to_mono -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd1670f94 drm_helper_connector_dpms -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd2169ee2 drm_fb_xrgb8888_to_rgb888_toio -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd263c302 drm_dp_mst_dump_topology -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd5d8b44f __drm_atomic_helper_plane_state_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd620cce2 devm_drm_of_get_bridge -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd9fc169a drm_dp_mst_get_port_malloc -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xda34c2f3 drm_gem_simple_kms_duplicate_shadow_plane_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdb7700c9 drm_atomic_helper_bridge_propagate_bus_fmt -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdbb56c22 drm_panel_bridge_add -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdbf78a68 drm_scdc_set_scrambling -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdcb0d790 drm_atomic_helper_commit -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdd17ee27 drm_self_refresh_helper_update_avg_times -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdd687d27 drm_fb_helper_sys_copyarea -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdec254a6 drm_mode_config_helper_suspend -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdfec88d1 drm_dp_read_lttpr_phy_caps -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe03289d1 drm_atomic_helper_check_planes -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe077c62f drm_dp_link_train_channel_eq_delay -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe207e2b8 drm_crtc_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe2b36b8c drm_atomic_helper_commit_tail_rpm -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe475e5b7 drm_fb_build_fourcc_list -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe5360b84 drm_dp_pcon_dsc_max_slices -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe5851287 drm_fb_helper_setcmap -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe990096a drm_dp_cec_register_connector -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xecce1966 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 0xeefa120d drm_self_refresh_helper_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xeff8d486 __drm_atomic_helper_private_obj_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf092d262 __drm_atomic_helper_connector_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf1938d75 drm_helper_crtc_in_use -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf30db916 drm_fb_clip_offset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf3274fbe drm_fb_helper_sys_read -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf3997550 drm_fb_xrgb8888_to_rgb565_toio -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf3a0ed51 drm_dp_dpcd_read_phy_link_status -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf3f10670 drm_dp_dual_mode_detect -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf4dbe597 drm_atomic_helper_wait_for_flip_done -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf50fbf76 drm_atomic_helper_swap_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf542c095 drm_fb_xrgb8888_to_xrgb2101010_toio -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 0xf6bca15b drm_dp_mst_add_affected_dsc_crtcs -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf6d3da36 drm_atomic_helper_bridge_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf8c0381e drm_atomic_helper_plane_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfa44c4a3 drm_atomic_helper_update_legacy_modeset_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfacf92c6 drm_simple_display_pipe_attach_bridge -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfb1a7a5a drm_dp_downstream_rgb_to_ycbcr_conversion -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfb8fc5aa drm_gem_simple_kms_prepare_shadow_fb -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfbb3162a drm_simple_display_pipe_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfc34d268 __drmm_simple_encoder_alloc -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfc7d7010 drm_panel_bridge_add_typed -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfd3b19ae drm_fb_helper_alloc_fbi -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfd6e1f14 drm_dp_downstream_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfe12bcb9 drm_dsc_compute_rc_parameters -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xffd2b91d drm_dp_pcon_frl_enable -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x068fe922 mipi_dbi_spi_init -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x0d6aef68 mipi_dbi_hw_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x25455fe6 mipi_dbi_command_read -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x3e5523dc mipi_dbi_poweron_conditional_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x469a8537 mipi_dbi_dev_init -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x4bae0ffd mipi_dbi_spi_transfer -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x4f8aa6f5 mipi_dbi_pipe_disable -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x5b37de3c mipi_dbi_command_buf -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x5c56439d mipi_dbi_enable_flush -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x963a8b75 mipi_dbi_debugfs_init -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xa31bb895 mipi_dbi_pipe_update -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xa846c6c5 mipi_dbi_display_is_on -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xb57c2719 mipi_dbi_command_stackbuf -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xc60565f8 mipi_dbi_dev_init_with_formats -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xe002345b mipi_dbi_spi_cmd_max_speed -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xeb828740 mipi_dbi_poweron_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xf2157e20 mipi_dbi_buf_copy -EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0x02fa2464 drm_gem_ttm_dumb_map_offset -EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0x1e02a4db drm_gem_ttm_print_info -EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0x57c38e67 drm_gem_ttm_mmap -EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0x58b7ba7b drm_gem_ttm_vunmap -EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0x6ad3435c drm_gem_ttm_vmap -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x06fe2362 drm_gem_vram_simple_display_pipe_cleanup_fb -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x3362ad7d drm_gem_vram_offset -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x43336109 drm_vram_helper_mode_valid -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x56a10b47 drm_gem_vram_put -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x57e9f91a drm_gem_vram_simple_display_pipe_prepare_fb -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x5dc6bd00 drm_gem_vram_plane_helper_cleanup_fb -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x66ab2ae4 drm_gem_vram_fill_create_dumb -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x69f1f59c drm_gem_vram_pin -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x8fb51469 drm_gem_vram_plane_helper_prepare_fb -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x91da4d1d drm_gem_vram_vmap -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x953b7f2a drm_gem_vram_vunmap -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xab59f37e drm_vram_mm_debugfs_init -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xb5e43536 drmm_vram_helper_init -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xbf10f8a2 drm_gem_vram_create -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xd683034f drm_gem_vram_unpin -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xfd87d3ea drm_gem_vram_driver_dumb_create -EXPORT_SYMBOL drivers/gpu/drm/rockchip/rockchipdrm 0x443b707e rockchip_drm_wait_vact_end -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x002aa01c drm_sched_resume_timeout -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x0c2cfa70 drm_sched_fault -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x11fbe3fe drm_sched_stop -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x1689ae22 drm_sched_increase_karma_ext -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x1d007050 drm_sched_init -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x21a10c85 drm_sched_increase_karma -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x2b208c51 drm_sched_fini -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x3c7209dd drm_sched_job_init -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x4a8fbf8b drm_sched_entity_init -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x4c55bf5b drm_sched_pick_best -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x4f791d1c drm_sched_entity_set_priority -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x79521230 drm_sched_entity_fini -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x7a48e15d drm_sched_dependency_optimized -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x844c96bb drm_sched_entity_modify_sched -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x8caf29e2 drm_sched_entity_destroy -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x90666d5c drm_sched_resubmit_jobs -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x973b64ec drm_sched_job_cleanup -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xa45054f6 to_drm_sched_fence -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xa965d780 drm_sched_resubmit_jobs_ext -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xccf1e9b5 drm_sched_suspend_timeout -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xcd51fd0d drm_sched_entity_push_job -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xd7cae3e8 drm_sched_reset_karma -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xde29f1d2 drm_sched_start -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xff13dea8 drm_sched_entity_flush -EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-frontend 0x0c6c0d46 sun4i_frontend_enable -EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-frontend 0x3ab404a3 sun4i_frontend_update_coord -EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-frontend 0x4f26c8f6 sun4i_frontend_init -EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-frontend 0x843c7519 sun4i_frontend_update_buffer -EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-frontend 0x8913d16c 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 0xe13164ef sun4i_frontend_of_table -EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-frontend 0xed902ffe sun4i_frontend_update_formats -EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-tcon 0x1c188108 sun4i_rgb_init -EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-tcon 0x2ba16b80 sun4i_tcon_mode_set -EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-tcon 0x4f084ce5 sun4i_dclk_free -EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-tcon 0x567a6d85 sun4i_tcon_enable_vblank -EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-tcon 0x6c10c7a7 sun4i_tcon_of_table -EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-tcon 0xc67afabf sun4i_dclk_create -EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-tcon 0xc9d138e7 sun4i_lvds_init -EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun8i_tcon_top 0x350e5dcd sun8i_tcon_top_of_table -EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun8i_tcon_top 0x70fa1d7e sun8i_tcon_top_set_hdmi_src -EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun8i_tcon_top 0x7f5542c0 sun8i_tcon_top_de_config -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x0256459c ttm_eu_reserve_buffers -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x037ee2fe ttm_resource_manager_evict_all -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x10d7f4f1 ttm_bo_eviction_valuable -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1f269436 ttm_bo_validate -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x21be83d1 ttm_device_swapout -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2dc67f3c ttm_bo_kunmap -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2ede5c31 ttm_tt_fini -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x30ce135f ttm_bo_mem_space -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x358b195c ttm_bo_vm_fault_reserved -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x383e1294 ttm_tt_destroy_common -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x3b37dc86 ttm_device_fini -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4073613f ttm_resource_free -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x42f3cbb1 ttm_pool_alloc -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x47f3240c ttm_resource_manager_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x494ae97b ttm_pool_debugfs -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4f98a325 ttm_device_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x50241002 ttm_bo_move_accel_cleanup -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x55b1f7ca ttm_bo_move_memcpy -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x62ec60eb ttm_kmap_iter_iomap_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x65e574d0 ttm_bo_put -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6ec3833a ttm_move_memcpy -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x74d35e9f ttm_bo_vm_close -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x79f45459 ttm_bo_lock_delayed_workqueue -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x88e7e249 ttm_glob -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8b8d89ff ttm_sg_tt_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8be18ca2 ttm_bo_vm_open -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8e8d3e75 ttm_bo_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x9a4e798b ttm_eu_backoff_reservation -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa5791f5c ttm_range_man_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xaeafd16e ttm_global_swapout -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb753ca08 ttm_bo_mem_compat -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xbb20657b ttm_range_man_fini -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xca1577d4 ttm_bo_unlock_delayed_workqueue -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xca4641fa ttm_pool_free -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xcba02054 ttm_bo_vm_access -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd0acaff5 ttm_bo_kmap -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd5bb58ad ttm_bo_vm_fault -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd62118c9 ttm_resource_manager_debug -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd89ceb4f ttm_bo_vm_dummy_page -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd9d93990 ttm_kmap_iter_tt_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xdc20188c ttm_bo_vm_reserve -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xddac083f ttm_bo_wait -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xdf10f0b4 ttm_bo_bulk_move_lru_tail -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe82cf9a8 ttm_io_prot -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe955e1e9 ttm_bo_unmap_virtual -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xed57a288 ttm_bo_vmap -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xeef2c604 ttm_bo_init_reserved -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf00e7193 ttm_bo_mmap_obj -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf026e914 ttm_bo_vunmap -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf12af4eb ttm_bo_move_to_lru_tail -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf2108215 ttm_tt_populate -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf5683b3a ttm_resource_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf748e9cf ttm_tt_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf952a1d6 ttm_eu_fence_buffer_objects -EXPORT_SYMBOL drivers/gpu/drm/vmwgfx/vmwgfx 0x409a70af 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 0x6c4eb1a0 ttm_mem_global_free -EXPORT_SYMBOL drivers/gpu/drm/vmwgfx/vmwgfx 0xad156f4c ttm_mem_glob -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x02beae53 host1x_job_pin -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x02fdd17b host1x_syncpt_read_max -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x06388aef host1x_device_exit -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x22c4df59 host1x_syncpt_id -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x2df64144 host1x_device_init -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x35e7a3f9 host1x_job_put -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x4022c792 host1x_client_unregister -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x47160374 host1x_channel_request -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x4e955f1d host1x_driver_register_full -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x4fd3948d host1x_fence_create -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x514cd86b host1x_client_suspend -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x51bd874a host1x_job_submit -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x51de13ce host1x_syncpt_base_id -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x5ac2eeca host1x_syncpt_get_by_id -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x62bd98ec host1x_syncpt_request -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x634b1415 __host1x_client_register -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x6c2aab32 host1x_channel_put -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x6ce8a79d host1x_syncpt_read -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x72e78e54 tegra_mipi_start_calibration -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x7f2d43fa host1x_syncpt_get -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x8264d17f host1x_job_unpin -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x8739907d host1x_syncpt_get_base -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x88c5ba3a host1x_driver_unregister -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x9451a33e tegra_mipi_free -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x9c365922 host1x_syncpt_wait -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x9ec26512 host1x_job_add_gather -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xa358063b host1x_syncpt_get_by_id_noref -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xa3c7f9b3 host1x_job_add_wait -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xa72aedda host1x_job_get -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xa733ff60 tegra_mipi_disable -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xad287131 host1x_syncpt_incr_max -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xb378fbb0 host1x_syncpt_incr -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xbcbe65a0 tegra_mipi_finish_calibration -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xd1e69a00 host1x_client_resume -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xd5d173b8 host1x_client_exit -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xd61f34c0 host1x_syncpt_alloc -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xe2465a28 host1x_job_alloc -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xec135d0c host1x_channel_get -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xedb916eb tegra_mipi_request -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xf3af7d9c host1x_get_dma_mask -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xf758a901 host1x_syncpt_put -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xf8a79b19 tegra_mipi_enable -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xfb762187 host1x_syncpt_read_min -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xfd65975a __host1x_client_init -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xfe7250de host1x_syncpt_release_vblank_reservation -EXPORT_SYMBOL drivers/hid/hid 0xf42b7fcc hid_bus_type -EXPORT_SYMBOL drivers/hv/hv_vmbus 0x8db94e48 vmbus_sendpacket -EXPORT_SYMBOL drivers/hv/hv_vmbus 0xff2cbaf0 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 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 0xbaa78baf sch56xx_watchdog_register -EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0x33c09247 i2c_bit_add_numbered_bus -EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0x77a38421 i2c_bit_add_bus -EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0x9b09536e i2c_bit_algo -EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-pca 0x347b5b4e i2c_pca_add_numbered_bus -EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-pca 0xb343b858 i2c_pca_add_bus -EXPORT_SYMBOL drivers/i2c/busses/i2c-amd756 0x8bad41f2 amd756_smbus -EXPORT_SYMBOL drivers/iio/accel/bma400_core 0x39ce860b bma400_remove -EXPORT_SYMBOL drivers/iio/accel/bma400_core 0x98fce9d7 bma400_regmap_config -EXPORT_SYMBOL drivers/iio/accel/bma400_core 0xe028ea62 bma400_probe -EXPORT_SYMBOL drivers/iio/accel/kxsd9 0x5988a817 kxsd9_dev_pm_ops -EXPORT_SYMBOL drivers/iio/accel/kxsd9 0xab2eac67 kxsd9_common_probe -EXPORT_SYMBOL drivers/iio/accel/kxsd9 0xf5e374af kxsd9_common_remove -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x1266d268 mma9551_gpio_config -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x37e7f5f9 mma9551_read_accel_chan -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x3ac93192 mma9551_write_config_byte -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x41ef446c mma9551_read_accel_scale -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x4293cbb1 mma9551_write_config_word -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x4cd0f5c9 mma9551_update_config_bits -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x545c9cc0 mma9551_read_config_words -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x5e1cbc70 mma9551_set_power_state -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xa2aa47f6 mma9551_read_config_word -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xa8a40424 mma9551_read_status_word -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xaeff7de3 mma9551_set_device_state -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xbcd7fe96 mma9551_sleep -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xc093dda8 mma9551_read_version -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xd263fd15 mma9551_read_config_byte -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xdc8e089b mma9551_read_status_byte -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xf752c665 mma9551_app_reset -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xf9b1f198 mma9551_read_status_words -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xfeba6556 mma9551_write_config_words -EXPORT_SYMBOL drivers/iio/accel/st_accel 0xc67c9f75 st_accel_common_probe -EXPORT_SYMBOL drivers/iio/accel/st_accel 0xc7cba18e st_accel_get_settings -EXPORT_SYMBOL drivers/iio/accel/st_accel 0xde71e02d 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 0x2cedf530 iio_triggered_buffer_cleanup -EXPORT_SYMBOL drivers/iio/buffer/industrialio-triggered-buffer 0xad7d32b1 iio_triggered_buffer_setup_ext -EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0x78baddbe iio_kfifo_free -EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0xd603b972 iio_kfifo_allocate -EXPORT_SYMBOL drivers/iio/chemical/bme680_core 0x628385f8 bme680_regmap_config -EXPORT_SYMBOL drivers/iio/chemical/scd30_core 0x283c2bc3 scd30_suspend -EXPORT_SYMBOL drivers/iio/chemical/scd30_core 0xaf0d718f scd30_probe -EXPORT_SYMBOL drivers/iio/chemical/scd30_core 0xd3e1ee2e 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 0x1490d51f ms_sensors_show_heater -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x2d2f5cd5 ms_sensors_reset -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x2e725339 ms_sensors_ht_read_humidity -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x3d32f3d2 ms_sensors_write_resolution -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x42b6a050 ms_sensors_convert_and_read -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x6279c4cb ms_sensors_read_temp_and_pressure -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x8f579ce2 ms_sensors_read_serial -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xb872dd71 ms_sensors_write_heater -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xbb1c6272 ms_sensors_show_battery_low -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xce888c69 ms_sensors_ht_read_temperature -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xff7b8a1d ms_sensors_tp_read_prom -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x004100ac ssp_enable_sensor -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x64c60cf7 ssp_change_delay -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0xe3faaac5 ssp_disable_sensor -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0xf97a257e ssp_register_consumer -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0xfa15caf5 ssp_get_sensor_delay -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/ssp_iio 0x4ae553b2 ssp_common_buffer_postdisable -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/ssp_iio 0x637850af ssp_common_process_data -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/ssp_iio 0xa2f21f29 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 0x0ddbd24c st_sensors_get_settings_index -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x0f821313 st_sensors_sysfs_scale_avail -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x12059cd4 st_sensors_power_enable -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x29609dbb st_sensors_set_axis_enable -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x33a80079 st_sensors_debugfs_reg_access -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x35760bda st_sensors_validate_device -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x4a95d13e st_sensors_verify_id -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x4ffd0575 st_sensors_init_sensor -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x65a9eda0 st_sensors_set_enable -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x7df32ca0 st_sensors_set_odr -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x9f349455 st_sensors_set_fullscale_by_gain -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xb665fcf2 st_sensors_sysfs_sampling_frequency_avail -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xbbe4db58 st_sensors_deallocate_trigger -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xbf398944 st_sensors_set_dataready_irq -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xd6f47025 st_sensors_dev_name_probe -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xe0ae0344 st_sensors_read_info_raw -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xf3c6e968 st_sensors_power_disable -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xffe89c3f st_sensors_allocate_trigger -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors_i2c 0xaed78432 st_sensors_i2c_configure -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors_spi 0xd4545d2b st_sensors_spi_configure -EXPORT_SYMBOL drivers/iio/gyro/mpu3050 0x3dae737d mpu3050_common_remove -EXPORT_SYMBOL drivers/iio/gyro/mpu3050 0x74388578 mpu3050_common_probe -EXPORT_SYMBOL drivers/iio/gyro/mpu3050 0xc97bfe32 mpu3050_dev_pm_ops -EXPORT_SYMBOL drivers/iio/gyro/st_gyro 0x425f82e1 st_gyro_common_remove -EXPORT_SYMBOL drivers/iio/gyro/st_gyro 0xb8bded3b st_gyro_common_probe -EXPORT_SYMBOL drivers/iio/gyro/st_gyro 0xd9dcb8d5 st_gyro_get_settings -EXPORT_SYMBOL drivers/iio/humidity/hts221 0xe609af05 hts221_probe -EXPORT_SYMBOL drivers/iio/humidity/hts221 0xf51e8b88 hts221_pm_ops -EXPORT_SYMBOL drivers/iio/imu/bmi160/bmi160_core 0xca19cfae bmi160_enable_irq -EXPORT_SYMBOL drivers/iio/imu/bmi160/bmi160_core 0xdb87c7eb bmi160_regmap_config -EXPORT_SYMBOL drivers/iio/imu/fxos8700_core 0x1d1dbb0f fxos8700_regmap_config -EXPORT_SYMBOL drivers/iio/imu/st_lsm6dsx/st_lsm6dsx 0x092212fd st_lsm6dsx_pm_ops -EXPORT_SYMBOL drivers/iio/imu/st_lsm6dsx/st_lsm6dsx 0x21b74519 st_lsm6dsx_probe -EXPORT_SYMBOL drivers/iio/industrialio 0x077095e5 iio_device_free -EXPORT_SYMBOL drivers/iio/industrialio 0x180e5e1f iio_trigger_free -EXPORT_SYMBOL drivers/iio/industrialio 0x1bfbf49b iio_trigger_notify_done -EXPORT_SYMBOL drivers/iio/industrialio 0x2d6bcdcb iio_trigger_generic_data_rdy_poll -EXPORT_SYMBOL drivers/iio/industrialio 0x383568b2 __iio_trigger_register -EXPORT_SYMBOL drivers/iio/industrialio 0x38399e30 iio_device_alloc -EXPORT_SYMBOL drivers/iio/industrialio 0x51f6834d iio_device_set_clock -EXPORT_SYMBOL drivers/iio/industrialio 0x5ccd8804 iio_read_mount_matrix -EXPORT_SYMBOL drivers/iio/industrialio 0x6e09e709 iio_trigger_alloc -EXPORT_SYMBOL drivers/iio/industrialio 0x798292ab iio_trigger_validate_own_device -EXPORT_SYMBOL drivers/iio/industrialio 0x7f94c983 iio_read_const_attr -EXPORT_SYMBOL drivers/iio/industrialio 0x7fa57fc0 iio_buffer_init -EXPORT_SYMBOL drivers/iio/industrialio 0x8052287e iio_get_time_ns -EXPORT_SYMBOL drivers/iio/industrialio 0x89dd3684 iio_trigger_poll_chained -EXPORT_SYMBOL drivers/iio/industrialio 0x8bc16ecb iio_trigger_unregister -EXPORT_SYMBOL drivers/iio/industrialio 0x8c03dbe8 iio_trigger_poll -EXPORT_SYMBOL drivers/iio/industrialio 0x8e3315f4 iio_bus_type -EXPORT_SYMBOL drivers/iio/industrialio 0xa040870d iio_get_time_res -EXPORT_SYMBOL drivers/iio/industrialio 0xb6495e2e iio_trigger_set_immutable -EXPORT_SYMBOL drivers/iio/industrialio 0xc97c6b75 iio_push_event -EXPORT_SYMBOL drivers/iio/industrialio 0xcff5041e __iio_device_register -EXPORT_SYMBOL drivers/iio/industrialio 0xdf76bbeb iio_pollfunc_store_time -EXPORT_SYMBOL drivers/iio/industrialio 0xe2079ec8 iio_trigger_using_own -EXPORT_SYMBOL drivers/iio/industrialio 0xf20b2208 iio_device_unregister -EXPORT_SYMBOL drivers/iio/industrialio 0xf9429128 iio_device_get_clock -EXPORT_SYMBOL drivers/iio/industrialio-configfs 0x929a4ffb iio_configfs_subsys -EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0x2ede5f4f iio_unregister_sw_device_type -EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0x8ff02954 iio_register_sw_device_type -EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0x9af051cc iio_sw_device_create -EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0xb51c2155 iio_sw_device_destroy -EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0x37510902 iio_sw_trigger_destroy -EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0x3dfa07ef iio_unregister_sw_trigger_type -EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0x614e8e14 iio_register_sw_trigger_type -EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0xd6a3b5a7 iio_sw_trigger_create -EXPORT_SYMBOL drivers/iio/industrialio-triggered-event 0x10c2144e iio_triggered_event_setup -EXPORT_SYMBOL drivers/iio/industrialio-triggered-event 0x7ff3a9a4 iio_triggered_event_cleanup -EXPORT_SYMBOL drivers/iio/light/st_uvis25_core 0x9325705f st_uvis25_pm_ops -EXPORT_SYMBOL drivers/iio/light/st_uvis25_core 0xbdbb8bb2 st_uvis25_probe -EXPORT_SYMBOL drivers/iio/magnetometer/bmc150_magn 0x1ba6cb10 bmc150_magn_regmap_config -EXPORT_SYMBOL drivers/iio/magnetometer/bmc150_magn 0x64261b19 bmc150_magn_pm_ops -EXPORT_SYMBOL drivers/iio/magnetometer/bmc150_magn 0xa581e059 bmc150_magn_probe -EXPORT_SYMBOL drivers/iio/magnetometer/bmc150_magn 0xd4817a54 bmc150_magn_remove -EXPORT_SYMBOL drivers/iio/magnetometer/hmc5843_core 0x109d9bbe hmc5843_common_suspend -EXPORT_SYMBOL drivers/iio/magnetometer/hmc5843_core 0x1177c8e1 hmc5843_common_remove -EXPORT_SYMBOL drivers/iio/magnetometer/hmc5843_core 0xb3960bea hmc5843_common_resume -EXPORT_SYMBOL drivers/iio/magnetometer/hmc5843_core 0xe733fe34 hmc5843_common_probe -EXPORT_SYMBOL drivers/iio/magnetometer/st_magn 0x48287374 st_magn_get_settings -EXPORT_SYMBOL drivers/iio/magnetometer/st_magn 0xb590604d st_magn_common_probe -EXPORT_SYMBOL drivers/iio/magnetometer/st_magn 0xfb347b65 st_magn_common_remove -EXPORT_SYMBOL drivers/iio/pressure/bmp280 0x010c63d2 bmp180_regmap_config -EXPORT_SYMBOL drivers/iio/pressure/bmp280 0x0517c9a5 bmp280_common_probe -EXPORT_SYMBOL drivers/iio/pressure/bmp280 0x53a5e213 bmp280_dev_pm_ops -EXPORT_SYMBOL drivers/iio/pressure/bmp280 0xeb8abeb0 bmp280_regmap_config -EXPORT_SYMBOL drivers/iio/pressure/ms5611_core 0x255f01d8 ms5611_probe -EXPORT_SYMBOL drivers/iio/pressure/ms5611_core 0xf05c8fd1 ms5611_remove -EXPORT_SYMBOL drivers/iio/pressure/st_pressure 0x9eb57448 st_press_common_remove -EXPORT_SYMBOL drivers/iio/pressure/st_pressure 0xc1af8bc0 st_press_get_settings -EXPORT_SYMBOL drivers/iio/pressure/st_pressure 0xdde39c9f st_press_common_probe -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x15d9d351 ib_cm_init_qp_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x163b7fa4 ib_destroy_cm_id -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x3671ca34 ib_send_cm_sidr_req -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x3ff9279f ib_send_cm_rej -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x57168d4e ib_send_cm_mra -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x65dda7a2 ib_send_cm_drep -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x69824a14 ibcm_reject_msg -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x85048652 ib_send_cm_sidr_rep -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x8abf6294 ib_create_cm_id -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x930bbdf5 ib_cm_listen -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xa504932f ib_send_cm_dreq -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xb2aab77c ib_send_cm_req -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xc00ea689 ib_send_cm_rtu -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xcd2f7862 ib_send_cm_rep -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xd281eb3a ib_cm_notify -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xee5e6824 ib_cm_insert_listen -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x00b2dc5e ib_port_register_client_groups -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x00cd25ea ib_get_rdma_header_version -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x02acd8eb ib_init_ah_from_mcmember -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x053bf3aa ib_device_put -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x062f14c8 ib_device_set_netdev -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x063c367f ib_register_event_handler -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x08d45573 rdma_user_mmap_io -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x093af811 ib_find_exact_cached_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0c1fb4a8 ib_open_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0c86f5cb ib_sa_register_client -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0d10e332 ib_query_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0d8722ec ib_init_ah_attr_from_path -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0ed8f774 ib_get_cached_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x11186621 ibdev_crit -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x12e6e51d rdma_create_ah -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1475e62a ib_modify_qp_with_udata -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x16113ba5 ib_port_unregister_client_groups -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x167285cb ib_create_wq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1898cf7b rdma_destroy_ah_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1991de71 ib_modify_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1b037462 __rdma_block_iter_start -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1b2fe07d ib_set_client_data -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1b58b30f ib_register_client -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1bd856ba rdma_restrack_count -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1c09d95a rdma_nl_put_driver_u32_hex -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1cb3e25b rdma_link_register -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x20640cd1 rdma_rw_ctx_destroy_signature -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x212a5a2c ib_query_port -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x21fdac45 rdma_user_mmap_entry_put -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x22f3cf93 ib_pack -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x231d7d07 rdma_link_unregister -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x26d0eece ib_sa_join_multicast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x274468d5 ib_create_qp_kernel -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x27d433a8 ib_modify_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x288a2054 rdma_nl_put_driver_u64 -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x28a687fd ibdev_emerg -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x29a5813a rdma_move_ah_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2e279237 ibdev_printk -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2ed3198a rdma_read_gid_l2_fields -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2f65775b ib_register_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2f97ef06 ib_dereg_mr_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2fded8b0 ibdev_info -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x305e5701 rdma_addr_size_kss -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3063e39b ib_set_vf_guid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x31a76f37 ib_check_mr_status -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x324367df rdma_addr_cancel -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x33843038 ib_dma_virt_map_sg -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x345b9430 ib_map_mr_sg -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3579d961 __ib_alloc_pd -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3588f6b4 rdma_user_mmap_entry_insert -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3592bf65 rdma_nl_unicast_wait -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x38a8e8b5 ib_rdmacg_uncharge -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x38cc7d47 roce_gid_type_mask_support -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3c96cf5a rdma_umap_priv_init -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3caff1d7 rdma_read_gid_attr_ndev_rcu -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3fc2387c ib_ud_header_unpack -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x40031baf ib_mr_pool_destroy -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x40848495 rdma_nl_put_driver_u64_hex -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x426e3a7a rdma_roce_rescan_device -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 0x43c05bfc rdma_nl_put_driver_string -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x43e0c7f1 ib_create_srq_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x44bc39de ib_set_vf_link_state -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x45e4e9dd rdma_query_ah -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x45fb8985 rdma_nl_chk_listeners -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x468cbaa9 rdma_nl_stat_hwcounter_entry -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4cc76d99 ib_cq_pool_get -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4e155af0 ib_response_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4e90435c ib_sa_free_multicast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4f909653 ib_set_device_ops -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x52ff188b rdma_find_gid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x542d970c ib_find_cached_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x54f30f4a ib_get_cached_port_state -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x55bb02f3 ib_cache_gid_type_str -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5723aa63 ib_create_qp_security -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x58df5b94 ib_get_gids_from_rdma_hdr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5909158f rdma_restrack_new -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x59208aee ib_dealloc_pd_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5f2c303b rdma_restrack_put -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x613b1e2e ib_is_mad_class_rmpp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x615dc5b3 ib_mad_kernel_rmpp_agent -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x616c7edf ib_reg_user_mr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x619bcaf6 rdma_create_user_ah -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x61d24c52 ib_rate_to_mbps -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6264c7e5 rdma_rw_ctx_init -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x62fd0e8d ib_unregister_client -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x634f2036 ib_query_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x63a4d0af ib_get_rmpp_segment -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x644ca667 ibdev_notice -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x64b31b12 ib_destroy_cq_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6699f690 ib_port_immutable_read -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x69420ac0 rdma_nl_register -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6a8103de ib_sg_to_pages -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6b958320 ib_ud_ip4_csum -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6c143d07 ib_destroy_wq_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6c26c176 rdma_modify_ah -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6c32c825 ib_drain_rq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6d5caf18 ib_find_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6e080659 rdma_read_gid_hw_context -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6e4cfec0 __ib_alloc_cq_any -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6ea6de51 ib_find_gid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6eb82f57 rdma_user_mmap_entry_remove -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6f3614b6 rdma_is_zero_gid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x71c7a6d0 ibdev_err -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x73baf9a2 ib_modify_qp_is_ok -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x73c1da38 rdma_user_mmap_entry_get -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7402ee0c ibnl_put_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x74f814a1 rdma_find_gid_by_port -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x75a729a0 rdma_nl_unregister -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x76605e55 ibdev_warn -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x770c0167 rdma_user_mmap_entry_insert_range -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x787ccc4c ib_get_mad_data_offset -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x790e8bc5 ib_get_vf_stats -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x79761d78 __ib_alloc_cq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x797727e6 ib_destroy_qp_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7b3a0abf rdma_query_gid_table -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7b5224fd __ib_create_cq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7c3fec16 ib_get_device_fw_str -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7db9fb68 ib_modify_port -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7e0fcf10 ib_rdmacg_try_charge -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7eacc3bf ib_detach_mcast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x83e6e43f ib_unregister_event_handler -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x85e8e70f rdma_alloc_netdev -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x86cef180 rdma_addr_size -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x86e250b0 rdma_init_netdev -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x872339f9 ib_dealloc_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x87d0c2e9 ib_device_get_by_name -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x880a8c3a ib_advise_mr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x899563d0 rdma_rw_ctx_signature_init -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8af51676 ib_qp_usecnt_dec -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8e615a3d rdma_rw_ctx_wrs -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8e7528da __rdma_block_iter_next -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8fc499e8 ib_create_ah_from_wc -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8fe4a1f6 rdma_translate_ip -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x90e807c7 ib_cache_gid_parse_type_str -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x90f96c93 ib_unregister_device_queued -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x93a9d70e ib_unregister_mad_agent -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x96724faa ib_alloc_mr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x99fff427 rdma_restrack_add -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9b3825d0 ib_free_recv_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9fcc0193 ib_mr_pool_init -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa050f447 rdma_get_gid_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa1d58d6b rdma_rw_ctx_destroy -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa432baf6 ib_unpack -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa477848b ib_get_net_dev_by_params -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa4a9dc0a rdma_dev_access_netns -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xaa7424ff rdma_port_get_link_layer -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xabf5f043 ib_drain_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xac751d7d rdma_move_grh_sgid_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xae956dce ib_rate_to_mult -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb0f31f26 ibnl_put_msg -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb1b62744 ib_create_qp_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb2d01ac7 rdma_restrack_parent_name -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb2e7d5e1 rdma_user_mmap_entry_get_pgoff -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb36e4148 ib_sa_pack_path -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb43086f6 rdma_restrack_del -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb7852a05 ib_ud_header_init -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb8132eee rdma_restrack_get_byid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb89f0990 ib_dispatch_event -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb95df001 rdma_rw_mr_factor -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb9d40ab6 ib_post_send_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xba7fadbc rdma_resolve_ip -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbca5171b ib_mr_pool_get -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbe2dedb1 ib_cq_pool_put -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbe2e27d1 ib_device_get_by_netdev -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbf75f779 rdma_query_gid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbf928d0a ib_register_mad_agent -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbfe5ee92 ib_get_vf_config -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc09cdcb8 ib_sa_path_rec_get -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc299bcbd ibdev_alert -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc397c23b ib_destroy_srq_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc5bf9d7a ib_attach_mcast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc66f9265 rdma_copy_src_l2_addr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc780e115 ib_sa_get_mcmember_rec -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc89f62a2 rdma_destroy_ah_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc8b16e75 ib_map_mr_sg_pi -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc9e976b0 ib_free_cq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xca287477 rdma_hold_gid_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcb289ca1 ib_unregister_device_and_put -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xce14cdb9 ib_dealloc_xrcd_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcfbc053b ib_unregister_driver -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd1b17f3f ib_close_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd40d1802 rdma_nl_unicast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd5b5e14c rdma_put_gid_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd60e9b3b rdma_restrack_get -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd6636ca6 rdma_addr_size_in6 -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd6b953da ib_modify_srq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd7b8b115 ib_create_send_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xda0d50ec ib_sa_cancel_query -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xda8c3383 ib_sa_guid_info_rec_query -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdb4773bd ib_unregister_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xddc343a3 ib_modify_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe183ed2f rdma_restrack_set_name -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe4bfb370 ib_drain_sq -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 0xe7515ddb ib_alloc_mr_integrity -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe7829967 ib_get_cached_lmc -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe7a16b6a ib_get_eth_speed -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe7b52e5f mult_to_ib_rate -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe8624c38 rdma_nl_put_driver_u32 -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe86bebe9 ib_get_vf_guid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe97f79cc rdma_set_cq_moderation -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe9e799fc ib_ud_header_pack -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe9f375a1 rdma_replace_ah_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xea89d532 rdma_nl_multicast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xeab18b99 rdma_rw_ctx_post -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xeb855095 ib_process_cq_direct -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xee5ca7fa rdma_copy_ah_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf1cb19fd ib_free_send_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf2a37624 ib_init_ah_attr_from_wc -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf4b8e805 ib_get_cached_subnet_prefix -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf5dedb30 rdma_node_get_transport -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf67a16f8 ib_alloc_xrcd_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf6ed3334 ib_event_msg -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf7d0e79d ib_port_sysfs_get_ibdev_kobj -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf7e2ce18 ib_mr_pool_put -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfb2da6a7 ib_resize_cq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfbc88923 ib_query_srq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfd7fe13c _ib_alloc_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfeba9ae6 ib_qp_usecnt_inc -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x02182582 ib_uverbs_get_ucontext_file -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x1b54bd5d ib_copy_path_rec_from_user -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x26f18d1d uverbs_finalize_uobj_create -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x30e0cb34 uverbs_fd_class -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x312b1d91 ib_umem_release -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x32c0c09f ib_uverbs_flow_resources_free -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x4019ce53 ib_umem_odp_unmap_dma_pages -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x472bf5e2 uverbs_copy_to_struct_or_zero -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x48fffa54 ib_umem_find_best_pgsz -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x4d38f8f0 ib_umem_odp_release -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x4fc72311 flow_resources_add -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x4fec9aea ib_umem_copy_from -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x5613dff0 uverbs_idr_class -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x5c2c815b ib_umem_odp_alloc_child -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x63057f4b ib_copy_path_rec_to_user -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x6961c6b8 ib_copy_ah_attr_to_user -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x6ecb470b uverbs_get_flags64 -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x7267b068 ib_umem_get_peer -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x734190ed uverbs_uobject_fd_release -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x7a926715 flow_resources_alloc -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x93a279ed _uverbs_alloc -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xac6757ba ib_umem_odp_alloc_implicit -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xb401376a ib_umem_dmabuf_get -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xb51a1c2a ib_umem_dmabuf_unmap_pages -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xbb7b4afe uverbs_copy_to -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xbde5c050 ib_unregister_peer_memory_client -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xc0a239cc _uverbs_get_const_signed -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xc187b8da ib_umem_activate_invalidation_notifier -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xc6287b6b ib_umem_dmabuf_map_pages -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xcd127297 ib_umem_get -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xce63d398 uverbs_uobject_put -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xce7f68e2 ib_umem_odp_get -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xe547e673 ib_umem_stop_invalidation_notifier -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xead2e04e uverbs_destroy_def_handler -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xed8441a3 ib_umem_odp_map_dma_and_lock -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xf538995e ib_copy_qp_attr_to_user -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xf56fb87b uverbs_get_flags32 -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xf72b9862 _uverbs_get_const_unsigned -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xfb7efe32 ib_register_peer_memory_client -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x0aaa5a08 iw_cm_reject -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x41dd18f5 iw_cm_connect -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x41e770f5 iw_cm_init_qp_attr -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x7e81df95 iw_cm_listen -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x931ae3d5 iw_destroy_cm_id -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xe91a153b iw_cm_accept -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xf3df871f iwcm_reject_msg -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xfbade692 iw_create_cm_id -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xfdeebe10 iw_cm_disconnect -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x0036ea4e rdma_disconnect -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x08c62da7 rdma_resolve_addr -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x0b2b3871 rdma_get_service_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x1367b984 rdma_consumer_reject_data -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x14663f52 rdma_create_qp -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x1dc6f931 rdma_listen -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x26cf8456 rdma_set_reuseaddr -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x2710bc5e rdma_set_afonly -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x4a9b64fd rdma_res_to_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x4aff2c5c rdma_connect -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x5b56be3a rdma_unlock_handler -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x5faca6e2 rdma_iw_cm_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x646cf21a rdma_leave_multicast -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x65a4a7f0 rdma_notify -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x66cdb8eb rdma_reject -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x675e45d6 rdma_init_qp_attr -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x69bdbb2c rdma_destroy_qp -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x6b8d174e rdma_set_ack_timeout -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x6e39bef4 rdma_create_user_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x7388e9dc __rdma_create_kernel_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x88e8c3e8 rdma_resolve_route -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x8e570c1b rdma_bind_addr -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x907df803 rdma_event_msg -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x912db7e6 rdma_connect_ece -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x9914f27b rdma_set_service_type -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xb4526d57 rdma_reject_msg -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xbe6a7e20 rdma_accept -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xc41e33f1 rdma_read_gids -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xcb9882bd rdma_accept_ece -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xccf4a07d rdma_connect_locked -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xdd52706e rdma_set_ib_path -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xe7232c3a rdma_join_multicast -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xe9dc030b rdma_set_min_rnr_timer -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xf70b8858 rdma_destroy_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xfdedac24 rdma_lock_handler -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x36df3d8e rtrs_clt_open -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x4cfd2813 rtrs_clt_close -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x5a395ddb rtrs_clt_rdma_cq_direct -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x7ff39c75 rtrs_clt_request -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0xab96377c rtrs_clt_query -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0xbdf41a2e rtrs_clt_get_permit -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0xece19b58 rtrs_clt_put_permit -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x1b2e6d3f rtrs_ib_dev_put -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x242a8646 rtrs_addr_to_str -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x357ee9cd rtrs_ib_dev_find_or_add -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x4522af4a 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 0x887302f3 rtrs_addr_to_sockaddr -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0xd91fe144 rtrs_rdma_dev_pd_init -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x336e3834 rtrs_srv_close -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x7e8611e2 rtrs_srv_set_sess_priv -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x8065a643 rtrs_srv_get_path_name -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0xe8be5fb1 rtrs_srv_resp_rdma -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0xf089eb2c rtrs_srv_open -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0xf90ceb54 rtrs_srv_get_queue_depth -EXPORT_SYMBOL drivers/input/gameport/gameport 0x1e2fa8a8 __gameport_register_port -EXPORT_SYMBOL drivers/input/gameport/gameport 0x26689375 gameport_unregister_port -EXPORT_SYMBOL drivers/input/gameport/gameport 0x32c66bf6 gameport_close -EXPORT_SYMBOL drivers/input/gameport/gameport 0x449dffe1 gameport_stop_polling -EXPORT_SYMBOL drivers/input/gameport/gameport 0x4999bea1 __gameport_register_driver -EXPORT_SYMBOL drivers/input/gameport/gameport 0x634c7abe gameport_start_polling -EXPORT_SYMBOL drivers/input/gameport/gameport 0x762a9926 gameport_set_phys -EXPORT_SYMBOL drivers/input/gameport/gameport 0xa137bdbf gameport_unregister_driver -EXPORT_SYMBOL drivers/input/gameport/gameport 0xaeb35870 gameport_open -EXPORT_SYMBOL drivers/input/joystick/iforce/iforce 0x519836b7 iforce_init_device -EXPORT_SYMBOL drivers/input/joystick/iforce/iforce 0x5b0be449 iforce_process_packet -EXPORT_SYMBOL drivers/input/joystick/iforce/iforce 0x77d0e5d1 iforce_send_packet -EXPORT_SYMBOL drivers/input/matrix-keymap 0x41f14dae matrix_keypad_build_keymap -EXPORT_SYMBOL drivers/input/misc/ad714x 0x4ac8c4cf ad714x_enable -EXPORT_SYMBOL drivers/input/misc/ad714x 0x5c7ee7ab ad714x_probe -EXPORT_SYMBOL drivers/input/misc/ad714x 0xe579d587 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 0xb89fdb33 cma3000_init -EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0xca3f100a cma3000_suspend -EXPORT_SYMBOL drivers/input/rmi4/rmi_core 0x94f0ce6f rmi_unregister_transport_device -EXPORT_SYMBOL drivers/input/sparse-keymap 0x0a08c69d sparse_keymap_report_event -EXPORT_SYMBOL drivers/input/sparse-keymap 0x0c7e3f69 sparse_keymap_report_entry -EXPORT_SYMBOL drivers/input/sparse-keymap 0x433350c9 sparse_keymap_setup -EXPORT_SYMBOL drivers/input/sparse-keymap 0x7b621bb4 sparse_keymap_entry_from_scancode -EXPORT_SYMBOL drivers/input/sparse-keymap 0xb829b788 sparse_keymap_entry_from_keycode -EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0x2f1cb3f0 ad7879_probe -EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0x56159602 ad7879_pm_ops -EXPORT_SYMBOL drivers/interconnect/qcom/icc-smd-rpm 0x51e14272 qnoc_probe -EXPORT_SYMBOL drivers/interconnect/qcom/icc-smd-rpm 0xab9fedd8 qnoc_remove -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x148383ba attach_capi_ctr -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x431b698b capi_ctr_ready -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x6c4b0fee capi_ctr_down -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xefa89726 detach_capi_ctr -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xf084e759 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 0x21c6a841 mISDNipac_irq -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x243d4301 mISDNisac_init -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x6d967971 mISDNisac_irq -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0xcde17a54 mISDNipac_init -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNisar 0x333bb0bb mISDNisar_init -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNisar 0xacfd8c9e mISDNisar_irq -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x03a68066 mISDN_FsmRestartTimer -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x07138b7a recv_Echannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x0cb924df mISDN_ctrl_bchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x1488973d recv_Dchannel_skb -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x214504af get_next_bframe -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x2348cc3c mISDN_FsmFree -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x26236de8 mISDN_clock_update -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x30d25b0d mISDN_FsmDelTimer -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x313b1fde mISDN_FsmAddTimer -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x49750c04 mISDN_initdchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x4ea2da3b recv_Dchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x50c2230c mISDN_FsmChangeState -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x55376e30 mISDN_initbchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x55a6ded0 dchannel_senddata -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x588886a6 l1_event -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x58edde5b mISDN_unregister_device -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x5ad28b99 mISDN_freebchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x6047df40 mISDN_FsmInitTimer -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x6312c4c5 mISDN_register_Bprotocol -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x66d2266e mISDNDevName4ch -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x70909864 mISDN_freedchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x8f074896 recv_Bchannel_skb -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x9c928457 mISDN_FsmNew -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xa732c483 create_l1 -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xa8d11ea4 bchannel_get_rxbuf -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xb9b4abff bchannel_senddata -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xbcc32c8f get_next_dframe -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 0xdec1cde9 mISDN_unregister_Bprotocol -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xe5cc5207 queue_ch_frame -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xe8f617eb mISDN_unregister_clock -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xf3adc366 mISDN_clear_bchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xf57668bd mISDN_register_device -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xf88e7976 recv_Bchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0x01087af0 mISDN_dsp_element_unregister -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0x93df9e4b dsp_audio_law_to_s32 -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0xb07a21b8 dsp_audio_s16_to_law -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0xb98308d8 mISDN_dsp_element_register -EXPORT_SYMBOL drivers/leds/leds-ti-lmu-common 0x54a12ec4 ti_lmu_common_set_ramp -EXPORT_SYMBOL drivers/leds/leds-ti-lmu-common 0xbeab0872 ti_lmu_common_get_ramp_params -EXPORT_SYMBOL drivers/leds/leds-ti-lmu-common 0xce646d86 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 0xac90fbf3 cmdq_get_shift_pa -EXPORT_SYMBOL drivers/mailbox/omap-mailbox 0x03a59690 omap_mbox_request_channel -EXPORT_SYMBOL drivers/mailbox/omap-mailbox 0x23160a35 omap_mbox_enable_irq -EXPORT_SYMBOL drivers/mailbox/omap-mailbox 0x7ca26d47 omap_mbox_disable_irq -EXPORT_SYMBOL drivers/md/dm-log 0x483bf40e dm_dirty_log_type_register -EXPORT_SYMBOL drivers/md/dm-log 0x6c3ea0b6 dm_dirty_log_destroy -EXPORT_SYMBOL drivers/md/dm-log 0xa7883c1a dm_dirty_log_type_unregister -EXPORT_SYMBOL drivers/md/dm-log 0xfb7bf318 dm_dirty_log_create -EXPORT_SYMBOL drivers/md/dm-snapshot 0x03d320f5 dm_exception_store_create -EXPORT_SYMBOL drivers/md/dm-snapshot 0x18d58fd7 dm_snap_cow -EXPORT_SYMBOL drivers/md/dm-snapshot 0x322dcc4a dm_exception_store_type_register -EXPORT_SYMBOL drivers/md/dm-snapshot 0x4b0c629c dm_exception_store_type_unregister -EXPORT_SYMBOL drivers/md/dm-snapshot 0xc3654b7c dm_snap_origin -EXPORT_SYMBOL drivers/md/dm-snapshot 0xde391300 dm_exception_store_destroy -EXPORT_SYMBOL drivers/md/raid456 0x08adc10e r5c_journal_mode_set -EXPORT_SYMBOL drivers/md/raid456 0x235e3afd raid5_set_cache_size -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x0872b702 flexcop_pass_dmx_data -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x09321212 flexcop_eeprom_check_mac_addr -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x421d79b6 flexcop_device_exit -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x629f7a11 flexcop_pid_feed_control -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x69780fc3 flexcop_i2c_request -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x71e04ce3 flexcop_sram_set_dest -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x7a9c1bd5 flexcop_device_kmalloc -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x8730aab5 flexcop_dump_reg -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x8d03f3e4 flexcop_device_initialize -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xb1682e87 flexcop_pass_dmx_packets -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xbdbc6adb flexcop_sram_ctrl -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xcde9783d flexcop_wan_set_speed -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xfb93979d flexcop_device_kfree -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 0x422e4519 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 0x96e2d989 cx2341x_handler_set_busy -EXPORT_SYMBOL drivers/media/common/cx2341x 0xb2b9efb7 cx2341x_ext_ctrls -EXPORT_SYMBOL drivers/media/common/cx2341x 0xca80b35d cx2341x_handler_init -EXPORT_SYMBOL drivers/media/common/cx2341x 0xd146cca6 cx2341x_handler_set_50hz -EXPORT_SYMBOL drivers/media/common/cx2341x 0xdbc5583a cx2341x_update -EXPORT_SYMBOL drivers/media/common/cx2341x 0xe1fe1432 cx2341x_log_status -EXPORT_SYMBOL drivers/media/common/cypress_firmware 0x7f11a2e9 cypress_load_firmware -EXPORT_SYMBOL drivers/media/common/ttpci-eeprom 0x693e74ba ttpci_eeprom_decode_mac -EXPORT_SYMBOL drivers/media/common/ttpci-eeprom 0x7154a890 ttpci_eeprom_parse_mac -EXPORT_SYMBOL drivers/media/common/tveeprom 0x0dbf0296 tveeprom_hauppauge_analog -EXPORT_SYMBOL drivers/media/common/tveeprom 0x4cd74b8f 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 0x9d923b06 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 0xc95f8f59 vb2_verify_memory_type -EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-common 0xdffb744b frame_vector_to_pfns -EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0x2a2fb550 vb2_dvb_register_bus -EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0x2c4c2d79 vb2_dvb_dealloc_frontends -EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0x87f866f5 vb2_dvb_get_frontend -EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0x91d550ca vb2_dvb_alloc_frontend -EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0xa777621a vb2_dvb_find_frontend -EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0xdf1af1e9 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 0xab84e89f vb2_querybuf -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x04a5af14 dvb_device_get -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x07d50a89 dvb_register_device -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x08733236 intlog10 -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x11f314d9 dvb_register_adapter -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x18acd31f dvb_dmx_swfilter_packets -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x199a80f4 dvb_ca_en50221_release -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x1b284572 dvb_unregister_adapter -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x258566f5 dvb_frontend_resume -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x2f5cdf80 dvb_ringbuffer_write -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x3b93d71a dvb_frontend_sleep_until -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x4a91b0a8 dvb_dmxdev_init -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x54abe4ff dvb_dmx_init -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x55da9cb8 dvb_frontend_reinitialise -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x5f2b1d95 intlog2 -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x60c3f2e6 dvb_ca_en50221_init -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x6181aec0 dvb_ringbuffer_flush_spinlock_wakeup -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x6411ad2a dvb_ca_en50221_camchange_irq -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x6a9f708a dvb_dmx_swfilter_204 -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x705f8542 dvb_unregister_frontend -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x7312f2a0 dvb_generic_open -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x792a4a1f dvb_generic_release -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x7c680379 dvb_net_release -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x8b26b3ce dvb_net_init -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x8c54b0f8 dvb_dmx_swfilter -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x8eea3213 dvb_ca_en50221_camready_irq -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 0x9668f528 dvb_generic_ioctl -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xa4235824 dvb_dmx_swfilter_raw -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 0xc4df4d9b dvb_frontend_suspend -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xd9b8e376 dvb_register_frontend -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xddcd1b22 dvb_unregister_device -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xdeda369c dvb_frontend_detach -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xe138ce6b dvb_ringbuffer_avail -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xe774b844 dvb_remove_device -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xebbc2d9b dvb_ringbuffer_init -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xf31dc9f6 dvb_ca_en50221_frda_irq -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xf59b4e65 dvb_dmxdev_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-frontends/ascot2e 0x6816bde3 ascot2e_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/atbm8830 0x3c1f59b5 atbm8830_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x1fcd758c au8522_sleep -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x21244780 au8522_writereg -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x2df24fe9 au8522_get_state -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x4c107ea5 au8522_led_ctrl -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x59734985 au8522_init -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xb331feab au8522_readreg -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xcb1a1fb9 au8522_i2c_gate_ctrl -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xda268c34 au8522_release_state -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xff7bffb8 au8522_analog_i2c_gate_ctrl -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_dig 0xd2af4924 au8522_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/bcm3510 0x87b4f0ec bcm3510_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx22700 0x1cebe358 cx22700_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx22702 0xdf5e0f88 cx22702_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24110 0x07fba937 cx24110_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24113 0x160f43a3 cx24113_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24113 0x41006858 cx24113_agc_callback -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24116 0x0ab62aa5 cx24116_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24120 0x3325bb2e cx24120_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24123 0x55e1c858 cx24123_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24123 0x8c3539da cx24123_get_tuner_i2c_adapter -EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2820r 0x5f0d3736 cxd2820r_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2841er 0x192681f0 cxd2841er_attach_t_c -EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2841er 0xf60e60d7 cxd2841er_attach_s -EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2880/cxd2880 0x09bc0390 cxd2880_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x4d97969f dib0070_set_rf_output -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x66f4a728 dib0070_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x96be1c43 dib0070_ctrl_agc_filter -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x9dfaf3f7 dib0070_get_rf_output -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0xa7c9c350 dib0070_wbd_offset -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x06488525 dib0090_get_current_gain -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x37433c85 dib0090_set_switch -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x3fbeee42 dib0090_set_vga -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x462c42b4 dib0090_update_rframp_7090 -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x46b2b74b dib0090_fw_register -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x477993f7 dib0090_gain_control -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x55012289 dib0090_pwm_gain_reset -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x57b450ed dib0090_update_tuning_table_7090 -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x57e1c2c8 dib0090_dcc_freq -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x7c2c318f dib0090_get_tune_state -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x889e0644 dib0090_set_dc_servo -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x93675dad dib0090_get_wbd_target -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xc34e49bc dib0090_get_wbd_offset -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xc4f77898 dib0090_register -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xe1c423be dib0090_set_tune_state -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mb 0x7afc3680 dib3000mb_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x42891edc dib3000mc_pid_control -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x444dd506 dib3000mc_pid_parse -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x80865bf8 dib3000mc_i2c_enumeration -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0xc84ba372 dib3000mc_get_tuner_i2c_master -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0xc9b6a31d dib3000mc_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0xd0fa6c71 dib3000mc_set_config -EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x1f4376ce dib7000m_pid_filter -EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x5acc3c29 dib7000m_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0xba52dff4 dib7000m_pid_filter_ctrl -EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0xc0f11a1f dib7000m_get_i2c_master -EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000p 0x1b4db7c9 dib7000p_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dib8000 0x73b1012e dib8000_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x0624f338 dib9000_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x150f1c52 dib9000_i2c_enumeration -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x22f31e92 dib9000_firmware_post_pll_init -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x47a928cf dib9000_get_tuner_interface -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x5a0a65ed dib9000_set_slave_frontend -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x637479a0 dib9000_fw_pid_filter -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x6f3d3546 dib9000_get_i2c_master -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x73781dbf dib9000_get_component_bus_interface -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xb2937f5a dib9000_set_gpio -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xc181ccab dib9000_fw_set_component_bus_speed -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xc250e042 dib9000_get_slave_frontend -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xeeb9004a dib9000_set_i2c_adapter -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xef9791a9 dib9000_fw_pid_filter_ctrl -EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x045b6f8e dibx000_reset_i2c_master -EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x3f391837 dibx000_get_i2c_adapter -EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x42335867 dibx000_i2c_set_speed -EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x610e49c7 dibx000_exit_i2c_master -EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x897a1e80 dibx000_init_i2c_master -EXPORT_SYMBOL drivers/media/dvb-frontends/drx39xyj/drx39xyj 0xc8f2f0a9 drx39xxj_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/drxd 0x63ebda7e drxd_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/drxk 0xa023a9a5 drxk_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/ds3000 0xbe31fb25 ds3000_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dvb-pll 0x4c9b4af5 dvb_pll_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dvb_dummy_fe 0x0754c303 dvb_dummy_fe_qpsk_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dvb_dummy_fe 0x6cdff7bc dvb_dummy_fe_qam_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dvb_dummy_fe 0xac9ae76b dvb_dummy_fe_ofdm_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/ec100 0x91f1777c ec100_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/helene 0xc3b42be3 helene_attach_s -EXPORT_SYMBOL drivers/media/dvb-frontends/helene 0xd2f51560 helene_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/horus3a 0xd784d7e8 horus3a_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/isl6405 0xfab73fa4 isl6405_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/isl6421 0xe61e594a isl6421_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/isl6423 0xdee049ed isl6423_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/itd1000 0x7750dd4d itd1000_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/ix2505v 0x797262f9 ix2505v_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/l64781 0x8a3a2d31 l64781_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lg2160 0xfdeae20d lg2160_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt3305 0x9f4bc4e9 lgdt3305_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt3306a 0x435e828c lgdt3306a_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt330x 0xc43e87d1 lgdt330x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lgs8gl5 0x4513ffd4 lgs8gl5_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lgs8gxx 0x5b3a4e03 lgs8gxx_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lnbh25 0x1f11ed02 lnbh25_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lnbh29 0x1ea17ebb lnbh29_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp21 0x376c19c1 lnbp21_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp21 0x663ad2a1 lnbh24_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp22 0x4acb74c1 lnbp22_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/m88ds3103 0x3c5e2ad0 m88ds3103_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/m88ds3103 0xeb6f92e3 m88ds3103_get_agc_pwm -EXPORT_SYMBOL drivers/media/dvb-frontends/m88rs2000 0xc58f17fc m88rs2000_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/mb86a16 0x70b4a742 mb86a16_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/mb86a20s 0xbe055b65 mb86a20s_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/mt312 0xabb406ce mt312_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/mt352 0x6d8b9a85 mt352_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/nxt200x 0x97c4726d nxt200x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/nxt6000 0x1536dc6d nxt6000_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/or51132 0x757702b1 or51132_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/or51211 0x6bca6f2f or51211_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1409 0x152e8250 s5h1409_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1411 0xa2130648 s5h1411_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1420 0x068060d5 s5h1420_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1420 0x6c05ac34 s5h1420_get_tuner_i2c_adapter -EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1432 0xaca22b94 s5h1432_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/s921 0xfe526590 s921_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/si21xx 0xd1b5c302 si21xx_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/sp887x 0xf2a538f3 sp887x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stb0899 0xd2192a8d stb0899_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stb6000 0x57e53188 stb6000_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stb6100 0x5b03abb9 stb6100_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv0288 0xd3ad792e stv0288_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv0297 0xdd9ee00e stv0297_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv0299 0x057d3c59 stv0299_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv0367 0x54da8f3e stv0367cab_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv0367 0xd5e87553 stv0367ter_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv0367 0xe5186b69 stv0367ddb_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv0900 0x9475fbca stv0900_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv090x 0x0c76c78d stv090x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv6110 0x6e7de16a stv6110_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv6110x 0x97968dfa stv6110x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda10021 0xc9b7c39a tda10021_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda10023 0x5543a396 tda10023_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda10048 0x6f39b599 tda10048_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda1004x 0x57b70f2d tda10046_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda1004x 0x6c3a1059 tda10045_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda10086 0x842b54c8 tda10086_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda665x 0x471de6ec tda665x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda8083 0x73ea171e tda8083_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda8261 0x2758d3e7 tda8261_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda826x 0xc99071e3 tda826x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/ts2020 0x22b82837 ts2020_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tua6100 0xc529016c tua6100_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/ves1820 0x24e48170 ves1820_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/ves1x93 0xabba6022 ves1x93_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/zd1301_demod 0x143f0fdc zd1301_demod_get_i2c_adapter -EXPORT_SYMBOL drivers/media/dvb-frontends/zd1301_demod 0x793a0742 zd1301_demod_get_dvb_frontend -EXPORT_SYMBOL drivers/media/dvb-frontends/zl10036 0x9f74b95a zl10036_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/zl10039 0xff51896f zl10039_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/zl10353 0xd94b38e4 zl10353_attach -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x12da74a1 flexcop_dma_xfer_control -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x139e2390 flexcop_dma_config -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x2f1ad81f flexcop_dma_free -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x5b47ef52 flexcop_dma_allocate -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x6b7fbde0 flexcop_dma_control_size_irq -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x7ac8c26c flexcop_dma_control_timer_irq -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x8e28fd66 flexcop_dma_config_timer -EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x0defb761 bt878 -EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x596b71fd bt878_device_control -EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x8a5df751 bt878_stop -EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0xd5d0bdef bt878_num -EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0xe8eb62a9 bt878_start -EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x11dc4b6d bttv_gpio_enable -EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x51fdaf8c bttv_get_pcidev -EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x8ecf4acc bttv_write_gpio -EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x905bcfd4 bttv_sub_register -EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0xa68eddb4 bttv_sub_unregister -EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0xbcf2d2fb bttv_read_gpio -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x2baa6c97 rdc_reset_state -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x3c4b06a3 dst_attach -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x43a983fd dst_check_sum -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x9a507947 read_dst -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x9aab8f44 write_dst -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x9c260e8e dst_error_recovery -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xa91f1a8e dst_comm_init -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xbfe78720 dst_error_bailout -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xddaf248c dst_wait_dst_ready -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xe8539707 dst_pio_disable -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst_ca 0x7566bf4e dst_ca_attach -EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x19cb9458 cx18_claim_stream -EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x2cdea06d cx18_reset_ir_gpio -EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x33eb8eb3 cx18_ext_init -EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x49c8dc2a cx18_stop_v4l2_encode_stream -EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x52291005 cx18_release_stream -EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0xa2372172 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 0x126e2772 cx25821_risc_databuffer_audio -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x2465e4ff cx25821_dev_unregister -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x37dde179 cx25821_sram_channel_dump_audio -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x43a34ea5 cx25821_dev_get -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x44b517f5 cx25821_print_irqbits -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x85714fb4 cx25821_set_gpiopin_direction -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xa7a4f4fa cx25821_riscmem_alloc -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xc3fc4447 cx25821_sram_channel_setup_audio -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xe9050411 cx25821_sram_channels -EXPORT_SYMBOL drivers/media/pci/cx88/cx88-vp3054-i2c 0x6413da35 vp3054_i2c_probe -EXPORT_SYMBOL drivers/media/pci/cx88/cx88-vp3054-i2c 0xd62de5b9 vp3054_i2c_remove -EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x493705c2 cx88_set_freq -EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x500aa0eb cx88_video_mux -EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x779858f3 cx88_enum_input -EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0xc399bfa3 cx88_querycap -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x01eb7dc2 cx8802_unregister_driver -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x112d2916 cx8802_get_driver -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x1d2383ba cx8802_start_dma -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x42863694 cx8802_cancel_buffers -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x99383e96 cx8802_buf_queue -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xec5bf4a0 cx8802_buf_prepare -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xfd5ab2d5 cx8802_register_driver -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x042ab61d cx88_ir_stop -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x0a72dcbb cx88_dsp_detect_stereo_sap -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x18c484b5 cx88_newstation -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x360637f5 cx88_get_stereo -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x37cbf2f5 cx88_set_tvaudio -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x404a6942 cx88_set_scale -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x55f6dcf1 cx88_core_get -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x5c32a49e cx88_set_tvnorm -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x5edb7ae5 cx88_print_irqbits -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x6141c8c5 cx88_tuner_callback -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x6d62c648 cx88_wakeup -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x77e988ff cx88_risc_buffer -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x8c30ce2b cx88_vdev_init -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x8d88137a cx88_sram_channels -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x904b8696 cx88_audio_thread -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x9e3d72c6 cx88_shutdown -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xb846ffb8 cx88_reset -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xc5ab6afe cx88_ir_start -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xca74f9d8 cx88_sram_channel_dump -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xcdf2fc8a cx88_sram_channel_setup -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xce111948 cx88_risc_databuffer -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xd8ca1e34 cx88_core_put -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xe7515721 cx88_core_irq -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xed83e7b7 cx88_set_stereo -EXPORT_SYMBOL drivers/media/pci/ddbridge/ddbridge-dummy-fe 0x96c71dc8 ddbridge_dummy_fe_qam_attach -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x14f67530 ivtv_debug -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x287696a0 ivtv_claim_stream -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x38b1c0df ivtv_init_on_first_open -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x55b7fe85 ivtv_api -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x60c92a0a ivtv_udma_prepare -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x68d314b7 ivtv_vapi -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x783f25e8 ivtv_udma_alloc -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x80028a27 ivtv_firmware_check -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x836202d4 ivtv_start_v4l2_encode_stream -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x978a58aa ivtv_ext_init -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xa81bd92e ivtv_udma_setup -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xaae80d29 ivtv_udma_unmap -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xb346d54a ivtv_release_stream -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xb802da67 ivtv_clear_irq_mask -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xc1566ab8 ivtv_vapi_result -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xd50f94a7 ivtv_reset_ir_gpio -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xe03f04ee ivtv_set_irq_mask -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xf3ba849d ivtv_stop_v4l2_encode_stream -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x00d0410f saa7134_dmasound_init -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x04e83446 saa7134_tuner_callback -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x1211df5d saa7134_devlist -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x26ad36db saa7134_pgtable_alloc -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x68b10a7f saa7134_pgtable_free -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x6d8472ae saa7134_pgtable_build -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x730c4be3 saa7134_boards -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x8a75db3b saa7134_dmasound_exit -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x8f1ad46b saa7134_devlist_lock -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x9bd054c9 saa7134_ts_unregister -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xa0fefee3 saa7134_set_dmabits -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xabbe260e saa7134_ts_register -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xc9286b7f saa7134_set_gpio -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xdff4c30f saa_dsp_writel -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xf4ec9951 saa7134_tvaudio_setmute -EXPORT_SYMBOL drivers/media/platform/allegro-dvt/allegro 0x2c79d0f2 msg_type_name -EXPORT_SYMBOL drivers/media/radio/tea575x 0x15e20118 snd_tea575x_enum_freq_bands -EXPORT_SYMBOL drivers/media/radio/tea575x 0x4becc72f snd_tea575x_set_freq -EXPORT_SYMBOL drivers/media/radio/tea575x 0x6d526f48 snd_tea575x_g_tuner -EXPORT_SYMBOL drivers/media/radio/tea575x 0x81fba1ff snd_tea575x_hw_init -EXPORT_SYMBOL drivers/media/radio/tea575x 0xbca4ae72 snd_tea575x_s_hw_freq_seek -EXPORT_SYMBOL drivers/media/radio/tea575x 0xf3ad8ad4 snd_tea575x_init -EXPORT_SYMBOL drivers/media/radio/tea575x 0xf749d4b8 snd_tea575x_exit -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 0x8d57f64b 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 0xf276ed92 ir_raw_handler_unregister -EXPORT_SYMBOL drivers/media/rc/rc-core 0xf446074f ir_raw_encode_scancode -EXPORT_SYMBOL drivers/media/tuners/fc0011 0x8a26f251 fc0011_attach -EXPORT_SYMBOL drivers/media/tuners/fc0012 0x9d973dc5 fc0012_attach -EXPORT_SYMBOL drivers/media/tuners/fc0013 0x15b3c4e1 fc0013_rc_cal_reset -EXPORT_SYMBOL drivers/media/tuners/fc0013 0x9da3eb72 fc0013_rc_cal_add -EXPORT_SYMBOL drivers/media/tuners/fc0013 0xcc56ffcf fc0013_attach -EXPORT_SYMBOL drivers/media/tuners/max2165 0x4a66c076 max2165_attach -EXPORT_SYMBOL drivers/media/tuners/mc44s803 0xc6f6c9a9 mc44s803_attach -EXPORT_SYMBOL drivers/media/tuners/mt2060 0x1c2e8db4 mt2060_attach -EXPORT_SYMBOL drivers/media/tuners/mt2131 0x01b21fbc mt2131_attach -EXPORT_SYMBOL drivers/media/tuners/mt2266 0xfda72c36 mt2266_attach -EXPORT_SYMBOL drivers/media/tuners/mxl5005s 0x9e1450e4 mxl5005s_attach -EXPORT_SYMBOL drivers/media/tuners/qt1010 0x50b17f32 qt1010_attach -EXPORT_SYMBOL drivers/media/tuners/tda18218 0x2b562e18 tda18218_attach -EXPORT_SYMBOL drivers/media/tuners/tuner-types 0x4c48939e tuners -EXPORT_SYMBOL drivers/media/tuners/tuner-types 0xc2821775 tuner_count -EXPORT_SYMBOL drivers/media/tuners/tuner-xc2028 0xaf2a1d41 xc2028_attach -EXPORT_SYMBOL drivers/media/tuners/xc4000 0x2835bfa3 xc4000_attach -EXPORT_SYMBOL drivers/media/tuners/xc5000 0x53de4512 xc5000_attach -EXPORT_SYMBOL drivers/media/usb/cx231xx/cx231xx 0x4849d471 cx231xx_register_extension -EXPORT_SYMBOL drivers/media/usb/cx231xx/cx231xx 0xfab65479 cx231xx_unregister_extension -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x273b2c6e dvb_usbv2_generic_write_locked -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x2d15105b dvb_usbv2_probe -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x4b9e31c0 dvb_usbv2_reset_resume -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x55301f5f dvb_usbv2_generic_rw_locked -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x6339fd54 dvb_usbv2_disconnect -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x6c9f3961 dvb_usbv2_resume -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x7bc081b8 dvb_usbv2_generic_write -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xa98e7037 dvb_usbv2_generic_rw -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xb73fdd85 dvb_usbv2_suspend -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x1f1d24d0 dvb_usb_nec_rc_key_to_event -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x2043965f usb_cypress_load_firmware -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x34c8fba5 dvb_usb_device_exit -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x59fcae91 dvb_usb_generic_write -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x77c66c4d 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 0xea1ab0cb dvb_usb_generic_rw -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-af9005-remote 0x341530cb rc_map_af9005_table -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-af9005-remote 0x3cfa0953 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 0x02218d42 dibusb_pid_filter -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x25436979 dibusb_power_ctrl -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x4cf700cc dibusb_read_eeprom_byte -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x5ccf20f8 dibusb_pid_filter_ctrl -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x63c7774b dibusb_rc_query -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x7c31ab5e dibusb2_0_streaming_ctrl -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x8c3e0095 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 0xc40e621a dibusb_i2c_algo -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xf4d7c5aa dibusb_streaming_ctrl -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-mc-common 0xe01b5d0c dibusb_dib3000mc_tuner_attach -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-mc-common 0xeb4ef3da dibusb_dib3000mc_frontend_attach -EXPORT_SYMBOL drivers/media/usb/em28xx/em28xx 0xa7475b7b em28xx_unregister_extension -EXPORT_SYMBOL drivers/media/usb/em28xx/em28xx 0xef588fcb em28xx_register_extension -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x070dcbc4 go7007_update_board -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x0f08b7e9 go7007_read_interrupt -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x1daf1d86 go7007_boot_encoder -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x49cf3059 go7007_register_encoder -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x7072eeb2 go7007_read_addr -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x8fecc6d6 go7007_snd_init -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x9ae15cc1 go7007_alloc -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x9f54bb2a go7007_parse_video_stream -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xd3ca2b62 go7007_snd_remove -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x2f4e9533 gspca_expo_autogain -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x31f25198 gspca_disconnect -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x3379b7e1 gspca_coarse_grained_expo_autogain -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x4b33b446 gspca_suspend -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x6bcf02ad gspca_resume -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x8ee51907 gspca_dev_probe2 -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x9670af2c gspca_debug -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xae9a879c gspca_frame_add -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xc66171e2 gspca_dev_probe -EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0x36d6efd6 tm6000_unregister_extension -EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0x8f37af02 tm6000_register_extension -EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0xe4dca40f tm6000_init_digital_mode -EXPORT_SYMBOL drivers/media/usb/ttusb-dec/ttusbdecfe 0x93259fcb ttusbdecfe_dvbt_attach -EXPORT_SYMBOL drivers/media/usb/ttusb-dec/ttusbdecfe 0xb8e29e01 ttusbdecfe_dvbs_attach -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0x038937ee v4l2_async_register_subdev -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0x2155f79f v4l2_async_notifier_init -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0x5ba3c142 v4l2_async_notifier_register -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0x8c156668 v4l2_async_subdev_notifier_register -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0xb48e81a9 v4l2_async_unregister_subdev -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0xe45f2ee6 v4l2_async_notifier_unregister -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x09208823 v4l2_m2m_get_vq -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x459e133f v4l2_m2m_get_curr_priv -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x5352d022 v4l2_m2m_resume -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x8c3c9c05 v4l2_m2m_buf_done_and_job_finish -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0xab0250c1 v4l2_m2m_mmap -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0xf626dd03 v4l2_m2m_suspend -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0xfde4a3eb v4l2_m2m_job_finish -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0614dd5a v4l2_video_std_frame_period -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x082737e8 v4l2_ctrl_merge -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x08d2ee45 __v4l2_ctrl_grab -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0e95dbe1 v4l2_ctrl_handler_setup -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x12020f97 video_device_release_empty -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x123959a1 v4l2_type_names -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x16197d68 video_device_alloc -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x16244fe5 v4l2_prio_check -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x17148588 v4l2_g_ext_ctrls -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1a6282da v4l2_ctrl_request_setup -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1c160171 v4l2_ctrl_cluster -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1e73e590 v4l2_ctrl_handler_init_class -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2342f1ae v4l2_prio_open -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2350d2ae v4l2_s_ext_ctrls -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x27355c32 v4l2_s_ctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x284974bb v4l2_querymenu -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 0x32d43420 v4l2_ctrl_get_name -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x34d8667a v4l2_ctrl_sub_ev_ops -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3adbd595 v4l2_field_names -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3bdcd89e video_ioctl2 -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3bdd0f94 v4l2_prio_change -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3e4efac9 v4l2_ctrl_add_handler -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x418048ca v4l2_ctrl_new_int_menu -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x43c620bd v4l2_subdev_init -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x44333e1d v4l2_ctrl_new_std_menu -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x473567a1 v4l2_query_ext_ctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4ef43eaf v4l2_queryctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4f8e35dd v4l2_ctrl_activate -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x52786bc8 v4l2_ctrl_notify -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x52c91961 v4l2_ctrl_g_ctrl_int64 -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x54687d91 __v4l2_ctrl_s_ctrl_int64 -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x5791888b v4l2_try_ext_ctrls -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x5e4c217e video_unregister_device -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x5eea1238 v4l2_ctrl_find -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x5f014707 v4l2_ctrl_subscribe_event -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x628e7526 __video_register_device -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x656677ba v4l2_ctrl_g_ctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x6a810394 v4l2_ctrl_new_custom -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x6c4c232b v4l2_ctrl_auto_cluster -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7204dc92 v4l2_ctrl_radio_filter -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7d4ae6c6 v4l2_ctrl_new_std -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7fe65a77 v4l2_ctrl_subdev_subscribe_event -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8106095a v4l2_prio_max -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x82fafc77 v4l2_subdev_call_wrappers -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x872a7e2e video_device_release -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x89e3897d v4l2_ctrl_query_fill -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x98153094 v4l2_g_ctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa54f8f7b v4l2_ctrl_new_fwnode_properties -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa9a2e51c v4l2_ctrl_handler_log_status -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xad72dfa4 v4l2_ctrl_request_complete -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 0xc0684793 v4l2_ctrl_handler_free -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xcda04a5b v4l2_prio_close -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd09f9cfd __v4l2_ctrl_s_ctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd16d9c01 v4l2_ctrl_get_int_menu -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xda736773 __v4l2_ctrl_s_ctrl_compound -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 0xe6e028bb v4l2_ctrl_poll -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe79cdb4a v4l2_ctrl_subdev_log_status -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe7c08bb5 v4l2_ctrl_new_std_compound -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe9fdb712 v4l2_ctrl_log_status -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xedac23c9 video_devdata -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xede3d0f9 __v4l2_ctrl_s_ctrl_string -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf070aefc v4l2_ctrl_new_std_menu_items -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf3251e7b v4l2_norm_to_name -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf50fecbc v4l2_ctrl_replace -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xfd7b7c59 __v4l2_ctrl_modify_range -EXPORT_SYMBOL drivers/memory/renesas-rpc-if 0x11dbb498 rpcif_sw_init -EXPORT_SYMBOL drivers/memory/renesas-rpc-if 0x2d6cb949 rpcif_dirmap_read -EXPORT_SYMBOL drivers/memory/renesas-rpc-if 0xaae65b93 rpcif_manual_xfer -EXPORT_SYMBOL drivers/memory/renesas-rpc-if 0xba2447a1 rpcif_prepare -EXPORT_SYMBOL drivers/memory/renesas-rpc-if 0xc18b719f rpcif_hw_init -EXPORT_SYMBOL drivers/memstick/core/memstick 0x1e8b2883 memstick_free_host -EXPORT_SYMBOL drivers/memstick/core/memstick 0x284d8a6d memstick_set_rw_addr -EXPORT_SYMBOL drivers/memstick/core/memstick 0x4a4e5778 memstick_init_req_sg -EXPORT_SYMBOL drivers/memstick/core/memstick 0x6d2d688c memstick_alloc_host -EXPORT_SYMBOL drivers/memstick/core/memstick 0x783229f0 memstick_register_driver -EXPORT_SYMBOL drivers/memstick/core/memstick 0x7c85d359 memstick_next_req -EXPORT_SYMBOL drivers/memstick/core/memstick 0x8e79ae0d memstick_detect_change -EXPORT_SYMBOL drivers/memstick/core/memstick 0xa02b4c52 memstick_add_host -EXPORT_SYMBOL drivers/memstick/core/memstick 0xadda0851 memstick_resume_host -EXPORT_SYMBOL drivers/memstick/core/memstick 0xae50437c memstick_init_req -EXPORT_SYMBOL drivers/memstick/core/memstick 0xd2770cc0 memstick_suspend_host -EXPORT_SYMBOL drivers/memstick/core/memstick 0xd9452c5b memstick_unregister_driver -EXPORT_SYMBOL drivers/memstick/core/memstick 0xd9dd34b3 memstick_remove_host -EXPORT_SYMBOL drivers/memstick/core/memstick 0xe2a9be87 memstick_new_req -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x0ab303e2 mpt_register -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x0d412d21 mpt_config -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x0f40399e mpt_print_ioc_summary -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x11710c53 mpt_suspend -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x1441d6e2 mpt_put_msg_frame_hi_pri -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x236350f2 mpt_free_fw_memory -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x26f1f9b3 mpt_set_taskmgmt_in_progress_flag -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x355f2046 mpt_raid_phys_disk_pg0 -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x384c4fc2 mpt_alloc_fw_memory -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x502108d0 mpt_fwfault_debug -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x5a0086a0 mpt_raid_phys_disk_get_num_paths -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x610b257e mpt_reset_deregister -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x6acbb53b mpt_findImVolumes -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x74a0134a mpt_device_driver_deregister -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x74f5175f mpt_resume -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x7a25fe40 mpt_halt_firmware -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x7bf1f95e mpt_device_driver_register -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x80823fc3 mpt_reset_register -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x810cda7d mpt_get_msg_frame -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x88f134a7 mpt_attach -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x8ef774cd mpt_detach -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x909e97e5 mpt_GetIocState -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x981efe92 mpt_deregister -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xa9f546e6 mptbase_sas_persist_operation -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xabafc3dc mpt_raid_phys_disk_pg1 -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xbb1d5918 mpt_clear_taskmgmt_in_progress_flag -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xca390984 mpt_free_msg_frame -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xcf8d5f2c mpt_event_register -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xd03e1259 mpt_put_msg_frame -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xd0492e6e mpt_verify_adapter -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 0xfa229de6 mpt_Soft_Hard_ResetHandler -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xfbf4005e mpt_send_handshake_request -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xfde3a534 mpt_HardResetHandler -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x04e7c9e6 mptscsih_remove -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x23c1fcec mptscsih_shutdown -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x2649a256 mptscsih_raid_id_to_num -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x2e76e8c5 mptscsih_show_info -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x334d8113 mptscsih_resume -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x3741a17d mptscsih_host_attrs -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x3e7bf4a1 mptscsih_dev_reset -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x429a7ba3 mptscsih_host_reset -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x48c57c0c mptscsih_abort -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x5047f072 mptscsih_event_process -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x6b30b0f4 mptscsih_suspend -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x8d471b9e mptscsih_scandv_complete -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xa54e6787 mptscsih_bios_param -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xabe912a5 mptscsih_IssueTaskMgmt -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xad101f03 mptscsih_info -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xae6bb980 mptscsih_get_scsi_lookup -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xc2db1848 mptscsih_is_phys_disk -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xc3498b46 mptscsih_io_done -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xc450fa91 mptscsih_taskmgmt_response_code -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xc92426b1 mptscsih_qcmd -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xced4d871 mptscsih_taskmgmt_complete -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xd02cda53 mptscsih_change_queue_depth -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xd3fca5fc mptscsih_slave_destroy -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xe672d127 mptscsih_flush_running_cmds -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xe699c5c1 mptscsih_slave_configure -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xf4cef088 mptscsih_ioc_reset -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xf61982bf mptscsih_bus_reset -EXPORT_SYMBOL drivers/mfd/axp20x 0x107dd376 axp20x_device_remove -EXPORT_SYMBOL drivers/mfd/axp20x 0x1b44228b axp20x_device_probe -EXPORT_SYMBOL drivers/mfd/axp20x 0xd09dbec0 axp20x_match_device -EXPORT_SYMBOL drivers/mfd/dln2 0x03b8e10a dln2_unregister_event_cb -EXPORT_SYMBOL drivers/mfd/dln2 0x36538a3c dln2_register_event_cb -EXPORT_SYMBOL drivers/mfd/dln2 0x9ec810de dln2_transfer -EXPORT_SYMBOL drivers/mfd/htc-pasic3 0x242c4159 pasic3_write_register -EXPORT_SYMBOL drivers/mfd/htc-pasic3 0xf08ae92e pasic3_read_register -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x17376f3b mc13xxx_reg_write -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x595913ae mc13xxx_irq_unmask -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x623cdeea mc13xxx_reg_rmw -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x78aadabe mc13xxx_irq_mask -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x7fca56a1 mc13xxx_irq_free -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x80c3d8fb mc13xxx_reg_read -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x8be23fe6 mc13xxx_get_flags -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x93b11e90 mc13xxx_lock -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x9fbb33ff mc13xxx_unlock -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xd884832a mc13xxx_irq_status -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xeed23651 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 0x0d55d83c wm8994_irq_init -EXPORT_SYMBOL drivers/mfd/wm8994 0x4e343718 wm8958_regmap_config -EXPORT_SYMBOL drivers/mfd/wm8994 0x7c0e8c81 wm8994_regmap_config -EXPORT_SYMBOL drivers/mfd/wm8994 0xc4c02fd1 wm8994_base_regmap_config -EXPORT_SYMBOL drivers/mfd/wm8994 0xd0a489fb wm8994_irq_exit -EXPORT_SYMBOL drivers/mfd/wm8994 0xd1563535 wm1811_regmap_config -EXPORT_SYMBOL drivers/misc/ad525x_dpot 0x21b86622 ad_dpot_probe -EXPORT_SYMBOL drivers/misc/ad525x_dpot 0xc8e22091 ad_dpot_remove -EXPORT_SYMBOL drivers/misc/altera-stapl/altera-stapl 0x5bafa76e altera_init -EXPORT_SYMBOL drivers/misc/c2port/core 0x0d654849 c2port_device_register -EXPORT_SYMBOL drivers/misc/c2port/core 0xe03ab47d c2port_device_unregister -EXPORT_SYMBOL drivers/misc/tifm_core 0x0c271296 tifm_unregister_driver -EXPORT_SYMBOL drivers/misc/tifm_core 0x0c2d3932 tifm_free_adapter -EXPORT_SYMBOL drivers/misc/tifm_core 0x0ffb277f tifm_queue_work -EXPORT_SYMBOL drivers/misc/tifm_core 0x1d299eab tifm_has_ms_pif -EXPORT_SYMBOL drivers/misc/tifm_core 0x231077d3 tifm_alloc_adapter -EXPORT_SYMBOL drivers/misc/tifm_core 0x32c6a44b tifm_alloc_device -EXPORT_SYMBOL drivers/misc/tifm_core 0x4c014be3 tifm_unmap_sg -EXPORT_SYMBOL drivers/misc/tifm_core 0x8669c9e5 tifm_map_sg -EXPORT_SYMBOL drivers/misc/tifm_core 0x871c2d47 tifm_free_device -EXPORT_SYMBOL drivers/misc/tifm_core 0x87ccdc28 tifm_register_driver -EXPORT_SYMBOL drivers/misc/tifm_core 0xa9d7ff2c tifm_eject -EXPORT_SYMBOL drivers/misc/tifm_core 0xac18f220 tifm_add_adapter -EXPORT_SYMBOL drivers/misc/tifm_core 0xbdb82871 tifm_remove_adapter -EXPORT_SYMBOL drivers/mmc/host/cqhci 0x37cadacc cqhci_irq -EXPORT_SYMBOL drivers/mmc/host/cqhci 0x41dc23aa cqhci_pltfm_init -EXPORT_SYMBOL drivers/mmc/host/cqhci 0x6e0f5c44 cqhci_deactivate -EXPORT_SYMBOL drivers/mmc/host/cqhci 0x83d6a3aa cqhci_resume -EXPORT_SYMBOL drivers/mmc/host/cqhci 0x933bdd5e cqhci_init -EXPORT_SYMBOL drivers/mmc/host/dw_mmc 0x31c53b14 dw_mci_probe -EXPORT_SYMBOL drivers/mmc/host/dw_mmc 0xc1215a58 dw_mci_runtime_resume -EXPORT_SYMBOL drivers/mmc/host/dw_mmc 0xdac50756 dw_mci_runtime_suspend -EXPORT_SYMBOL drivers/mmc/host/dw_mmc 0xea59abbd dw_mci_remove -EXPORT_SYMBOL drivers/mmc/host/of_mmc_spi 0xb7091c3b mmc_spi_put_pdata -EXPORT_SYMBOL drivers/mmc/host/of_mmc_spi 0xe317e8ec mmc_spi_get_pdata -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x03f42a63 cfi_send_gen_cmd -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x4adeda65 cfi_build_cmd -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x526940ea cfi_varsize_frob -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x71deb269 cfi_build_cmd_addr -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xaeebad87 cfi_read_pri -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xda94f2dd cfi_fixup -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xecc2cb47 cfi_merge_status -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xff9fa623 cfi_udelay -EXPORT_SYMBOL drivers/mtd/chips/chipreg 0x0af315ed unregister_mtd_chip_driver -EXPORT_SYMBOL drivers/mtd/chips/chipreg 0x261955ac do_map_probe -EXPORT_SYMBOL drivers/mtd/chips/chipreg 0x61abefde map_destroy -EXPORT_SYMBOL drivers/mtd/chips/chipreg 0x69b8e2c5 register_mtd_chip_driver -EXPORT_SYMBOL drivers/mtd/chips/gen_probe 0x36c3cde5 mtd_do_chip_probe -EXPORT_SYMBOL drivers/mtd/lpddr/lpddr_cmds 0x43aa7779 lpddr_cmdset -EXPORT_SYMBOL drivers/mtd/maps/map_funcs 0x8d95845f simple_map_init -EXPORT_SYMBOL drivers/mtd/mtd 0x48f3d06f mtd_concat_destroy -EXPORT_SYMBOL drivers/mtd/mtd 0xa64ff27e mtd_concat_create -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x0e838463 nand_ecc_prepare_io_req -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x13304e70 nand_ecc_cleanup_ctx -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x182f1806 nand_ecc_sw_bch_calculate -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x4428df8e nand_ecc_sw_hamming_calculate -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x4c504f81 nand_ecc_init_ctx -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x4d128828 of_get_nand_ecc_user_config -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x55a30fef nand_ecc_sw_hamming_correct -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x749b5b97 nand_ecc_sw_bch_cleanup_ctx -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x9267a241 nand_ecc_sw_bch_correct -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x926b1d7a nand_ecc_get_on_die_hw_engine -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x94b06235 nand_ecc_sw_hamming_cleanup_ctx -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x9c2175a6 nand_ecc_sw_hamming_get_engine -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xa4862fdb nand_ecc_is_strong_enough -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xaaa6addf nand_ecc_sw_bch_init_ctx -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xc541c002 nand_ecc_sw_hamming_init_ctx -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xca1c6d6a nand_ecc_finish_io_req -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xe1e05140 nand_ecc_sw_bch_get_engine -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xe232f523 nand_ecc_get_sw_engine -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xe6db989b ecc_sw_hamming_correct -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xff4351b0 ecc_sw_hamming_calculate -EXPORT_SYMBOL drivers/mtd/nand/onenand/onenand 0xb81cb375 flexonenand_region -EXPORT_SYMBOL drivers/mtd/nand/onenand/onenand 0xfabf6d2b onenand_addr -EXPORT_SYMBOL drivers/mtd/nand/raw/denali 0x2e6515d4 denali_init -EXPORT_SYMBOL drivers/mtd/nand/raw/denali 0x30db096f denali_calc_ecc_bytes -EXPORT_SYMBOL drivers/mtd/nand/raw/denali 0x54be0552 denali_remove -EXPORT_SYMBOL drivers/mtd/nand/raw/mtk_ecc 0x102603bc mtk_ecc_get_parity_bits -EXPORT_SYMBOL drivers/mtd/nand/raw/mtk_ecc 0x5437e775 mtk_ecc_disable -EXPORT_SYMBOL drivers/mtd/nand/raw/mtk_ecc 0x5de55d81 mtk_ecc_get_stats -EXPORT_SYMBOL drivers/mtd/nand/raw/mtk_ecc 0x6df58afb mtk_ecc_release -EXPORT_SYMBOL drivers/mtd/nand/raw/mtk_ecc 0x76e53683 mtk_ecc_wait_done -EXPORT_SYMBOL drivers/mtd/nand/raw/mtk_ecc 0x8dcc87d2 mtk_ecc_enable -EXPORT_SYMBOL drivers/mtd/nand/raw/mtk_ecc 0xa11a76d7 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 0x117de944 rawnand_sw_hamming_cleanup -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x15e9c09e nand_create_bbt -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x24646888 rawnand_sw_hamming_correct -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x24753ab4 rawnand_sw_hamming_init -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x28823092 nand_monolithic_write_page_raw -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x2bff9e92 nand_scan_with_ids -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x2d727e48 rawnand_sw_hamming_calculate -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x3134017c rawnand_sw_bch_correct -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x3f81ecf3 nand_write_oob_std -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x4a64542f nand_write_page_raw -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x4b0718aa nand_read_page_raw -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x5e390f87 nand_read_oob_std -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x70825cab rawnand_sw_bch_cleanup -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x71b67e76 nand_get_set_features_notsupp -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x8ecbb3b8 nand_check_erased_ecc_chunk -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xaed2cd5e rawnand_dt_parse_gpio_cs -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xc7f11cfc rawnand_sw_bch_init -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xe142bf1e nand_monolithic_read_page_raw -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x1476595e arc_raw_proto -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x35746c0b alloc_arcdev -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x3761fd87 free_arcdev -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x39caef2b arcnet_unregister_proto -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x4665bfa7 arcnet_send_packet -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x467df7de arc_proto_map -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x5b1bcfcb arc_proto_default -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x6534792a arcnet_debug -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x880989a2 arc_bcast_proto -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xadba8de9 arcnet_open -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xcb2913bb arcnet_timeout -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xe46d34bd arcnet_close -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xecb730b0 arcnet_interrupt -EXPORT_SYMBOL drivers/net/arcnet/com20020 0x74289591 com20020_check -EXPORT_SYMBOL drivers/net/arcnet/com20020 0x744b5d4b com20020_netdev_ops -EXPORT_SYMBOL drivers/net/arcnet/com20020 0x7a799d26 com20020_found -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x06f00ed5 b53_br_join -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x0c189d84 b53_eee_enable_set -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x0d654612 b53_fdb_add -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x0e3cffa6 b53_vlan_del -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x10ad7f19 b53_br_flags -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x11d42812 b53_setup_devlink_resources -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x122f7d82 b53_enable_port -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x170611a7 b53_configure_vlan -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x17dedd26 b53_vlan_filtering -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x1aa1fb0e b53_get_mac_eee -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x1d56e867 b53_get_ethtool_stats -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x208f615e b53_mdb_add -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x3f275e29 b53_br_flags_pre -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x4204f509 b53_port_event -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x423155b1 b53_mdb_del -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x447eee54 b53_fdb_dump -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x4576036a b53_switch_register -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x581888f0 b53_switch_detect -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x62a74d65 b53_br_fast_age -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x63db5bd2 b53_disable_port -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x69b0e7b3 b53_phylink_validate -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x6a8f0c0e b53_switch_alloc -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x6e22e020 b53_fdb_del -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x71eb2664 b53_vlan_add -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x7b5719fc b53_phylink_mac_an_restart -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x8653a7ed b53_imp_vlan_setup -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x9517fe65 b53_mirror_del -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x9a5087aa b53_eee_init -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xa5d4d97c b53_set_mac_eee -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xa98485c7 b53_get_sset_count -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xb78fd778 b53_phylink_mac_config -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xb937abd0 b53_brcm_hdr_setup -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xbde40aa0 b53_get_tag_protocol -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xc6d14fc4 b53_get_ethtool_phy_stats -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xd4029875 b53_br_leave -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xead1b918 b53_mirror_add -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xeadbded7 b53_br_set_stp_state -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xec8ccdbe b53_phylink_mac_link_state -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xf1770db3 b53_phylink_mac_link_up -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xf6eeb577 b53_get_strings -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xfbd2380b b53_phylink_mac_link_down -EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x191c9b67 b53_serdes_an_restart -EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x2b666f98 b53_serdes_config -EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x5cc5da65 b53_serdes_link_set -EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x8d140a95 b53_serdes_init -EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0xb5a95860 b53_serdes_phylink_validate -EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0xe3841083 b53_serdes_link_state -EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0x3c950b95 lan9303_remove -EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0x7084f287 lan9303_probe -EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0xa917b608 lan9303_shutdown -EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0xada83f40 lan9303_register_set -EXPORT_SYMBOL drivers/net/dsa/microchip/ksz8795 0xad6c171f ksz8_switch_register -EXPORT_SYMBOL drivers/net/dsa/microchip/ksz9477 0x6eae3fa7 ksz9477_switch_register -EXPORT_SYMBOL drivers/net/dsa/microchip/ksz_common 0x2b395fac ksz_switch_alloc -EXPORT_SYMBOL drivers/net/dsa/microchip/ksz_common 0x54e6c62f ksz_switch_remove -EXPORT_SYMBOL drivers/net/dsa/microchip/ksz_common 0x81aaadda ksz_switch_register -EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0x073a1f3e vsc73xx_probe -EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0x367ffa95 vsc73xx_remove -EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0x99d242fe vsc73xx_is_addr_valid -EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0xcc97052c vsc73xx_shutdown -EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0x26ac0404 xrs700x_switch_alloc -EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0x4c3f308d xrs700x_switch_shutdown -EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0x51d0055f xrs700x_switch_register -EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0x83b7b667 xrs7003f_info -EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0x8972bf7e xrs7004f_info -EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0xb25facfa xrs7003e_info -EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0xb89aa5e3 xrs7004e_info -EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0xe8b11b4e xrs700x_switch_remove -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x119721ac ei_interrupt -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x5f74dce1 ei_close -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x77267105 __alloc_ei_netdev -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x77967186 ei_tx_timeout -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x9f42c883 NS8390_init -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xacdf7311 ei_poll -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xb2bb5e72 ei_open -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xbf2e8307 ei_netdev_ops -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xc32dd8e2 ei_set_multicast_list -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xc3cf89ab ei_start_xmit -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xe5c68f87 ei_get_stats -EXPORT_SYMBOL drivers/net/ethernet/broadcom/bnxt/bnxt_en 0xd4fe2cdb bnxt_ulp_probe -EXPORT_SYMBOL drivers/net/ethernet/broadcom/cnic 0x636af174 cnic_unregister_driver -EXPORT_SYMBOL drivers/net/ethernet/broadcom/cnic 0xc1d8f9b3 cnic_register_driver -EXPORT_SYMBOL drivers/net/ethernet/cavium/common/cavium_ptp 0x6bb2e149 cavium_ptp_put -EXPORT_SYMBOL drivers/net/ethernet/cavium/common/cavium_ptp 0xc95b8d70 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 0x1821e1e1 t3_l2e_free -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x19d75904 dev2t3cdev -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x1b47bb5a cxgb3_alloc_atid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x3c11da23 t3_register_cpl_handler -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x4273b8e5 cxgb3_alloc_stid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x56bd0778 cxgb3_queue_tid_release -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x66603a21 cxgb3_remove_tid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x6cb44997 cxgb3_free_atid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x73f4f02b cxgb3_register_client -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x872fccda t3_l2t_get -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xbd12d771 cxgb3_ofld_send -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xc1a37b60 t3_l2t_send_slow -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xdba83645 t3_l2t_send_event -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xeaca4b20 cxgb3_insert_tid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xfb506f60 cxgb3_unregister_client -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xfe3aa7d4 cxgb3_free_stid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x062ccaf9 cxgb4_write_partial_sgl -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x0f1a5528 cxgb4_unregister_uld -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x11ecfe8a cxgb4_clip_release -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x1927df45 cxgb4_remove_server_filter -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x1aa0619f cxgb4_port_chan -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x1ee1feb0 cxgb4_l2t_send -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x1ee26a1d cxgb4_write_sgl -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x20ef0b72 cxgb4_l2t_alloc_switching -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x230f190d cxgb4_create_server_filter -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x25a442cc cxgb4_read_tpte -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x2f04f766 cxgb4_inline_tx_skb -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x30ea0074 cxgb4_port_viid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x3517189d cxgb4_free_stid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x3dae9452 cxgb4_clip_get -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x4091c3d5 cxgb4_port_e2cchan -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x4e2328fc cxgb4_alloc_stid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x50ee5c07 cxgb4_best_aligned_mtu -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x5188e14e cxgb4_dbfifo_count -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x58cc8eb3 cxgb4_sync_txq_pidx -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x5b8ee2eb t4_cleanup_clip_tbl -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x5e2554b1 cxgb4_update_root_dev_clip -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x5e9a21b5 cxgb4_map_skb -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x603e8f1b cxgb4_ring_tx_db -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x6249911b cxgb4_select_ntuple -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x6638d30f cxgb4_pktgl_to_skb -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x754ba0e1 cxgb4_bar2_sge_qregs -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x7685af90 cxgb4_check_l2t_valid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x8c39d801 cxgb4_register_uld -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x8cebffe8 cxgb4_flush_eq_cache -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x8e55b315 cxgb4_create_server -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x91097ba8 cxgb4_alloc_sftid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x9957c6b4 cxgb4_remove_tid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x9c8bc871 cxgb4_ofld_send -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x9dffab59 cxgb4_reclaim_completed_tx -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x9fd4a7bc cxgb4_alloc_atid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa1ab1111 cxgb4_read_sge_timestamp -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa8db193f cxgb4_smt_release -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xac949068 cxgb4_smt_alloc_switching -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xb15c2be6 cxgb4_l2t_get -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xb2380857 cxgb4_get_srq_entry -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xb42f4e57 cxgb4_remove_server -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xb54ccb24 cxgb4_l2t_release -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xb558e81a cxgb4_immdata_send -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xbd998bf8 cxgb4_create_server6 -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xcb90e12f cxgb4_port_idx -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd69a0294 cxgb4_best_mtu -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xe12c4467 cxgb4_free_atid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xeec37da3 cxgb4_iscsi_init -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xfc3fa1fb cxgb4_get_tcp_stats -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xfc8ee103 cxgb4_crypto_send -EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x117a532e cxgbi_ppm_init -EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x196374d5 cxgb_find_route -EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x1bdaafe1 cxgbi_tagmask_set -EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x255ab30f cxgb_get_4tuple -EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x50458670 cxgbi_ppm_release -EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x67576e22 cxgbi_ppm_ppod_release -EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x6e6e38f3 cxgbi_ppm_ppods_reserve -EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x8127e441 cxgbi_ppm_make_ppod_hdr -EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0xa22e4637 cxgb_find_route6 -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x09513784 enic_api_devcmd_proxy_by_index -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x206ad3b0 vnic_dev_register -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x659b06bc vnic_dev_get_pdev -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x6ba9e143 vnic_dev_unregister -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x8baefc82 vnic_dev_get_res_count -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xdf25afc4 vnic_dev_get_res -EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0x0dbeb7cf be_roce_register_driver -EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0x33bd84c7 be_roce_unregister_driver -EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0x4e2e10d2 be_roce_mcc_cmd -EXPORT_SYMBOL drivers/net/ethernet/freescale/dpaa2/fsl-dpaa2-eth 0x3b9055ac dpaa2_ptp -EXPORT_SYMBOL drivers/net/ethernet/freescale/dpaa2/fsl-dpaa2-eth 0x4412391e dpaa2_phc_index -EXPORT_SYMBOL drivers/net/ethernet/freescale/enetc/fsl-enetc-ierb 0xafd603ae enetc_ierb_register_pf -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0x0ed27e34 hnae_ae_unregister -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0x140d4ff9 hnae_reinit_handle -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0x1f13a2c6 hnae_get_handle -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0x47e54854 hnae_ae_register -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0x8d063814 hnae_put_handle -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0xb1266858 hnae_register_notifier -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0xdf24adef hnae_unregister_notifier -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hns_dsaf 0x96d3bf2d hns_dsaf_roce_reset -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0x1d7fd3cd hnae3_register_ae_algo -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0x2cb1a824 hnae3_register_client -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0x31a8bf5c hnae3_register_ae_dev -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0x4b4d979e hnae3_set_client_init_flag -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0x63c6671a hnae3_unregister_ae_algo_prepare -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0x6f296b86 hnae3_unregister_ae_algo -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0xe3416b75 hnae3_unregister_ae_dev -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0xfe587c0d hnae3_unregister_client -EXPORT_SYMBOL drivers/net/ethernet/intel/iavf/iavf 0x4cf4fbd3 iavf_unregister_client -EXPORT_SYMBOL drivers/net/ethernet/intel/iavf/iavf 0xe9c2e793 iavf_register_client -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x0d1008bb otx2_mbox_check_rsp_msgs -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x18cfe2e7 otx2_mbox_msg_send -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x364e8761 __SCK__tp_func_otx2_msg_interrupt -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x40379212 otx2_mbox_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 0x4ec8d278 otx2_mbox_get_rsp -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x4f1a51bb otx2_mbox_busy_poll_for_rsp -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x57373f86 __traceiter_otx2_msg_alloc -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 0x70d759e5 otx2_mbox_alloc_msg_rsp -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x7115078d __otx2_mbox_reset -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x8f772a3f otx2_mbox_id2name -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0xa1e003ff __traceiter_otx2_msg_process -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0xa3d6eba4 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 0xc0dd7251 otx2_reply_invalid_msg -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0xc18c3ae2 otx2_mbox_regions_init -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0xc9af2c8c otx2_mbox_wait_for_rsp -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0xce13d7ca otx2_mbox_reset -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 0xd99d69ce __traceiter_otx2_msg_interrupt -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0xe74e6b4c otx2_mbox_nonempty -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x083f31a6 otx2_stop -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x14806089 otx2_alloc_mcam_entries -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x246ff1b6 mbox_handler_nix_txsch_alloc -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x3338c2b3 otx2_open -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x47a2c8a7 otx2_tc_alloc_ent_bitmap -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x68d65ff8 otx2_sq_append_skb -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x73a28d50 otx2vf_set_ethtool_ops -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x78665f41 otx2_set_real_num_queues -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x7df955d5 otx2_attach_npa_nix -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x8462a1e3 otx2_get_max_mtu -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x890b69b6 mbox_handler_npa_lf_alloc -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x8bd28df0 mbox_handler_msix_offset -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x9176ba24 otx2_tx_timeout -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x91f56b4a mbox_handler_nix_lf_alloc -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xa1ea1115 otx2vf_mcam_flow_init -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xb6b568fe mbox_handler_nix_bp_enable -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xbbd1f2e5 otx2_mbox_up_handler_cgx_link_event -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xbcc01ddb otx2_detach_resources -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xbf61af65 otx2_get_stats64 -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xe3bb31ea otx2_set_mac_address -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xe79aa9db otx2_get_mac_from_af -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xe79e600f otx2_mcam_flow_del -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xeffd130b otx2_get_maxflows -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xf19d0933 cn10k_lmtst_init -EXPORT_SYMBOL drivers/net/ethernet/marvell/prestera/prestera 0x462d1384 prestera_device_unregister -EXPORT_SYMBOL drivers/net/ethernet/marvell/prestera/prestera 0xcd604bba prestera_device_register -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x01a0ba47 mlx4_SET_MCAST_FLTR -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0a38a229 mlx4_assign_eq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0bce9695 mlx4_gen_slaves_port_mgt_ev -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x10800413 mlx4_SET_PORT_general -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x21e73184 mlx4_get_slave_pkey_gid_tbl_len -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2354b50d mlx4_SET_PORT_PRIO2TC -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x254c0fa8 mlx4_test_async -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x25de5390 mlx4_gen_pkey_eqe -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2ba6387a mlx4_get_slave_from_roce_gid -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x30f990be mlx4_get_cpu_rmap -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x343b38cb mlx4_SET_VPORT_QOS_set -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4933b8da mlx4_SET_PORT_VXLAN -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4f4c49bb set_and_calc_slave_port_state -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5048a526 mlx4_SET_PORT_SCHEDULER -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x525f6baf mlx4_SET_PORT_BEACON -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x653ab3b1 mlx4_test_interrupt -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x67f57e8a mlx4_query_diag_counters -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6acc8346 mlx4_get_module_info -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6d484de2 mlx4_release_eq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7a2b977f mlx4_tunnel_steer_add -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7a36f862 mlx4_get_eqs_per_port -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7a991f51 mlx4_get_parav_qkey -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7fdde0b4 mlx4_handle_eth_header_mcast_prio -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x858ea17b mlx4_ALLOCATE_VPP_get -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x894b2566 mlx4_get_is_vlan_offload_disabled -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x90852a97 set_phv_bit -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x96337a38 mlx4_ALLOCATE_VPP_set -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa06f213d mlx4_SET_VPORT_QOS_get -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xaa2b6d5e mlx4_gen_guid_change_eqe -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xada222e2 mlx4_is_eq_vector_valid -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xaf167940 mlx4_get_roce_gid_from_slave -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbb04a8fe mlx4_get_slave_node_guid -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbbc64e52 mlx4_is_slave_active -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc4f46165 mlx4_put_slave_node_guid -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc879bb1d mlx4_max_tc -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xccc51a18 mlx4_eq_get_irq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd27193ac mlx4_get_slave_port_state -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd81538db mlx4_SET_PORT_user_mac -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdafad153 mlx4_SET_PORT_qpn_calc -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdd04946b mlx4_SET_PORT_user_mtu -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xea4a3d72 get_phv_bit -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xeaffaa20 mlx4_sync_pkey_table -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xef78b175 mlx4_SET_PORT_fcs_check -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfa95eb40 mlx4_is_eq_shared -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xff430b6a mlx4_gen_port_state_change_eqe -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x023ddf18 mlx5_core_destroy_tis -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x05d834ef mlx5_cmd_cleanup_async_ctx -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x07eb4415 mlx5_eq_get_eqe -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x07f0ac00 mlx5_eswitch_get_proto_dev -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x08016942 mlx5_fc_query -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x092aa112 mlx5_core_modify_cq_moderation -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x09d75adf mlx5_core_create_tir -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x09ea6290 mlx5_core_create_cq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0a737436 mlx5_core_destroy_rqt -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0d3ef425 mlx5_core_create_mkey -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1046cba9 mlx5_fs_remove_rx_underlay_qpn -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x15ff45e7 mlx5_eq_create_generic -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x16516883 mlx5_mpfs_add_mac -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x16aaf72a mlx5_alloc_bfreg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1881e612 mlx5_lag_is_roce -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1919e442 mlx5_cmd_free_uar -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1aa0603d mlx5_core_destroy_tir -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 0x219b3a28 __traceiter_mlx5_fs_set_fte -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x22bce683 __tracepoint_mlx5_fs_del_fte -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2a2f8301 mlx5_add_flow_rules -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2c50f9a1 mlx5_debugfs_root -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2fecedc0 mlx5_query_ib_port_oper -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x32fc77d1 __tracepoint_mlx5_fs_del_rule -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3475821f __SCK__tp_func_mlx5_fs_add_ft -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x357d467a mlx5_modify_header_dealloc -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x373304dd mlx5_eswitch_unregister_vport_reps -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3baa7ee4 mlx5_lag_is_active -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x40fc35eb __traceiter_mlx5_fw -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x41f6128c mlx5_rl_add_rate -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x42384199 mlx5_qp_debugfs_init -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x457e0694 mlx5_core_query_rq -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 0x4ba46df0 mlx5_get_uars_page -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 0x4d738baf mlx5_rsc_dump_next -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4d8c7ed5 mlx5_rl_remove_rate_raw -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 0x505b2b54 mlx5_eswitch_get_encap_mode -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x530379d0 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 0x56390804 mlx5_core_alloc_pd -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5dd40adf mlx5_lag_query_cong_counters -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x60ae791f __traceiter_mlx5_fs_del_ft -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x60bdcc39 mlx5_core_destroy_psv -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 0x652c0a17 mlx5_core_alloc_transport_domain -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x685d2243 mlx5_eswitch_register_vport_reps -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x686de04c mlx5_eswitch_get_core_dev -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x692feeb5 mlx5_eq_notifier_unregister -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6a3059a0 mlx5_core_modify_tis -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6a3779d6 mlx5_fs_add_rx_underlay_qpn -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6b058bf0 mlx5_cmd_exec_cb -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6f3d2a23 mlx5_core_modify_sq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7073005b mlx5_packet_reformat_dealloc -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 0x733a6161 mlx5_eq_update_ci -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x736c42f2 mlx5_comp_vectors_count -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x739f01f0 mlx5_lag_is_sriov -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x75a10b38 mlx5_packet_reformat_alloc -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x767d6993 mlx5_eq_enable -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x768c8da1 mlx5_fpga_mem_read -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 0x77aa25cb mlx5_core_roce_gid_set -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 0x7b9260b8 mlx5_get_flow_namespace -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7c77f31a mlx5_free_bfreg -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 0x7fd709fe __tracepoint_mlx5_fs_add_fg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x80f90aaa mlx5_eq_destroy_generic -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x82f65765 mlx5_lag_get_peer_mdev -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x867e60e4 mlx5_lag_get_roce_netdev -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 0x875da25c mlx5_cmd_exec -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x89e65966 mlx5_core_create_rq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8b41d030 mlx5_cmd_create_vport_lag -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8d792e3d mlx5_comp_irq_get_affinity_mask -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x90f51a7f mlx5_lag_get_slave_port -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9114bba3 mlx5_notifier_unregister -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 0x929de6df mlx5_fpga_get_sbu_caps -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x93b6b3dd mlx5_lag_is_shared_fdb -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x95f53d9e mlx5_fc_destroy -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x96eb2c99 mlx5_fc_id -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9c0f15fe mlx5_lag_is_master -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9c119b19 mlx5_debug_qp_remove -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 0x9d6edda9 mlx5_fpga_sbu_conn_sendmsg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa04d4ac5 mlx5_eswitch_vport_match_metadata_enabled -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 0xa763cb4a mlx5_eswitch_add_send_to_vport_rule -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa8e38e95 mlx5_debug_qp_add -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa9de155e mlx5_fc_create -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xab392e1a mlx5_nic_vport_disable_roce -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 0xadbf76fc mlx5_eswitch_uplink_get_proto_dev -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xae742f33 mlx5_eswitch_reg_c1_loopback_enabled -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb01dc902 mlx5_cmd_exec_polling -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb28dbbe8 mlx5_destroy_flow_group -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb5338b3b mlx5_del_flow_rules -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb5442706 mlx5_eswitch_vport_rep -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb61b4869 mlx5_modify_header_alloc -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb72cffaf __tracepoint_mlx5_fs_del_ft -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 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 0xbc95dcde mlx5_rl_is_in_range -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbce4e80f mlx5_eswitch_get_vport_metadata_for_set -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbd675f32 mlx5_core_query_mkey -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbf7c75ed mlx5_fpga_sbu_conn_destroy -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc070ba4a mlx5_rl_add_rate_raw -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc3ae872e mlx5_core_dealloc_pd -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc917bece mlx5_core_modify_rq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcbe7c4f5 mlx5_rdma_rn_get_params -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcc059520 mlx5_buf_alloc -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcd119e46 mlx5_eswitch_get_vport_metadata_for_match -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xce8d9770 mlx5_fpga_sbu_conn_create -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xceb2b8aa mlx5_core_modify_cq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd1b8ec89 mlx5_eq_notifier_register -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd3a17588 mlx5_cmd_init_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 0xd7171105 mlx5_put_uars_page -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd735893a mlx5_notifier_register -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd7378faa mlx5_core_detach_mcg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd7caee8e mlx5_core_create_tis -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 0xdace8029 mlx5_core_attach_mcg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xddfe1894 mlx5_vector2eqn -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xde834ec3 mlx5_mpfs_del_mac -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe25339f7 mlx5_core_query_cq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe3549279 mlx5_core_query_sq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe460c791 __traceiter_mlx5_fs_del_fte -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe4e09c2b __tracepoint_mlx5_fw -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe807d38b mlx5_core_create_rqt -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe8ca546e mlx5_eq_disable -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 0xed2a2f38 mlx5_core_dealloc_transport_domain -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xed3dd2c9 mlx5_get_fdb_sub_ns -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xeedc2315 mlx5_core_destroy_mkey -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf2ae9437 mlx5_cmd_alloc_uar -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf32f1985 mlx5_core_destroy_cq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf630c5c0 mlx5_rl_remove_rate -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf88d57b1 __SCK__tp_func_mlx5_fs_add_rule -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf9662c57 mlx5_rsc_dump_cmd_create -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf9aa7aaa mlx5_core_destroy_rq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf9f9068e mlx5_core_query_vendor_id -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfb4ea5e7 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 0xfe5213f1 mlx5_cmd_destroy_vport_lag -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xff7190a8 mlx5_fpga_mem_write -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxfw/mlxfw 0x1785272d 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 0x02f5ef6c mlxsw_core_trap_unregister -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x07abcc0c mlxsw_afa_block_append_trap -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x0c835a46 mlxsw_core_port_devlink_port_get -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 0x1e1c9ddb mlxsw_core_trap_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 0x249563e7 mlxsw_core_rx_listener_register -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x2b21ec26 mlxsw_env_get_module_eeprom -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 0x446fccc8 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 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 0x5ce12ced mlxsw_core_ptp_transmitted -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 0x63682084 mlxsw_core_bus_device_register -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x63874d4c mlxsw_core_port_driver_priv -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x65e16da4 mlxsw_afk_key_info_get -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x692ac04e mlxsw_afk_create -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 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 0x80021d2b mlxsw_core_skb_receive -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x827a2f1f mlxsw_afa_block_jump -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x829e8851 mlxsw_afa_block_first_set -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x858c30d0 mlxsw_afa_block_create -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x86a40342 mlxsw_core_res_get -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x87b88710 mlxsw_core_event_listener_unregister -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x8854d198 mlxsw_reg_write -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x8ba5fa7e mlxsw_core_lag_mapping_set -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x902c3533 mlxsw_core_schedule_dw -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x97035a9c mlxsw_afa_block_append_fid_set -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x97cf0ab9 mlxsw_core_port_is_xm -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x996c5d6d mlxsw_reg_trans_bulk_wait -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x9cbf026d mlxsw_afa_destroy -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x9e41f494 mlxsw_afk_encode -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xa1988db4 mlxsw_core_driver_unregister -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xa697902c 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 0xac061d98 mlxsw_core_trap_state_set -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xaecc7eb3 mlxsw_afa_block_append_mirror -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xb1ed81c0 mlxsw_core_rx_listener_unregister -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xb5e762fa mlxsw_afk_values_add_buf -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xb6517b2e mlxsw_afa_block_append_trap_and_forward -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xb7344e2e mlxsw_core_driver_register -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xb9f797a9 mlxsw_env_module_overheat_counter_get -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xba05b3b0 mlxsw_core_emad_string_tlv_enable -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xbbb7a867 mlxsw_afa_block_append_sampler -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 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 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 0xf5b2dbe4 mlxsw_afa_create -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xff007c25 mlxsw_core_cpu_port_fini -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_i2c 0xd3d0b03f mlxsw_i2c_driver_unregister -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_i2c 0xd47633c9 mlxsw_i2c_driver_register -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_pci 0x75c3d431 mlxsw_pci_driver_register -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_pci 0x954e2596 mlxsw_pci_driver_unregister -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x07c86a0c ocelot_can_inject -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x0a46d9a8 ocelot_port_lag_leave -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x0c6c6ff0 ocelot_port_set_maxlen -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x0da745ef ocelot_vlan_del -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x11759c39 ocelot_mrp_add -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x129a4bf1 ocelot_ptp_adjfine -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x1677c2ea ocelot_ptp_settime64 -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x2077f2c8 ocelot_mact_learn -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x20af7c93 ocelot_hwstamp_get -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x24dedcbe ocelot_vlan_add -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x25d5035a ocelot_mrp_del -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x26b61def ocelot_sb_pool_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 0x28e60c36 ocelot_apply_bridge_fwd_mask -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x34114939 ocelot_deinit_port -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x34a443dc ocelot_ptp_adjtime -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x34e9a970 ocelot_deinit -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x3a7c39f7 ocelot_mrp_del_ring_role -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x46d9ae02 ocelot_port_policer_add -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x50f1504b ocelot_get_sset_count -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x5b08f9a7 ocelot_port_inject_frame -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x6400d527 ocelot_ptp_gettime64 -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x6b3cc07c ocelot_sb_port_pool_set -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x6eec045d ocelot_bridge_stp_state_set -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x717dc986 ocelot_port_bridge_leave -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7520c779 ocelot_fdb_del -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7ba43a29 ocelot_fdb_add -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7c5b7cb3 ocelot_port_lag_join -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7f7acc2f ocelot_xtr_poll_frame -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x834d52e9 ocelot_set_ageing_time -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x88607494 ocelot_get_txtstamp -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x89a078b3 ocelot_deinit_timestamp -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x8a3410fe ocelot_port_txtstamp_request -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x8a85c6a8 ocelot_vcap_block_find_filter_by_id -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x8aec9877 ocelot_sb_tc_pool_bind_get -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x8d3e9b6d ocelot_port_policer_del -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x95623207 ocelot_sb_occ_port_pool_get -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x95b015cb ocelot_init_port -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x99d3662f ocelot_sb_occ_snapshot -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xa4d3b4f6 ocelot_sb_pool_get -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xaf00089b ocelot_port_mdb_add -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xaf89828c ocelot_sb_occ_tc_port_bind_get -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb284d962 ocelot_devlink_sb_unregister -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb4502f9d ocelot_fdb_dump -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xbc3f13c4 ocelot_port_bridge_join -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xbc6882e7 ocelot_get_max_mtu -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xc08ab574 ocelot_vcap_filter_del -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xc34571dc ocelot_sb_tc_pool_bind_set -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xc9ca234d ocelot_mrp_add_ring_role -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xcd10d18e ocelot_port_bridge_flags -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xcdb4b367 ocelot_devlink_sb_register -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xce972304 ocelot_port_vlan_filtering -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xcf6a8d74 ocelot_port_lag_change -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xd5b902d7 ocelot_sb_port_pool_get -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xdd85c8cd ocelot_port_pre_bridge_flags -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xe48ded73 ocelot_ptp_verify -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xe55710f6 ocelot_get_ts_info -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xe5a5641b ocelot_get_ethtool_stats -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xe9c6833e ocelot_get_strings -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xea8b105b ocelot_hwstamp_set -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xf2fadb5a ocelot_sb_occ_max_clear -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xf38712a2 ocelot_ptp_enable -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xf6e35a63 ocelot_port_mdb_del -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xf8683e00 ocelot_drain_cpu_queue -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xf8b1874e ocelot_vlan_prepare -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xfa38dc93 ocelot_vcap_filter_add -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xfa4d3090 ocelot_mact_forget -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xfca23821 ocelot_init -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xffb4d68b ocelot_init_timestamp -EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x34eb43a0 qed_get_eth_ops -EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x4f264472 qed_put_iscsi_ops -EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x92a12ae9 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 0xca21eaa9 qed_get_rdma_ops -EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0xfde40fbf qed_get_fcoe_ops -EXPORT_SYMBOL drivers/net/ethernet/qlogic/qede/qede 0xdab51ffa qede_rdma_register_driver -EXPORT_SYMBOL drivers/net/ethernet/qlogic/qede/qede 0xec5a9466 qede_rdma_unregister_driver -EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x08244884 hdlcdrv_transmitter -EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x1d8856b1 hdlcdrv_register -EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x4d28e015 hdlcdrv_unregister -EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0xa922ab1a hdlcdrv_arbitrate -EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0xac8c8a85 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 0x4ca23108 cavium_mdiobus_read -EXPORT_SYMBOL drivers/net/mdio/mdio-cavium 0xedb4d44e cavium_mdiobus_write -EXPORT_SYMBOL drivers/net/mdio/mdio-xgene 0x06326d94 xgene_enet_phy_register -EXPORT_SYMBOL drivers/net/mdio/mdio-xgene 0x140e4f5c xgene_mdio_rgmii_read -EXPORT_SYMBOL drivers/net/mdio/mdio-xgene 0x27bbb673 xgene_mdio_rgmii_write -EXPORT_SYMBOL drivers/net/mdio/mdio-xgene 0x5d63399b xgene_mdio_wr_mac -EXPORT_SYMBOL drivers/net/mdio/mdio-xgene 0xfea20b80 xgene_mdio_rd_mac -EXPORT_SYMBOL drivers/net/pcs/pcs-lynx 0x579f6517 lynx_pcs_destroy -EXPORT_SYMBOL drivers/net/pcs/pcs-lynx 0x6005898e lynx_pcs_create -EXPORT_SYMBOL drivers/net/phy/bcm-phy-lib 0xc65ea38f bcm54xx_auxctl_write -EXPORT_SYMBOL drivers/net/ppp/pppox 0x1cc46393 pppox_ioctl -EXPORT_SYMBOL drivers/net/ppp/pppox 0x83d996b4 register_pppox_proto -EXPORT_SYMBOL drivers/net/ppp/pppox 0xabfb6d96 pppox_unbind_sock -EXPORT_SYMBOL drivers/net/ppp/pppox 0xbedca81c pppox_compat_ioctl -EXPORT_SYMBOL drivers/net/ppp/pppox 0xe0ff7a18 unregister_pppox_proto -EXPORT_SYMBOL drivers/net/sungem_phy 0x4bf64582 sungem_phy_probe -EXPORT_SYMBOL drivers/net/team/team 0x167bbad8 team_mode_unregister -EXPORT_SYMBOL drivers/net/team/team 0x2f7eae14 team_options_register -EXPORT_SYMBOL drivers/net/team/team 0x5c401f87 team_mode_register -EXPORT_SYMBOL drivers/net/team/team 0x5fcd40cd team_option_inst_set_change -EXPORT_SYMBOL drivers/net/team/team 0x7bb8b338 team_options_unregister -EXPORT_SYMBOL drivers/net/team/team 0xa3e5f5f2 team_options_change_check -EXPORT_SYMBOL drivers/net/team/team 0xd8052bf1 team_modeop_port_change_dev_addr -EXPORT_SYMBOL drivers/net/team/team 0xf00f5719 team_modeop_port_enter -EXPORT_SYMBOL drivers/net/usb/usbnet 0x8484a410 usbnet_manage_power -EXPORT_SYMBOL drivers/net/usb/usbnet 0xaf5e43e0 usbnet_link_change -EXPORT_SYMBOL drivers/net/usb/usbnet 0xee6cc830 usbnet_device_suggests_idle -EXPORT_SYMBOL drivers/net/wan/hdlc 0x09c27754 detach_hdlc_protocol -EXPORT_SYMBOL drivers/net/wan/hdlc 0x1483d669 hdlc_start_xmit -EXPORT_SYMBOL drivers/net/wan/hdlc 0x40e48993 hdlc_ioctl -EXPORT_SYMBOL drivers/net/wan/hdlc 0x44c93dd3 hdlc_open -EXPORT_SYMBOL drivers/net/wan/hdlc 0x59b912da register_hdlc_protocol -EXPORT_SYMBOL drivers/net/wan/hdlc 0x5f2bed10 attach_hdlc_protocol -EXPORT_SYMBOL drivers/net/wan/hdlc 0xcf95aa90 unregister_hdlc_protocol -EXPORT_SYMBOL drivers/net/wan/hdlc 0xd35412f9 unregister_hdlc_device -EXPORT_SYMBOL drivers/net/wan/hdlc 0xde14e2fa alloc_hdlcdev -EXPORT_SYMBOL drivers/net/wan/hdlc 0xf9d51985 hdlc_close -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x108b188f ath_is_49ghz_allowed -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x22f8f40a ath_hw_get_listen_time -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x300c8265 ath_hw_cycle_counters_update -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x3af3d3cd ath_rxbuf_alloc -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x411abfe8 ath_hw_keyreset -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x4571aea8 ath_is_world_regd -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x703644d4 ath_printk -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x81022ef3 ath_key_config -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x8250cc5c ath_reg_notifier_apply -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x89d0c149 ath_hw_keysetmac -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 0xbec2f47e ath_hw_setbssidmask -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xc02508ba ath_key_delete -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xd1b0f9da ath_is_mybeacon -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xf76be34a dfs_pattern_detector_init -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xf98605d5 ath_regd_get_band_ctl -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xfcebfab5 ath_regd_init -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x015e5db2 ath10k_debug_mask -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x0700d801 ath10k_ce_cancel_send_next -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x19fde771 ath10k_htc_tx_completion_handler -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x2a60d5b2 ath10k_bmi_read_memory -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x2b00e576 ath10k_core_destroy -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x2f93decb ath10k_core_unregister -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x34aaf9d6 ath10k_htt_rx_pktlog_completion_handler -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x355d13c4 ath10k_ce_disable_interrupt -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x3d8a27c4 ath10k_ce_alloc_rri -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x45c3eb3a ath10k_ce_revoke_recv_next -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x4e4a90ee ath10k_ce_num_free_src_entries -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x4e6a112f ath10k_ce_disable_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x50baf39a ath10k_coredump_new -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x5243bb57 ath10k_core_start -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x5656acc6 ath10k_print_driver_info -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x5700d92e ath10k_ce_free_pipe -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x59013f45 ath10k_core_stop -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x5e060191 ath10k_ce_per_engine_service -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x5e9d9e16 ath10k_ce_alloc_pipe -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x6137d579 ath10k_core_start_recovery -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x6f90ae28 ath10k_ce_rx_post_buf -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x71214287 ath10k_ce_init_pipe -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x7995a0da ath10k_bmi_start -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x7cffd621 ath10k_core_napi_enable -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x7dda8673 ath10k_ce_completed_send_next_nolock -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x7fd896d0 ath10k_ce_completed_recv_next_nolock -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x80109eca ath10k_warn -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x828158af ath10k_coredump_get_mem_layout -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x842ea178 ath10k_ce_per_engine_service_any -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x84873820 ath10k_core_check_dt -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x8e5bf9e7 ath10k_ce_send_nolock -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x92839ffe ath10k_info -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x95c8ebdc ath10k_ce_rx_update_write_idx -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x9bf57809 ath10k_core_napi_sync_disable -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x9ee81777 ath10k_core_free_board_files -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x9ef24868 ath10k_ce_send -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xa1e4849a __tracepoint_ath10k_log_dbg -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xa8d9b687 ath10k_htc_process_trailer -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xaf743d04 ath10k_err -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xafa19f63 ath10k_ce_dump_registers -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xb1017ad4 ath10k_htt_hif_tx_complete -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xb58625f8 ath10k_ce_enable_interrupt -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xb810d106 ath10k_htt_t2h_msg_handler -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xbdda2525 ath10k_ce_completed_send_next -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xc491dafb ath10k_ce_free_rri -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xc5b97671 ath10k_htc_notify_tx_completion -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xd6259d55 ath10k_core_create -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xddc0cfc5 ath10k_core_register -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xde39fb1a ath10k_core_fetch_board_file -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xe5bca2be ath10k_htt_txrx_compl_task -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xe5facce6 ath10k_ce_enable_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xe86923a3 __ath10k_ce_rx_num_free_bufs -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xe999bd1f __ath10k_ce_send_revert -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xefb1cd64 ath10k_ce_deinit_pipe -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xf2a2d2dc ath10k_ce_completed_recv_next -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xf536be6f ath10k_htt_rx_hl_indication -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xf8e8f1a6 ath10k_htc_rx_completion_handler -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xfc229de1 ath10k_mac_tx_push_pending -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x064a02ee ath11k_dp_service_srng -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x11674de1 ath11k_ce_free_pipes -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x19f0771e ath11k_ce_cleanup_pipes -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x1ddf7bf5 ath11k_ce_per_engine_service -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x25942ba9 ath11k_ce_get_shadow_config -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x2bb10b2d ath11k_core_resume -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x3d296058 ath11k_hal_srng_init -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x3f870b1b ath11k_ce_rx_post_buf -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x46aa1a34 ath11k_debugfs_soc_destroy -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x697d9be2 ath11k_core_deinit -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x6b22e12f ath11k_err -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x7fc5bf25 ath11k_ce_alloc_pipes -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x9769395c ath11k_hal_srng_deinit -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x9c51bcc4 ath11k_debug_mask -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x9d43cb90 ath11k_qmi_deinit_service -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xb0c12193 ath11k_core_alloc -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xdcceb0cf ath11k_info -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xe8988725 ath11k_core_suspend -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xebf48db3 ath11k_ce_get_attr_flags -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xf0197188 ath11k_cold_boot_cal -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xf0b1c2f0 ath11k_warn -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xf776d188 ath11k_core_init -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xf8fb0040 ath11k_core_free -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xfcd67bee ath11k_core_pre_init -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x1354043d ath6kl_warn -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x1ad153db ath6kl_read_tgt_stats -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x1fc1d5dc ath6kl_core_tx_complete -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x2028fabe ath6kl_cfg80211_resume -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x2407b0fb ath6kl_hif_intr_bh_handler -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x3502feef ath6kl_info -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x3ec69942 ath6kl_stop_txrx -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x43628303 ath6kl_core_create -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x566a0c16 ath6kl_core_destroy -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x692191f7 ath6kl_core_cleanup -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x740ee1c6 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 0xe361d376 ath6kl_cfg80211_suspend -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xef81af88 ath6kl_core_init -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x0261ef49 ath9k_cmn_spectral_scan_config -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x13d35b13 ath9k_cmn_process_rate -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x18d6a7a8 ath9k_cmn_rx_accept -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x1de368a2 ath9k_cmn_spectral_init_debug -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x2ff4e739 ath9k_cmn_spectral_deinit_debug -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x4313fb2c ath9k_cmn_get_channel -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x443aad5e ath9k_cmn_debug_recv -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x44eda694 ath9k_cmn_beacon_config_ap -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x4b024933 ath9k_cmn_rx_skb_postprocess -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x6c0bc3a3 ath9k_cmn_debug_phy_err -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x7d02a6fe ath9k_cmn_setup_ht_cap -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x8ba72223 ath9k_cmn_process_rssi -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xa0738e4a ath9k_cmn_spectral_scan_trigger -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xaacb2ee9 ath9k_cmn_beacon_config_adhoc -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xac92e25d ath9k_cmn_beacon_config_sta -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xaf2fe726 ath9k_cmn_init_crypto -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xb76fccc7 ath9k_cmn_debug_stat_rx -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xd2981357 ath9k_cmn_count_streams -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xd440b363 ath9k_cmn_debug_base_eeprom -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xe073d0d0 ath9k_cmn_get_hw_crypto_keytype -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xea57dbfe ath9k_cmn_init_channels_rates -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xecda168c ath9k_cmn_update_txpow -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xfc2962d9 ath9k_cmn_debug_modal_eeprom -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xfcb34d54 ath9k_cmn_reload_chainmask -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xfd58c776 ath_cmn_process_fft -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x008133e8 ath9k_hw_intrpend -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x00d20ddc ath9k_hw_computetxtime -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x01f10d3e ar9003_mci_state -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x023ebdf3 ath_gen_timer_isr -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x02d57a56 ath9k_hw_txstart -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0472fe78 ar9003_mci_get_next_gpm_offset -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x05d30f31 ath9k_hw_get_txq_props -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x064bdca0 ath9k_hw_check_nav -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0697819f ath9k_hw_btcoex_init_2wire -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x07619df4 ath9k_hw_set_txq_props -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0c03d4c9 ath9k_hw_gpio_request_out -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0cdfc83b ath9k_hw_disable_mib_counters -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0f77dafc ath9k_hw_get_tsf_offset -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x103bcd78 ath9k_hw_abort_tx_dma -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x166b6e8a ar9003_mci_setup -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x17b8dd08 ath9k_hw_setuprxdesc -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1d8e70ad ar9003_mci_get_interrupt -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1de5f9fb ath9k_hw_getrxfilter -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x24614c91 ath9k_hw_write_associd -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x276fc240 ath9k_hw_disable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x29bbe0eb ar9003_mci_send_wlan_channels -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2a224af2 ath9k_hw_putrxbuf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2c53d345 ath9k_hw_resettxqueue -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2ddc84f2 ath9k_hw_addrxbuf_edma -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3083e8b8 ar9003_mci_set_bt_version -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x31e80b89 ath9k_hw_check_alive -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x340cb00c ar9003_hw_bb_watchdog_check -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x39320a02 ar9003_hw_disable_phy_restart -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x395afe53 ar9003_paprd_is_done -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3a22bae2 ath9k_hw_init_global_settings -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3bc4741d ath9k_hw_settsf64 -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3d608002 ar9003_paprd_create_curve -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4012c7c5 ath9k_hw_setuptxqueue -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x40708fed ath9k_hw_set_rx_bufsize -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x45051f60 ath9k_hw_setrxabort -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x483cb186 ath9k_hw_set_txpowerlimit -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4b849e5c ath9k_hw_gpio_get -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4c8bad57 ath9k_hw_init_btcoex_hw -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4c938244 ath9k_hw_btcoex_init_mci -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4d584c4e ath9k_hw_wow_apply_pattern -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4e127a11 ath9k_hw_phy_disable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4ea402d6 ath9k_hw_setopmode -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4eb30301 ar9003_mci_cleanup -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x567464d4 ar9003_paprd_setup_gain_table -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5985ebe5 ath9k_hw_updatetxtriglevel -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x59d863a7 ath9k_hw_init -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5ac37c60 ath9k_hw_set_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5c846f19 ath9k_hw_btcoex_init_scheme -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x680c24a5 ath9k_hw_setup_statusring -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6b96b623 ath9k_hw_btcoex_disable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6c5120f9 ath9k_hw_setmcastfilter -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6d67ef7d ath9k_hw_bstuck_nfcal -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6eaa09ee ath9k_hw_ani_monitor -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x702908a8 ath9k_hw_beaconq_setup -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x708d6a54 ath9k_hw_reset_tsf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x757f05e1 ath9k_hw_set_tx_filter -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7ba0b9ee ath9k_hw_puttxbuf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7bd89869 ath9k_hw_abortpcurecv -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7dde138d ath9k_hw_name -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x81266935 ath9k_hw_gettxbuf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x82c6e346 ath9k_hw_wow_enable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x85bfa9a8 ath9k_hw_releasetxqueue -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x90874abd ath9k_hw_rxprocdesc -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x91d55d2a ar9003_hw_bb_watchdog_dbg_info -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x92f16a02 ath9k_hw_btcoex_bt_stomp -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9b13ef18 ath9k_hw_set_gpio -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa07612a5 ath9k_hw_stopdmarecv -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa41b41dc ath9k_hw_getchan_noise -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa974398b ath9k_hw_gettsf64 -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xaa705a0f ath9k_hw_reset_calvalid -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xab314f3e ar9003_mci_send_message -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xabfbfffa ath9k_hw_numtxpending -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xaca66e30 ath9k_hw_gpio_free -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xacf41689 ath9k_hw_btcoex_enable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xae3e28d6 ath9k_hw_gen_timer_start -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xaec7208d ar9003_paprd_populate_single_table -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xaeff1596 ar9003_paprd_enable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb5e294c3 ath9k_hw_btcoex_set_weight -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb71dd9c6 ath9k_hw_kill_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbaf99f52 ath9k_hw_enable_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc099bd06 ar9003_get_pll_sqsum_dvc -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc150f7d0 ar9003_paprd_init_table -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc426a642 ath9k_hw_beaconinit -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc5d533f0 ath9k_hw_resume_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc866cd95 ath9k_hw_startpcureceive -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xcc16749a ath9k_hw_stop_dma_queue -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xcc790a3f ath9k_hw_btcoex_set_concur_txprio -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xcd95fbbf ath9k_hw_wow_wakeup -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xcf4321c2 ath9k_hw_setpower -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xcf87b735 ath9k_hw_disable_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd3642a82 ath9k_hw_process_rxdesc_edma -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd599501a ar9003_is_paprd_enabled -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xde582c98 ath9k_hw_loadnf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe14e1322 ath9k_hw_wait -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xeab9f7b9 ath9k_hw_setantenna -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xee3f3788 ath9k_hw_btcoex_init_3wire -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xee8f05c2 ath9k_hw_gen_timer_stop -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xef5c5375 ath9k_hw_reset -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf121b09d ath9k_hw_getnf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf2345243 ath9k_hw_deinit -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf38a7e7b ath9k_hw_gettsf32 -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf57cb5b3 ath9k_hw_setrxfilter -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf8246337 ath9k_hw_set_sta_beacon_timers -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf871ed64 ath9k_hw_gpio_request_in -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xfc356153 ath9k_hw_btcoex_deinit -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xfcb2902e ath9k_hw_set_tsfadjust -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xfd5b7607 ath_gen_timer_alloc -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xfd62ec1c ath_gen_timer_free -EXPORT_SYMBOL drivers/net/wireless/atmel/atmel 0x2d9f4336 atmel_open -EXPORT_SYMBOL drivers/net/wireless/atmel/atmel 0x5076b50a stop_atmel_card -EXPORT_SYMBOL drivers/net/wireless/atmel/atmel 0xe8e00a59 init_atmel_card -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x0ee15684 brcmu_pkt_buf_free_skb -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x1906648e brcmu_boardrev_str -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x19607c0c brcmu_pktq_pdeq_tail -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x458027db brcmu_pktq_flush -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x4c65c7da brcmu_pktq_peek_tail -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x54ff98fe brcmu_pktq_pdeq -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x5a1632ea brcmu_pktq_mdeq -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x6e9c2003 brcmu_pktq_pdeq_match -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x7738bef0 brcmu_pkt_buf_get_skb -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x965a880e 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 0xa818d7e9 brcmu_pktq_mlen -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xb230ccd5 brcmu_pktq_pflush -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xcb95ca23 brcmu_pktq_init -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xcc9214ec brcmu_pktq_penq -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xd6217d91 brcmu_d11_attach -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x02d45be9 libipw_wx_get_scan -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x1173b595 libipw_networks_age -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x1b18179d libipw_freq_to_channel -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x1c3ccda2 libipw_is_valid_channel -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x2d45db9e libipw_channel_to_freq -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x337af037 libipw_rx_mgt -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x33e8e734 libipw_get_channel_flags -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x37a6efb7 libipw_wx_set_encode -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x3a53ab41 alloc_libipw -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x54b5f40d free_libipw -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x60bd8785 libipw_get_channel -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x746dcd13 libipw_txb_free -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x7a29d9d3 libipw_set_geo -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x953e1b1d libipw_rx -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xb522969c libipw_get_geo -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xbd209d96 libipw_xmit -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xbe834864 libipw_wx_get_encode -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xcb31dd00 libipw_wx_set_encodeext -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xee45db15 libipw_channel_to_index -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xeebca889 libipw_wx_get_encodeext -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x0064ef9a il_rx_queue_alloc -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x00f2bb32 il_tx_queue_free -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x0311b630 il_tx_queue_unmap -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x03378a64 _il_apm_stop -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x049e84c0 il_scan_cancel -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x04c09ef6 il_clear_bit -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1056f833 il_hdl_spectrum_measurement -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x11d14d35 il_dbgfs_register -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x16e1cfef il_rd_prph -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1893f200 il_init_scan_params -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1c41230a il_irq_handle_error -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x214d050a il_cmd_queue_unmap -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x236c297a il_cmd_queue_free -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x260cd954 il_hdl_error -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x271381f3 il_send_rxon_timing -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2b0da5db il_mac_remove_interface -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2be487a6 il_get_lowest_plcp -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2bf7eea6 il_queue_space -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2cdfa9d5 il_get_channel_info -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x325448c9 il_set_rxon_hwcrypto -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3576dbb0 il_tx_cmd_complete -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x36063620 il_send_cmd_sync -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x384e5002 il_fill_probe_req -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3955e02f il_restore_stations -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x39e82d51 il_setup_scan_deferred_work -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3a16dee6 il_free_geos -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3c66bb87 il_get_single_channel_number -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3f0dca06 il_mac_add_interface -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x402b67fe il_leds_init -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x416bd26a il_debug_level -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x4741ce08 il_send_cmd_pdu_async -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x4d5bcd42 il_mac_reset_tsf -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x4fe10547 il_set_decrypted_flag -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x535cf52a il_pm_ops -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x567f3b6f il_add_station_common -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x56c9b736 il_send_cmd -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x577e8f1b _il_poll_bit -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x5879dfd9 il_update_stats -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x5ed6ae39 il_set_flags_for_band -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x61f7496c il_rx_queue_update_write_ptr -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x64777ebc il_write_targ_mem -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x64e93bbe il_power_initialize -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x661c7bfd il_force_reset -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x698c3ccd il_connection_init_rx_config -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x72307a9c il_mac_conf_tx -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x726b972c il_free_txq_mem -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x72e77285 il_setup_watchdog -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x74da853e il_hdl_csa -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x75e157ea il_poll_bit -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7c907381 il_mac_config -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7cf52ee1 il_chswitch_done -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7f0b0cb1 il_rx_queue_space -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x82db6de7 il_apm_init -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x82ece808 il_send_stats_request -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x852cb548 il_eeprom_init -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x8b3160db il_set_tx_power -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x8bf1b7a4 il_setup_rx_scan_handlers -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x8cd3767e il_get_passive_dwell_time -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x8e2bdc2d il_usecs_to_beacons -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9c09cbfe il_add_beacon_time -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9cc714af il_bg_watchdog -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9d46b6a8 il_set_rxon_channel -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa032125f il_mac_hw_scan -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa4114089 il_free_channel_map -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa5b88342 il_tx_cmd_protection -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa8a42684 il_leds_exit -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xac52bfcf il_set_rate -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xacf2c264 il_read_targ_mem -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xadf86f79 il_send_cmd_pdu -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xaf916dae il_full_rxon_required -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb551f03e il_txq_update_write_ptr -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 0xbca905b7 il_tx_queue_reset -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xbdd08cd8 il_get_active_dwell_time -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xbe72e971 il_tx_queue_init -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc05901ae il_get_free_ucode_key_idx -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc0804ef3 il_eeprom_free -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc4bc85e8 il_wr_prph -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc86e7b47 il_init_channel_map -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xcb1942c5 il_set_rxon_ht -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xcb2de92a il_hdl_pm_debug_stats -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xcc108730 il_alloc_txq_mem -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xce671974 il_cancel_scan_deferred_work -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd1dca4b0 il_power_update_mode -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd5f31bcc il_mac_bss_info_changed -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd66c68fe il_mac_change_interface -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xda88e276 il_clear_ucode_stations -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xdb6e13f4 il_set_bit -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xddcdd098 il_hdl_pm_sleep -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xddf60357 il_dbgfs_unregister -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xde19fd46 il_mac_flush -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xde5073de il_mac_sta_remove -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe1606066 il_send_add_sta -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe185093a il_is_ht40_tx_allowed -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe3cb60ec il_send_lq_cmd -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe741c12a il_apm_stop -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe8888df0 il_init_geos -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe8e5a774 il_eeprom_query_addr -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xec129920 il_send_bt_config -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf0559359 il_scan_cancel_timeout -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf66f0340 il_check_rxon_cmd -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf70a693b il_bcast_addr -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf7b2a1f4 il_eeprom_query16 -EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x050fc48c __traceiter_iwlwifi_dev_ucode_event -EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x1b637e84 __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 0x67260203 __traceiter_iwlwifi_dev_ucode_cont_event -EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x970bf4ef __SCK__tp_func_iwlwifi_dev_ucode_event -EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xaaafbd3e __tracepoint_iwlwifi_dev_ucode_cont_event -EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xd1e69877 __SCK__tp_func_iwlwifi_dev_ucode_cont_event -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x03b9a4b2 hostap_free_data -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x04cfbc27 hostap_setup_dev -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x13abdd5a hostap_dump_tx_header -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x1a8ca8f6 hostap_set_roaming -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x1b8c43b3 hostap_handle_sta_tx_exc -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x1cadf992 hostap_add_interface -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x1eaeeceb hostap_init_ap_proc -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x2e7a26f0 hostap_set_string -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x30c4ee7b hostap_set_word -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x347ab1de hostap_get_porttype -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x38fecab2 hostap_remove_interface -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x3b070396 hostap_set_auth_algs -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x4144eecb hostap_80211_rx -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x458a86f0 hostap_set_antsel -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x468e492c prism2_update_comms_qual -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x52de4e7f hostap_80211_ops -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x6c6d50b3 hostap_init_proc -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 0x817f88c0 hostap_remove_proc -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x881eef52 hostap_set_hostapd_sta -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x945a6ac2 hostap_check_sta_fw_version -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x9d0f3365 hostap_info_process -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xa4137981 hostap_info_init -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xa8daa177 hostap_init_data -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xb4b77c8b hostap_80211_get_hdrlen -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xea4ca885 hostap_set_encryption -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xf47819c8 hostap_master_start_xmit -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xfb63db10 hostap_set_hostapd -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x050cea4e __orinoco_ev_rx -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x1b6e3500 orinoco_process_xmit_skb -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x31e0ec94 orinoco_if_del -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x3d73ebd5 orinoco_if_add -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x400380a3 orinoco_up -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x4b0c5590 orinoco_change_mtu -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x4d856b61 orinoco_set_multicast_list -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x5ca70576 alloc_orinocodev -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x5eb7fbdf orinoco_tx_timeout -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x8bba2c17 free_orinocodev -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x96807e1c orinoco_open -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xa74c2dc5 hermes_struct_init -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xc1af98ef orinoco_init -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xc4dd3cb0 orinoco_down -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xf48f3e47 __orinoco_ev_info -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xfa2eb03a orinoco_stop -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xffe27bca orinoco_interrupt -EXPORT_SYMBOL drivers/net/wireless/mediatek/mt76/mt76 0x10471d26 mt76_wcid_key_setup -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/btcoexist/btcoexist 0x188ae616 rtl_btc_get_ops_pointer -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x04201d16 _rtl92c_phy_rf_serial_read -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x2327d91c _rtl92c_phy_calculate_bit_shift -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x28e0e8db rtl92c_set_fw_pwrmode_cmd -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x29bd3c69 rtl92c_set_fw_joinbss_report_cmd -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x2a921ff6 rtl92ce_phy_set_rf_on -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x33f94ec3 _rtl92c_phy_dbm_to_txpwr_idx -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x3a1d99cb rtl92c_phy_sw_chnl -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x3b296858 rtl92c_phy_set_txpower_level -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x3bca15eb rtl92c_dm_rf_saving -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x3d1c6144 rtl92c_set_fw_rsvdpagepkt -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x45ec76a5 _rtl92c_phy_fw_rf_serial_write -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x496459b3 rtl92c_dm_check_txpower_tracking -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x49b2189d _rtl92c_phy_txpwr_idx_to_dbm -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x4a78192c rtl92c_dm_bt_coexist -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x5048282e rtl92c_phy_query_bb_reg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x51d68941 rtl92c_phy_set_io -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x56a01a84 rtl92c_firmware_selfreset -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x59a819ad rtl92c_phy_set_io_cmd -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x5f42b818 _rtl92c_store_pwrindex_diffrate_offset -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x642649f8 rtl92c_dm_init_edca_turbo -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x660ff372 rtl92c_fill_h2c_cmd -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x74390ac8 rtl92c_bt_rssi_state_change -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x79dd79cf _rtl92c_phy_bb8192c_config_parafile -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x7e245918 rtl92c_phy_sw_chnl_callback -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x8f6b2799 rtl92c_dm_init_rate_adaptive_mask -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xafef7f73 rtl8192_phy_check_is_legal_rfpath -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xb38d74db rtl92c_phy_set_bw_mode -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xb4898771 rtl92c_phy_iq_calibrate -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xb4b7eead rtl92c_dm_init -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xbb5a631a rtl92c_phy_lc_calibrate -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xbf6a4bbc rtl92c_phy_rf_config -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xca7805fe rtl92c_phy_ap_calibrate -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xcaac9692 rtl92c_phy_set_bb_reg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xd3a90a8a rtl92c_phy_set_rfpath_switch -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xd6321410 rtl92c_download_fw -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xd986e2db rtl92c_phy_update_txpower_dbm -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xd9ca359b _rtl92c_phy_set_rf_sleep -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xdb5917d4 rtl92c_dm_write_dig -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xe35fcf13 rtl92c_dm_watchdog -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xf3225bf0 _rtl92c_phy_rf_serial_write -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xf56ec6b7 _rtl92c_phy_init_bb_rf_register_definition -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xfcc8107f _rtl92c_phy_fw_rf_serial_read -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x01683bea rtl_pci_probe -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x0e29a3f5 rtl_pci_suspend -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x6b081ed4 rtl_pci_resume -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0xa0986a3b rtl_pci_disconnect -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x112b2cdb rtl_usb_suspend -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x88ec6573 rtl_usb_resume -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x8b69b26f rtl_usb_disconnect -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0xc738b4c0 rtl_usb_probe -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0b038e24 channel5g_80m -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0d409c8c rtl_init_rfkill -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x142d8612 rtl_rfreg_delay -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x1b945315 rtl_addr_delay -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x30a956d7 rtl_query_rxpwrpercentage -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x36c94e71 rtl_mrate_idx_to_arfr_id -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x40c5b4e4 rtl_cmd_send_packet -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x4540185d rtl_cam_empty_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x45dab978 rtl_c2hcmd_enqueue -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x4cb3517b rtl_signal_scale_mapping -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x4dc9bdf4 rtl_ps_disable_nic -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x54824f58 channel5g -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x5bbba787 rtl_process_phyinfo -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x5d0cff43 efuse_shadow_read -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x61f72cab efuse_power_switch -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x626ec4f7 rtl_dm_diginit -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x72631358 rtl_send_smps_action -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x8ae0d3c3 rtl_ps_enable_nic -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x8ea60059 rtl_fw_cb -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x8f6c6dff rtl_cam_delete_one_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x9727c760 rtl_cam_del_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xb0231532 rtl_cam_add_one_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xb0f470a8 rtl_efuse_shadow_map_update -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xb1052531 rtlwifi_rate_mapping -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xb307f913 efuse_read_1byte -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xb4780aab rtl_cam_get_free_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xb9b0117e rtl_cam_reset_all_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xbaf0d4d0 efuse_one_byte_read -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc849e0ac rtl_get_tcb_desc -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xcf35d4d0 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 0xee9fa765 rtl_cam_mark_invalid -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf443b1cd rtl_collect_scan_list -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf5023bed rtl_phy_scan_operation_backup -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf7d8aa77 rtl_bb_delay -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xfc74b664 rtl_rx_ampdu_apply -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8723d 0x47b37eac rtw8723d_hw_spec -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8821c 0xda730921 rtw8821c_hw_spec -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8822b 0xac53041e rtw8822b_hw_spec -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8822c 0x43916f20 rtw8822c_hw_spec -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x0159793c __rtw_dbg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x01f50c1e rtw_phy_pwrtrack_need_lck -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x0517cc2b rtw_rx_fill_rx_status -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x085992de rtw_phy_get_tx_power_index -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x0bdb2ba5 rtw_dump_fw -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x12c01dde rtw_tx_write_data_h2c_get -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x133768b6 rtw_phy_config_swing_table -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x14b3cc4a rtw_parse_tbl_txpwr_lmt -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x1a28fa7e rtw_bf_remove_bfee_su -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x1a44d58c rtw_phy_read_rf -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x1cc06b56 rtw_read8_physical_efuse -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x1f4c71bd rtw_phy_cfg_mac -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x1fe338c3 rtw_set_channel_mac -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x26ab35fb rtw_phy_pwrtrack_need_iqk -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x2864830e rtw_phy_cfg_rf -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x2ee26c3b rtw_restore_reg -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 0x38d68795 rtw_fw_inform_rfk_status -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x407d1199 rtw_register_hw -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x4096a13d rtw_coex_read_indirect_reg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x440b7589 rtw_phy_rf_power_2_rssi -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x519c8ba9 rtw_rate_size -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x548f0010 rtw_fw_c2h_cmd_rx_irqsafe -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x58210e60 rtw_rate_section -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x5c247d3f rtw_core_init -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x5ce33646 rtw_phy_pwrtrack_thermal_changed -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x60f3dca0 check_hw_ready -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x632beb5a rtw_parse_tbl_bb_pg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x65bc4b7a rtw_tx_fill_tx_desc -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x6f3cc50f rtw_phy_set_tx_power_level -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x70608768 rtw_phy_load_tables -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x78b156de rtw_power_mode_change -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x8456205e rtw_unregister_hw -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x87727cf3 rtw_parse_tbl_phy_cond -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x8b8327ab rtw_coex_write_indirect_reg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x8c8cc663 rtw_phy_parsing_cfo -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x8f76ed4d rtw_bf_enable_bfee_su -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x9470ce04 rtw_core_deinit -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x9c06195a rtw_ops -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x9dee0c59 rtw_phy_cfg_agc -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x9ecc1ae2 rtw_phy_cfg_bb -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x9f919654 rtw_bf_remove_bfee_mu -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xa065c51d rtw_tx_report_enqueue -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xa387803c rtw_phy_write_rf_reg_mix -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xa40fc96c rtw_phy_write_rf_reg_sipi -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xaaecd46d rtw_rx_stats -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xb804521f rtw_phy_init -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xb9b71bb8 rtw_coex_write_scbd -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xbe3df95e rtw_bf_cfg_csi_rate -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xc5067f40 rtw_fw_c2h_cmd_isr -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xcb56d276 rtw_phy_pwrtrack_get_delta -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xd3719a16 rtw_tx_write_data_rsvd_page_get -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xd4fbb7d0 rtw_bf_phy_init -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xd7c3cc93 rtw_bf_set_gid_table -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xdef7ea5e rtw_phy_pwrtrack_get_pwridx -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xe1fb7484 rtw_dump_reg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xeada44ab rtw_phy_read_rf_sipi -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xebb9e527 rtw_bf_enable_bfee_mu -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xf4a81197 rtw_phy_pwrtrack_avg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xf79c230c rtw_fw_do_iqk -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xfee10261 rtw_chip_info_setup -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_pci 0x73ebf50a rtw_pci_probe -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_pci 0xaa85211c rtw_pci_shutdown -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_pci 0xe0600104 rtw_pci_remove -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_pci 0xe7659c9d rtw_pm_ops -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x0e93fc68 rtw89_core_napi_stop -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x159703c9 rtw89_core_napi_start -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x178cdd22 rtw8852a_chip_info -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x25788f33 rtw89_core_napi_deinit -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x31037642 rtw89_chip_info_setup -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x35881a4b rtw89_core_deinit -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x3ef35786 rtw89_phy_read_rf -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x44ba3792 __rtw89_debug -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x81eaa2f5 rtw89_ser_notify -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x8734bfda rtw89_core_napi_init -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x8b5c00d6 rtw89_mac_set_err_status -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xad739f73 rtw89_core_rx -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xb4b7285d rtw89_core_fill_txdesc -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xbabfefb2 rtw89_core_register -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xbe4776bf rtw89_core_unregister -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xc0401980 rtw89_mac_get_err_status -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xcd0b5e53 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 0xf9d54d6e rtw89_core_query_rxdesc -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xfbb33f95 rtw89_phy_write_rf -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xfbbe7ed9 rtw89_ops -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x84cebc36 rtw89_pm_ops -EXPORT_SYMBOL drivers/net/wireless/rsi/rsi_91x 0x44c17dcb rsi_config_wowlan -EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x38473104 wl1271_free_tx_id -EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x406fe618 wlcore_tx_complete -EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x7722f1e1 wl12xx_is_dummy_packet -EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0xcf9c58f6 wlcore_calc_packet_alignment -EXPORT_SYMBOL drivers/nfc/fdp/fdp 0xad1b1962 fdp_nci_probe -EXPORT_SYMBOL drivers/nfc/fdp/fdp 0xcec6670c fdp_nci_remove -EXPORT_SYMBOL drivers/nfc/microread/microread 0x2b2d0d7d microread_remove -EXPORT_SYMBOL drivers/nfc/microread/microread 0xeb8ae582 microread_probe -EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0x4d63d5ac nxp_nci_probe -EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0xe04cd100 nxp_nci_fw_recv_frame -EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0xff0087b7 nxp_nci_remove -EXPORT_SYMBOL drivers/nfc/pn533/pn533 0x2d592e8e pn533_recv_frame -EXPORT_SYMBOL drivers/nfc/pn544/pn544 0x59addbf9 pn544_hci_remove -EXPORT_SYMBOL drivers/nfc/pn544/pn544 0xc61a34e2 pn544_hci_probe -EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x1b68447f s3fwrn5_remove -EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x774203fc s3fwrn5_phy_set_wake -EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x83e3d064 s3fwrn5_recv_frame -EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0xc3164e88 s3fwrn5_probe -EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0xed58d008 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 0x53bb1241 ndlc_remove -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x72c71ed9 st_nci_se_init -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x8e330bd5 st_nci_se_io -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xa58f1d38 st_nci_se_deinit -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xabaca127 ndlc_open -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xae02c55e ndlc_recv -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xd3466152 ndlc_probe -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xdaf3b6ca st_nci_vendor_cmds_init -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xde205280 ndlc_send -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xe6ea26a4 ndlc_close -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x00dab17b st21nfca_hci_se_io -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x2cacd152 st21nfca_se_deinit -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x3f907b71 st21nfca_hci_discover_se -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x3f9b0c4e st21nfca_hci_remove -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x46947558 st21nfca_apdu_reader_event_received -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x5635a141 st21nfca_im_send_dep_req -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x5c269942 st21nfca_dep_init -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x5d05aae0 st21nfca_hci_disable_se -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x62bd8ce9 st21nfca_vendor_cmds_init -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x664a0f02 st21nfca_im_send_atr_req -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x9b7778e1 st21nfca_hci_probe -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xc3484c32 st21nfca_se_init -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xcb3b2bb5 st21nfca_hci_loopback_event_received -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xcb97ef60 st21nfca_connectivity_event_received -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xd14ffede st21nfca_hci_enable_se -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xd6fafadd st21nfca_tm_send_dep_res -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xd6ff881c st21nfca_dep_event_received -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xf52a1191 st21nfca_dep_deinit -EXPORT_SYMBOL drivers/ntb/ntb 0x049460ab ntb_db_event -EXPORT_SYMBOL drivers/ntb/ntb 0x10de358d ntb_msg_event -EXPORT_SYMBOL drivers/ntb/ntb 0x17df4a33 ntb_clear_ctx -EXPORT_SYMBOL drivers/ntb/ntb 0x1e8a3ba8 ntb_msi_peer_addr -EXPORT_SYMBOL drivers/ntb/ntb 0x30676587 ntbm_msi_request_threaded_irq -EXPORT_SYMBOL drivers/ntb/ntb 0x3411c48d ntb_default_peer_port_idx -EXPORT_SYMBOL drivers/ntb/ntb 0x602b9848 ntb_link_event -EXPORT_SYMBOL drivers/ntb/ntb 0x6dcbf523 ntb_set_ctx -EXPORT_SYMBOL drivers/ntb/ntb 0x702ccb99 ntb_default_peer_port_number -EXPORT_SYMBOL drivers/ntb/ntb 0x72a61af2 ntb_unregister_client -EXPORT_SYMBOL drivers/ntb/ntb 0x7c2a84c7 ntb_unregister_device -EXPORT_SYMBOL drivers/ntb/ntb 0x8a89c8d5 ntb_default_peer_port_count -EXPORT_SYMBOL drivers/ntb/ntb 0xa79ec819 ntb_register_device -EXPORT_SYMBOL drivers/ntb/ntb 0xb2542ce8 ntb_default_port_number -EXPORT_SYMBOL drivers/ntb/ntb 0xcc783222 ntb_msi_init -EXPORT_SYMBOL drivers/ntb/ntb 0xcda268ec ntb_msi_clear_mws -EXPORT_SYMBOL drivers/ntb/ntb 0xda9ed392 ntb_msi_setup_mws -EXPORT_SYMBOL drivers/ntb/ntb 0xdf5cddf1 __ntb_register_client -EXPORT_SYMBOL drivers/ntb/ntb 0xe68a5af5 ntbm_msi_free_irq -EXPORT_SYMBOL drivers/ntb/ntb 0xe90042dd ntb_msi_peer_trigger -EXPORT_SYMBOL drivers/nvdimm/nd_btt 0x135439ee nvdimm_namespace_attach_btt -EXPORT_SYMBOL drivers/nvdimm/nd_btt 0x9cd435c1 nvdimm_namespace_detach_btt -EXPORT_SYMBOL drivers/parport/parport 0x0031e9e8 parport_register_port -EXPORT_SYMBOL drivers/parport/parport 0x1144708e parport_register_dev_model -EXPORT_SYMBOL drivers/parport/parport 0x22a3f3ae parport_write -EXPORT_SYMBOL drivers/parport/parport 0x3238fed1 parport_ieee1284_read_nibble -EXPORT_SYMBOL drivers/parport/parport 0x32395544 parport_release -EXPORT_SYMBOL drivers/parport/parport 0x354e30e9 parport_put_port -EXPORT_SYMBOL drivers/parport/parport 0x3ac4a051 parport_set_timeout -EXPORT_SYMBOL drivers/parport/parport 0x420747ab parport_wait_peripheral -EXPORT_SYMBOL drivers/parport/parport 0x4d2a941b parport_ieee1284_interrupt -EXPORT_SYMBOL drivers/parport/parport 0x5e3a3912 parport_irq_handler -EXPORT_SYMBOL drivers/parport/parport 0x5f85fe17 parport_ieee1284_ecp_read_data -EXPORT_SYMBOL drivers/parport/parport 0x6159dc6c parport_negotiate -EXPORT_SYMBOL drivers/parport/parport 0x6a9033e5 parport_ieee1284_epp_write_data -EXPORT_SYMBOL drivers/parport/parport 0x6e381248 parport_read -EXPORT_SYMBOL drivers/parport/parport 0x7728d3d9 parport_ieee1284_ecp_write_data -EXPORT_SYMBOL drivers/parport/parport 0x77e79bc2 parport_ieee1284_read_byte -EXPORT_SYMBOL drivers/parport/parport 0x7960bd08 parport_claim -EXPORT_SYMBOL drivers/parport/parport 0x8b5231e2 __parport_register_driver -EXPORT_SYMBOL drivers/parport/parport 0x8da5077e parport_get_port -EXPORT_SYMBOL drivers/parport/parport 0xb56c8999 parport_find_base -EXPORT_SYMBOL drivers/parport/parport 0xb80b1fb6 parport_wait_event -EXPORT_SYMBOL drivers/parport/parport 0xb95565fa parport_ieee1284_write_compat -EXPORT_SYMBOL drivers/parport/parport 0xbee97b18 parport_unregister_device -EXPORT_SYMBOL drivers/parport/parport 0xc0abe21a parport_del_port -EXPORT_SYMBOL drivers/parport/parport 0xcd32ffea parport_unregister_driver -EXPORT_SYMBOL drivers/parport/parport 0xd4434188 parport_announce_port -EXPORT_SYMBOL drivers/parport/parport 0xd8a4af4b parport_ieee1284_epp_read_addr -EXPORT_SYMBOL drivers/parport/parport 0xe5c14223 parport_claim_or_block -EXPORT_SYMBOL drivers/parport/parport 0xe745cc0c parport_ieee1284_epp_read_data -EXPORT_SYMBOL drivers/parport/parport 0xe7ab805c parport_ieee1284_epp_write_addr -EXPORT_SYMBOL drivers/parport/parport 0xee8e2af7 parport_remove_port -EXPORT_SYMBOL drivers/parport/parport 0xf3ce1402 parport_find_number -EXPORT_SYMBOL drivers/parport/parport 0xfa136060 parport_ieee1284_ecp_write_addr -EXPORT_SYMBOL drivers/pci/controller/pcie-iproc 0x0f2752ad iproc_pcie_remove -EXPORT_SYMBOL drivers/pci/controller/pcie-iproc 0x907d4471 iproc_pcie_setup -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x0543de01 pcmcia_unregister_socket -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x061efa14 pcmcia_get_socket_by_nr -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x111b0f9a pcmcia_get_socket -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x212db8d2 pcmcia_socket_list -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x5a179e23 pcmcia_parse_uevents -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x5b0c735f pcmcia_socket_class -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x6fb99e1a pcmcia_put_socket -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x75089a0b pccard_register_pcmcia -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x7af62941 pcmcia_register_socket -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x82f2352e pcmcia_reset_card -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xc6a73731 pcmcia_parse_events -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_rsrc 0xde3549cd pccard_static_ops -EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0x1b40f2e5 cros_ec_unregister -EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0x4b741e18 cros_ec_resume -EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0x56f66303 cros_ec_register -EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0xd36ab0b6 cros_ec_suspend -EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0xf25aacf5 cros_ec_irq_thread -EXPORT_SYMBOL drivers/regulator/rohm-regulator 0x4a6087d9 rohm_regulator_set_dvs_levels -EXPORT_SYMBOL drivers/rpmsg/qcom_smd 0x0b3f38d1 qcom_smd_register_edge -EXPORT_SYMBOL drivers/rpmsg/qcom_smd 0x3330a1c8 qcom_smd_unregister_edge -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x027ac591 rpmsg_register_device -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x054dfd8c rpmsg_trysend_offchannel -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x05e6c63c rpmsg_unregister_device -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x11ec8dd8 rpmsg_trysend -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x31b07fe8 rpmsg_release_channel -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x3fc55382 rpmsg_create_ept -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x411379ba rpmsg_find_device -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x5ce6a14d rpmsg_trysendto -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x740bd46e unregister_rpmsg_driver -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x9978ec80 rpmsg_sendto -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xadf0a391 rpmsg_send_offchannel -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xb4587723 rpmsg_destroy_ept -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xc7d142cd rpmsg_create_channel -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xcb18a54b __register_rpmsg_driver -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xdc4268af rpmsg_send -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xe30c23d0 rpmsg_poll -EXPORT_SYMBOL drivers/rpmsg/rpmsg_ns 0x59faa280 rpmsg_ns_register_device -EXPORT_SYMBOL drivers/scsi/esp_scsi 0x3dcfa5b3 scsi_esp_cmd -EXPORT_SYMBOL drivers/scsi/esp_scsi 0x4a29ab38 scsi_esp_intr -EXPORT_SYMBOL drivers/scsi/esp_scsi 0x52a2496c scsi_esp_unregister -EXPORT_SYMBOL drivers/scsi/esp_scsi 0x7e4912e1 scsi_esp_template -EXPORT_SYMBOL drivers/scsi/esp_scsi 0xc72f54a7 scsi_esp_register -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x32626bfb fcoe_ctlr_recv -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x342f912b fcoe_ctlr_els_send -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x43f6820e fcoe_ctlr_link_down -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x50d02642 fcoe_ctlr_init -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x852ecf94 fcoe_ctlr_set_fip_mode -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xa3a13d82 fcoe_ctlr_destroy -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xa8a2a1c8 fcoe_ctlr_link_up -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xac532159 fcoe_fcf_get_selected -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xb0f9013f fcoe_transport_detach -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xd19f3577 fcoe_ctlr_recv_flogi -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xf055018d fcoe_transport_attach -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x068aa592 fc_fcp_init -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x09e8f777 fc_seq_assign -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x0a21fb39 fc_exch_mgr_free -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x0a94c1f2 fc_get_host_stats -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x1213601f fc_fabric_logoff -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x13eeff69 fc_seq_set_resp -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x1432de85 fc_exch_seq_send -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x14f863b7 fc_disc_init -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x17b4ef47 fc_fc4_register_provider -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x18563055 fc_get_host_speed -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 0x23602202 fc_get_host_port_state -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x288b654a fc_lport_init -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x2af5b5ef fc_linkup -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x3261bf43 fc_exch_update_stats -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x3b5cbb13 fc_lport_bsg_request -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x44d98877 fc_fc4_deregister_provider -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x48c4881c fc_eh_host_reset -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x4ecdc92e fc_lport_reset -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x52eec61e fc_exch_mgr_alloc -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x5820ad30 fc_rport_logoff -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x58835462 fc_exch_mgr_reset -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x6573e522 fc_fabric_login -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x683eca2b fc_set_mfs -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x69bcbafd fc_rport_create -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x6e57d29c fc_eh_abort -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7318b896 fc_vport_setlink -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x742d611a fc_rport_login -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x76035711 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 0x811811e0 fc_exch_done -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8b9a1236 fc_rport_recv_req -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8d824685 fc_exch_recv -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x97b79120 fc_frame_alloc_fill -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9bd1dfd0 fc_lport_recv -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9bdd3993 fc_vport_id_lookup -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 0xa6ca323c fc_lport_set_local_id -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xaa1503ee fc_exch_init -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xaaf2be3f fc_slave_alloc -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xab747bde fc_exch_mgr_list_clone -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xad43a900 fc_disc_config -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xaea619f3 fc_seq_send -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xaf296598 fc_lport_config -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb0757ef2 fc_queuecommand -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb0ddd5a1 fc_rport_flush_queue -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb111779f fc_fcp_destroy -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb6b25635 fc_eh_device_reset -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb7838e92 fc_elsct_send -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xbb9733a3 fc_set_rport_loss_tmo -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xca81018f _fc_frame_alloc -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xcb9253f9 fc_elsct_init -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xce60cb17 fc_lport_iterate -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd67a18b9 fc_linkdown -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xdece478d fc_lport_destroy -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 0xe74770e3 libfc_vport_create -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf2ef259b fc_lport_flogi_resp -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf503b5ba fc_exch_mgr_add -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xfa4667d1 fc_seq_release -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xfbd003d7 fc_rport_lookup -EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x4131f3e4 sas_resume_ha -EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x4a8e3d34 try_test_sas_gpio_gp_bit -EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x5f34a558 sas_suspend_ha -EXPORT_SYMBOL drivers/scsi/libsas/libsas 0xe4b04a91 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 0xc171ad1e mraid_mm_register_adp -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x1201e195 qlt_xmit_response -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x20132a43 qlt_stop_phase1 -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x2772b5a4 qlt_abort_cmd -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x43914288 qlt_lport_deregister -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x5bbfe324 qlt_enable_vha -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x619b8d0d qlt_stop_phase2 -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x75476068 qlt_lport_register -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x7b59b839 qlt_xmit_tm_rsp -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xbec4454f qlt_free_cmd -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xdc297dc8 qlt_unreg_sess -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xe0790185 qlt_rdy_to_xfer -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xe67397aa qlt_free_mcmd -EXPORT_SYMBOL drivers/scsi/raid_class 0xd13ec813 raid_class_attach -EXPORT_SYMBOL drivers/scsi/raid_class 0xffb2e7fd raid_class_release -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x20afbf5f fc_find_rport_by_wwpn -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x30d0d59e fc_attach_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x375f8bbd fc_get_event_number -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x3910f757 fc_remote_port_add -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x488ed4ca fc_host_post_vendor_event -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x48ea988d fc_remote_port_delete -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x5354c568 fc_vport_create -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x62f2edcd fc_eh_timed_out -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x6864597f fc_block_rport -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x6b0f157d fc_vport_terminate -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x78bfae2b scsi_is_fc_rport -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x850d2d39 fc_remote_port_rolechg -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x888ada02 fc_remove_host -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xc2939b8e fc_host_fpin_rcv -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xd0496b2f fc_block_scsi_eh -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xdd040a5d fc_host_post_fc_event -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xe2e67d6b fc_host_post_event -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xf47faca0 fc_release_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x0d78aa68 sas_port_free -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x0ec29d90 sas_port_delete_phy -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x15be270c scsi_is_sas_rphy -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x1714904c sas_rphy_unlink -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x17bf1f48 sas_get_address -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x20cd6b14 sas_remove_host -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x27c59bf7 sas_port_delete -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x3f4ec9cb sas_port_add -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x415a08ad sas_port_get_phy -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x47c89ee2 sas_read_port_mode_page -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x496188c1 sas_expander_alloc -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x4d2c6cc6 scsi_is_sas_phy -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x667b61a9 sas_phy_delete -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x670a345b sas_rphy_free -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x6b296a21 sas_phy_alloc -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x867ed218 scsi_is_sas_port -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x87cea2ed sas_port_alloc_num -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x8885e576 sas_rphy_add -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x98fba2f4 sas_phy_add -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x9a3b7838 sas_remove_children -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xb1eeb847 sas_attach_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xb7909868 sas_rphy_remove -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xcfc8624a sas_port_alloc -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xee0c2a82 sas_release_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xef75e647 sas_port_add_phy -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xef81c90c sas_end_device_alloc -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xf021f5aa sas_phy_free -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xfb2e18a8 sas_port_mark_backlink -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xff1bccaf sas_rphy_delete -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x12e2c51b spi_schedule_dv_device -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x184a4f9f spi_release_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x3686ea09 spi_print_msg -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x56019bb9 spi_attach_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x6b2f6b38 spi_display_xfer_agreement -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xabcccc40 spi_dv_device -EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x405b6e05 srp_parse_tmo -EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x5eca27ec srp_rport_put -EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x700eb611 srp_timed_out -EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0xa04b6ae9 srp_rport_get -EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0xa8e5ea74 srp_reconnect_rport -EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0xac0ad447 srp_start_tl_fail_timers -EXPORT_SYMBOL drivers/scsi/ufs/tc-dwc-g210 0x9887add1 tc_dwc_g210_config_40_bit -EXPORT_SYMBOL drivers/scsi/ufs/tc-dwc-g210 0xa0b5aa49 tc_dwc_g210_config_20_bit -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0x07bb4f8b ufshcd_get_local_unipro_ver -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0x32e1e94b ufshcd_shutdown -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0x7124b05d ufshcd_runtime_resume -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0x75afee4c ufshcd_system_resume -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0x82494e93 ufshcd_alloc_host -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0x852e9135 ufshcd_map_desc_id_to_length -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0x9c4f7e40 ufshcd_runtime_suspend -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0xf6fbd5ec ufshcd_system_suspend -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-dwc 0x9cfa955e ufshcd_dwc_dme_set_attrs -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-dwc 0xc084d1e9 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 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 0x4c0da7da cmdq_dev_get_client_reg -EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x4dd68ea8 cmdq_pkt_wfe -EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x5bcc91ec cmdq_pkt_flush_async -EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x62622035 cmdq_pkt_write_s -EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x6482132a cmdq_pkt_poll_mask -EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x744fc74c 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 0xacfb385f cmdq_mbox_destroy -EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0xee318f69 cmdq_mbox_create -EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0xf79754da cmdq_pkt_write_s_mask -EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0xf80937c2 cmdq_pkt_finalize -EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0xfb55916e cmdq_pkt_write_mask -EXPORT_SYMBOL drivers/soc/qcom/ocmem 0xa9dec071 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 0x1876f2fd geni_se_clk_tbl_get -EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x19333c46 geni_icc_enable -EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x3476565e geni_se_clk_freq_match -EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x499f05e4 geni_icc_set_tag -EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x6fb171f0 geni_se_init -EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x8d92d122 geni_se_config_packing -EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x8ef55310 geni_icc_get -EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x90b14706 geni_icc_disable -EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0xad921d86 geni_se_resources_off -EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0xbd46c349 geni_se_rx_dma_unprep -EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0xd947dc55 geni_se_resources_on -EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0xdea2fb12 geni_se_get_qup_hw_version -EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0xe8676928 geni_se_rx_dma_prep -EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0xf16d96f4 geni_se_tx_dma_unprep -EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0xf46771ff geni_se_select_mode -EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0xf9aa1431 geni_se_tx_dma_prep -EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0xfd77ad41 geni_icc_set_bw -EXPORT_SYMBOL drivers/soc/qcom/qcom_aoss 0x2333aed6 qmp_put -EXPORT_SYMBOL drivers/soc/qcom/qcom_aoss 0x329f6001 qmp_get -EXPORT_SYMBOL drivers/soc/qcom/qcom_aoss 0x9e2aa1df qmp_send -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x0ef12cc9 qmi_encode_message -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x0fd6e36f qmi_handle_release -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x14c4c156 qmi_handle_init -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x21ce5888 qmi_response_type_v01_ei -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x383e2a90 qmi_send_response -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x4593cf10 qmi_add_lookup -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x4f2c96d1 qmi_send_indication -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x68772745 qmi_decode_message -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x990717a3 qmi_txn_wait -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x9b9e3b3a qmi_txn_init -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xa1a2eb37 qmi_send_request -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xa272590f qmi_add_server -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xdc58d092 qmi_txn_cancel -EXPORT_SYMBOL drivers/soc/qcom/smd-rpm 0x3abef80b qcom_rpm_smd_write -EXPORT_SYMBOL drivers/soc/qcom/smem 0x34b57571 qcom_smem_alloc -EXPORT_SYMBOL drivers/soc/qcom/smem 0x5a710273 qcom_smem_get_free_space -EXPORT_SYMBOL drivers/soc/qcom/smem 0x9979b76e qcom_smem_virt_to_phys -EXPORT_SYMBOL drivers/soc/qcom/smem 0xeeffa750 qcom_smem_get -EXPORT_SYMBOL drivers/soc/qcom/wcnss_ctrl 0x95b148da qcom_wcnss_open_channel -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x02a3d1e3 sdw_bus_clk_stop -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x0e8ddaf1 sdw_bread_no_pm_unlocked -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x1547b355 sdw_nread -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 0x22a72a60 sdw_stream_remove_master -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x342eee4c sdw_handle_slave_status -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x37203e83 sdw_write -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x3720e76c sdw_extract_slave_id -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x378216a7 sdw_update -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x3b0a8582 sdw_startup_stream -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x42c91db2 sdw_clear_slave_status -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x4cde88bf sdw_disable_stream -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x5066d5f0 sdw_master_read_prop -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x51e22eb6 sdw_bus_exit_clk_stop -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x54f2294f sdw_compare_devid -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x60e31fbb sdw_find_col_index -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x6e86fd5d sdw_write_no_pm -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x6f95b16b sdw_shutdown_stream -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x71891d59 sdw_deprepare_stream -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x98c29b42 sdw_bwrite_no_pm_unlocked -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x9e122d79 sdw_alloc_stream -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xa1dcc2df sdw_nwrite -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xae9ee9fc sdw_stream_add_slave -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xb4edad9e sdw_read_no_pm -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xb9e93d31 sdw_stream_add_master -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xba54b904 sdw_cols -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xbbec2c2e sdw_enable_stream -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xbe71d4d8 sdw_bus_master_delete -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xc74f8b51 sdw_read -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xd324fcb8 sdw_slave_read_prop -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xd7ad8205 sdw_bus_prep_clk_stop -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xda5bce09 sdw_release_stream -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xdb08e260 sdw_stream_remove_slave -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xdc47b28f sdw_slave_add -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xe9235146 sdw_bus_master_add -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xf53ba0b8 sdw_rows -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xfdd8d0f3 sdw_update_no_pm -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x1da052ec cdns_bus_conf -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x20eaff68 cdns_xfer_msg_defer -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x33cb7e7c cdns_set_sdw_stream -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x34712074 sdw_cdns_irq -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x4795736f sdw_cdns_clock_restart -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x58bce607 sdw_cdns_init -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x6281fbe0 sdw_cdns_is_clock_stop -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x7c0652f1 sdw_cdns_pdi_init -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x8f34e24d sdw_cdns_config_stream -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x987272e4 sdw_cdns_check_self_clearing_bits -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xbfe2f3ab cdns_xfer_msg -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xca58fb4f sdw_cdns_clock_stop -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xd7cf7142 sdw_cdns_enable_interrupt -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xddf4d705 sdw_cdns_probe -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xe57be779 sdw_cdns_exit_reset -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xedf9760f cdns_reset_page_addr -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xf87565dc sdw_cdns_alloc_pdi -EXPORT_SYMBOL drivers/soundwire/soundwire-generic-allocation 0xe05a259d sdw_compute_params -EXPORT_SYMBOL drivers/ssb/ssb 0x0057d5c7 ssb_pmu_set_ldo_voltage -EXPORT_SYMBOL drivers/ssb/ssb 0x046ee70a ssb_bus_unregister -EXPORT_SYMBOL drivers/ssb/ssb 0x1048a7af ssb_device_enable -EXPORT_SYMBOL drivers/ssb/ssb 0x110efd45 ssb_clockspeed -EXPORT_SYMBOL drivers/ssb/ssb 0x1ed9193f ssb_driver_unregister -EXPORT_SYMBOL drivers/ssb/ssb 0x3eb417d3 ssb_device_is_enabled -EXPORT_SYMBOL drivers/ssb/ssb 0x41433347 ssb_bus_powerup -EXPORT_SYMBOL drivers/ssb/ssb 0x6c9e8b91 __ssb_driver_register -EXPORT_SYMBOL drivers/ssb/ssb 0x79ae63ae ssb_pmu_set_ldo_paref -EXPORT_SYMBOL drivers/ssb/ssb 0x8a293162 ssb_bus_resume -EXPORT_SYMBOL drivers/ssb/ssb 0x909a31aa ssb_bus_may_powerdown -EXPORT_SYMBOL drivers/ssb/ssb 0xa29febc0 ssb_bus_suspend -EXPORT_SYMBOL drivers/ssb/ssb 0xb5fbebcf ssb_device_disable -EXPORT_SYMBOL drivers/ssb/ssb 0xba23bb77 ssb_pcihost_register -EXPORT_SYMBOL drivers/ssb/ssb 0xcb17f1cb ssb_admatch_base -EXPORT_SYMBOL drivers/ssb/ssb 0xd0cf749b ssb_dma_translation -EXPORT_SYMBOL drivers/ssb/ssb 0xd15280a0 ssb_bus_sdiobus_register -EXPORT_SYMBOL drivers/ssb/ssb 0xd26d62b9 ssb_pcicore_dev_irqvecs_enable -EXPORT_SYMBOL drivers/ssb/ssb 0xddb36762 ssb_chipco_gpio_control -EXPORT_SYMBOL drivers/ssb/ssb 0xdfc7c6ef ssb_admatch_size -EXPORT_SYMBOL drivers/ssb/ssb 0xe8b4cd66 ssb_commit_settings -EXPORT_SYMBOL drivers/ssb/ssb 0xf15d7357 ssb_set_devtypedata -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x0093dae3 fbtft_write_reg8_bus8 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x06c580b0 fbtft_probe_common -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x0defc4df fbtft_init_display -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x1852ff02 fbtft_remove_common -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x19d27738 fbtft_dbg_hex -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x35de5ab6 fbtft_write_gpio16_wr_latched -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x3aeeeb6c fbtft_write_vmem16_bus16 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x5c8b49a5 fbtft_write_vmem16_bus9 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x6700b9bf fbtft_write_reg16_bus8 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x6c68150b fbtft_write_reg16_bus16 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x747959ee fbtft_unregister_framebuffer -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x77125c0b fbtft_unregister_backlight -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x8b85a779 fbtft_write_gpio8_wr -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xa2397f79 fbtft_register_framebuffer -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xac51c886 fbtft_framebuffer_alloc -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xae1a13dc fbtft_read_spi -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xb414a390 fbtft_write_vmem16_bus8 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xbef14071 fbtft_framebuffer_release -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xcd2f8f68 fbtft_write_spi -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xd38574ba fbtft_write_spi_emulate_9 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xe8284ee9 fbtft_write_reg8_bus9 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xf0cabbc9 fbtft_write_vmem8_bus8 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xf15486ff fbtft_write_gpio16_wr -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xf7fa4171 fbtft_write_buf_dc -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xfa76e11d fbtft_register_backlight -EXPORT_SYMBOL drivers/staging/greybus/gb-audio-codec 0xc3dfaa9d gbaudio_register_module -EXPORT_SYMBOL drivers/staging/greybus/gb-audio-codec 0xe4f56ba2 gbaudio_unregister_module -EXPORT_SYMBOL drivers/staging/greybus/gb-audio-codec 0xf4307f35 gbaudio_module_update -EXPORT_SYMBOL drivers/staging/iio/addac/adt7316 0xb8e7e8b9 adt7316_probe -EXPORT_SYMBOL drivers/staging/iio/meter/ade7854 0x4a9d347e ade7854_probe -EXPORT_SYMBOL drivers/staging/media/av7110/sp8870 0x2a9e3330 sp8870_attach -EXPORT_SYMBOL drivers/staging/media/zoran/videocodec 0x56035495 videocodec_detach -EXPORT_SYMBOL drivers/staging/media/zoran/videocodec 0x702f7d78 videocodec_attach -EXPORT_SYMBOL drivers/staging/media/zoran/videocodec 0x873aa99e videocodec_unregister -EXPORT_SYMBOL drivers/staging/media/zoran/videocodec 0xa8c6feb9 videocodec_register -EXPORT_SYMBOL drivers/staging/nvec/nvec 0x49dd5c64 nvec_write_async -EXPORT_SYMBOL drivers/staging/nvec/nvec 0x50287ac8 nvec_write_sync -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x0351e150 rtllib_wx_set_power -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x03ee6c45 rtllib_wx_set_encode -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x0d55951c rtllib_stop_scan_syncro -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x0fe6ef29 notify_wx_assoc_event -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x18e0e40b rtllib_wx_get_mode -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x19f64eac rtllib_stop_send_beacons -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x1b6eeaeb rtllib_ps_tx_ack -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x211f48d7 rtllib_wx_set_freq -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x22166084 rt_global_debug_component -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x28fa79cb rtllib_softmac_start_protocol -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x2edcffa1 dot11d_channel_map -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x32800515 rtllib_sta_ps_send_null_frame -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x399c273f rtllib_wx_set_essid -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x3aa5a586 rtllib_softmac_stop_protocol -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x3f615793 rtllib_wx_get_name -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x437d0260 rtllib_wx_get_scan -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x495e5496 rtllib_wx_set_rate -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x4ba621a3 rtllib_wx_set_rts -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x5484cceb rtllib_EnableIntelPromiscuousMode -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x5778b939 rtllib_wx_get_wap -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x579ae9ef rtllib_wx_set_rawtx -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x58698c4a rtllib_wx_set_gen_ie -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x592c9ffd rtllib_wx_get_encode -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x73652907 rtllib_legal_channel -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x7443553c HT_update_self_and_peer_setting -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x7cd7971b RemovePeerTS -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x7ed67c49 dot11d_init -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x887ea766 rtllib_wx_set_wap -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x944a0698 rtllib_wx_set_encode_ext -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x94a03ffc rtllib_wx_get_rts -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x954f6a7e alloc_rtllib -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xa5d8723f rtllib_reset_queue -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xa71dc4b6 rtllib_MgntDisconnect -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xa7f38c55 rtllib_wx_set_mlme -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xaa1816ef rtllib_get_beacon -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xad1e1945 rtllib_start_send_beacons -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xb2551eed rtllib_wx_get_rate -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xb487919d rtllib_rx -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xb876481b rtllib_wx_set_scan -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xbc911b22 rtllib_act_scanning -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xbe2b72fa rtllib_wx_set_auth -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xbfaa5f7d rtllib_start_scan_syncro -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xc0794d7c free_rtllib -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xc47d42ae rtllib_wx_get_power -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xc4b67544 rtllib_xmit -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xd0a15796 rtllib_stop_scan -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xda1402ac rtllib_wx_get_freq -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xdf78f620 rtllib_wlan_frequencies -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xe3ebae70 rtllib_wx_set_mode -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xede9808b rtllib_DisableIntelPromiscuousMode -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xfeb084c1 rtllib_wx_get_essid -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x00da2899 ieee80211_wake_queue_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x0bf3a5fa ieee80211_wx_get_mode_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x16d45ab6 ieee80211_wx_set_auth_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x189371ee ieee80211_wx_set_power_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x1a3cd608 dot11d_update_country_ie -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x1bbf71f4 ieee80211_wx_set_essid_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x1d66a0ff ieee80211_is_shortslot_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x1fa7805e ieee80211_stop_scan_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x206731a8 ieee80211_wx_get_rts_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x239e463c ieee80211_wx_get_encode_ext_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x2556e2e7 ieee80211_wx_set_mlme_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x2a41e639 is_legal_channel -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x2b4dee4e ieee80211_ps_tx_ack_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x2bf7aafe ieee80211_txb_free_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x3400f280 SendDisassociation_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x372f5f1c ieee80211_softmac_start_protocol_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x378d2276 ieee80211_softmac_scan_syncro_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x3e3bbca6 ieee80211_wx_get_name_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x4127d383 to_legal_channel -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x48914aad ieee80211_wx_get_rate_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x4a44457d ieee80211_wpa_supplicant_ioctl_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x4a86689a dot11d_get_max_tx_pwr_in_dbm -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x4dec99eb ieee80211_stop_send_beacons_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x5954eaeb rtl8192u_dot11d_init -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x60ac6903 ieee80211_wx_set_gen_ie_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x61f7b9a9 ieee80211_softmac_stop_protocol_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x6a3a00e1 ieee80211_wx_get_wap_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x780d6f60 ieee80211_wx_set_freq_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7f02491e ieee80211_wx_get_scan_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7fdfcb52 ieee80211_start_scan_syncro_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x80c2d7f0 ieee80211_wx_set_encode_ext_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x8efca549 ieee80211_get_beacon_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x933c28d8 ieee80211_wx_set_rawtx_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x95017b37 ieee80211_softmac_xmit_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x9987ef18 ieee80211_wx_get_power_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x9aabef02 ieee80211_wx_get_essid_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x9eb69e46 ieee80211_reset_queue_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa17b9e2e ieee80211_wx_set_mode_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa1a629ab HTUpdateSelfAndPeerSetting -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa1e62c8b ieee80211_wx_set_encode_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa210bac6 ieee80211_wx_set_rts_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa4188870 ieee80211_stop_queue_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xaeda1a3c dot11d_scan_complete -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb1e8efc4 notify_wx_assoc_event_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc370a43e ieee80211_wlan_frequencies_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc3917da7 dot11d_reset -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xcd7a71a2 ieee80211_rx_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd28554b4 ieee80211_wx_get_freq_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd4e5ca93 ieee80211_start_send_beacons_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd58a72ca ieee80211_wx_set_scan_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd6587efc ieee80211_disassociate_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xde4d7e94 ieee80211_rx_mgt_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe2197179 ieee80211_wx_set_rate_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe84d8b8f ieee80211_wx_set_wap_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xecc5fb1b ieee80211_is_54g_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf5b96f3c ieee80211_wx_get_encode_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 0x304c7884 vchiq_connect -EXPORT_SYMBOL drivers/staging/vc04_services/vchiq 0x327c3232 vchiq_msg_hold -EXPORT_SYMBOL drivers/staging/vc04_services/vchiq 0x3ebf54ca vchiq_initialise -EXPORT_SYMBOL drivers/staging/vc04_services/vchiq 0x418f1bbe vchiq_shutdown -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 0xd42b273a vchiq_open_service -EXPORT_SYMBOL drivers/staging/vc04_services/vchiq 0xe95e0941 vchiq_close_service -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x04264cd6 iscsit_cause_connection_reinstatement -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x04e4e74a iscsit_handle_logout_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x0f52ee2a iscsit_set_unsolicited_dataout -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x1ce7bc03 iscsit_build_rsp_pdu -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x2f6a131c iscsit_setup_scsi_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x329ecbd0 iscsit_build_task_mgt_rsp -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x3746f54a iscsit_check_dataout_hdr -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x38c20167 iscsit_tmr_post_handler -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x3f38761f iscsit_stop_dataout_timer -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x4304950d iscsit_sequence_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x4b2f3aa4 iscsit_queue_rsp -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x5a024c5d iscsit_setup_nop_out -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x5b7f0bef iscsit_reject_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x5dd99945 iscsit_unregister_transport -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x603e6263 iscsit_build_reject -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x61c46091 iscsit_build_r2ts_for_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x65e1785c iscsit_process_scsi_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x6c634009 iscsit_find_cmd_from_itt_or_dump -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x7baed3a8 iscsit_response_queue -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x7e2bcfe1 iscsit_release_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x802acbae iscsit_immediate_queue -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x83020752 iscsit_handle_snack -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x87c61568 iscsit_add_reject -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x89874b47 iscsit_find_cmd_from_itt -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x8b643926 iscsit_process_text_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x90840278 iscsit_logout_post_handler -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xa3f3331f iscsit_setup_text_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xa44cf6bc iscsit_build_nopin_rsp -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xab4a8fe9 iscsit_aborted_task -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xabe42b3f iscsit_register_transport -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xb581a567 iscsi_change_param_sprintf -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xb5d005fe iscsit_increment_maxcmdsn -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xb8a8065d iscsit_get_datain_values -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xba1ddc89 iscsit_add_cmd_to_immediate_queue -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xbc79a88c iscsit_build_logout_rsp -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xcbbf368e iscsi_target_check_login_request -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xcd30f6ac iscsit_allocate_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xcda6e57c iscsit_build_text_rsp -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xd6ccfd60 iscsit_handle_task_mgt_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xd882eb19 iscsit_free_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xdbad6125 __iscsit_check_dataout_hdr -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xe3a7b6c7 iscsit_process_nop_out -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xe8f4e8b1 iscsit_check_dataout_payload -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xee4c57fd iscsit_build_datain_pdu -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xf34332f0 iscsi_find_param_from_key -EXPORT_SYMBOL drivers/target/target_core_mod 0x00b9d5ef target_put_sess_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x074f77e9 core_tpg_set_initiator_node_tag -EXPORT_SYMBOL drivers/target/target_core_mod 0x0871ffd6 transport_set_vpd_ident -EXPORT_SYMBOL drivers/target/target_core_mod 0x0900cd9b target_configure_unmap_from_queue -EXPORT_SYMBOL drivers/target/target_core_mod 0x1093e47d target_complete_cmd_with_length -EXPORT_SYMBOL drivers/target/target_core_mod 0x12a44b16 sbc_dif_copy_prot -EXPORT_SYMBOL drivers/target/target_core_mod 0x142072c0 transport_set_vpd_assoc -EXPORT_SYMBOL drivers/target/target_core_mod 0x149d831c target_cmd_init_cdb -EXPORT_SYMBOL drivers/target/target_core_mod 0x1c6a04ff target_complete_cmd_with_sense -EXPORT_SYMBOL drivers/target/target_core_mod 0x1e3f849f transport_send_check_condition_and_sense -EXPORT_SYMBOL drivers/target/target_core_mod 0x2025a505 transport_generic_handle_tmr -EXPORT_SYMBOL drivers/target/target_core_mod 0x22d0c701 core_tpg_deregister -EXPORT_SYMBOL drivers/target/target_core_mod 0x27d1fa17 transport_wait_for_tasks -EXPORT_SYMBOL drivers/target/target_core_mod 0x285ea6e2 __target_init_cmd -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 0x3cdf876e target_set_cmd_data_length -EXPORT_SYMBOL drivers/target/target_core_mod 0x3efe2d44 target_get_sess_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x4031937e target_depend_item -EXPORT_SYMBOL drivers/target/target_core_mod 0x40f144d1 target_cmd_parse_cdb -EXPORT_SYMBOL drivers/target/target_core_mod 0x4220eb36 transport_generic_free_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x446ace93 transport_lookup_tmr_lun -EXPORT_SYMBOL drivers/target/target_core_mod 0x46fc3fa6 target_execute_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x4a3f6dd4 transport_generic_request_failure -EXPORT_SYMBOL drivers/target/target_core_mod 0x4aec67e5 transport_kmap_data_sg -EXPORT_SYMBOL drivers/target/target_core_mod 0x4be458c5 target_setup_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x4fa60905 passthrough_pr_attrib_attrs -EXPORT_SYMBOL drivers/target/target_core_mod 0x4fbdb219 transport_deregister_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x4ff8dce9 core_alua_check_nonop_delay -EXPORT_SYMBOL drivers/target/target_core_mod 0x55305720 target_undepend_item -EXPORT_SYMBOL drivers/target/target_core_mod 0x5556f844 core_tpg_check_initiator_node_acl -EXPORT_SYMBOL drivers/target/target_core_mod 0x5c64740d target_wait_for_sess_cmds -EXPORT_SYMBOL drivers/target/target_core_mod 0x602168bd sbc_get_write_same_sectors -EXPORT_SYMBOL drivers/target/target_core_mod 0x617afbba passthrough_parse_cdb -EXPORT_SYMBOL drivers/target/target_core_mod 0x61863587 sbc_parse_cdb -EXPORT_SYMBOL drivers/target/target_core_mod 0x61e5f252 target_submit_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x6302d4f7 passthrough_attrib_attrs -EXPORT_SYMBOL drivers/target/target_core_mod 0x638bffb7 target_free_sgl -EXPORT_SYMBOL drivers/target/target_core_mod 0x67410d52 spc_emulate_report_luns -EXPORT_SYMBOL drivers/target/target_core_mod 0x67557cfa target_submit_tmr -EXPORT_SYMBOL drivers/target/target_core_mod 0x6eb676a4 core_tpg_register -EXPORT_SYMBOL drivers/target/target_core_mod 0x73394b0f transport_lookup_cmd_lun -EXPORT_SYMBOL drivers/target/target_core_mod 0x76bdad38 spc_emulate_inquiry_std -EXPORT_SYMBOL drivers/target/target_core_mod 0x7a1d0d3c target_alloc_sgl -EXPORT_SYMBOL drivers/target/target_core_mod 0x7c81809d target_register_template -EXPORT_SYMBOL drivers/target/target_core_mod 0x7ea4750b target_send_busy -EXPORT_SYMBOL drivers/target/target_core_mod 0x82b16300 sbc_dif_verify -EXPORT_SYMBOL drivers/target/target_core_mod 0x89f295fa target_lun_is_rdonly -EXPORT_SYMBOL drivers/target/target_core_mod 0x9355b1b3 spc_emulate_evpd_83 -EXPORT_SYMBOL drivers/target/target_core_mod 0xa63bbf99 transport_copy_sense_to_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0xa6b4f0cb target_remove_session -EXPORT_SYMBOL drivers/target/target_core_mod 0xa79a6d5d transport_handle_cdb_direct -EXPORT_SYMBOL drivers/target/target_core_mod 0xabac4633 target_complete_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0xae71e1d7 target_tpg_has_node_acl -EXPORT_SYMBOL drivers/target/target_core_mod 0xb0049d71 transport_alloc_session_tags -EXPORT_SYMBOL drivers/target/target_core_mod 0xb2f68079 transport_free_session -EXPORT_SYMBOL drivers/target/target_core_mod 0xb7155ffe target_show_dynamic_sessions -EXPORT_SYMBOL drivers/target/target_core_mod 0xbf643631 target_nacl_find_deve -EXPORT_SYMBOL drivers/target/target_core_mod 0xc7c61c54 core_tpg_get_initiator_node_acl -EXPORT_SYMBOL drivers/target/target_core_mod 0xcacc54d5 target_stop_session -EXPORT_SYMBOL drivers/target/target_core_mod 0xcbb98671 target_backend_unregister -EXPORT_SYMBOL drivers/target/target_core_mod 0xcd61c7ed __transport_register_session -EXPORT_SYMBOL drivers/target/target_core_mod 0xceaadbae sbc_get_device_type -EXPORT_SYMBOL drivers/target/target_core_mod 0xd01df022 sbc_attrib_attrs -EXPORT_SYMBOL drivers/target/target_core_mod 0xd0f86509 transport_register_session -EXPORT_SYMBOL drivers/target/target_core_mod 0xd67499fd spc_parse_cdb -EXPORT_SYMBOL drivers/target/target_core_mod 0xdb003d4e transport_kunmap_data_sg -EXPORT_SYMBOL drivers/target/target_core_mod 0xdec2723c target_put_nacl -EXPORT_SYMBOL drivers/target/target_core_mod 0xe2a8b49c core_allocate_nexus_loss_ua -EXPORT_SYMBOL drivers/target/target_core_mod 0xe36b1253 transport_alloc_session -EXPORT_SYMBOL drivers/target/target_core_mod 0xe544136a target_to_linux_sector -EXPORT_SYMBOL drivers/target/target_core_mod 0xe6d1340f core_tpg_set_initiator_node_queue_depth -EXPORT_SYMBOL drivers/target/target_core_mod 0xee1b73ca transport_generic_new_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0xf07f2a70 transport_init_session -EXPORT_SYMBOL drivers/target/target_core_mod 0xf247fc23 transport_deregister_session_configfs -EXPORT_SYMBOL drivers/target/target_core_mod 0xf3008782 target_show_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0xf3c2dfe0 transport_set_vpd_proto_id -EXPORT_SYMBOL drivers/target/target_core_mod 0xf60aa9ab target_unregister_template -EXPORT_SYMBOL drivers/target/target_core_mod 0xf6496671 transport_backend_register -EXPORT_SYMBOL drivers/usb/class/cdc-wdm 0x4b489f5f usb_cdc_wdm_register -EXPORT_SYMBOL drivers/usb/gadget/libcomposite 0xf0eeceb7 usb_os_desc_prepare_interf_dir -EXPORT_SYMBOL drivers/usb/host/sl811-hcd 0xca211d95 sl811h_driver -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x125c7a1a usb_wwan_chars_in_buffer -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x2b6c077c usb_wwan_dtr_rts -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x38e24468 usb_wwan_suspend -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x3b50a3cd usb_wwan_close -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x65326ff6 usb_wwan_write -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x839c6899 usb_wwan_tiocmget -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xc13ecdd2 usb_wwan_open -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xc2211229 usb_wwan_write_room -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xea7973ae usb_wwan_port_remove -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xee668dfe usb_wwan_resume -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xf667bb9e usb_wwan_tiocmset -EXPORT_SYMBOL drivers/usb/serial/usbserial 0xac545415 usb_serial_suspend -EXPORT_SYMBOL drivers/usb/serial/usbserial 0xde2251d4 usb_serial_resume -EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x09ec5313 mdev_unregister_device -EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x13c11749 mdev_register_device -EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x7017bf28 mdev_unregister_driver -EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x896dbf9a mtype_get_type_group_id -EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x9d6e6bd5 mdev_get_type_group_id -EXPORT_SYMBOL drivers/vfio/mdev/mdev 0xc599df32 mdev_register_driver -EXPORT_SYMBOL drivers/vfio/mdev/mdev 0xd6531ec0 mtype_get_parent_dev -EXPORT_SYMBOL drivers/vfio/mdev/mdev 0xf98ffc09 mdev_parent_dev -EXPORT_SYMBOL drivers/vfio/vfio 0x19567d06 vfio_info_cap_shift -EXPORT_SYMBOL drivers/vfio/vfio 0x1aa9fba0 vfio_dma_rw -EXPORT_SYMBOL drivers/vfio/vfio 0x48a81d7e vfio_group_pin_pages -EXPORT_SYMBOL drivers/vfio/vfio 0x5e9c0aec vfio_pin_pages -EXPORT_SYMBOL drivers/vfio/vfio 0x6210bacf vfio_unregister_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 0xa08d9b2e vfio_unpin_pages -EXPORT_SYMBOL drivers/vfio/vfio 0xa857b31e vfio_register_notifier -EXPORT_SYMBOL drivers/vfio/vfio 0xadc044b7 vfio_set_irqs_validate_and_prepare -EXPORT_SYMBOL drivers/vhost/vhost 0xafa35906 vhost_chr_poll -EXPORT_SYMBOL drivers/vhost/vhost 0xbd569299 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 0x014bd972 devm_lcd_device_unregister -EXPORT_SYMBOL drivers/video/backlight/lcd 0x7e744c31 lcd_device_register -EXPORT_SYMBOL drivers/video/backlight/lcd 0xa4c1abfc lcd_device_unregister -EXPORT_SYMBOL drivers/video/backlight/lcd 0xc0861a53 devm_lcd_device_register -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x16916454 svga_tileblit -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 0x1fb0c94c svga_settile -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x3b372d40 svga_get_caps -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x4ab38ef2 svga_set_default_crt_regs -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x6cdfde1d 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 0x93b21964 svga_tilecursor -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xb0ab2b2e svga_check_timings -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xc8944eda svga_get_tilemax -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xcd0bdeba 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/syscopyarea 0xa256c90a sys_copyarea -EXPORT_SYMBOL drivers/video/fbdev/core/sysfillrect 0x574afc58 sys_fillrect -EXPORT_SYMBOL drivers/video/fbdev/core/sysimgblt 0x276f2b19 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 0x6b0053cc 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 0x84837868 mac_find_mode -EXPORT_SYMBOL drivers/video/fbdev/macmodes 0xe2304303 mac_map_monitor_sense -EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0x336f43d4 g450_mnp2f -EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0x34b6cb33 matroxfb_g450_setclk -EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0xdb0a7586 matroxfb_g450_setpll_cond -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x3c56a40c DAC1064_global_init -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x3e30ebfa DAC1064_global_restore -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x7b033f09 matrox_mystique -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0xe734cead matrox_G100 -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_Ti3026 0x3478c336 matrox_millennium -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_accel 0x27d20890 matrox_cfbX_init -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x1eacfcb5 matroxfb_register_driver -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x3eab0e5c matroxfb_unregister_driver -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x5c267f70 matroxfb_wait_for_sync -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x8c22eaed matroxfb_enable_irq -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_g450 0x90a93794 matroxfb_g450_shutdown -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_g450 0xc788bd3d matroxfb_g450_connect -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x25cf8049 matroxfb_PLL_calcclock -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x2701fe85 matroxfb_read_pins -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x7cc47d2e matroxfb_vgaHWrestore -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x90b6b84e matroxfb_DAC_out -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x90d1c9f0 matroxfb_DAC_in -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xcdc90c64 matroxfb_var2my -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xd90416b9 matroxfb_vgaHWinit -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 0x203f3416 virtio_dma_buf_get_uuid -EXPORT_SYMBOL drivers/virtio/virtio_dma_buf 0x479555e0 virtio_dma_buf_attach -EXPORT_SYMBOL drivers/virtio/virtio_dma_buf 0x4e5728cd virtio_dma_buf_export -EXPORT_SYMBOL drivers/virtio/virtio_dma_buf 0x807e6681 is_virtio_dma_buf -EXPORT_SYMBOL drivers/w1/slaves/w1_ds2780 0x934680d6 w1_ds2780_io -EXPORT_SYMBOL drivers/w1/slaves/w1_ds2780 0xc6b6250b w1_ds2780_eeprom_cmd -EXPORT_SYMBOL drivers/w1/slaves/w1_ds2781 0x281898a9 w1_ds2781_eeprom_cmd -EXPORT_SYMBOL drivers/w1/slaves/w1_ds2781 0x6b985504 w1_ds2781_io -EXPORT_SYMBOL drivers/w1/wire 0xbdf77382 w1_unregister_family -EXPORT_SYMBOL drivers/w1/wire 0xc09108fa w1_register_family -EXPORT_SYMBOL drivers/w1/wire 0xc5f054e1 w1_remove_master_device -EXPORT_SYMBOL drivers/w1/wire 0xe6e68738 w1_add_master_device -EXPORT_SYMBOL fs/fscache/fscache 0x0fa232c5 fscache_withdraw_cache -EXPORT_SYMBOL fs/fscache/fscache 0x15c673ec __fscache_relinquish_cookie -EXPORT_SYMBOL fs/fscache/fscache 0x1652af69 __fscache_read_or_alloc_pages -EXPORT_SYMBOL fs/fscache/fscache 0x2d7477ba __fscache_begin_read_operation -EXPORT_SYMBOL fs/fscache/fscache 0x301c71b1 fscache_mark_page_cached -EXPORT_SYMBOL fs/fscache/fscache 0x3200cb04 fscache_io_error -EXPORT_SYMBOL fs/fscache/fscache 0x32053bf9 fscache_operation_init -EXPORT_SYMBOL fs/fscache/fscache 0x3bb419a4 fscache_init_cache -EXPORT_SYMBOL fs/fscache/fscache 0x3d15e62a __fscache_update_cookie -EXPORT_SYMBOL fs/fscache/fscache 0x40e34a29 __fscache_register_netfs -EXPORT_SYMBOL fs/fscache/fscache 0x4dc685ee __fscache_wait_on_invalidate -EXPORT_SYMBOL fs/fscache/fscache 0x4e49d98b __fscache_uncache_all_inode_pages -EXPORT_SYMBOL fs/fscache/fscache 0x5fc5eab8 fscache_object_destroy -EXPORT_SYMBOL fs/fscache/fscache 0x6acefa42 fscache_cache_cleared_wq -EXPORT_SYMBOL fs/fscache/fscache 0x6cb8c60d __fscache_alloc_page -EXPORT_SYMBOL fs/fscache/fscache 0x6dc2804e __fscache_check_consistency -EXPORT_SYMBOL fs/fscache/fscache 0x74530ecd fscache_op_debug_id -EXPORT_SYMBOL fs/fscache/fscache 0x77ae787a __fscache_disable_cookie -EXPORT_SYMBOL fs/fscache/fscache 0x83d5035d fscache_fsdef_index -EXPORT_SYMBOL fs/fscache/fscache 0x92a33549 __fscache_uncache_page -EXPORT_SYMBOL fs/fscache/fscache 0x9d1961e9 __fscache_maybe_release_page -EXPORT_SYMBOL fs/fscache/fscache 0xa1028e7a fscache_object_retrying_stale -EXPORT_SYMBOL fs/fscache/fscache 0xa7c432ca fscache_op_complete -EXPORT_SYMBOL fs/fscache/fscache 0xab3ab17d fscache_object_init -EXPORT_SYMBOL fs/fscache/fscache 0xabb9c19b __fscache_wait_on_page_write -EXPORT_SYMBOL fs/fscache/fscache 0xb1924632 fscache_object_mark_killed -EXPORT_SYMBOL fs/fscache/fscache 0xb5bd62b6 __fscache_readpages_cancel -EXPORT_SYMBOL fs/fscache/fscache 0xbd7d3404 fscache_enqueue_operation -EXPORT_SYMBOL fs/fscache/fscache 0xc2be5b5e __fscache_write_page -EXPORT_SYMBOL fs/fscache/fscache 0xc88bcc36 __fscache_check_page_write -EXPORT_SYMBOL fs/fscache/fscache 0xc9007ccf fscache_add_cache -EXPORT_SYMBOL fs/fscache/fscache 0xc967f8ea __fscache_acquire_cookie -EXPORT_SYMBOL fs/fscache/fscache 0xccbac38b fscache_put_operation -EXPORT_SYMBOL fs/fscache/fscache 0xd8563373 __fscache_invalidate -EXPORT_SYMBOL fs/fscache/fscache 0xe4f55b45 fscache_object_lookup_negative -EXPORT_SYMBOL fs/fscache/fscache 0xe6ca7f12 fscache_check_aux -EXPORT_SYMBOL fs/fscache/fscache 0xe971fd3d fscache_mark_pages_cached -EXPORT_SYMBOL fs/fscache/fscache 0xea5f52b8 fscache_obtained_object -EXPORT_SYMBOL fs/fscache/fscache 0xf7739951 __fscache_attr_changed -EXPORT_SYMBOL fs/fscache/fscache 0xf81d7c49 __fscache_read_or_alloc_page -EXPORT_SYMBOL fs/fscache/fscache 0xfad251ef __fscache_unregister_netfs -EXPORT_SYMBOL fs/fscache/fscache 0xff7d6868 __fscache_enable_cookie -EXPORT_SYMBOL fs/netfs/netfs 0x2151f906 netfs_readahead -EXPORT_SYMBOL fs/netfs/netfs 0x2d65700d netfs_stats_show -EXPORT_SYMBOL fs/netfs/netfs 0x429b6d8f netfs_readpage -EXPORT_SYMBOL fs/netfs/netfs 0x4ec5c787 netfs_write_begin -EXPORT_SYMBOL fs/netfs/netfs 0x5f0f8192 netfs_subreq_terminated -EXPORT_SYMBOL fs/ocfs2/cluster/ocfs2_nodemanager 0xbfd7d7a2 o2hb_global_heartbeat_active -EXPORT_SYMBOL fs/quota/quota_tree 0x132caacc qtree_write_dquot -EXPORT_SYMBOL fs/quota/quota_tree 0x289f98bf qtree_read_dquot -EXPORT_SYMBOL fs/quota/quota_tree 0x526868c3 qtree_get_next_id -EXPORT_SYMBOL fs/quota/quota_tree 0x616ea2d5 qtree_delete_dquot -EXPORT_SYMBOL fs/quota/quota_tree 0x7717e1e9 qtree_entry_unused -EXPORT_SYMBOL fs/quota/quota_tree 0xcbfb46f0 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/crypto/libarc4 0x2bb32ad1 arc4_setkey -EXPORT_SYMBOL lib/crypto/libarc4 0xcd47fcc4 arc4_crypt -EXPORT_SYMBOL lib/crypto/libchacha 0xcec122d7 chacha_crypt_generic -EXPORT_SYMBOL lib/crypto/libchacha20poly1305 0x147c3f2e chacha20poly1305_encrypt -EXPORT_SYMBOL lib/crypto/libchacha20poly1305 0x37b34b92 chacha20poly1305_encrypt_sg_inplace -EXPORT_SYMBOL lib/crypto/libchacha20poly1305 0x521c7102 xchacha20poly1305_decrypt -EXPORT_SYMBOL lib/crypto/libchacha20poly1305 0x5b19e187 chacha20poly1305_decrypt_sg_inplace -EXPORT_SYMBOL lib/crypto/libchacha20poly1305 0xc20134e7 chacha20poly1305_decrypt -EXPORT_SYMBOL lib/crypto/libchacha20poly1305 0xce15a526 xchacha20poly1305_encrypt -EXPORT_SYMBOL lib/crypto/libcurve25519-generic 0x12627f15 curve25519_generic -EXPORT_SYMBOL lib/crypto/libcurve25519-generic 0x4a5a8811 curve25519_null_point -EXPORT_SYMBOL lib/crypto/libcurve25519-generic 0x7e6fdbfc curve25519_base_point -EXPORT_SYMBOL lib/crypto/libpoly1305 0x021f3700 poly1305_core_blocks -EXPORT_SYMBOL lib/crypto/libpoly1305 0xbcb90cb3 poly1305_core_emit -EXPORT_SYMBOL lib/crypto/libpoly1305 0xd45b9cf4 poly1305_core_setkey -EXPORT_SYMBOL lib/libcrc32c 0x89a0cd52 crc32c_impl -EXPORT_SYMBOL lib/libcrc32c 0xb15b4109 crc32c -EXPORT_SYMBOL lib/lru_cache 0x0641307b lc_destroy -EXPORT_SYMBOL lib/lru_cache 0x098d2ed9 lc_try_get -EXPORT_SYMBOL lib/lru_cache 0x2d47ac83 lc_committed -EXPORT_SYMBOL lib/lru_cache 0x2f3dcecb lc_index_of -EXPORT_SYMBOL lib/lru_cache 0x4522d82a lc_reset -EXPORT_SYMBOL lib/lru_cache 0x4cf5f5a8 lc_is_used -EXPORT_SYMBOL lib/lru_cache 0x5752f31b lc_del -EXPORT_SYMBOL lib/lru_cache 0x7257beee lc_element_by_index -EXPORT_SYMBOL lib/lru_cache 0x87cfd9ff lc_seq_dump_details -EXPORT_SYMBOL lib/lru_cache 0x9134feb7 lc_get -EXPORT_SYMBOL lib/lru_cache 0xb672aa97 lc_create -EXPORT_SYMBOL lib/lru_cache 0xbfbe53d5 lc_get_cumulative -EXPORT_SYMBOL lib/lru_cache 0xc3a98c1d lc_try_lock -EXPORT_SYMBOL lib/lru_cache 0xcc979a91 lc_set -EXPORT_SYMBOL lib/lru_cache 0xe8b1c95f 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 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 0x41d4021c lowpan_nhc_add -EXPORT_SYMBOL net/6lowpan/6lowpan 0x5f8c3ac7 lowpan_nhc_del -EXPORT_SYMBOL net/6lowpan/6lowpan 0x9f5f55e8 lowpan_unregister_netdevice -EXPORT_SYMBOL net/6lowpan/6lowpan 0xa7f307fb lowpan_unregister_netdev -EXPORT_SYMBOL net/6lowpan/6lowpan 0xb7b60dcb lowpan_register_netdev -EXPORT_SYMBOL net/6lowpan/6lowpan 0xd856d760 lowpan_register_netdevice -EXPORT_SYMBOL net/802/p8022 0x060d38d1 register_8022_client -EXPORT_SYMBOL net/802/p8022 0xd4c0a850 unregister_8022_client -EXPORT_SYMBOL net/802/psnap 0xa09b2620 register_snap_client -EXPORT_SYMBOL net/802/psnap 0xcecfc931 unregister_snap_client -EXPORT_SYMBOL net/9p/9pnet 0x009af065 v9fs_unregister_trans -EXPORT_SYMBOL net/9p/9pnet 0x00e620de p9_client_begin_disconnect -EXPORT_SYMBOL net/9p/9pnet 0x0dba6cc1 p9_client_remove -EXPORT_SYMBOL net/9p/9pnet 0x0f32b6b8 p9_client_read_once -EXPORT_SYMBOL net/9p/9pnet 0x11782a0d p9_client_rename -EXPORT_SYMBOL net/9p/9pnet 0x1610da41 p9_client_cb -EXPORT_SYMBOL net/9p/9pnet 0x1b86dcea p9_client_create_dotl -EXPORT_SYMBOL net/9p/9pnet 0x285c7c33 p9_client_fsync -EXPORT_SYMBOL net/9p/9pnet 0x29793d94 p9_client_readlink -EXPORT_SYMBOL net/9p/9pnet 0x2cf1b196 p9_client_disconnect -EXPORT_SYMBOL net/9p/9pnet 0x35bcd5e3 p9_client_attach -EXPORT_SYMBOL net/9p/9pnet 0x381dbef9 p9_release_pages -EXPORT_SYMBOL net/9p/9pnet 0x390fedbe p9_client_getlock_dotl -EXPORT_SYMBOL net/9p/9pnet 0x3c2e5e02 p9_client_lock_dotl -EXPORT_SYMBOL net/9p/9pnet 0x3d73a797 p9_errstr2errno -EXPORT_SYMBOL net/9p/9pnet 0x41ce9823 p9stat_read -EXPORT_SYMBOL net/9p/9pnet 0x46f3014e p9_client_wstat -EXPORT_SYMBOL net/9p/9pnet 0x51447a77 p9_client_write -EXPORT_SYMBOL net/9p/9pnet 0x57822e79 p9_is_proto_dotl -EXPORT_SYMBOL net/9p/9pnet 0x5e7338c4 p9_client_readdir -EXPORT_SYMBOL net/9p/9pnet 0x6bec29d4 p9_client_destroy -EXPORT_SYMBOL net/9p/9pnet 0x6bf124d0 v9fs_get_trans_by_name -EXPORT_SYMBOL net/9p/9pnet 0x6c09e52b p9_client_mknod_dotl -EXPORT_SYMBOL net/9p/9pnet 0x6e0251d8 p9_client_walk -EXPORT_SYMBOL net/9p/9pnet 0x73cc49e7 p9_client_renameat -EXPORT_SYMBOL net/9p/9pnet 0x857f01ed p9_client_getattr_dotl -EXPORT_SYMBOL net/9p/9pnet 0x86caad08 p9_is_proto_dotu -EXPORT_SYMBOL net/9p/9pnet 0x9139d4ef p9_client_stat -EXPORT_SYMBOL net/9p/9pnet 0x95bd8f96 p9dirent_read -EXPORT_SYMBOL net/9p/9pnet 0x984c5e73 p9_fcall_fini -EXPORT_SYMBOL net/9p/9pnet 0x9e606a86 p9_client_link -EXPORT_SYMBOL net/9p/9pnet 0xa580d9ba p9_client_open -EXPORT_SYMBOL net/9p/9pnet 0xa7757d01 p9_req_put -EXPORT_SYMBOL net/9p/9pnet 0xafe8f1d9 p9_client_clunk -EXPORT_SYMBOL net/9p/9pnet 0xb79f25fd p9_parse_header -EXPORT_SYMBOL net/9p/9pnet 0xc02e3e05 p9_client_setattr -EXPORT_SYMBOL net/9p/9pnet 0xc6b5d98d p9_tag_lookup -EXPORT_SYMBOL net/9p/9pnet 0xcadfe598 p9_client_statfs -EXPORT_SYMBOL net/9p/9pnet 0xd384c683 p9stat_free -EXPORT_SYMBOL net/9p/9pnet 0xd543ffdb p9_client_mkdir_dotl -EXPORT_SYMBOL net/9p/9pnet 0xdc4d080c p9_show_client_options -EXPORT_SYMBOL net/9p/9pnet 0xde8a46cb p9_client_fcreate -EXPORT_SYMBOL net/9p/9pnet 0xdf303b70 p9_client_create -EXPORT_SYMBOL net/9p/9pnet 0xe58a3360 p9_error_init -EXPORT_SYMBOL net/9p/9pnet 0xe76f251b v9fs_register_trans -EXPORT_SYMBOL net/9p/9pnet 0xe7b2a07b p9_client_symlink -EXPORT_SYMBOL net/9p/9pnet 0xea43d48f v9fs_get_default_trans -EXPORT_SYMBOL net/9p/9pnet 0xf02e760c p9_client_read -EXPORT_SYMBOL net/9p/9pnet 0xf692f2b7 p9_client_unlinkat -EXPORT_SYMBOL net/appletalk/appletalk 0x3fd1f6a0 alloc_ltalkdev -EXPORT_SYMBOL net/appletalk/appletalk 0x52df90c0 aarp_send_ddp -EXPORT_SYMBOL net/appletalk/appletalk 0x9b502929 atalk_find_dev_addr -EXPORT_SYMBOL net/appletalk/appletalk 0xfa14a62d atrtr_get_dev -EXPORT_SYMBOL net/atm/atm 0x06cc2cd5 atm_dev_deregister -EXPORT_SYMBOL net/atm/atm 0x1c9da281 atm_dev_register -EXPORT_SYMBOL net/atm/atm 0x1cfc9162 atm_dev_lookup -EXPORT_SYMBOL net/atm/atm 0x217b2b31 atm_alloc_charge -EXPORT_SYMBOL net/atm/atm 0x28c8a105 vcc_release_async -EXPORT_SYMBOL net/atm/atm 0x2cc2d52d vcc_hash -EXPORT_SYMBOL net/atm/atm 0x4443d399 atm_proc_root -EXPORT_SYMBOL net/atm/atm 0x44c6e633 vcc_sklist_lock -EXPORT_SYMBOL net/atm/atm 0x47c1da78 atm_charge -EXPORT_SYMBOL net/atm/atm 0x5081be8d vcc_insert_socket -EXPORT_SYMBOL net/atm/atm 0x6efd602d atm_init_aal5 -EXPORT_SYMBOL net/atm/atm 0x9084cdb1 atm_dev_signal_change -EXPORT_SYMBOL net/atm/atm 0x996448bc vcc_process_recv_queue -EXPORT_SYMBOL net/atm/atm 0x99f88489 atm_dev_release_vccs -EXPORT_SYMBOL net/atm/atm 0x9feaf287 sonet_subtract_stats -EXPORT_SYMBOL net/atm/atm 0xaa024146 sonet_copy_stats -EXPORT_SYMBOL net/atm/atm 0xd27acbbd register_atm_ioctl -EXPORT_SYMBOL net/atm/atm 0xf49bc67a atm_pcr_goal -EXPORT_SYMBOL net/atm/atm 0xfd35b3b5 deregister_atm_ioctl -EXPORT_SYMBOL net/ax25/ax25 0x0dcf9291 ax25_find_cb -EXPORT_SYMBOL net/ax25/ax25 0x14cecd59 ax25_display_timer -EXPORT_SYMBOL net/ax25/ax25 0x242852b9 ax25_uid_policy -EXPORT_SYMBOL net/ax25/ax25 0x35c5af7c ax25_linkfail_register -EXPORT_SYMBOL net/ax25/ax25 0x4502c65a asc2ax -EXPORT_SYMBOL net/ax25/ax25 0x45ca4ff6 ax25_listen_register -EXPORT_SYMBOL net/ax25/ax25 0x53dea1ff ax2asc -EXPORT_SYMBOL net/ax25/ax25 0x5b5ef0f7 ax25_listen_release -EXPORT_SYMBOL net/ax25/ax25 0x6609405a ax25_ip_xmit -EXPORT_SYMBOL net/ax25/ax25 0x8ede9e26 ax25_protocol_release -EXPORT_SYMBOL net/ax25/ax25 0xc1444946 ax25cmp -EXPORT_SYMBOL net/ax25/ax25 0xc1c19d3f ax25_send_frame -EXPORT_SYMBOL net/ax25/ax25 0xd43ecbf1 null_ax25_address -EXPORT_SYMBOL net/ax25/ax25 0xee02e420 ax25_findbyuid -EXPORT_SYMBOL net/ax25/ax25 0xef7577a5 ax25_linkfail_release -EXPORT_SYMBOL net/ax25/ax25 0xfc188ede ax25_header_ops -EXPORT_SYMBOL net/bluetooth/bluetooth 0x00dc350d bt_procfs_init -EXPORT_SYMBOL net/bluetooth/bluetooth 0x0718b8b7 bt_info -EXPORT_SYMBOL net/bluetooth/bluetooth 0x0921d009 hci_suspend_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0x0b429b7b hci_conn_security -EXPORT_SYMBOL net/bluetooth/bluetooth 0x0bf0d535 bt_sock_reclassify_lock -EXPORT_SYMBOL net/bluetooth/bluetooth 0x0e344050 l2cap_unregister_user -EXPORT_SYMBOL net/bluetooth/bluetooth 0x14750347 bt_sock_register -EXPORT_SYMBOL net/bluetooth/bluetooth 0x15fc8612 bt_sock_unlink -EXPORT_SYMBOL net/bluetooth/bluetooth 0x176fd46b hci_cmd_sync -EXPORT_SYMBOL net/bluetooth/bluetooth 0x189d2466 bt_procfs_cleanup -EXPORT_SYMBOL net/bluetooth/bluetooth 0x1908d88f hci_alloc_dev_priv -EXPORT_SYMBOL net/bluetooth/bluetooth 0x1a6147bb hci_mgmt_chan_unregister -EXPORT_SYMBOL net/bluetooth/bluetooth 0x1bc02f65 bt_sock_stream_recvmsg -EXPORT_SYMBOL net/bluetooth/bluetooth 0x214e4265 bt_warn -EXPORT_SYMBOL net/bluetooth/bluetooth 0x257041c9 hci_resume_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0x25e7d675 bt_sock_wait_ready -EXPORT_SYMBOL net/bluetooth/bluetooth 0x4c18cdcd hci_conn_check_secure -EXPORT_SYMBOL net/bluetooth/bluetooth 0x532edf69 bt_accept_unlink -EXPORT_SYMBOL net/bluetooth/bluetooth 0x597b1ee2 hci_unregister_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0x5c300c7c bt_sock_ioctl -EXPORT_SYMBOL net/bluetooth/bluetooth 0x649ec166 l2cap_chan_close -EXPORT_SYMBOL net/bluetooth/bluetooth 0x6597df89 bt_sock_wait_state -EXPORT_SYMBOL net/bluetooth/bluetooth 0x75c6fc34 l2cap_register_user -EXPORT_SYMBOL net/bluetooth/bluetooth 0x7aad008b bt_to_errno -EXPORT_SYMBOL net/bluetooth/bluetooth 0x7b5ce5c3 baswap -EXPORT_SYMBOL net/bluetooth/bluetooth 0x7b8c32f1 bt_err -EXPORT_SYMBOL net/bluetooth/bluetooth 0x85f5bd06 __hci_cmd_send -EXPORT_SYMBOL net/bluetooth/bluetooth 0x88b31235 bt_sock_recvmsg -EXPORT_SYMBOL net/bluetooth/bluetooth 0x8fea24bd bt_sock_unregister -EXPORT_SYMBOL net/bluetooth/bluetooth 0x9d2637bc hci_set_fw_info -EXPORT_SYMBOL net/bluetooth/bluetooth 0x9ee2d867 bt_accept_enqueue -EXPORT_SYMBOL net/bluetooth/bluetooth 0x9f102599 hci_free_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0xa0f1b544 hci_unregister_cb -EXPORT_SYMBOL net/bluetooth/bluetooth 0xa2ed584f bt_accept_dequeue -EXPORT_SYMBOL net/bluetooth/bluetooth 0xaf25f3f1 l2cap_conn_get -EXPORT_SYMBOL net/bluetooth/bluetooth 0xb017307e l2cap_conn_put -EXPORT_SYMBOL net/bluetooth/bluetooth 0xc7dcc494 __hci_cmd_sync_ev -EXPORT_SYMBOL net/bluetooth/bluetooth 0xd72f7a69 hci_register_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0xd7613212 bt_err_ratelimited -EXPORT_SYMBOL net/bluetooth/bluetooth 0xd97730b6 l2cap_is_socket -EXPORT_SYMBOL net/bluetooth/bluetooth 0xdbbaedfa __hci_cmd_sync -EXPORT_SYMBOL net/bluetooth/bluetooth 0xddacccf6 bt_warn_ratelimited -EXPORT_SYMBOL net/bluetooth/bluetooth 0xdff0f7e7 hci_set_hw_info -EXPORT_SYMBOL net/bluetooth/bluetooth 0xe09e10bd hci_register_cb -EXPORT_SYMBOL net/bluetooth/bluetooth 0xe7f2f929 hci_recv_diag -EXPORT_SYMBOL net/bluetooth/bluetooth 0xeee334b4 bt_sock_link -EXPORT_SYMBOL net/bluetooth/bluetooth 0xefd8a860 hci_recv_frame -EXPORT_SYMBOL net/bluetooth/bluetooth 0xf1e0b3e1 hci_conn_switch_role -EXPORT_SYMBOL net/bluetooth/bluetooth 0xf497ef85 bt_sock_poll -EXPORT_SYMBOL net/bluetooth/bluetooth 0xf72d76a2 hci_release_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0xfcd247cc hci_get_route -EXPORT_SYMBOL net/bluetooth/bluetooth 0xfdbac10d hci_reset_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0xfdc3b1fa hci_mgmt_chan_register -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x494d09e7 ebt_register_table -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x5b9b24ca ebt_do_table -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x660a9be3 ebt_unregister_template -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x7b8837ca ebt_register_template -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xb0ea3e0f ebt_unregister_table_pre_exit -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xb172e161 ebt_unregister_table -EXPORT_SYMBOL net/caif/caif 0x1446b60a caif_client_register_refcnt -EXPORT_SYMBOL net/caif/caif 0x2a09f713 cfpkt_fromnative -EXPORT_SYMBOL net/caif/caif 0x329dbd06 cfpkt_info -EXPORT_SYMBOL net/caif/caif 0x38701a7c cfcnfg_del_phy_layer -EXPORT_SYMBOL net/caif/caif 0x3fa84493 cfpkt_add_head -EXPORT_SYMBOL net/caif/caif 0x40babbe0 cfpkt_extr_head -EXPORT_SYMBOL net/caif/caif 0x412907f8 caif_connect_client -EXPORT_SYMBOL net/caif/caif 0x49ba3bbe get_cfcnfg -EXPORT_SYMBOL net/caif/caif 0x4a237e57 cfpkt_tonative -EXPORT_SYMBOL net/caif/caif 0x5c812a0e cfcnfg_add_phy_layer -EXPORT_SYMBOL net/caif/caif 0x839ddb7b cfcnfg_set_phy_state -EXPORT_SYMBOL net/caif/caif 0x9e3e305d cfpkt_set_prio -EXPORT_SYMBOL net/caif/caif 0xb7b6874e caif_free_client -EXPORT_SYMBOL net/caif/caif 0xba526608 caif_enroll_dev -EXPORT_SYMBOL net/caif/caif 0xd0788e6d caif_disconnect_client -EXPORT_SYMBOL net/can/can 0x4e61ae92 can_rx_register -EXPORT_SYMBOL net/can/can 0x5a37ae9b can_proto_register -EXPORT_SYMBOL net/can/can 0x97835819 can_sock_destruct -EXPORT_SYMBOL net/can/can 0xbda49634 can_send -EXPORT_SYMBOL net/can/can 0xe444dd54 can_proto_unregister -EXPORT_SYMBOL net/can/can 0xebe42f6b can_rx_unregister -EXPORT_SYMBOL net/ceph/libceph 0x04cad6f0 ceph_pg_poolid_by_name -EXPORT_SYMBOL net/ceph/libceph 0x09156abf ceph_client_gid -EXPORT_SYMBOL net/ceph/libceph 0x0bb30fb2 ceph_osdc_put_request -EXPORT_SYMBOL net/ceph/libceph 0x11d0ff57 ceph_auth_handle_svc_reply_done -EXPORT_SYMBOL net/ceph/libceph 0x1378aba3 ceph_pg_pool_name_by_id -EXPORT_SYMBOL net/ceph/libceph 0x13e97a8c osd_req_op_cls_request_data_pagelist -EXPORT_SYMBOL net/ceph/libceph 0x15bb40f1 ceph_cls_set_cookie -EXPORT_SYMBOL net/ceph/libceph 0x15c6a16a ceph_destroy_client -EXPORT_SYMBOL net/ceph/libceph 0x165b1948 ceph_pagelist_free_reserve -EXPORT_SYMBOL net/ceph/libceph 0x16cdd318 ceph_print_client_options -EXPORT_SYMBOL net/ceph/libceph 0x17c17611 ceph_pg_to_acting_primary -EXPORT_SYMBOL net/ceph/libceph 0x184f5428 osd_req_op_alloc_hint_init -EXPORT_SYMBOL net/ceph/libceph 0x1b3a7c3a ceph_msg_data_add_pages -EXPORT_SYMBOL net/ceph/libceph 0x1c6fe577 ceph_osdc_alloc_messages -EXPORT_SYMBOL net/ceph/libceph 0x1e7f102b osd_req_op_extent_init -EXPORT_SYMBOL net/ceph/libceph 0x2087719e ceph_oid_copy -EXPORT_SYMBOL net/ceph/libceph 0x2101cbc9 ceph_oid_destroy -EXPORT_SYMBOL net/ceph/libceph 0x29729f11 ceph_auth_invalidate_authorizer -EXPORT_SYMBOL net/ceph/libceph 0x2a983d26 ceph_pagelist_release -EXPORT_SYMBOL net/ceph/libceph 0x2beb9f8e ceph_monc_get_version_async -EXPORT_SYMBOL net/ceph/libceph 0x2c8e1b52 ceph_copy_user_to_page_vector -EXPORT_SYMBOL net/ceph/libceph 0x2e360b26 ceph_monc_init -EXPORT_SYMBOL net/ceph/libceph 0x2f066417 ceph_create_client -EXPORT_SYMBOL net/ceph/libceph 0x31405d9c ceph_open_session -EXPORT_SYMBOL net/ceph/libceph 0x342511d1 ceph_parse_param -EXPORT_SYMBOL net/ceph/libceph 0x379c99ce osd_req_op_raw_data_in_pages -EXPORT_SYMBOL net/ceph/libceph 0x38f2d94e ceph_file_to_extents -EXPORT_SYMBOL net/ceph/libceph 0x39996a49 ceph_monc_open_session -EXPORT_SYMBOL net/ceph/libceph 0x3a739400 ceph_osdc_alloc_request -EXPORT_SYMBOL net/ceph/libceph 0x3b961a28 ceph_osdc_flush_notifies -EXPORT_SYMBOL net/ceph/libceph 0x3c04d5ea ceph_monc_renew_subs -EXPORT_SYMBOL net/ceph/libceph 0x3c8d7111 ceph_get_num_objects -EXPORT_SYMBOL net/ceph/libceph 0x3fcea80d ceph_compare_options -EXPORT_SYMBOL net/ceph/libceph 0x405327a9 ceph_osdc_notify -EXPORT_SYMBOL net/ceph/libceph 0x417a9131 ceph_oloc_destroy -EXPORT_SYMBOL net/ceph/libceph 0x466b85b8 libceph_compatible -EXPORT_SYMBOL net/ceph/libceph 0x4ce3ee6a ceph_auth_get_authorizer -EXPORT_SYMBOL net/ceph/libceph 0x4d977bc7 ceph_osdc_new_request -EXPORT_SYMBOL net/ceph/libceph 0x50603ce3 ceph_decode_entity_addrvec -EXPORT_SYMBOL net/ceph/libceph 0x50e1b6f3 ceph_osdc_abort_requests -EXPORT_SYMBOL net/ceph/libceph 0x52d0f6ad ceph_osdc_wait_request -EXPORT_SYMBOL net/ceph/libceph 0x5385289f ceph_monc_get_version -EXPORT_SYMBOL net/ceph/libceph 0x544762bb ceph_osdc_cancel_request -EXPORT_SYMBOL net/ceph/libceph 0x54db3ff5 osd_req_op_cls_request_data_bvecs -EXPORT_SYMBOL net/ceph/libceph 0x57baf885 ceph_str_hash -EXPORT_SYMBOL net/ceph/libceph 0x5aeeee62 ceph_oid_aprintf -EXPORT_SYMBOL net/ceph/libceph 0x5b218bfb ceph_msg_put -EXPORT_SYMBOL net/ceph/libceph 0x5b2fada8 osd_req_op_extent_osd_data_bio -EXPORT_SYMBOL net/ceph/libceph 0x5db02d0d ceph_msg_data_add_pagelist -EXPORT_SYMBOL net/ceph/libceph 0x60a7622d ceph_alloc_page_vector -EXPORT_SYMBOL net/ceph/libceph 0x612b5c6e ceph_osdc_list_watchers -EXPORT_SYMBOL net/ceph/libceph 0x61e9484e ceph_cls_assert_locked -EXPORT_SYMBOL net/ceph/libceph 0x6206b5be ceph_check_fsid -EXPORT_SYMBOL net/ceph/libceph 0x63758856 ceph_str_hash_name -EXPORT_SYMBOL net/ceph/libceph 0x6a2bba30 ceph_auth_is_authenticated -EXPORT_SYMBOL net/ceph/libceph 0x6a7a38a0 ceph_pr_addr -EXPORT_SYMBOL net/ceph/libceph 0x6ecda91a osd_req_op_extent_osd_data_bvecs -EXPORT_SYMBOL net/ceph/libceph 0x6f35f29c ceph_wait_for_latest_osdmap -EXPORT_SYMBOL net/ceph/libceph 0x701925af ceph_auth_add_authorizer_challenge -EXPORT_SYMBOL net/ceph/libceph 0x7090c56c ceph_auth_handle_svc_reply_more -EXPORT_SYMBOL net/ceph/libceph 0x70ebdd79 __ceph_auth_get_authorizer -EXPORT_SYMBOL net/ceph/libceph 0x74d49b91 osd_req_op_extent_update -EXPORT_SYMBOL net/ceph/libceph 0x78fc0634 ceph_con_keepalive -EXPORT_SYMBOL net/ceph/libceph 0x79a3edb5 __ceph_open_session -EXPORT_SYMBOL net/ceph/libceph 0x7ea7617d ceph_cls_unlock -EXPORT_SYMBOL net/ceph/libceph 0x7ff157e4 ceph_copy_to_page_vector -EXPORT_SYMBOL net/ceph/libceph 0x83d7b646 osd_req_op_extent_osd_data_pagelist -EXPORT_SYMBOL net/ceph/libceph 0x84a8fbc9 ceph_msg_new -EXPORT_SYMBOL net/ceph/libceph 0x84b35da1 ceph_osdc_maybe_request_map -EXPORT_SYMBOL net/ceph/libceph 0x85b7774d ceph_osdc_update_epoch_barrier -EXPORT_SYMBOL net/ceph/libceph 0x85e0f774 ceph_msg_data_add_bio -EXPORT_SYMBOL net/ceph/libceph 0x86602ec1 ceph_client_addr -EXPORT_SYMBOL net/ceph/libceph 0x86fca7e4 ceph_put_snap_context -EXPORT_SYMBOL net/ceph/libceph 0x891410dd ceph_cls_lock_info -EXPORT_SYMBOL net/ceph/libceph 0x8a0f1f95 osd_req_op_init -EXPORT_SYMBOL net/ceph/libceph 0x8a1b9b9f ceph_monc_blocklist_add -EXPORT_SYMBOL net/ceph/libceph 0x8c9698ef ceph_con_send -EXPORT_SYMBOL net/ceph/libceph 0x8ca748bb osd_req_op_xattr_init -EXPORT_SYMBOL net/ceph/libceph 0x8d172a50 osd_req_op_cls_init -EXPORT_SYMBOL net/ceph/libceph 0x8e50b2cd ceph_con_close -EXPORT_SYMBOL net/ceph/libceph 0x92b7b4ce ceph_pg_pool_flags -EXPORT_SYMBOL net/ceph/libceph 0x93031736 ceph_zero_page_vector_range -EXPORT_SYMBOL net/ceph/libceph 0x9337c8ab ceph_osdc_start_request -EXPORT_SYMBOL net/ceph/libceph 0x9434bd55 ceph_put_page_vector -EXPORT_SYMBOL net/ceph/libceph 0x962aee79 osd_req_op_extent_osd_data_bvec_pos -EXPORT_SYMBOL net/ceph/libceph 0x987d3968 ceph_alloc_options -EXPORT_SYMBOL net/ceph/libceph 0x9ac4aa57 ceph_osdc_watch -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 0x9df5a6aa ceph_msg_data_add_bvecs -EXPORT_SYMBOL net/ceph/libceph 0x9fbba67f ceph_buffer_new -EXPORT_SYMBOL net/ceph/libceph 0x9fefa3cb ceph_calc_file_object_mapping -EXPORT_SYMBOL net/ceph/libceph 0xa1f7ba55 ceph_release_page_vector -EXPORT_SYMBOL net/ceph/libceph 0xa36c21e4 ceph_parse_mon_ips -EXPORT_SYMBOL net/ceph/libceph 0xa3f49293 ceph_monc_got_map -EXPORT_SYMBOL net/ceph/libceph 0xa5053034 ceph_osdc_clear_abort_err -EXPORT_SYMBOL net/ceph/libceph 0xa51ed41b ceph_monc_stop -EXPORT_SYMBOL net/ceph/libceph 0xa698f998 ceph_free_lockers -EXPORT_SYMBOL net/ceph/libceph 0xad703657 ceph_auth_destroy_authorizer -EXPORT_SYMBOL net/ceph/libceph 0xaf31c9f9 ceph_osdc_sync -EXPORT_SYMBOL net/ceph/libceph 0xafb8a407 ceph_msgr_flush -EXPORT_SYMBOL net/ceph/libceph 0xb50b6bad ceph_monc_validate_auth -EXPORT_SYMBOL net/ceph/libceph 0xb54676fa ceph_msg_type_name -EXPORT_SYMBOL net/ceph/libceph 0xb55f7724 osd_req_op_extent_osd_data -EXPORT_SYMBOL net/ceph/libceph 0xb72c162e ceph_buffer_release -EXPORT_SYMBOL net/ceph/libceph 0xb7f801ac ceph_auth_handle_bad_authorizer -EXPORT_SYMBOL net/ceph/libceph 0xb8d5d4a6 ceph_osdc_notify_ack -EXPORT_SYMBOL net/ceph/libceph 0xba18e41d ceph_osdc_unwatch -EXPORT_SYMBOL net/ceph/libceph 0xbc1fb4ca ceph_auth_verify_authorizer_reply -EXPORT_SYMBOL net/ceph/libceph 0xbd2f79ae ceph_oloc_copy -EXPORT_SYMBOL net/ceph/libceph 0xbe1995fb ceph_copy_from_page_vector -EXPORT_SYMBOL net/ceph/libceph 0xbe3879aa ceph_get_snap_context -EXPORT_SYMBOL net/ceph/libceph 0xc2781931 ceph_reset_client_addr -EXPORT_SYMBOL net/ceph/libceph 0xc366bfa1 ceph_pagelist_truncate -EXPORT_SYMBOL net/ceph/libceph 0xc95f2075 ceph_msg_get -EXPORT_SYMBOL net/ceph/libceph 0xca80437b ceph_extent_to_file -EXPORT_SYMBOL net/ceph/libceph 0xcb97ec9b ceph_cls_lock -EXPORT_SYMBOL net/ceph/libceph 0xd345becc ceph_monc_want_map -EXPORT_SYMBOL net/ceph/libceph 0xd4d736db ceph_destroy_options -EXPORT_SYMBOL net/ceph/libceph 0xd4eb7735 ceph_decode_entity_addr -EXPORT_SYMBOL net/ceph/libceph 0xda1501ff ceph_monc_wait_osdmap -EXPORT_SYMBOL net/ceph/libceph 0xdc02db97 ceph_osdc_copy_from -EXPORT_SYMBOL net/ceph/libceph 0xde638024 osd_req_op_cls_request_data_pages -EXPORT_SYMBOL net/ceph/libceph 0xdf6ef4a1 ceph_oid_printf -EXPORT_SYMBOL net/ceph/libceph 0xdfc091f9 ceph_entity_type_name -EXPORT_SYMBOL net/ceph/libceph 0xe14c0a1a ceph_monc_do_statfs -EXPORT_SYMBOL net/ceph/libceph 0xe2076cb5 ceph_msg_new2 -EXPORT_SYMBOL net/ceph/libceph 0xe34a59f2 ceph_object_locator_to_pg -EXPORT_SYMBOL net/ceph/libceph 0xe5593724 ceph_msg_dump -EXPORT_SYMBOL net/ceph/libceph 0xe76e7226 ceph_pagelist_alloc -EXPORT_SYMBOL net/ceph/libceph 0xe84812cf ceph_con_open -EXPORT_SYMBOL net/ceph/libceph 0xe971b3e8 osd_req_op_cls_response_data_pages -EXPORT_SYMBOL net/ceph/libceph 0xe982e39c ceph_osdc_get_request -EXPORT_SYMBOL net/ceph/libceph 0xedfa91dd osd_req_op_extent_osd_data_pages -EXPORT_SYMBOL net/ceph/libceph 0xee120c03 ceph_release_string -EXPORT_SYMBOL net/ceph/libceph 0xeef6cfa3 ceph_iterate_extents -EXPORT_SYMBOL net/ceph/libceph 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 0xf3da1a31 osd_req_op_extent_dup_last -EXPORT_SYMBOL net/ceph/libceph 0xfa935a33 ceph_cls_break_lock -EXPORT_SYMBOL net/ceph/libceph 0xfd8857e2 ceph_con_init -EXPORT_SYMBOL net/ceph/libceph 0xff30929c ceph_osdc_call -EXPORT_SYMBOL net/dccp/dccp_ipv4 0x53e9e0bd dccp_req_err -EXPORT_SYMBOL net/dccp/dccp_ipv4 0x5f9c2556 dccp_syn_ack_timeout -EXPORT_SYMBOL net/hsr/hsr 0x100c08e7 is_hsr_master -EXPORT_SYMBOL net/hsr/hsr 0x5093637e hsr_get_version -EXPORT_SYMBOL net/ieee802154/ieee802154 0x283f8a66 wpan_phy_new -EXPORT_SYMBOL net/ieee802154/ieee802154 0x54fff189 wpan_phy_find -EXPORT_SYMBOL net/ieee802154/ieee802154 0x5e6bc3ac wpan_phy_for_each -EXPORT_SYMBOL net/ieee802154/ieee802154 0xa2640cf8 wpan_phy_free -EXPORT_SYMBOL net/ieee802154/ieee802154 0xdb7895d4 wpan_phy_register -EXPORT_SYMBOL net/ieee802154/ieee802154 0xea9733a7 wpan_phy_unregister -EXPORT_SYMBOL net/ipv4/fou 0x0a12cae9 __gue_build_header -EXPORT_SYMBOL net/ipv4/fou 0x1757d1a4 fou_encap_hlen -EXPORT_SYMBOL net/ipv4/fou 0x9f4ff0c9 __fou_build_header -EXPORT_SYMBOL net/ipv4/fou 0xf13914b3 gue_encap_hlen -EXPORT_SYMBOL net/ipv4/gre 0x915a69ff gre_parse_header -EXPORT_SYMBOL net/ipv4/ip_tunnel 0x05da2e37 ip_tunnel_encap_del_ops -EXPORT_SYMBOL net/ipv4/ip_tunnel 0x6bdaa291 ip_tunnel_get_iflink -EXPORT_SYMBOL net/ipv4/ip_tunnel 0xd77174a8 ip_tunnel_get_link_net -EXPORT_SYMBOL net/ipv4/ip_tunnel 0xd8c34b82 ip_tunnel_encap_add_ops -EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x06f94423 arpt_unregister_table -EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x96803160 arpt_unregister_table_pre_exit -EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0xd7758ded arpt_register_table -EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0xf90e9133 arpt_do_table -EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x3a5abbf9 ipt_do_table -EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x3c76865a ipt_register_table -EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x48e093ca ipt_unregister_table_pre_exit -EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0xbeb5f70b ipt_unregister_table_exit -EXPORT_SYMBOL net/ipv4/tunnel4 0x3e8d32ed xfrm4_tunnel_deregister -EXPORT_SYMBOL net/ipv4/tunnel4 0xe233ba35 xfrm4_tunnel_register -EXPORT_SYMBOL net/ipv4/udp_tunnel 0x4168fe3c udp_sock_create4 -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x396d75f6 ip6_tnl_get_cap -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x3be22277 ip6_tnl_change_mtu -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x77044b87 ip6_tnl_rcv -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x808036a7 ip6_tnl_encap_del_ops -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x8aaa8c2f ip6_tnl_get_link_net -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x9ecf77a0 ip6_tnl_get_iflink -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xa376c525 ip6_tnl_parse_tlv_enc_lim -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xc3fbef66 ip6_tnl_encap_add_ops -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xdbae99e7 ip6_tnl_xmit -EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x67efa235 ip6t_unregister_table_exit -EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x742dfeea ip6t_unregister_table_pre_exit -EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x94d19cf3 ip6t_register_table -EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0xead30cb8 ip6t_do_table -EXPORT_SYMBOL net/ipv6/tunnel6 0x484e6e21 xfrm6_tunnel_register -EXPORT_SYMBOL net/ipv6/tunnel6 0x83db9841 xfrm6_tunnel_deregister -EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0x5e393d03 xfrm6_tunnel_alloc_spi -EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0xb6092157 xfrm6_tunnel_spi_lookup -EXPORT_SYMBOL net/lapb/lapb 0x03c3f241 lapb_setparms -EXPORT_SYMBOL net/lapb/lapb 0x3edf0a51 lapb_getparms -EXPORT_SYMBOL net/lapb/lapb 0x4072cdfd lapb_connect_request -EXPORT_SYMBOL net/lapb/lapb 0x55a72cfa lapb_register -EXPORT_SYMBOL net/lapb/lapb 0x5678ae52 lapb_unregister -EXPORT_SYMBOL net/lapb/lapb 0x5d1acb3b lapb_data_received -EXPORT_SYMBOL net/lapb/lapb 0xad45eb84 lapb_data_request -EXPORT_SYMBOL net/lapb/lapb 0xea5471cb lapb_disconnect_request -EXPORT_SYMBOL net/llc/llc 0x06628558 llc_sap_open -EXPORT_SYMBOL net/llc/llc 0x1faf4c61 llc_add_pack -EXPORT_SYMBOL net/llc/llc 0x20d9a009 llc_build_and_send_ui_pkt -EXPORT_SYMBOL net/llc/llc 0x38b92846 llc_remove_pack -EXPORT_SYMBOL net/llc/llc 0x52d7b2fd llc_sap_list -EXPORT_SYMBOL net/llc/llc 0x608bd186 llc_sap_find -EXPORT_SYMBOL net/llc/llc 0x970fe46e llc_sap_close -EXPORT_SYMBOL net/llc/llc 0x9ec6f847 llc_mac_hdr_init -EXPORT_SYMBOL net/llc/llc 0xebf3c66e llc_set_station_handler -EXPORT_SYMBOL net/mac80211/mac80211 0x0043e61e ieee80211_txq_get_depth -EXPORT_SYMBOL net/mac80211/mac80211 0x0176aef6 ieee80211_stop_tx_ba_session -EXPORT_SYMBOL net/mac80211/mac80211 0x02737a04 ieee80211_beacon_set_cntdwn -EXPORT_SYMBOL net/mac80211/mac80211 0x03f6af9d __ieee80211_get_tx_led_name -EXPORT_SYMBOL net/mac80211/mac80211 0x063f5308 ieee80211_get_tkip_p1k_iv -EXPORT_SYMBOL net/mac80211/mac80211 0x070d9f13 ieee80211_scan_completed -EXPORT_SYMBOL net/mac80211/mac80211 0x0a510014 ieee80211_enable_rssi_reports -EXPORT_SYMBOL net/mac80211/mac80211 0x0b6bc14a ieee80211_tdls_oper_request -EXPORT_SYMBOL net/mac80211/mac80211 0x13f94663 ieee80211_iter_keys_rcu -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 0x1a5547b1 ieee80211_restart_hw -EXPORT_SYMBOL net/mac80211/mac80211 0x1a66fc17 ieee80211_get_tkip_rx_p1k -EXPORT_SYMBOL net/mac80211/mac80211 0x1d3a9fa9 ieee80211_get_fils_discovery_tmpl -EXPORT_SYMBOL net/mac80211/mac80211 0x1fc91168 ieee80211_rate_control_unregister -EXPORT_SYMBOL net/mac80211/mac80211 0x2787b4ce ieee80211_sta_ps_transition -EXPORT_SYMBOL net/mac80211/mac80211 0x2a59a473 ieee80211_beacon_get_tim -EXPORT_SYMBOL net/mac80211/mac80211 0x2c5849d4 ieee80211_send_eosp_nullfunc -EXPORT_SYMBOL net/mac80211/mac80211 0x2c6e6186 ieee80211_tx_status_8023 -EXPORT_SYMBOL net/mac80211/mac80211 0x303a9e14 ieee80211_iter_keys -EXPORT_SYMBOL net/mac80211/mac80211 0x3122e3c2 ieee80211_stop_tx_ba_cb_irqsafe -EXPORT_SYMBOL net/mac80211/mac80211 0x313e8d7a ieee80211_tx_prepare_skb -EXPORT_SYMBOL net/mac80211/mac80211 0x35fbec3d ieee80211_manage_rx_ba_offl -EXPORT_SYMBOL net/mac80211/mac80211 0x3c43748e ieee80211_report_wowlan_wakeup -EXPORT_SYMBOL net/mac80211/mac80211 0x3d13ce1c ieee80211_rts_get -EXPORT_SYMBOL net/mac80211/mac80211 0x3d2cc095 ieee80211_txq_schedule_start -EXPORT_SYMBOL net/mac80211/mac80211 0x421be781 ieee80211_sta_uapsd_trigger -EXPORT_SYMBOL net/mac80211/mac80211 0x4502265d ieee80211_queue_work -EXPORT_SYMBOL net/mac80211/mac80211 0x46082032 ieee80211_nan_func_match -EXPORT_SYMBOL net/mac80211/mac80211 0x481838ca ieee80211_sta_register_airtime -EXPORT_SYMBOL net/mac80211/mac80211 0x481a15f7 ieee80211_unregister_hw -EXPORT_SYMBOL net/mac80211/mac80211 0x49b985d7 ieee80211_alloc_hw_nm -EXPORT_SYMBOL net/mac80211/mac80211 0x4b97e297 ieee80211_schedule_txq -EXPORT_SYMBOL net/mac80211/mac80211 0x4bf5b1d0 ieee80211_beacon_get_template -EXPORT_SYMBOL net/mac80211/mac80211 0x4f51f7ef ieee80211_get_unsol_bcast_probe_resp_tmpl -EXPORT_SYMBOL net/mac80211/mac80211 0x54044417 ieee80211_pspoll_get -EXPORT_SYMBOL net/mac80211/mac80211 0x54eb6cd3 ieee80211_chswitch_done -EXPORT_SYMBOL net/mac80211/mac80211 0x552a41c2 ieee80211_txq_may_transmit -EXPORT_SYMBOL net/mac80211/mac80211 0x57196387 ieee80211_get_tkip_p2k -EXPORT_SYMBOL net/mac80211/mac80211 0x5b2869e6 ieee80211_get_buffered_bc -EXPORT_SYMBOL net/mac80211/mac80211 0x5da59c2a ieee80211_report_low_ack -EXPORT_SYMBOL net/mac80211/mac80211 0x5fa71313 ieee80211_reserve_tid -EXPORT_SYMBOL net/mac80211/mac80211 0x61894b3e ieee80211_sta_eosp -EXPORT_SYMBOL net/mac80211/mac80211 0x65533aa7 __ieee80211_get_assoc_led_name -EXPORT_SYMBOL net/mac80211/mac80211 0x68d5524b ieee80211_rx_napi -EXPORT_SYMBOL net/mac80211/mac80211 0x6b20094b ieee80211_nan_func_terminated -EXPORT_SYMBOL net/mac80211/mac80211 0x6b9b28f5 ieee80211_cqm_rssi_notify -EXPORT_SYMBOL net/mac80211/mac80211 0x72947759 ieee80211_sta_set_buffered -EXPORT_SYMBOL net/mac80211/mac80211 0x7ebcaa15 ieee80211_csa_finish -EXPORT_SYMBOL net/mac80211/mac80211 0x7f6ffa9f ieee80211_disconnect -EXPORT_SYMBOL net/mac80211/mac80211 0x81df0efd ieee80211_txq_airtime_check -EXPORT_SYMBOL net/mac80211/mac80211 0x837890fd ieee80211_cqm_beacon_loss_notify -EXPORT_SYMBOL net/mac80211/mac80211 0x8400fc8a wiphy_to_ieee80211_hw -EXPORT_SYMBOL net/mac80211/mac80211 0x84bc6ecb ieee80211_rts_duration -EXPORT_SYMBOL net/mac80211/mac80211 0x883bb22b ieee80211_start_tx_ba_cb_irqsafe -EXPORT_SYMBOL net/mac80211/mac80211 0x8bbc872d ieee80211_stop_rx_ba_session -EXPORT_SYMBOL net/mac80211/mac80211 0x8c658ee6 __ieee80211_get_rx_led_name -EXPORT_SYMBOL net/mac80211/mac80211 0x8cddf360 ieee80211_beacon_cntdwn_is_complete -EXPORT_SYMBOL net/mac80211/mac80211 0x917d1245 ieee80211_sched_scan_results -EXPORT_SYMBOL net/mac80211/mac80211 0x92896c3b ieee80211_rate_control_register -EXPORT_SYMBOL net/mac80211/mac80211 0x93b3ca9f ieee80211_tx_status -EXPORT_SYMBOL net/mac80211/mac80211 0x942fa3df ieee80211_beacon_loss -EXPORT_SYMBOL net/mac80211/mac80211 0x94365e2e ieee80211_find_sta -EXPORT_SYMBOL net/mac80211/mac80211 0x950c3ad3 ieee80211_tx_dequeue -EXPORT_SYMBOL net/mac80211/mac80211 0x95e3ba71 ieee80211_send_bar -EXPORT_SYMBOL net/mac80211/mac80211 0x968c29e6 ieee80211_rx_list -EXPORT_SYMBOL net/mac80211/mac80211 0x96cfb707 ieee80211_get_tx_rates -EXPORT_SYMBOL net/mac80211/mac80211 0x98b2fcc3 ieee80211_tx_status_irqsafe -EXPORT_SYMBOL net/mac80211/mac80211 0x991a0ca0 ieee80211_parse_p2p_noa -EXPORT_SYMBOL net/mac80211/mac80211 0x994bf7a1 ieee80211_ap_probereq_get -EXPORT_SYMBOL net/mac80211/mac80211 0x9bbac5cc ieee80211_queue_delayed_work -EXPORT_SYMBOL net/mac80211/mac80211 0x9bc2f3af ieee80211_nullfunc_get -EXPORT_SYMBOL net/mac80211/mac80211 0x9bd18cc6 ieee80211_sched_scan_stopped -EXPORT_SYMBOL net/mac80211/mac80211 0x9d248f5d ieee80211_return_txq -EXPORT_SYMBOL net/mac80211/mac80211 0xa4bc609f ieee80211_tx_rate_update -EXPORT_SYMBOL net/mac80211/mac80211 0xa95553b0 ieee80211_ctstoself_get -EXPORT_SYMBOL net/mac80211/mac80211 0xac613e1f ieee80211_disable_rssi_reports -EXPORT_SYMBOL net/mac80211/mac80211 0xae334a3a ieee80211_unreserve_tid -EXPORT_SYMBOL net/mac80211/mac80211 0xb1ea13e7 ieee80211_free_txskb -EXPORT_SYMBOL net/mac80211/mac80211 0xb222d7ae ieee80211_stop_queues -EXPORT_SYMBOL net/mac80211/mac80211 0xb59030e1 ieee80211_generic_frame_duration -EXPORT_SYMBOL net/mac80211/mac80211 0xb75bfe62 ieee80211_sta_pspoll -EXPORT_SYMBOL net/mac80211/mac80211 0xb7ffbde4 ieee80211_queue_stopped -EXPORT_SYMBOL net/mac80211/mac80211 0xba0eab38 ieee80211_mark_rx_ba_filtered_frames -EXPORT_SYMBOL net/mac80211/mac80211 0xbc31bb36 ieee80211_tx_status_ext -EXPORT_SYMBOL net/mac80211/mac80211 0xbeb45a4e ieee80211_stop_queue -EXPORT_SYMBOL net/mac80211/mac80211 0xc477f29b __ieee80211_get_radio_led_name -EXPORT_SYMBOL net/mac80211/mac80211 0xc6564b8f ieee80211_wake_queue -EXPORT_SYMBOL net/mac80211/mac80211 0xcca296d2 ieee80211_probereq_get -EXPORT_SYMBOL net/mac80211/mac80211 0xd58f2243 __ieee80211_create_tpt_led_trigger -EXPORT_SYMBOL net/mac80211/mac80211 0xd6e0dd77 ieee80211_wake_queues -EXPORT_SYMBOL net/mac80211/mac80211 0xd79703ce ieee80211_sta_block_awake -EXPORT_SYMBOL net/mac80211/mac80211 0xda0eb667 ieee80211_free_hw -EXPORT_SYMBOL net/mac80211/mac80211 0xda73b961 ieee80211_ctstoself_duration -EXPORT_SYMBOL net/mac80211/mac80211 0xdfaadd24 ieee80211_rx_irqsafe -EXPORT_SYMBOL net/mac80211/mac80211 0xe2e562e4 ieee80211_radar_detected -EXPORT_SYMBOL net/mac80211/mac80211 0xe2e5fb27 ieee80211_rx_ba_timer_expired -EXPORT_SYMBOL net/mac80211/mac80211 0xe46ecaa3 ieee80211_next_txq -EXPORT_SYMBOL net/mac80211/mac80211 0xe491ebd7 ieee80211_connection_loss -EXPORT_SYMBOL net/mac80211/mac80211 0xe5752af3 ieee80211_get_bssid -EXPORT_SYMBOL net/mac80211/mac80211 0xe8cb49e0 ieee80211_proberesp_get -EXPORT_SYMBOL net/mac80211/mac80211 0xedc193d4 rate_control_set_rates -EXPORT_SYMBOL net/mac80211/mac80211 0xedfb3db8 ieee80211_register_hw -EXPORT_SYMBOL net/mac80211/mac80211 0xefe9859d ieee80211_beacon_update_cntdwn -EXPORT_SYMBOL net/mac80211/mac80211 0xf00187bf ieee80211_start_tx_ba_session -EXPORT_SYMBOL net/mac802154/mac802154 0x01b19d55 ieee802154_register_hw -EXPORT_SYMBOL net/mac802154/mac802154 0x04f3c814 ieee802154_alloc_hw -EXPORT_SYMBOL net/mac802154/mac802154 0x1e16d5ad ieee802154_xmit_complete -EXPORT_SYMBOL net/mac802154/mac802154 0x85d7e3ed ieee802154_wake_queue -EXPORT_SYMBOL net/mac802154/mac802154 0x9c54bec9 ieee802154_stop_queue -EXPORT_SYMBOL net/mac802154/mac802154 0xa384a40e ieee802154_free_hw -EXPORT_SYMBOL net/mac802154/mac802154 0xfe0e0157 ieee802154_rx_irqsafe -EXPORT_SYMBOL net/mac802154/mac802154 0xfe1c7323 ieee802154_unregister_hw -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x071f6a9c unregister_ip_vs_scheduler -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x1b171b9c ip_vs_conn_new -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x2f892689 ip_vs_proto_get -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x4ef294af register_ip_vs_app_inc -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x5d167df7 register_ip_vs_app -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x67d0400e unregister_ip_vs_app -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x7651c375 ip_vs_new_conn_out -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x78ee41bb ip_vs_proto_data_get -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x8a8d7f9f ip_vs_tcp_conn_listen -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x9641e613 ip_vs_conn_in_get -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x96c6087a ip_vs_conn_put -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xa48eccf2 ip_vs_conn_out_get -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xa52b7103 register_ip_vs_scheduler -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xd44a6a0a ip_vs_nfct_expect_related -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xd831a1a2 ip_vs_proto_name -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xe69ac78a ip_vs_scheduler_err -EXPORT_SYMBOL net/netfilter/nf_conntrack 0x3b08a8f0 nf_ct_destroy -EXPORT_SYMBOL net/netfilter/nf_conntrack 0x89aaaab4 nf_ct_ext_add -EXPORT_SYMBOL net/netfilter/nf_conntrack_pptp 0xf2a36612 pptp_msg_name -EXPORT_SYMBOL net/netfilter/nf_nat 0x550ed72c nf_nat_mangle_udp_packet -EXPORT_SYMBOL net/netfilter/nf_nat 0x68121d01 nf_nat_follow_master -EXPORT_SYMBOL net/netfilter/nf_nat 0xa29fb36a __nf_nat_mangle_tcp_packet -EXPORT_SYMBOL net/netfilter/nf_nat 0xeb2277fe nf_nat_setup_info -EXPORT_SYMBOL net/netfilter/nft_fib 0xb3c36947 nft_fib_policy -EXPORT_SYMBOL net/netfilter/x_tables 0x08ed35bd xt_find_table -EXPORT_SYMBOL net/netfilter/x_tables 0x0d7f5fcd xt_alloc_entry_offsets -EXPORT_SYMBOL net/netfilter/x_tables 0x27de879d xt_register_targets -EXPORT_SYMBOL net/netfilter/x_tables 0x2e78914b xt_find_match -EXPORT_SYMBOL net/netfilter/x_tables 0x38f00e25 xt_unregister_match -EXPORT_SYMBOL net/netfilter/x_tables 0x3907b523 xt_unregister_target -EXPORT_SYMBOL net/netfilter/x_tables 0x3bf9d084 xt_check_table_hooks -EXPORT_SYMBOL net/netfilter/x_tables 0x3fb50591 xt_register_matches -EXPORT_SYMBOL net/netfilter/x_tables 0x48012e28 xt_check_proc_name -EXPORT_SYMBOL net/netfilter/x_tables 0x4a88ada1 xt_register_target -EXPORT_SYMBOL net/netfilter/x_tables 0x50873741 xt_compat_init_offsets -EXPORT_SYMBOL net/netfilter/x_tables 0x5891c5c7 xt_unregister_matches -EXPORT_SYMBOL net/netfilter/x_tables 0x8562b9d7 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 0xa5b1579c xt_unregister_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 0x2462e8f0 nfc_hci_driver_failure -EXPORT_SYMBOL net/nfc/hci/hci 0x3e6e1d85 nfc_hci_recv_frame -EXPORT_SYMBOL net/nfc/hci/hci 0x466d53f4 nfc_hci_send_cmd -EXPORT_SYMBOL net/nfc/hci/hci 0x5a00530a nfc_hci_free_device -EXPORT_SYMBOL net/nfc/hci/hci 0x666e7ed5 nfc_llc_start -EXPORT_SYMBOL net/nfc/hci/hci 0x70ee0e32 nfc_hci_set_clientdata -EXPORT_SYMBOL net/nfc/hci/hci 0x74fe3670 nfc_hci_result_to_errno -EXPORT_SYMBOL net/nfc/hci/hci 0x768b2b62 nfc_hci_reset_pipes_per_host -EXPORT_SYMBOL net/nfc/hci/hci 0x7f36af04 nfc_hci_set_param -EXPORT_SYMBOL net/nfc/hci/hci 0x86d8dfc2 nfc_llc_stop -EXPORT_SYMBOL net/nfc/hci/hci 0x89ff70ab nfc_hci_target_discovered -EXPORT_SYMBOL net/nfc/hci/hci 0x8c2e4a98 nfc_hci_reset_pipes -EXPORT_SYMBOL net/nfc/hci/hci 0x938ea71f nfc_hci_register_device -EXPORT_SYMBOL net/nfc/hci/hci 0xa4b30f6b nfc_hci_unregister_device -EXPORT_SYMBOL net/nfc/hci/hci 0xb39f3dd8 nfc_hci_allocate_device -EXPORT_SYMBOL net/nfc/hci/hci 0xbd076f26 nfc_hci_get_param -EXPORT_SYMBOL net/nfc/hci/hci 0xcd97ec3d nfc_hci_send_cmd_async -EXPORT_SYMBOL net/nfc/hci/hci 0xd5ccd2cb nfc_hci_get_clientdata -EXPORT_SYMBOL net/nfc/hci/hci 0xdbd0324b nfc_hci_disconnect_all_gates -EXPORT_SYMBOL net/nfc/hci/hci 0xdc7dcdef nfc_hci_disconnect_gate -EXPORT_SYMBOL net/nfc/hci/hci 0xdd231c55 nfc_hci_sak_to_protocol -EXPORT_SYMBOL net/nfc/hci/hci 0xdd98ecba nfc_hci_connect_gate -EXPORT_SYMBOL net/nfc/hci/hci 0xf23d9538 nfc_hci_send_event -EXPORT_SYMBOL net/nfc/nci/nci 0x07b325d9 nci_conn_max_data_pkt_payload_size -EXPORT_SYMBOL net/nfc/nci/nci 0x1dc6d960 nci_get_conn_info_by_dest_type_params -EXPORT_SYMBOL net/nfc/nci/nci 0x21b7a76c nci_allocate_device -EXPORT_SYMBOL net/nfc/nci/nci 0x2222bd39 nci_send_data -EXPORT_SYMBOL net/nfc/nci/nci 0x2aad82bd nci_core_init -EXPORT_SYMBOL net/nfc/nci/nci 0x34eecf2a nci_hci_open_pipe -EXPORT_SYMBOL net/nfc/nci/nci 0x3c462df6 nci_set_config -EXPORT_SYMBOL net/nfc/nci/nci 0x4cb32aa0 nci_core_conn_close -EXPORT_SYMBOL net/nfc/nci/nci 0x5459e3ff nci_hci_clear_all_pipes -EXPORT_SYMBOL net/nfc/nci/nci 0x5a1d327f nci_free_device -EXPORT_SYMBOL net/nfc/nci/nci 0x5c1bdd5b nci_hci_get_param -EXPORT_SYMBOL net/nfc/nci/nci 0x62d6a9de nci_hci_set_param -EXPORT_SYMBOL net/nfc/nci/nci 0x6c022d24 nci_send_cmd -EXPORT_SYMBOL net/nfc/nci/nci 0x6f8ec048 nci_nfcc_loopback -EXPORT_SYMBOL net/nfc/nci/nci 0x7a320fa1 nci_nfcee_mode_set -EXPORT_SYMBOL net/nfc/nci/nci 0x7b90d23f nci_hci_send_cmd -EXPORT_SYMBOL net/nfc/nci/nci 0x882a3679 nci_req_complete -EXPORT_SYMBOL net/nfc/nci/nci 0x8ede0545 nci_core_reset -EXPORT_SYMBOL net/nfc/nci/nci 0xa19795f9 nci_prop_cmd -EXPORT_SYMBOL net/nfc/nci/nci 0xa3a4a083 nci_recv_frame -EXPORT_SYMBOL net/nfc/nci/nci 0xb91a8255 nci_register_device -EXPORT_SYMBOL net/nfc/nci/nci 0xba490602 nci_to_errno -EXPORT_SYMBOL net/nfc/nci/nci 0xc23f69fb nci_send_frame -EXPORT_SYMBOL net/nfc/nci/nci 0xc8cf3cf9 nci_core_cmd -EXPORT_SYMBOL net/nfc/nci/nci 0xc978b39b nci_hci_connect_gate -EXPORT_SYMBOL net/nfc/nci/nci 0xd4ae5a4f nci_hci_send_event -EXPORT_SYMBOL net/nfc/nci/nci 0xd50aa5a1 nci_nfcee_discover -EXPORT_SYMBOL net/nfc/nci/nci 0xf53b5d6d nci_unregister_device -EXPORT_SYMBOL net/nfc/nci/nci 0xf5d7a745 nci_hci_dev_session_init -EXPORT_SYMBOL net/nfc/nci/nci 0xf87ef3cc nci_core_conn_create -EXPORT_SYMBOL net/nfc/nfc 0x210b396a nfc_remove_se -EXPORT_SYMBOL net/nfc/nfc 0x296feefa nfc_unregister_device -EXPORT_SYMBOL net/nfc/nfc 0x385166f4 nfc_add_se -EXPORT_SYMBOL net/nfc/nfc 0x435c17e3 nfc_proto_unregister -EXPORT_SYMBOL net/nfc/nfc 0x4664b3ee nfc_driver_failure -EXPORT_SYMBOL net/nfc/nfc 0x5843d138 __nfc_alloc_vendor_cmd_reply_skb -EXPORT_SYMBOL net/nfc/nfc 0x5ea14ee8 nfc_register_device -EXPORT_SYMBOL net/nfc/nfc 0x6a1aa074 nfc_class -EXPORT_SYMBOL net/nfc/nfc 0x71f71f83 nfc_find_se -EXPORT_SYMBOL net/nfc/nfc 0x731fdf9d nfc_target_lost -EXPORT_SYMBOL net/nfc/nfc 0x84596683 nfc_tm_deactivated -EXPORT_SYMBOL net/nfc/nfc 0x8755400a nfc_tm_data_received -EXPORT_SYMBOL net/nfc/nfc 0x925547d8 nfc_alloc_recv_skb -EXPORT_SYMBOL net/nfc/nfc 0x9989f188 nfc_tm_activated -EXPORT_SYMBOL net/nfc/nfc 0xa4db78a3 nfc_se_transaction -EXPORT_SYMBOL net/nfc/nfc 0xa914a62c nfc_targets_found -EXPORT_SYMBOL net/nfc/nfc 0xabe7eaf1 nfc_set_remote_general_bytes -EXPORT_SYMBOL net/nfc/nfc 0xbda60b41 nfc_allocate_device -EXPORT_SYMBOL net/nfc/nfc 0xd92e38a6 nfc_send_to_raw_sock -EXPORT_SYMBOL net/nfc/nfc 0xda9a0855 nfc_dep_link_is_up -EXPORT_SYMBOL net/nfc/nfc 0xe196de8b nfc_se_connectivity -EXPORT_SYMBOL net/nfc/nfc 0xe37c6a45 nfc_fw_download_done -EXPORT_SYMBOL net/nfc/nfc 0xe3c673a9 nfc_vendor_cmd_reply -EXPORT_SYMBOL net/nfc/nfc 0xef24419b nfc_proto_register -EXPORT_SYMBOL net/nfc/nfc 0xf296a2ab nfc_get_local_general_bytes -EXPORT_SYMBOL net/nfc/nfc_digital 0x119ddbe8 nfc_digital_unregister_device -EXPORT_SYMBOL net/nfc/nfc_digital 0x4d1e7cb2 nfc_digital_allocate_device -EXPORT_SYMBOL net/nfc/nfc_digital 0x721aa739 nfc_digital_register_device -EXPORT_SYMBOL net/nfc/nfc_digital 0xdc9a09e7 nfc_digital_free_device -EXPORT_SYMBOL net/phonet/phonet 0x02b4150c pn_sock_hash -EXPORT_SYMBOL net/phonet/phonet 0x456f9649 phonet_header_ops -EXPORT_SYMBOL net/phonet/phonet 0x939b81d3 phonet_proto_register -EXPORT_SYMBOL net/phonet/phonet 0x987f2891 phonet_proto_unregister -EXPORT_SYMBOL net/phonet/phonet 0x9d80c5b4 pn_skb_send -EXPORT_SYMBOL net/phonet/phonet 0xaa9c28ab pn_sock_unhash -EXPORT_SYMBOL net/phonet/phonet 0xbc1c26af pn_sock_get_port -EXPORT_SYMBOL net/phonet/phonet 0xfcfa1479 phonet_stream_ops -EXPORT_SYMBOL net/rxrpc/rxrpc 0x0e9dd80c rxrpc_get_server_data_key -EXPORT_SYMBOL net/rxrpc/rxrpc 0x2ce919b9 rxrpc_kernel_new_call_notification -EXPORT_SYMBOL net/rxrpc/rxrpc 0x31bf3ca3 rxrpc_debug_id -EXPORT_SYMBOL net/rxrpc/rxrpc 0x33816aed rxrpc_kernel_send_data -EXPORT_SYMBOL net/rxrpc/rxrpc 0x456d1f3f rxrpc_kernel_check_life -EXPORT_SYMBOL net/rxrpc/rxrpc 0x4c383603 rxrpc_kernel_get_reply_time -EXPORT_SYMBOL net/rxrpc/rxrpc 0x52093a60 rxrpc_get_null_key -EXPORT_SYMBOL net/rxrpc/rxrpc 0x555bd66d rxrpc_kernel_charge_accept -EXPORT_SYMBOL net/rxrpc/rxrpc 0x5c9711b1 rxrpc_kernel_get_epoch -EXPORT_SYMBOL net/rxrpc/rxrpc 0x7aa17ea7 rxrpc_kernel_get_srtt -EXPORT_SYMBOL net/rxrpc/rxrpc 0x8d1535dd rxrpc_kernel_end_call -EXPORT_SYMBOL net/rxrpc/rxrpc 0x9b4e1499 rxrpc_kernel_set_tx_length -EXPORT_SYMBOL net/rxrpc/rxrpc 0xa2d1d54d rxrpc_kernel_abort_call -EXPORT_SYMBOL net/rxrpc/rxrpc 0xc102be71 rxrpc_sock_set_min_security_level -EXPORT_SYMBOL net/rxrpc/rxrpc 0xcbdbcf95 rxrpc_kernel_recv_data -EXPORT_SYMBOL net/rxrpc/rxrpc 0xddcf1d5c rxrpc_kernel_set_max_life -EXPORT_SYMBOL net/rxrpc/rxrpc 0xe4080023 key_type_rxrpc -EXPORT_SYMBOL net/rxrpc/rxrpc 0xe433de25 rxrpc_kernel_begin_call -EXPORT_SYMBOL net/rxrpc/rxrpc 0xf946b8ae rxrpc_kernel_get_peer -EXPORT_SYMBOL net/sctp/sctp 0xf18e224c sctp_do_peeloff -EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x007d81ec gss_mech_put -EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x6c61ce90 gss_mech_get -EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x7d124f2a gss_pseudoflavor_to_service -EXPORT_SYMBOL net/sunrpc/sunrpc 0x1b71e891 svc_pool_stats_open -EXPORT_SYMBOL net/sunrpc/sunrpc 0x8e6359cb get_srcport -EXPORT_SYMBOL net/sunrpc/sunrpc 0xe3b04989 xdr_truncate_encode -EXPORT_SYMBOL net/sunrpc/sunrpc 0xefe6f0ab xdr_restrict_buflen -EXPORT_SYMBOL net/tipc/tipc 0x044c12c5 tipc_dump_start -EXPORT_SYMBOL net/tipc/tipc 0x0e16d631 tipc_dump_done -EXPORT_SYMBOL net/tipc/tipc 0x41b9ee41 tipc_nl_sk_walk -EXPORT_SYMBOL net/tipc/tipc 0xa99ba994 tipc_sk_fill_sock_diag -EXPORT_SYMBOL net/tls/tls 0xd2fd2e72 tls_get_record -EXPORT_SYMBOL net/wireless/cfg80211 0x022a5cbf regulatory_hint -EXPORT_SYMBOL net/wireless/cfg80211 0x0a4f7be9 cfg80211_crit_proto_stopped -EXPORT_SYMBOL net/wireless/cfg80211 0x117aca91 cfg80211_merge_profile -EXPORT_SYMBOL net/wireless/cfg80211 0x123965a4 cfg80211_sta_opmode_change_notify -EXPORT_SYMBOL net/wireless/cfg80211 0x15429d71 cfg80211_cqm_txe_notify -EXPORT_SYMBOL net/wireless/cfg80211 0x15a37cf3 cfg80211_calculate_bitrate -EXPORT_SYMBOL net/wireless/cfg80211 0x178b74fa cfg80211_stop_iface -EXPORT_SYMBOL net/wireless/cfg80211 0x1879fcbd bridge_tunnel_header -EXPORT_SYMBOL net/wireless/cfg80211 0x1c09f1ce cfg80211_cqm_rssi_notify -EXPORT_SYMBOL net/wireless/cfg80211 0x1ce2497f reg_query_regdb_wmm -EXPORT_SYMBOL net/wireless/cfg80211 0x1d6e294f cfg80211_ibss_joined -EXPORT_SYMBOL net/wireless/cfg80211 0x1ff3002b cfg80211_register_netdevice -EXPORT_SYMBOL net/wireless/cfg80211 0x20c7740d cfg80211_inform_bss_frame_data -EXPORT_SYMBOL net/wireless/cfg80211 0x227dba28 cfg80211_ready_on_channel -EXPORT_SYMBOL net/wireless/cfg80211 0x2310adee ieee80211_bss_get_elem -EXPORT_SYMBOL net/wireless/cfg80211 0x271090a4 cfg80211_assoc_timeout -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 0x2afe5eef cfg80211_sched_scan_stopped_locked -EXPORT_SYMBOL net/wireless/cfg80211 0x2c5a0096 wiphy_new_nm -EXPORT_SYMBOL net/wireless/cfg80211 0x2ca02583 cfg80211_michael_mic_failure -EXPORT_SYMBOL net/wireless/cfg80211 0x2cacbe1a regulatory_set_wiphy_regd_sync -EXPORT_SYMBOL net/wireless/cfg80211 0x2de4c8bd cfg80211_report_obss_beacon_khz -EXPORT_SYMBOL net/wireless/cfg80211 0x2f39451b cfg80211_probe_status -EXPORT_SYMBOL net/wireless/cfg80211 0x34bb5613 wiphy_apply_custom_regulatory -EXPORT_SYMBOL net/wireless/cfg80211 0x3d50c7d8 cfg80211_bss_color_notify -EXPORT_SYMBOL net/wireless/cfg80211 0x3d8e5894 cfg80211_chandef_compatible -EXPORT_SYMBOL net/wireless/cfg80211 0x3f7cd40d cfg80211_update_owe_info_event -EXPORT_SYMBOL net/wireless/cfg80211 0x406102be cfg80211_external_auth_request -EXPORT_SYMBOL net/wireless/cfg80211 0x422ba7e6 cfg80211_iter_combinations -EXPORT_SYMBOL net/wireless/cfg80211 0x43afadee ieee80211_radiotap_iterator_init -EXPORT_SYMBOL net/wireless/cfg80211 0x461a57d1 cfg80211_roamed -EXPORT_SYMBOL net/wireless/cfg80211 0x4e133e2b __cfg80211_send_event_skb -EXPORT_SYMBOL net/wireless/cfg80211 0x4e452eb7 ieee80211_data_to_8023_exthdr -EXPORT_SYMBOL net/wireless/cfg80211 0x50411701 cfg80211_ref_bss -EXPORT_SYMBOL net/wireless/cfg80211 0x5068137f cfg80211_pmksa_candidate_notify -EXPORT_SYMBOL net/wireless/cfg80211 0x510ad9b1 cfg80211_check_station_change -EXPORT_SYMBOL net/wireless/cfg80211 0x52793604 regulatory_pre_cac_allowed -EXPORT_SYMBOL net/wireless/cfg80211 0x52f82945 cfg80211_rx_spurious_frame -EXPORT_SYMBOL net/wireless/cfg80211 0x54e70da0 cfg80211_unregister_wdev -EXPORT_SYMBOL net/wireless/cfg80211 0x55957ab6 cfg80211_del_sta_sinfo -EXPORT_SYMBOL net/wireless/cfg80211 0x56415ad2 __cfg80211_alloc_reply_skb -EXPORT_SYMBOL net/wireless/cfg80211 0x57ad4b54 __cfg80211_alloc_event_skb -EXPORT_SYMBOL net/wireless/cfg80211 0x581f0be8 cfg80211_check_combinations -EXPORT_SYMBOL net/wireless/cfg80211 0x60bd92d4 cfg80211_cqm_pktloss_notify -EXPORT_SYMBOL net/wireless/cfg80211 0x61a3b6c1 cfg80211_classify8021d -EXPORT_SYMBOL net/wireless/cfg80211 0x652aeedf ieee80211_mandatory_rates -EXPORT_SYMBOL net/wireless/cfg80211 0x666dec1b cfg80211_put_bss -EXPORT_SYMBOL net/wireless/cfg80211 0x66ccd427 cfg80211_nan_func_terminated -EXPORT_SYMBOL net/wireless/cfg80211 0x69b18f43 rfc1042_header -EXPORT_SYMBOL net/wireless/cfg80211 0x6bedf402 ieee80211_freq_khz_to_channel -EXPORT_SYMBOL net/wireless/cfg80211 0x6c51aa9b cfg80211_get_bss -EXPORT_SYMBOL net/wireless/cfg80211 0x6d79344d wiphy_read_of_freq_limits -EXPORT_SYMBOL net/wireless/cfg80211 0x703d500d cfg80211_sched_scan_results -EXPORT_SYMBOL net/wireless/cfg80211 0x70cb48c1 regulatory_set_wiphy_regd -EXPORT_SYMBOL net/wireless/cfg80211 0x70ce2a4d cfg80211_reg_can_beacon -EXPORT_SYMBOL net/wireless/cfg80211 0x75da7f4e cfg80211_rx_control_port -EXPORT_SYMBOL net/wireless/cfg80211 0x79b82a71 cfg80211_find_vendor_elem -EXPORT_SYMBOL net/wireless/cfg80211 0x7a920ad0 cfg80211_ft_event -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 0x842226ba cfg80211_get_station -EXPORT_SYMBOL net/wireless/cfg80211 0x86c86b4f cfg80211_connect_done -EXPORT_SYMBOL net/wireless/cfg80211 0x8fa02936 cfg80211_free_nan_func -EXPORT_SYMBOL net/wireless/cfg80211 0x903878c4 cfg80211_chandef_usable -EXPORT_SYMBOL net/wireless/cfg80211 0x9047e237 cfg80211_gtk_rekey_notify -EXPORT_SYMBOL net/wireless/cfg80211 0x90d88d5f cfg80211_any_usable_channels -EXPORT_SYMBOL net/wireless/cfg80211 0x941d11ee cfg80211_ch_switch_started_notify -EXPORT_SYMBOL net/wireless/cfg80211 0x946ae5b7 cfg80211_cac_event -EXPORT_SYMBOL net/wireless/cfg80211 0x95c9d55f cfg80211_cqm_beacon_loss_notify -EXPORT_SYMBOL net/wireless/cfg80211 0x9b47963c cfg80211_notify_new_peer_candidate -EXPORT_SYMBOL net/wireless/cfg80211 0x9bbd116b cfg80211_bss_iter -EXPORT_SYMBOL net/wireless/cfg80211 0x9c7e37f3 ieee80211_get_channel_khz -EXPORT_SYMBOL net/wireless/cfg80211 0x9ccf4ecf cfg80211_report_wowlan_wakeup -EXPORT_SYMBOL net/wireless/cfg80211 0x9d6cba30 cfg80211_find_elem_match -EXPORT_SYMBOL net/wireless/cfg80211 0xa250ace2 cfg80211_send_layer2_update -EXPORT_SYMBOL net/wireless/cfg80211 0xa5f2d5fa cfg80211_radar_event -EXPORT_SYMBOL net/wireless/cfg80211 0xa7d3944b cfg80211_iftype_allowed -EXPORT_SYMBOL net/wireless/cfg80211 0xa9486794 cfg80211_ch_switch_notify -EXPORT_SYMBOL net/wireless/cfg80211 0xab469d7d cfg80211_conn_failed -EXPORT_SYMBOL net/wireless/cfg80211 0xab588465 cfg80211_rx_unprot_mlme_mgmt -EXPORT_SYMBOL net/wireless/cfg80211 0xabd4df12 cfg80211_auth_timeout -EXPORT_SYMBOL net/wireless/cfg80211 0xac4ff9d2 get_wiphy_regdom -EXPORT_SYMBOL net/wireless/cfg80211 0xae2aaa99 cfg80211_chandef_dfs_required -EXPORT_SYMBOL net/wireless/cfg80211 0xafc54306 cfg80211_control_port_tx_status -EXPORT_SYMBOL net/wireless/cfg80211 0xb561b70e cfg80211_reg_can_beacon_relax -EXPORT_SYMBOL net/wireless/cfg80211 0xb5fde1d7 cfg80211_tx_mlme_mgmt -EXPORT_SYMBOL net/wireless/cfg80211 0xb73aafb1 ieee80211_chandef_to_operating_class -EXPORT_SYMBOL net/wireless/cfg80211 0xb84090b4 cfg80211_port_authorized -EXPORT_SYMBOL net/wireless/cfg80211 0xb8f89157 cfg80211_tx_mgmt_expired -EXPORT_SYMBOL net/wireless/cfg80211 0xc199bc6d cfg80211_mgmt_tx_status -EXPORT_SYMBOL net/wireless/cfg80211 0xc1b99792 ieee80211_channel_to_freq_khz -EXPORT_SYMBOL net/wireless/cfg80211 0xc41ad8f7 cfg80211_get_drvinfo -EXPORT_SYMBOL net/wireless/cfg80211 0xc4c6eccc cfg80211_rx_mgmt_khz -EXPORT_SYMBOL net/wireless/cfg80211 0xc5dcacef ieee80211_operating_class_to_band -EXPORT_SYMBOL net/wireless/cfg80211 0xc92901d1 cfg80211_disconnected -EXPORT_SYMBOL net/wireless/cfg80211 0xcc1a7c48 cfg80211_is_element_inherited -EXPORT_SYMBOL net/wireless/cfg80211 0xcf47544e cfg80211_abandon_assoc -EXPORT_SYMBOL net/wireless/cfg80211 0xd3b90149 cfg80211_bss_flush -EXPORT_SYMBOL net/wireless/cfg80211 0xd462f392 wiphy_rfkill_start_polling -EXPORT_SYMBOL net/wireless/cfg80211 0xd56d55f3 ieee80211_get_mesh_hdrlen -EXPORT_SYMBOL net/wireless/cfg80211 0xdba126c1 reg_initiator_name -EXPORT_SYMBOL net/wireless/cfg80211 0xde6684b3 freq_reg_info -EXPORT_SYMBOL net/wireless/cfg80211 0xe04cd5a9 cfg80211_rx_unexpected_4addr_frame -EXPORT_SYMBOL net/wireless/cfg80211 0xe0b59aa5 ieee80211_get_hdrlen_from_skb -EXPORT_SYMBOL net/wireless/cfg80211 0xe16b356c cfg80211_new_sta -EXPORT_SYMBOL net/wireless/cfg80211 0xe2f3a5af cfg80211_scan_done -EXPORT_SYMBOL net/wireless/cfg80211 0xe334e6df cfg80211_sinfo_alloc_tid_stats -EXPORT_SYMBOL net/wireless/cfg80211 0xe4e87106 wiphy_rfkill_set_hw_state_reason -EXPORT_SYMBOL net/wireless/cfg80211 0xe7d240e4 cfg80211_unlink_bss -EXPORT_SYMBOL net/wireless/cfg80211 0xe8602844 cfg80211_inform_bss_data -EXPORT_SYMBOL net/wireless/cfg80211 0xef265f27 cfg80211_chandef_create -EXPORT_SYMBOL net/wireless/cfg80211 0xf1013d7a cfg80211_remain_on_channel_expired -EXPORT_SYMBOL net/wireless/cfg80211 0xf1f3b9cc ieee80211_get_num_supported_channels -EXPORT_SYMBOL net/wireless/cfg80211 0xf31a5bcd wiphy_unregister -EXPORT_SYMBOL net/wireless/cfg80211 0xf3479e03 wiphy_free -EXPORT_SYMBOL net/wireless/cfg80211 0xf4b26138 cfg80211_rx_mlme_mgmt -EXPORT_SYMBOL net/wireless/cfg80211 0xf5596d89 cfg80211_get_p2p_attr -EXPORT_SYMBOL net/wireless/cfg80211 0xf5c2f566 ieee80211_amsdu_to_8023s -EXPORT_SYMBOL net/wireless/cfg80211 0xf73b993f cfg80211_sched_scan_stopped -EXPORT_SYMBOL net/wireless/cfg80211 0xf84eeaea wiphy_register -EXPORT_SYMBOL net/wireless/cfg80211 0xf98fca92 cfg80211_nan_match -EXPORT_SYMBOL net/wireless/cfg80211 0xfc388a9a cfg80211_tdls_oper_request -EXPORT_SYMBOL net/wireless/cfg80211 0xfcfe8133 cfg80211_rx_assoc_resp -EXPORT_SYMBOL net/wireless/lib80211 0x0b60c31f lib80211_crypt_info_init -EXPORT_SYMBOL net/wireless/lib80211 0x43dcf205 lib80211_get_crypto_ops -EXPORT_SYMBOL net/wireless/lib80211 0x46ad0048 lib80211_unregister_crypto_ops -EXPORT_SYMBOL net/wireless/lib80211 0x75c29816 lib80211_crypt_delayed_deinit -EXPORT_SYMBOL net/wireless/lib80211 0x9495fca6 lib80211_register_crypto_ops -EXPORT_SYMBOL net/wireless/lib80211 0xa0279b1a lib80211_crypt_info_free -EXPORT_SYMBOL sound/ac97_bus 0x5dc8a76f ac97_bus_type -EXPORT_SYMBOL sound/core/oss/snd-mixer-oss 0x6db595b6 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 0x45424e39 snd_seq_create_kernel_client -EXPORT_SYMBOL sound/core/seq/snd-seq 0x4d37d684 snd_seq_kernel_client_enqueue -EXPORT_SYMBOL sound/core/seq/snd-seq 0x6bb71038 snd_seq_delete_kernel_client -EXPORT_SYMBOL sound/core/seq/snd-seq 0x730552a2 snd_seq_kernel_client_write_poll -EXPORT_SYMBOL sound/core/seq/snd-seq 0x7ac2f329 snd_seq_expand_var_event -EXPORT_SYMBOL sound/core/seq/snd-seq 0x7b8699eb snd_seq_event_port_detach -EXPORT_SYMBOL sound/core/seq/snd-seq 0x8dec0188 snd_seq_event_port_attach -EXPORT_SYMBOL sound/core/seq/snd-seq 0xb8e448a0 snd_seq_set_queue_tempo -EXPORT_SYMBOL sound/core/seq/snd-seq 0xe934da1d snd_seq_dump_var_event -EXPORT_SYMBOL sound/core/seq/snd-seq-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 0x86fb5b75 snd_virmidi_new -EXPORT_SYMBOL sound/core/snd 0x009cfb2e snd_device_free -EXPORT_SYMBOL sound/core/snd 0x0116f164 snd_unregister_device -EXPORT_SYMBOL sound/core/snd 0x04825fa3 snd_ctl_remove_id -EXPORT_SYMBOL sound/core/snd 0x11c707d8 snd_jack_set_parent -EXPORT_SYMBOL sound/core/snd 0x157f10c9 snd_card_set_id -EXPORT_SYMBOL sound/core/snd 0x185708d3 _snd_ctl_add_follower -EXPORT_SYMBOL sound/core/snd 0x198788b4 snd_lookup_oss_minor_data -EXPORT_SYMBOL sound/core/snd 0x20a8d327 snd_ctl_unregister_ioctl_compat -EXPORT_SYMBOL sound/core/snd 0x24a94b26 snd_info_get_line -EXPORT_SYMBOL sound/core/snd 0x264039e3 snd_ctl_boolean_stereo_info -EXPORT_SYMBOL sound/core/snd 0x27fe04d6 snd_jack_add_new_kctl -EXPORT_SYMBOL sound/core/snd 0x29e087e8 snd_unregister_oss_device -EXPORT_SYMBOL sound/core/snd 0x2cba3280 snd_register_oss_device -EXPORT_SYMBOL sound/core/snd 0x326e1714 snd_ctl_replace -EXPORT_SYMBOL sound/core/snd 0x342a2354 copy_to_user_fromio -EXPORT_SYMBOL sound/core/snd 0x3971b4df snd_ecards_limit -EXPORT_SYMBOL sound/core/snd 0x42ddc43c snd_seq_root -EXPORT_SYMBOL sound/core/snd 0x465235ab snd_card_disconnect -EXPORT_SYMBOL sound/core/snd 0x4a3ea5c0 snd_request_card -EXPORT_SYMBOL sound/core/snd 0x4f41f2cf snd_card_register -EXPORT_SYMBOL sound/core/snd 0x58dc2dc4 snd_ctl_find_numid -EXPORT_SYMBOL sound/core/snd 0x59c848ee snd_component_add -EXPORT_SYMBOL sound/core/snd 0x602246d3 snd_power_wait -EXPORT_SYMBOL sound/core/snd 0x616e9c6b snd_ctl_new1 -EXPORT_SYMBOL sound/core/snd 0x6538d505 snd_ctl_remove -EXPORT_SYMBOL sound/core/snd 0x6ae278db snd_ctl_unregister_ioctl -EXPORT_SYMBOL sound/core/snd 0x73076315 snd_pci_quirk_lookup_id -EXPORT_SYMBOL sound/core/snd 0x75b5e263 snd_card_new -EXPORT_SYMBOL sound/core/snd 0x7760368f snd_card_file_add -EXPORT_SYMBOL sound/core/snd 0x7ab5b16c snd_ctl_rename_id -EXPORT_SYMBOL sound/core/snd 0x7b0b2116 snd_jack_new -EXPORT_SYMBOL sound/core/snd 0x7fb21a64 snd_jack_report -EXPORT_SYMBOL sound/core/snd 0x83cf4a7a snd_info_register -EXPORT_SYMBOL sound/core/snd 0x8883730c snd_jack_set_key -EXPORT_SYMBOL sound/core/snd 0x8df3789f snd_oss_info_register -EXPORT_SYMBOL sound/core/snd 0x8f595b11 snd_major -EXPORT_SYMBOL sound/core/snd 0x946bc74a snd_ctl_free_one -EXPORT_SYMBOL sound/core/snd 0x97b37953 snd_card_free_when_closed -EXPORT_SYMBOL sound/core/snd 0x9e6d79f8 snd_info_get_str -EXPORT_SYMBOL sound/core/snd 0xa035c0bb snd_info_free_entry -EXPORT_SYMBOL sound/core/snd 0xa72d3f7e snd_ctl_register_ioctl_compat -EXPORT_SYMBOL sound/core/snd 0xb0cab09c snd_ctl_boolean_mono_info -EXPORT_SYMBOL sound/core/snd 0xb2e5ae4a snd_lookup_minor_data -EXPORT_SYMBOL sound/core/snd 0xb6c0430a snd_card_free -EXPORT_SYMBOL sound/core/snd 0xb727d7d4 snd_card_file_remove -EXPORT_SYMBOL sound/core/snd 0xc356c693 snd_ctl_find_id -EXPORT_SYMBOL sound/core/snd 0xc40d65be snd_ctl_add -EXPORT_SYMBOL sound/core/snd 0xc4ad5ff8 snd_ctl_make_virtual_master -EXPORT_SYMBOL sound/core/snd 0xc5a6d10b release_and_free_resource -EXPORT_SYMBOL sound/core/snd 0xcc6a729f snd_ctl_enum_info -EXPORT_SYMBOL sound/core/snd 0xcfe84dc1 snd_device_new -EXPORT_SYMBOL sound/core/snd 0xd57d054e snd_mixer_oss_notify_callback -EXPORT_SYMBOL sound/core/snd 0xd81ae02b snd_register_device -EXPORT_SYMBOL sound/core/snd 0xe0500dbf snd_pci_quirk_lookup -EXPORT_SYMBOL sound/core/snd 0xe0b25f9d snd_ctl_register_ioctl -EXPORT_SYMBOL sound/core/snd 0xe4ebe5b8 snd_ctl_notify -EXPORT_SYMBOL sound/core/snd 0xe92bfabd snd_ctl_notify_one -EXPORT_SYMBOL sound/core/snd 0xf1b3ebb1 snd_device_register -EXPORT_SYMBOL sound/core/snd 0xf6601335 snd_info_create_card_entry -EXPORT_SYMBOL sound/core/snd 0xffbd5d3f snd_info_create_module_entry -EXPORT_SYMBOL sound/core/snd 0xfffd89db copy_from_user_toio -EXPORT_SYMBOL sound/core/snd-compress 0x8ea84761 snd_compr_malloc_pages -EXPORT_SYMBOL sound/core/snd-compress 0x9916e33f snd_compr_free_pages -EXPORT_SYMBOL sound/core/snd-hwdep 0x9b3e3133 snd_hwdep_new -EXPORT_SYMBOL sound/core/snd-pcm 0x00f2a8dc __snd_pcm_lib_xfer -EXPORT_SYMBOL sound/core/snd-pcm 0x0283dfe3 _snd_pcm_hw_params_any -EXPORT_SYMBOL sound/core/snd-pcm 0x03e48ddb snd_pcm_open_substream -EXPORT_SYMBOL sound/core/snd-pcm 0x04cda566 snd_interval_refine -EXPORT_SYMBOL sound/core/snd-pcm 0x10b1d658 snd_pcm_lib_ioctl -EXPORT_SYMBOL sound/core/snd-pcm 0x11eba48e snd_pcm_create_iec958_consumer_hw_params -EXPORT_SYMBOL sound/core/snd-pcm 0x176c3429 snd_pcm_hw_rule_add -EXPORT_SYMBOL sound/core/snd-pcm 0x1d027e4b snd_pcm_format_signed -EXPORT_SYMBOL sound/core/snd-pcm 0x21145763 snd_pcm_hw_constraint_step -EXPORT_SYMBOL sound/core/snd-pcm 0x23ddd03c snd_pcm_lib_free_vmalloc_buffer -EXPORT_SYMBOL sound/core/snd-pcm 0x2d80b334 snd_pcm_new -EXPORT_SYMBOL sound/core/snd-pcm 0x3796bdcc snd_pcm_format_little_endian -EXPORT_SYMBOL sound/core/snd-pcm 0x39bf9301 _snd_pcm_hw_param_setempty -EXPORT_SYMBOL sound/core/snd-pcm 0x3bab09fe snd_pcm_set_sync -EXPORT_SYMBOL sound/core/snd-pcm 0x418f984b snd_pcm_stop -EXPORT_SYMBOL sound/core/snd-pcm 0x4515051a snd_pcm_lib_malloc_pages -EXPORT_SYMBOL sound/core/snd-pcm 0x458b7863 snd_dma_buffer_mmap -EXPORT_SYMBOL sound/core/snd-pcm 0x45d6b8aa snd_pcm_set_managed_buffer_all -EXPORT_SYMBOL sound/core/snd-pcm 0x4ea74253 snd_pcm_lib_preallocate_free_for_all -EXPORT_SYMBOL sound/core/snd-pcm 0x4eac3de1 snd_pcm_hw_constraint_ratnums -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 0x57cd6c5d snd_pcm_release_substream -EXPORT_SYMBOL sound/core/snd-pcm 0x5e7f4920 snd_pcm_format_set_silence -EXPORT_SYMBOL sound/core/snd-pcm 0x650f8603 snd_pcm_format_silence_64 -EXPORT_SYMBOL sound/core/snd-pcm 0x68a24153 snd_pcm_format_physical_width -EXPORT_SYMBOL sound/core/snd-pcm 0x69255f54 snd_pcm_hw_limit_rates -EXPORT_SYMBOL sound/core/snd-pcm 0x6ae21fd7 snd_pcm_period_elapsed_under_stream_lock -EXPORT_SYMBOL sound/core/snd-pcm 0x6ef8fcd8 snd_pcm_format_linear -EXPORT_SYMBOL sound/core/snd-pcm 0x7144d4ce snd_pcm_hw_constraint_pow2 -EXPORT_SYMBOL sound/core/snd-pcm 0x71d65541 snd_sgbuf_get_chunk_size -EXPORT_SYMBOL sound/core/snd-pcm 0x74528e0b snd_pcm_period_elapsed -EXPORT_SYMBOL sound/core/snd-pcm 0x7491d70c snd_pcm_hw_constraint_minmax -EXPORT_SYMBOL sound/core/snd-pcm 0x769c3443 snd_pcm_set_ops -EXPORT_SYMBOL sound/core/snd-pcm 0x79dbb9c8 snd_sgbuf_get_page -EXPORT_SYMBOL sound/core/snd-pcm 0x7a4b2e79 snd_pcm_hw_constraint_msbits -EXPORT_SYMBOL sound/core/snd-pcm 0x8195ee5f snd_pcm_lib_free_pages -EXPORT_SYMBOL sound/core/snd-pcm 0x834dc955 snd_pcm_format_size -EXPORT_SYMBOL sound/core/snd-pcm 0x83add108 snd_pcm_kernel_ioctl -EXPORT_SYMBOL sound/core/snd-pcm 0x891ee4aa _snd_pcm_lib_alloc_vmalloc_buffer -EXPORT_SYMBOL sound/core/snd-pcm 0x8bd8535f snd_pcm_set_managed_buffer -EXPORT_SYMBOL sound/core/snd-pcm 0x8d36915b snd_pcm_hw_param_last -EXPORT_SYMBOL sound/core/snd-pcm 0x91f74e1c snd_pcm_suspend_all -EXPORT_SYMBOL sound/core/snd-pcm 0x94098ff8 snd_interval_list -EXPORT_SYMBOL sound/core/snd-pcm 0x94bc83ef snd_pcm_hw_refine -EXPORT_SYMBOL sound/core/snd-pcm 0x96b25143 snd_dma_free_pages -EXPORT_SYMBOL sound/core/snd-pcm 0x9b8ee658 snd_pcm_mmap_data -EXPORT_SYMBOL sound/core/snd-pcm 0x9e6ba91e snd_pcm_create_iec958_consumer -EXPORT_SYMBOL sound/core/snd-pcm 0xa39c166e snd_pcm_hw_constraint_integer -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 0xb330636e snd_pcm_hw_param_first -EXPORT_SYMBOL sound/core/snd-pcm 0xb3c6bf98 snd_pcm_lib_preallocate_pages_for_all -EXPORT_SYMBOL sound/core/snd-pcm 0xb57c9652 snd_pcm_hw_constraint_ranges -EXPORT_SYMBOL sound/core/snd-pcm 0xb9638db4 snd_pcm_rate_to_rate_bit -EXPORT_SYMBOL sound/core/snd-pcm 0xc930eb57 snd_pcm_new_internal -EXPORT_SYMBOL sound/core/snd-pcm 0xcb3b895d snd_pcm_hw_constraint_list -EXPORT_SYMBOL sound/core/snd-pcm 0xd1240f67 snd_pcm_hw_constraint_ratdens -EXPORT_SYMBOL sound/core/snd-pcm 0xd7593e17 snd_pcm_new_stream -EXPORT_SYMBOL sound/core/snd-pcm 0xd7eebaa7 snd_dma_alloc_pages_fallback -EXPORT_SYMBOL sound/core/snd-pcm 0xdab86057 snd_pcm_hw_rule_noresample -EXPORT_SYMBOL sound/core/snd-pcm 0xdc7067cd snd_pcm_lib_get_vmalloc_page -EXPORT_SYMBOL sound/core/snd-pcm 0xdeac20bd snd_dma_alloc_pages -EXPORT_SYMBOL sound/core/snd-pcm 0xe222618f snd_pcm_lib_preallocate_pages -EXPORT_SYMBOL sound/core/snd-pcm 0xe56a9336 snd_pcm_format_width -EXPORT_SYMBOL sound/core/snd-pcm 0xf5923743 snd_pcm_hw_constraint_mask64 -EXPORT_SYMBOL sound/core/snd-pcm 0xf7f243ba snd_sgbuf_get_addr -EXPORT_SYMBOL sound/core/snd-pcm 0xff6104d0 snd_pcm_rate_bit_to_rate -EXPORT_SYMBOL sound/core/snd-rawmidi 0x07a30df9 snd_rawmidi_kernel_open -EXPORT_SYMBOL sound/core/snd-rawmidi 0x13da3876 snd_rawmidi_transmit_empty -EXPORT_SYMBOL sound/core/snd-rawmidi 0x2c2f72eb snd_rawmidi_kernel_read -EXPORT_SYMBOL sound/core/snd-rawmidi 0x3c03f832 snd_rawmidi_receive -EXPORT_SYMBOL sound/core/snd-rawmidi 0x3da9399f snd_rawmidi_output_params -EXPORT_SYMBOL sound/core/snd-rawmidi 0x3df194a6 snd_rawmidi_drain_input -EXPORT_SYMBOL sound/core/snd-rawmidi 0x48737bb0 snd_rawmidi_new -EXPORT_SYMBOL sound/core/snd-rawmidi 0x51800eeb snd_rawmidi_info_select -EXPORT_SYMBOL sound/core/snd-rawmidi 0x54176d19 snd_rawmidi_set_ops -EXPORT_SYMBOL sound/core/snd-rawmidi 0x61dd529c snd_rawmidi_transmit -EXPORT_SYMBOL sound/core/snd-rawmidi 0x716892f7 snd_rawmidi_kernel_release -EXPORT_SYMBOL sound/core/snd-rawmidi 0x787b8ff6 snd_rawmidi_transmit_ack -EXPORT_SYMBOL sound/core/snd-rawmidi 0x80e93a4f __snd_rawmidi_transmit_peek -EXPORT_SYMBOL sound/core/snd-rawmidi 0x831e6bc3 snd_rawmidi_kernel_write -EXPORT_SYMBOL sound/core/snd-rawmidi 0x83ad8486 __snd_rawmidi_transmit_ack -EXPORT_SYMBOL sound/core/snd-rawmidi 0x8b1f1d2e snd_rawmidi_transmit_peek -EXPORT_SYMBOL sound/core/snd-rawmidi 0xd2d4e4cd snd_rawmidi_drop_output -EXPORT_SYMBOL sound/core/snd-rawmidi 0xd4d17af8 snd_rawmidi_proceed -EXPORT_SYMBOL sound/core/snd-rawmidi 0xdd234eeb snd_rawmidi_input_params -EXPORT_SYMBOL sound/core/snd-rawmidi 0xf63a1839 snd_rawmidi_drain_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 0x4a6ffef2 snd_seq_device_new -EXPORT_SYMBOL sound/core/snd-seq-device 0x6339b6d0 snd_seq_device_load_drivers -EXPORT_SYMBOL sound/core/snd-timer 0x19d74506 snd_timer_stop -EXPORT_SYMBOL sound/core/snd-timer 0x2a84446d snd_timer_start -EXPORT_SYMBOL sound/core/snd-timer 0x30d999b2 snd_timer_interrupt -EXPORT_SYMBOL sound/core/snd-timer 0x39497c67 snd_timer_continue -EXPORT_SYMBOL sound/core/snd-timer 0x3ca16607 snd_timer_global_new -EXPORT_SYMBOL sound/core/snd-timer 0x787e080d snd_timer_resolution -EXPORT_SYMBOL sound/core/snd-timer 0x7a0d6f00 snd_timer_close -EXPORT_SYMBOL sound/core/snd-timer 0x7cf3311a snd_timer_notify -EXPORT_SYMBOL sound/core/snd-timer 0x87e9d9ff snd_timer_instance_free -EXPORT_SYMBOL sound/core/snd-timer 0x88471dd3 snd_timer_new -EXPORT_SYMBOL sound/core/snd-timer 0xbe78e107 snd_timer_open -EXPORT_SYMBOL sound/core/snd-timer 0xc2904ef1 snd_timer_pause -EXPORT_SYMBOL sound/core/snd-timer 0xd841077c snd_timer_global_register -EXPORT_SYMBOL sound/core/snd-timer 0xdb2be79d snd_timer_global_free -EXPORT_SYMBOL sound/core/snd-timer 0xec7d3bb3 snd_timer_instance_new -EXPORT_SYMBOL sound/drivers/mpu401/snd-mpu401-uart 0x1b85bec6 snd_mpu401_uart_new -EXPORT_SYMBOL sound/drivers/mpu401/snd-mpu401-uart 0x6d629c59 snd_mpu401_uart_interrupt_tx -EXPORT_SYMBOL sound/drivers/mpu401/snd-mpu401-uart 0xc0fec227 snd_mpu401_uart_interrupt -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x01b1d66b snd_opl3_find_patch -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x05060a19 snd_opl3_regmap -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x1e366581 snd_opl3_timer_new -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x3d93ff67 snd_opl3_load_patch -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x7002788c snd_opl3_interrupt -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x7fcc2593 snd_opl3_create -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x85da4ac5 snd_opl3_hwdep_new -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xe7a881dc snd_opl3_init -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xf89772af snd_opl3_reset -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xfd684199 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 0x28616a34 snd_vx_resume -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x6549aae1 snd_vx_suspend -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x8566a298 snd_vx_dsp_load -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x892f62b8 snd_vx_check_reg_bit -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x9ef08183 snd_vx_setup_firmware -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xa046359d snd_vx_dsp_boot -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xd3cb6c83 snd_vx_load_boot_image -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xde5f8721 snd_vx_create -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xe671885c snd_vx_free_firmware -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xf1f04d23 snd_vx_irq_handler -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x02e52da2 amdtp_stream_add_pcm_hw_constraints -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x1c6f00e1 cmp_connection_reserve -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x1ce0d64e fw_iso_resources_free -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x20254e45 amdtp_syt_intervals -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x258cb9e3 cmp_connection_update -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x30a06601 fw_iso_resources_allocate -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x3f47711c fw_iso_resources_init -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x3f7991d9 fw_iso_resources_update -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x426de471 cmp_connection_break -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x4482c51f fw_iso_resources_destroy -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x45d0f750 avc_general_set_sig_fmt -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x4f02e8a5 amdtp_stream_init -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x5383eab8 cmp_connection_destroy -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x53ca18e8 amdtp_rate_table -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x565a1230 amdtp_stream_update -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x7dada4cf amdtp_stream_destroy -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x856de53c iso_packets_buffer_destroy -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x88626b66 cmp_connection_check_used -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x9f874b71 snd_fw_transaction -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x9fec290d amdtp_stream_pcm_abort -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xa1720a86 amdtp_stream_pcm_prepare -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xa843ef29 avc_general_get_plug_info -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xc08db55d cmp_connection_establish -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xc4b7101c cmp_connection_init -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xc9d5ab61 avc_general_get_sig_fmt -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xca41a6cb fcp_bus_reset -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xd6605029 fcp_avc_transaction -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xe38845c1 amdtp_stream_get_max_payload -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xe443b1e1 amdtp_stream_set_parameters -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xe765dcb9 iso_packets_buffer_init -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xe8878ba4 cmp_connection_release -EXPORT_SYMBOL sound/i2c/other/snd-ak4113 0x50c71d48 snd_ak4113_suspend -EXPORT_SYMBOL sound/i2c/other/snd-ak4113 0x56a3028f snd_ak4113_resume -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x4e636336 snd_ak4114_suspend -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x799bdd71 snd_ak4114_external_rate -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xbb89e4a4 snd_ak4114_build -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xbde0d73e snd_ak4114_reinit -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xc8ed5aec snd_ak4114_reg_write -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xe42b7ed4 snd_ak4114_check_rate_and_errors -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xecd3ade2 snd_ak4114_resume -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xffa6c2e8 snd_ak4114_create -EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x2d5167df snd_akm4xxx_build_controls -EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0xbe0996e1 snd_akm4xxx_reset -EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0xd8cdf8c5 snd_akm4xxx_init -EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0xe6cb5c45 snd_akm4xxx_write -EXPORT_SYMBOL sound/i2c/other/snd-pt2258 0x25d40873 snd_pt2258_build_controls -EXPORT_SYMBOL sound/i2c/other/snd-pt2258 0x835e6e0d snd_pt2258_reset -EXPORT_SYMBOL sound/i2c/snd-cs8427 0x0bdefe9c snd_cs8427_reg_write -EXPORT_SYMBOL sound/i2c/snd-cs8427 0x100139c6 snd_cs8427_iec958_pcm -EXPORT_SYMBOL sound/i2c/snd-cs8427 0x120985af snd_cs8427_create -EXPORT_SYMBOL sound/i2c/snd-cs8427 0x1d5675cc snd_cs8427_iec958_build -EXPORT_SYMBOL sound/i2c/snd-cs8427 0x6a0b09c2 snd_cs8427_init -EXPORT_SYMBOL sound/i2c/snd-cs8427 0x8097db49 snd_cs8427_iec958_active -EXPORT_SYMBOL sound/i2c/snd-i2c 0x2ff0a0de snd_i2c_sendbytes -EXPORT_SYMBOL sound/i2c/snd-i2c 0x5810d786 snd_i2c_bus_create -EXPORT_SYMBOL sound/i2c/snd-i2c 0x62f6bec8 snd_i2c_probeaddr -EXPORT_SYMBOL sound/i2c/snd-i2c 0x9d223cf6 snd_i2c_readbytes -EXPORT_SYMBOL sound/i2c/snd-i2c 0xe1302eb4 snd_i2c_device_free -EXPORT_SYMBOL sound/i2c/snd-i2c 0xff0dbd84 snd_i2c_device_create -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x0053f48d snd_ac97_update_power -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x041504e7 snd_ac97_pcm_close -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x07f41307 snd_ac97_pcm_double_rate_rules -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x0cf66cc0 snd_ac97_write_cache -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x1732744b snd_ac97_pcm_assign -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x274976c6 snd_ac97_bus -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x3aabe40c snd_ac97_mixer -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x5ed6f575 snd_ac97_suspend -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x65be7384 snd_ac97_update_bits -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x7a168ff2 snd_ac97_write -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x8336f0bd snd_ac97_tune_hardware -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x9673d69e snd_ac97_read -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xa1aea6a7 snd_ac97_set_rate -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xa556c2bb snd_ac97_resume -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xb6556d2f snd_ac97_update -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xc78a950a snd_ac97_pcm_open -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xcbb943b9 snd_ac97_get_short_name -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x04a856f7 snd_emu10k1_voice_alloc -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x157903a8 snd_emu10k1_synth_bzero -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x1d2bc2e0 snd_emu10k1_voice_free -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x23a3a00d snd_emu10k1_synth_alloc -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x2a8e5074 snd_emu10k1_ptr_read -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x2d9fb2aa snd_emu10k1_synth_free -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x744b63c1 snd_emu10k1_ptr_write -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x8ded42e3 snd_emu10k1_memblk_map -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xceead5cb snd_emu10k1_synth_copy_from_user -EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0x1be1ffce snd_ice1712_akm4xxx_build_controls -EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0x7aec3e96 snd_ice1712_akm4xxx_free -EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0xc5d2cb56 snd_ice1712_akm4xxx_init -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x01c66b03 oxygen_write32_masked -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x0d9a22cf oxygen_write32 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x14d1d3a1 oxygen_write_i2c -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x241297a9 oxygen_pci_shutdown -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x34abfd0e oxygen_write16 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x40640049 oxygen_write16_masked -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x4a70903c oxygen_write8_masked -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x649481fd oxygen_write_ac97 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x7b98bd12 oxygen_write_ac97_masked -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x8413d305 oxygen_read16 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x914fe30c oxygen_pci_pm -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x948ba939 oxygen_write8 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x97bc2031 oxygen_write_uart -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xaa15bd36 oxygen_write_spi -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xb81c8fcd oxygen_reset_uart -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xe145979f oxygen_pci_probe -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xe5084e42 oxygen_read32 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xe7e711b1 oxygen_read8 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xf6353124 oxygen_read_ac97 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xf8d595f8 oxygen_update_dac_routing -EXPORT_SYMBOL sound/pci/trident/snd-trident 0x47b94912 snd_trident_start_voice -EXPORT_SYMBOL sound/pci/trident/snd-trident 0x6b101dd8 snd_trident_free_voice -EXPORT_SYMBOL sound/pci/trident/snd-trident 0xac761d8b snd_trident_alloc_voice -EXPORT_SYMBOL sound/pci/trident/snd-trident 0xbafacbce snd_trident_stop_voice -EXPORT_SYMBOL sound/pci/trident/snd-trident 0xfe3c2091 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 0x09f8de2e adau1372_probe -EXPORT_SYMBOL sound/soc/codecs/snd-soc-lpass-wsa-macro 0xf0c70c24 wsa_macro_set_spkr_mode -EXPORT_SYMBOL sound/soc/codecs/snd-soc-pcm3060 0x24a1d02b pcm3060_probe -EXPORT_SYMBOL sound/soc/codecs/snd-soc-pcm3060 0x91e92414 pcm3060_regmap -EXPORT_SYMBOL sound/soc/codecs/snd-soc-rt715 0xed2acb24 hda_to_sdw -EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic23 0x82730682 tlv320aic23_probe -EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic23 0xac5f3dd0 tlv320aic23_regmap -EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic32x4 0x7bddad9d aic32x4_probe -EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic32x4 0x9fc28c01 aic32x4_regmap_config -EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic32x4 0xd2267e98 aic32x4_remove -EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic3x 0x2aa44d6c aic3x_remove -EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic3x 0x6132f2ee aic3x_probe -EXPORT_SYMBOL sound/soc/codecs/snd-soc-wcd-mbhc 0x2e1390e0 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 0x55ba9359 wcd_dt_parse_mbhc_data -EXPORT_SYMBOL sound/soc/codecs/snd-soc-wcd-mbhc 0x789ebe56 wcd_mbhc_set_hph_type -EXPORT_SYMBOL sound/soc/codecs/snd-soc-wcd-mbhc 0x8a453f56 wcd_mbhc_init -EXPORT_SYMBOL sound/soc/codecs/snd-soc-wcd-mbhc 0xa5758a49 wcd_mbhc_get_hph_type -EXPORT_SYMBOL sound/soc/codecs/snd-soc-wcd-mbhc 0xd094df47 wcd_mbhc_deinit -EXPORT_SYMBOL sound/soc/codecs/snd-soc-wcd-mbhc 0xe2beca26 wcd_mbhc_stop -EXPORT_SYMBOL sound/soc/mediatek/mt8192/snd-soc-mt8192-afe 0x4c045ba2 mt8192_afe_gpio_init -EXPORT_SYMBOL sound/soc/mediatek/mt8192/snd-soc-mt8192-afe 0xf96da928 mt8192_afe_gpio_request -EXPORT_SYMBOL sound/soc/qcom/qdsp6/q6afe 0x8b4490e6 q6afe_unvote_lpass_core_hw -EXPORT_SYMBOL sound/soc/qcom/qdsp6/q6afe 0xa1d5c1b7 q6afe_vote_lpass_core_hw -EXPORT_SYMBOL sound/soc/qcom/snd-soc-qcom-common 0x572edcfd qcom_snd_parse_of -EXPORT_SYMBOL sound/soc/snd-soc-core 0x2424bfb8 snd_soc_alloc_ac97_component -EXPORT_SYMBOL sound/soc/sof/imx/imx-common 0x58973e31 imx8_dump -EXPORT_SYMBOL sound/soc/sof/imx/snd-sof-imx8 0xc0abe09e sof_imx8_ops -EXPORT_SYMBOL sound/soc/sof/imx/snd-sof-imx8 0xde39a0e9 sof_imx8x_ops -EXPORT_SYMBOL sound/soc/sof/imx/snd-sof-imx8m 0x7df0c4c1 sof_imx8m_ops -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x0e586e53 sof_io_read -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x0fa10de4 snd_sof_ipc_init -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x104b5f23 snd_sof_dsp_update_bits64 -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x1d22a5ea sof_ipc_tx_message_no_pm -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x1db09836 snd_sof_ipc_reply -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x1e4815f1 sof_dai_get_mclk -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x20334670 sof_mailbox_write -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x20dab853 snd_sof_handle_fw_exception -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x23bb59e1 snd_sof_runtime_resume -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x27c6507b snd_sof_dsp_update_bits -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x28ffddbe snd_sof_suspend -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x2a2ff21d snd_sof_pcm_period_elapsed -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x2e1992fc snd_sof_dsp_update_bits64_unlocked -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x2e2f386c snd_sof_runtime_idle -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x31d22744 sof_pcm_dai_link_fixup -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x33de8739 snd_sof_create_page_table -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x3814d981 snd_sof_fw_unload -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x38389a7b snd_sof_load_topology -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x3eca7dce snd_sof_ipc_msgs_rx -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x4589dd84 snd_sof_dsp_update_bits_forced -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x504c9ede snd_sof_ipc_free -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x53efff61 snd_sof_dsp_panic -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x5672e908 snd_sof_init_trace -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x5884d425 sof_machine_register -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x58e3d286 snd_sof_resume -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x59af9711 sof_io_write64 -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x5d1dc91c snd_sof_ipc_valid -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x5fdd5457 snd_sof_complete -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x600f4348 snd_sof_run_firmware -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x69dce2a5 sof_machine_unregister -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x6adc532c snd_sof_ipc_stream_posn -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x73dd3aae snd_sof_fw_parse_ext_data -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x76d63e7e snd_sof_device_remove -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x784aecce snd_sof_device_probe -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x798ba431 snd_sof_device_probe_completed -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x79c98152 sof_fw_ready -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x82daa870 snd_sof_load_firmware_raw -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x83b4f43f sof_block_read -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x872a6da0 snd_sof_dsp_mailbox_init -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x88bfeee0 snd_sof_trace_notify_for_error -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x8b2c4d38 sof_machine_check -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x93ad8c45 snd_sof_dsp_only_d0i3_compatible_stream_active -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xa40963f6 snd_sof_load_firmware -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xa9e4ad4c sof_io_read64 -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xb4814947 snd_sof_free_trace -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xbfdfb764 snd_sof_parse_module_memcpy -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xc35c6cad sof_mailbox_read -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xc519e7e9 sof_dai_get_bclk -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xcddfb90c snd_sof_dsp_update_bits_unlocked -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xcf1f8c20 snd_sof_pci_update_bits -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xcfdc5f98 sof_ipc_tx_message -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xd3224a4a snd_sof_release_trace -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xd96a2bd2 sof_block_write -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xe7cf5041 sof_io_write -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xe7d62b8c snd_sof_get_status -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xeb830e00 snd_sof_load_firmware_memcpy -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xed27b849 snd_sof_device_shutdown -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xee4da84e snd_sof_prepare -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xfb5271ce snd_sof_runtime_suspend -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xfe50aae7 snd_sof_ipc_set_get_comp_data -EXPORT_SYMBOL sound/soundcore 0x4df7c89c register_sound_special -EXPORT_SYMBOL sound/soundcore 0x6f2888ab register_sound_special_device -EXPORT_SYMBOL sound/soundcore 0x72f85ef8 sound_class -EXPORT_SYMBOL sound/soundcore 0x7afc9d8a unregister_sound_mixer -EXPORT_SYMBOL sound/soundcore 0x99c95fa5 unregister_sound_special -EXPORT_SYMBOL sound/soundcore 0xb5c42636 register_sound_mixer -EXPORT_SYMBOL sound/soundcore 0xcd083b10 unregister_sound_dsp -EXPORT_SYMBOL sound/soundcore 0xf2becce4 register_sound_dsp -EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x015a5818 snd_emux_new -EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x5a05e1d4 snd_emux_terminate_all -EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x655cb202 snd_sf_linear_to_log -EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x7b6fffdd snd_emux_lock_voice -EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0xe0454776 snd_emux_free -EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0xe3ff81fc snd_emux_register -EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0xeea85504 snd_emux_unlock_voice -EXPORT_SYMBOL sound/synth/snd-util-mem 0x0eda33fa snd_util_memhdr_new -EXPORT_SYMBOL sound/synth/snd-util-mem 0x2a48197f snd_util_mem_alloc -EXPORT_SYMBOL sound/synth/snd-util-mem 0x6517719f __snd_util_mem_free -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 0x6db0dc60 __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 0x00140939 pci_irq_get_affinity -EXPORT_SYMBOL vmlinux 0x00148653 vsnprintf -EXPORT_SYMBOL vmlinux 0x002c0d21 cdrom_mode_sense -EXPORT_SYMBOL vmlinux 0x0038ff54 ipv6_dev_get_saddr -EXPORT_SYMBOL vmlinux 0x003ae710 udp_lib_setsockopt -EXPORT_SYMBOL vmlinux 0x0060cb7e security_inet_conn_request -EXPORT_SYMBOL vmlinux 0x00890f96 mmc_get_card -EXPORT_SYMBOL vmlinux 0x00ad0408 acpi_bus_get_status -EXPORT_SYMBOL vmlinux 0x00b4e615 posix_acl_equiv_mode -EXPORT_SYMBOL vmlinux 0x00c47c2f eth_validate_addr -EXPORT_SYMBOL vmlinux 0x00d14307 generic_fadvise -EXPORT_SYMBOL vmlinux 0x00d7e722 vme_lm_count -EXPORT_SYMBOL vmlinux 0x00d8a671 vm_insert_page -EXPORT_SYMBOL vmlinux 0x00d9f112 flow_block_cb_incref -EXPORT_SYMBOL vmlinux 0x00ea01f7 locks_free_lock -EXPORT_SYMBOL vmlinux 0x00f9d56a kernel_param_lock -EXPORT_SYMBOL vmlinux 0x01000e51 schedule -EXPORT_SYMBOL vmlinux 0x011b9690 from_kuid -EXPORT_SYMBOL vmlinux 0x011bab86 prepare_creds -EXPORT_SYMBOL vmlinux 0x0129c4f8 par_io_data_set -EXPORT_SYMBOL vmlinux 0x012de2ea xudma_rchanrt_read -EXPORT_SYMBOL vmlinux 0x0136a9a9 ppp_unregister_compressor -EXPORT_SYMBOL vmlinux 0x0137a77d follow_down_one -EXPORT_SYMBOL vmlinux 0x013f26ae dma_fence_get_stub -EXPORT_SYMBOL vmlinux 0x013f3743 xfrm_policy_flush -EXPORT_SYMBOL vmlinux 0x0147812c kblockd_mod_delayed_work_on -EXPORT_SYMBOL vmlinux 0x014ce4e3 key_invalidate -EXPORT_SYMBOL vmlinux 0x01505d85 imx_scu_call_rpc -EXPORT_SYMBOL vmlinux 0x015af7f4 system_state -EXPORT_SYMBOL vmlinux 0x015d5b63 fs_context_for_submount -EXPORT_SYMBOL vmlinux 0x01757935 rdmacg_register_device -EXPORT_SYMBOL vmlinux 0x017de3d5 nr_cpu_ids -EXPORT_SYMBOL vmlinux 0x0180632c adjust_managed_page_count -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 0x01a3f93a alloc_skb_with_frags -EXPORT_SYMBOL vmlinux 0x01aaba3a devm_devfreq_register_opp_notifier -EXPORT_SYMBOL vmlinux 0x01b6865c xa_get_mark -EXPORT_SYMBOL vmlinux 0x01bcb70b netdev_adjacent_change_commit -EXPORT_SYMBOL vmlinux 0x01bf55fc paddr_vmcoreinfo_note -EXPORT_SYMBOL vmlinux 0x01d894cf clear_page_dirty_for_io -EXPORT_SYMBOL vmlinux 0x01dddf17 i2c_transfer -EXPORT_SYMBOL vmlinux 0x01f50854 pmem_should_map_pages -EXPORT_SYMBOL vmlinux 0x0209f3a7 secure_ipv6_port_ephemeral -EXPORT_SYMBOL vmlinux 0x020ba461 mdiobus_write -EXPORT_SYMBOL vmlinux 0x020c7b59 zap_page_range -EXPORT_SYMBOL vmlinux 0x020dbf27 bitmap_alloc -EXPORT_SYMBOL vmlinux 0x021fc5d7 pid_task -EXPORT_SYMBOL vmlinux 0x0221a1f8 pci_alloc_irq_vectors_affinity -EXPORT_SYMBOL vmlinux 0x02293ac3 dma_fence_chain_ops -EXPORT_SYMBOL vmlinux 0x0231f1a4 inet_csk_reqsk_queue_drop_and_put -EXPORT_SYMBOL vmlinux 0x0248efd3 kstrtobool_from_user -EXPORT_SYMBOL vmlinux 0x024d9af9 __lock_sock_fast -EXPORT_SYMBOL vmlinux 0x0250f584 netdev_alert -EXPORT_SYMBOL vmlinux 0x025309e2 netdev_bind_sb_channel_queue -EXPORT_SYMBOL vmlinux 0x025c502a i2c_smbus_read_byte -EXPORT_SYMBOL vmlinux 0x025d102b bio_integrity_add_page -EXPORT_SYMBOL vmlinux 0x0274dc2b netif_get_num_default_rss_queues -EXPORT_SYMBOL vmlinux 0x0296695f refcount_warn_saturate -EXPORT_SYMBOL vmlinux 0x02985bcc iov_iter_xarray -EXPORT_SYMBOL vmlinux 0x02b8ab42 sg_copy_to_buffer -EXPORT_SYMBOL vmlinux 0x02c065f8 ucc_set_qe_mux_mii_mng -EXPORT_SYMBOL vmlinux 0x02c1e43c gnet_stats_finish_copy -EXPORT_SYMBOL vmlinux 0x02dc7020 dev_trans_start -EXPORT_SYMBOL vmlinux 0x02e51780 setattr_should_drop_suidgid -EXPORT_SYMBOL vmlinux 0x0314028b km_query -EXPORT_SYMBOL vmlinux 0x031a7afb __nd_driver_register -EXPORT_SYMBOL vmlinux 0x032133f6 eth_header_cache_update -EXPORT_SYMBOL vmlinux 0x032c3fc8 no_seek_end_llseek -EXPORT_SYMBOL vmlinux 0x0330f3ed sock_gettstamp -EXPORT_SYMBOL vmlinux 0x0334795d icst307_s2div -EXPORT_SYMBOL vmlinux 0x0334da4e scsi_command_size_tbl -EXPORT_SYMBOL vmlinux 0x033808c0 fget_raw -EXPORT_SYMBOL vmlinux 0x033f661c pm860x_reg_read -EXPORT_SYMBOL vmlinux 0x0341b31c msi_desc_to_pci_dev -EXPORT_SYMBOL vmlinux 0x0349726f tegra194_miscreg_mask_serror -EXPORT_SYMBOL vmlinux 0x0356b3cc insert_inode_locked4 -EXPORT_SYMBOL vmlinux 0x035a990c tcp_ld_RTO_revert -EXPORT_SYMBOL vmlinux 0x0360d67f make_flow_keys_digest -EXPORT_SYMBOL vmlinux 0x03630bc9 end_buffer_write_sync -EXPORT_SYMBOL vmlinux 0x0363d600 kernel_sendpage -EXPORT_SYMBOL vmlinux 0x0366307a console_suspend_enabled -EXPORT_SYMBOL vmlinux 0x037a0cba kfree -EXPORT_SYMBOL vmlinux 0x037bec97 rproc_da_to_va -EXPORT_SYMBOL vmlinux 0x03815f35 ledtrig_disk_activity -EXPORT_SYMBOL vmlinux 0x03927d5e fs_context_for_mount -EXPORT_SYMBOL vmlinux 0x0394443e seq_lseek -EXPORT_SYMBOL vmlinux 0x0397edd5 fb_edid_to_monspecs -EXPORT_SYMBOL vmlinux 0x039daa34 blk_queue_virt_boundary -EXPORT_SYMBOL vmlinux 0x03b70ca2 dquot_free_inode -EXPORT_SYMBOL vmlinux 0x03bac3a0 param_get_ulong -EXPORT_SYMBOL vmlinux 0x03bf0e5a acpi_walk_resource_buffer -EXPORT_SYMBOL vmlinux 0x03ccf96a dquot_initialize -EXPORT_SYMBOL vmlinux 0x03cd1656 mmc_remove_host -EXPORT_SYMBOL vmlinux 0x03da77c4 ptp_schedule_worker -EXPORT_SYMBOL vmlinux 0x03e2d373 neigh_destroy -EXPORT_SYMBOL vmlinux 0x03e302b4 rtnl_unicast -EXPORT_SYMBOL vmlinux 0x03fd2571 vm_unmap_ram -EXPORT_SYMBOL vmlinux 0x04030bb1 tegra_ivc_reset -EXPORT_SYMBOL vmlinux 0x0405ced2 fwnode_mdiobus_register_phy -EXPORT_SYMBOL vmlinux 0x040b2721 param_get_int -EXPORT_SYMBOL vmlinux 0x041354bf request_firmware -EXPORT_SYMBOL vmlinux 0x0415857f follow_pfn -EXPORT_SYMBOL vmlinux 0x04164345 key_revoke -EXPORT_SYMBOL vmlinux 0x041ef8bc ipv6_skip_exthdr -EXPORT_SYMBOL vmlinux 0x0435c99c cdrom_open -EXPORT_SYMBOL vmlinux 0x04373ece truncate_setsize -EXPORT_SYMBOL vmlinux 0x04482cdb __refrigerator -EXPORT_SYMBOL vmlinux 0x04495693 simple_rmdir -EXPORT_SYMBOL vmlinux 0x04673adb qman_ip_rev -EXPORT_SYMBOL vmlinux 0x04736410 pci_read_vpd -EXPORT_SYMBOL vmlinux 0x0474edef kstrtou16_from_user -EXPORT_SYMBOL vmlinux 0x0479aac1 seq_list_next_rcu -EXPORT_SYMBOL vmlinux 0x047fa2fb tcp_select_initial_window -EXPORT_SYMBOL vmlinux 0x04819e8c vme_init_bridge -EXPORT_SYMBOL vmlinux 0x04844d3f jbd2_complete_transaction -EXPORT_SYMBOL vmlinux 0x0484c6c4 acpi_enter_sleep_state_prep -EXPORT_SYMBOL vmlinux 0x04863e28 hdmi_audio_infoframe_pack_only -EXPORT_SYMBOL vmlinux 0x04898f01 dev_getbyhwaddr_rcu -EXPORT_SYMBOL vmlinux 0x048efc00 scsi_report_opcode -EXPORT_SYMBOL vmlinux 0x048f143a flow_rule_match_enc_ip -EXPORT_SYMBOL vmlinux 0x04bd92a8 pm860x_reg_write -EXPORT_SYMBOL vmlinux 0x04c64d68 phy_ethtool_ksettings_get -EXPORT_SYMBOL vmlinux 0x04c7efc6 dquot_disable -EXPORT_SYMBOL vmlinux 0x04d9bf4e blk_set_stacking_limits -EXPORT_SYMBOL vmlinux 0x04df34da find_inode_rcu -EXPORT_SYMBOL vmlinux 0x04ea5d10 ksize -EXPORT_SYMBOL vmlinux 0x04ed1664 device_get_mac_address -EXPORT_SYMBOL vmlinux 0x04f407e9 ipv6_chk_prefix -EXPORT_SYMBOL vmlinux 0x04f9c953 pci_find_next_bus -EXPORT_SYMBOL vmlinux 0x04fa4d31 flow_indr_dev_register -EXPORT_SYMBOL vmlinux 0x050877b9 dmi_first_match -EXPORT_SYMBOL vmlinux 0x050b2772 loop_register_transfer -EXPORT_SYMBOL vmlinux 0x051d58e8 dma_fence_wait_any_timeout -EXPORT_SYMBOL vmlinux 0x05240ee7 percpu_counter_batch -EXPORT_SYMBOL vmlinux 0x0532273b config_group_find_item -EXPORT_SYMBOL vmlinux 0x05353e28 zerocopy_sg_from_iter -EXPORT_SYMBOL vmlinux 0x05391227 param_set_invbool -EXPORT_SYMBOL vmlinux 0x054496b4 schedule_timeout_interruptible -EXPORT_SYMBOL vmlinux 0x05528139 devfreq_update_target -EXPORT_SYMBOL vmlinux 0x0555a6fb is_bad_inode -EXPORT_SYMBOL vmlinux 0x0559dc14 netlink_unicast -EXPORT_SYMBOL vmlinux 0x055e77e8 jiffies_64 -EXPORT_SYMBOL vmlinux 0x055e9300 sock_queue_err_skb -EXPORT_SYMBOL vmlinux 0x057a9916 proc_create_seq_private -EXPORT_SYMBOL vmlinux 0x0598790f dev_change_proto_down_generic -EXPORT_SYMBOL vmlinux 0x05996295 udp_gro_complete -EXPORT_SYMBOL vmlinux 0x059e1482 __traceiter_dma_fence_emit -EXPORT_SYMBOL vmlinux 0x05b27974 posix_test_lock -EXPORT_SYMBOL vmlinux 0x05b9ac39 scsi_block_requests -EXPORT_SYMBOL vmlinux 0x05d0edb9 devm_ioremap -EXPORT_SYMBOL vmlinux 0x05e12ae3 of_get_property -EXPORT_SYMBOL vmlinux 0x05e28234 netdev_master_upper_dev_link -EXPORT_SYMBOL vmlinux 0x05f48c17 sock_kfree_s -EXPORT_SYMBOL vmlinux 0x060ba97c gen_pool_free_owner -EXPORT_SYMBOL vmlinux 0x06149c8a dquot_quota_off -EXPORT_SYMBOL vmlinux 0x061651be strcat -EXPORT_SYMBOL vmlinux 0x06204667 fb_prepare_logo -EXPORT_SYMBOL vmlinux 0x0623934d fqdir_init -EXPORT_SYMBOL vmlinux 0x062505d2 clkdev_add -EXPORT_SYMBOL vmlinux 0x0625e189 dquot_reclaim_space_nodirty -EXPORT_SYMBOL vmlinux 0x0634100a bitmap_parselist_user -EXPORT_SYMBOL vmlinux 0x063de8f4 security_sock_graft -EXPORT_SYMBOL vmlinux 0x066270b9 mmc_sw_reset -EXPORT_SYMBOL vmlinux 0x06632010 __hw_addr_ref_unsync_dev -EXPORT_SYMBOL vmlinux 0x0668b595 _kstrtoul -EXPORT_SYMBOL vmlinux 0x066de774 nf_log_unbind_pf -EXPORT_SYMBOL vmlinux 0x067dbedb pm860x_set_bits -EXPORT_SYMBOL vmlinux 0x069142cb phy_queue_state_machine -EXPORT_SYMBOL vmlinux 0x0694ec35 jbd2_journal_free_reserved -EXPORT_SYMBOL vmlinux 0x069832f0 dst_destroy -EXPORT_SYMBOL vmlinux 0x06991437 kernel_sendmsg_locked -EXPORT_SYMBOL vmlinux 0x06a53811 pcie_get_width_cap -EXPORT_SYMBOL vmlinux 0x06a5cfcf inet6_add_protocol -EXPORT_SYMBOL vmlinux 0x06a5ee4b cpufreq_get_policy -EXPORT_SYMBOL vmlinux 0x06b3111b blk_mq_requeue_request -EXPORT_SYMBOL vmlinux 0x06bd88b5 ucs2_strnlen -EXPORT_SYMBOL vmlinux 0x06c854a5 mmc_retune_timer_stop -EXPORT_SYMBOL vmlinux 0x06ddb537 amba_driver_unregister -EXPORT_SYMBOL vmlinux 0x06de5632 udp_read_sock -EXPORT_SYMBOL vmlinux 0x06e4bc89 scsi_track_queue_full -EXPORT_SYMBOL vmlinux 0x06e8f175 pci_bus_read_config_byte -EXPORT_SYMBOL vmlinux 0x06fc2635 ip_options_rcv_srr -EXPORT_SYMBOL vmlinux 0x070ff6ab blk_rq_count_integrity_sg -EXPORT_SYMBOL vmlinux 0x0711edc8 xudma_dev_get_tisci_rm -EXPORT_SYMBOL vmlinux 0x07166232 input_register_handler -EXPORT_SYMBOL vmlinux 0x0717ceab skb_mac_gso_segment -EXPORT_SYMBOL vmlinux 0x07258b08 mfd_cell_disable -EXPORT_SYMBOL vmlinux 0x072f901c vme_master_rmw -EXPORT_SYMBOL vmlinux 0x073455aa vfs_fsync_range -EXPORT_SYMBOL vmlinux 0x0745a981 xa_erase -EXPORT_SYMBOL vmlinux 0x0767145f __blockdev_direct_IO -EXPORT_SYMBOL vmlinux 0x0781ec97 logic_insl -EXPORT_SYMBOL vmlinux 0x07a890c8 fb_alloc_cmap -EXPORT_SYMBOL vmlinux 0x07afa0a9 tcp_sock_set_cork -EXPORT_SYMBOL vmlinux 0x07cc4a5d printk_timed_ratelimit -EXPORT_SYMBOL vmlinux 0x07ceeac9 panic_notifier_list -EXPORT_SYMBOL vmlinux 0x07d8a577 vfs_symlink -EXPORT_SYMBOL vmlinux 0x07db17be qman_create_fq -EXPORT_SYMBOL vmlinux 0x07db6655 kthread_bind -EXPORT_SYMBOL vmlinux 0x07ddf177 generic_splice_sendpage -EXPORT_SYMBOL vmlinux 0x07f57478 pci_unmap_iospace -EXPORT_SYMBOL vmlinux 0x07fbf3dc mipi_dsi_picture_parameter_set -EXPORT_SYMBOL vmlinux 0x0800473f __cond_resched -EXPORT_SYMBOL vmlinux 0x0805f2c8 ecryptfs_get_auth_tok_key -EXPORT_SYMBOL vmlinux 0x080e6fcc neigh_table_clear -EXPORT_SYMBOL vmlinux 0x08125c5b sync_inodes_sb -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 0x0839757c scsi_device_resume -EXPORT_SYMBOL vmlinux 0x083eb21c rfkill_unregister -EXPORT_SYMBOL vmlinux 0x0858a4c1 vlan_vids_del_by_dev -EXPORT_SYMBOL vmlinux 0x0882a449 security_xfrm_policy_alloc -EXPORT_SYMBOL vmlinux 0x088522ec tty_chars_in_buffer -EXPORT_SYMBOL vmlinux 0x08889032 dev_lstats_read -EXPORT_SYMBOL vmlinux 0x08990023 dquot_get_next_dqblk -EXPORT_SYMBOL vmlinux 0x08b681a4 neigh_seq_next -EXPORT_SYMBOL vmlinux 0x08bcc04a softnet_data -EXPORT_SYMBOL vmlinux 0x08c12f50 pci_enable_ptm -EXPORT_SYMBOL vmlinux 0x08c2b256 d_mark_dontcache -EXPORT_SYMBOL vmlinux 0x08e39398 cmd_db_read_addr -EXPORT_SYMBOL vmlinux 0x08f323dc scsi_partsize -EXPORT_SYMBOL vmlinux 0x08f7d32e xsk_clear_rx_need_wakeup -EXPORT_SYMBOL vmlinux 0x08fc194a of_translate_dma_region -EXPORT_SYMBOL vmlinux 0x09168085 neigh_parms_release -EXPORT_SYMBOL vmlinux 0x0916ec4d inet_dev_addr_type -EXPORT_SYMBOL vmlinux 0x09275a62 input_close_device -EXPORT_SYMBOL vmlinux 0x092e26bf acpi_remove_address_space_handler -EXPORT_SYMBOL vmlinux 0x093712e5 acpi_purge_cached_objects -EXPORT_SYMBOL vmlinux 0x0942b2ed simple_dir_operations -EXPORT_SYMBOL vmlinux 0x094a88ad pci_bus_set_ops -EXPORT_SYMBOL vmlinux 0x095daaed param_set_short -EXPORT_SYMBOL vmlinux 0x096bb7f7 __dynamic_dev_dbg -EXPORT_SYMBOL vmlinux 0x096dcc70 mdio_device_remove -EXPORT_SYMBOL vmlinux 0x09769037 dmt_modes -EXPORT_SYMBOL vmlinux 0x097af021 neigh_proc_dointvec_jiffies -EXPORT_SYMBOL vmlinux 0x097e90e9 unregister_shrinker -EXPORT_SYMBOL vmlinux 0x098b71c6 fb_dealloc_cmap -EXPORT_SYMBOL vmlinux 0x098d3f89 tty_insert_flip_string_flags -EXPORT_SYMBOL vmlinux 0x0998cc3c hdmi_infoframe_unpack -EXPORT_SYMBOL vmlinux 0x099e8273 netlbl_calipso_ops_register -EXPORT_SYMBOL vmlinux 0x09c444f5 __lock_buffer -EXPORT_SYMBOL vmlinux 0x09c8c2f8 pnp_disable_dev -EXPORT_SYMBOL vmlinux 0x09d44df9 in_lock_functions -EXPORT_SYMBOL vmlinux 0x09da0ba4 xa_set_mark -EXPORT_SYMBOL vmlinux 0x09dcc0d0 ilookup5_nowait -EXPORT_SYMBOL vmlinux 0x09f9b261 xudma_rchan_put -EXPORT_SYMBOL vmlinux 0x09fce9e8 blkdev_get_by_path -EXPORT_SYMBOL vmlinux 0x0a012f73 mb_cache_entry_touch -EXPORT_SYMBOL vmlinux 0x0a0ebc08 __xa_cmpxchg -EXPORT_SYMBOL vmlinux 0x0a1dbc76 tcp_rx_skb_cache_key -EXPORT_SYMBOL vmlinux 0x0a270ff5 scsi_is_sdev_device -EXPORT_SYMBOL vmlinux 0x0a2ba484 tcf_idr_create_from_flags -EXPORT_SYMBOL vmlinux 0x0a36968f register_netdevice_notifier_net -EXPORT_SYMBOL vmlinux 0x0a3ccb12 xfrm_state_check_expire -EXPORT_SYMBOL vmlinux 0x0a497245 udp_prot -EXPORT_SYMBOL vmlinux 0x0a516591 i2c_add_adapter -EXPORT_SYMBOL vmlinux 0x0a6a804e touchscreen_parse_properties -EXPORT_SYMBOL vmlinux 0x0a6f833a __dev_get_by_index -EXPORT_SYMBOL vmlinux 0x0a770832 register_memory_notifier -EXPORT_SYMBOL vmlinux 0x0a818c4d take_dentry_name_snapshot -EXPORT_SYMBOL vmlinux 0x0aa309cf synchronize_hardirq -EXPORT_SYMBOL vmlinux 0x0aaccc92 pci_remap_iospace -EXPORT_SYMBOL vmlinux 0x0aaf7577 flow_rule_match_ipv4_addrs -EXPORT_SYMBOL vmlinux 0x0abdd11f path_is_mountpoint -EXPORT_SYMBOL vmlinux 0x0ac8dcdc sched_autogroup_detach -EXPORT_SYMBOL vmlinux 0x0acf7679 dma_issue_pending_all -EXPORT_SYMBOL vmlinux 0x0afc321a mmc_retune_release -EXPORT_SYMBOL vmlinux 0x0afd1db6 bio_free_pages -EXPORT_SYMBOL vmlinux 0x0b0855be simple_get_link -EXPORT_SYMBOL vmlinux 0x0b16b880 tc_setup_cb_replace -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 0x0b39aea9 forget_cached_acl -EXPORT_SYMBOL vmlinux 0x0b432390 file_remove_privs -EXPORT_SYMBOL vmlinux 0x0b439c9f generic_file_fsync -EXPORT_SYMBOL vmlinux 0x0b47b0e8 dev_add_offload -EXPORT_SYMBOL vmlinux 0x0b62343e xfrm_stateonly_find -EXPORT_SYMBOL vmlinux 0x0b6347ef inet_shutdown -EXPORT_SYMBOL vmlinux 0x0b6aff97 tso_build_hdr -EXPORT_SYMBOL vmlinux 0x0b6e4a46 jbd2_journal_check_available_features -EXPORT_SYMBOL vmlinux 0x0b6fb4e9 vfs_readlink -EXPORT_SYMBOL vmlinux 0x0b742fd7 simple_strtol -EXPORT_SYMBOL vmlinux 0x0b787559 __mmc_claim_host -EXPORT_SYMBOL vmlinux 0x0b817379 dquot_quota_on_mount -EXPORT_SYMBOL vmlinux 0x0b818440 set_capacity -EXPORT_SYMBOL vmlinux 0x0ba0b938 vm_brk -EXPORT_SYMBOL vmlinux 0x0babaf6c generic_ro_fops -EXPORT_SYMBOL vmlinux 0x0bbfa78c set_security_override_from_ctx -EXPORT_SYMBOL vmlinux 0x0bc477a2 irq_set_irq_type -EXPORT_SYMBOL vmlinux 0x0bcdedca shrink_dcache_sb -EXPORT_SYMBOL vmlinux 0x0bd22af6 linkwatch_fire_event -EXPORT_SYMBOL vmlinux 0x0bd58945 of_device_is_available -EXPORT_SYMBOL vmlinux 0x0bf0e4a2 __SCK__tp_func_spi_transfer_stop -EXPORT_SYMBOL vmlinux 0x0bfa16a8 backlight_force_update -EXPORT_SYMBOL vmlinux 0x0bfc1d1a check_zeroed_user -EXPORT_SYMBOL vmlinux 0x0c0ed2b1 generic_write_end -EXPORT_SYMBOL vmlinux 0x0c0eef86 generic_copy_file_range -EXPORT_SYMBOL vmlinux 0x0c0f79af ZSTD_getDictID_fromFrame -EXPORT_SYMBOL vmlinux 0x0c11bb72 unregister_quota_format -EXPORT_SYMBOL vmlinux 0x0c25ec48 secure_tcpv6_seq -EXPORT_SYMBOL vmlinux 0x0c3d8c5c blk_rq_map_user_iov -EXPORT_SYMBOL vmlinux 0x0c4c3078 __test_set_page_writeback -EXPORT_SYMBOL vmlinux 0x0c4dac6c new_inode -EXPORT_SYMBOL vmlinux 0x0c4e701a twl6040_reg_read -EXPORT_SYMBOL vmlinux 0x0c575719 __cond_resched_rwlock_write -EXPORT_SYMBOL vmlinux 0x0c57a6d6 vlan_filter_drop_vids -EXPORT_SYMBOL vmlinux 0x0c6bdc3f vme_master_read -EXPORT_SYMBOL vmlinux 0x0c733b91 vfs_rmdir -EXPORT_SYMBOL vmlinux 0x0c77b032 mmc_detect_card_removed -EXPORT_SYMBOL vmlinux 0x0cb11bc7 __SCK__tp_func_dma_fence_enable_signal -EXPORT_SYMBOL vmlinux 0x0cc4b4b6 crc_ccitt_false -EXPORT_SYMBOL vmlinux 0x0cc7e156 tcf_em_register -EXPORT_SYMBOL vmlinux 0x0cd549de mmc_put_card -EXPORT_SYMBOL vmlinux 0x0cd5835b ipv6_flowlabel_exclusive -EXPORT_SYMBOL vmlinux 0x0cd7b6d7 ip_options_compile -EXPORT_SYMBOL vmlinux 0x0cdb9752 mmc_unregister_driver -EXPORT_SYMBOL vmlinux 0x0cdce87c rfkill_set_hw_state_reason -EXPORT_SYMBOL vmlinux 0x0cde9907 truncate_inode_pages -EXPORT_SYMBOL vmlinux 0x0cf2f8de serio_bus -EXPORT_SYMBOL vmlinux 0x0cfbf775 inet_frag_destroy -EXPORT_SYMBOL vmlinux 0x0d06ee8b pcix_get_mmrbc -EXPORT_SYMBOL vmlinux 0x0d07f543 get_anon_bdev -EXPORT_SYMBOL vmlinux 0x0d0b87c1 generic_shutdown_super -EXPORT_SYMBOL vmlinux 0x0d2c7704 scsi_eh_prep_cmnd -EXPORT_SYMBOL vmlinux 0x0d2ca20f ucc_fast_get_qe_cr_subblock -EXPORT_SYMBOL vmlinux 0x0d2cc3ea sock_sendmsg -EXPORT_SYMBOL vmlinux 0x0d3699fc d_add_ci -EXPORT_SYMBOL vmlinux 0x0d3f5c1a fman_get_max_frm -EXPORT_SYMBOL vmlinux 0x0d542439 __ipv6_addr_type -EXPORT_SYMBOL vmlinux 0x0d61eeee __bitmap_subset -EXPORT_SYMBOL vmlinux 0x0d99217e generic_listxattr -EXPORT_SYMBOL vmlinux 0x0d9b6c80 mdio_device_register -EXPORT_SYMBOL vmlinux 0x0da14686 max8925_set_bits -EXPORT_SYMBOL vmlinux 0x0da69c0c inet_sendpage -EXPORT_SYMBOL vmlinux 0x0da6e489 put_cmsg_scm_timestamping64 -EXPORT_SYMBOL vmlinux 0x0daca0a0 phy_sfp_probe -EXPORT_SYMBOL vmlinux 0x0db8054a dcb_ieee_getapp_prio_dscp_mask_map -EXPORT_SYMBOL vmlinux 0x0dc189dc kfree_skb_list -EXPORT_SYMBOL vmlinux 0x0dc40304 fman_set_mac_active_pause -EXPORT_SYMBOL vmlinux 0x0dd3b1f2 skb_get_hash_perturb -EXPORT_SYMBOL vmlinux 0x0dd8f1cd configfs_undepend_item -EXPORT_SYMBOL vmlinux 0x0ddf8579 nobh_truncate_page -EXPORT_SYMBOL vmlinux 0x0de04680 uart_match_port -EXPORT_SYMBOL vmlinux 0x0de7166b tty_port_alloc_xmit_buf -EXPORT_SYMBOL vmlinux 0x0dfdd82a fbcon_update_vcs -EXPORT_SYMBOL vmlinux 0x0e17678a siphash_4u64 -EXPORT_SYMBOL vmlinux 0x0e1d1021 flow_rule_match_enc_ports -EXPORT_SYMBOL vmlinux 0x0e3f2056 mdio_device_free -EXPORT_SYMBOL vmlinux 0x0e4262c6 __siphash_unaligned -EXPORT_SYMBOL vmlinux 0x0e6cadf1 mfd_cell_enable -EXPORT_SYMBOL vmlinux 0x0e74ad2d utf8ncursor -EXPORT_SYMBOL vmlinux 0x0e7ad825 param_set_int -EXPORT_SYMBOL vmlinux 0x0e95e293 kthread_associate_blkcg -EXPORT_SYMBOL vmlinux 0x0ea3c74e tasklet_kill -EXPORT_SYMBOL vmlinux 0x0ea593f6 hdmi_drm_infoframe_init -EXPORT_SYMBOL vmlinux 0x0ea62416 dst_release_immediate -EXPORT_SYMBOL vmlinux 0x0eb6eb87 add_taint -EXPORT_SYMBOL vmlinux 0x0ec1c458 __vlan_find_dev_deep_rcu -EXPORT_SYMBOL vmlinux 0x0ec32c31 napi_gro_flush -EXPORT_SYMBOL vmlinux 0x0ec38437 jbd2_journal_destroy -EXPORT_SYMBOL vmlinux 0x0ec5babe vme_dma_free -EXPORT_SYMBOL vmlinux 0x0ecc410a watchdog_register_governor -EXPORT_SYMBOL vmlinux 0x0ed2a854 dm_kcopyd_copy -EXPORT_SYMBOL vmlinux 0x0ed90603 drop_super -EXPORT_SYMBOL vmlinux 0x0f08c9d1 scsi_report_bus_reset -EXPORT_SYMBOL vmlinux 0x0f09cc34 schedule_timeout_killable -EXPORT_SYMBOL vmlinux 0x0f1ad8e2 seq_list_start_rcu -EXPORT_SYMBOL vmlinux 0x0f37ca89 lockref_put_not_zero -EXPORT_SYMBOL vmlinux 0x0f630261 gen_replace_estimator -EXPORT_SYMBOL vmlinux 0x0f7671b5 nvdimm_check_and_set_ro -EXPORT_SYMBOL vmlinux 0x0f8667f3 pci_dev_put -EXPORT_SYMBOL vmlinux 0x0f86f560 kthread_delayed_work_timer_fn -EXPORT_SYMBOL vmlinux 0x0fab1ab0 hdmi_spd_infoframe_pack -EXPORT_SYMBOL vmlinux 0x0fb23c64 jbd2_journal_invalidatepage -EXPORT_SYMBOL vmlinux 0x0fb2f8a4 mktime64 -EXPORT_SYMBOL vmlinux 0x0fb83fb4 inet_frag_reasm_prepare -EXPORT_SYMBOL vmlinux 0x0fd0f877 skb_add_rx_frag -EXPORT_SYMBOL vmlinux 0x0fd902db mb_cache_entry_create -EXPORT_SYMBOL vmlinux 0x0fef99a3 textsearch_register -EXPORT_SYMBOL vmlinux 0x0ffef824 __ip_mc_dec_group -EXPORT_SYMBOL vmlinux 0x0fff5afc time64_to_tm -EXPORT_SYMBOL vmlinux 0x1006e484 buffer_check_dirty_writeback -EXPORT_SYMBOL vmlinux 0x10113d8c init_task -EXPORT_SYMBOL vmlinux 0x101f4254 pnp_request_card_device -EXPORT_SYMBOL vmlinux 0x1025009a cpm_muram_alloc_fixed -EXPORT_SYMBOL vmlinux 0x102936ec qe_clock_source -EXPORT_SYMBOL vmlinux 0x102a920a serial8250_set_isa_configurator -EXPORT_SYMBOL vmlinux 0x102c69e9 fib_notifier_ops_register -EXPORT_SYMBOL vmlinux 0x10333fb7 skb_copy -EXPORT_SYMBOL vmlinux 0x1035c7c2 __release_region -EXPORT_SYMBOL vmlinux 0x10460ed8 prepare_to_swait_exclusive -EXPORT_SYMBOL vmlinux 0x1054a933 clk_hw_register_clkdev -EXPORT_SYMBOL vmlinux 0x10574d0a hsierrrpt_reg_cb -EXPORT_SYMBOL vmlinux 0x1057a279 bsearch -EXPORT_SYMBOL vmlinux 0x1068004b gf128mul_bbe -EXPORT_SYMBOL vmlinux 0x107be0b0 percpu_counter_sync -EXPORT_SYMBOL vmlinux 0x107e5878 zlib_inflateEnd -EXPORT_SYMBOL vmlinux 0x10868cce sock_wfree -EXPORT_SYMBOL vmlinux 0x109d26e0 dev_deactivate -EXPORT_SYMBOL vmlinux 0x10d9f885 scsi_sense_desc_find -EXPORT_SYMBOL vmlinux 0x10e6f74a free_contig_range -EXPORT_SYMBOL vmlinux 0x10f4434d inet_csk_complete_hashdance -EXPORT_SYMBOL vmlinux 0x1106c63d xfrm_dst_ifdown -EXPORT_SYMBOL vmlinux 0x11089ac7 _ctype -EXPORT_SYMBOL vmlinux 0x112e165a blk_queue_chunk_sectors -EXPORT_SYMBOL vmlinux 0x1132648c dquot_quota_sync -EXPORT_SYMBOL vmlinux 0x11435806 km_state_expired -EXPORT_SYMBOL vmlinux 0x114be19c mmc_hw_reset -EXPORT_SYMBOL vmlinux 0x115baf02 __neigh_event_send -EXPORT_SYMBOL vmlinux 0x116c7525 sock_rfree -EXPORT_SYMBOL vmlinux 0x117093be qdisc_class_hash_init -EXPORT_SYMBOL vmlinux 0x11850a5f skb_csum_hwoffload_help -EXPORT_SYMBOL vmlinux 0x118bdd76 register_mii_tstamp_controller -EXPORT_SYMBOL vmlinux 0x11c07fc4 dev_addr_add -EXPORT_SYMBOL vmlinux 0x11cc7509 kmem_cache_alloc_node -EXPORT_SYMBOL vmlinux 0x11d189b1 __tracepoint_kmem_cache_alloc_node -EXPORT_SYMBOL vmlinux 0x11e0ec41 dm_read_arg -EXPORT_SYMBOL vmlinux 0x11e30762 chacha_block_generic -EXPORT_SYMBOL vmlinux 0x11f47d8c utf8_strncmp -EXPORT_SYMBOL vmlinux 0x11f4f2a4 pci_bus_alloc_resource -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 0x12278a99 locks_remove_posix -EXPORT_SYMBOL vmlinux 0x124bad4d kstrtobool -EXPORT_SYMBOL vmlinux 0x125439d7 pci_prepare_to_sleep -EXPORT_SYMBOL vmlinux 0x126ac1f0 __dev_direct_xmit -EXPORT_SYMBOL vmlinux 0x1281eda2 phy_config_aneg -EXPORT_SYMBOL vmlinux 0x128aa73d vfs_parse_fs_param_source -EXPORT_SYMBOL vmlinux 0x12a4e128 __arch_copy_from_user -EXPORT_SYMBOL vmlinux 0x12b173ca input_get_poll_interval -EXPORT_SYMBOL vmlinux 0x12bbd3ff blk_queue_max_segment_size -EXPORT_SYMBOL vmlinux 0x12c5f6b3 xsk_get_pool_from_qid -EXPORT_SYMBOL vmlinux 0x12cabc89 siphash_2u64 -EXPORT_SYMBOL vmlinux 0x12f6f69c fb_videomode_to_var -EXPORT_SYMBOL vmlinux 0x12fffac0 put_cmsg_scm_timestamping -EXPORT_SYMBOL vmlinux 0x1307a701 tcp_rcv_state_process -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 0x131a7087 kill_fasync -EXPORT_SYMBOL vmlinux 0x131abe3b alloc_anon_inode -EXPORT_SYMBOL vmlinux 0x131ef24a __post_watch_notification -EXPORT_SYMBOL vmlinux 0x13243d4b wl1251_get_platform_data -EXPORT_SYMBOL vmlinux 0x132ea500 __do_once_slow_done -EXPORT_SYMBOL vmlinux 0x13361f87 clocksource_change_rating -EXPORT_SYMBOL vmlinux 0x134cdd34 inet_frag_rbtree_purge -EXPORT_SYMBOL vmlinux 0x1359973d remove_arg_zero -EXPORT_SYMBOL vmlinux 0x136552c0 sk_page_frag_refill -EXPORT_SYMBOL vmlinux 0x13693d81 fib_default_rule_add -EXPORT_SYMBOL vmlinux 0x137ad95c __cleancache_get_page -EXPORT_SYMBOL vmlinux 0x137cee5d from_kuid_munged -EXPORT_SYMBOL vmlinux 0x137df86c inet_csk_init_xmit_timers -EXPORT_SYMBOL vmlinux 0x13892074 dev_addr_del -EXPORT_SYMBOL vmlinux 0x138bdd96 cpumask_next -EXPORT_SYMBOL vmlinux 0x13967b57 load_nls_default -EXPORT_SYMBOL vmlinux 0x139d119b follow_up -EXPORT_SYMBOL vmlinux 0x139f2189 __kfifo_alloc -EXPORT_SYMBOL vmlinux 0x13adfe5d jbd2_fc_get_buf -EXPORT_SYMBOL vmlinux 0x13be322e dma_supported -EXPORT_SYMBOL vmlinux 0x13c204d3 register_md_cluster_operations -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 0x13d9a25d security_unix_may_send -EXPORT_SYMBOL vmlinux 0x13dddd50 bh_uptodate_or_lock -EXPORT_SYMBOL vmlinux 0x13ee5b27 tcp_v4_syn_recv_sock -EXPORT_SYMBOL vmlinux 0x141271bf acpi_dev_found -EXPORT_SYMBOL vmlinux 0x1417c50b md_bitmap_end_sync -EXPORT_SYMBOL vmlinux 0x14199de5 ipv6_dev_mc_inc -EXPORT_SYMBOL vmlinux 0x1435c5ce __SCK__tp_func_kmalloc_node -EXPORT_SYMBOL vmlinux 0x14426183 kill_litter_super -EXPORT_SYMBOL vmlinux 0x144263d1 sock_enable_timestamps -EXPORT_SYMBOL vmlinux 0x144c7b18 devm_pci_alloc_host_bridge -EXPORT_SYMBOL vmlinux 0x145641f0 pci_read_config_word -EXPORT_SYMBOL vmlinux 0x14605535 dma_fence_context_alloc -EXPORT_SYMBOL vmlinux 0x146289b7 crc16_table -EXPORT_SYMBOL vmlinux 0x14765ba8 dma_sync_single_for_device -EXPORT_SYMBOL vmlinux 0x1486ded2 dma_fence_allocate_private_stub -EXPORT_SYMBOL vmlinux 0x1490972b vif_device_init -EXPORT_SYMBOL vmlinux 0x1490be57 page_readlink -EXPORT_SYMBOL vmlinux 0x1490e3f5 __dev_remove_pack -EXPORT_SYMBOL vmlinux 0x1491ca9a security_path_rename -EXPORT_SYMBOL vmlinux 0x149a8212 thaw_bdev -EXPORT_SYMBOL vmlinux 0x14b89635 arm64_const_caps_ready -EXPORT_SYMBOL vmlinux 0x14c67e3e tcp_tx_delay_enabled -EXPORT_SYMBOL vmlinux 0x14ced76e nla_reserve_nohdr -EXPORT_SYMBOL vmlinux 0x14dc71f8 tcf_action_dump_1 -EXPORT_SYMBOL vmlinux 0x14f45fcc bman_free_pool -EXPORT_SYMBOL vmlinux 0x14fa6420 vme_irq_free -EXPORT_SYMBOL vmlinux 0x150219a2 skb_free_datagram -EXPORT_SYMBOL vmlinux 0x151ac3ba sock_init_data_uid -EXPORT_SYMBOL vmlinux 0x151f4898 schedule_timeout_uninterruptible -EXPORT_SYMBOL vmlinux 0x1526b301 unix_tot_inflight -EXPORT_SYMBOL vmlinux 0x15311f97 put_devmap_managed_page -EXPORT_SYMBOL vmlinux 0x15460c83 vfs_get_super -EXPORT_SYMBOL vmlinux 0x154c6338 dm_kcopyd_client_destroy -EXPORT_SYMBOL vmlinux 0x154dd84c inet6_offloads -EXPORT_SYMBOL vmlinux 0x156073c7 tegra_ivc_cleanup -EXPORT_SYMBOL vmlinux 0x1579d830 __netlink_dump_start -EXPORT_SYMBOL vmlinux 0x158201b9 dma_fence_chain_init -EXPORT_SYMBOL vmlinux 0x15823057 skb_trim -EXPORT_SYMBOL vmlinux 0x15ad219a inet6_csk_route_req -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 0x15f90688 slhc_init -EXPORT_SYMBOL vmlinux 0x160a34ec pci_request_selected_regions -EXPORT_SYMBOL vmlinux 0x1619ba8d pcix_set_mmrbc -EXPORT_SYMBOL vmlinux 0x162893fd hashlen_string -EXPORT_SYMBOL vmlinux 0x1628a2af pci_set_mwi -EXPORT_SYMBOL vmlinux 0x162f9235 param_ops_hexint -EXPORT_SYMBOL vmlinux 0x16316a10 ZSTD_getFrameContentSize -EXPORT_SYMBOL vmlinux 0x16321b65 _dev_printk -EXPORT_SYMBOL vmlinux 0x1632bc21 kvasprintf_const -EXPORT_SYMBOL vmlinux 0x163bed83 mark_info_dirty -EXPORT_SYMBOL vmlinux 0x163cd290 neigh_for_each -EXPORT_SYMBOL vmlinux 0x163d2417 tegra_io_rail_power_off -EXPORT_SYMBOL vmlinux 0x165540b1 simple_dentry_operations -EXPORT_SYMBOL vmlinux 0x1661c5d0 sock_efree -EXPORT_SYMBOL vmlinux 0x166ea5bd pci_find_resource -EXPORT_SYMBOL vmlinux 0x167c5967 print_hex_dump -EXPORT_SYMBOL vmlinux 0x167e9242 devfreq_update_interval -EXPORT_SYMBOL vmlinux 0x16870534 submit_bh -EXPORT_SYMBOL vmlinux 0x169938c1 __sysfs_match_string -EXPORT_SYMBOL vmlinux 0x169e1d8a __blkdev_issue_discard -EXPORT_SYMBOL vmlinux 0x16a439ce of_root -EXPORT_SYMBOL vmlinux 0x16a6c701 __skb_warn_lro_forwarding -EXPORT_SYMBOL vmlinux 0x16aac537 dmam_pool_create -EXPORT_SYMBOL vmlinux 0x16b11661 ip_sock_set_tos -EXPORT_SYMBOL vmlinux 0x16cdc340 acpi_get_table -EXPORT_SYMBOL vmlinux 0x16cf8cac dquot_set_dqblk -EXPORT_SYMBOL vmlinux 0x16dee44d dma_fence_init -EXPORT_SYMBOL vmlinux 0x16df25a2 param_get_charp -EXPORT_SYMBOL vmlinux 0x16e297c3 bit_wait -EXPORT_SYMBOL vmlinux 0x16e7e2cb cpu_all_bits -EXPORT_SYMBOL vmlinux 0x16ee857c update_region -EXPORT_SYMBOL vmlinux 0x170ddf79 acpi_install_notify_handler -EXPORT_SYMBOL vmlinux 0x1734763e jbd2_journal_init_jbd_inode -EXPORT_SYMBOL vmlinux 0x17438ae5 cdrom_get_media_event -EXPORT_SYMBOL vmlinux 0x175e8331 nvdimm_namespace_capacity -EXPORT_SYMBOL vmlinux 0x177ff5ae flow_rule_match_basic -EXPORT_SYMBOL vmlinux 0x17825d3f xudma_rchan_get -EXPORT_SYMBOL vmlinux 0x1789f3cf jbd2_journal_start -EXPORT_SYMBOL vmlinux 0x178c4894 qe_upload_firmware -EXPORT_SYMBOL vmlinux 0x17a7d2c1 __devm_release_region -EXPORT_SYMBOL vmlinux 0x17c698da nf_hook_slow_list -EXPORT_SYMBOL vmlinux 0x17d25988 eth_header -EXPORT_SYMBOL vmlinux 0x17d284d0 backlight_device_get_by_type -EXPORT_SYMBOL vmlinux 0x17d6317b dquot_alloc_inode -EXPORT_SYMBOL vmlinux 0x17d95144 fscrypt_encrypt_pagecache_blocks -EXPORT_SYMBOL vmlinux 0x17e4febf pm_vt_switch_required -EXPORT_SYMBOL vmlinux 0x17e8a72a fuse_dequeue_forget -EXPORT_SYMBOL vmlinux 0x180144a7 scsi_dma_map -EXPORT_SYMBOL vmlinux 0x1810b437 of_find_property -EXPORT_SYMBOL vmlinux 0x1814b6ac phy_remove_link_mode -EXPORT_SYMBOL vmlinux 0x182caa93 mii_check_media -EXPORT_SYMBOL vmlinux 0x182f88ea tcp_v4_do_rcv -EXPORT_SYMBOL vmlinux 0x183298d5 rpmh_write_batch -EXPORT_SYMBOL vmlinux 0x18345b8e __bitmap_replace -EXPORT_SYMBOL vmlinux 0x18434098 mount_subtree -EXPORT_SYMBOL vmlinux 0x184b6002 xsk_clear_tx_need_wakeup -EXPORT_SYMBOL vmlinux 0x186a496d of_find_mipi_dsi_host_by_node -EXPORT_SYMBOL vmlinux 0x1871c3a2 mnt_drop_write_file -EXPORT_SYMBOL vmlinux 0x187884a8 cpm_muram_free -EXPORT_SYMBOL vmlinux 0x18888d00 downgrade_write -EXPORT_SYMBOL vmlinux 0x188ea314 jiffies_to_timespec64 -EXPORT_SYMBOL vmlinux 0x188fcf5d mdiobus_free -EXPORT_SYMBOL vmlinux 0x1897c05f con_set_default_unimap -EXPORT_SYMBOL vmlinux 0x189aee73 scsi_is_target_device -EXPORT_SYMBOL vmlinux 0x18b48e28 __memset_io -EXPORT_SYMBOL vmlinux 0x18b8930c gro_cells_receive -EXPORT_SYMBOL vmlinux 0x18d48a4c __ip_dev_find -EXPORT_SYMBOL vmlinux 0x18e60984 __do_once_start -EXPORT_SYMBOL vmlinux 0x1904e58d mmc_gpiod_request_cd_irq -EXPORT_SYMBOL vmlinux 0x190a48a9 efi -EXPORT_SYMBOL vmlinux 0x19128aed vfs_fileattr_set -EXPORT_SYMBOL vmlinux 0x19174da5 vfs_unlink -EXPORT_SYMBOL vmlinux 0x19188035 dentry_open -EXPORT_SYMBOL vmlinux 0x1944a87d __cpuhp_setup_state -EXPORT_SYMBOL vmlinux 0x19521465 io_uring_get_socket -EXPORT_SYMBOL vmlinux 0x1953c958 mempool_create -EXPORT_SYMBOL vmlinux 0x196ae1ea key_link -EXPORT_SYMBOL vmlinux 0x19704923 flow_rule_match_meta -EXPORT_SYMBOL vmlinux 0x19720291 nd_dax_probe -EXPORT_SYMBOL vmlinux 0x197de88c blk_queue_alignment_offset -EXPORT_SYMBOL vmlinux 0x1984d387 security_sock_rcv_skb -EXPORT_SYMBOL vmlinux 0x1984d421 out_of_line_wait_on_bit -EXPORT_SYMBOL vmlinux 0x198620d7 security_add_mnt_opt -EXPORT_SYMBOL vmlinux 0x199827ea register_md_personality -EXPORT_SYMBOL vmlinux 0x199ed0cd net_disable_timestamp -EXPORT_SYMBOL vmlinux 0x19a224c3 phy_attached_info -EXPORT_SYMBOL vmlinux 0x19bd383b security_secmark_refcount_dec -EXPORT_SYMBOL vmlinux 0x19c4bd19 dev_change_proto_down_reason -EXPORT_SYMBOL vmlinux 0x19d69328 inet_sock_destruct -EXPORT_SYMBOL vmlinux 0x19d82ecc sk_ns_capable -EXPORT_SYMBOL vmlinux 0x19da6405 open_exec -EXPORT_SYMBOL vmlinux 0x19ed587e secure_tcpv6_ts_off -EXPORT_SYMBOL vmlinux 0x19f1396a xfrm_state_add -EXPORT_SYMBOL vmlinux 0x1a004717 tty_port_close -EXPORT_SYMBOL vmlinux 0x1a013eb6 tc_cleanup_flow_action -EXPORT_SYMBOL vmlinux 0x1a019331 nexthop_res_grp_activity_update -EXPORT_SYMBOL vmlinux 0x1a04aeb7 dquot_commit_info -EXPORT_SYMBOL vmlinux 0x1a1bac9c ZSTD_decompressDCtx -EXPORT_SYMBOL vmlinux 0x1a2237ef rproc_report_crash -EXPORT_SYMBOL vmlinux 0x1a281691 devm_request_resource -EXPORT_SYMBOL vmlinux 0x1a3c4a31 page_pool_update_nid -EXPORT_SYMBOL vmlinux 0x1a3cf139 simple_pin_fs -EXPORT_SYMBOL vmlinux 0x1a435622 tcp_enter_quickack_mode -EXPORT_SYMBOL vmlinux 0x1a45cb6c acpi_disabled -EXPORT_SYMBOL vmlinux 0x1a4efc87 flow_rule_match_mpls -EXPORT_SYMBOL vmlinux 0x1a58fb26 frontswap_register_ops -EXPORT_SYMBOL vmlinux 0x1a5e6d9b filemap_fdatawait_range -EXPORT_SYMBOL vmlinux 0x1a5efe19 simple_transaction_get -EXPORT_SYMBOL vmlinux 0x1a684419 cleancache_register_ops -EXPORT_SYMBOL vmlinux 0x1a702110 __page_frag_cache_drain -EXPORT_SYMBOL vmlinux 0x1a723944 xfrm_trans_queue -EXPORT_SYMBOL vmlinux 0x1a72a9c3 mmc_can_erase -EXPORT_SYMBOL vmlinux 0x1a73c277 devfreq_register_notifier -EXPORT_SYMBOL vmlinux 0x1a82fdcc phy_ethtool_set_wol -EXPORT_SYMBOL vmlinux 0x1a865ce6 bio_integrity_alloc -EXPORT_SYMBOL vmlinux 0x1a9a433c prandom_u32_state -EXPORT_SYMBOL vmlinux 0x1aa7887c dump_emit -EXPORT_SYMBOL vmlinux 0x1abacee5 is_nd_btt -EXPORT_SYMBOL vmlinux 0x1ac5d3cb strcspn -EXPORT_SYMBOL vmlinux 0x1ac7cb96 phy_connect -EXPORT_SYMBOL vmlinux 0x1ad1f6b2 configfs_register_subsystem -EXPORT_SYMBOL vmlinux 0x1adbaecd ipv6_setsockopt -EXPORT_SYMBOL vmlinux 0x1adda39c find_get_pages_contig -EXPORT_SYMBOL vmlinux 0x1b015d25 bitmap_parselist -EXPORT_SYMBOL vmlinux 0x1b280e01 pcie_relaxed_ordering_enabled -EXPORT_SYMBOL vmlinux 0x1b4df16e module_refcount -EXPORT_SYMBOL vmlinux 0x1b5196fc xudma_tchan_put -EXPORT_SYMBOL vmlinux 0x1b5218a7 fb_blank -EXPORT_SYMBOL vmlinux 0x1b597b7a swake_up_all -EXPORT_SYMBOL vmlinux 0x1b6314fd in_aton -EXPORT_SYMBOL vmlinux 0x1b678608 unregister_mii_tstamp_controller -EXPORT_SYMBOL vmlinux 0x1b6f1c0d get_tree_single_reconf -EXPORT_SYMBOL vmlinux 0x1b777357 rdmacg_unregister_device -EXPORT_SYMBOL vmlinux 0x1ba59527 __kmalloc_node -EXPORT_SYMBOL vmlinux 0x1bb51249 tcp_have_smc -EXPORT_SYMBOL vmlinux 0x1bb86b9a xen_start_info -EXPORT_SYMBOL vmlinux 0x1bc8555a genphy_read_lpa -EXPORT_SYMBOL vmlinux 0x1bcf866d sock_setsockopt -EXPORT_SYMBOL vmlinux 0x1bd59dbe vme_free_consistent -EXPORT_SYMBOL vmlinux 0x1bd7149f inet6_release -EXPORT_SYMBOL vmlinux 0x1bdb6b68 dquot_destroy -EXPORT_SYMBOL vmlinux 0x1c0be2d5 __find_get_block -EXPORT_SYMBOL vmlinux 0x1c24d03f xfrm_policy_walk -EXPORT_SYMBOL vmlinux 0x1c3e5f33 pskb_expand_head -EXPORT_SYMBOL vmlinux 0x1c407510 of_graph_get_endpoint_by_regs -EXPORT_SYMBOL vmlinux 0x1c4c7a5f xattr_supported_namespace -EXPORT_SYMBOL vmlinux 0x1c51dc0c inet_add_offload -EXPORT_SYMBOL vmlinux 0x1c58427f acpi_remove_notify_handler -EXPORT_SYMBOL vmlinux 0x1c5e3878 icst525_idx2s -EXPORT_SYMBOL vmlinux 0x1c72cd27 xfrm_state_delete_tunnel -EXPORT_SYMBOL vmlinux 0x1c93f0d3 tcp_sock_set_nodelay -EXPORT_SYMBOL vmlinux 0x1cb11044 inetpeer_invalidate_tree -EXPORT_SYMBOL vmlinux 0x1cb580db path_put -EXPORT_SYMBOL vmlinux 0x1cc11154 __SCK__tp_func_mmap_lock_start_locking -EXPORT_SYMBOL vmlinux 0x1cd8438b pxm_to_node -EXPORT_SYMBOL vmlinux 0x1cdd39ba logic_outsl -EXPORT_SYMBOL vmlinux 0x1ce64692 d_rehash -EXPORT_SYMBOL vmlinux 0x1ce889fc mmc_wait_for_req_done -EXPORT_SYMBOL vmlinux 0x1ceba651 vme_dma_list_free -EXPORT_SYMBOL vmlinux 0x1cefb94d param_set_uint -EXPORT_SYMBOL vmlinux 0x1cf04888 dev_change_carrier -EXPORT_SYMBOL vmlinux 0x1cf5efa6 xudma_rflow_get_id -EXPORT_SYMBOL vmlinux 0x1cf79c2e inet_proto_csum_replace16 -EXPORT_SYMBOL vmlinux 0x1d07e365 memdup_user_nul -EXPORT_SYMBOL vmlinux 0x1d182177 phy_read_paged -EXPORT_SYMBOL vmlinux 0x1d1abdf0 acpi_get_physical_device_location -EXPORT_SYMBOL vmlinux 0x1d218aa9 scsi_scan_target -EXPORT_SYMBOL vmlinux 0x1d24c881 ___ratelimit -EXPORT_SYMBOL vmlinux 0x1d2d6d15 wait_iff_congested -EXPORT_SYMBOL vmlinux 0x1d3c458d i2c_smbus_write_byte_data -EXPORT_SYMBOL vmlinux 0x1d3c5b17 freezing_slow_path -EXPORT_SYMBOL vmlinux 0x1d40b6f3 idr_for_each -EXPORT_SYMBOL vmlinux 0x1d4824a6 input_release_device -EXPORT_SYMBOL vmlinux 0x1d50a51b kill_pgrp -EXPORT_SYMBOL vmlinux 0x1d5cedae __tracepoint_kfree -EXPORT_SYMBOL vmlinux 0x1d5daca9 blkdev_issue_flush -EXPORT_SYMBOL vmlinux 0x1d68c88a unix_detach_fds -EXPORT_SYMBOL vmlinux 0x1d7560f8 fb_firmware_edid -EXPORT_SYMBOL vmlinux 0x1dad99bf tcf_block_netif_keep_dst -EXPORT_SYMBOL vmlinux 0x1dae3cac pneigh_lookup -EXPORT_SYMBOL vmlinux 0x1db499f2 netpoll_print_options -EXPORT_SYMBOL vmlinux 0x1dc6c93b lookup_user_key -EXPORT_SYMBOL vmlinux 0x1dc8e359 dup_iter -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 0x1dec672f dcb_setapp -EXPORT_SYMBOL vmlinux 0x1df95a47 simple_fill_super -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 0x1e210ce1 pci_enable_msi -EXPORT_SYMBOL vmlinux 0x1e29ab33 inode_permission -EXPORT_SYMBOL vmlinux 0x1e364d15 neigh_carrier_down -EXPORT_SYMBOL vmlinux 0x1e47f4ea setup_new_exec -EXPORT_SYMBOL vmlinux 0x1e52ee58 md_unregister_thread -EXPORT_SYMBOL vmlinux 0x1e5d13c0 __ip_queue_xmit -EXPORT_SYMBOL vmlinux 0x1e637637 __destroy_inode -EXPORT_SYMBOL vmlinux 0x1e64b3cd vfs_fileattr_get -EXPORT_SYMBOL vmlinux 0x1e6adaa0 bitmap_print_bitmask_to_buf -EXPORT_SYMBOL vmlinux 0x1e6b13e0 xfrm_if_register_cb -EXPORT_SYMBOL vmlinux 0x1e6d26a8 strstr -EXPORT_SYMBOL vmlinux 0x1e6d6589 pskb_extract -EXPORT_SYMBOL vmlinux 0x1e8919df bh_submit_read -EXPORT_SYMBOL vmlinux 0x1e8bf7cc __bforget -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 0x1ee96a45 blk_mq_start_hw_queues -EXPORT_SYMBOL vmlinux 0x1ef18950 scsi_bios_ptable -EXPORT_SYMBOL vmlinux 0x1ef84b7d genl_register_family -EXPORT_SYMBOL vmlinux 0x1f009870 of_cpu_node_to_id -EXPORT_SYMBOL vmlinux 0x1f06dd1b jbd2__journal_restart -EXPORT_SYMBOL vmlinux 0x1f0ad815 km_report -EXPORT_SYMBOL vmlinux 0x1f0bd610 freeze_super -EXPORT_SYMBOL vmlinux 0x1f28c386 fsync_bdev -EXPORT_SYMBOL vmlinux 0x1f293470 skb_clone -EXPORT_SYMBOL vmlinux 0x1f2ac4f4 invalidate_mapping_pages -EXPORT_SYMBOL vmlinux 0x1f2c951c ip_getsockopt -EXPORT_SYMBOL vmlinux 0x1f50f950 xattr_full_name -EXPORT_SYMBOL vmlinux 0x1f557414 gen_pool_has_addr -EXPORT_SYMBOL vmlinux 0x1f5e402c nvdimm_namespace_disk_name -EXPORT_SYMBOL vmlinux 0x1f71bd6b rproc_remove_subdev -EXPORT_SYMBOL vmlinux 0x1f72b7f2 __pskb_copy_fclone -EXPORT_SYMBOL vmlinux 0x1f791d18 init_special_inode -EXPORT_SYMBOL vmlinux 0x1f9439cd input_set_poll_interval -EXPORT_SYMBOL vmlinux 0x1fb5158f dev_mc_sync_multiple -EXPORT_SYMBOL vmlinux 0x1fbd16da ip_tos2prio -EXPORT_SYMBOL vmlinux 0x1fbe3d67 flow_indr_dev_unregister -EXPORT_SYMBOL vmlinux 0x1fca73de amba_device_unregister -EXPORT_SYMBOL vmlinux 0x1fd07fff kdb_grepping_flag -EXPORT_SYMBOL vmlinux 0x1fd3f602 pci_release_selected_regions -EXPORT_SYMBOL vmlinux 0x1fd807be vfs_path_lookup -EXPORT_SYMBOL vmlinux 0x1fe96f4b done_path_create -EXPORT_SYMBOL vmlinux 0x1ffaf776 proc_set_user -EXPORT_SYMBOL vmlinux 0x1ffb5f87 sock_set_mark -EXPORT_SYMBOL vmlinux 0x20000329 simple_strtoul -EXPORT_SYMBOL vmlinux 0x200b2041 in6addr_any -EXPORT_SYMBOL vmlinux 0x2010e997 alloc_fddidev -EXPORT_SYMBOL vmlinux 0x2013151f pci_release_region -EXPORT_SYMBOL vmlinux 0x2017fbe4 __nlmsg_put -EXPORT_SYMBOL vmlinux 0x202b7bd2 get_phy_device -EXPORT_SYMBOL vmlinux 0x204090a2 single_open_size -EXPORT_SYMBOL vmlinux 0x2044e8fc of_graph_get_remote_endpoint -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 0x2090f2d7 mmc_set_blocklen -EXPORT_SYMBOL vmlinux 0x20960823 put_watch_queue -EXPORT_SYMBOL vmlinux 0x209d2cac devm_free_irq -EXPORT_SYMBOL vmlinux 0x20a386bf __phy_resume -EXPORT_SYMBOL vmlinux 0x20a789ac irq_set_chip_data -EXPORT_SYMBOL vmlinux 0x20af554c inet6_ioctl -EXPORT_SYMBOL vmlinux 0x20cbb30a __percpu_counter_init -EXPORT_SYMBOL vmlinux 0x20d65e40 fb_find_nearest_mode -EXPORT_SYMBOL vmlinux 0x20eadeb6 ip_compute_csum -EXPORT_SYMBOL vmlinux 0x20f7a448 read_cache_page -EXPORT_SYMBOL vmlinux 0x20fff6ec ZSTD_DStreamInSize -EXPORT_SYMBOL vmlinux 0x21003589 __skb_ext_del -EXPORT_SYMBOL vmlinux 0x2100b72a d_instantiate_anon -EXPORT_SYMBOL vmlinux 0x21059cd7 audit_log_task_context -EXPORT_SYMBOL vmlinux 0x210ad15a max8998_read_reg -EXPORT_SYMBOL vmlinux 0x211af8e2 seq_puts -EXPORT_SYMBOL vmlinux 0x21247706 generic_pipe_buf_get -EXPORT_SYMBOL vmlinux 0x21324ac6 security_inode_setsecctx -EXPORT_SYMBOL vmlinux 0x213a738d memregion_alloc -EXPORT_SYMBOL vmlinux 0x213e4965 ps2_is_keyboard_id -EXPORT_SYMBOL vmlinux 0x213ee9e9 netdev_update_features -EXPORT_SYMBOL vmlinux 0x2140c06a dma_set_mask -EXPORT_SYMBOL vmlinux 0x2141d554 jbd2_journal_revoke -EXPORT_SYMBOL vmlinux 0x21640bf3 phy_driver_unregister -EXPORT_SYMBOL vmlinux 0x218e600b pci_add_resource_offset -EXPORT_SYMBOL vmlinux 0x21995cf1 set_cached_acl -EXPORT_SYMBOL vmlinux 0x21b6e458 rtnl_create_link -EXPORT_SYMBOL vmlinux 0x21bdb523 errseq_check_and_advance -EXPORT_SYMBOL vmlinux 0x21be37e1 hdmi_avi_infoframe_check -EXPORT_SYMBOL vmlinux 0x21c9d287 sock_dequeue_err_skb -EXPORT_SYMBOL vmlinux 0x21d42ce9 nla_append -EXPORT_SYMBOL vmlinux 0x21ddf518 md_bitmap_endwrite -EXPORT_SYMBOL vmlinux 0x21e13cb3 inet_peer_xrlim_allow -EXPORT_SYMBOL vmlinux 0x21ef374c try_wait_for_completion -EXPORT_SYMBOL vmlinux 0x21f08e7f udp_gro_receive -EXPORT_SYMBOL vmlinux 0x21f8e553 touch_atime -EXPORT_SYMBOL vmlinux 0x21ff8be2 proc_create_single_data -EXPORT_SYMBOL vmlinux 0x21ffa941 fscrypt_ioctl_get_policy -EXPORT_SYMBOL vmlinux 0x2216342b vlan_filter_push_vids -EXPORT_SYMBOL vmlinux 0x22226055 iget_locked -EXPORT_SYMBOL vmlinux 0x222e7ce2 sysfs_streq -EXPORT_SYMBOL vmlinux 0x2234ca51 acpi_match_platform_list -EXPORT_SYMBOL vmlinux 0x224ac42c sock_create_kern -EXPORT_SYMBOL vmlinux 0x224ce651 xudma_free_gp_rflow_range -EXPORT_SYMBOL vmlinux 0x2251906e skb_ensure_writable -EXPORT_SYMBOL vmlinux 0x225840e1 padata_set_cpumask -EXPORT_SYMBOL vmlinux 0x2262a2e4 input_enable_softrepeat -EXPORT_SYMBOL vmlinux 0x226aa414 sk_dst_check -EXPORT_SYMBOL vmlinux 0x226fe11d cfb_imageblit -EXPORT_SYMBOL vmlinux 0x228790e8 qman_start_using_portal -EXPORT_SYMBOL vmlinux 0x228f7e6b blk_mq_alloc_tag_set -EXPORT_SYMBOL vmlinux 0x229484cd netdev_stats_to_stats64 -EXPORT_SYMBOL vmlinux 0x22b325d5 kd_mksound -EXPORT_SYMBOL vmlinux 0x22bff00c tcp_prot -EXPORT_SYMBOL vmlinux 0x22c11c9a tty_register_device -EXPORT_SYMBOL vmlinux 0x22c837ad vlan_ioctl_set -EXPORT_SYMBOL vmlinux 0x22cfd5b0 fman_get_pause_cfg -EXPORT_SYMBOL vmlinux 0x22dd68b0 pcibios_resource_to_bus -EXPORT_SYMBOL vmlinux 0x22e5c748 register_shrinker -EXPORT_SYMBOL vmlinux 0x230b4d19 vfs_dedupe_file_range_one -EXPORT_SYMBOL vmlinux 0x231367ee dev_uc_sync -EXPORT_SYMBOL vmlinux 0x232a51ad inet_reqsk_alloc -EXPORT_SYMBOL vmlinux 0x232c61ea request_firmware_nowait -EXPORT_SYMBOL vmlinux 0x23302228 sock_bind_add -EXPORT_SYMBOL vmlinux 0x2354e344 write_one_page -EXPORT_SYMBOL vmlinux 0x23559c51 qman_oos_fq -EXPORT_SYMBOL vmlinux 0x2364c85a tasklet_init -EXPORT_SYMBOL vmlinux 0x23688551 nd_pfn_validate -EXPORT_SYMBOL vmlinux 0x237233eb skb_copy_datagram_from_iter -EXPORT_SYMBOL vmlinux 0x237a0b5c __traceiter_dma_fence_signaled -EXPORT_SYMBOL vmlinux 0x237f4c17 blk_queue_update_dma_alignment -EXPORT_SYMBOL vmlinux 0x23872135 phy_mii_ioctl -EXPORT_SYMBOL vmlinux 0x238b099f mipi_dsi_packet_format_is_short -EXPORT_SYMBOL vmlinux 0x2391f725 irq_stat -EXPORT_SYMBOL vmlinux 0x23b9d6e2 mangle_path -EXPORT_SYMBOL vmlinux 0x23c27a4e dquot_set_dqinfo -EXPORT_SYMBOL vmlinux 0x23cabbb1 register_sysctl_paths -EXPORT_SYMBOL vmlinux 0x23cf97db vm_event_states -EXPORT_SYMBOL vmlinux 0x23daa989 mipi_dsi_create_packet -EXPORT_SYMBOL vmlinux 0x23fadfa6 dma_fence_array_create -EXPORT_SYMBOL vmlinux 0x23fd3028 vmalloc_node -EXPORT_SYMBOL vmlinux 0x2411f101 security_binder_transfer_file -EXPORT_SYMBOL vmlinux 0x2419f325 _dev_crit -EXPORT_SYMBOL vmlinux 0x24212d86 __frontswap_invalidate_page -EXPORT_SYMBOL vmlinux 0x2421c00e inet_csk_prepare_forced_close -EXPORT_SYMBOL vmlinux 0x24340515 __blk_mq_alloc_disk -EXPORT_SYMBOL vmlinux 0x24428be5 strncpy_from_user -EXPORT_SYMBOL vmlinux 0x244e7f1f bioset_exit -EXPORT_SYMBOL vmlinux 0x24527230 neigh_parms_alloc -EXPORT_SYMBOL vmlinux 0x2459bbcc console_set_on_cmdline -EXPORT_SYMBOL vmlinux 0x245f8575 __devm_of_mdiobus_register -EXPORT_SYMBOL vmlinux 0x24846693 phy_get_eee_err -EXPORT_SYMBOL vmlinux 0x2484adc3 __kfifo_to_user_r -EXPORT_SYMBOL vmlinux 0x2489b484 phy_detach -EXPORT_SYMBOL vmlinux 0x249d1c21 netdev_lower_get_next -EXPORT_SYMBOL vmlinux 0x24a1fa34 ip6_output -EXPORT_SYMBOL vmlinux 0x24a31572 devm_input_allocate_device -EXPORT_SYMBOL vmlinux 0x24b98ae2 netif_schedule_queue -EXPORT_SYMBOL vmlinux 0x24bcdc43 md_finish_reshape -EXPORT_SYMBOL vmlinux 0x24d273d1 add_timer -EXPORT_SYMBOL vmlinux 0x24dbcecf tcp_release_cb -EXPORT_SYMBOL vmlinux 0x2505bf18 kstrtol_from_user -EXPORT_SYMBOL vmlinux 0x25192a6e dm_mq_kick_requeue_list -EXPORT_SYMBOL vmlinux 0x252332f1 __SCK__tp_func_mmap_lock_released -EXPORT_SYMBOL vmlinux 0x25445b5a gro_cells_init -EXPORT_SYMBOL vmlinux 0x254d0318 xp_free -EXPORT_SYMBOL vmlinux 0x254fc4bd pnp_activate_dev -EXPORT_SYMBOL vmlinux 0x255684ae iunique -EXPORT_SYMBOL vmlinux 0x256d3e9d dcache_readdir -EXPORT_SYMBOL vmlinux 0x256e5a26 path_is_under -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 0x258e9571 of_find_matching_node_and_match -EXPORT_SYMBOL vmlinux 0x25974000 wait_for_completion -EXPORT_SYMBOL vmlinux 0x25a8c59b arp_tbl -EXPORT_SYMBOL vmlinux 0x25d5f8d2 set_bdi_congested -EXPORT_SYMBOL vmlinux 0x25e58a09 hdmi_avi_infoframe_init -EXPORT_SYMBOL vmlinux 0x25e9d4bd resource_list_free -EXPORT_SYMBOL vmlinux 0x25f2d34b serio_unregister_port -EXPORT_SYMBOL vmlinux 0x26051f5b mmc_gpio_get_ro -EXPORT_SYMBOL vmlinux 0x260a095a __sg_alloc_table -EXPORT_SYMBOL vmlinux 0x26207cfa blk_mq_alloc_request -EXPORT_SYMBOL vmlinux 0x262516d5 dev_uc_add -EXPORT_SYMBOL vmlinux 0x262653fa file_modified -EXPORT_SYMBOL vmlinux 0x2626a60e pm8606_osc_disable -EXPORT_SYMBOL vmlinux 0x2632c905 devm_pci_remap_cfgspace -EXPORT_SYMBOL vmlinux 0x263a619e tty_devnum -EXPORT_SYMBOL vmlinux 0x263beb75 ecryptfs_get_versions -EXPORT_SYMBOL vmlinux 0x263c3152 bcmp -EXPORT_SYMBOL vmlinux 0x263ca786 get_task_cred -EXPORT_SYMBOL vmlinux 0x263f0d1f qman_portal_set_iperiod -EXPORT_SYMBOL vmlinux 0x2657b4c7 bdi_alloc -EXPORT_SYMBOL vmlinux 0x2657c5e6 __alloc_disk_node -EXPORT_SYMBOL vmlinux 0x265f3154 mmc_of_parse_clk_phase -EXPORT_SYMBOL vmlinux 0x267dfa84 mipi_dsi_shutdown_peripheral -EXPORT_SYMBOL vmlinux 0x2688ec10 bitmap_zalloc -EXPORT_SYMBOL vmlinux 0x26897b52 mb_cache_entry_get -EXPORT_SYMBOL vmlinux 0x26983273 dev_set_promiscuity -EXPORT_SYMBOL vmlinux 0x26a6a935 tcp_v4_md5_lookup -EXPORT_SYMBOL vmlinux 0x26b6b94c param_array_ops -EXPORT_SYMBOL vmlinux 0x26cc73c3 complete_and_exit -EXPORT_SYMBOL vmlinux 0x26e298e0 unregister_memory_notifier -EXPORT_SYMBOL vmlinux 0x26f256d0 seg6_hmac_info_del -EXPORT_SYMBOL vmlinux 0x26ffd935 framebuffer_alloc -EXPORT_SYMBOL vmlinux 0x2706cab9 alloc_xenballooned_pages -EXPORT_SYMBOL vmlinux 0x270cf88f dump_stack_lvl -EXPORT_SYMBOL vmlinux 0x271cba95 acpi_bus_private_data_handler -EXPORT_SYMBOL vmlinux 0x272a8933 udp_memory_allocated -EXPORT_SYMBOL vmlinux 0x272f340f pnp_device_detach -EXPORT_SYMBOL vmlinux 0x2733eaf7 scsi_dev_info_list_add_keyed -EXPORT_SYMBOL vmlinux 0x27467d45 shrink_dcache_parent -EXPORT_SYMBOL vmlinux 0x27479d14 param_free_charp -EXPORT_SYMBOL vmlinux 0x274a4ff9 rproc_add_carveout -EXPORT_SYMBOL vmlinux 0x275dfee4 ucc_slow_free -EXPORT_SYMBOL vmlinux 0x275f3d49 hdmi_vendor_infoframe_check -EXPORT_SYMBOL vmlinux 0x276deec1 vlan_dev_vlan_proto -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 0x2788e7aa sock_wmalloc -EXPORT_SYMBOL vmlinux 0x27897603 netif_set_real_num_rx_queues -EXPORT_SYMBOL vmlinux 0x2794f937 udp6_seq_ops -EXPORT_SYMBOL vmlinux 0x27b2ca78 nf_log_register -EXPORT_SYMBOL vmlinux 0x27bbf221 disable_irq_nosync -EXPORT_SYMBOL vmlinux 0x27bd332f __napi_alloc_skb -EXPORT_SYMBOL vmlinux 0x27bf8f23 param_ops_bint -EXPORT_SYMBOL vmlinux 0x27c3c728 qman_release_fqid -EXPORT_SYMBOL vmlinux 0x27cdca93 pci_add_resource -EXPORT_SYMBOL vmlinux 0x27d3e455 i2c_put_adapter -EXPORT_SYMBOL vmlinux 0x27f0a739 nvdimm_namespace_locked -EXPORT_SYMBOL vmlinux 0x27f6cb06 sync_blockdev -EXPORT_SYMBOL vmlinux 0x2803fc9f param_set_byte -EXPORT_SYMBOL vmlinux 0x28173011 dev_remove_pack -EXPORT_SYMBOL vmlinux 0x281823c5 __kfifo_out_peek -EXPORT_SYMBOL vmlinux 0x28230503 icmp6_send -EXPORT_SYMBOL vmlinux 0x2826bf26 __mdiobus_write -EXPORT_SYMBOL vmlinux 0x2875a315 utf32_to_utf8 -EXPORT_SYMBOL vmlinux 0x288a96ec seq_putc -EXPORT_SYMBOL vmlinux 0x288d06f4 copy_string_kernel -EXPORT_SYMBOL vmlinux 0x288e6e93 request_key_tag -EXPORT_SYMBOL vmlinux 0x289576e6 sock_alloc -EXPORT_SYMBOL vmlinux 0x289a814d tcp_parse_options -EXPORT_SYMBOL vmlinux 0x289af786 tcf_em_tree_validate -EXPORT_SYMBOL vmlinux 0x289e901a __scm_send -EXPORT_SYMBOL vmlinux 0x28a44056 phy_stop -EXPORT_SYMBOL vmlinux 0x28b7a82b dev_get_flags -EXPORT_SYMBOL vmlinux 0x28b9d174 i2c_smbus_read_i2c_block_data -EXPORT_SYMBOL vmlinux 0x28d0700d netdev_sk_get_lowest_dev -EXPORT_SYMBOL vmlinux 0x29022a3c blkdev_issue_discard -EXPORT_SYMBOL vmlinux 0x2910fef0 udp6_csum_init -EXPORT_SYMBOL vmlinux 0x293b33bf file_check_and_advance_wb_err -EXPORT_SYMBOL vmlinux 0x293c0eae key_instantiate_and_link -EXPORT_SYMBOL vmlinux 0x293f6653 request_key_with_auxdata -EXPORT_SYMBOL vmlinux 0x2950ac45 fd_install -EXPORT_SYMBOL vmlinux 0x29592744 pci_setup_cardbus -EXPORT_SYMBOL vmlinux 0x29604158 napi_busy_loop -EXPORT_SYMBOL vmlinux 0x29653273 filemap_fdatawait_keep_errors -EXPORT_SYMBOL vmlinux 0x296f9109 tcp_conn_request -EXPORT_SYMBOL vmlinux 0x2987e36c __sk_receive_skb -EXPORT_SYMBOL vmlinux 0x29a99b4d jbd2_transaction_committed -EXPORT_SYMBOL vmlinux 0x29aab2a4 tcf_exts_dump -EXPORT_SYMBOL vmlinux 0x29dbc84a rt6_lookup -EXPORT_SYMBOL vmlinux 0x29e1e204 hdmi_audio_infoframe_pack -EXPORT_SYMBOL vmlinux 0x29f0b804 scsi_scan_host -EXPORT_SYMBOL vmlinux 0x29f56a2d put_cmsg -EXPORT_SYMBOL vmlinux 0x2a013e4e dev_pre_changeaddr_notify -EXPORT_SYMBOL vmlinux 0x2a0c6a03 tty_driver_flush_buffer -EXPORT_SYMBOL vmlinux 0x2a0da213 __vfs_setxattr -EXPORT_SYMBOL vmlinux 0x2a0f35ed devm_nvmem_unregister -EXPORT_SYMBOL vmlinux 0x2a1707a6 kern_path_create -EXPORT_SYMBOL vmlinux 0x2a303d4d check_signature -EXPORT_SYMBOL vmlinux 0x2a56c15c simple_empty -EXPORT_SYMBOL vmlinux 0x2a5949f5 __bio_clone_fast -EXPORT_SYMBOL vmlinux 0x2a7e3cb6 mmput_async -EXPORT_SYMBOL vmlinux 0x2a8bfb87 md_handle_request -EXPORT_SYMBOL vmlinux 0x2a928918 slhc_free -EXPORT_SYMBOL vmlinux 0x2a9a3905 vme_master_get -EXPORT_SYMBOL vmlinux 0x2aa021fb skb_vlan_untag -EXPORT_SYMBOL vmlinux 0x2aa0843e mempool_resize -EXPORT_SYMBOL vmlinux 0x2aaa6add ether_setup -EXPORT_SYMBOL vmlinux 0x2aabaf9d xudma_tchan_get -EXPORT_SYMBOL vmlinux 0x2aabcdc8 vmalloc_array -EXPORT_SYMBOL vmlinux 0x2ab2ee91 brcmstb_get_product_id -EXPORT_SYMBOL vmlinux 0x2ab5bb3b mode_strip_sgid -EXPORT_SYMBOL vmlinux 0x2ac2b7b8 iov_iter_kvec -EXPORT_SYMBOL vmlinux 0x2ae56865 seq_write -EXPORT_SYMBOL vmlinux 0x2ae63c7a inet6_del_protocol -EXPORT_SYMBOL vmlinux 0x2aede795 xfrm_policy_insert -EXPORT_SYMBOL vmlinux 0x2b01139b tcf_em_tree_dump -EXPORT_SYMBOL vmlinux 0x2b0138e0 backlight_device_register -EXPORT_SYMBOL vmlinux 0x2b1abce3 fman_has_errata_a050385 -EXPORT_SYMBOL vmlinux 0x2b593aa8 gen_pool_alloc_algo_owner -EXPORT_SYMBOL vmlinux 0x2b59b9c8 genphy_read_status -EXPORT_SYMBOL vmlinux 0x2b68bd2f del_timer -EXPORT_SYMBOL vmlinux 0x2b69c394 i2c_transfer_buffer_flags -EXPORT_SYMBOL vmlinux 0x2b6cd0dc dcb_ieee_getapp_mask -EXPORT_SYMBOL vmlinux 0x2b793e23 netdev_has_upper_dev -EXPORT_SYMBOL vmlinux 0x2b7cedf7 inet_recvmsg -EXPORT_SYMBOL vmlinux 0x2b9309c4 i2c_verify_client -EXPORT_SYMBOL vmlinux 0x2b9a6740 skb_unlink -EXPORT_SYMBOL vmlinux 0x2b9da7a4 genl_lock -EXPORT_SYMBOL vmlinux 0x2baacc9f of_find_all_nodes -EXPORT_SYMBOL vmlinux 0x2bb20a81 qdisc_put -EXPORT_SYMBOL vmlinux 0x2bb6099e dq_data_lock -EXPORT_SYMBOL vmlinux 0x2bb72a21 ppp_unit_number -EXPORT_SYMBOL vmlinux 0x2bbc014b tty_port_tty_set -EXPORT_SYMBOL vmlinux 0x2bc6dd18 __register_nls -EXPORT_SYMBOL vmlinux 0x2bd38923 fman_get_revision -EXPORT_SYMBOL vmlinux 0x2bd60ab9 acpi_reset -EXPORT_SYMBOL vmlinux 0x2bf457b2 user_path_at_empty -EXPORT_SYMBOL vmlinux 0x2bfbab10 __memmove -EXPORT_SYMBOL vmlinux 0x2c11510a xfrm_register_type_offload -EXPORT_SYMBOL vmlinux 0x2c115af2 blk_queue_physical_block_size -EXPORT_SYMBOL vmlinux 0x2c256e1f input_scancode_to_scalar -EXPORT_SYMBOL vmlinux 0x2c3245d2 ipv6_getsockopt -EXPORT_SYMBOL vmlinux 0x2c329e54 tegra_powergate_sequence_power_up -EXPORT_SYMBOL vmlinux 0x2c51b8d3 inet_sk_rx_dst_set -EXPORT_SYMBOL vmlinux 0x2c541e7b radix_tree_next_chunk -EXPORT_SYMBOL vmlinux 0x2c71fbfb proc_dobool -EXPORT_SYMBOL vmlinux 0x2c739263 mmc_wait_for_cmd -EXPORT_SYMBOL vmlinux 0x2c771036 __neigh_create -EXPORT_SYMBOL vmlinux 0x2c80c305 udp_seq_ops -EXPORT_SYMBOL vmlinux 0x2c91e17c vm_get_page_prot -EXPORT_SYMBOL vmlinux 0x2c9e983d pci_assign_resource -EXPORT_SYMBOL vmlinux 0x2ca7c454 __cleancache_init_fs -EXPORT_SYMBOL vmlinux 0x2cbc95f2 dev_get_by_napi_id -EXPORT_SYMBOL vmlinux 0x2cc3d3f4 sock_i_uid -EXPORT_SYMBOL vmlinux 0x2ccd059a dim_on_top -EXPORT_SYMBOL vmlinux 0x2cdf87a1 proc_dointvec_minmax -EXPORT_SYMBOL vmlinux 0x2ce9d9e8 sock_no_recvmsg -EXPORT_SYMBOL vmlinux 0x2cf63ef4 simple_getattr -EXPORT_SYMBOL vmlinux 0x2d140a58 genl_unlock -EXPORT_SYMBOL vmlinux 0x2d192c70 sg_zero_buffer -EXPORT_SYMBOL vmlinux 0x2d1f9a2f mmc_wait_for_req -EXPORT_SYMBOL vmlinux 0x2d30596c from_kqid_munged -EXPORT_SYMBOL vmlinux 0x2d3385d3 system_wq -EXPORT_SYMBOL vmlinux 0x2d369629 locks_copy_lock -EXPORT_SYMBOL vmlinux 0x2d390b15 input_reset_device -EXPORT_SYMBOL vmlinux 0x2d39b0a7 kstrdup -EXPORT_SYMBOL vmlinux 0x2d3e878c __ps2_command -EXPORT_SYMBOL vmlinux 0x2d40921e netif_napi_add -EXPORT_SYMBOL vmlinux 0x2d4c773a hdmi_spd_infoframe_init -EXPORT_SYMBOL vmlinux 0x2d4daef5 find_font -EXPORT_SYMBOL vmlinux 0x2d659207 tty_name -EXPORT_SYMBOL vmlinux 0x2d7061c8 skb_dump -EXPORT_SYMBOL vmlinux 0x2d8ae9f4 ip6_find_1stfragopt -EXPORT_SYMBOL vmlinux 0x2d912bca dmi_get_bios_year -EXPORT_SYMBOL vmlinux 0x2d994605 security_inode_copy_up_xattr -EXPORT_SYMBOL vmlinux 0x2d99ec87 pci_msix_vec_count -EXPORT_SYMBOL vmlinux 0x2da18025 inet_twsk_deschedule_put -EXPORT_SYMBOL vmlinux 0x2da8f8a3 md_write_inc -EXPORT_SYMBOL vmlinux 0x2dc7e64c mdio_find_bus -EXPORT_SYMBOL vmlinux 0x2dce2f1c __irq_regs -EXPORT_SYMBOL vmlinux 0x2de125c0 page_frag_alloc_align -EXPORT_SYMBOL vmlinux 0x2de9de2b vme_master_mmap -EXPORT_SYMBOL vmlinux 0x2dfa6f6f devfreq_remove_governor -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 0x2e3bcce2 wait_for_completion_interruptible -EXPORT_SYMBOL vmlinux 0x2e439142 drm_get_panel_orientation_quirk -EXPORT_SYMBOL vmlinux 0x2e4cb33a vm_insert_pages -EXPORT_SYMBOL vmlinux 0x2e56a969 xp_dma_map -EXPORT_SYMBOL vmlinux 0x2e5b27da xudma_alloc_gp_rflow_range -EXPORT_SYMBOL vmlinux 0x2e5fe036 __skb_ext_put -EXPORT_SYMBOL vmlinux 0x2e6003be tty_unregister_driver -EXPORT_SYMBOL vmlinux 0x2e8eefe3 twl6030_mmc_card_detect -EXPORT_SYMBOL vmlinux 0x2e9e3cd0 vga_remove_vgacon -EXPORT_SYMBOL vmlinux 0x2e9fd6c1 configfs_unregister_subsystem -EXPORT_SYMBOL vmlinux 0x2ebc234d blkdev_get_by_dev -EXPORT_SYMBOL vmlinux 0x2ec6bba0 errseq_set -EXPORT_SYMBOL vmlinux 0x2edf378b con_is_visible -EXPORT_SYMBOL vmlinux 0x2ee4c2b1 hdmi_avi_infoframe_pack_only -EXPORT_SYMBOL vmlinux 0x2ee67191 rproc_get_by_phandle -EXPORT_SYMBOL vmlinux 0x2eea912c get_random_bytes_arch -EXPORT_SYMBOL vmlinux 0x2eeb63b4 phy_set_max_speed -EXPORT_SYMBOL vmlinux 0x2ef7546e locks_copy_conflock -EXPORT_SYMBOL vmlinux 0x2f03fc4b security_secmark_refcount_inc -EXPORT_SYMBOL vmlinux 0x2f090019 set_blocksize -EXPORT_SYMBOL vmlinux 0x2f0d689b inode_nohighmem -EXPORT_SYMBOL vmlinux 0x2f1254d1 ucc_tdm_init -EXPORT_SYMBOL vmlinux 0x2f255a0b phy_set_sym_pause -EXPORT_SYMBOL vmlinux 0x2f2e91b2 security_ib_alloc_security -EXPORT_SYMBOL vmlinux 0x2f333aab imx_scu_get_handle -EXPORT_SYMBOL vmlinux 0x2f384db3 acpi_is_video_device -EXPORT_SYMBOL vmlinux 0x2f541637 proc_mkdir -EXPORT_SYMBOL vmlinux 0x2f5a311b config_group_init_type_name -EXPORT_SYMBOL vmlinux 0x2f5c810e generic_permission -EXPORT_SYMBOL vmlinux 0x2f7754a8 dma_pool_free -EXPORT_SYMBOL vmlinux 0x2f8496fd phy_ethtool_set_eee -EXPORT_SYMBOL vmlinux 0x2fd4e756 keyring_alloc -EXPORT_SYMBOL vmlinux 0x2fe10b75 generic_mii_ioctl -EXPORT_SYMBOL vmlinux 0x2fe1100e ppp_input -EXPORT_SYMBOL vmlinux 0x2fe252cc unregister_inet6addr_notifier -EXPORT_SYMBOL vmlinux 0x2fe5b535 qcom_scm_assign_mem -EXPORT_SYMBOL vmlinux 0x3003890a vme_register_bridge -EXPORT_SYMBOL vmlinux 0x300661fe inet_csk_destroy_sock -EXPORT_SYMBOL vmlinux 0x300d7879 config_item_get_unless_zero -EXPORT_SYMBOL vmlinux 0x3018a678 kernel_getsockname -EXPORT_SYMBOL vmlinux 0x30217093 jbd2_journal_unlock_updates -EXPORT_SYMBOL vmlinux 0x30239693 xp_can_alloc -EXPORT_SYMBOL vmlinux 0x30434a88 skb_udp_tunnel_segment -EXPORT_SYMBOL vmlinux 0x3050d734 xfrm6_rcv -EXPORT_SYMBOL vmlinux 0x3052fecd ptp_convert_timestamp -EXPORT_SYMBOL vmlinux 0x3076495d get_tz_trend -EXPORT_SYMBOL vmlinux 0x307b2617 netdev_warn -EXPORT_SYMBOL vmlinux 0x3096be16 names_cachep -EXPORT_SYMBOL vmlinux 0x30a15c42 sock_set_sndtimeo -EXPORT_SYMBOL vmlinux 0x30a80826 __kfifo_from_user -EXPORT_SYMBOL vmlinux 0x30acfde9 hsiphash_2u32 -EXPORT_SYMBOL vmlinux 0x30c84b28 __put_page -EXPORT_SYMBOL vmlinux 0x30e3f4fd get_tree_single -EXPORT_SYMBOL vmlinux 0x30e74134 tty_termios_copy_hw -EXPORT_SYMBOL vmlinux 0x30f72717 skb_clone_sk -EXPORT_SYMBOL vmlinux 0x3100cff9 lockref_get_or_lock -EXPORT_SYMBOL vmlinux 0x3102d70b frontswap_curr_pages -EXPORT_SYMBOL vmlinux 0x310760c6 vlan_vid_add -EXPORT_SYMBOL vmlinux 0x3122da45 kmem_cache_shrink -EXPORT_SYMBOL vmlinux 0x3123befb ip_fraglist_init -EXPORT_SYMBOL vmlinux 0x3126a9e8 siphash_1u64 -EXPORT_SYMBOL vmlinux 0x3138c7e5 brioctl_set -EXPORT_SYMBOL vmlinux 0x315704aa skb_coalesce_rx_frag -EXPORT_SYMBOL vmlinux 0x315aeb2f phy_ethtool_get_eee -EXPORT_SYMBOL vmlinux 0x31645c33 inet_frag_queue_insert -EXPORT_SYMBOL vmlinux 0x319d493d proc_dostring -EXPORT_SYMBOL vmlinux 0x31a115d2 audit_log -EXPORT_SYMBOL vmlinux 0x31a4767f qcom_scm_hdcp_available -EXPORT_SYMBOL vmlinux 0x31a55e8a filemap_fdatawait_range_keep_errors -EXPORT_SYMBOL vmlinux 0x31accd5e start_tty -EXPORT_SYMBOL vmlinux 0x31b6eb00 inet_getname -EXPORT_SYMBOL vmlinux 0x31c39290 get_user_pages_unlocked -EXPORT_SYMBOL vmlinux 0x31e766e0 sg_alloc_table_from_pages_segment -EXPORT_SYMBOL vmlinux 0x3205b6df sk_stream_kill_queues -EXPORT_SYMBOL vmlinux 0x3206e6a3 try_module_get -EXPORT_SYMBOL vmlinux 0x320eb44e ll_rw_block -EXPORT_SYMBOL vmlinux 0x3213f038 mutex_unlock -EXPORT_SYMBOL vmlinux 0x32177f2b sync_inode_metadata -EXPORT_SYMBOL vmlinux 0x3223dfe2 gnet_stats_copy_app -EXPORT_SYMBOL vmlinux 0x32286525 tty_flip_buffer_push -EXPORT_SYMBOL vmlinux 0x322df2a1 xsk_tx_completed -EXPORT_SYMBOL vmlinux 0x322e5c5e fs_param_is_string -EXPORT_SYMBOL vmlinux 0x32394d4b qe_issue_cmd -EXPORT_SYMBOL vmlinux 0x323f6980 devfreq_monitor_resume -EXPORT_SYMBOL vmlinux 0x326980e7 configfs_unregister_default_group -EXPORT_SYMBOL vmlinux 0x327c84bf vme_lm_attach -EXPORT_SYMBOL vmlinux 0x327e2cbb flow_rule_match_enc_opts -EXPORT_SYMBOL vmlinux 0x3283e6b0 prandom_seed_full_state -EXPORT_SYMBOL vmlinux 0x32898fc2 inet_pton_with_scope -EXPORT_SYMBOL vmlinux 0x328d8e96 blk_integrity_unregister -EXPORT_SYMBOL vmlinux 0x32adee46 __check_sticky -EXPORT_SYMBOL vmlinux 0x32ae91ab sock_create_lite -EXPORT_SYMBOL vmlinux 0x32b2d0d7 tcp_ioctl -EXPORT_SYMBOL vmlinux 0x32b432f8 __dec_zone_page_state -EXPORT_SYMBOL vmlinux 0x32bc133d __bread_gfp -EXPORT_SYMBOL vmlinux 0x32c19b9f gro_find_receive_by_type -EXPORT_SYMBOL vmlinux 0x32c36168 gro_find_complete_by_type -EXPORT_SYMBOL vmlinux 0x32ce3777 radix_tree_preload -EXPORT_SYMBOL vmlinux 0x32e6f1a0 acpi_video_backlight_string -EXPORT_SYMBOL vmlinux 0x33037fd8 logic_outl -EXPORT_SYMBOL vmlinux 0x3304986a cdrom_check_events -EXPORT_SYMBOL vmlinux 0x33353723 security_locked_down -EXPORT_SYMBOL vmlinux 0x33445f3d __phy_write_mmd -EXPORT_SYMBOL vmlinux 0x33736a1d __genradix_ptr_alloc -EXPORT_SYMBOL vmlinux 0x33815e08 dm_table_event -EXPORT_SYMBOL vmlinux 0x33b1c454 vma_set_file -EXPORT_SYMBOL vmlinux 0x33efdd32 pci_get_subsys -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 0x3405df6c tty_port_open -EXPORT_SYMBOL vmlinux 0x34067dba sync_filesystem -EXPORT_SYMBOL vmlinux 0x340d8bd8 tty_register_driver -EXPORT_SYMBOL vmlinux 0x3424daf8 __traceiter_dma_fence_enable_signal -EXPORT_SYMBOL vmlinux 0x3429ae72 phy_validate_pause -EXPORT_SYMBOL vmlinux 0x342d9d65 flow_block_cb_decref -EXPORT_SYMBOL vmlinux 0x3432fe1b component_match_add_release -EXPORT_SYMBOL vmlinux 0x343f29d1 discard_new_inode -EXPORT_SYMBOL vmlinux 0x34401560 blk_mq_unique_tag -EXPORT_SYMBOL vmlinux 0x3445fe1c pci_bus_claim_resources -EXPORT_SYMBOL vmlinux 0x3487e908 remove_proc_entry -EXPORT_SYMBOL vmlinux 0x349af854 iterate_supers_type -EXPORT_SYMBOL vmlinux 0x349cba85 strchr -EXPORT_SYMBOL vmlinux 0x34a1f7e3 acpi_processor_get_psd -EXPORT_SYMBOL vmlinux 0x34b16334 __next_node_in -EXPORT_SYMBOL vmlinux 0x34b7481d devm_extcon_register_notifier -EXPORT_SYMBOL vmlinux 0x34c364ea devfreq_remove_device -EXPORT_SYMBOL vmlinux 0x34c7cdbc lookup_bdev -EXPORT_SYMBOL vmlinux 0x34f3484e security_tun_dev_attach_queue -EXPORT_SYMBOL vmlinux 0x34ff5535 param_set_copystring -EXPORT_SYMBOL vmlinux 0x35096c16 tty_unlock -EXPORT_SYMBOL vmlinux 0x350ea558 dma_fence_default_wait -EXPORT_SYMBOL vmlinux 0x3517383e register_reboot_notifier -EXPORT_SYMBOL vmlinux 0x351be277 genphy_soft_reset -EXPORT_SYMBOL vmlinux 0x3532fd83 kmem_cache_free_bulk -EXPORT_SYMBOL vmlinux 0x353444fa scsi_mode_sense -EXPORT_SYMBOL vmlinux 0x3539f11b match_strlcpy -EXPORT_SYMBOL vmlinux 0x3562ed22 fwnode_mdiobus_phy_device_register -EXPORT_SYMBOL vmlinux 0x356461c8 rtc_time64_to_tm -EXPORT_SYMBOL vmlinux 0x359ad97d locks_init_lock -EXPORT_SYMBOL vmlinux 0x35a88f28 zlib_inflateInit2 -EXPORT_SYMBOL vmlinux 0x35ad0187 inode_dio_wait -EXPORT_SYMBOL vmlinux 0x35b17da7 proto_register -EXPORT_SYMBOL vmlinux 0x35c7edca cdrom_dummy_generic_packet -EXPORT_SYMBOL vmlinux 0x35cc6208 tcf_generic_walker -EXPORT_SYMBOL vmlinux 0x35cedd0a param_ops_byte -EXPORT_SYMBOL vmlinux 0x35dc5276 dquot_transfer -EXPORT_SYMBOL vmlinux 0x35e2368c set_disk_ro -EXPORT_SYMBOL vmlinux 0x35edb7a1 phy_error -EXPORT_SYMBOL vmlinux 0x3605e9c4 set_binfmt -EXPORT_SYMBOL vmlinux 0x360b1afe probe_irq_mask -EXPORT_SYMBOL vmlinux 0x363059ee pfifo_qdisc_ops -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 0x366419a5 __dev_set_mtu -EXPORT_SYMBOL vmlinux 0x36649c13 ata_std_end_eh -EXPORT_SYMBOL vmlinux 0x368d440f mr_table_dump -EXPORT_SYMBOL vmlinux 0x3693e651 default_qdisc_ops -EXPORT_SYMBOL vmlinux 0x3698507f set_bh_page -EXPORT_SYMBOL vmlinux 0x36b6ebbf down_killable -EXPORT_SYMBOL vmlinux 0x36b77ec3 uart_get_divisor -EXPORT_SYMBOL vmlinux 0x36ba9fbe i2c_register_driver -EXPORT_SYMBOL vmlinux 0x36be9ebf get_tree_keyed -EXPORT_SYMBOL vmlinux 0x36cca218 __do_once_done -EXPORT_SYMBOL vmlinux 0x36eff2ad fib_notifier_ops_unregister -EXPORT_SYMBOL vmlinux 0x36f0c41e input_mt_report_finger_count -EXPORT_SYMBOL vmlinux 0x36f42a92 dqget -EXPORT_SYMBOL vmlinux 0x37040707 iommu_get_dma_cookie -EXPORT_SYMBOL vmlinux 0x37110088 remove_wait_queue -EXPORT_SYMBOL vmlinux 0x371423e2 tcf_exts_change -EXPORT_SYMBOL vmlinux 0x3719f011 scsi_register_driver -EXPORT_SYMBOL vmlinux 0x372225a3 netdev_lower_get_next_private_rcu -EXPORT_SYMBOL vmlinux 0x372b1a99 tcf_unregister_action -EXPORT_SYMBOL vmlinux 0x3737d9a9 ZSTD_DStreamWorkspaceBound -EXPORT_SYMBOL vmlinux 0x373c7f57 scsi_device_quiesce -EXPORT_SYMBOL vmlinux 0x3744cf36 vmalloc_to_pfn -EXPORT_SYMBOL vmlinux 0x3755f990 gf128mul_init_64k_bbe -EXPORT_SYMBOL vmlinux 0x3766a864 skb_seq_read -EXPORT_SYMBOL vmlinux 0x37680fc2 ip6_dst_hoplimit -EXPORT_SYMBOL vmlinux 0x376f289e pci_enable_msix_range -EXPORT_SYMBOL vmlinux 0x37746fde ZSTD_initDStream -EXPORT_SYMBOL vmlinux 0x377b1171 dev_set_alias -EXPORT_SYMBOL vmlinux 0x377d8004 acpi_error -EXPORT_SYMBOL vmlinux 0x377eac3e skb_checksum -EXPORT_SYMBOL vmlinux 0x3780c7bd get_watch_queue -EXPORT_SYMBOL vmlinux 0x3783239f d_lookup -EXPORT_SYMBOL vmlinux 0x379dd035 build_skb -EXPORT_SYMBOL vmlinux 0x37b61b0c mmc_erase_group_aligned -EXPORT_SYMBOL vmlinux 0x37b7aa72 write_dirty_buffer -EXPORT_SYMBOL vmlinux 0x37b8b39e screen_info -EXPORT_SYMBOL vmlinux 0x37befc70 jiffies_to_msecs -EXPORT_SYMBOL vmlinux 0x37d2df37 netif_carrier_off -EXPORT_SYMBOL vmlinux 0x37d71b8c release_sock -EXPORT_SYMBOL vmlinux 0x37d83575 tcf_chain_put_by_act -EXPORT_SYMBOL vmlinux 0x37db8f19 dmi_get_date -EXPORT_SYMBOL vmlinux 0x380d90eb mmc_retune_pause -EXPORT_SYMBOL vmlinux 0x381a798a setup_max_cpus -EXPORT_SYMBOL vmlinux 0x381c55dc thaw_super -EXPORT_SYMBOL vmlinux 0x3843de51 __skb_free_datagram_locked -EXPORT_SYMBOL vmlinux 0x384c51b7 xudma_get_device -EXPORT_SYMBOL vmlinux 0x3854774b kstrtoll -EXPORT_SYMBOL vmlinux 0x3878dbdb ppp_output_wakeup -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 0x38a37dc9 redirty_page_for_writepage -EXPORT_SYMBOL vmlinux 0x38a71b7e pci_free_resource_list -EXPORT_SYMBOL vmlinux 0x38a9f7c5 in6addr_loopback -EXPORT_SYMBOL vmlinux 0x38bad6e6 bio_chain -EXPORT_SYMBOL vmlinux 0x38c76bcb __scsi_device_lookup_by_target -EXPORT_SYMBOL vmlinux 0x38e46431 mempool_exit -EXPORT_SYMBOL vmlinux 0x38e634ac blk_mq_run_hw_queue -EXPORT_SYMBOL vmlinux 0x38e9f9ff elv_rb_find -EXPORT_SYMBOL vmlinux 0x38f34024 tegra_prod_set_boot_init -EXPORT_SYMBOL vmlinux 0x38f48af7 put_user_ifreq -EXPORT_SYMBOL vmlinux 0x38f4e3b3 simple_transaction_read -EXPORT_SYMBOL vmlinux 0x38f7b6d3 migrate_vma_setup -EXPORT_SYMBOL vmlinux 0x391a3ce7 eth_mac_addr -EXPORT_SYMBOL vmlinux 0x3928aa3b xp_raw_get_dma -EXPORT_SYMBOL vmlinux 0x3928efe9 __per_cpu_offset -EXPORT_SYMBOL vmlinux 0x392b1fea wait_for_completion_io -EXPORT_SYMBOL vmlinux 0x392fd4aa tcp_sock_set_syncnt -EXPORT_SYMBOL vmlinux 0x3938c022 fman_register_intr -EXPORT_SYMBOL vmlinux 0x3939f8f0 rfkill_pause_polling -EXPORT_SYMBOL vmlinux 0x39420fb3 logfc -EXPORT_SYMBOL vmlinux 0x39461d6a in_egroup_p -EXPORT_SYMBOL vmlinux 0x394a1e11 phy_sfp_attach -EXPORT_SYMBOL vmlinux 0x39544f9c input_unregister_device -EXPORT_SYMBOL vmlinux 0x3955fcf6 __kfifo_in_r -EXPORT_SYMBOL vmlinux 0x39570525 ipv6_sock_mc_drop -EXPORT_SYMBOL vmlinux 0x396873a8 __inc_node_page_state -EXPORT_SYMBOL vmlinux 0x39945009 scsi_add_device -EXPORT_SYMBOL vmlinux 0x39991865 icmp_global_allow -EXPORT_SYMBOL vmlinux 0x399ad043 __kfifo_dma_out_finish_r -EXPORT_SYMBOL vmlinux 0x39b52d19 __bitmap_and -EXPORT_SYMBOL vmlinux 0x39b8d49c cpu_rmap_update -EXPORT_SYMBOL vmlinux 0x39be4b8e qman_volatile_dequeue -EXPORT_SYMBOL vmlinux 0x39d2f0a3 __dev_kfree_skb_irq -EXPORT_SYMBOL vmlinux 0x39de28ba serio_close -EXPORT_SYMBOL vmlinux 0x39f95265 pnp_start_dev -EXPORT_SYMBOL vmlinux 0x39fd38c7 pldmfw_op_pci_match_record -EXPORT_SYMBOL vmlinux 0x3a08f377 dev_mc_del_global -EXPORT_SYMBOL vmlinux 0x3a13f54a sgl_alloc -EXPORT_SYMBOL vmlinux 0x3a1d3d8d fb_show_logo -EXPORT_SYMBOL vmlinux 0x3a2083bb pnp_release_card_device -EXPORT_SYMBOL vmlinux 0x3a216515 mmc_gpio_set_cd_isr -EXPORT_SYMBOL vmlinux 0x3a24cb4e __sk_mem_reclaim -EXPORT_SYMBOL vmlinux 0x3a2b2f00 bio_reset -EXPORT_SYMBOL vmlinux 0x3a2f6702 sg_alloc_table -EXPORT_SYMBOL vmlinux 0x3a466eaa pci_reenable_device -EXPORT_SYMBOL vmlinux 0x3a4f9d28 rng_is_initialized -EXPORT_SYMBOL vmlinux 0x3a55395c dev_pm_opp_unregister_notifier -EXPORT_SYMBOL vmlinux 0x3a9fa419 tcf_qevent_init -EXPORT_SYMBOL vmlinux 0x3ab128fc xfrm_sad_getinfo -EXPORT_SYMBOL vmlinux 0x3ab7b1cc scsi_set_sense_field_pointer -EXPORT_SYMBOL vmlinux 0x3ad02806 unix_destruct_scm -EXPORT_SYMBOL vmlinux 0x3ad5abdf nf_register_net_hook -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 0x3af715d3 d_instantiate -EXPORT_SYMBOL vmlinux 0x3aff3200 acpi_evaluate_object_typed -EXPORT_SYMBOL vmlinux 0x3b084fc1 dev_mc_add_excl -EXPORT_SYMBOL vmlinux 0x3b0f23d2 xudma_is_pktdma -EXPORT_SYMBOL vmlinux 0x3b20fb95 dma_fence_remove_callback -EXPORT_SYMBOL vmlinux 0x3b25b8b7 ip_setsockopt -EXPORT_SYMBOL vmlinux 0x3b321462 LZ4_setStreamDecode -EXPORT_SYMBOL vmlinux 0x3b42e98c blk_cleanup_disk -EXPORT_SYMBOL vmlinux 0x3b4467b1 cros_ec_get_next_event -EXPORT_SYMBOL vmlinux 0x3b644591 __bitmap_shift_left -EXPORT_SYMBOL vmlinux 0x3b6c41ea kstrtouint -EXPORT_SYMBOL vmlinux 0x3b80be04 pci_release_regions -EXPORT_SYMBOL vmlinux 0x3b8ec52d tcp_time_wait -EXPORT_SYMBOL vmlinux 0x3b9144c9 acpi_get_current_resources -EXPORT_SYMBOL vmlinux 0x3b93c2b9 mmc_card_is_blockaddr -EXPORT_SYMBOL vmlinux 0x3b96f430 bio_add_pc_page -EXPORT_SYMBOL vmlinux 0x3b9a50f1 tcp_recvmsg -EXPORT_SYMBOL vmlinux 0x3b9b9389 ip6mr_rule_default -EXPORT_SYMBOL vmlinux 0x3b9f9a8b d_alloc_parallel -EXPORT_SYMBOL vmlinux 0x3bac24a2 napi_build_skb -EXPORT_SYMBOL vmlinux 0x3bbfcf55 acpi_dev_get_next_match_dev -EXPORT_SYMBOL vmlinux 0x3bcb39e7 mii_link_ok -EXPORT_SYMBOL vmlinux 0x3bd6ed39 sk_stream_wait_close -EXPORT_SYMBOL vmlinux 0x3bd75018 xfrm_policy_bysel_ctx -EXPORT_SYMBOL vmlinux 0x3be7643e security_xfrm_policy_free -EXPORT_SYMBOL vmlinux 0x3bfe99e5 bio_devname -EXPORT_SYMBOL vmlinux 0x3c012bd5 file_path -EXPORT_SYMBOL vmlinux 0x3c015ae0 inet_csk_clear_xmit_timers -EXPORT_SYMBOL vmlinux 0x3c185c61 page_put_link -EXPORT_SYMBOL vmlinux 0x3c3215c4 qe_immr -EXPORT_SYMBOL vmlinux 0x3c3fce39 __local_bh_enable_ip -EXPORT_SYMBOL vmlinux 0x3c3ff9fd sprintf -EXPORT_SYMBOL vmlinux 0x3c4e9e1f datagram_poll -EXPORT_SYMBOL vmlinux 0x3c5b2cb4 bioset_init -EXPORT_SYMBOL vmlinux 0x3c721062 alloc_netdev_mqs -EXPORT_SYMBOL vmlinux 0x3c986f8e __sk_dst_check -EXPORT_SYMBOL vmlinux 0x3cd4820f xfrm4_udp_encap_rcv -EXPORT_SYMBOL vmlinux 0x3cd9ed83 logic_insw -EXPORT_SYMBOL vmlinux 0x3cdc124d seg6_hmac_info_add -EXPORT_SYMBOL vmlinux 0x3ce4ca6f disable_irq -EXPORT_SYMBOL vmlinux 0x3ce8083d page_pool_release_page -EXPORT_SYMBOL vmlinux 0x3cefeca8 devfreq_monitor_stop -EXPORT_SYMBOL vmlinux 0x3cf924f1 del_gendisk -EXPORT_SYMBOL vmlinux 0x3d00c0f0 iov_iter_get_pages -EXPORT_SYMBOL vmlinux 0x3d02cd70 dma_fence_signal_locked -EXPORT_SYMBOL vmlinux 0x3d1d209b of_graph_get_port_by_id -EXPORT_SYMBOL vmlinux 0x3d210724 gen_pool_dma_zalloc_align -EXPORT_SYMBOL vmlinux 0x3d4ef5a5 of_phy_is_fixed_link -EXPORT_SYMBOL vmlinux 0x3d56e7b3 utf8_unload -EXPORT_SYMBOL vmlinux 0x3d8182ac empty_aops -EXPORT_SYMBOL vmlinux 0x3d8bb465 twl6040_set_pll -EXPORT_SYMBOL vmlinux 0x3d93c7c2 __arm_smccc_sve_check -EXPORT_SYMBOL vmlinux 0x3d9ee9f0 clear_page -EXPORT_SYMBOL vmlinux 0x3da072d3 genlmsg_put -EXPORT_SYMBOL vmlinux 0x3da5b1bc unregister_binfmt -EXPORT_SYMBOL vmlinux 0x3dab447b mipi_dsi_dcs_set_display_on -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 0x3dd0a847 kset_unregister -EXPORT_SYMBOL vmlinux 0x3dd3f054 xudma_rchan_get_id -EXPORT_SYMBOL vmlinux 0x3dd9b230 proc_dointvec_userhz_jiffies -EXPORT_SYMBOL vmlinux 0x3de796c1 locks_lock_inode_wait -EXPORT_SYMBOL vmlinux 0x3dfabc2c cookie_timestamp_decode -EXPORT_SYMBOL vmlinux 0x3dfb86b9 resource_list_create_entry -EXPORT_SYMBOL vmlinux 0x3dfc897c seq_hlist_start_head -EXPORT_SYMBOL vmlinux 0x3e058164 netdev_info -EXPORT_SYMBOL vmlinux 0x3e09698a mipi_dsi_compression_mode -EXPORT_SYMBOL vmlinux 0x3e126a46 xfrm_replay_seqhi -EXPORT_SYMBOL vmlinux 0x3e391525 sock_common_recvmsg -EXPORT_SYMBOL vmlinux 0x3e3bad0a __tasklet_hi_schedule -EXPORT_SYMBOL vmlinux 0x3e3fa453 iommu_get_msi_cookie -EXPORT_SYMBOL vmlinux 0x3e44cb8b ip_frag_next -EXPORT_SYMBOL vmlinux 0x3e46272b security_dentry_create_files_as -EXPORT_SYMBOL vmlinux 0x3e5a3720 skb_flow_dissect_hash -EXPORT_SYMBOL vmlinux 0x3e79896c vga_set_legacy_decoding -EXPORT_SYMBOL vmlinux 0x3e79fb00 arm_smccc_1_2_smc -EXPORT_SYMBOL vmlinux 0x3e9f23d6 pm860x_page_reg_write -EXPORT_SYMBOL vmlinux 0x3eae0202 mr_mfc_find_any_parent -EXPORT_SYMBOL vmlinux 0x3eafc5f9 rproc_add_subdev -EXPORT_SYMBOL vmlinux 0x3ec3812e kern_unmount_array -EXPORT_SYMBOL vmlinux 0x3ee2310c of_find_node_opts_by_path -EXPORT_SYMBOL vmlinux 0x3eeb2322 __wake_up -EXPORT_SYMBOL vmlinux 0x3ef92f36 netdev_pick_tx -EXPORT_SYMBOL vmlinux 0x3efe1703 phy_unregister_fixup_for_id -EXPORT_SYMBOL vmlinux 0x3f03804b tty_unregister_device -EXPORT_SYMBOL vmlinux 0x3f0eabd2 xxh64_update -EXPORT_SYMBOL vmlinux 0x3f0f2f9a filemap_fdatawrite_range -EXPORT_SYMBOL vmlinux 0x3f148316 pci_fixup_cardbus -EXPORT_SYMBOL vmlinux 0x3f155686 nd_namespace_blk_validate -EXPORT_SYMBOL vmlinux 0x3f16d89f block_invalidatepage -EXPORT_SYMBOL vmlinux 0x3f1bac93 tcf_block_put_ext -EXPORT_SYMBOL vmlinux 0x3f293955 iw_handler_set_thrspy -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 0x3f8876cf vfs_statfs -EXPORT_SYMBOL vmlinux 0x3f88d6cb udp_lib_getsockopt -EXPORT_SYMBOL vmlinux 0x3f89071b security_ib_pkey_access -EXPORT_SYMBOL vmlinux 0x3f9a0a3b register_key_type -EXPORT_SYMBOL vmlinux 0x3f9ccde8 pci_set_power_state -EXPORT_SYMBOL vmlinux 0x3fbf3c89 vme_slave_set -EXPORT_SYMBOL vmlinux 0x3fd78f3b register_chrdev_region -EXPORT_SYMBOL vmlinux 0x3fe2ccbe memweight -EXPORT_SYMBOL vmlinux 0x4003d155 bio_integrity_clone -EXPORT_SYMBOL vmlinux 0x401a883c simple_setattr -EXPORT_SYMBOL vmlinux 0x40212ccf __qdisc_calculate_pkt_len -EXPORT_SYMBOL vmlinux 0x40235a75 nvdimm_namespace_common_probe -EXPORT_SYMBOL vmlinux 0x402aa18b add_to_pipe -EXPORT_SYMBOL vmlinux 0x4044f3e8 devm_pci_remap_iospace -EXPORT_SYMBOL vmlinux 0x40548be5 d_path -EXPORT_SYMBOL vmlinux 0x40725392 rproc_set_firmware -EXPORT_SYMBOL vmlinux 0x40761022 iov_iter_zero -EXPORT_SYMBOL vmlinux 0x4077b741 blk_queue_flag_clear -EXPORT_SYMBOL vmlinux 0x4079151b __skb_recv_datagram -EXPORT_SYMBOL vmlinux 0x4080cbde dma_resv_fini -EXPORT_SYMBOL vmlinux 0x40915e70 tcf_idr_cleanup -EXPORT_SYMBOL vmlinux 0x4091f257 pskb_trim_rcsum_slow -EXPORT_SYMBOL vmlinux 0x40973662 sysctl_udp_mem -EXPORT_SYMBOL vmlinux 0x409873e3 tty_termios_baud_rate -EXPORT_SYMBOL vmlinux 0x409c6fc0 ethtool_notify -EXPORT_SYMBOL vmlinux 0x40a9b349 vzalloc -EXPORT_SYMBOL vmlinux 0x40b2b001 jbd2_journal_set_features -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 0x40eb1d9f fscrypt_ioctl_set_policy -EXPORT_SYMBOL vmlinux 0x40edc9c4 fs_param_is_path -EXPORT_SYMBOL vmlinux 0x40f37b03 nla_reserve -EXPORT_SYMBOL vmlinux 0x40f76a86 __vcalloc -EXPORT_SYMBOL vmlinux 0x411253bc try_to_free_buffers -EXPORT_SYMBOL vmlinux 0x41293861 fwnode_phy_find_device -EXPORT_SYMBOL vmlinux 0x412f893c page_offline_begin -EXPORT_SYMBOL vmlinux 0x413ab903 bd_abort_claiming -EXPORT_SYMBOL vmlinux 0x4145cc7a ipv6_chk_addr -EXPORT_SYMBOL vmlinux 0x41482d8b strndup_user -EXPORT_SYMBOL vmlinux 0x414da5e5 qman_enqueue -EXPORT_SYMBOL vmlinux 0x41509148 blk_queue_bounce_limit -EXPORT_SYMBOL vmlinux 0x415e1b95 skb_flow_get_icmp_tci -EXPORT_SYMBOL vmlinux 0x4164fd0f of_graph_get_remote_port -EXPORT_SYMBOL vmlinux 0x416e0641 sock_kmalloc -EXPORT_SYMBOL vmlinux 0x41797299 vme_irq_generate -EXPORT_SYMBOL vmlinux 0x4188d439 neigh_rand_reach_time -EXPORT_SYMBOL vmlinux 0x419d70f5 tty_hung_up_p -EXPORT_SYMBOL vmlinux 0x41c65f31 netdev_name_node_alt_destroy -EXPORT_SYMBOL vmlinux 0x41cca000 pci_bus_read_config_word -EXPORT_SYMBOL vmlinux 0x41e9340a mipi_dsi_dcs_set_display_brightness -EXPORT_SYMBOL vmlinux 0x41ed3709 get_random_bytes -EXPORT_SYMBOL vmlinux 0x41efdeaf radix_tree_lookup_slot -EXPORT_SYMBOL vmlinux 0x42023892 skb_flow_dissect_meta -EXPORT_SYMBOL vmlinux 0x420964e3 __nla_parse -EXPORT_SYMBOL vmlinux 0x4211b641 __frontswap_store -EXPORT_SYMBOL vmlinux 0x42160169 flush_workqueue -EXPORT_SYMBOL vmlinux 0x421dfa01 max8998_bulk_read -EXPORT_SYMBOL vmlinux 0x422ba77c jbd2_journal_update_sb_errno -EXPORT_SYMBOL vmlinux 0x4230a8d7 sg_nents_for_len -EXPORT_SYMBOL vmlinux 0x42360615 mr_rtm_dumproute -EXPORT_SYMBOL vmlinux 0x423b71e0 fs_param_is_blob -EXPORT_SYMBOL vmlinux 0x4248ae3c single_task_running -EXPORT_SYMBOL vmlinux 0x424d3620 zlib_inflateIncomp -EXPORT_SYMBOL vmlinux 0x4256f445 end_buffer_async_write -EXPORT_SYMBOL vmlinux 0x42578e80 acpi_get_type -EXPORT_SYMBOL vmlinux 0x425d14e1 __fs_parse -EXPORT_SYMBOL vmlinux 0x428800cc md_reload_sb -EXPORT_SYMBOL vmlinux 0x4298dc80 devm_devfreq_unregister_notifier -EXPORT_SYMBOL vmlinux 0x429b76ff __devm_mdiobus_register -EXPORT_SYMBOL vmlinux 0x42b7fb79 seq_put_decimal_ull -EXPORT_SYMBOL vmlinux 0x42bac2b0 md_register_thread -EXPORT_SYMBOL vmlinux 0x42bed8d4 unix_gc_lock -EXPORT_SYMBOL vmlinux 0x42f1b900 fb_pad_unaligned_buffer -EXPORT_SYMBOL vmlinux 0x4302d0eb free_pages -EXPORT_SYMBOL vmlinux 0x4306cde2 invalidate_bdev -EXPORT_SYMBOL vmlinux 0x431ec3a9 __nla_validate -EXPORT_SYMBOL vmlinux 0x432b3f3d mmc_release_host -EXPORT_SYMBOL vmlinux 0x43362c07 skb_copy_expand -EXPORT_SYMBOL vmlinux 0x4336fcca ucs2_as_utf8 -EXPORT_SYMBOL vmlinux 0x433cabfb acpi_decode_pld_buffer -EXPORT_SYMBOL vmlinux 0x433fcc07 neigh_seq_stop -EXPORT_SYMBOL vmlinux 0x4340b657 xfrm4_rcv_encap -EXPORT_SYMBOL vmlinux 0x4351577a fb_parse_edid -EXPORT_SYMBOL vmlinux 0x43629c1e xfrm4_rcv -EXPORT_SYMBOL vmlinux 0x437a0d6d __sock_tx_timestamp -EXPORT_SYMBOL vmlinux 0x438610bd security_tun_dev_alloc_security -EXPORT_SYMBOL vmlinux 0x43a6da8d flow_rule_alloc -EXPORT_SYMBOL vmlinux 0x43a8c90a mr_fill_mroute -EXPORT_SYMBOL vmlinux 0x43ac5457 mmc_erase -EXPORT_SYMBOL vmlinux 0x43c3f874 netpoll_poll_dev -EXPORT_SYMBOL vmlinux 0x43d17d4f setattr_prepare -EXPORT_SYMBOL vmlinux 0x43d22fb9 groups_alloc -EXPORT_SYMBOL vmlinux 0x43d54fc2 udp_ioctl -EXPORT_SYMBOL vmlinux 0x43d5d724 tcf_exts_terse_dump -EXPORT_SYMBOL vmlinux 0x43f9ebc8 slhc_remember -EXPORT_SYMBOL vmlinux 0x4403bbd0 imx_sc_misc_set_control -EXPORT_SYMBOL vmlinux 0x441656b7 pci_read_config_byte -EXPORT_SYMBOL vmlinux 0x44223ad1 dst_cow_metrics_generic -EXPORT_SYMBOL vmlinux 0x442998bf fman_unregister_intr -EXPORT_SYMBOL vmlinux 0x44392a57 ppp_input_error -EXPORT_SYMBOL vmlinux 0x443f3b1e __skb_gro_checksum_complete -EXPORT_SYMBOL vmlinux 0x4441e2a3 devm_clk_hw_register_clkdev -EXPORT_SYMBOL vmlinux 0x44469a76 crc_ccitt_false_table -EXPORT_SYMBOL vmlinux 0x4462d35e cpufreq_get_hw_max_freq -EXPORT_SYMBOL vmlinux 0x446b0211 __dynamic_netdev_dbg -EXPORT_SYMBOL vmlinux 0x446cc095 netif_set_real_num_tx_queues -EXPORT_SYMBOL vmlinux 0x4473c790 dcb_ieee_getapp_dscp_prio_mask_map -EXPORT_SYMBOL vmlinux 0x4476174d ip6_fraglist_init -EXPORT_SYMBOL vmlinux 0x447908d4 jbd2_journal_get_undo_access -EXPORT_SYMBOL vmlinux 0x448397ba sk_net_capable -EXPORT_SYMBOL vmlinux 0x449ad0a7 memcmp -EXPORT_SYMBOL vmlinux 0x449b1fb5 i2c_del_adapter -EXPORT_SYMBOL vmlinux 0x449d92e6 pci_save_state -EXPORT_SYMBOL vmlinux 0x44a6e90a irq_cpu_rmap_add -EXPORT_SYMBOL vmlinux 0x44b03b3a __skb_get_hash -EXPORT_SYMBOL vmlinux 0x44e9a829 match_token -EXPORT_SYMBOL vmlinux 0x44ee901e clean_bdev_aliases -EXPORT_SYMBOL vmlinux 0x45006cee default_red -EXPORT_SYMBOL vmlinux 0x45064323 neigh_update -EXPORT_SYMBOL vmlinux 0x45081703 ec_get_handle -EXPORT_SYMBOL vmlinux 0x450d9a35 cmd_db_read_slave_id -EXPORT_SYMBOL vmlinux 0x45115899 try_to_release_page -EXPORT_SYMBOL vmlinux 0x45203e97 forget_all_cached_acls -EXPORT_SYMBOL vmlinux 0x452413a1 qman_alloc_pool_range -EXPORT_SYMBOL vmlinux 0x452571b4 ipmi_platform_add -EXPORT_SYMBOL vmlinux 0x452ba683 ipv6_ext_hdr -EXPORT_SYMBOL vmlinux 0x452fab3c pci_clear_master -EXPORT_SYMBOL vmlinux 0x453c8403 pci_msi_enabled -EXPORT_SYMBOL vmlinux 0x4547503e pm8606_osc_enable -EXPORT_SYMBOL vmlinux 0x45535485 xxh32_update -EXPORT_SYMBOL vmlinux 0x4578f528 __kfifo_to_user -EXPORT_SYMBOL vmlinux 0x4584e554 cros_ec_prepare_tx -EXPORT_SYMBOL vmlinux 0x45861fe7 textsearch_find_continuous -EXPORT_SYMBOL vmlinux 0x458b23f8 md_error -EXPORT_SYMBOL vmlinux 0x45c8aa21 uart_suspend_port -EXPORT_SYMBOL vmlinux 0x45c8ac88 blk_mq_tagset_busy_iter -EXPORT_SYMBOL vmlinux 0x45e44567 genphy_read_abilities -EXPORT_SYMBOL vmlinux 0x45e8056c tcf_block_get_ext -EXPORT_SYMBOL vmlinux 0x45f5e8ea tcf_block_put -EXPORT_SYMBOL vmlinux 0x460c7844 of_find_device_by_node -EXPORT_SYMBOL vmlinux 0x460f4a34 flow_hash_from_keys -EXPORT_SYMBOL vmlinux 0x46152544 fman_set_mac_max_frame -EXPORT_SYMBOL vmlinux 0x46172e3f vme_bus_num -EXPORT_SYMBOL vmlinux 0x4617f963 __brelse -EXPORT_SYMBOL vmlinux 0x461d16ca sg_nents -EXPORT_SYMBOL vmlinux 0x461ece3d flush_signals -EXPORT_SYMBOL vmlinux 0x462ca168 __generic_file_write_iter -EXPORT_SYMBOL vmlinux 0x463219fb tcp_hashinfo -EXPORT_SYMBOL vmlinux 0x4632357f remap_pfn_range -EXPORT_SYMBOL vmlinux 0x4640d7b1 dev_get_by_name -EXPORT_SYMBOL vmlinux 0x465a860b inode_owner_or_capable -EXPORT_SYMBOL vmlinux 0x465e24ff ucs2_utf8size -EXPORT_SYMBOL vmlinux 0x4665ad35 close_fd_get_file -EXPORT_SYMBOL vmlinux 0x466c14a7 __delay -EXPORT_SYMBOL vmlinux 0x467df16d netdev_rss_key_fill -EXPORT_SYMBOL vmlinux 0x4694718b pcie_ptm_enabled -EXPORT_SYMBOL vmlinux 0x4698fe8a bman_release -EXPORT_SYMBOL vmlinux 0x469a6ec7 tcp_parse_md5sig_option -EXPORT_SYMBOL vmlinux 0x46a2d6ae alloc_etherdev_mqs -EXPORT_SYMBOL vmlinux 0x46a9998e fscrypt_decrypt_pagecache_blocks -EXPORT_SYMBOL vmlinux 0x46c47fb6 __node_distance -EXPORT_SYMBOL vmlinux 0x46ebbe82 seg6_hmac_validate_skb -EXPORT_SYMBOL vmlinux 0x46ec9dba netpoll_setup -EXPORT_SYMBOL vmlinux 0x46f406b4 block_commit_write -EXPORT_SYMBOL vmlinux 0x46fcc86c input_mt_sync_frame -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 0x470f9ed0 fb_find_mode -EXPORT_SYMBOL vmlinux 0x47131d7c mmc_gpio_get_cd -EXPORT_SYMBOL vmlinux 0x4715a909 acpi_load_table -EXPORT_SYMBOL vmlinux 0x4727dbd9 netlink_rcv_skb -EXPORT_SYMBOL vmlinux 0x4729cf81 md_bitmap_free -EXPORT_SYMBOL vmlinux 0x47522982 mmc_add_host -EXPORT_SYMBOL vmlinux 0x4754ea20 mark_buffer_dirty -EXPORT_SYMBOL vmlinux 0x475d7427 fman_get_rx_extra_headroom -EXPORT_SYMBOL vmlinux 0x47709e42 free_anon_bdev -EXPORT_SYMBOL vmlinux 0x479137ca imx_scu_irq_unregister_notifier -EXPORT_SYMBOL vmlinux 0x47960bc4 proc_do_large_bitmap -EXPORT_SYMBOL vmlinux 0x47a05c87 __getblk_gfp -EXPORT_SYMBOL vmlinux 0x47a42d0c import_single_range -EXPORT_SYMBOL vmlinux 0x47b82215 inet_offloads -EXPORT_SYMBOL vmlinux 0x47c20f8a refcount_dec_not_one -EXPORT_SYMBOL vmlinux 0x47c4917f of_clk_get -EXPORT_SYMBOL vmlinux 0x47c65bfc unregister_inet6addr_validator_notifier -EXPORT_SYMBOL vmlinux 0x47c7d5ba reuseport_attach_prog -EXPORT_SYMBOL vmlinux 0x47cfd825 kstrtouint_from_user -EXPORT_SYMBOL vmlinux 0x47d7f53f security_sb_mnt_opts_compat -EXPORT_SYMBOL vmlinux 0x47d8d301 __cond_resched_rwlock_read -EXPORT_SYMBOL vmlinux 0x47f256df bio_add_page -EXPORT_SYMBOL vmlinux 0x48002fe7 xfrm_policy_unregister_afinfo -EXPORT_SYMBOL vmlinux 0x48132472 pcie_port_service_unregister -EXPORT_SYMBOL vmlinux 0x481814c4 mb_cache_entry_find_next -EXPORT_SYMBOL vmlinux 0x48183d3b rtnetlink_put_metrics -EXPORT_SYMBOL vmlinux 0x48193639 acpi_lid_open -EXPORT_SYMBOL vmlinux 0x48256727 dm_unregister_target -EXPORT_SYMBOL vmlinux 0x4829a47e memcpy -EXPORT_SYMBOL vmlinux 0x4829cf6b fscrypt_enqueue_decrypt_work -EXPORT_SYMBOL vmlinux 0x4837bb10 logic_outsb -EXPORT_SYMBOL vmlinux 0x483fdf18 keyring_clear -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 0x486281ce __cgroup_bpf_run_filter_sk -EXPORT_SYMBOL vmlinux 0x486f6fef xsk_tx_peek_desc -EXPORT_SYMBOL vmlinux 0x487316d2 of_phy_register_fixed_link -EXPORT_SYMBOL vmlinux 0x48815b11 dev_get_stats -EXPORT_SYMBOL vmlinux 0x4885a150 bdev_dax_pgoff -EXPORT_SYMBOL vmlinux 0x488d2599 xfrm_state_insert -EXPORT_SYMBOL vmlinux 0x489717f2 cfb_fillrect -EXPORT_SYMBOL vmlinux 0x489eda10 memset32 -EXPORT_SYMBOL vmlinux 0x489f6e0b rdma_dim -EXPORT_SYMBOL vmlinux 0x48a2250a cros_ec_cmd_xfer -EXPORT_SYMBOL vmlinux 0x48a91171 string_get_size -EXPORT_SYMBOL vmlinux 0x48b99a13 vme_lm_free -EXPORT_SYMBOL vmlinux 0x48bc8ea4 dm_register_target -EXPORT_SYMBOL vmlinux 0x48c093fb _atomic_dec_and_lock_irqsave -EXPORT_SYMBOL vmlinux 0x48d29686 msm_pinctrl_remove -EXPORT_SYMBOL vmlinux 0x48d3bc17 ppp_register_net_channel -EXPORT_SYMBOL vmlinux 0x48da7c18 ipv6_push_frag_opts -EXPORT_SYMBOL vmlinux 0x48f42df1 ip_output -EXPORT_SYMBOL vmlinux 0x49045426 icmp_err_convert -EXPORT_SYMBOL vmlinux 0x49519873 jbd2_journal_clear_features -EXPORT_SYMBOL vmlinux 0x495231ea mul_u64_u64_div_u64 -EXPORT_SYMBOL vmlinux 0x49614dbf pcie_set_readrq -EXPORT_SYMBOL vmlinux 0x4967e79f radix_tree_iter_resume -EXPORT_SYMBOL vmlinux 0x498e9128 ZSTD_findDecompressedSize -EXPORT_SYMBOL vmlinux 0x499ddb5d put_ipc_ns -EXPORT_SYMBOL vmlinux 0x499f0ecf nd_sb_checksum -EXPORT_SYMBOL vmlinux 0x49b163b8 acpi_bus_scan -EXPORT_SYMBOL vmlinux 0x49f2df8e ethtool_rx_flow_rule_destroy -EXPORT_SYMBOL vmlinux 0x4a390801 vm_map_ram -EXPORT_SYMBOL vmlinux 0x4a3ad70e wait_for_completion_timeout -EXPORT_SYMBOL vmlinux 0x4a4aa170 sock_set_rcvbuf -EXPORT_SYMBOL vmlinux 0x4a4cd35c __cleancache_invalidate_page -EXPORT_SYMBOL vmlinux 0x4a50a12a input_free_device -EXPORT_SYMBOL vmlinux 0x4a542d02 netdev_reset_tc -EXPORT_SYMBOL vmlinux 0x4a59df56 kernel_sendmsg -EXPORT_SYMBOL vmlinux 0x4a66c8f1 dev_get_iflink -EXPORT_SYMBOL vmlinux 0x4a79e76c iov_iter_init -EXPORT_SYMBOL vmlinux 0x4a827c69 copy_page_from_iter_atomic -EXPORT_SYMBOL vmlinux 0x4a8f254f nd_region_release_lane -EXPORT_SYMBOL vmlinux 0x4a93576a ucc_fast_free -EXPORT_SYMBOL vmlinux 0x4a96a8eb xxh32_digest -EXPORT_SYMBOL vmlinux 0x4aa399e7 nd_pfn_probe -EXPORT_SYMBOL vmlinux 0x4abadf46 seq_release -EXPORT_SYMBOL vmlinux 0x4acb4de5 tcp_sendmsg -EXPORT_SYMBOL vmlinux 0x4acf2d48 mfd_remove_devices -EXPORT_SYMBOL vmlinux 0x4ad2a8cf kobject_get -EXPORT_SYMBOL vmlinux 0x4ada969c mipi_dsi_driver_register_full -EXPORT_SYMBOL vmlinux 0x4aea463f crc32_le_shift -EXPORT_SYMBOL vmlinux 0x4aee9c74 kernel_accept -EXPORT_SYMBOL vmlinux 0x4af6ddf0 kstrtou16 -EXPORT_SYMBOL vmlinux 0x4afb2238 add_wait_queue -EXPORT_SYMBOL vmlinux 0x4b0a3f52 gic_nonsecure_priorities -EXPORT_SYMBOL vmlinux 0x4b0d1208 mipi_dsi_dcs_get_pixel_format -EXPORT_SYMBOL vmlinux 0x4b41fa4e ip6_route_me_harder -EXPORT_SYMBOL vmlinux 0x4b569333 inc_zone_page_state -EXPORT_SYMBOL vmlinux 0x4b5fd49e dm_kcopyd_do_callback -EXPORT_SYMBOL vmlinux 0x4b6df007 acpi_evaluate_reg -EXPORT_SYMBOL vmlinux 0x4b8ec45a dma_sync_sg_for_cpu -EXPORT_SYMBOL vmlinux 0x4b99b74f tcf_qevent_handle -EXPORT_SYMBOL vmlinux 0x4bbde01a vfs_iter_read -EXPORT_SYMBOL vmlinux 0x4bcc2662 mempool_init_node -EXPORT_SYMBOL vmlinux 0x4bd85b44 mipi_dsi_host_unregister -EXPORT_SYMBOL vmlinux 0x4bddeef8 mr_vif_seq_next -EXPORT_SYMBOL vmlinux 0x4bed360b page_pool_return_skb_page -EXPORT_SYMBOL vmlinux 0x4bef1c67 empty_name -EXPORT_SYMBOL vmlinux 0x4bf3ce6f qman_release_cgrid -EXPORT_SYMBOL vmlinux 0x4c05f1d3 eth_header_parse_protocol -EXPORT_SYMBOL vmlinux 0x4c0683e5 iterate_dir -EXPORT_SYMBOL vmlinux 0x4c07a7e0 acpi_processor_unregister_performance -EXPORT_SYMBOL vmlinux 0x4c2bdd91 phy_register_fixup_for_id -EXPORT_SYMBOL vmlinux 0x4c38d4e0 utf8_strncasecmp_folded -EXPORT_SYMBOL vmlinux 0x4c416eb9 LZ4_decompress_fast -EXPORT_SYMBOL vmlinux 0x4c592561 elv_rb_add -EXPORT_SYMBOL vmlinux 0x4c5b8888 devm_extcon_unregister_notifier_all -EXPORT_SYMBOL vmlinux 0x4c6a1107 dquot_operations -EXPORT_SYMBOL vmlinux 0x4c6bb665 timestamp_truncate -EXPORT_SYMBOL vmlinux 0x4c9ba7b6 fs_lookup_param -EXPORT_SYMBOL vmlinux 0x4c9d76a1 jbd2_journal_extend -EXPORT_SYMBOL vmlinux 0x4ca87bbd security_tun_dev_attach -EXPORT_SYMBOL vmlinux 0x4cba441d iwe_stream_add_event -EXPORT_SYMBOL vmlinux 0x4ce5f1d2 nd_device_unregister -EXPORT_SYMBOL vmlinux 0x4cfc917c skb_dequeue -EXPORT_SYMBOL vmlinux 0x4d0d163d copy_page -EXPORT_SYMBOL vmlinux 0x4d13f9ac eth_type_trans -EXPORT_SYMBOL vmlinux 0x4d2c7133 acpi_info -EXPORT_SYMBOL vmlinux 0x4d388dfd ptp_find_pin_unlocked -EXPORT_SYMBOL vmlinux 0x4d3c5a9b pin_user_pages_locked -EXPORT_SYMBOL vmlinux 0x4d4cbe12 mark_page_accessed -EXPORT_SYMBOL vmlinux 0x4d5ddb80 write_inode_now -EXPORT_SYMBOL vmlinux 0x4d65cbd5 csum_ipv6_magic -EXPORT_SYMBOL vmlinux 0x4d6768ef ndo_dflt_fdb_dump -EXPORT_SYMBOL vmlinux 0x4d6c5995 dev_mc_unsync -EXPORT_SYMBOL vmlinux 0x4d79c21e d_obtain_root -EXPORT_SYMBOL vmlinux 0x4d84ca85 sget_fc -EXPORT_SYMBOL vmlinux 0x4d84e81b blk_pm_runtime_init -EXPORT_SYMBOL vmlinux 0x4d924f20 memremap -EXPORT_SYMBOL vmlinux 0x4d9b652b rb_erase -EXPORT_SYMBOL vmlinux 0x4d9f8f66 blk_mq_start_hw_queue -EXPORT_SYMBOL vmlinux 0x4da45d88 inet_add_protocol -EXPORT_SYMBOL vmlinux 0x4da596e6 qman_retire_fq -EXPORT_SYMBOL vmlinux 0x4dca08ee sync_file_get_fence -EXPORT_SYMBOL vmlinux 0x4de76b0e mntget -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 0x4e00364a udp_seq_next -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 0x4e4d871a pci_pme_capable -EXPORT_SYMBOL vmlinux 0x4e4f0f16 dma_fence_chain_find_seqno -EXPORT_SYMBOL vmlinux 0x4e547048 __kmalloc_node_track_caller -EXPORT_SYMBOL vmlinux 0x4e68e9be rb_next_postorder -EXPORT_SYMBOL vmlinux 0x4e6e4b41 radix_tree_delete -EXPORT_SYMBOL vmlinux 0x4e6e8ea7 fg_console -EXPORT_SYMBOL vmlinux 0x4e78e5b1 ipv6_mc_check_mld -EXPORT_SYMBOL vmlinux 0x4ea25709 dql_reset -EXPORT_SYMBOL vmlinux 0x4eada8f7 security_secid_to_secctx -EXPORT_SYMBOL vmlinux 0x4ebbc186 pci_alloc_host_bridge -EXPORT_SYMBOL vmlinux 0x4ec2bb93 __fib6_flush_trees -EXPORT_SYMBOL vmlinux 0x4ec54e78 bitmap_to_arr32 -EXPORT_SYMBOL vmlinux 0x4ee160cc phy_modify_paged_changed -EXPORT_SYMBOL vmlinux 0x4ef14633 trace_raw_output_prep -EXPORT_SYMBOL vmlinux 0x4efac213 ip6_dst_alloc -EXPORT_SYMBOL vmlinux 0x4f165943 skb_copy_and_csum_dev -EXPORT_SYMBOL vmlinux 0x4f1cd128 security_tun_dev_create -EXPORT_SYMBOL vmlinux 0x4f2250ba rtc_tm_to_time64 -EXPORT_SYMBOL vmlinux 0x4f277471 tcp_splice_read -EXPORT_SYMBOL vmlinux 0x4f55166f acpi_set_current_resources -EXPORT_SYMBOL vmlinux 0x4f628513 md_set_array_sectors -EXPORT_SYMBOL vmlinux 0x4f709989 security_binder_transfer_binder -EXPORT_SYMBOL vmlinux 0x4f831c4d __netif_napi_del -EXPORT_SYMBOL vmlinux 0x4f839c08 xfrm_find_acq_byseq -EXPORT_SYMBOL vmlinux 0x4f9d6b6e md_bitmap_update_sb -EXPORT_SYMBOL vmlinux 0x4fb3611b dm_kcopyd_zero -EXPORT_SYMBOL vmlinux 0x4fd6ea9b mark_buffer_dirty_inode -EXPORT_SYMBOL vmlinux 0x4fd7c9c1 tty_insert_flip_string_fixed_flag -EXPORT_SYMBOL vmlinux 0x4fdf5cce register_netdev -EXPORT_SYMBOL vmlinux 0x4fe10953 skb_pull -EXPORT_SYMBOL vmlinux 0x4fe19516 dev_pm_opp_register_notifier -EXPORT_SYMBOL vmlinux 0x4fef055d ptp_clock_register -EXPORT_SYMBOL vmlinux 0x4ffb59bf __SCK__tp_func_kfree -EXPORT_SYMBOL vmlinux 0x50097088 security_tun_dev_free_security -EXPORT_SYMBOL vmlinux 0x5009c71d glob_match -EXPORT_SYMBOL vmlinux 0x5027bde2 acpi_acquire_mutex -EXPORT_SYMBOL vmlinux 0x5031f47c tcp_mtu_to_mss -EXPORT_SYMBOL vmlinux 0x50448574 tegra_dfll_unregister -EXPORT_SYMBOL vmlinux 0x50624917 sha1_init -EXPORT_SYMBOL vmlinux 0x506dff1a __genradix_free -EXPORT_SYMBOL vmlinux 0x5080ec2d blk_mq_delay_run_hw_queues -EXPORT_SYMBOL vmlinux 0x508472f3 input_allocate_device -EXPORT_SYMBOL vmlinux 0x50894452 kobject_set_name -EXPORT_SYMBOL vmlinux 0x5089f45f ip_send_check -EXPORT_SYMBOL vmlinux 0x508d574d seq_file_path -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 0x50aee5d7 blk_mq_tag_to_rq -EXPORT_SYMBOL vmlinux 0x50b73ce2 rfkill_find_type -EXPORT_SYMBOL vmlinux 0x50b80992 mb_cache_entry_find_first -EXPORT_SYMBOL vmlinux 0x50bc6191 pcim_pin_device -EXPORT_SYMBOL vmlinux 0x50be748d security_ib_free_security -EXPORT_SYMBOL vmlinux 0x50c91447 pci_iounmap -EXPORT_SYMBOL vmlinux 0x50cf7585 hex2bin -EXPORT_SYMBOL vmlinux 0x50d035c2 vsscanf -EXPORT_SYMBOL vmlinux 0x50d931db tty_do_resize -EXPORT_SYMBOL vmlinux 0x50da0c99 cdev_del -EXPORT_SYMBOL vmlinux 0x50e22809 put_disk -EXPORT_SYMBOL vmlinux 0x50ec09c5 vlan_dev_real_dev -EXPORT_SYMBOL vmlinux 0x50f85302 __arm_smccc_hvc -EXPORT_SYMBOL vmlinux 0x50f91491 __genradix_ptr -EXPORT_SYMBOL vmlinux 0x5102a30b do_wait_intr_irq -EXPORT_SYMBOL vmlinux 0x5121f12f __pskb_pull_tail -EXPORT_SYMBOL vmlinux 0x514972e2 devfreq_unregister_notifier -EXPORT_SYMBOL vmlinux 0x515083bf acpi_release_mutex -EXPORT_SYMBOL vmlinux 0x5151024e eth_prepare_mac_addr_change -EXPORT_SYMBOL vmlinux 0x515f520b qman_portal_get_iperiod -EXPORT_SYMBOL vmlinux 0x51641162 opal_unlock_from_suspend -EXPORT_SYMBOL vmlinux 0x5175f608 inet6_getname -EXPORT_SYMBOL vmlinux 0x51b02cc1 crypto_sha256_finup -EXPORT_SYMBOL vmlinux 0x51d12d4e acpi_pci_disabled -EXPORT_SYMBOL vmlinux 0x51f86a1a blk_limits_io_opt -EXPORT_SYMBOL vmlinux 0x5203d176 cmd_db_ready -EXPORT_SYMBOL vmlinux 0x52388876 jbd2_journal_init_dev -EXPORT_SYMBOL vmlinux 0x52395e3a qdisc_hash_add -EXPORT_SYMBOL vmlinux 0x524445c8 __cleancache_put_page -EXPORT_SYMBOL vmlinux 0x524eedc0 skb_checksum_help -EXPORT_SYMBOL vmlinux 0x52554a5b proc_create_data -EXPORT_SYMBOL vmlinux 0x525ad7db scsi_report_device_reset -EXPORT_SYMBOL vmlinux 0x526eef2c hdmi_vendor_infoframe_pack -EXPORT_SYMBOL vmlinux 0x52983a4f vme_master_write -EXPORT_SYMBOL vmlinux 0x52a21609 file_write_and_wait_range -EXPORT_SYMBOL vmlinux 0x52baae00 single_open -EXPORT_SYMBOL vmlinux 0x52c66e4f phy_write_paged -EXPORT_SYMBOL vmlinux 0x52d717da xz_dec_init -EXPORT_SYMBOL vmlinux 0x52d75f92 dmam_free_coherent -EXPORT_SYMBOL vmlinux 0x52dcb85b __traceiter_kmalloc -EXPORT_SYMBOL vmlinux 0x52ecbc75 crc_ccitt -EXPORT_SYMBOL vmlinux 0x52f2850a imx_sc_pm_cpu_start -EXPORT_SYMBOL vmlinux 0x52f4b7dc rtnl_set_sk_err -EXPORT_SYMBOL vmlinux 0x5302014a unregister_key_type -EXPORT_SYMBOL vmlinux 0x530b1e98 pm_suspend -EXPORT_SYMBOL vmlinux 0x53126ecc __percpu_counter_sum -EXPORT_SYMBOL vmlinux 0x5316cbf0 of_find_i2c_adapter_by_node -EXPORT_SYMBOL vmlinux 0x53212142 skb_orphan_partial -EXPORT_SYMBOL vmlinux 0x5331110b sk_stop_timer -EXPORT_SYMBOL vmlinux 0x533206b5 sort_r -EXPORT_SYMBOL vmlinux 0x5333b4b1 find_inode_nowait -EXPORT_SYMBOL vmlinux 0x533697ba migrate_page_states -EXPORT_SYMBOL vmlinux 0x5338184f ethtool_sprintf -EXPORT_SYMBOL vmlinux 0x533bf0e0 inode_sub_bytes -EXPORT_SYMBOL vmlinux 0x535d2f61 __nla_put_64bit -EXPORT_SYMBOL vmlinux 0x53603cb1 __block_write_begin -EXPORT_SYMBOL vmlinux 0x53800402 unregister_tcf_proto_ops -EXPORT_SYMBOL vmlinux 0x53811134 dst_discard_out -EXPORT_SYMBOL vmlinux 0x53ad67f4 d_splice_alias -EXPORT_SYMBOL vmlinux 0x53b57a23 do_SAK -EXPORT_SYMBOL vmlinux 0x53b7cfca dm_get_device -EXPORT_SYMBOL vmlinux 0x53b954a2 up_read -EXPORT_SYMBOL vmlinux 0x53ba7c62 tcf_register_action -EXPORT_SYMBOL vmlinux 0x53be2d99 get_cached_acl_rcu -EXPORT_SYMBOL vmlinux 0x53d9b0dd ps2_cmd_aborted -EXPORT_SYMBOL vmlinux 0x53e50ffa first_ec -EXPORT_SYMBOL vmlinux 0x53e9aa5c rawv6_mh_filter_register -EXPORT_SYMBOL vmlinux 0x53eff192 tegra_ivc_align -EXPORT_SYMBOL vmlinux 0x53f10b1f blk_execute_rq -EXPORT_SYMBOL vmlinux 0x53fa36d1 ZSTD_decompressBlock -EXPORT_SYMBOL vmlinux 0x5402da9f xudma_navss_psil_pair -EXPORT_SYMBOL vmlinux 0x5419d225 iov_iter_single_seg_count -EXPORT_SYMBOL vmlinux 0x5420120d of_parse_phandle -EXPORT_SYMBOL vmlinux 0x543ef284 seq_hlist_start -EXPORT_SYMBOL vmlinux 0x543f7520 udp_sk_rx_dst_set -EXPORT_SYMBOL vmlinux 0x54504963 acpi_match_device_ids -EXPORT_SYMBOL vmlinux 0x545c33d7 param_get_long -EXPORT_SYMBOL vmlinux 0x548194f5 _dev_alert -EXPORT_SYMBOL vmlinux 0x54872f3a __frontswap_load -EXPORT_SYMBOL vmlinux 0x5495f893 register_nexthop_notifier -EXPORT_SYMBOL vmlinux 0x54cfacd5 __ctzdi2 -EXPORT_SYMBOL vmlinux 0x54e6fcdd net_enable_timestamp -EXPORT_SYMBOL vmlinux 0x54ea6dfe xen_start_flags -EXPORT_SYMBOL vmlinux 0x5506b8f7 netlbl_bitmap_setbit -EXPORT_SYMBOL vmlinux 0x5508f28d bman_acquire -EXPORT_SYMBOL vmlinux 0x55112692 cdc_parse_cdc_header -EXPORT_SYMBOL vmlinux 0x551bd071 __rb_erase_color -EXPORT_SYMBOL vmlinux 0x552db3aa qman_query_cgr_congested -EXPORT_SYMBOL vmlinux 0x55486f8a dquot_release -EXPORT_SYMBOL vmlinux 0x554ae3a4 irq_poll_sched -EXPORT_SYMBOL vmlinux 0x556b5d62 __kfifo_dma_in_prepare_r -EXPORT_SYMBOL vmlinux 0x558b281d aes_expandkey -EXPORT_SYMBOL vmlinux 0x55927bc1 __sk_mem_schedule -EXPORT_SYMBOL vmlinux 0x55c4ec9b unregister_netdevice_notifier_net -EXPORT_SYMBOL vmlinux 0x55d4ac68 xfrm_policy_alloc -EXPORT_SYMBOL vmlinux 0x55e31703 ethtool_convert_link_mode_to_legacy_u32 -EXPORT_SYMBOL vmlinux 0x55fe2a0c call_netdevice_notifiers -EXPORT_SYMBOL vmlinux 0x560bce9a bio_integrity_prep -EXPORT_SYMBOL vmlinux 0x56106f38 amba_release_regions -EXPORT_SYMBOL vmlinux 0x5614f48a qman_dqrr_get_ithresh -EXPORT_SYMBOL vmlinux 0x5615a989 key_task_permission -EXPORT_SYMBOL vmlinux 0x562a89c0 fscrypt_decrypt_bio -EXPORT_SYMBOL vmlinux 0x562f613e proto_unregister -EXPORT_SYMBOL vmlinux 0x5635a60a vmalloc_user -EXPORT_SYMBOL vmlinux 0x56470118 __warn_printk -EXPORT_SYMBOL vmlinux 0x5649f106 pci_unmap_rom -EXPORT_SYMBOL vmlinux 0x564ca1a6 __inet6_lookup_established -EXPORT_SYMBOL vmlinux 0x564f6b88 set_create_files_as -EXPORT_SYMBOL vmlinux 0x564f7608 acpi_reconfig_notifier_register -EXPORT_SYMBOL vmlinux 0x567574a7 inet_frag_reasm_finish -EXPORT_SYMBOL vmlinux 0x56802ae8 rps_cpu_mask -EXPORT_SYMBOL vmlinux 0x56846d61 nd_btt_version -EXPORT_SYMBOL vmlinux 0x5686d577 pci_free_host_bridge -EXPORT_SYMBOL vmlinux 0x568d5199 nf_register_net_hooks -EXPORT_SYMBOL vmlinux 0x5697a5f4 blk_mq_tagset_wait_completed_request -EXPORT_SYMBOL vmlinux 0x569a8020 sk_send_sigurg -EXPORT_SYMBOL vmlinux 0x56aaa20c twl6040_get_pll -EXPORT_SYMBOL vmlinux 0x56b99138 iget_failed -EXPORT_SYMBOL vmlinux 0x56ba3454 dcb_getapp -EXPORT_SYMBOL vmlinux 0x56c3db64 __tracepoint_kmalloc -EXPORT_SYMBOL vmlinux 0x56c8799d scsi_kunmap_atomic_sg -EXPORT_SYMBOL vmlinux 0x56d2e88a blk_mq_init_queue -EXPORT_SYMBOL vmlinux 0x56eb0957 of_find_node_by_name -EXPORT_SYMBOL vmlinux 0x571e3087 mpage_writepages -EXPORT_SYMBOL vmlinux 0x574a686b kthread_create_worker -EXPORT_SYMBOL vmlinux 0x574c2e74 bitmap_release_region -EXPORT_SYMBOL vmlinux 0x57575f08 dmaengine_put -EXPORT_SYMBOL vmlinux 0x57674fd7 __sw_hweight16 -EXPORT_SYMBOL vmlinux 0x5772a924 __f_setown -EXPORT_SYMBOL vmlinux 0x578a3887 pci_disable_ptm -EXPORT_SYMBOL vmlinux 0x578a408b ZSTD_initDCtx -EXPORT_SYMBOL vmlinux 0x57900416 gen_pool_fixed_alloc -EXPORT_SYMBOL vmlinux 0x5792f848 strlcpy -EXPORT_SYMBOL vmlinux 0x57b2798b sk_common_release -EXPORT_SYMBOL vmlinux 0x57b74213 bfifo_qdisc_ops -EXPORT_SYMBOL vmlinux 0x57b9c054 jbd2_journal_get_write_access -EXPORT_SYMBOL vmlinux 0x57bc19d2 down_write -EXPORT_SYMBOL vmlinux 0x57bf79c6 jbd2_journal_forget -EXPORT_SYMBOL vmlinux 0x57d150d2 blk_rq_unmap_user -EXPORT_SYMBOL vmlinux 0x57de0003 __hw_addr_sync_dev -EXPORT_SYMBOL vmlinux 0x57dfb015 finish_swait -EXPORT_SYMBOL vmlinux 0x57ecc026 dev_get_by_index_rcu -EXPORT_SYMBOL vmlinux 0x57f38cdc qe_get_firmware_info -EXPORT_SYMBOL vmlinux 0x57f5f363 __dynamic_ibdev_dbg -EXPORT_SYMBOL vmlinux 0x5818fe3c posix_acl_from_mode -EXPORT_SYMBOL vmlinux 0x581bc2d3 nexthop_set_hw_flags -EXPORT_SYMBOL vmlinux 0x581f98da zlib_inflate -EXPORT_SYMBOL vmlinux 0x582606eb xudma_rflow_put -EXPORT_SYMBOL vmlinux 0x582b6275 xfrm_if_unregister_cb -EXPORT_SYMBOL vmlinux 0x5832d160 dget_parent -EXPORT_SYMBOL vmlinux 0x5838f6c9 rtc_valid_tm -EXPORT_SYMBOL vmlinux 0x58410498 tc_setup_cb_destroy -EXPORT_SYMBOL vmlinux 0x58599569 par_io_of_config -EXPORT_SYMBOL vmlinux 0x585ae877 nmi_panic -EXPORT_SYMBOL vmlinux 0x58780238 finish_open -EXPORT_SYMBOL vmlinux 0x58797907 devfreq_add_governor -EXPORT_SYMBOL vmlinux 0x587afc56 of_device_alloc -EXPORT_SYMBOL vmlinux 0x587b0954 kvasprintf -EXPORT_SYMBOL vmlinux 0x587b892e qe_get_num_of_risc -EXPORT_SYMBOL vmlinux 0x587f22d7 devmap_managed_key -EXPORT_SYMBOL vmlinux 0x58950469 nobh_writepage -EXPORT_SYMBOL vmlinux 0x58967fd7 xp_alloc -EXPORT_SYMBOL vmlinux 0x589b8c8f set_posix_acl -EXPORT_SYMBOL vmlinux 0x58a1e2a9 __netdev_alloc_skb -EXPORT_SYMBOL vmlinux 0x58acf24b mdiobus_register_board_info -EXPORT_SYMBOL vmlinux 0x58b4645c dev_close_many -EXPORT_SYMBOL vmlinux 0x58b660f6 devm_ioremap_np -EXPORT_SYMBOL vmlinux 0x58b73bc7 match_wildcard -EXPORT_SYMBOL vmlinux 0x58b81197 vfs_clone_file_range -EXPORT_SYMBOL vmlinux 0x58e3306d bit_wait_io -EXPORT_SYMBOL vmlinux 0x58efe936 nf_log_set -EXPORT_SYMBOL vmlinux 0x58f49df2 vfs_llseek -EXPORT_SYMBOL vmlinux 0x59122100 user_revoke -EXPORT_SYMBOL vmlinux 0x5912b16e tc_setup_flow_action -EXPORT_SYMBOL vmlinux 0x592228d8 msm_pinctrl_probe -EXPORT_SYMBOL vmlinux 0x5926d867 __inode_add_bytes -EXPORT_SYMBOL vmlinux 0x5934b5a9 qman_destroy_fq -EXPORT_SYMBOL vmlinux 0x595d8002 hdmi_infoframe_pack -EXPORT_SYMBOL vmlinux 0x596115cc input_register_device -EXPORT_SYMBOL vmlinux 0x596aaaa2 dquot_drop -EXPORT_SYMBOL vmlinux 0x596cddb2 twl6040_power -EXPORT_SYMBOL vmlinux 0x596f782b inet_stream_ops -EXPORT_SYMBOL vmlinux 0x5977ba35 of_n_size_cells -EXPORT_SYMBOL vmlinux 0x59853050 rps_may_expire_flow -EXPORT_SYMBOL vmlinux 0x5998f2f3 mmc_of_parse_voltage -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 0x59da7e9a bdi_set_max_ratio -EXPORT_SYMBOL vmlinux 0x59ea9ea4 rpmh_invalidate -EXPORT_SYMBOL vmlinux 0x59f90a8e begin_new_exec -EXPORT_SYMBOL vmlinux 0x5a0b73d0 zlib_deflateInit2 -EXPORT_SYMBOL vmlinux 0x5a0bb4f6 qdisc_tree_reduce_backlog -EXPORT_SYMBOL vmlinux 0x5a11af8c param_set_charp -EXPORT_SYMBOL vmlinux 0x5a234561 security_sk_clone -EXPORT_SYMBOL vmlinux 0x5a290250 hdmi_drm_infoframe_pack_only -EXPORT_SYMBOL vmlinux 0x5a32d293 is_nd_dax -EXPORT_SYMBOL vmlinux 0x5a32ebd0 vme_unregister_bridge -EXPORT_SYMBOL vmlinux 0x5a3476f7 md_integrity_register -EXPORT_SYMBOL vmlinux 0x5a40a99a pin_user_pages_unlocked -EXPORT_SYMBOL vmlinux 0x5a447e1d fs_param_is_blockdev -EXPORT_SYMBOL vmlinux 0x5a44f8cb __crypto_memneq -EXPORT_SYMBOL vmlinux 0x5a4d313e gf128mul_4k_lle -EXPORT_SYMBOL vmlinux 0x5a4dd16d xfrm_register_km -EXPORT_SYMBOL vmlinux 0x5a5aa267 md_write_end -EXPORT_SYMBOL vmlinux 0x5a60b950 qm_channel_pool1 -EXPORT_SYMBOL vmlinux 0x5a6ba09f pci_request_regions_exclusive -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 0x5a9f8b95 dev_uc_del -EXPORT_SYMBOL vmlinux 0x5ae1154b __traceiter_kfree -EXPORT_SYMBOL vmlinux 0x5b093e30 phy_modify_paged -EXPORT_SYMBOL vmlinux 0x5b276859 param_set_ullong -EXPORT_SYMBOL vmlinux 0x5b2e65c5 nobh_write_begin -EXPORT_SYMBOL vmlinux 0x5b2f27fb do_wait_intr -EXPORT_SYMBOL vmlinux 0x5b36d5dd utf8agemax -EXPORT_SYMBOL vmlinux 0x5b3e282f xa_store -EXPORT_SYMBOL vmlinux 0x5b45ca1d param_ops_charp -EXPORT_SYMBOL vmlinux 0x5b4f087d lease_get_mtime -EXPORT_SYMBOL vmlinux 0x5b54903b qcom_scm_pas_mem_setup -EXPORT_SYMBOL vmlinux 0x5b562a17 generic_set_encrypted_ci_d_ops -EXPORT_SYMBOL vmlinux 0x5b56860c vm_munmap -EXPORT_SYMBOL vmlinux 0x5b67dd3a jbd2_journal_grab_journal_head -EXPORT_SYMBOL vmlinux 0x5b67ecd3 __i2c_transfer -EXPORT_SYMBOL vmlinux 0x5b8b3d87 skb_queue_head -EXPORT_SYMBOL vmlinux 0x5baed01e __hw_addr_unsync_dev -EXPORT_SYMBOL vmlinux 0x5baeee82 pci_enable_device -EXPORT_SYMBOL vmlinux 0x5bb3abdb jbd2_log_wait_commit -EXPORT_SYMBOL vmlinux 0x5bd0f6d1 d_genocide -EXPORT_SYMBOL vmlinux 0x5bd4ff88 flow_action_cookie_create -EXPORT_SYMBOL vmlinux 0x5be63c5b crc32c_csum_stub -EXPORT_SYMBOL vmlinux 0x5bf4b7c7 mipi_dsi_dcs_get_display_brightness_large -EXPORT_SYMBOL vmlinux 0x5bf8bb57 __traceiter_mmap_lock_acquire_returned -EXPORT_SYMBOL vmlinux 0x5c13d7a4 blk_mq_free_tag_set -EXPORT_SYMBOL vmlinux 0x5c26a53b wait_for_completion_io_timeout -EXPORT_SYMBOL vmlinux 0x5c3c7387 kstrtoull -EXPORT_SYMBOL vmlinux 0x5c500389 sk_alloc -EXPORT_SYMBOL vmlinux 0x5c61413e simple_symlink_inode_operations -EXPORT_SYMBOL vmlinux 0x5c61b937 __invalidate_device -EXPORT_SYMBOL vmlinux 0x5c65bcbe fscrypt_put_encryption_info -EXPORT_SYMBOL vmlinux 0x5c6cd3a0 flow_block_cb_free -EXPORT_SYMBOL vmlinux 0x5c82d9e8 simple_transaction_set -EXPORT_SYMBOL vmlinux 0x5ca6ad8c __set_page_dirty_nobuffers -EXPORT_SYMBOL vmlinux 0x5ca6c974 uart_resume_port -EXPORT_SYMBOL vmlinux 0x5cb2a7bb netdev_upper_dev_link -EXPORT_SYMBOL vmlinux 0x5cbb1f84 sg_alloc_append_table_from_pages -EXPORT_SYMBOL vmlinux 0x5cbe8265 input_match_device_id -EXPORT_SYMBOL vmlinux 0x5cd40aae param_get_ushort -EXPORT_SYMBOL vmlinux 0x5ce3954c mipi_dsi_dcs_soft_reset -EXPORT_SYMBOL vmlinux 0x5cf09525 pcim_iomap_regions -EXPORT_SYMBOL vmlinux 0x5cf27133 tcp_fastopen_defer_connect -EXPORT_SYMBOL vmlinux 0x5cf53ce2 input_free_minor -EXPORT_SYMBOL vmlinux 0x5cfb26a0 acpi_enter_sleep_state -EXPORT_SYMBOL vmlinux 0x5d01c65b of_get_cpu_node -EXPORT_SYMBOL vmlinux 0x5d112304 __memcpy_fromio -EXPORT_SYMBOL vmlinux 0x5d1c9bfe dev_uc_unsync -EXPORT_SYMBOL vmlinux 0x5d1e8991 tcp_add_backlog -EXPORT_SYMBOL vmlinux 0x5d1e9a95 nf_getsockopt -EXPORT_SYMBOL vmlinux 0x5d45f63f vc_cons -EXPORT_SYMBOL vmlinux 0x5d49aabc init_wait_var_entry -EXPORT_SYMBOL vmlinux 0x5d69a9c5 trace_event_printf -EXPORT_SYMBOL vmlinux 0x5d73546b of_graph_is_present -EXPORT_SYMBOL vmlinux 0x5d822832 pci_free_irq_vectors -EXPORT_SYMBOL vmlinux 0x5d9dc04c inet_protos -EXPORT_SYMBOL vmlinux 0x5d9fe76b fwnode_get_phy_id -EXPORT_SYMBOL vmlinux 0x5da6a019 dev_disable_lro -EXPORT_SYMBOL vmlinux 0x5dac4cd6 qman_dqrr_set_ithresh -EXPORT_SYMBOL vmlinux 0x5dad6c64 kobject_get_unless_zero -EXPORT_SYMBOL vmlinux 0x5dc02435 sock_no_getname -EXPORT_SYMBOL vmlinux 0x5dc313cb jbd2_fc_end_commit -EXPORT_SYMBOL vmlinux 0x5df17f29 ip_check_defrag -EXPORT_SYMBOL vmlinux 0x5df97958 inode_needs_sync -EXPORT_SYMBOL vmlinux 0x5dffb495 ZSTD_decompress_usingDDict -EXPORT_SYMBOL vmlinux 0x5e06bc5c refcount_dec_and_lock -EXPORT_SYMBOL vmlinux 0x5e0c6765 xfrm_input_register_afinfo -EXPORT_SYMBOL vmlinux 0x5e0ccb9f sha1_transform -EXPORT_SYMBOL vmlinux 0x5e18c01f pci_ep_cfs_remove_epc_group -EXPORT_SYMBOL vmlinux 0x5e198564 inet_proto_csum_replace4 -EXPORT_SYMBOL vmlinux 0x5e21d592 km_state_notify -EXPORT_SYMBOL vmlinux 0x5e248b18 phy_driver_register -EXPORT_SYMBOL vmlinux 0x5e3240a0 __cpu_online_mask -EXPORT_SYMBOL vmlinux 0x5e332b52 __var_waitqueue -EXPORT_SYMBOL vmlinux 0x5e373fb4 gf128mul_64k_bbe -EXPORT_SYMBOL vmlinux 0x5e414a87 gnet_stats_copy_basic_hw -EXPORT_SYMBOL vmlinux 0x5e5261ee filp_close -EXPORT_SYMBOL vmlinux 0x5e529a4f pci_request_selected_regions_exclusive -EXPORT_SYMBOL vmlinux 0x5e65a8ac unregister_fib_notifier -EXPORT_SYMBOL vmlinux 0x5e6c93b5 skb_kill_datagram -EXPORT_SYMBOL vmlinux 0x5e6f91f9 tegra_powergate_remove_clamping -EXPORT_SYMBOL vmlinux 0x5e7436c4 skb_copy_and_hash_datagram_iter -EXPORT_SYMBOL vmlinux 0x5e79a0e0 filemap_check_errors -EXPORT_SYMBOL vmlinux 0x5e855e56 gen_pool_first_fit_align -EXPORT_SYMBOL vmlinux 0x5e915c4d of_get_next_available_child -EXPORT_SYMBOL vmlinux 0x5e95b1cd current_umask -EXPORT_SYMBOL vmlinux 0x5e9a01ce gen_new_estimator -EXPORT_SYMBOL vmlinux 0x5eb24829 dm_shift_arg -EXPORT_SYMBOL vmlinux 0x5ec15847 __cleancache_invalidate_fs -EXPORT_SYMBOL vmlinux 0x5ec4aee6 put_sg_io_hdr -EXPORT_SYMBOL vmlinux 0x5ecbc117 clk_bulk_get -EXPORT_SYMBOL vmlinux 0x5ed040b0 pm_set_vt_switch -EXPORT_SYMBOL vmlinux 0x5ed390ac ethtool_rx_flow_rule_create -EXPORT_SYMBOL vmlinux 0x5ed90adc int_to_scsilun -EXPORT_SYMBOL vmlinux 0x5ef6a672 gen_pool_for_each_chunk -EXPORT_SYMBOL vmlinux 0x5efdd68b __tracepoint_mmap_lock_released -EXPORT_SYMBOL vmlinux 0x5efde8e6 proc_doulongvec_ms_jiffies_minmax -EXPORT_SYMBOL vmlinux 0x5f098b2a in6addr_interfacelocal_allrouters -EXPORT_SYMBOL vmlinux 0x5f0dccc2 dst_release -EXPORT_SYMBOL vmlinux 0x5f0e70d7 tcp_get_cookie_sock -EXPORT_SYMBOL vmlinux 0x5f21b40a from_kgid_munged -EXPORT_SYMBOL vmlinux 0x5f2b9e3a genphy_aneg_done -EXPORT_SYMBOL vmlinux 0x5f30e7a7 tegra_io_pad_power_disable -EXPORT_SYMBOL vmlinux 0x5f367ca3 scsi_remove_device -EXPORT_SYMBOL vmlinux 0x5f52843e mnt_set_expiry -EXPORT_SYMBOL vmlinux 0x5f6b889c rproc_va_to_pa -EXPORT_SYMBOL vmlinux 0x5f732cba key_type_keyring -EXPORT_SYMBOL vmlinux 0x5f8b0e0b scsi_vpd_tpg_id -EXPORT_SYMBOL vmlinux 0x5f93525c acpi_extract_package -EXPORT_SYMBOL vmlinux 0x5f98bdb6 nf_hooks_needed -EXPORT_SYMBOL vmlinux 0x5fc6da1b jbd2_journal_submit_inode_data_buffers -EXPORT_SYMBOL vmlinux 0x5fc72f0e alloc_pages_exact -EXPORT_SYMBOL vmlinux 0x5fd47a06 pipe_lock -EXPORT_SYMBOL vmlinux 0x5fed178c meson_sm_call -EXPORT_SYMBOL vmlinux 0x5ff91460 inet_csk_reqsk_queue_add -EXPORT_SYMBOL vmlinux 0x5ff9eb0e lockref_mark_dead -EXPORT_SYMBOL vmlinux 0x5ffaa23b simple_rename -EXPORT_SYMBOL vmlinux 0x6005c351 zpool_has_pool -EXPORT_SYMBOL vmlinux 0x600683d3 do_unblank_screen -EXPORT_SYMBOL vmlinux 0x6007d387 tcp_rtx_synack -EXPORT_SYMBOL vmlinux 0x601c0b84 ram_aops -EXPORT_SYMBOL vmlinux 0x601f665f dm_io_client_create -EXPORT_SYMBOL vmlinux 0x60352082 register_inet6addr_notifier -EXPORT_SYMBOL vmlinux 0x6046d6c4 pci_claim_resource -EXPORT_SYMBOL vmlinux 0x6056fa0e wait_for_key_construction -EXPORT_SYMBOL vmlinux 0x605790dc fiemap_fill_next_extent -EXPORT_SYMBOL vmlinux 0x60645572 input_set_max_poll_interval -EXPORT_SYMBOL vmlinux 0x6064acd4 page_get_link -EXPORT_SYMBOL vmlinux 0x608741b5 __init_swait_queue_head -EXPORT_SYMBOL vmlinux 0x608bde19 skb_eth_pop -EXPORT_SYMBOL vmlinux 0x6091b333 unregister_chrdev_region -EXPORT_SYMBOL vmlinux 0x6096f270 config_group_init -EXPORT_SYMBOL vmlinux 0x6097a855 get_thermal_instance -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 0x60bdae8e unregister_cdrom -EXPORT_SYMBOL vmlinux 0x60c10cab udplite_prot -EXPORT_SYMBOL vmlinux 0x60c3d220 scsi_target_resume -EXPORT_SYMBOL vmlinux 0x60d842cc phy_ethtool_get_wol -EXPORT_SYMBOL vmlinux 0x60d8ab30 vme_lm_get -EXPORT_SYMBOL vmlinux 0x60ee70f5 i2c_smbus_write_i2c_block_data -EXPORT_SYMBOL vmlinux 0x60f71345 d_set_d_op -EXPORT_SYMBOL vmlinux 0x61073e4a acpi_os_map_generic_address -EXPORT_SYMBOL vmlinux 0x6128b5fc __printk_ratelimit -EXPORT_SYMBOL vmlinux 0x612994e5 noop_llseek -EXPORT_SYMBOL vmlinux 0x61347034 mb_cache_entry_delete_or_get -EXPORT_SYMBOL vmlinux 0x613bb6b8 finish_no_open -EXPORT_SYMBOL vmlinux 0x615911d7 __bitmap_set -EXPORT_SYMBOL vmlinux 0x615dea78 xfrm_state_walk_done -EXPORT_SYMBOL vmlinux 0x6167e72c vmalloc_no_huge -EXPORT_SYMBOL vmlinux 0x6170a624 inet_csk_accept -EXPORT_SYMBOL vmlinux 0x61786524 netdev_next_lower_dev_rcu -EXPORT_SYMBOL vmlinux 0x617c452b queued_read_lock_slowpath -EXPORT_SYMBOL vmlinux 0x617f8219 bdev_check_media_change -EXPORT_SYMBOL vmlinux 0x6185b747 radix_tree_gang_lookup_tag -EXPORT_SYMBOL vmlinux 0x618911fc numa_node -EXPORT_SYMBOL vmlinux 0x618ed0c2 nobh_write_end -EXPORT_SYMBOL vmlinux 0x61958417 complete_request_key -EXPORT_SYMBOL vmlinux 0x6195d2ce unpin_user_page_range_dirty_lock -EXPORT_SYMBOL vmlinux 0x619b7ace deactivate_locked_super -EXPORT_SYMBOL vmlinux 0x619cb7dd simple_read_from_buffer -EXPORT_SYMBOL vmlinux 0x61a88045 pcim_iomap -EXPORT_SYMBOL vmlinux 0x61b7b126 simple_strtoull -EXPORT_SYMBOL vmlinux 0x61baf029 security_sctp_bind_connect -EXPORT_SYMBOL vmlinux 0x61bee93a tcf_chain_get_by_act -EXPORT_SYMBOL vmlinux 0x61c36689 tcp_seq_next -EXPORT_SYMBOL vmlinux 0x61c4e4ee i2c_smbus_write_word_data -EXPORT_SYMBOL vmlinux 0x61e272c9 sha256_final -EXPORT_SYMBOL vmlinux 0x61ea189b fb_pad_aligned_buffer -EXPORT_SYMBOL vmlinux 0x61ed35f8 of_device_is_big_endian -EXPORT_SYMBOL vmlinux 0x620281e2 vme_slot_num -EXPORT_SYMBOL vmlinux 0x6202b71f seq_release_private -EXPORT_SYMBOL vmlinux 0x6207629d vfs_link -EXPORT_SYMBOL vmlinux 0x6214aef2 cpufreq_unregister_notifier -EXPORT_SYMBOL vmlinux 0x6228c21f smp_call_function_single -EXPORT_SYMBOL vmlinux 0x622ff708 flush_dcache_page -EXPORT_SYMBOL vmlinux 0x623e31c2 kmem_cache_create_usercopy -EXPORT_SYMBOL vmlinux 0x6242a6b0 ndo_dflt_fdb_del -EXPORT_SYMBOL vmlinux 0x6244f891 mr_mfc_seq_next -EXPORT_SYMBOL vmlinux 0x624e0f5d param_get_bool -EXPORT_SYMBOL vmlinux 0x6271718d dev_get_phys_port_name -EXPORT_SYMBOL vmlinux 0x62737e1d sock_unregister -EXPORT_SYMBOL vmlinux 0x627b42a8 lookup_one_len -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 0x6296afd2 pci_enable_device_mem -EXPORT_SYMBOL vmlinux 0x629cfeaa mmc_start_request -EXPORT_SYMBOL vmlinux 0x62aa3ece blk_queue_flag_set -EXPORT_SYMBOL vmlinux 0x62b11bfa bio_integrity_trim -EXPORT_SYMBOL vmlinux 0x62bf6edf utf8agemin -EXPORT_SYMBOL vmlinux 0x62d875ef wait_on_page_bit_killable -EXPORT_SYMBOL vmlinux 0x62d96443 qman_dma_portal -EXPORT_SYMBOL vmlinux 0x62e55224 inet_dgram_connect -EXPORT_SYMBOL vmlinux 0x62f7e207 down_read_killable -EXPORT_SYMBOL vmlinux 0x62fe7cf2 end_page_writeback -EXPORT_SYMBOL vmlinux 0x6301d521 inet_release -EXPORT_SYMBOL vmlinux 0x6309792d zpool_register_driver -EXPORT_SYMBOL vmlinux 0x630b94a8 genphy_restart_aneg -EXPORT_SYMBOL vmlinux 0x630c8fc2 tcp_enter_cwr -EXPORT_SYMBOL vmlinux 0x63187451 pcie_aspm_support_enabled -EXPORT_SYMBOL vmlinux 0x631d06aa cpu_rmap_put -EXPORT_SYMBOL vmlinux 0x631efcfd nd_integrity_init -EXPORT_SYMBOL vmlinux 0x631fd896 skb_queue_purge -EXPORT_SYMBOL vmlinux 0x632a26b6 nd_btt_probe -EXPORT_SYMBOL vmlinux 0x6336c407 blk_queue_max_segments -EXPORT_SYMBOL vmlinux 0x63472c53 mdio_driver_unregister -EXPORT_SYMBOL vmlinux 0x635346d9 node_data -EXPORT_SYMBOL vmlinux 0x63748642 uart_remove_one_port -EXPORT_SYMBOL vmlinux 0x63802e7e unregister_netdev -EXPORT_SYMBOL vmlinux 0x63a58370 flow_action_cookie_destroy -EXPORT_SYMBOL vmlinux 0x63a7c28c bitmap_find_free_region -EXPORT_SYMBOL vmlinux 0x63a90480 tty_port_free_xmit_buf -EXPORT_SYMBOL vmlinux 0x63aae97f phy_get_pause -EXPORT_SYMBOL vmlinux 0x63aec078 unlock_two_nondirectories -EXPORT_SYMBOL vmlinux 0x63c4d61f __bitmap_weight -EXPORT_SYMBOL vmlinux 0x63e4884b kmem_cache_size -EXPORT_SYMBOL vmlinux 0x63eb9355 panic_blink -EXPORT_SYMBOL vmlinux 0x63ef057f dev_uc_sync_multiple -EXPORT_SYMBOL vmlinux 0x640bd5f9 kill_pid -EXPORT_SYMBOL vmlinux 0x640ec85c xfrm_input_unregister_afinfo -EXPORT_SYMBOL vmlinux 0x64127b67 bitmap_find_next_zero_area_off -EXPORT_SYMBOL vmlinux 0x641d8c52 dev_change_flags -EXPORT_SYMBOL vmlinux 0x64268011 blk_put_request -EXPORT_SYMBOL vmlinux 0x642eb5c6 xen_poll_irq_timeout -EXPORT_SYMBOL vmlinux 0x64323387 ilookup -EXPORT_SYMBOL vmlinux 0x643f3068 __tracepoint_spi_transfer_stop -EXPORT_SYMBOL vmlinux 0x644222ab of_match_device -EXPORT_SYMBOL vmlinux 0x644be12c qman_affine_cpus -EXPORT_SYMBOL vmlinux 0x64566544 rproc_vq_interrupt -EXPORT_SYMBOL vmlinux 0x6457b389 md_bitmap_close_sync -EXPORT_SYMBOL vmlinux 0x645a4cb8 tcp_set_rcvlowat -EXPORT_SYMBOL vmlinux 0x645bf8a0 request_key_rcu -EXPORT_SYMBOL vmlinux 0x64643d6f bio_alloc_bioset -EXPORT_SYMBOL vmlinux 0x64691a76 fs_bio_set -EXPORT_SYMBOL vmlinux 0x6481ffe0 hsiphash_1u32 -EXPORT_SYMBOL vmlinux 0x648489ef kernel_recvmsg -EXPORT_SYMBOL vmlinux 0x64874223 blk_mq_kick_requeue_list -EXPORT_SYMBOL vmlinux 0x648eb59d gc_inflight_list -EXPORT_SYMBOL vmlinux 0x64999478 congestion_wait -EXPORT_SYMBOL vmlinux 0x64a9c928 default_blu -EXPORT_SYMBOL vmlinux 0x64bbc288 string_unescape -EXPORT_SYMBOL vmlinux 0x64c5b059 vfs_ioctl -EXPORT_SYMBOL vmlinux 0x64d02c90 ppp_dev_name -EXPORT_SYMBOL vmlinux 0x64d41060 __traceiter_mmap_lock_start_locking -EXPORT_SYMBOL vmlinux 0x64e0bed2 reuseport_detach_sock -EXPORT_SYMBOL vmlinux 0x64e2f336 scsi_register_interface -EXPORT_SYMBOL vmlinux 0x64f0121b wireless_spy_update -EXPORT_SYMBOL vmlinux 0x64fe4797 get_fs_type -EXPORT_SYMBOL vmlinux 0x64fe66b2 _dev_warn -EXPORT_SYMBOL vmlinux 0x65130b2e vmf_insert_mixed_mkwrite -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 0x653e726b sock_no_sendmsg -EXPORT_SYMBOL vmlinux 0x65408378 zlib_inflate_blob -EXPORT_SYMBOL vmlinux 0x6544406c padata_do_serial -EXPORT_SYMBOL vmlinux 0x654449c3 memset16 -EXPORT_SYMBOL vmlinux 0x65505141 mmc_can_gpio_cd -EXPORT_SYMBOL vmlinux 0x65508003 key_validate -EXPORT_SYMBOL vmlinux 0x65604afe find_get_pages_range_tag -EXPORT_SYMBOL vmlinux 0x656292c6 __dec_node_page_state -EXPORT_SYMBOL vmlinux 0x656c1a0e string_escape_mem -EXPORT_SYMBOL vmlinux 0x656e4a6e snprintf -EXPORT_SYMBOL vmlinux 0x65794372 acpi_bus_register_driver -EXPORT_SYMBOL vmlinux 0x657b28fa dns_query -EXPORT_SYMBOL vmlinux 0x658ce1a8 xxh64_reset -EXPORT_SYMBOL vmlinux 0x6594aad1 tcf_qevent_destroy -EXPORT_SYMBOL vmlinux 0x659debb1 ata_print_version -EXPORT_SYMBOL vmlinux 0x659ded26 xfrm_flush_gc -EXPORT_SYMBOL vmlinux 0x65a75f1d proc_symlink -EXPORT_SYMBOL vmlinux 0x65b7433b con_is_bound -EXPORT_SYMBOL vmlinux 0x65cf8831 ZSTD_decompress_usingDict -EXPORT_SYMBOL vmlinux 0x65d1bab2 acpi_bios_warning -EXPORT_SYMBOL vmlinux 0x65d5df30 netdev_name_node_alt_create -EXPORT_SYMBOL vmlinux 0x65d9e877 cpufreq_register_notifier -EXPORT_SYMBOL vmlinux 0x65dccf13 xz_dec_end -EXPORT_SYMBOL vmlinux 0x65e0d6d7 memory_read_from_buffer -EXPORT_SYMBOL vmlinux 0x65e141cf register_netdevice -EXPORT_SYMBOL vmlinux 0x65f2fcd9 __inode_sub_bytes -EXPORT_SYMBOL vmlinux 0x65faf427 simple_transaction_release -EXPORT_SYMBOL vmlinux 0x66043bbc inet_stream_connect -EXPORT_SYMBOL vmlinux 0x6609a266 rproc_of_parse_firmware -EXPORT_SYMBOL vmlinux 0x6626afca down -EXPORT_SYMBOL vmlinux 0x662daa51 inode_newsize_ok -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 0x666ddf6c key_payload_reserve -EXPORT_SYMBOL vmlinux 0x6673f96d xxh32_reset -EXPORT_SYMBOL vmlinux 0x667cd848 mdiobus_alloc_size -EXPORT_SYMBOL vmlinux 0x66826f5a xudma_get_ringacc -EXPORT_SYMBOL vmlinux 0x668b19a1 down_read -EXPORT_SYMBOL vmlinux 0x66915800 pci_free_irq -EXPORT_SYMBOL vmlinux 0x66981ddd max8998_update_reg -EXPORT_SYMBOL vmlinux 0x66af1fd1 lockref_put_or_lock -EXPORT_SYMBOL vmlinux 0x66b4cc41 kmemdup -EXPORT_SYMBOL vmlinux 0x66bb243e blk_post_runtime_suspend -EXPORT_SYMBOL vmlinux 0x66e29781 dcb_ieee_delapp -EXPORT_SYMBOL vmlinux 0x66e3c74f alloc_pages -EXPORT_SYMBOL vmlinux 0x66ec63f0 scsi_device_lookup -EXPORT_SYMBOL vmlinux 0x67183a10 migrate_vma_pages -EXPORT_SYMBOL vmlinux 0x6719c0f7 bio_advance -EXPORT_SYMBOL vmlinux 0x671f3e7a vme_bus_error_handler -EXPORT_SYMBOL vmlinux 0x6721fc7c security_cred_getsecid -EXPORT_SYMBOL vmlinux 0x6722c07b skb_push -EXPORT_SYMBOL vmlinux 0x67287bf3 skb_realloc_headroom -EXPORT_SYMBOL vmlinux 0x672a889d devm_devfreq_register_notifier -EXPORT_SYMBOL vmlinux 0x67412d2f ucc_slow_enable -EXPORT_SYMBOL vmlinux 0x6749d53f hdmi_vendor_infoframe_init -EXPORT_SYMBOL vmlinux 0x67716c8d simple_nosetlease -EXPORT_SYMBOL vmlinux 0x678b96ec dma_pool_alloc -EXPORT_SYMBOL vmlinux 0x67966bf9 rproc_detach -EXPORT_SYMBOL vmlinux 0x6799e4f6 __filemap_set_wb_err -EXPORT_SYMBOL vmlinux 0x67a24afb read_cache_page_gfp -EXPORT_SYMBOL vmlinux 0x67b27ec1 tty_std_termios -EXPORT_SYMBOL vmlinux 0x67b78eb3 seq_hlist_next_rcu -EXPORT_SYMBOL vmlinux 0x67c13ea0 acpi_read -EXPORT_SYMBOL vmlinux 0x67cd74c6 unlock_page -EXPORT_SYMBOL vmlinux 0x67d28643 mipi_dsi_dcs_write -EXPORT_SYMBOL vmlinux 0x67d86394 devm_nvmem_cell_put -EXPORT_SYMBOL vmlinux 0x67e368a6 __nla_reserve -EXPORT_SYMBOL vmlinux 0x67f8fbbf tso_start -EXPORT_SYMBOL vmlinux 0x67f97470 pm_vt_switch_unregister -EXPORT_SYMBOL vmlinux 0x681b6670 is_firmware_framebuffer -EXPORT_SYMBOL vmlinux 0x68301bf8 mmc_is_req_done -EXPORT_SYMBOL vmlinux 0x68418bee input_unregister_handle -EXPORT_SYMBOL vmlinux 0x6844cbad netdev_master_upper_dev_get -EXPORT_SYMBOL vmlinux 0x6845af86 create_empty_buffers -EXPORT_SYMBOL vmlinux 0x685dc166 neigh_table_init -EXPORT_SYMBOL vmlinux 0x6861474c ps2_sendbyte -EXPORT_SYMBOL vmlinux 0x686a5466 of_node_name_prefix -EXPORT_SYMBOL vmlinux 0x687b6a16 kdbgetsymval -EXPORT_SYMBOL vmlinux 0x68848311 unregister_nls -EXPORT_SYMBOL vmlinux 0x688c1fdb dm_put_device -EXPORT_SYMBOL vmlinux 0x68af550a __generic_file_fsync -EXPORT_SYMBOL vmlinux 0x68ba69e7 pcie_capability_write_dword -EXPORT_SYMBOL vmlinux 0x68c63337 block_read_full_page -EXPORT_SYMBOL vmlinux 0x68d29251 jbd2_journal_get_create_access -EXPORT_SYMBOL vmlinux 0x68d7063e simple_link -EXPORT_SYMBOL vmlinux 0x68fb581a icst307_idx2s -EXPORT_SYMBOL vmlinux 0x69049cd2 radix_tree_replace_slot -EXPORT_SYMBOL vmlinux 0x690a6ed9 flow_rule_match_enc_control -EXPORT_SYMBOL vmlinux 0x690b0f31 xfrm_trans_queue_net -EXPORT_SYMBOL vmlinux 0x6917a77e __traceiter_kmem_cache_free -EXPORT_SYMBOL vmlinux 0x691e219e skb_copy_header -EXPORT_SYMBOL vmlinux 0x6930b92a eth_gro_receive -EXPORT_SYMBOL vmlinux 0x69585523 __ksize -EXPORT_SYMBOL vmlinux 0x6964d30e iov_iter_npages -EXPORT_SYMBOL vmlinux 0x69668826 netdev_increment_features -EXPORT_SYMBOL vmlinux 0x6971447a rtc_month_days -EXPORT_SYMBOL vmlinux 0x69784ae6 sock_no_listen -EXPORT_SYMBOL vmlinux 0x697ed5f0 memcpy_and_pad -EXPORT_SYMBOL vmlinux 0x697fcf8a ndisc_mc_map -EXPORT_SYMBOL vmlinux 0x699b3711 blk_pre_runtime_suspend -EXPORT_SYMBOL vmlinux 0x69b8ee47 xfrm6_rcv_spi -EXPORT_SYMBOL vmlinux 0x69c6f01c dquot_file_open -EXPORT_SYMBOL vmlinux 0x69d53cbc posix_acl_from_xattr -EXPORT_SYMBOL vmlinux 0x69dd3b5b crc32_le -EXPORT_SYMBOL vmlinux 0x69de8757 vme_check_window -EXPORT_SYMBOL vmlinux 0x69ee0bbd __splice_from_pipe -EXPORT_SYMBOL vmlinux 0x69f38847 cpu_hwcap_keys -EXPORT_SYMBOL vmlinux 0x69f8209f elv_bio_merge_ok -EXPORT_SYMBOL vmlinux 0x6a03751f sgl_free_order -EXPORT_SYMBOL vmlinux 0x6a037cf1 mempool_kfree -EXPORT_SYMBOL vmlinux 0x6a19279e d_delete -EXPORT_SYMBOL vmlinux 0x6a33ecfb of_mdio_find_device -EXPORT_SYMBOL vmlinux 0x6a3766b2 qman_delete_cgr_safe -EXPORT_SYMBOL vmlinux 0x6a3ca4e8 inet_proto_csum_replace_by_diff -EXPORT_SYMBOL vmlinux 0x6a449c4f register_sysctl_table -EXPORT_SYMBOL vmlinux 0x6a5cb5ee __get_free_pages -EXPORT_SYMBOL vmlinux 0x6a5ecb18 unregister_module_notifier -EXPORT_SYMBOL vmlinux 0x6a5f58f4 mr_mfc_seq_idx -EXPORT_SYMBOL vmlinux 0x6a5fa363 sigprocmask -EXPORT_SYMBOL vmlinux 0x6a696919 security_inode_init_security -EXPORT_SYMBOL vmlinux 0x6a6e05bf kstrtou8 -EXPORT_SYMBOL vmlinux 0x6a77ee24 clk_add_alias -EXPORT_SYMBOL vmlinux 0x6a7c5b87 get_tree_nodev -EXPORT_SYMBOL vmlinux 0x6a90663a qman_schedule_fq -EXPORT_SYMBOL vmlinux 0x6aa05932 kernel_sock_ip_overhead -EXPORT_SYMBOL vmlinux 0x6aa11aa6 sgl_free_n_order -EXPORT_SYMBOL vmlinux 0x6aa28ffb fwnode_graph_parse_endpoint -EXPORT_SYMBOL vmlinux 0x6ab31548 security_inode_notifysecctx -EXPORT_SYMBOL vmlinux 0x6add5c9a dmi_find_device -EXPORT_SYMBOL vmlinux 0x6aeefac4 zlib_deflateReset -EXPORT_SYMBOL vmlinux 0x6af006a1 input_inject_event -EXPORT_SYMBOL vmlinux 0x6af4c3e6 file_update_time -EXPORT_SYMBOL vmlinux 0x6b0280e6 has_capability -EXPORT_SYMBOL vmlinux 0x6b1e46f5 migrate_page_move_mapping -EXPORT_SYMBOL vmlinux 0x6b27729b radix_tree_gang_lookup -EXPORT_SYMBOL vmlinux 0x6b2d3aef phy_attached_info_irq -EXPORT_SYMBOL vmlinux 0x6b2dc060 dump_stack -EXPORT_SYMBOL vmlinux 0x6b42f373 mii_ethtool_set_link_ksettings -EXPORT_SYMBOL vmlinux 0x6b441a27 scsi_device_lookup_by_target -EXPORT_SYMBOL vmlinux 0x6b4b2933 __ioremap -EXPORT_SYMBOL vmlinux 0x6b55acd0 rtnl_lock_killable -EXPORT_SYMBOL vmlinux 0x6b5d84cf input_set_timestamp -EXPORT_SYMBOL vmlinux 0x6b6179fd devfreq_suspend_device -EXPORT_SYMBOL vmlinux 0x6b853d06 ns_to_kernel_old_timeval -EXPORT_SYMBOL vmlinux 0x6b863016 iw_handler_set_spy -EXPORT_SYMBOL vmlinux 0x6b8bf149 netif_receive_skb_list -EXPORT_SYMBOL vmlinux 0x6b984663 framebuffer_release -EXPORT_SYMBOL vmlinux 0x6b9d1c95 security_req_classify_flow -EXPORT_SYMBOL vmlinux 0x6bc3fbc0 __unregister_chrdev -EXPORT_SYMBOL vmlinux 0x6bd0e573 down_interruptible -EXPORT_SYMBOL vmlinux 0x6bd5f05a qdisc_watchdog_init -EXPORT_SYMBOL vmlinux 0x6be1c1f8 acpi_install_method -EXPORT_SYMBOL vmlinux 0x6be4820f wake_up_process -EXPORT_SYMBOL vmlinux 0x6be63d9a block_write_full_page -EXPORT_SYMBOL vmlinux 0x6be86fa8 tcf_idr_create -EXPORT_SYMBOL vmlinux 0x6bf181c1 __tracepoint_kmem_cache_free -EXPORT_SYMBOL vmlinux 0x6c09e46d skb_copy_datagram_iter -EXPORT_SYMBOL vmlinux 0x6c122dc3 jbd2_journal_lock_updates -EXPORT_SYMBOL vmlinux 0x6c224cda gen_pool_destroy -EXPORT_SYMBOL vmlinux 0x6c257ac0 tty_termios_hw_change -EXPORT_SYMBOL vmlinux 0x6c4f08fd netdev_rx_csum_fault -EXPORT_SYMBOL vmlinux 0x6c4f25d9 tty_port_raise_dtr_rts -EXPORT_SYMBOL vmlinux 0x6c5725bc scsi_rescan_device -EXPORT_SYMBOL vmlinux 0x6c5dae23 scsi_kmap_atomic_sg -EXPORT_SYMBOL vmlinux 0x6c61ce70 num_registered_fb -EXPORT_SYMBOL vmlinux 0x6c658105 pci_unregister_driver -EXPORT_SYMBOL vmlinux 0x6c7a0323 __tracepoint_kmem_cache_alloc -EXPORT_SYMBOL vmlinux 0x6c812718 pnp_register_card_driver -EXPORT_SYMBOL vmlinux 0x6c888524 cros_ec_cmd_xfer_status -EXPORT_SYMBOL vmlinux 0x6c943149 add_watch_to_object -EXPORT_SYMBOL vmlinux 0x6c98d89b mipi_dsi_generic_write -EXPORT_SYMBOL vmlinux 0x6cb46525 netlbl_catmap_walk -EXPORT_SYMBOL vmlinux 0x6cbbfc54 __arch_copy_to_user -EXPORT_SYMBOL vmlinux 0x6cc73042 rproc_mem_entry_init -EXPORT_SYMBOL vmlinux 0x6cc747c3 pnp_is_active -EXPORT_SYMBOL vmlinux 0x6ce98147 irq_set_chip -EXPORT_SYMBOL vmlinux 0x6cf0d67d qe_get_num_of_snums -EXPORT_SYMBOL vmlinux 0x6cfd2325 configfs_register_group -EXPORT_SYMBOL vmlinux 0x6d064d35 mini_qdisc_pair_swap -EXPORT_SYMBOL vmlinux 0x6d084975 fb_set_cmap -EXPORT_SYMBOL vmlinux 0x6d16c104 mutex_lock_killable -EXPORT_SYMBOL vmlinux 0x6d294e43 clock_t_to_jiffies -EXPORT_SYMBOL vmlinux 0x6d326c01 __tty_insert_flip_char -EXPORT_SYMBOL vmlinux 0x6d340f64 tty_termios_input_baud_rate -EXPORT_SYMBOL vmlinux 0x6d36cbc4 file_ns_capable -EXPORT_SYMBOL vmlinux 0x6d4bd1d9 flow_rule_match_enc_keyid -EXPORT_SYMBOL vmlinux 0x6d5ca8fb ipv4_specific -EXPORT_SYMBOL vmlinux 0x6d5f5b91 radix_tree_tagged -EXPORT_SYMBOL vmlinux 0x6d73c95f logic_outw -EXPORT_SYMBOL vmlinux 0x6d7938aa mark_buffer_async_write -EXPORT_SYMBOL vmlinux 0x6d7c7dcc bitmap_cut -EXPORT_SYMBOL vmlinux 0x6d8d5c63 fman_set_port_params -EXPORT_SYMBOL vmlinux 0x6d8f9f64 ptp_cancel_worker_sync -EXPORT_SYMBOL vmlinux 0x6d98c285 __skb_try_recv_datagram -EXPORT_SYMBOL vmlinux 0x6d9dd397 pci_request_regions -EXPORT_SYMBOL vmlinux 0x6da467cb pfn_is_map_memory -EXPORT_SYMBOL vmlinux 0x6db0e12b filemap_invalidate_lock_two -EXPORT_SYMBOL vmlinux 0x6dc35b25 radix_tree_iter_delete -EXPORT_SYMBOL vmlinux 0x6dcf857f uuid_null -EXPORT_SYMBOL vmlinux 0x6dd05343 qdisc_reset -EXPORT_SYMBOL vmlinux 0x6dd17e7b acpi_get_table_header -EXPORT_SYMBOL vmlinux 0x6de3aa23 try_to_writeback_inodes_sb -EXPORT_SYMBOL vmlinux 0x6deb98e7 register_netdevice_notifier_dev_net -EXPORT_SYMBOL vmlinux 0x6df1aaf1 kernel_sigaction -EXPORT_SYMBOL vmlinux 0x6e1a7e52 vme_irq_handler -EXPORT_SYMBOL vmlinux 0x6e37c9d0 phy_ethtool_get_link_ksettings -EXPORT_SYMBOL vmlinux 0x6e3af3a5 xfrm_input -EXPORT_SYMBOL vmlinux 0x6e562481 dma_map_sg_attrs -EXPORT_SYMBOL vmlinux 0x6e5b8651 xz_dec_run -EXPORT_SYMBOL vmlinux 0x6e5e0e79 peernet2id -EXPORT_SYMBOL vmlinux 0x6e5f9f1e dst_init -EXPORT_SYMBOL vmlinux 0x6e6166bb mdiobus_unregister -EXPORT_SYMBOL vmlinux 0x6e7154d2 __scsi_print_sense -EXPORT_SYMBOL vmlinux 0x6e720ff2 rtnl_unlock -EXPORT_SYMBOL vmlinux 0x6e8240fb nexthop_bucket_set_hw_flags -EXPORT_SYMBOL vmlinux 0x6e8ceb22 netdev_err -EXPORT_SYMBOL vmlinux 0x6e9dd606 __symbol_put -EXPORT_SYMBOL vmlinux 0x6ea9363b force_sig -EXPORT_SYMBOL vmlinux 0x6eecde70 unload_nls -EXPORT_SYMBOL vmlinux 0x6f05ce5e mipi_dsi_dcs_exit_sleep_mode -EXPORT_SYMBOL vmlinux 0x6f3caec1 dev_pick_tx_zero -EXPORT_SYMBOL vmlinux 0x6f41a428 acpi_get_vendor_resource -EXPORT_SYMBOL vmlinux 0x6f47bbfb jbd2_journal_init_inode -EXPORT_SYMBOL vmlinux 0x6f5ab52f acpi_get_local_address -EXPORT_SYMBOL vmlinux 0x6f5e7656 module_layout -EXPORT_SYMBOL vmlinux 0x6f6028bf blkdev_put -EXPORT_SYMBOL vmlinux 0x6f8f674a bpf_dispatcher_xdp_func -EXPORT_SYMBOL vmlinux 0x6f8fb432 iptun_encaps -EXPORT_SYMBOL vmlinux 0x6f915a45 dqstats -EXPORT_SYMBOL vmlinux 0x6f9c9d50 netlink_capable -EXPORT_SYMBOL vmlinux 0x6fa49f2f dev_mc_flush -EXPORT_SYMBOL vmlinux 0x6fa9eb6b rfkill_alloc -EXPORT_SYMBOL vmlinux 0x6fb49676 queue_rcu_work -EXPORT_SYMBOL vmlinux 0x6fbc6a00 radix_tree_insert -EXPORT_SYMBOL vmlinux 0x6fc29f3a blackhole_netdev -EXPORT_SYMBOL vmlinux 0x6fcb87a1 touch_softlockup_watchdog -EXPORT_SYMBOL vmlinux 0x6fefd45e inode_add_bytes -EXPORT_SYMBOL vmlinux 0x6ffa20a7 netlink_net_capable -EXPORT_SYMBOL vmlinux 0x6ffad025 lock_two_nondirectories -EXPORT_SYMBOL vmlinux 0x6fff261f __arch_clear_user -EXPORT_SYMBOL vmlinux 0x70002fe8 siphash_1u32 -EXPORT_SYMBOL vmlinux 0x7019351a sock_cmsg_send -EXPORT_SYMBOL vmlinux 0x701f7715 inet_rtx_syn_ack -EXPORT_SYMBOL vmlinux 0x7023bea8 unregister_acpi_notifier -EXPORT_SYMBOL vmlinux 0x7025e4ca dcache_dir_lseek -EXPORT_SYMBOL vmlinux 0x702946da ucs2_strlen -EXPORT_SYMBOL vmlinux 0x7038376c __get_hash_from_flowi6 -EXPORT_SYMBOL vmlinux 0x703d04b0 open_with_fake_path -EXPORT_SYMBOL vmlinux 0x7045ee4a fman_bind -EXPORT_SYMBOL vmlinux 0x7073b85b dma_find_channel -EXPORT_SYMBOL vmlinux 0x7076087d tcp_sync_mss -EXPORT_SYMBOL vmlinux 0x707eed98 tty_driver_kref_put -EXPORT_SYMBOL vmlinux 0x709c642a netdev_adjacent_change_abort -EXPORT_SYMBOL vmlinux 0x70ad75fb radix_tree_lookup -EXPORT_SYMBOL vmlinux 0x70d1a18e qman_release_pool -EXPORT_SYMBOL vmlinux 0x70ecc487 disk_start_io_acct -EXPORT_SYMBOL vmlinux 0x71076a30 xfrm_state_update -EXPORT_SYMBOL vmlinux 0x7116d996 tcp_sock_set_quickack -EXPORT_SYMBOL vmlinux 0x711c586d jbd2_journal_begin_ordered_truncate -EXPORT_SYMBOL vmlinux 0x7129e5f8 hex_asc -EXPORT_SYMBOL vmlinux 0x712c6738 netdev_unbind_sb_channel -EXPORT_SYMBOL vmlinux 0x7141b88a logic_insb -EXPORT_SYMBOL vmlinux 0x714d3a3f jbd2_journal_finish_inode_data_buffers -EXPORT_SYMBOL vmlinux 0x714dc0d0 devm_of_find_backlight -EXPORT_SYMBOL vmlinux 0x715a5ed0 vprintk -EXPORT_SYMBOL vmlinux 0x715fd440 dma_unmap_resource -EXPORT_SYMBOL vmlinux 0x7171121c overflowgid -EXPORT_SYMBOL vmlinux 0x7189e2bc device_add_disk -EXPORT_SYMBOL vmlinux 0x71989548 netlink_broadcast_filtered -EXPORT_SYMBOL vmlinux 0x71a672ef dmam_pool_destroy -EXPORT_SYMBOL vmlinux 0x71ac7f33 nf_unregister_sockopt -EXPORT_SYMBOL vmlinux 0x71b11ce5 scsi_host_lookup -EXPORT_SYMBOL vmlinux 0x71c75fd3 netdev_lower_get_first_private_rcu -EXPORT_SYMBOL vmlinux 0x71cbccd7 cdrom_mode_select -EXPORT_SYMBOL vmlinux 0x71cd123e skb_page_frag_refill -EXPORT_SYMBOL vmlinux 0x71d235ea pci_back_from_sleep -EXPORT_SYMBOL vmlinux 0x71dfc095 acpi_walk_resources -EXPORT_SYMBOL vmlinux 0x71f90446 vlan_for_each -EXPORT_SYMBOL vmlinux 0x720a27a7 __register_blkdev -EXPORT_SYMBOL vmlinux 0x721685c2 nf_register_sockopt -EXPORT_SYMBOL vmlinux 0x7221f039 key_put -EXPORT_SYMBOL vmlinux 0x722336d5 pci_disable_device -EXPORT_SYMBOL vmlinux 0x722e7e56 blk_queue_max_discard_sectors -EXPORT_SYMBOL vmlinux 0x7233892e sk_wait_data -EXPORT_SYMBOL vmlinux 0x723bd8e3 unlock_page_memcg -EXPORT_SYMBOL vmlinux 0x724ddac7 utf8version_is_supported -EXPORT_SYMBOL vmlinux 0x7252908d pcim_iomap_regions_request_all -EXPORT_SYMBOL vmlinux 0x72541d8e __icmp_send -EXPORT_SYMBOL vmlinux 0x7255bfe5 seg6_hmac_net_exit -EXPORT_SYMBOL vmlinux 0x726bc3c7 wait_for_completion_killable_timeout -EXPORT_SYMBOL vmlinux 0x728f8c10 __traceiter_module_get -EXPORT_SYMBOL vmlinux 0x729c1f9e i2c_smbus_read_byte_data -EXPORT_SYMBOL vmlinux 0x72a50966 ucc_fast_disable -EXPORT_SYMBOL vmlinux 0x72a5e640 misc_register -EXPORT_SYMBOL vmlinux 0x72b066dd __block_write_full_page -EXPORT_SYMBOL vmlinux 0x72b9d287 default_grn -EXPORT_SYMBOL vmlinux 0x72bb1145 sock_set_reuseaddr -EXPORT_SYMBOL vmlinux 0x72c28d31 unlock_buffer -EXPORT_SYMBOL vmlinux 0x72c40e7c ___pskb_trim -EXPORT_SYMBOL vmlinux 0x72ca64be tty_port_block_til_ready -EXPORT_SYMBOL vmlinux 0x72cf9278 xfrm_init_replay -EXPORT_SYMBOL vmlinux 0x72dac93c __dquot_free_space -EXPORT_SYMBOL vmlinux 0x72ea7b2d scsi_device_type -EXPORT_SYMBOL vmlinux 0x72f14ff7 acpi_get_object_info -EXPORT_SYMBOL vmlinux 0x72feeede dqput -EXPORT_SYMBOL vmlinux 0x730471c5 netpoll_poll_enable -EXPORT_SYMBOL vmlinux 0x730d9419 inet_frags_init -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 0x733a8b4e genphy_write_mmd_unsupported -EXPORT_SYMBOL vmlinux 0x734a04a2 inet_confirm_addr -EXPORT_SYMBOL vmlinux 0x734ada60 mdio_driver_register -EXPORT_SYMBOL vmlinux 0x73569e5e pci_find_parent_resource -EXPORT_SYMBOL vmlinux 0x735e6a81 acpi_evaluate_integer -EXPORT_SYMBOL vmlinux 0x7372e506 __dev_get_by_name -EXPORT_SYMBOL vmlinux 0x7380dffa argv_split -EXPORT_SYMBOL vmlinux 0x7381df63 of_n_addr_cells -EXPORT_SYMBOL vmlinux 0x73894772 pcie_capability_clear_and_set_dword -EXPORT_SYMBOL vmlinux 0x73998efa cpm_muram_free_addr -EXPORT_SYMBOL vmlinux 0x739fd00f __SCK__tp_func_module_get -EXPORT_SYMBOL vmlinux 0x73a3b0d1 pagecache_isize_extended -EXPORT_SYMBOL vmlinux 0x73abb180 alloc_contig_range -EXPORT_SYMBOL vmlinux 0x73d07250 blk_mq_start_request -EXPORT_SYMBOL vmlinux 0x73d25ff5 security_unix_stream_connect -EXPORT_SYMBOL vmlinux 0x73d343a7 ethtool_virtdev_set_link_ksettings -EXPORT_SYMBOL vmlinux 0x73df4b16 seq_put_decimal_ll -EXPORT_SYMBOL vmlinux 0x73e0eaa6 passthru_features_check -EXPORT_SYMBOL vmlinux 0x73e5fe53 mmc_cqe_post_req -EXPORT_SYMBOL vmlinux 0x7410aba2 strreplace -EXPORT_SYMBOL vmlinux 0x74119cf1 mdiobb_read -EXPORT_SYMBOL vmlinux 0x7412ed5b kvfree_sensitive -EXPORT_SYMBOL vmlinux 0x7422af0f clkdev_drop -EXPORT_SYMBOL vmlinux 0x742578a5 wait_for_random_bytes -EXPORT_SYMBOL vmlinux 0x7429e20c kstrtos8 -EXPORT_SYMBOL vmlinux 0x742d1d77 sunxi_sram_claim -EXPORT_SYMBOL vmlinux 0x7439b081 clk_bulk_get_all -EXPORT_SYMBOL vmlinux 0x743f4126 keygen_port_hashing_init -EXPORT_SYMBOL vmlinux 0x745225f4 rt_dst_clone -EXPORT_SYMBOL vmlinux 0x7453d3e8 security_release_secctx -EXPORT_SYMBOL vmlinux 0x746f284b seg6_hmac_info_lookup -EXPORT_SYMBOL vmlinux 0x74712014 da903x_query_status -EXPORT_SYMBOL vmlinux 0x74754435 acpi_bus_generate_netlink_event -EXPORT_SYMBOL vmlinux 0x747891d1 tcp_filter -EXPORT_SYMBOL vmlinux 0x7483dc59 pci_dev_present -EXPORT_SYMBOL vmlinux 0x7499653d inode_init_once -EXPORT_SYMBOL vmlinux 0x74b8e674 slhc_toss -EXPORT_SYMBOL vmlinux 0x74bb25de lease_modify -EXPORT_SYMBOL vmlinux 0x74c134b9 __sw_hweight32 -EXPORT_SYMBOL vmlinux 0x74c3b628 arp_create -EXPORT_SYMBOL vmlinux 0x74c73c0b flow_rule_match_icmp -EXPORT_SYMBOL vmlinux 0x74d42466 security_inode_listsecurity -EXPORT_SYMBOL vmlinux 0x74dace11 eth_gro_complete -EXPORT_SYMBOL vmlinux 0x74e5ff1a udpv6_encap_enable -EXPORT_SYMBOL vmlinux 0x74f35712 neigh_event_ns -EXPORT_SYMBOL vmlinux 0x74f565bb param_set_bint -EXPORT_SYMBOL vmlinux 0x74fd4934 hdmi_infoframe_log -EXPORT_SYMBOL vmlinux 0x7519d938 vc_resize -EXPORT_SYMBOL vmlinux 0x752ef4e1 serio_open -EXPORT_SYMBOL vmlinux 0x753c5c60 of_parse_phandle_with_args -EXPORT_SYMBOL vmlinux 0x755b78c6 meson_sm_call_write -EXPORT_SYMBOL vmlinux 0x755f4ba3 blake2s_compress_generic -EXPORT_SYMBOL vmlinux 0x75659524 dev_vprintk_emit -EXPORT_SYMBOL vmlinux 0x756f1eff tegra_ivc_write_get_next_frame -EXPORT_SYMBOL vmlinux 0x7580b04c nd_region_to_nstype -EXPORT_SYMBOL vmlinux 0x75871f5e acpi_get_next_object -EXPORT_SYMBOL vmlinux 0x758b9eee textsearch_prepare -EXPORT_SYMBOL vmlinux 0x758ceba4 dev_close -EXPORT_SYMBOL vmlinux 0x7595469f pci_release_resource -EXPORT_SYMBOL vmlinux 0x759af893 devm_clk_release_clkdev -EXPORT_SYMBOL vmlinux 0x75b21948 security_d_instantiate -EXPORT_SYMBOL vmlinux 0x75bda77a seq_hlist_next -EXPORT_SYMBOL vmlinux 0x75bf7ebf xfrm_input_resume -EXPORT_SYMBOL vmlinux 0x75d0deb9 nsecs_to_jiffies64 -EXPORT_SYMBOL vmlinux 0x75d499dd vmcore_add_device_dump -EXPORT_SYMBOL vmlinux 0x75de8b4a seq_read -EXPORT_SYMBOL vmlinux 0x75f54fdb blk_queue_logical_block_size -EXPORT_SYMBOL vmlinux 0x760a0f4f yield -EXPORT_SYMBOL vmlinux 0x7613d94e fscrypt_setup_filename -EXPORT_SYMBOL vmlinux 0x7618af39 hdmi_infoframe_check -EXPORT_SYMBOL vmlinux 0x761dfaba flow_rule_match_vlan -EXPORT_SYMBOL vmlinux 0x7624249e dim_park_tired -EXPORT_SYMBOL vmlinux 0x7647726c handle_sysrq -EXPORT_SYMBOL vmlinux 0x76477ea3 of_node_name_eq -EXPORT_SYMBOL vmlinux 0x7654bdbe find_vma -EXPORT_SYMBOL vmlinux 0x7658d4eb sdev_disable_disk_events -EXPORT_SYMBOL vmlinux 0x765ff474 crc_t10dif_generic -EXPORT_SYMBOL vmlinux 0x7668e20b dev_set_mac_address -EXPORT_SYMBOL vmlinux 0x766a0927 mempool_alloc_pages -EXPORT_SYMBOL vmlinux 0x7699571b generic_file_llseek -EXPORT_SYMBOL vmlinux 0x769f6e64 errseq_check -EXPORT_SYMBOL vmlinux 0x76af9251 udp_poll -EXPORT_SYMBOL vmlinux 0x76b456a3 flow_rule_match_enc_ipv6_addrs -EXPORT_SYMBOL vmlinux 0x76c54547 vfs_fadvise -EXPORT_SYMBOL vmlinux 0x76d3cd60 laptop_mode -EXPORT_SYMBOL vmlinux 0x76d44d4d tcf_block_get -EXPORT_SYMBOL vmlinux 0x76ddb077 __traceiter_mmap_lock_released -EXPORT_SYMBOL vmlinux 0x76ef1204 pci_find_bus -EXPORT_SYMBOL vmlinux 0x76f7f541 fs_param_is_fd -EXPORT_SYMBOL vmlinux 0x770ec6fb mmc_cqe_recovery -EXPORT_SYMBOL vmlinux 0x7726e12a dm_io -EXPORT_SYMBOL vmlinux 0x7732159c free_irq_cpu_rmap -EXPORT_SYMBOL vmlinux 0x77358855 iomem_resource -EXPORT_SYMBOL vmlinux 0x773fa409 __kfifo_dma_in_finish_r -EXPORT_SYMBOL vmlinux 0x77456e0a acpi_root_dir -EXPORT_SYMBOL vmlinux 0x7758f957 dquot_quotactl_sysfile_ops -EXPORT_SYMBOL vmlinux 0x7769c700 fddi_type_trans -EXPORT_SYMBOL vmlinux 0x776ca93a __clzdi2 -EXPORT_SYMBOL vmlinux 0x7770b3c9 __mmap_lock_do_trace_start_locking -EXPORT_SYMBOL vmlinux 0x777a47ff override_creds -EXPORT_SYMBOL vmlinux 0x778c147f dev_uc_add_excl -EXPORT_SYMBOL vmlinux 0x778e9226 of_parse_phandle_with_fixed_args -EXPORT_SYMBOL vmlinux 0x7791193f icst525_s2div -EXPORT_SYMBOL vmlinux 0x77bc13a0 strim -EXPORT_SYMBOL vmlinux 0x77d7f567 neigh_lookup -EXPORT_SYMBOL vmlinux 0x77d877df napi_consume_skb -EXPORT_SYMBOL vmlinux 0x77dac281 of_graph_parse_endpoint -EXPORT_SYMBOL vmlinux 0x77dc1313 component_match_add_typed -EXPORT_SYMBOL vmlinux 0x77df1d62 __traceiter_spi_transfer_stop -EXPORT_SYMBOL vmlinux 0x77e9eb37 aes_encrypt -EXPORT_SYMBOL vmlinux 0x77ef0273 register_qdisc -EXPORT_SYMBOL vmlinux 0x7807f0f8 schedule_timeout_idle -EXPORT_SYMBOL vmlinux 0x7813edc0 md_flush_request -EXPORT_SYMBOL vmlinux 0x78205be0 md_write_start -EXPORT_SYMBOL vmlinux 0x7828bac8 skb_headers_offset_update -EXPORT_SYMBOL vmlinux 0x7828f456 tcf_action_check_ctrlact -EXPORT_SYMBOL vmlinux 0x78329969 copy_page_from_iter -EXPORT_SYMBOL vmlinux 0x7846af3e __kfifo_len_r -EXPORT_SYMBOL vmlinux 0x785719e7 blk_rq_map_user -EXPORT_SYMBOL vmlinux 0x7858d5c3 tcp_md5_do_add -EXPORT_SYMBOL vmlinux 0x78595690 sock_alloc_file -EXPORT_SYMBOL vmlinux 0x786976a7 to_nd_btt -EXPORT_SYMBOL vmlinux 0x787124c1 pm860x_bulk_read -EXPORT_SYMBOL vmlinux 0x7880c781 dm_kcopyd_prepare_callback -EXPORT_SYMBOL vmlinux 0x7883ff87 __ClearPageMovable -EXPORT_SYMBOL vmlinux 0x789affb1 frontswap_tmem_exclusive_gets -EXPORT_SYMBOL vmlinux 0x78a16f48 aes_decrypt -EXPORT_SYMBOL vmlinux 0x78b5ec10 generic_cont_expand_simple -EXPORT_SYMBOL vmlinux 0x78b887ed vsprintf -EXPORT_SYMBOL vmlinux 0x78df6bd7 no_pci_devices -EXPORT_SYMBOL vmlinux 0x78eb34b6 pps_event -EXPORT_SYMBOL vmlinux 0x78f0e357 tcp_seq_stop -EXPORT_SYMBOL vmlinux 0x790bafd4 blk_stack_limits -EXPORT_SYMBOL vmlinux 0x7917465c page_pool_create -EXPORT_SYMBOL vmlinux 0x793e73be udp_sendmsg -EXPORT_SYMBOL vmlinux 0x794b31e6 __starget_for_each_device -EXPORT_SYMBOL vmlinux 0x79621e02 devm_clk_get -EXPORT_SYMBOL vmlinux 0x796285ab of_phy_get_and_connect -EXPORT_SYMBOL vmlinux 0x796a6e5d mipi_dsi_device_unregister -EXPORT_SYMBOL vmlinux 0x796da1a9 ipv6_chk_addr_and_flags -EXPORT_SYMBOL vmlinux 0x79739c3c utf8nagemin -EXPORT_SYMBOL vmlinux 0x7984eefc key_update -EXPORT_SYMBOL vmlinux 0x79a14e8c uart_add_one_port -EXPORT_SYMBOL vmlinux 0x79a33f85 vme_get_size -EXPORT_SYMBOL vmlinux 0x79ab4375 iterate_fd -EXPORT_SYMBOL vmlinux 0x79d49d54 of_find_node_by_phandle -EXPORT_SYMBOL vmlinux 0x79d4c678 key_alloc -EXPORT_SYMBOL vmlinux 0x79e56820 bio_copy_data_iter -EXPORT_SYMBOL vmlinux 0x79e90388 call_fib_notifiers -EXPORT_SYMBOL vmlinux 0x79ec8f93 blk_start_plug -EXPORT_SYMBOL vmlinux 0x79ec9087 pcie_capability_read_dword -EXPORT_SYMBOL vmlinux 0x79fe3b35 vfs_create_mount -EXPORT_SYMBOL vmlinux 0x7a0961a4 d_exact_alias -EXPORT_SYMBOL vmlinux 0x7a09a064 seg6_hmac_compute -EXPORT_SYMBOL vmlinux 0x7a0eb771 rtc_add_groups -EXPORT_SYMBOL vmlinux 0x7a1bcd59 gf128mul_x8_ble -EXPORT_SYMBOL vmlinux 0x7a26a644 dma_resv_add_shared_fence -EXPORT_SYMBOL vmlinux 0x7a2af7b4 cpu_number -EXPORT_SYMBOL vmlinux 0x7a3a80fb max8925_reg_read -EXPORT_SYMBOL vmlinux 0x7a53a06d flow_indr_dev_exists -EXPORT_SYMBOL vmlinux 0x7a5a5bc9 ip_do_fragment -EXPORT_SYMBOL vmlinux 0x7a5c38e6 fib6_info_hw_flags_set -EXPORT_SYMBOL vmlinux 0x7a5d664c dev_uc_flush -EXPORT_SYMBOL vmlinux 0x7a609b6d sk_stop_timer_sync -EXPORT_SYMBOL vmlinux 0x7a679c62 devm_backlight_device_register -EXPORT_SYMBOL vmlinux 0x7a8624b4 nf_setsockopt -EXPORT_SYMBOL vmlinux 0x7a95e5ae do_settimeofday64 -EXPORT_SYMBOL vmlinux 0x7a968137 ucc_slow_restart_tx -EXPORT_SYMBOL vmlinux 0x7aa1756e kvfree -EXPORT_SYMBOL vmlinux 0x7ab88a45 system_freezing_cnt -EXPORT_SYMBOL vmlinux 0x7ad050b9 qid_lt -EXPORT_SYMBOL vmlinux 0x7adc0fbf rb_replace_node_rcu -EXPORT_SYMBOL vmlinux 0x7ae5d317 qe_get_snum -EXPORT_SYMBOL vmlinux 0x7ae84a47 blkdev_issue_write_same -EXPORT_SYMBOL vmlinux 0x7af781ee ww_mutex_lock -EXPORT_SYMBOL vmlinux 0x7b37d4a7 _find_first_zero_bit -EXPORT_SYMBOL vmlinux 0x7b3a830b flow_rule_match_tcp -EXPORT_SYMBOL vmlinux 0x7b43eb65 generic_file_write_iter -EXPORT_SYMBOL vmlinux 0x7b4da6ff __init_rwsem -EXPORT_SYMBOL vmlinux 0x7b557c23 kernel_read -EXPORT_SYMBOL vmlinux 0x7b5b8f31 sha256_update -EXPORT_SYMBOL vmlinux 0x7b6fcad6 dmam_alloc_attrs -EXPORT_SYMBOL vmlinux 0x7b71edbb __netif_schedule -EXPORT_SYMBOL vmlinux 0x7b82b9a1 idr_replace -EXPORT_SYMBOL vmlinux 0x7b82cd84 i2c_get_adapter -EXPORT_SYMBOL vmlinux 0x7b8aa37f netlink_set_err -EXPORT_SYMBOL vmlinux 0x7ba453b1 scsi_free_host_dev -EXPORT_SYMBOL vmlinux 0x7ba5a3b4 tegra_powergate_power_off -EXPORT_SYMBOL vmlinux 0x7bb50b88 acpi_write -EXPORT_SYMBOL vmlinux 0x7bba473f tcp_v4_mtu_reduced -EXPORT_SYMBOL vmlinux 0x7bbc053a register_tcf_proto_ops -EXPORT_SYMBOL vmlinux 0x7bbccd05 nr_node_ids -EXPORT_SYMBOL vmlinux 0x7bc28cb7 tc_setup_cb_reoffload -EXPORT_SYMBOL vmlinux 0x7bc45d15 tcf_action_exec -EXPORT_SYMBOL vmlinux 0x7bd8abba lookup_one -EXPORT_SYMBOL vmlinux 0x7bfeea9f unlock_new_inode -EXPORT_SYMBOL vmlinux 0x7c173634 __bitmap_complement -EXPORT_SYMBOL vmlinux 0x7c2be06e mmc_can_gpio_ro -EXPORT_SYMBOL vmlinux 0x7c46233a cpufreq_quick_get -EXPORT_SYMBOL vmlinux 0x7c4e8e30 acpi_bus_get_device -EXPORT_SYMBOL vmlinux 0x7c4e9d28 xp_raw_get_data -EXPORT_SYMBOL vmlinux 0x7c5d65fd __skb_wait_for_more_packets -EXPORT_SYMBOL vmlinux 0x7c63faec __vfs_getxattr -EXPORT_SYMBOL vmlinux 0x7c97b967 rproc_elf_load_rsc_table -EXPORT_SYMBOL vmlinux 0x7c9c795d hmm_range_fault -EXPORT_SYMBOL vmlinux 0x7c9ca58f __sg_page_iter_next -EXPORT_SYMBOL vmlinux 0x7cb1aea1 devlink_dpipe_header_ethernet -EXPORT_SYMBOL vmlinux 0x7cbba44f tegra_ivc_notified -EXPORT_SYMBOL vmlinux 0x7cd040e4 __zerocopy_sg_from_iter -EXPORT_SYMBOL vmlinux 0x7cd4324a dev_set_allmulti -EXPORT_SYMBOL vmlinux 0x7ce18c9f from_kqid -EXPORT_SYMBOL vmlinux 0x7ce58981 kvrealloc -EXPORT_SYMBOL vmlinux 0x7cea367f dma_get_sgtable_attrs -EXPORT_SYMBOL vmlinux 0x7cea7692 phy_mac_interrupt -EXPORT_SYMBOL vmlinux 0x7ceef928 generic_remap_file_range_prep -EXPORT_SYMBOL vmlinux 0x7cf09a64 dma_resv_copy_fences -EXPORT_SYMBOL vmlinux 0x7cf35220 vme_master_free -EXPORT_SYMBOL vmlinux 0x7cf8b6c8 blk_queue_io_min -EXPORT_SYMBOL vmlinux 0x7cfe368d net_dim_get_def_tx_moderation -EXPORT_SYMBOL vmlinux 0x7d05df5c csum_and_copy_to_iter -EXPORT_SYMBOL vmlinux 0x7d0ba682 gen_pool_virt_to_phys -EXPORT_SYMBOL vmlinux 0x7d0db45c jiffies_to_clock_t -EXPORT_SYMBOL vmlinux 0x7d0ef256 tegra_ivc_read_advance -EXPORT_SYMBOL vmlinux 0x7d12d76d acpi_get_parent -EXPORT_SYMBOL vmlinux 0x7d1f88bb fscrypt_encrypt_block_inplace -EXPORT_SYMBOL vmlinux 0x7d47c05b fifo_set_limit -EXPORT_SYMBOL vmlinux 0x7d47fc0b iov_iter_revert -EXPORT_SYMBOL vmlinux 0x7d4b176a netlbl_catmap_setbit -EXPORT_SYMBOL vmlinux 0x7d4bc81e acpi_processor_notify_smm -EXPORT_SYMBOL vmlinux 0x7d5c481c phy_ethtool_ksettings_set -EXPORT_SYMBOL vmlinux 0x7d5e1008 __crc32c_le_shift -EXPORT_SYMBOL vmlinux 0x7d6ade84 acpi_dev_get_first_match_dev -EXPORT_SYMBOL vmlinux 0x7d74d522 kstrtoull_from_user -EXPORT_SYMBOL vmlinux 0x7d859024 netdev_state_change -EXPORT_SYMBOL vmlinux 0x7d8c29c2 vfs_setpos -EXPORT_SYMBOL vmlinux 0x7d91da87 insert_inode_locked -EXPORT_SYMBOL vmlinux 0x7d9bd6c6 __cancel_dirty_page -EXPORT_SYMBOL vmlinux 0x7da08cbe blk_dump_rq_flags -EXPORT_SYMBOL vmlinux 0x7daece67 quota_send_warning -EXPORT_SYMBOL vmlinux 0x7dcf4135 __xa_insert -EXPORT_SYMBOL vmlinux 0x7deff673 dm_consume_args -EXPORT_SYMBOL vmlinux 0x7dfb137f unregister_netdevice_queue -EXPORT_SYMBOL vmlinux 0x7e0d7ff2 of_node_get -EXPORT_SYMBOL vmlinux 0x7e239f09 thermal_cdev_update -EXPORT_SYMBOL vmlinux 0x7e2764a9 mipi_dsi_dcs_set_display_off -EXPORT_SYMBOL vmlinux 0x7e3191f6 try_to_del_timer_sync -EXPORT_SYMBOL vmlinux 0x7e365d10 __alloc_pages -EXPORT_SYMBOL vmlinux 0x7e476e21 nf_log_trace -EXPORT_SYMBOL vmlinux 0x7e4b6289 ilookup5 -EXPORT_SYMBOL vmlinux 0x7e50f375 phy_get_c45_ids -EXPORT_SYMBOL vmlinux 0x7e5e7d75 dst_dev_put -EXPORT_SYMBOL vmlinux 0x7e791598 xp_dma_sync_for_device_slow -EXPORT_SYMBOL vmlinux 0x7e881735 netpoll_poll_disable -EXPORT_SYMBOL vmlinux 0x7ea0d4ca tegra_sku_info -EXPORT_SYMBOL vmlinux 0x7ea555af page_mapping -EXPORT_SYMBOL vmlinux 0x7eccd74c __sock_i_ino -EXPORT_SYMBOL vmlinux 0x7ed4c77a rtnl_link_get_net -EXPORT_SYMBOL vmlinux 0x7ed5fe94 of_get_compatible_child -EXPORT_SYMBOL vmlinux 0x7f02188f __msecs_to_jiffies -EXPORT_SYMBOL vmlinux 0x7f03b6a9 crc_ccitt_table -EXPORT_SYMBOL vmlinux 0x7f05d0b4 param_get_ullong -EXPORT_SYMBOL vmlinux 0x7f24de73 jiffies_to_usecs -EXPORT_SYMBOL vmlinux 0x7f30fbe6 pci_bus_write_config_byte -EXPORT_SYMBOL vmlinux 0x7f401682 kernel_listen -EXPORT_SYMBOL vmlinux 0x7f45301a jbd2_journal_start_commit -EXPORT_SYMBOL vmlinux 0x7f4f5804 unregister_framebuffer -EXPORT_SYMBOL vmlinux 0x7f52071a net_dim -EXPORT_SYMBOL vmlinux 0x7f536e4f udp_flush_pending_frames -EXPORT_SYMBOL vmlinux 0x7f5b4546 lock_rename -EXPORT_SYMBOL vmlinux 0x7f5b4fe4 sg_free_table -EXPORT_SYMBOL vmlinux 0x7f6700f9 block_page_mkwrite -EXPORT_SYMBOL vmlinux 0x7f7a6a9f phy_free_interrupt -EXPORT_SYMBOL vmlinux 0x7f7f7bb4 irq_poll_disable -EXPORT_SYMBOL vmlinux 0x7f931d07 filemap_map_pages -EXPORT_SYMBOL vmlinux 0x7fce778e tegra_ivc_total_queue_size -EXPORT_SYMBOL vmlinux 0x7fde1cd6 inet6_del_offload -EXPORT_SYMBOL vmlinux 0x7fe105d7 bman_ip_rev -EXPORT_SYMBOL vmlinux 0x7fe2b49c nd_device_notify -EXPORT_SYMBOL vmlinux 0x7fe32873 rb_replace_node -EXPORT_SYMBOL vmlinux 0x7fef4e5e sk_free -EXPORT_SYMBOL vmlinux 0x7ff6a60a inet_sk_rebuild_header -EXPORT_SYMBOL vmlinux 0x7ffb3bb4 mipi_dsi_dcs_read -EXPORT_SYMBOL vmlinux 0x803ddbb6 __posix_acl_create -EXPORT_SYMBOL vmlinux 0x80483315 __udp_disconnect -EXPORT_SYMBOL vmlinux 0x804b9b28 phy_get_internal_delay -EXPORT_SYMBOL vmlinux 0x80528a77 scsicam_bios_param -EXPORT_SYMBOL vmlinux 0x80840e0d to_nd_pfn -EXPORT_SYMBOL vmlinux 0x808997a3 cdrom_get_last_written -EXPORT_SYMBOL vmlinux 0x809712ff hdmi_avi_infoframe_pack -EXPORT_SYMBOL vmlinux 0x80a59dbf bio_uninit -EXPORT_SYMBOL vmlinux 0x80a5d6f9 rproc_elf_find_loaded_rsc_table -EXPORT_SYMBOL vmlinux 0x80a6b484 input_alloc_absinfo -EXPORT_SYMBOL vmlinux 0x80a717a8 __percpu_counter_compare -EXPORT_SYMBOL vmlinux 0x80ca5026 _bin2bcd -EXPORT_SYMBOL vmlinux 0x80d68d3e fb_register_client -EXPORT_SYMBOL vmlinux 0x80dc2ca7 filemap_flush -EXPORT_SYMBOL vmlinux 0x80dcd28a ip_route_input_noref -EXPORT_SYMBOL vmlinux 0x80e5f86f fscrypt_fname_alloc_buffer -EXPORT_SYMBOL vmlinux 0x80eba186 security_socket_getpeersec_dgram -EXPORT_SYMBOL vmlinux 0x80ec0d50 qman_init_fq -EXPORT_SYMBOL vmlinux 0x80edcaec inet_sendmsg -EXPORT_SYMBOL vmlinux 0x80f1e5bb phy_support_asym_pause -EXPORT_SYMBOL vmlinux 0x80f6b3d3 dquot_get_next_id -EXPORT_SYMBOL vmlinux 0x80f8eb29 d_obtain_alias -EXPORT_SYMBOL vmlinux 0x81015210 phy_suspend -EXPORT_SYMBOL vmlinux 0x810988f3 dev_get_by_name_rcu -EXPORT_SYMBOL vmlinux 0x810bef7e sg_free_append_table -EXPORT_SYMBOL vmlinux 0x810d2291 param_ops_bool -EXPORT_SYMBOL vmlinux 0x8110ab3e bio_split -EXPORT_SYMBOL vmlinux 0x8112b3d2 scsi_build_sense_buffer -EXPORT_SYMBOL vmlinux 0x81188c30 match_string -EXPORT_SYMBOL vmlinux 0x8138cd7e get_user_pages_locked -EXPORT_SYMBOL vmlinux 0x814b5b1d ps2_end_command -EXPORT_SYMBOL vmlinux 0x814cb74f is_subdir -EXPORT_SYMBOL vmlinux 0x81533963 sysfs_format_mac -EXPORT_SYMBOL vmlinux 0x8157e2e2 dev_change_proto_down -EXPORT_SYMBOL vmlinux 0x815b5dd4 match_octal -EXPORT_SYMBOL vmlinux 0x815f2897 empty_zero_page -EXPORT_SYMBOL vmlinux 0x818416e1 scsi_set_sense_information -EXPORT_SYMBOL vmlinux 0x8186c2d2 __quota_error -EXPORT_SYMBOL vmlinux 0x818b85d5 register_mii_timestamper -EXPORT_SYMBOL vmlinux 0x818edf97 cpm_muram_alloc -EXPORT_SYMBOL vmlinux 0x8196e304 posix_acl_chmod -EXPORT_SYMBOL vmlinux 0x819bbee7 xsk_uses_need_wakeup -EXPORT_SYMBOL vmlinux 0x81ac5e33 trace_print_hex_dump_seq -EXPORT_SYMBOL vmlinux 0x81b0f7aa udp_seq_start -EXPORT_SYMBOL vmlinux 0x81b20e8b ucc_fast_transmit_on_demand -EXPORT_SYMBOL vmlinux 0x81c75f79 seq_bprintf -EXPORT_SYMBOL vmlinux 0x81db6ebb xz_dec_reset -EXPORT_SYMBOL vmlinux 0x81e6b37f dmi_get_system_info -EXPORT_SYMBOL vmlinux 0x81e8ee40 dma_map_resource -EXPORT_SYMBOL vmlinux 0x81f54971 __mod_lruvec_page_state -EXPORT_SYMBOL vmlinux 0x81f82183 touch_buffer -EXPORT_SYMBOL vmlinux 0x81fad1c0 rdmacg_try_charge -EXPORT_SYMBOL vmlinux 0x821cc241 dquot_resume -EXPORT_SYMBOL vmlinux 0x8236959e vfs_mknod -EXPORT_SYMBOL vmlinux 0x823d3505 cmxgcr_lock -EXPORT_SYMBOL vmlinux 0x82427ffe tcp_md5_hash_key -EXPORT_SYMBOL vmlinux 0x8257f770 dcbnl_ieee_notify -EXPORT_SYMBOL vmlinux 0x8263a6d9 proc_douintvec -EXPORT_SYMBOL vmlinux 0x828062b1 __frontswap_init -EXPORT_SYMBOL vmlinux 0x8291a09b tcf_classify -EXPORT_SYMBOL vmlinux 0x82a597d6 input_flush_device -EXPORT_SYMBOL vmlinux 0x82b6f842 twl6040_reg_write -EXPORT_SYMBOL vmlinux 0x82c87ad5 nr_online_nodes -EXPORT_SYMBOL vmlinux 0x82e231f3 pcie_capability_clear_and_set_word -EXPORT_SYMBOL vmlinux 0x83054f86 ndo_dflt_fdb_add -EXPORT_SYMBOL vmlinux 0x8310e5c9 generic_perform_write -EXPORT_SYMBOL vmlinux 0x832f6d43 pci_iomap -EXPORT_SYMBOL vmlinux 0x833bf996 page_mapped -EXPORT_SYMBOL vmlinux 0x834fab89 rproc_alloc -EXPORT_SYMBOL vmlinux 0x83581089 gf128mul_init_4k_lle -EXPORT_SYMBOL vmlinux 0x835b86e7 make_bad_inode -EXPORT_SYMBOL vmlinux 0x836ffa32 phy_set_asym_pause -EXPORT_SYMBOL vmlinux 0x837b7b09 __dynamic_pr_debug -EXPORT_SYMBOL vmlinux 0x837cacc9 nd_dev_to_uuid -EXPORT_SYMBOL vmlinux 0x8382cb03 fc_mount -EXPORT_SYMBOL vmlinux 0x838d2bc8 siphash_3u32 -EXPORT_SYMBOL vmlinux 0x83b1a514 do_splice_direct -EXPORT_SYMBOL vmlinux 0x83b50e69 free_netdev -EXPORT_SYMBOL vmlinux 0x83b7724a dec_node_page_state -EXPORT_SYMBOL vmlinux 0x83d1954b uart_register_driver -EXPORT_SYMBOL vmlinux 0x83f8439e security_inet_conn_established -EXPORT_SYMBOL vmlinux 0x83fcef22 finalize_exec -EXPORT_SYMBOL vmlinux 0x840342c6 sgl_free -EXPORT_SYMBOL vmlinux 0x84125387 ip6_fraglist_prepare -EXPORT_SYMBOL vmlinux 0x84216aa6 unmap_mapping_range -EXPORT_SYMBOL vmlinux 0x8455e3a7 dma_fence_signal_timestamp_locked -EXPORT_SYMBOL vmlinux 0x8462fdd7 fman_get_bmi_max_fifo_size -EXPORT_SYMBOL vmlinux 0x846927b8 pnpacpi_protocol -EXPORT_SYMBOL vmlinux 0x84818f57 tegra_powergate_power_on -EXPORT_SYMBOL vmlinux 0x84823cf3 nla_strscpy -EXPORT_SYMBOL vmlinux 0x8487c546 sk_filter_trim_cap -EXPORT_SYMBOL vmlinux 0x849575fb tcf_exts_validate -EXPORT_SYMBOL vmlinux 0x84c1c552 proc_dointvec_ms_jiffies -EXPORT_SYMBOL vmlinux 0x84c4040c security_binder_set_context_mgr -EXPORT_SYMBOL vmlinux 0x84cb7e23 inet6_register_protosw -EXPORT_SYMBOL vmlinux 0x84d34ffa phy_request_interrupt -EXPORT_SYMBOL vmlinux 0x850655c9 tcp_get_md5sig_pool -EXPORT_SYMBOL vmlinux 0x850ae276 t10_pi_type1_crc -EXPORT_SYMBOL vmlinux 0x850ae665 may_umount_tree -EXPORT_SYMBOL vmlinux 0x851b9121 xudma_dev_get_psil_base -EXPORT_SYMBOL vmlinux 0x85364336 security_inode_invalidate_secctx -EXPORT_SYMBOL vmlinux 0x854e6871 phy_aneg_done -EXPORT_SYMBOL vmlinux 0x855b0f1f scsi_remove_host -EXPORT_SYMBOL vmlinux 0x855bf2f7 napi_gro_frags -EXPORT_SYMBOL vmlinux 0x855df1a0 hash_and_copy_to_iter -EXPORT_SYMBOL vmlinux 0x856322a8 input_mt_assign_slots -EXPORT_SYMBOL vmlinux 0x85670f1d rtnl_is_locked -EXPORT_SYMBOL vmlinux 0x8591d7d5 ledtrig_mtd_activity -EXPORT_SYMBOL vmlinux 0x85ab84bc dma_sync_single_for_cpu -EXPORT_SYMBOL vmlinux 0x85b4cf2f utf8nlen -EXPORT_SYMBOL vmlinux 0x85b5e625 rfkill_set_states -EXPORT_SYMBOL vmlinux 0x85bd1608 __request_region -EXPORT_SYMBOL vmlinux 0x85be8a59 ioc_lookup_icq -EXPORT_SYMBOL vmlinux 0x85c01694 send_sig -EXPORT_SYMBOL vmlinux 0x85c734c6 input_mt_destroy_slots -EXPORT_SYMBOL vmlinux 0x85ccb14e security_path_mkdir -EXPORT_SYMBOL vmlinux 0x85cd89bb neigh_resolve_output -EXPORT_SYMBOL vmlinux 0x85df9b6c strsep -EXPORT_SYMBOL vmlinux 0x85efc7e0 zero_pfn -EXPORT_SYMBOL vmlinux 0x8614ba19 sock_alloc_send_pskb -EXPORT_SYMBOL vmlinux 0x861cd0a5 is_nd_pfn -EXPORT_SYMBOL vmlinux 0x863a276a color_table -EXPORT_SYMBOL vmlinux 0x863dd18c unix_attach_fds -EXPORT_SYMBOL vmlinux 0x864078d3 mdiobus_is_registered_device -EXPORT_SYMBOL vmlinux 0x8657bceb sdev_prefix_printk -EXPORT_SYMBOL vmlinux 0x866501f6 ip_fraglist_prepare -EXPORT_SYMBOL vmlinux 0x866a62b2 gnet_stats_basic_sync_init -EXPORT_SYMBOL vmlinux 0x866b0f09 fb_set_var -EXPORT_SYMBOL vmlinux 0x868acba5 get_options -EXPORT_SYMBOL vmlinux 0x86ab80b0 phy_device_remove -EXPORT_SYMBOL vmlinux 0x86bf0537 ip_generic_getfrag -EXPORT_SYMBOL vmlinux 0x86d52ba5 lookup_constant -EXPORT_SYMBOL vmlinux 0x86d743bc generic_file_mmap -EXPORT_SYMBOL vmlinux 0x86eb8072 of_get_i2c_adapter_by_node -EXPORT_SYMBOL vmlinux 0x86ecbd46 input_get_timestamp -EXPORT_SYMBOL vmlinux 0x86fa01b4 vfs_dedupe_file_range -EXPORT_SYMBOL vmlinux 0x86fb9b05 bitmap_parse_user -EXPORT_SYMBOL vmlinux 0x87032dc5 mii_check_gmii_support -EXPORT_SYMBOL vmlinux 0x87078488 skb_tx_error -EXPORT_SYMBOL vmlinux 0x870d0218 __module_put_and_exit -EXPORT_SYMBOL vmlinux 0x8758293f __sync_dirty_buffer -EXPORT_SYMBOL vmlinux 0x875b2225 crypto_sha512_finup -EXPORT_SYMBOL vmlinux 0x875c7d4e clear_bdi_congested -EXPORT_SYMBOL vmlinux 0x8761c87b rps_needed -EXPORT_SYMBOL vmlinux 0x87761528 __traceiter_kmem_cache_alloc -EXPORT_SYMBOL vmlinux 0x877bb13c inet_unregister_protosw -EXPORT_SYMBOL vmlinux 0x878469bd ZSTD_decompressStream -EXPORT_SYMBOL vmlinux 0x879e03cf blk_rq_append_bio -EXPORT_SYMBOL vmlinux 0x87a06f58 pci_bus_assign_resources -EXPORT_SYMBOL vmlinux 0x87b8798d sg_next -EXPORT_SYMBOL vmlinux 0x87d8a52a ipv6_dev_find -EXPORT_SYMBOL vmlinux 0x87ef27eb jbd2_journal_set_triggers -EXPORT_SYMBOL vmlinux 0x87ef3019 imx_scu_enable_general_irq_channel -EXPORT_SYMBOL vmlinux 0x87f40c5a inet_sk_set_state -EXPORT_SYMBOL vmlinux 0x87fb85c7 rc5t583_ext_power_req_config -EXPORT_SYMBOL vmlinux 0x8810754a _find_first_bit -EXPORT_SYMBOL vmlinux 0x8815e168 gnet_stats_start_copy_compat -EXPORT_SYMBOL vmlinux 0x881bad5e phy_mipi_dphy_config_validate -EXPORT_SYMBOL vmlinux 0x881bc6db rproc_coredump_set_elf_info -EXPORT_SYMBOL vmlinux 0x881c4413 gen_pool_first_fit -EXPORT_SYMBOL vmlinux 0x8840d6cb i2c_smbus_read_block_data -EXPORT_SYMBOL vmlinux 0x88415409 netdev_crit -EXPORT_SYMBOL vmlinux 0x8843aa7b pci_scan_root_bus -EXPORT_SYMBOL vmlinux 0x88484e91 devm_iounmap -EXPORT_SYMBOL vmlinux 0x88498109 mmc_run_bkops -EXPORT_SYMBOL vmlinux 0x8850b2d2 genphy_setup_forced -EXPORT_SYMBOL vmlinux 0x885a2431 pcim_iomap_table -EXPORT_SYMBOL vmlinux 0x88603ad1 config_item_set_name -EXPORT_SYMBOL vmlinux 0x8861cabd pcie_print_link_status -EXPORT_SYMBOL vmlinux 0x8870c669 skb_put -EXPORT_SYMBOL vmlinux 0x887371ea xfrm_policy_destroy -EXPORT_SYMBOL vmlinux 0x88822d38 unregister_blocking_lsm_notifier -EXPORT_SYMBOL vmlinux 0x8888f1fe xxh32 -EXPORT_SYMBOL vmlinux 0x88948d32 mipi_dsi_generic_read -EXPORT_SYMBOL vmlinux 0x889b1370 _raw_read_trylock -EXPORT_SYMBOL vmlinux 0x88a7b66f truncate_inode_pages_range -EXPORT_SYMBOL vmlinux 0x88abb78b ZSTD_insertBlock -EXPORT_SYMBOL vmlinux 0x88db9f48 __check_object_size -EXPORT_SYMBOL vmlinux 0x88e1d0f0 page_frag_free -EXPORT_SYMBOL vmlinux 0x88ec2764 jbd2_journal_check_used_features -EXPORT_SYMBOL vmlinux 0x8902a859 dst_alloc -EXPORT_SYMBOL vmlinux 0x890a3fad mptcp_subflow_reqsk_alloc -EXPORT_SYMBOL vmlinux 0x8916a34d md_bitmap_unplug -EXPORT_SYMBOL vmlinux 0x89215d84 fscrypt_decrypt_block_inplace -EXPORT_SYMBOL vmlinux 0x8923f95b netdev_emerg -EXPORT_SYMBOL vmlinux 0x89434b4b radix_tree_tag_clear -EXPORT_SYMBOL vmlinux 0x89466c80 serial8250_do_pm -EXPORT_SYMBOL vmlinux 0x8946ea72 fpsimd_context_busy -EXPORT_SYMBOL vmlinux 0x896dd948 deactivate_super -EXPORT_SYMBOL vmlinux 0x897a790f serial8250_do_set_termios -EXPORT_SYMBOL vmlinux 0x89821560 devfreq_monitor_start -EXPORT_SYMBOL vmlinux 0x8989c127 secpath_set -EXPORT_SYMBOL vmlinux 0x89940875 mutex_lock_interruptible -EXPORT_SYMBOL vmlinux 0x89ac644a pnp_get_resource -EXPORT_SYMBOL vmlinux 0x89b87c95 pagecache_write_begin -EXPORT_SYMBOL vmlinux 0x89c90f51 __skb_flow_dissect -EXPORT_SYMBOL vmlinux 0x89ca4eeb clk_hw_get_clk -EXPORT_SYMBOL vmlinux 0x89e59cf4 skb_checksum_setup -EXPORT_SYMBOL vmlinux 0x8a029e68 register_console -EXPORT_SYMBOL vmlinux 0x8a041b64 inet_del_offload -EXPORT_SYMBOL vmlinux 0x8a1db468 devm_memunmap -EXPORT_SYMBOL vmlinux 0x8a267b2b fifo_create_dflt -EXPORT_SYMBOL vmlinux 0x8a272961 __ip_mc_inc_group -EXPORT_SYMBOL vmlinux 0x8a294c7a udp_pre_connect -EXPORT_SYMBOL vmlinux 0x8a3897db clk_get -EXPORT_SYMBOL vmlinux 0x8a47043d LZ4_decompress_safe_continue -EXPORT_SYMBOL vmlinux 0x8a490c90 rfkill_set_sw_state -EXPORT_SYMBOL vmlinux 0x8a4e7555 param_get_uint -EXPORT_SYMBOL vmlinux 0x8a6a6625 ps2_sliced_command -EXPORT_SYMBOL vmlinux 0x8a7094ba vm_brk_flags -EXPORT_SYMBOL vmlinux 0x8a71d391 skb_ext_add -EXPORT_SYMBOL vmlinux 0x8a7d1c31 high_memory -EXPORT_SYMBOL vmlinux 0x8a93a983 inode_io_list_del -EXPORT_SYMBOL vmlinux 0x8a956590 sunxi_sram_release -EXPORT_SYMBOL vmlinux 0x8a99a016 mempool_free_slab -EXPORT_SYMBOL vmlinux 0x8a9a909b vmf_insert_pfn -EXPORT_SYMBOL vmlinux 0x8a9f0cd6 nf_log_unset -EXPORT_SYMBOL vmlinux 0x8ab46ef6 xfrm_state_lookup_byspi -EXPORT_SYMBOL vmlinux 0x8abd923b __neigh_set_probe_once -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 0x8ac84949 sk_error_report -EXPORT_SYMBOL vmlinux 0x8af941ad poll_freewait -EXPORT_SYMBOL vmlinux 0x8b0088d1 LZ4_decompress_safe_usingDict -EXPORT_SYMBOL vmlinux 0x8b07b51d flow_block_cb_is_busy -EXPORT_SYMBOL vmlinux 0x8b09be28 of_get_next_child -EXPORT_SYMBOL vmlinux 0x8b2a24ea param_ops_ulong -EXPORT_SYMBOL vmlinux 0x8b2ffd83 __cpu_present_mask -EXPORT_SYMBOL vmlinux 0x8b35d664 thread_group_exited -EXPORT_SYMBOL vmlinux 0x8b39ac1f netif_rx -EXPORT_SYMBOL vmlinux 0x8b44ef34 free_xenballooned_pages -EXPORT_SYMBOL vmlinux 0x8b482344 skb_split -EXPORT_SYMBOL vmlinux 0x8b618d08 overflowuid -EXPORT_SYMBOL vmlinux 0x8b6b544e of_device_unregister -EXPORT_SYMBOL vmlinux 0x8b780936 genphy_suspend -EXPORT_SYMBOL vmlinux 0x8b8059bd in_group_p -EXPORT_SYMBOL vmlinux 0x8b8bb01f netdev_master_upper_dev_get_rcu -EXPORT_SYMBOL vmlinux 0x8b910be2 errseq_sample -EXPORT_SYMBOL vmlinux 0x8b989cf9 acpi_bus_can_wakeup -EXPORT_SYMBOL vmlinux 0x8b9ea582 ZSTD_copyDCtx -EXPORT_SYMBOL vmlinux 0x8b9fa711 _dev_emerg -EXPORT_SYMBOL vmlinux 0x8ba6f65e generic_iommu_put_resv_regions -EXPORT_SYMBOL vmlinux 0x8bb946df __serio_register_port -EXPORT_SYMBOL vmlinux 0x8bdfc47c __mb_cache_entry_free -EXPORT_SYMBOL vmlinux 0x8be189ab ucc_slow_disable -EXPORT_SYMBOL vmlinux 0x8bf2d837 _dev_err -EXPORT_SYMBOL vmlinux 0x8bfec7ce init_pseudo -EXPORT_SYMBOL vmlinux 0x8c091b0c make_kprojid -EXPORT_SYMBOL vmlinux 0x8c0eb33a end_buffer_read_sync -EXPORT_SYMBOL vmlinux 0x8c1f96d7 inet_frags_fini -EXPORT_SYMBOL vmlinux 0x8c26d495 prepare_to_wait_event -EXPORT_SYMBOL vmlinux 0x8c3c484d tty_kref_put -EXPORT_SYMBOL vmlinux 0x8c4b7cf4 pcim_enable_device -EXPORT_SYMBOL vmlinux 0x8c522b8f module_put -EXPORT_SYMBOL vmlinux 0x8c683fcd posix_acl_to_xattr -EXPORT_SYMBOL vmlinux 0x8c8569cb kstrtoint -EXPORT_SYMBOL vmlinux 0x8c97ff7a __xfrm_state_destroy -EXPORT_SYMBOL vmlinux 0x8c9d274f dev_mc_add -EXPORT_SYMBOL vmlinux 0x8c9e338f acpi_bios_error -EXPORT_SYMBOL vmlinux 0x8ca5d939 __skb_checksum_complete -EXPORT_SYMBOL vmlinux 0x8caf9305 uuid_is_valid -EXPORT_SYMBOL vmlinux 0x8cb42ec9 mdiobus_scan -EXPORT_SYMBOL vmlinux 0x8cc53d20 __par_io_config_pin -EXPORT_SYMBOL vmlinux 0x8cda3644 scsi_vpd_lun_id -EXPORT_SYMBOL vmlinux 0x8cda8029 xen_clear_irq_pending -EXPORT_SYMBOL vmlinux 0x8ce18a6e ata_scsi_cmd_error_handler -EXPORT_SYMBOL vmlinux 0x8ce70e24 may_umount -EXPORT_SYMBOL vmlinux 0x8cea337c xfrm4_protocol_deregister -EXPORT_SYMBOL vmlinux 0x8d02b217 mod_zone_page_state -EXPORT_SYMBOL vmlinux 0x8d035033 serio_rescan -EXPORT_SYMBOL vmlinux 0x8d13616d tcp_mmap -EXPORT_SYMBOL vmlinux 0x8d138590 ip_route_me_harder -EXPORT_SYMBOL vmlinux 0x8d1f64ef vme_master_request -EXPORT_SYMBOL vmlinux 0x8d32de06 page_pool_alloc_pages -EXPORT_SYMBOL vmlinux 0x8d3d7732 xfrm_policy_register_afinfo -EXPORT_SYMBOL vmlinux 0x8d4112df qcom_scm_mem_protect_video_var -EXPORT_SYMBOL vmlinux 0x8d55bb8a qid_eq -EXPORT_SYMBOL vmlinux 0x8d6a8839 vfs_parse_fs_param -EXPORT_SYMBOL vmlinux 0x8d6b93cb vga_get -EXPORT_SYMBOL vmlinux 0x8d6fcb1a of_node_put -EXPORT_SYMBOL vmlinux 0x8d722d8f scsi_test_unit_ready -EXPORT_SYMBOL vmlinux 0x8d73278e hex_asc_upper -EXPORT_SYMBOL vmlinux 0x8d85892a kernel_sock_shutdown -EXPORT_SYMBOL vmlinux 0x8d921d53 inet6_bind -EXPORT_SYMBOL vmlinux 0x8d95d302 skb_flow_dissect_tunnel_info -EXPORT_SYMBOL vmlinux 0x8d9ca0e6 dma_fence_enable_sw_signaling -EXPORT_SYMBOL vmlinux 0x8d9eb33b of_phy_connect -EXPORT_SYMBOL vmlinux 0x8d9ffd89 no_llseek -EXPORT_SYMBOL vmlinux 0x8da6585d __stack_chk_fail -EXPORT_SYMBOL vmlinux 0x8daedb79 cpumask_any_but -EXPORT_SYMBOL vmlinux 0x8dc68a62 rproc_boot -EXPORT_SYMBOL vmlinux 0x8dd4eaae rproc_coredump_add_custom_segment -EXPORT_SYMBOL vmlinux 0x8ddd8aad schedule_timeout -EXPORT_SYMBOL vmlinux 0x8de0d7b3 rproc_of_resm_mem_entry_init -EXPORT_SYMBOL vmlinux 0x8defa399 kmem_cache_alloc -EXPORT_SYMBOL vmlinux 0x8df4afd9 qe_put_snum -EXPORT_SYMBOL vmlinux 0x8df92f66 memchr_inv -EXPORT_SYMBOL vmlinux 0x8df9dd10 guid_null -EXPORT_SYMBOL vmlinux 0x8e10966a iget5_locked -EXPORT_SYMBOL vmlinux 0x8e17b3ae idr_destroy -EXPORT_SYMBOL vmlinux 0x8e18cc38 skb_copy_bits -EXPORT_SYMBOL vmlinux 0x8e21c9a1 dma_fence_add_callback -EXPORT_SYMBOL vmlinux 0x8e2b152e wait_on_page_private_2 -EXPORT_SYMBOL vmlinux 0x8e35d54a sync_mapping_buffers -EXPORT_SYMBOL vmlinux 0x8e3e0f7d fault_in_readable -EXPORT_SYMBOL vmlinux 0x8e4c60a3 cpm_muram_dma -EXPORT_SYMBOL vmlinux 0x8e4dc06a rproc_resource_cleanup -EXPORT_SYMBOL vmlinux 0x8e697580 tty_unregister_ldisc -EXPORT_SYMBOL vmlinux 0x8e70b133 dquot_acquire -EXPORT_SYMBOL vmlinux 0x8e80746e __ip_options_compile -EXPORT_SYMBOL vmlinux 0x8e81068d sock_queue_rcv_skb -EXPORT_SYMBOL vmlinux 0x8e8b788d mmc_set_data_timeout -EXPORT_SYMBOL vmlinux 0x8e93bd24 security_secctx_to_secid -EXPORT_SYMBOL vmlinux 0x8e98484c xsk_set_rx_need_wakeup -EXPORT_SYMBOL vmlinux 0x8e9bd61f dev_remove_offload -EXPORT_SYMBOL vmlinux 0x8eb272a1 splice_direct_to_actor -EXPORT_SYMBOL vmlinux 0x8ebd462a pnp_stop_dev -EXPORT_SYMBOL vmlinux 0x8ed8ca36 input_setup_polling -EXPORT_SYMBOL vmlinux 0x8ed9d0c4 vmalloc_to_page -EXPORT_SYMBOL vmlinux 0x8edc2e99 input_register_handle -EXPORT_SYMBOL vmlinux 0x8f01afd6 twl6030_interrupt_mask -EXPORT_SYMBOL vmlinux 0x8f19b5cc skb_checksum_trimmed -EXPORT_SYMBOL vmlinux 0x8f272df5 cookie_ecn_ok -EXPORT_SYMBOL vmlinux 0x8f3a4cae twl6040_get_sysclk -EXPORT_SYMBOL vmlinux 0x8f3aed29 pci_try_set_mwi -EXPORT_SYMBOL vmlinux 0x8f500254 page_symlink -EXPORT_SYMBOL vmlinux 0x8f5f7b53 sg_miter_next -EXPORT_SYMBOL vmlinux 0x8f67fe94 jbd2_submit_inode_data -EXPORT_SYMBOL vmlinux 0x8f6931a1 readahead_expand -EXPORT_SYMBOL vmlinux 0x8f6a6059 param_get_invbool -EXPORT_SYMBOL vmlinux 0x8f8bc6d0 i2c_smbus_xfer -EXPORT_SYMBOL vmlinux 0x8f996a30 ethtool_convert_legacy_u32_to_link_mode -EXPORT_SYMBOL vmlinux 0x8fa25c24 xa_find -EXPORT_SYMBOL vmlinux 0x8fb0ce81 mini_qdisc_pair_init -EXPORT_SYMBOL vmlinux 0x8fb6d8fa acpi_bus_unregister_driver -EXPORT_SYMBOL vmlinux 0x8fbd17d5 security_old_inode_init_security -EXPORT_SYMBOL vmlinux 0x8fc9ea11 fman_port_cfg_buf_prefix_content -EXPORT_SYMBOL vmlinux 0x8fd180e7 kernel_neon_begin -EXPORT_SYMBOL vmlinux 0x8fd430f1 tcp_getsockopt -EXPORT_SYMBOL vmlinux 0x8fd4533b tcp_mtup_init -EXPORT_SYMBOL vmlinux 0x8fdb0752 abort_creds -EXPORT_SYMBOL vmlinux 0x8fdf4267 freeze_bdev -EXPORT_SYMBOL vmlinux 0x8fdfffa0 __xfrm_route_forward -EXPORT_SYMBOL vmlinux 0x8fe86c65 clear_inode -EXPORT_SYMBOL vmlinux 0x8ff89ed0 seg6_hmac_exit -EXPORT_SYMBOL vmlinux 0x8ffe68e7 xfrm_spd_getinfo -EXPORT_SYMBOL vmlinux 0x90006be6 dm_kcopyd_client_flush -EXPORT_SYMBOL vmlinux 0x900c4659 generic_pipe_buf_release -EXPORT_SYMBOL vmlinux 0x9023d20c param_ops_string -EXPORT_SYMBOL vmlinux 0x902bbb76 genphy_read_status_fixed -EXPORT_SYMBOL vmlinux 0x902d8722 vme_slave_get -EXPORT_SYMBOL vmlinux 0x902f5199 cpumask_next_wrap -EXPORT_SYMBOL vmlinux 0x9034a696 mempool_destroy -EXPORT_SYMBOL vmlinux 0x90519c6c vfs_copy_file_range -EXPORT_SYMBOL vmlinux 0x905695ab sg_copy_from_buffer -EXPORT_SYMBOL vmlinux 0x90576ec4 vmemdup_user -EXPORT_SYMBOL vmlinux 0x90602344 netdev_printk -EXPORT_SYMBOL vmlinux 0x90706bd4 netdev_set_sb_channel -EXPORT_SYMBOL vmlinux 0x907c3b79 napi_complete_done -EXPORT_SYMBOL vmlinux 0x907ea00e set_security_override -EXPORT_SYMBOL vmlinux 0x9087f297 scsi_device_get -EXPORT_SYMBOL vmlinux 0x908c627a ethtool_get_phc_vclocks -EXPORT_SYMBOL vmlinux 0x908e5601 cpu_hwcaps -EXPORT_SYMBOL vmlinux 0x9093c2cf devm_devfreq_unregister_opp_notifier -EXPORT_SYMBOL vmlinux 0x90b3bf71 vme_register_driver -EXPORT_SYMBOL vmlinux 0x90b630c0 __cpuhp_remove_state -EXPORT_SYMBOL vmlinux 0x90c277a6 skb_flow_dissect_ct -EXPORT_SYMBOL vmlinux 0x90e273e2 cred_fscmp -EXPORT_SYMBOL vmlinux 0x90ede275 sock_kzfree_s -EXPORT_SYMBOL vmlinux 0x90f685ab tcp_timewait_state_process -EXPORT_SYMBOL vmlinux 0x9106529d xsk_tx_release -EXPORT_SYMBOL vmlinux 0x910761da pci_bus_type -EXPORT_SYMBOL vmlinux 0x910f4508 i2c_smbus_read_word_data -EXPORT_SYMBOL vmlinux 0x9114b616 __xa_alloc -EXPORT_SYMBOL vmlinux 0x9128d216 __cgroup_bpf_run_filter_skb -EXPORT_SYMBOL vmlinux 0x91304038 scm_fp_dup -EXPORT_SYMBOL vmlinux 0x9151aad6 udp_skb_destructor -EXPORT_SYMBOL vmlinux 0x9166fada strncpy -EXPORT_SYMBOL vmlinux 0x916ea280 dev_mc_sync -EXPORT_SYMBOL vmlinux 0x9171eb6c sync_dirty_buffer -EXPORT_SYMBOL vmlinux 0x91772ac5 pnp_unregister_card_driver -EXPORT_SYMBOL vmlinux 0x917f7a58 tegra_dfll_resume -EXPORT_SYMBOL vmlinux 0x91839be6 tcp_peek_len -EXPORT_SYMBOL vmlinux 0x9188070d give_up_console -EXPORT_SYMBOL vmlinux 0x918975bb __sock_cmsg_send -EXPORT_SYMBOL vmlinux 0x918b1c5a of_get_next_parent -EXPORT_SYMBOL vmlinux 0x919c58f3 __clzsi2 -EXPORT_SYMBOL vmlinux 0x919f41ac __scsi_execute -EXPORT_SYMBOL vmlinux 0x91a488ac __netdev_alloc_frag_align -EXPORT_SYMBOL vmlinux 0x91a7b1da qdisc_class_hash_remove -EXPORT_SYMBOL vmlinux 0x91a92ee7 mdiobus_write_nested -EXPORT_SYMBOL vmlinux 0x91b877ad of_device_is_compatible -EXPORT_SYMBOL vmlinux 0x91baafb8 of_get_child_by_name -EXPORT_SYMBOL vmlinux 0x91c0980e icst_hz -EXPORT_SYMBOL vmlinux 0x91cf21b6 phy_write_mmd -EXPORT_SYMBOL vmlinux 0x91e646c8 tcp_v4_conn_request -EXPORT_SYMBOL vmlinux 0x91ea6f0a kill_anon_super -EXPORT_SYMBOL vmlinux 0x91f44510 idr_alloc_cyclic -EXPORT_SYMBOL vmlinux 0x91f68ea1 __hw_addr_sync -EXPORT_SYMBOL vmlinux 0x9212b4c9 pci_wait_for_pending_transaction -EXPORT_SYMBOL vmlinux 0x922f45a6 __bitmap_clear -EXPORT_SYMBOL vmlinux 0x923b1276 dmaengine_get -EXPORT_SYMBOL vmlinux 0x9248f78f vmap -EXPORT_SYMBOL vmlinux 0x92540fbf finish_wait -EXPORT_SYMBOL vmlinux 0x92563558 generic_error_remove_page -EXPORT_SYMBOL vmlinux 0x9258c776 hdmi_vendor_infoframe_pack_only -EXPORT_SYMBOL vmlinux 0x92592d84 dma_async_device_register -EXPORT_SYMBOL vmlinux 0x926360c6 pci_fixup_device -EXPORT_SYMBOL vmlinux 0x92774cf8 __kfence_pool -EXPORT_SYMBOL vmlinux 0x9291cd3b memdup_user -EXPORT_SYMBOL vmlinux 0x929693ec set_page_dirty -EXPORT_SYMBOL vmlinux 0x92997ed8 _printk -EXPORT_SYMBOL vmlinux 0x92b4fa36 netdev_has_any_upper_dev -EXPORT_SYMBOL vmlinux 0x92b5a9bf __mmap_lock_do_trace_acquire_returned -EXPORT_SYMBOL vmlinux 0x92b99a33 acpi_put_table -EXPORT_SYMBOL vmlinux 0x92b9b180 slash_name -EXPORT_SYMBOL vmlinux 0x92bb5d8a blk_mq_stop_hw_queues -EXPORT_SYMBOL vmlinux 0x92c013f4 tcp_poll -EXPORT_SYMBOL vmlinux 0x92d5838e request_threaded_irq -EXPORT_SYMBOL vmlinux 0x92e208c1 param_get_short -EXPORT_SYMBOL vmlinux 0x92e683f5 down_timeout -EXPORT_SYMBOL vmlinux 0x92ec510d jiffies64_to_msecs -EXPORT_SYMBOL vmlinux 0x92f5c7d6 genl_unregister_family -EXPORT_SYMBOL vmlinux 0x92fa5abb vme_lm_detach -EXPORT_SYMBOL vmlinux 0x93022ba6 __scsi_format_command -EXPORT_SYMBOL vmlinux 0x9305f8e6 cpufreq_get -EXPORT_SYMBOL vmlinux 0x93136326 vfs_create -EXPORT_SYMBOL vmlinux 0x932d15ae dev_open -EXPORT_SYMBOL vmlinux 0x933a2a51 pci_add_new_bus -EXPORT_SYMBOL vmlinux 0x933bfe2f tty_check_change -EXPORT_SYMBOL vmlinux 0x9349aeb4 xfrm_find_acq -EXPORT_SYMBOL vmlinux 0x936b5d79 security_path_unlink -EXPORT_SYMBOL vmlinux 0x936d9ffe iommu_dma_get_resv_regions -EXPORT_SYMBOL vmlinux 0x937733e3 qid_valid -EXPORT_SYMBOL vmlinux 0x938c974c phy_device_register -EXPORT_SYMBOL vmlinux 0x938e8887 fscrypt_has_permitted_context -EXPORT_SYMBOL vmlinux 0x9390f5c2 bdi_put -EXPORT_SYMBOL vmlinux 0x93a6e0b2 io_schedule -EXPORT_SYMBOL vmlinux 0x93b3fc74 register_dcbevent_notifier -EXPORT_SYMBOL vmlinux 0x93bb3e57 submit_bio -EXPORT_SYMBOL vmlinux 0x93c7a482 fman_get_qman_channel_id -EXPORT_SYMBOL vmlinux 0x93d6dd8c complete_all -EXPORT_SYMBOL vmlinux 0x93fd9ead vlan_vids_add_by_dev -EXPORT_SYMBOL vmlinux 0x9417f576 mdiobus_unregister_device -EXPORT_SYMBOL vmlinux 0x94210067 xfrm_lookup_with_ifid -EXPORT_SYMBOL vmlinux 0x9428f816 dim_turn -EXPORT_SYMBOL vmlinux 0x942f0984 __vfs_removexattr -EXPORT_SYMBOL vmlinux 0x943c4850 nf_unregister_net_hook -EXPORT_SYMBOL vmlinux 0x943d306b register_filesystem -EXPORT_SYMBOL vmlinux 0x943e62ad blk_mq_init_allocated_queue -EXPORT_SYMBOL vmlinux 0x944375db _totalram_pages -EXPORT_SYMBOL vmlinux 0x944a564d is_console_locked -EXPORT_SYMBOL vmlinux 0x944d4222 dev_addr_init -EXPORT_SYMBOL vmlinux 0x945c5596 rproc_put -EXPORT_SYMBOL vmlinux 0x947b4190 nf_hook_slow -EXPORT_SYMBOL vmlinux 0x9487d3e1 ns_capable -EXPORT_SYMBOL vmlinux 0x948dec62 kobject_put -EXPORT_SYMBOL vmlinux 0x94961283 vunmap -EXPORT_SYMBOL vmlinux 0x94ae6e70 tty_register_ldisc -EXPORT_SYMBOL vmlinux 0x94ae9336 md_cluster_ops -EXPORT_SYMBOL vmlinux 0x94bb7ec3 gen_pool_dma_zalloc_algo -EXPORT_SYMBOL vmlinux 0x94bf03ca utf8_to_utf32 -EXPORT_SYMBOL vmlinux 0x94d72032 build_skb_around -EXPORT_SYMBOL vmlinux 0x94dc27a4 remove_proc_subtree -EXPORT_SYMBOL vmlinux 0x94e50ad4 call_fib_notifier -EXPORT_SYMBOL vmlinux 0x94ef78ea uart_write_wakeup -EXPORT_SYMBOL vmlinux 0x94f20638 xfrm_unregister_type -EXPORT_SYMBOL vmlinux 0x94fc8d93 smp_call_function_many -EXPORT_SYMBOL vmlinux 0x9507c90f copy_fsxattr_to_user -EXPORT_SYMBOL vmlinux 0x951e1cf7 param_ops_ushort -EXPORT_SYMBOL vmlinux 0x9520950b ihold -EXPORT_SYMBOL vmlinux 0x95430fab tcp_sendpage -EXPORT_SYMBOL vmlinux 0x9543d350 redraw_screen -EXPORT_SYMBOL vmlinux 0x954cef6f init_on_alloc -EXPORT_SYMBOL vmlinux 0x954f099c idr_preload -EXPORT_SYMBOL vmlinux 0x955b8319 flow_block_cb_setup_simple -EXPORT_SYMBOL vmlinux 0x957a4b41 generic_file_llseek_size -EXPORT_SYMBOL vmlinux 0x957cd51f sget -EXPORT_SYMBOL vmlinux 0x958fc3a9 security_path_mknod -EXPORT_SYMBOL vmlinux 0x9593fc17 would_dump -EXPORT_SYMBOL vmlinux 0x95a67b07 udp_table -EXPORT_SYMBOL vmlinux 0x95c4511b migrate_page_copy -EXPORT_SYMBOL vmlinux 0x95e7f365 mmc_alloc_host -EXPORT_SYMBOL vmlinux 0x95ef37c3 jbd2_journal_errno -EXPORT_SYMBOL vmlinux 0x95f73d3c tcp_sock_set_keepintvl -EXPORT_SYMBOL vmlinux 0x960721c0 kgdb_roundup_delay -EXPORT_SYMBOL vmlinux 0x960d3ed8 skb_append -EXPORT_SYMBOL vmlinux 0x961b236e cad_pid -EXPORT_SYMBOL vmlinux 0x9623906a init_net -EXPORT_SYMBOL vmlinux 0x96467aa9 vfs_iter_write -EXPORT_SYMBOL vmlinux 0x9656527f udp_lib_rehash -EXPORT_SYMBOL vmlinux 0x9656ca51 generic_update_time -EXPORT_SYMBOL vmlinux 0x965e8dad unregister_netdevice_notifier_dev_net -EXPORT_SYMBOL vmlinux 0x96683b50 rtnl_nla_parse_ifinfomsg -EXPORT_SYMBOL vmlinux 0x9671fc86 tcp_init_sock -EXPORT_SYMBOL vmlinux 0x96848186 scnprintf -EXPORT_SYMBOL vmlinux 0x9684c134 pcim_iounmap -EXPORT_SYMBOL vmlinux 0x9688de8b memstart_addr -EXPORT_SYMBOL vmlinux 0x96b29254 strncasecmp -EXPORT_SYMBOL vmlinux 0x96bad912 xsk_tx_peek_release_desc_batch -EXPORT_SYMBOL vmlinux 0x96bead29 pci_rebar_get_possible_sizes -EXPORT_SYMBOL vmlinux 0x96c17136 fb_var_to_videomode -EXPORT_SYMBOL vmlinux 0x96c7d6f3 security_skb_classify_flow -EXPORT_SYMBOL vmlinux 0x96cd2b04 scsi_sense_key_string -EXPORT_SYMBOL vmlinux 0x96d3ef07 udp_lib_unhash -EXPORT_SYMBOL vmlinux 0x96dea550 param_get_hexint -EXPORT_SYMBOL vmlinux 0x96e5d30f gen_pool_set_algo -EXPORT_SYMBOL vmlinux 0x96ea63f2 tty_port_close_end -EXPORT_SYMBOL vmlinux 0x96fab350 dim_park_on_top -EXPORT_SYMBOL vmlinux 0x96fc4b36 generic_file_direct_write -EXPORT_SYMBOL vmlinux 0x9724ce11 __acpi_mdiobus_register -EXPORT_SYMBOL vmlinux 0x9729d8c3 try_lookup_one_len -EXPORT_SYMBOL vmlinux 0x9739c1f8 __set_page_dirty_no_writeback -EXPORT_SYMBOL vmlinux 0x973efe47 dma_sync_wait -EXPORT_SYMBOL vmlinux 0x973f6b37 xp_set_rxq_info -EXPORT_SYMBOL vmlinux 0x973fa82e register_acpi_notifier -EXPORT_SYMBOL vmlinux 0x9746eb89 ZSTD_decompressBegin_usingDict -EXPORT_SYMBOL vmlinux 0x975980f6 __neigh_for_each_release -EXPORT_SYMBOL vmlinux 0x97603ee8 tcp_v4_send_check -EXPORT_SYMBOL vmlinux 0x976c3531 i2c_smbus_read_i2c_block_data_or_emulated -EXPORT_SYMBOL vmlinux 0x9772acd4 fwnode_get_mac_address -EXPORT_SYMBOL vmlinux 0x9776df71 km_policy_expired -EXPORT_SYMBOL vmlinux 0x977c290d jbd2_journal_abort -EXPORT_SYMBOL vmlinux 0x97934ecf del_timer_sync -EXPORT_SYMBOL vmlinux 0x979fe8a6 lookup_one_len_unlocked -EXPORT_SYMBOL vmlinux 0x97a57333 crc_t10dif_update -EXPORT_SYMBOL vmlinux 0x97adb487 utf8s_to_utf16s -EXPORT_SYMBOL vmlinux 0x97bdfa60 scsi_dev_info_remove_list -EXPORT_SYMBOL vmlinux 0x97c28ea1 kfree_skb_partial -EXPORT_SYMBOL vmlinux 0x97c4d18e pci_enable_atomic_ops_to_root -EXPORT_SYMBOL vmlinux 0x97c536c0 devfreq_resume_device -EXPORT_SYMBOL vmlinux 0x97e2789a commit_creds -EXPORT_SYMBOL vmlinux 0x97ed2212 __tracepoint_spi_transfer_start -EXPORT_SYMBOL vmlinux 0x97f01681 __sock_create -EXPORT_SYMBOL vmlinux 0x97f90c80 jbd2_journal_clear_err -EXPORT_SYMBOL vmlinux 0x982661c0 tag_pages_for_writeback -EXPORT_SYMBOL vmlinux 0x9829fc11 __kfifo_out_peek_r -EXPORT_SYMBOL vmlinux 0x982bcde4 __cpu_dying_mask -EXPORT_SYMBOL vmlinux 0x9860ecff handle_edge_irq -EXPORT_SYMBOL vmlinux 0x98639e98 vfs_fsync -EXPORT_SYMBOL vmlinux 0x98685120 phy_do_ioctl -EXPORT_SYMBOL vmlinux 0x986f8f95 bio_endio -EXPORT_SYMBOL vmlinux 0x98baae4a page_pool_destroy -EXPORT_SYMBOL vmlinux 0x98c039dc dma_fence_wait_timeout -EXPORT_SYMBOL vmlinux 0x98c89ade security_xfrm_state_alloc -EXPORT_SYMBOL vmlinux 0x98ca84e4 get_tree_bdev -EXPORT_SYMBOL vmlinux 0x98cf60b3 strlen -EXPORT_SYMBOL vmlinux 0x98d28f96 nd_region_acquire_lane -EXPORT_SYMBOL vmlinux 0x98d792d2 of_match_node -EXPORT_SYMBOL vmlinux 0x98d973fc pmem_sector_size -EXPORT_SYMBOL vmlinux 0x98e508ef ignore_console_lock_warning -EXPORT_SYMBOL vmlinux 0x98e89943 of_get_ethdev_address -EXPORT_SYMBOL vmlinux 0x98e9f6d1 arp_xmit -EXPORT_SYMBOL vmlinux 0x99078b39 trace_print_flags_seq -EXPORT_SYMBOL vmlinux 0x99094fb2 qcom_scm_is_available -EXPORT_SYMBOL vmlinux 0x992038ed from_kprojid -EXPORT_SYMBOL vmlinux 0x9931f8c9 qcom_scm_lmh_dcvsh_available -EXPORT_SYMBOL vmlinux 0x9939eba0 backlight_unregister_notifier -EXPORT_SYMBOL vmlinux 0x994bacdc filemap_invalidate_unlock_two -EXPORT_SYMBOL vmlinux 0x994bdb33 jbd2__journal_start -EXPORT_SYMBOL vmlinux 0x99517682 udp_encap_enable -EXPORT_SYMBOL vmlinux 0x9975dc22 acpi_get_handle -EXPORT_SYMBOL vmlinux 0x99854cf6 vfs_rename -EXPORT_SYMBOL vmlinux 0x9990dd80 __xfrm_init_state -EXPORT_SYMBOL vmlinux 0x999e8297 vfree -EXPORT_SYMBOL vmlinux 0x99b6540f tegra_prod_set_by_name_partially -EXPORT_SYMBOL vmlinux 0x99bb19bf make_kgid -EXPORT_SYMBOL vmlinux 0x99d472b1 net_dim_get_rx_moderation -EXPORT_SYMBOL vmlinux 0x99daa9bf try_offline_node -EXPORT_SYMBOL vmlinux 0x99f0f090 proc_set_size -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 0x9a12ba2b stop_tty -EXPORT_SYMBOL vmlinux 0x9a1dc891 mfd_add_devices -EXPORT_SYMBOL vmlinux 0x9a1dfd65 strpbrk -EXPORT_SYMBOL vmlinux 0x9a1e3031 ppp_register_compressor -EXPORT_SYMBOL vmlinux 0x9a22391e radix_tree_gang_lookup_tag_slot -EXPORT_SYMBOL vmlinux 0x9a2d76c0 netlink_ns_capable -EXPORT_SYMBOL vmlinux 0x9a352add neigh_seq_start -EXPORT_SYMBOL vmlinux 0x9a353ec7 __cleancache_init_shared_fs -EXPORT_SYMBOL vmlinux 0x9a497128 security_task_getsecid_subj -EXPORT_SYMBOL vmlinux 0x9a4e6fd4 inode_get_bytes -EXPORT_SYMBOL vmlinux 0x9a583306 netlbl_bitmap_walk -EXPORT_SYMBOL vmlinux 0x9a60d7bd xfrm6_protocol_register -EXPORT_SYMBOL vmlinux 0x9a6e3380 tegra_io_pad_power_enable -EXPORT_SYMBOL vmlinux 0x9a73b032 ZSTD_initDStream_usingDDict -EXPORT_SYMBOL vmlinux 0x9a799ec5 __module_get -EXPORT_SYMBOL vmlinux 0x9a929cc8 vme_irq_request -EXPORT_SYMBOL vmlinux 0x9a9ef479 dma_pool_create -EXPORT_SYMBOL vmlinux 0x9a9f6212 pcie_set_mps -EXPORT_SYMBOL vmlinux 0x9aa5286d netif_device_detach -EXPORT_SYMBOL vmlinux 0x9aaeefce sysctl_nf_log_all_netns -EXPORT_SYMBOL vmlinux 0x9ae086a1 uart_update_timeout -EXPORT_SYMBOL vmlinux 0x9ae47436 _find_last_bit -EXPORT_SYMBOL vmlinux 0x9ae88820 ip_defrag -EXPORT_SYMBOL vmlinux 0x9b128a66 qcom_scm_set_remote_state -EXPORT_SYMBOL vmlinux 0x9b2560b9 gf128mul_init_4k_bbe -EXPORT_SYMBOL vmlinux 0x9b2b5198 sock_recvmsg -EXPORT_SYMBOL vmlinux 0x9b33e0d7 unregister_dcbevent_notifier -EXPORT_SYMBOL vmlinux 0x9b389d7e km_policy_notify -EXPORT_SYMBOL vmlinux 0x9b420478 utf8_strncasecmp -EXPORT_SYMBOL vmlinux 0x9b496b21 posix_acl_alloc -EXPORT_SYMBOL vmlinux 0x9b62ceff scsi_print_result -EXPORT_SYMBOL vmlinux 0x9b6c724e xudma_pktdma_tflow_get_irq -EXPORT_SYMBOL vmlinux 0x9b6e4998 elevator_alloc -EXPORT_SYMBOL vmlinux 0x9b72478f acpi_unload_parent_table -EXPORT_SYMBOL vmlinux 0x9b8595d1 d_drop -EXPORT_SYMBOL vmlinux 0x9b94e183 mipi_dsi_host_register -EXPORT_SYMBOL vmlinux 0x9ba4ef4a fscrypt_zeroout_range -EXPORT_SYMBOL vmlinux 0x9bd25b42 phy_ethtool_get_strings -EXPORT_SYMBOL vmlinux 0x9bdbccbe dquot_load_quota_sb -EXPORT_SYMBOL vmlinux 0x9bdd16d4 netdev_set_tc_queue -EXPORT_SYMBOL vmlinux 0x9bef840a fsl_ifc_ctrl_dev -EXPORT_SYMBOL vmlinux 0x9bf78f1b pci_resize_resource -EXPORT_SYMBOL vmlinux 0x9c03297b of_get_mac_address -EXPORT_SYMBOL vmlinux 0x9c122bcf mempool_create_node -EXPORT_SYMBOL vmlinux 0x9c124df6 is_acpi_device_node -EXPORT_SYMBOL vmlinux 0x9c1e5bf5 queued_spin_lock_slowpath -EXPORT_SYMBOL vmlinux 0x9c21c440 tcf_qevent_dump -EXPORT_SYMBOL vmlinux 0x9c246bd8 sb_min_blocksize -EXPORT_SYMBOL vmlinux 0x9c4caeaf md_check_no_bitmap -EXPORT_SYMBOL vmlinux 0x9c5a2ada ucc_fast_dump_regs -EXPORT_SYMBOL vmlinux 0x9c5d5b94 crc8 -EXPORT_SYMBOL vmlinux 0x9c68f54e tcp_md5_do_del -EXPORT_SYMBOL vmlinux 0x9c7c9207 register_cdrom -EXPORT_SYMBOL vmlinux 0x9c86b9ab fileattr_fill_flags -EXPORT_SYMBOL vmlinux 0x9cab34a6 rfkill_set_led_trigger_name -EXPORT_SYMBOL vmlinux 0x9cad298d tty_port_close_start -EXPORT_SYMBOL vmlinux 0x9cc5211b netlink_broadcast -EXPORT_SYMBOL vmlinux 0x9cccfc9f tcp_disconnect -EXPORT_SYMBOL vmlinux 0x9ccf7171 vme_dma_pci_attribute -EXPORT_SYMBOL vmlinux 0x9cd0fc7c bio_init -EXPORT_SYMBOL vmlinux 0x9cd91791 register_sysctl -EXPORT_SYMBOL vmlinux 0x9cdfb3f7 sysctl_fb_tunnels_only_for_init_net -EXPORT_SYMBOL vmlinux 0x9d0d6206 unregister_netdevice_notifier -EXPORT_SYMBOL vmlinux 0x9d182ad5 rproc_get_by_child -EXPORT_SYMBOL vmlinux 0x9d1a5e3a __memcpy -EXPORT_SYMBOL vmlinux 0x9d205b60 dev_add_pack -EXPORT_SYMBOL vmlinux 0x9d25db6e __serio_register_driver -EXPORT_SYMBOL vmlinux 0x9d2ab8ac __tasklet_schedule -EXPORT_SYMBOL vmlinux 0x9d2e7707 unregister_sysrq_key -EXPORT_SYMBOL vmlinux 0x9d3b10b6 netpoll_send_udp -EXPORT_SYMBOL vmlinux 0x9d3b48a9 sock_edemux -EXPORT_SYMBOL vmlinux 0x9d495fd7 blkdev_compat_ptr_ioctl -EXPORT_SYMBOL vmlinux 0x9d5518be security_sb_remount -EXPORT_SYMBOL vmlinux 0x9d61e994 ucs2_strncmp -EXPORT_SYMBOL vmlinux 0x9d687861 cros_ec_check_result -EXPORT_SYMBOL vmlinux 0x9d866d50 pci_read_config_dword -EXPORT_SYMBOL vmlinux 0x9d92f3ad __wait_on_bit_lock -EXPORT_SYMBOL vmlinux 0x9d971541 page_cache_prev_miss -EXPORT_SYMBOL vmlinux 0x9d97ab2c audit_log_object_context -EXPORT_SYMBOL vmlinux 0x9db1875c alloc_fcdev -EXPORT_SYMBOL vmlinux 0x9dc82235 genphy_read_mmd_unsupported -EXPORT_SYMBOL vmlinux 0x9dcf510e netdev_class_remove_file_ns -EXPORT_SYMBOL vmlinux 0x9dd18e86 devm_gen_pool_create -EXPORT_SYMBOL vmlinux 0x9de9cbe9 xfrm_state_lookup -EXPORT_SYMBOL vmlinux 0x9df05de3 kernel_getpeername -EXPORT_SYMBOL vmlinux 0x9df21d0e qman_affine_channel -EXPORT_SYMBOL vmlinux 0x9e01a6fd fs_param_is_s32 -EXPORT_SYMBOL vmlinux 0x9e0c711d vzalloc_node -EXPORT_SYMBOL vmlinux 0x9e0fa5ae hsiphash_3u32 -EXPORT_SYMBOL vmlinux 0x9e13f6f6 gf128mul_lle -EXPORT_SYMBOL vmlinux 0x9e24fb60 xsk_set_tx_need_wakeup -EXPORT_SYMBOL vmlinux 0x9e2737f0 acpi_install_interface_handler -EXPORT_SYMBOL vmlinux 0x9e3eaa47 inet_csk_reqsk_queue_drop -EXPORT_SYMBOL vmlinux 0x9e45a444 can_nice -EXPORT_SYMBOL vmlinux 0x9e4c6447 fwnode_irq_get -EXPORT_SYMBOL vmlinux 0x9e4faeef dm_io_client_destroy -EXPORT_SYMBOL vmlinux 0x9e5d31f4 seg6_push_hmac -EXPORT_SYMBOL vmlinux 0x9e5e750d node_to_cpumask_map -EXPORT_SYMBOL vmlinux 0x9e61bb05 set_freezable -EXPORT_SYMBOL vmlinux 0x9e6a7f8e mmc_free_host -EXPORT_SYMBOL vmlinux 0x9e7d0696 jbd2_fc_release_bufs -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 0x9eb187fa xudma_pktdma_rflow_get_irq -EXPORT_SYMBOL vmlinux 0x9eb2caae seq_escape_mem -EXPORT_SYMBOL vmlinux 0x9ebcaa0b skb_try_coalesce -EXPORT_SYMBOL vmlinux 0x9ec0e639 twl6030_interrupt_unmask -EXPORT_SYMBOL vmlinux 0x9ec6ca96 ktime_get_real_ts64 -EXPORT_SYMBOL vmlinux 0x9ecc0819 param_set_ushort -EXPORT_SYMBOL vmlinux 0x9ed7c847 brcmstb_get_family_id -EXPORT_SYMBOL vmlinux 0x9ed94572 pcie_capability_write_word -EXPORT_SYMBOL vmlinux 0x9ed978de vme_lm_set -EXPORT_SYMBOL vmlinux 0x9eda0ccc generic_write_checks -EXPORT_SYMBOL vmlinux 0x9f01ffba pci_bus_size_bridges -EXPORT_SYMBOL vmlinux 0x9f2b6f4a nf_ct_attach -EXPORT_SYMBOL vmlinux 0x9f38c9be tcf_exts_destroy -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 0x9f692d2b phy_drivers_register -EXPORT_SYMBOL vmlinux 0x9f71b33c netif_receive_skb_core -EXPORT_SYMBOL vmlinux 0x9f7ac7b7 sock_from_file -EXPORT_SYMBOL vmlinux 0x9f7d7dbb logic_outsw -EXPORT_SYMBOL vmlinux 0x9f984513 strrchr -EXPORT_SYMBOL vmlinux 0x9f988620 xfrm_init_state -EXPORT_SYMBOL vmlinux 0x9fa7184a cancel_delayed_work_sync -EXPORT_SYMBOL vmlinux 0x9fa7d785 md_done_sync -EXPORT_SYMBOL vmlinux 0x9fbe26df fb_set_suspend -EXPORT_SYMBOL vmlinux 0x9fdecc31 unregister_netdevice_many -EXPORT_SYMBOL vmlinux 0x9feed7ce timer_reduce -EXPORT_SYMBOL vmlinux 0x9ff1d583 dquot_load_quota_inode -EXPORT_SYMBOL vmlinux 0x9ff2329c xp_dma_sync_for_cpu_slow -EXPORT_SYMBOL vmlinux 0x9ffa3a75 netdev_max_backlog -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 0xa033d747 next_arg -EXPORT_SYMBOL vmlinux 0xa03ba3ba inode_set_bytes -EXPORT_SYMBOL vmlinux 0xa042118e phy_read_mmd -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 0xa066924c xfrm_policy_hash_rebuild -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 0xa0969d44 kmalloc_caches -EXPORT_SYMBOL vmlinux 0xa09a4334 pci_enable_wake -EXPORT_SYMBOL vmlinux 0xa0ae1e73 siphash_3u64 -EXPORT_SYMBOL vmlinux 0xa0b04675 vmalloc_32 -EXPORT_SYMBOL vmlinux 0xa0d87339 qdisc_get_rtab -EXPORT_SYMBOL vmlinux 0xa0d8749e __of_get_address -EXPORT_SYMBOL vmlinux 0xa0dad88e netdev_adjacent_get_private -EXPORT_SYMBOL vmlinux 0xa0e3fcb7 pci_disable_msix -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 0xa0f26eb5 crypto_sha1_finup -EXPORT_SYMBOL vmlinux 0xa0f9aa4d devfreq_add_device -EXPORT_SYMBOL vmlinux 0xa0fa8e14 netif_carrier_on -EXPORT_SYMBOL vmlinux 0xa0fbac79 wake_up_bit -EXPORT_SYMBOL vmlinux 0xa108eb4d sysctl_optmem_max -EXPORT_SYMBOL vmlinux 0xa109d08d vlan_uses_dev -EXPORT_SYMBOL vmlinux 0xa10a60ea phy_init_hw -EXPORT_SYMBOL vmlinux 0xa11b8857 d_add -EXPORT_SYMBOL vmlinux 0xa11cd546 register_fib_notifier -EXPORT_SYMBOL vmlinux 0xa12002be netif_receive_skb -EXPORT_SYMBOL vmlinux 0xa15119bd ip6_err_gen_icmpv6_unreach -EXPORT_SYMBOL vmlinux 0xa15c44d2 unix_get_socket -EXPORT_SYMBOL vmlinux 0xa1649a0e __page_symlink -EXPORT_SYMBOL vmlinux 0xa166d270 __skb_gso_segment -EXPORT_SYMBOL vmlinux 0xa173faaf kern_path -EXPORT_SYMBOL vmlinux 0xa199c9ca ip_sock_set_recverr -EXPORT_SYMBOL vmlinux 0xa19c492f security_inode_copy_up -EXPORT_SYMBOL vmlinux 0xa1ad52b0 ethtool_op_get_ts_info -EXPORT_SYMBOL vmlinux 0xa1c42305 dev_set_mtu -EXPORT_SYMBOL vmlinux 0xa1d26ee6 ppp_unregister_channel -EXPORT_SYMBOL vmlinux 0xa1d657ce ip6_xmit -EXPORT_SYMBOL vmlinux 0xa1f2e553 generic_fill_statx_attr -EXPORT_SYMBOL vmlinux 0xa1f45eb4 pci_disable_msi -EXPORT_SYMBOL vmlinux 0xa2001821 __netlink_ns_capable -EXPORT_SYMBOL vmlinux 0xa2035ac6 qcom_scm_set_warm_boot_addr -EXPORT_SYMBOL vmlinux 0xa2060911 inet_current_timestamp -EXPORT_SYMBOL vmlinux 0xa20782bb fs_context_for_reconfigure -EXPORT_SYMBOL vmlinux 0xa210b5c8 netif_tx_stop_all_queues -EXPORT_SYMBOL vmlinux 0xa2148ba3 mdiobus_get_phy -EXPORT_SYMBOL vmlinux 0xa22ae0be ip_tunnel_parse_protocol -EXPORT_SYMBOL vmlinux 0xa2326c49 acpi_remove_table_handler -EXPORT_SYMBOL vmlinux 0xa2351146 scsi_command_normalize_sense -EXPORT_SYMBOL vmlinux 0xa23f5fe9 submit_bio_noacct -EXPORT_SYMBOL vmlinux 0xa23ffc04 groups_sort -EXPORT_SYMBOL vmlinux 0xa2479689 rtnl_notify -EXPORT_SYMBOL vmlinux 0xa24f23d8 __request_module -EXPORT_SYMBOL vmlinux 0xa2591871 pin_user_pages_remote -EXPORT_SYMBOL vmlinux 0xa25b90ab utf8byte -EXPORT_SYMBOL vmlinux 0xa263892b fscrypt_fname_free_buffer -EXPORT_SYMBOL vmlinux 0xa2660e90 __tracepoint_dma_fence_signaled -EXPORT_SYMBOL vmlinux 0xa26cb8a0 blk_queue_segment_boundary -EXPORT_SYMBOL vmlinux 0xa28cfcc0 gen_estimator_active -EXPORT_SYMBOL vmlinux 0xa29b3821 inet_select_addr -EXPORT_SYMBOL vmlinux 0xa29fad97 blk_mq_end_request -EXPORT_SYMBOL vmlinux 0xa2b59150 of_graph_get_next_endpoint -EXPORT_SYMBOL vmlinux 0xa2beb17a remove_conflicting_pci_framebuffers -EXPORT_SYMBOL vmlinux 0xa2ca4cc7 pagevec_lookup_range -EXPORT_SYMBOL vmlinux 0xa2ca74de pcibus_to_node -EXPORT_SYMBOL vmlinux 0xa2cf3649 qman_fq_fqid -EXPORT_SYMBOL vmlinux 0xa2d7ec8d __SCK__tp_func_kmem_cache_free -EXPORT_SYMBOL vmlinux 0xa2f25653 scsi_print_command -EXPORT_SYMBOL vmlinux 0xa31b53fd rt_dst_alloc -EXPORT_SYMBOL vmlinux 0xa338ca30 scsi_get_device_flags_keyed -EXPORT_SYMBOL vmlinux 0xa339e6e5 on_each_cpu_cond_mask -EXPORT_SYMBOL vmlinux 0xa3431d74 gnet_stats_copy_queue -EXPORT_SYMBOL vmlinux 0xa34a55fa xfrm6_rcv_tnl -EXPORT_SYMBOL vmlinux 0xa34ed4a5 padata_alloc -EXPORT_SYMBOL vmlinux 0xa3522df5 qman_query_fq_np -EXPORT_SYMBOL vmlinux 0xa359d226 from_kgid -EXPORT_SYMBOL vmlinux 0xa35a88c9 input_set_keycode -EXPORT_SYMBOL vmlinux 0xa36433f4 skb_vlan_pop -EXPORT_SYMBOL vmlinux 0xa3766fae genphy_c37_read_status -EXPORT_SYMBOL vmlinux 0xa383f381 input_set_min_poll_interval -EXPORT_SYMBOL vmlinux 0xa39074dc free_inode_nonrcu -EXPORT_SYMBOL vmlinux 0xa3980c8a pci_irq_vector -EXPORT_SYMBOL vmlinux 0xa3a3f229 cpumask_next_and -EXPORT_SYMBOL vmlinux 0xa3ad1105 skb_copy_and_csum_datagram_msg -EXPORT_SYMBOL vmlinux 0xa3b17701 dump_skip_to -EXPORT_SYMBOL vmlinux 0xa3cefaa0 blake2s_update -EXPORT_SYMBOL vmlinux 0xa3e9ec4b nla_reserve_64bit -EXPORT_SYMBOL vmlinux 0xa3ee099d pci_request_region -EXPORT_SYMBOL vmlinux 0xa3fb735a blk_set_default_limits -EXPORT_SYMBOL vmlinux 0xa3fea172 sha224_final -EXPORT_SYMBOL vmlinux 0xa4007770 keyring_search -EXPORT_SYMBOL vmlinux 0xa40a7aec of_mdiobus_phy_device_register -EXPORT_SYMBOL vmlinux 0xa40ff01b acpi_dbg_layer -EXPORT_SYMBOL vmlinux 0xa448c653 qcom_scm_ice_set_key -EXPORT_SYMBOL vmlinux 0xa4496585 pcie_capability_read_word -EXPORT_SYMBOL vmlinux 0xa4658c02 dev_mc_add_global -EXPORT_SYMBOL vmlinux 0xa47a31c8 security_binder_transaction -EXPORT_SYMBOL vmlinux 0xa49026d5 flow_rule_match_enc_ipv4_addrs -EXPORT_SYMBOL vmlinux 0xa4ce4682 file_fdatawait_range -EXPORT_SYMBOL vmlinux 0xa4d855e3 mipi_dsi_device_register_full -EXPORT_SYMBOL vmlinux 0xa4e0dd22 sock_no_sendpage -EXPORT_SYMBOL vmlinux 0xa4fa5737 of_find_mipi_dsi_device_by_node -EXPORT_SYMBOL vmlinux 0xa4fca045 qcom_scm_ocmem_lock -EXPORT_SYMBOL vmlinux 0xa50a3da7 _find_next_bit -EXPORT_SYMBOL vmlinux 0xa50e4eec pcie_port_service_register -EXPORT_SYMBOL vmlinux 0xa519c3ed dev_queue_xmit_accel -EXPORT_SYMBOL vmlinux 0xa51aa5d5 of_device_get_match_data -EXPORT_SYMBOL vmlinux 0xa52bedf6 xenbus_dev_request_and_reply -EXPORT_SYMBOL vmlinux 0xa52c3ecd xfrm_unregister_type_offload -EXPORT_SYMBOL vmlinux 0xa5474e09 max8998_bulk_write -EXPORT_SYMBOL vmlinux 0xa54a652c devm_ioremap_resource -EXPORT_SYMBOL vmlinux 0xa54c43cc sk_reset_timer -EXPORT_SYMBOL vmlinux 0xa5526619 rb_insert_color -EXPORT_SYMBOL vmlinux 0xa557beb4 path_get -EXPORT_SYMBOL vmlinux 0xa55f4379 phy_do_ioctl_running -EXPORT_SYMBOL vmlinux 0xa56a3319 __blkdev_issue_zeroout -EXPORT_SYMBOL vmlinux 0xa57dec58 reuseport_detach_prog -EXPORT_SYMBOL vmlinux 0xa5805b8c seq_open -EXPORT_SYMBOL vmlinux 0xa58660b1 __scsi_device_lookup -EXPORT_SYMBOL vmlinux 0xa5943c4c kobject_del -EXPORT_SYMBOL vmlinux 0xa5976e4f dev_base_lock -EXPORT_SYMBOL vmlinux 0xa59f4954 qdisc_watchdog_cancel -EXPORT_SYMBOL vmlinux 0xa5ac3e33 ZSTD_DCtxWorkspaceBound -EXPORT_SYMBOL vmlinux 0xa5b87776 input_event -EXPORT_SYMBOL vmlinux 0xa5d67d4b pci_disable_link_state -EXPORT_SYMBOL vmlinux 0xa5e289af I_BDEV -EXPORT_SYMBOL vmlinux 0xa5e51bcd scsi_dma_unmap -EXPORT_SYMBOL vmlinux 0xa5e631a9 flow_rule_match_control -EXPORT_SYMBOL vmlinux 0xa5e7c460 bdi_register -EXPORT_SYMBOL vmlinux 0xa5f7cf37 __cpu_possible_mask -EXPORT_SYMBOL vmlinux 0xa6084770 stream_open -EXPORT_SYMBOL vmlinux 0xa61ced89 qdisc_put_rtab -EXPORT_SYMBOL vmlinux 0xa62466a5 console_stop -EXPORT_SYMBOL vmlinux 0xa624bd71 of_translate_address -EXPORT_SYMBOL vmlinux 0xa6257a2f complete -EXPORT_SYMBOL vmlinux 0xa6434e75 sock_no_linger -EXPORT_SYMBOL vmlinux 0xa6585a52 param_set_ulong -EXPORT_SYMBOL vmlinux 0xa65a0f6e block_truncate_page -EXPORT_SYMBOL vmlinux 0xa65d5fc3 serio_interrupt -EXPORT_SYMBOL vmlinux 0xa66e249f ptp_clock_event -EXPORT_SYMBOL vmlinux 0xa67e32b3 tcp_create_openreq_child -EXPORT_SYMBOL vmlinux 0xa681fe88 generate_random_uuid -EXPORT_SYMBOL vmlinux 0xa68302ea xfrm_register_type -EXPORT_SYMBOL vmlinux 0xa69b9a38 kmem_cache_destroy -EXPORT_SYMBOL vmlinux 0xa6bbbf85 rt_mutex_base_init -EXPORT_SYMBOL vmlinux 0xa6ee5b39 tcp_simple_retransmit -EXPORT_SYMBOL vmlinux 0xa708c915 xfrm6_input_addr -EXPORT_SYMBOL vmlinux 0xa70bc96d qcom_scm_restore_sec_cfg_available -EXPORT_SYMBOL vmlinux 0xa70fb761 flow_keys_basic_dissector -EXPORT_SYMBOL vmlinux 0xa7132336 page_zero_new_buffers -EXPORT_SYMBOL vmlinux 0xa71a1776 set_anon_super_fc -EXPORT_SYMBOL vmlinux 0xa71acc92 fman_port_config -EXPORT_SYMBOL vmlinux 0xa71e83a8 icmpv6_ndo_send -EXPORT_SYMBOL vmlinux 0xa72035f9 xa_get_order -EXPORT_SYMBOL vmlinux 0xa7310825 jbd2_journal_inode_ranged_wait -EXPORT_SYMBOL vmlinux 0xa731db2e of_get_parent -EXPORT_SYMBOL vmlinux 0xa74c9877 refcount_dec_and_rtnl_lock -EXPORT_SYMBOL vmlinux 0xa74ec2f6 mii_ethtool_sset -EXPORT_SYMBOL vmlinux 0xa7692981 may_setattr -EXPORT_SYMBOL vmlinux 0xa775499d xfrm_policy_byid -EXPORT_SYMBOL vmlinux 0xa778ed74 sock_pfree -EXPORT_SYMBOL vmlinux 0xa77bfd29 register_inet6addr_validator_notifier -EXPORT_SYMBOL vmlinux 0xa7a5713f pfifo_fast_ops -EXPORT_SYMBOL vmlinux 0xa7b16676 pci_wake_from_d3 -EXPORT_SYMBOL vmlinux 0xa7d5f92e ida_destroy -EXPORT_SYMBOL vmlinux 0xa7eedcc4 call_usermodehelper -EXPORT_SYMBOL vmlinux 0xa7f55067 pci_ep_cfs_add_epf_group -EXPORT_SYMBOL vmlinux 0xa7fe9fd3 netdev_class_create_file_ns -EXPORT_SYMBOL vmlinux 0xa802555e mmc_gpio_set_cd_wake -EXPORT_SYMBOL vmlinux 0xa8165cf1 sock_set_priority -EXPORT_SYMBOL vmlinux 0xa8181adf proc_dointvec -EXPORT_SYMBOL vmlinux 0xa81ef87d pldmfw_flash_image -EXPORT_SYMBOL vmlinux 0xa832ebc9 vfs_iocb_iter_write -EXPORT_SYMBOL vmlinux 0xa839562f truncate_pagecache -EXPORT_SYMBOL vmlinux 0xa83d666a jbd2_journal_ack_err -EXPORT_SYMBOL vmlinux 0xa843805a get_unused_fd_flags -EXPORT_SYMBOL vmlinux 0xa8484a73 nd_device_register -EXPORT_SYMBOL vmlinux 0xa84ce9e0 crypto_aes_inv_sbox -EXPORT_SYMBOL vmlinux 0xa853396b xa_extract -EXPORT_SYMBOL vmlinux 0xa85a3e6d xa_load -EXPORT_SYMBOL vmlinux 0xa862c50b pci_select_bars -EXPORT_SYMBOL vmlinux 0xa8672ef7 lookup_one_unlocked -EXPORT_SYMBOL vmlinux 0xa8694ecd kblockd_schedule_work -EXPORT_SYMBOL vmlinux 0xa8739171 key_unlink -EXPORT_SYMBOL vmlinux 0xa875ebf4 configfs_unregister_group -EXPORT_SYMBOL vmlinux 0xa877c6ab kobject_add -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 0xa8caa845 clk_bulk_put_all -EXPORT_SYMBOL vmlinux 0xa8e6933a qdf2400_e44_present -EXPORT_SYMBOL vmlinux 0xa8edb97e devm_tegra_prod_get -EXPORT_SYMBOL vmlinux 0xa8f6c843 ip_frag_ecn_table -EXPORT_SYMBOL vmlinux 0xa8fe706a in6_dev_finish_destroy -EXPORT_SYMBOL vmlinux 0xa90ca0de flush_rcu_work -EXPORT_SYMBOL vmlinux 0xa915b932 vfs_iocb_iter_read -EXPORT_SYMBOL vmlinux 0xa916b694 strnlen -EXPORT_SYMBOL vmlinux 0xa924b4aa __traceiter_kmem_cache_alloc_node -EXPORT_SYMBOL vmlinux 0xa93672b2 acpi_get_hp_hw_control_from_firmware -EXPORT_SYMBOL vmlinux 0xa94a09bb mem_section -EXPORT_SYMBOL vmlinux 0xa9526a6b ip4_datagram_connect -EXPORT_SYMBOL vmlinux 0xa95c5c5e setattr_should_drop_sgid -EXPORT_SYMBOL vmlinux 0xa965ca81 reciprocal_value -EXPORT_SYMBOL vmlinux 0xa976957d bitmap_remap -EXPORT_SYMBOL vmlinux 0xa98f6beb set_user_nice -EXPORT_SYMBOL vmlinux 0xa99b39c2 prandom_bytes -EXPORT_SYMBOL vmlinux 0xa9a70223 inc_nlink -EXPORT_SYMBOL vmlinux 0xa9a7ce30 d_tmpfile -EXPORT_SYMBOL vmlinux 0xa9bc3776 follow_down -EXPORT_SYMBOL vmlinux 0xa9c186a4 amba_device_register -EXPORT_SYMBOL vmlinux 0xa9e471f3 xfrm_dev_state_flush -EXPORT_SYMBOL vmlinux 0xa9ed62d2 tegra_fuse_readl -EXPORT_SYMBOL vmlinux 0xa9ef94e8 skb_queue_tail -EXPORT_SYMBOL vmlinux 0xa9f609e1 tcp_check_req -EXPORT_SYMBOL vmlinux 0xaa00fdc0 ec_transaction -EXPORT_SYMBOL vmlinux 0xaa059fd5 xfrm_alloc_spi -EXPORT_SYMBOL vmlinux 0xaa0c318b vscnprintf -EXPORT_SYMBOL vmlinux 0xaa19e4aa _kstrtol -EXPORT_SYMBOL vmlinux 0xaa2a0fe8 pci_map_rom -EXPORT_SYMBOL vmlinux 0xaa341905 acpi_bios_exception -EXPORT_SYMBOL vmlinux 0xaa4a0f71 xfrm_state_register_afinfo -EXPORT_SYMBOL vmlinux 0xaa4cca9f proc_create_mount_point -EXPORT_SYMBOL vmlinux 0xaa4ef1cb tcp_seq_start -EXPORT_SYMBOL vmlinux 0xaa53ea27 simple_unlink -EXPORT_SYMBOL vmlinux 0xaa6e1897 do_clone_file_range -EXPORT_SYMBOL vmlinux 0xaa6f23ad rfkill_get_led_trigger_name -EXPORT_SYMBOL vmlinux 0xaa8106bc crc8_populate_msb -EXPORT_SYMBOL vmlinux 0xaa87c1e1 dma_async_device_unregister -EXPORT_SYMBOL vmlinux 0xaa9a69d9 of_graph_get_remote_port_parent -EXPORT_SYMBOL vmlinux 0xaaa4b9bc hchacha_block_generic -EXPORT_SYMBOL vmlinux 0xaaa50fb2 qcom_scm_lmh_profile_change -EXPORT_SYMBOL vmlinux 0xaaaa5e69 config_item_get -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 0xaad9eb5b skb_store_bits -EXPORT_SYMBOL vmlinux 0xaadb528d __xfrm_state_delete -EXPORT_SYMBOL vmlinux 0xaae8ab0e acpi_bus_power_manageable -EXPORT_SYMBOL vmlinux 0xaaec09a2 dcbnl_cee_notify -EXPORT_SYMBOL vmlinux 0xaafb3185 vfs_mkdir -EXPORT_SYMBOL vmlinux 0xaafdc258 strcasecmp -EXPORT_SYMBOL vmlinux 0xab07ee8c __inet_stream_connect -EXPORT_SYMBOL vmlinux 0xab3697e4 irq_poll_init -EXPORT_SYMBOL vmlinux 0xab3979cf fault_in_iov_iter_readable -EXPORT_SYMBOL vmlinux 0xab3b75ea vme_dma_pattern_attribute -EXPORT_SYMBOL vmlinux 0xab4ca6d6 ip_sock_set_pktinfo -EXPORT_SYMBOL vmlinux 0xab4d95b7 sock_alloc_send_skb -EXPORT_SYMBOL vmlinux 0xab4ea39a __pci_register_driver -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 0xab6e4dc5 mpage_writepage -EXPORT_SYMBOL vmlinux 0xab781570 fb_get_options -EXPORT_SYMBOL vmlinux 0xab7976ff starget_for_each_device -EXPORT_SYMBOL vmlinux 0xab7cc4a9 d_hash_and_lookup -EXPORT_SYMBOL vmlinux 0xaba484b3 reuseport_select_sock -EXPORT_SYMBOL vmlinux 0xabc3ed3a dec_zone_page_state -EXPORT_SYMBOL vmlinux 0xabd54227 tcf_exts_dump_stats -EXPORT_SYMBOL vmlinux 0xabd7d186 jbd2_journal_force_commit_nested -EXPORT_SYMBOL vmlinux 0xabe91bc4 igrab -EXPORT_SYMBOL vmlinux 0xabea879d generic_file_readonly_mmap -EXPORT_SYMBOL vmlinux 0xabead693 dev_queue_xmit -EXPORT_SYMBOL vmlinux 0xabeb9438 skb_flow_dissector_init -EXPORT_SYMBOL vmlinux 0xabf32f29 utf16s_to_utf8s -EXPORT_SYMBOL vmlinux 0xac0174e9 seq_read_iter -EXPORT_SYMBOL vmlinux 0xac0b7348 i2c_clients_command -EXPORT_SYMBOL vmlinux 0xac1a55be unregister_reboot_notifier -EXPORT_SYMBOL vmlinux 0xac3201b0 udp_flow_hashrnd -EXPORT_SYMBOL vmlinux 0xac427a34 configfs_depend_item_unlocked -EXPORT_SYMBOL vmlinux 0xac537ac2 percpu_counter_destroy -EXPORT_SYMBOL vmlinux 0xac5fcec0 in4_pton -EXPORT_SYMBOL vmlinux 0xac6625cc current_in_userns -EXPORT_SYMBOL vmlinux 0xac67dc92 pci_write_config_dword -EXPORT_SYMBOL vmlinux 0xac81174d nf_log_unregister -EXPORT_SYMBOL vmlinux 0xac97bbd7 inet_frag_kill -EXPORT_SYMBOL vmlinux 0xacaa4c72 dma_fence_match_context -EXPORT_SYMBOL vmlinux 0xacab29b7 seq_hlist_start_percpu -EXPORT_SYMBOL vmlinux 0xacb6211a rproc_shutdown -EXPORT_SYMBOL vmlinux 0xacd5891c max8925_reg_write -EXPORT_SYMBOL vmlinux 0xacd81eb3 jbd2_inode_cache -EXPORT_SYMBOL vmlinux 0xacddd806 ptp_get_vclocks_index -EXPORT_SYMBOL vmlinux 0xace7a7bb in_dev_finish_destroy -EXPORT_SYMBOL vmlinux 0xacefc7e3 blk_cleanup_queue -EXPORT_SYMBOL vmlinux 0xacf4d843 match_strdup -EXPORT_SYMBOL vmlinux 0xacf649bf audit_log_task_info -EXPORT_SYMBOL vmlinux 0xacf8cb6f __napi_schedule_irqoff -EXPORT_SYMBOL vmlinux 0xad018e8e serial8250_register_8250_port -EXPORT_SYMBOL vmlinux 0xad0413d4 match_hex -EXPORT_SYMBOL vmlinux 0xad128dc1 __tracepoint_dma_fence_enable_signal -EXPORT_SYMBOL vmlinux 0xad1b1e2d fasync_helper -EXPORT_SYMBOL vmlinux 0xad1eaedb blk_put_queue -EXPORT_SYMBOL vmlinux 0xad357133 __traceiter_kmalloc_node -EXPORT_SYMBOL vmlinux 0xad3ea04c qman_p_irqsource_remove -EXPORT_SYMBOL vmlinux 0xad41fec7 msm_pinctrl_dev_pm_ops -EXPORT_SYMBOL vmlinux 0xad5c3f57 fixed_size_llseek -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 0xad7c6374 mmc_can_secure_erase_trim -EXPORT_SYMBOL vmlinux 0xad9901ae bit_waitqueue -EXPORT_SYMBOL vmlinux 0xada0db7a devfreq_monitor_suspend -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 0xadcba50b ZSTD_findFrameCompressedSize -EXPORT_SYMBOL vmlinux 0xadd139d4 rfs_needed -EXPORT_SYMBOL vmlinux 0xadedfd44 flow_rule_match_ip -EXPORT_SYMBOL vmlinux 0xadfdbc7c tcf_idr_release -EXPORT_SYMBOL vmlinux 0xadfdfcef __bitmap_andnot -EXPORT_SYMBOL vmlinux 0xae04012c __vmalloc -EXPORT_SYMBOL vmlinux 0xae316c11 icmpv6_err_convert -EXPORT_SYMBOL vmlinux 0xae33c403 xudma_navss_psil_unpair -EXPORT_SYMBOL vmlinux 0xae3cf2b1 mipi_dsi_dcs_get_power_mode -EXPORT_SYMBOL vmlinux 0xae46c6a7 migrate_vma_finalize -EXPORT_SYMBOL vmlinux 0xae48c7ac devm_extcon_unregister_notifier -EXPORT_SYMBOL vmlinux 0xae503569 consume_skb -EXPORT_SYMBOL vmlinux 0xae574d24 tegra_ahb_enable_smmu -EXPORT_SYMBOL vmlinux 0xae5a04bb acpi_evaluate_dsm -EXPORT_SYMBOL vmlinux 0xae5c2bba skb_prepare_seq_read -EXPORT_SYMBOL vmlinux 0xae8472f4 d_alloc -EXPORT_SYMBOL vmlinux 0xae9aadee ping_prot -EXPORT_SYMBOL vmlinux 0xaea7b4b4 iov_iter_gap_alignment -EXPORT_SYMBOL vmlinux 0xaea7c382 tegra_prod_set_by_name -EXPORT_SYMBOL vmlinux 0xaeac049a generate_random_guid -EXPORT_SYMBOL vmlinux 0xaeb3f255 pci_pme_active -EXPORT_SYMBOL vmlinux 0xaebaa76d qdisc_hash_del -EXPORT_SYMBOL vmlinux 0xaebd12f0 acpi_get_name -EXPORT_SYMBOL vmlinux 0xaed48c1a __put_user_ns -EXPORT_SYMBOL vmlinux 0xaf007857 rproc_add -EXPORT_SYMBOL vmlinux 0xaf1f8965 dquot_commit -EXPORT_SYMBOL vmlinux 0xaf21b745 inetdev_by_index -EXPORT_SYMBOL vmlinux 0xaf2fa2a6 con_copy_unimap -EXPORT_SYMBOL vmlinux 0xaf3dd7dc scsi_logging_level -EXPORT_SYMBOL vmlinux 0xaf4c3d5b get_bitmap_from_slot -EXPORT_SYMBOL vmlinux 0xaf56600a arm64_use_ng_mappings -EXPORT_SYMBOL vmlinux 0xaf91c82a current_time -EXPORT_SYMBOL vmlinux 0xafa548dd scsi_ioctl -EXPORT_SYMBOL vmlinux 0xafb864c1 refcount_dec_and_lock_irqsave -EXPORT_SYMBOL vmlinux 0xafc08054 dotdot_name -EXPORT_SYMBOL vmlinux 0xafc99f53 register_quota_format -EXPORT_SYMBOL vmlinux 0xafccfa00 netdev_features_change -EXPORT_SYMBOL vmlinux 0xaff06dd1 vlan_dev_vlan_id -EXPORT_SYMBOL vmlinux 0xaff6c18a drop_nlink -EXPORT_SYMBOL vmlinux 0xaffbcb30 filemap_fault -EXPORT_SYMBOL vmlinux 0xb00b2a07 fscrypt_fname_disk_to_usr -EXPORT_SYMBOL vmlinux 0xb016cd52 __d_lookup_done -EXPORT_SYMBOL vmlinux 0xb01bebf9 xfrm_get_acqseq -EXPORT_SYMBOL vmlinux 0xb04a43ad __xa_alloc_cyclic -EXPORT_SYMBOL vmlinux 0xb058ca07 dim_calc_stats -EXPORT_SYMBOL vmlinux 0xb05fc310 sysctl_rmem_max -EXPORT_SYMBOL vmlinux 0xb0664ab3 jbd2_journal_dirty_metadata -EXPORT_SYMBOL vmlinux 0xb07d9f25 dev_addr_flush -EXPORT_SYMBOL vmlinux 0xb0953270 key_reject_and_link -EXPORT_SYMBOL vmlinux 0xb09e9089 irq_domain_set_info -EXPORT_SYMBOL vmlinux 0xb0a0da0c rational_best_approximation -EXPORT_SYMBOL vmlinux 0xb0a2a0f6 max8925_bulk_write -EXPORT_SYMBOL vmlinux 0xb0a68bc5 param_set_hexint -EXPORT_SYMBOL vmlinux 0xb0b2359a pci_match_id -EXPORT_SYMBOL vmlinux 0xb0c5e247 lockref_put_return -EXPORT_SYMBOL vmlinux 0xb0cc292a t10_pi_type1_ip -EXPORT_SYMBOL vmlinux 0xb0e10781 get_option -EXPORT_SYMBOL vmlinux 0xb0f389ee utf8_normalize -EXPORT_SYMBOL vmlinux 0xb0fcaa89 blk_set_queue_depth -EXPORT_SYMBOL vmlinux 0xb10dec2b __tcf_em_tree_match -EXPORT_SYMBOL vmlinux 0xb10e7df4 __kfifo_dma_in_prepare -EXPORT_SYMBOL vmlinux 0xb121390a probe_irq_on -EXPORT_SYMBOL vmlinux 0xb12cbacb fb_unregister_client -EXPORT_SYMBOL vmlinux 0xb130707c single_release -EXPORT_SYMBOL vmlinux 0xb14ab1ef hdmi_audio_infoframe_init -EXPORT_SYMBOL vmlinux 0xb14fc46a find_next_clump8 -EXPORT_SYMBOL vmlinux 0xb156199e vm_map_pages -EXPORT_SYMBOL vmlinux 0xb1589e90 tcp_read_sock -EXPORT_SYMBOL vmlinux 0xb15d8bf6 input_set_abs_params -EXPORT_SYMBOL vmlinux 0xb1779739 mntput -EXPORT_SYMBOL vmlinux 0xb17b8eb1 tegra_prod_by_name_supported -EXPORT_SYMBOL vmlinux 0xb1810b17 rtnl_kfree_skbs -EXPORT_SYMBOL vmlinux 0xb18a8b99 genl_notify -EXPORT_SYMBOL vmlinux 0xb19b254a mmc_can_discard -EXPORT_SYMBOL vmlinux 0xb19e275c icmp_ndo_send -EXPORT_SYMBOL vmlinux 0xb1c3a01a oops_in_progress -EXPORT_SYMBOL vmlinux 0xb1d1e583 mark_buffer_write_io_error -EXPORT_SYMBOL vmlinux 0xb1d3a15c blk_finish_plug -EXPORT_SYMBOL vmlinux 0xb1d5ef38 security_dentry_init_security -EXPORT_SYMBOL vmlinux 0xb1db9a69 fsl_ifc_find -EXPORT_SYMBOL vmlinux 0xb1ddf995 jiffies_64_to_clock_t -EXPORT_SYMBOL vmlinux 0xb1e0b140 xfrm_policy_walk_done -EXPORT_SYMBOL vmlinux 0xb1ea05a5 generic_fillattr -EXPORT_SYMBOL vmlinux 0xb1f07fd9 clocksource_unregister -EXPORT_SYMBOL vmlinux 0xb2081f0b __devm_request_region -EXPORT_SYMBOL vmlinux 0xb217f397 devm_register_netdev -EXPORT_SYMBOL vmlinux 0xb22ab7ff scsi_print_sense -EXPORT_SYMBOL vmlinux 0xb22e16d5 radix_tree_maybe_preload -EXPORT_SYMBOL vmlinux 0xb23027c1 kstrtos16_from_user -EXPORT_SYMBOL vmlinux 0xb2393f85 tcp_sock_set_keepidle -EXPORT_SYMBOL vmlinux 0xb24543f5 iw_handler_get_thrspy -EXPORT_SYMBOL vmlinux 0xb2796fe0 tty_write_room -EXPORT_SYMBOL vmlinux 0xb28cdbb9 neigh_sysctl_unregister -EXPORT_SYMBOL vmlinux 0xb2bcb088 acpi_current_gpe_count -EXPORT_SYMBOL vmlinux 0xb2bce81e pci_alloc_dev -EXPORT_SYMBOL vmlinux 0xb2c03fe9 phy_attached_print -EXPORT_SYMBOL vmlinux 0xb2ead97c kimage_vaddr -EXPORT_SYMBOL vmlinux 0xb2f35c6a xxh64 -EXPORT_SYMBOL vmlinux 0xb2fcb56d queue_delayed_work_on -EXPORT_SYMBOL vmlinux 0xb308c97d wait_woken -EXPORT_SYMBOL vmlinux 0xb30b9822 vme_master_set -EXPORT_SYMBOL vmlinux 0xb320cc0e sg_init_one -EXPORT_SYMBOL vmlinux 0xb32728bb qcom_scm_iommu_secure_ptbl_init -EXPORT_SYMBOL vmlinux 0xb32dde30 md_wait_for_blocked_rdev -EXPORT_SYMBOL vmlinux 0xb3317b6a kmem_cache_alloc_trace -EXPORT_SYMBOL vmlinux 0xb339ee68 dm_table_run_md_queue_async -EXPORT_SYMBOL vmlinux 0xb33b7936 mipi_dsi_set_maximum_return_packet_size -EXPORT_SYMBOL vmlinux 0xb34dca1c kryo_l2_get_indirect_reg -EXPORT_SYMBOL vmlinux 0xb3501499 kmem_cache_alloc_bulk -EXPORT_SYMBOL vmlinux 0xb35854ad sg_miter_skip -EXPORT_SYMBOL vmlinux 0xb35ec194 reuseport_alloc -EXPORT_SYMBOL vmlinux 0xb35eff91 ps2_init -EXPORT_SYMBOL vmlinux 0xb3687850 out_of_line_wait_on_bit_lock -EXPORT_SYMBOL vmlinux 0xb36f23bb security_sk_classify_flow -EXPORT_SYMBOL vmlinux 0xb39fd465 elv_rb_del -EXPORT_SYMBOL vmlinux 0xb3a82019 profile_pc -EXPORT_SYMBOL vmlinux 0xb3b1d5f4 unregister_mii_timestamper -EXPORT_SYMBOL vmlinux 0xb3b5f5b0 blk_queue_update_dma_pad -EXPORT_SYMBOL vmlinux 0xb3bd68cc security_secmark_relabel_packet -EXPORT_SYMBOL vmlinux 0xb3c441ef inet6_protos -EXPORT_SYMBOL vmlinux 0xb3d16e28 vga_put -EXPORT_SYMBOL vmlinux 0xb3d181fb ipv6_dev_mc_dec -EXPORT_SYMBOL vmlinux 0xb3d2c76d scsi_hostbyte_string -EXPORT_SYMBOL vmlinux 0xb3d34a8e netif_tx_wake_queue -EXPORT_SYMBOL vmlinux 0xb3d4f288 shmem_aops -EXPORT_SYMBOL vmlinux 0xb3d9d5de wireless_send_event -EXPORT_SYMBOL vmlinux 0xb3df580d filemap_fdatawrite_wbc -EXPORT_SYMBOL vmlinux 0xb3eb7214 pci_scan_single_device -EXPORT_SYMBOL vmlinux 0xb3f49446 kstrtos8_from_user -EXPORT_SYMBOL vmlinux 0xb3f548ad kmemdup_nul -EXPORT_SYMBOL vmlinux 0xb3f7646e kthread_should_stop -EXPORT_SYMBOL vmlinux 0xb3f9c53e generic_block_bmap -EXPORT_SYMBOL vmlinux 0xb3ff009c crypto_sha256_update -EXPORT_SYMBOL vmlinux 0xb3ff95e7 kobject_init -EXPORT_SYMBOL vmlinux 0xb4043948 acpi_execute_simple_method -EXPORT_SYMBOL vmlinux 0xb409d89e __register_binfmt -EXPORT_SYMBOL vmlinux 0xb40f5292 _dev_notice -EXPORT_SYMBOL vmlinux 0xb4143586 _dev_info -EXPORT_SYMBOL vmlinux 0xb423dba1 console_blanked -EXPORT_SYMBOL vmlinux 0xb42f4519 eth_get_headlen -EXPORT_SYMBOL vmlinux 0xb433171e sg_miter_stop -EXPORT_SYMBOL vmlinux 0xb43c28e5 devm_kvasprintf -EXPORT_SYMBOL vmlinux 0xb4577003 acpi_dev_present -EXPORT_SYMBOL vmlinux 0xb45d8e28 input_handler_for_each_handle -EXPORT_SYMBOL vmlinux 0xb46d8a59 always_delete_dentry -EXPORT_SYMBOL vmlinux 0xb4868bc2 sock_common_setsockopt -EXPORT_SYMBOL vmlinux 0xb48d4d22 security_sb_eat_lsm_opts -EXPORT_SYMBOL vmlinux 0xb49514ae bioset_integrity_create -EXPORT_SYMBOL vmlinux 0xb49bea4e nf_log_bind_pf -EXPORT_SYMBOL vmlinux 0xb4a53964 tcp_v4_destroy_sock -EXPORT_SYMBOL vmlinux 0xb4b7f2fd d_invalidate -EXPORT_SYMBOL vmlinux 0xb4cf94b5 fiemap_prep -EXPORT_SYMBOL vmlinux 0xb4d671db __dev_get_by_flags -EXPORT_SYMBOL vmlinux 0xb4eaea1f genphy_resume -EXPORT_SYMBOL vmlinux 0xb4f13d2a abort -EXPORT_SYMBOL vmlinux 0xb4fa5214 netdev_lower_state_changed -EXPORT_SYMBOL vmlinux 0xb513c4d2 genphy_loopback -EXPORT_SYMBOL vmlinux 0xb5144d6c devm_clk_put -EXPORT_SYMBOL vmlinux 0xb518c4d0 __mod_node_page_state -EXPORT_SYMBOL vmlinux 0xb525b510 pci_get_slot -EXPORT_SYMBOL vmlinux 0xb52d5bd3 __skb_flow_get_ports -EXPORT_SYMBOL vmlinux 0xb53f2810 tcp_sockets_allocated -EXPORT_SYMBOL vmlinux 0xb546caab dcache_dir_open -EXPORT_SYMBOL vmlinux 0xb549a85c compat_ptr_ioctl -EXPORT_SYMBOL vmlinux 0xb54d7b5a mipi_dsi_dcs_get_display_brightness -EXPORT_SYMBOL vmlinux 0xb572c1f8 mmc_detect_change -EXPORT_SYMBOL vmlinux 0xb57343c2 frontswap_shrink -EXPORT_SYMBOL vmlinux 0xb577cc70 of_phy_find_device -EXPORT_SYMBOL vmlinux 0xb57f1e27 fman_port_disable -EXPORT_SYMBOL vmlinux 0xb5834138 neigh_changeaddr -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 0xb5b63711 fileattr_fill_xflags -EXPORT_SYMBOL vmlinux 0xb5e312ce thermal_zone_device_critical -EXPORT_SYMBOL vmlinux 0xb5e73116 flush_delayed_work -EXPORT_SYMBOL vmlinux 0xb600d8ec dquot_initialize_needed -EXPORT_SYMBOL vmlinux 0xb60e0765 unregister_qdisc -EXPORT_SYMBOL vmlinux 0xb611d32d path_has_submounts -EXPORT_SYMBOL vmlinux 0xb61d6fc2 down_read_interruptible -EXPORT_SYMBOL vmlinux 0xb633f115 irq_poll_enable -EXPORT_SYMBOL vmlinux 0xb654ef65 acpi_os_read_port -EXPORT_SYMBOL vmlinux 0xb666d3ea phy_ethtool_get_stats -EXPORT_SYMBOL vmlinux 0xb66fcdd7 phy_attach_direct -EXPORT_SYMBOL vmlinux 0xb678366f int_sqrt -EXPORT_SYMBOL vmlinux 0xb679a3b6 inode_set_flags -EXPORT_SYMBOL vmlinux 0xb67c9280 utf8cursor -EXPORT_SYMBOL vmlinux 0xb67fec0e uuid_parse -EXPORT_SYMBOL vmlinux 0xb6876663 md_check_recovery -EXPORT_SYMBOL vmlinux 0xb68d419a pci_bus_find_capability -EXPORT_SYMBOL vmlinux 0xb6936ffe _bcd2bin -EXPORT_SYMBOL vmlinux 0xb6acaa13 phy_sfp_detach -EXPORT_SYMBOL vmlinux 0xb6b7ed48 nf_ct_get_tuple_skb -EXPORT_SYMBOL vmlinux 0xb6e36ce2 psched_ratecfg_precompute -EXPORT_SYMBOL vmlinux 0xb6ee3782 cdev_init -EXPORT_SYMBOL vmlinux 0xb6f63a17 md_bitmap_startwrite -EXPORT_SYMBOL vmlinux 0xb6fde909 close_fd -EXPORT_SYMBOL vmlinux 0xb7085cf0 tty_port_lower_dtr_rts -EXPORT_SYMBOL vmlinux 0xb71589f0 skip_spaces -EXPORT_SYMBOL vmlinux 0xb71d95ac xfrm_lookup -EXPORT_SYMBOL vmlinux 0xb71e9836 mdio_bus_type -EXPORT_SYMBOL vmlinux 0xb71ed69f __hw_addr_unsync -EXPORT_SYMBOL vmlinux 0xb731ae86 dev_loopback_xmit -EXPORT_SYMBOL vmlinux 0xb73509b8 __mdiobus_register -EXPORT_SYMBOL vmlinux 0xb737b185 gen_pool_best_fit -EXPORT_SYMBOL vmlinux 0xb74a3d99 ipmr_rule_default -EXPORT_SYMBOL vmlinux 0xb764df32 pcix_get_max_mmrbc -EXPORT_SYMBOL vmlinux 0xb7688155 ucc_slow_init -EXPORT_SYMBOL vmlinux 0xb76be1cb __scm_destroy -EXPORT_SYMBOL vmlinux 0xb77cb773 dma_unmap_page_attrs -EXPORT_SYMBOL vmlinux 0xb77e1ffc ip_mc_leave_group -EXPORT_SYMBOL vmlinux 0xb7811c4d md_reap_sync_thread -EXPORT_SYMBOL vmlinux 0xb784154f utf8_casefold_hash -EXPORT_SYMBOL vmlinux 0xb788fb30 gic_pmr_sync -EXPORT_SYMBOL vmlinux 0xb789887d scsi_device_set_state -EXPORT_SYMBOL vmlinux 0xb78debe3 LZ4_decompress_fast_usingDict -EXPORT_SYMBOL vmlinux 0xb7b2cc8d serio_reconnect -EXPORT_SYMBOL vmlinux 0xb7b7fa6e node_states -EXPORT_SYMBOL vmlinux 0xb7bb7e5e seq_path -EXPORT_SYMBOL vmlinux 0xb7c0f443 sort -EXPORT_SYMBOL vmlinux 0xb7c6db70 sysctl_max_skb_frags -EXPORT_SYMBOL vmlinux 0xb7d6f255 vme_dma_list_exec -EXPORT_SYMBOL vmlinux 0xb7d7ca13 mount_bdev -EXPORT_SYMBOL vmlinux 0xb8197f09 mmc_retune_unpause -EXPORT_SYMBOL vmlinux 0xb82e40c1 drop_super_exclusive -EXPORT_SYMBOL vmlinux 0xb83129db ZSTD_decompressContinue -EXPORT_SYMBOL vmlinux 0xb83abfc2 xfrm_unregister_km -EXPORT_SYMBOL vmlinux 0xb842716c qcom_scm_ocmem_lock_available -EXPORT_SYMBOL vmlinux 0xb8605d9c qman_p_static_dequeue_add -EXPORT_SYMBOL vmlinux 0xb86274c6 rproc_coredump_using_sections -EXPORT_SYMBOL vmlinux 0xb868ac5c register_sysrq_key -EXPORT_SYMBOL vmlinux 0xb86fde1a dev_activate -EXPORT_SYMBOL vmlinux 0xb87b9c43 devm_backlight_device_unregister -EXPORT_SYMBOL vmlinux 0xb87da665 mipi_dsi_dcs_set_page_address -EXPORT_SYMBOL vmlinux 0xb88fd035 set_groups -EXPORT_SYMBOL vmlinux 0xb89b6e6b guid_parse -EXPORT_SYMBOL vmlinux 0xb89c6fda vme_slave_request -EXPORT_SYMBOL vmlinux 0xb8b043f2 kfree_link -EXPORT_SYMBOL vmlinux 0xb8b9f817 kmalloc_order_trace -EXPORT_SYMBOL vmlinux 0xb8ed2a57 fault_in_iov_iter_writeable -EXPORT_SYMBOL vmlinux 0xb8fc814d unpin_user_pages -EXPORT_SYMBOL vmlinux 0xb9056bb6 remove_conflicting_framebuffers -EXPORT_SYMBOL vmlinux 0xb907513f unpoison_memory -EXPORT_SYMBOL vmlinux 0xb911bb58 minmax_running_max -EXPORT_SYMBOL vmlinux 0xb913d609 tcp_v4_md5_hash_skb -EXPORT_SYMBOL vmlinux 0xb9185836 mipi_dsi_dcs_nop -EXPORT_SYMBOL vmlinux 0xb9282dd5 sync_file_create -EXPORT_SYMBOL vmlinux 0xb92d7252 blk_post_runtime_resume -EXPORT_SYMBOL vmlinux 0xb94339c4 qdisc_put_stab -EXPORT_SYMBOL vmlinux 0xb9478d90 hdmi_drm_infoframe_unpack_only -EXPORT_SYMBOL vmlinux 0xb94e26dd jbd2_journal_wipe -EXPORT_SYMBOL vmlinux 0xb96cf884 nvdimm_bus_lock -EXPORT_SYMBOL vmlinux 0xb97220ff bitmap_parse -EXPORT_SYMBOL vmlinux 0xb97d090c dev_set_threaded -EXPORT_SYMBOL vmlinux 0xb9986e4e mod_node_page_state -EXPORT_SYMBOL vmlinux 0xb99da417 devm_devfreq_remove_device -EXPORT_SYMBOL vmlinux 0xb9a3ba9b dev_set_group -EXPORT_SYMBOL vmlinux 0xb9af1d0d __xa_clear_mark -EXPORT_SYMBOL vmlinux 0xb9b3047c mipi_dsi_dcs_set_pixel_format -EXPORT_SYMBOL vmlinux 0xb9bf2f9a __mmap_lock_do_trace_released -EXPORT_SYMBOL vmlinux 0xb9e0dcce dquot_writeback_dquots -EXPORT_SYMBOL vmlinux 0xb9e8e2cc in6addr_sitelocal_allrouters -EXPORT_SYMBOL vmlinux 0xb9ec5bda phy_start_cable_test -EXPORT_SYMBOL vmlinux 0xb9fc381a qcom_scm_hdcp_req -EXPORT_SYMBOL vmlinux 0xba0676e2 vm_zone_stat -EXPORT_SYMBOL vmlinux 0xba1008c8 __crc32c_le -EXPORT_SYMBOL vmlinux 0xba33b8a8 prepare_kernel_cred -EXPORT_SYMBOL vmlinux 0xba3f1f3a inet_bind -EXPORT_SYMBOL vmlinux 0xba3f7de7 alloc_pages_vma -EXPORT_SYMBOL vmlinux 0xba497f13 loops_per_jiffy -EXPORT_SYMBOL vmlinux 0xba49c21f __xfrm_policy_check -EXPORT_SYMBOL vmlinux 0xba53adab nla_policy_len -EXPORT_SYMBOL vmlinux 0xba707a78 qe_get_brg_clk -EXPORT_SYMBOL vmlinux 0xbad48964 scsi_host_put -EXPORT_SYMBOL vmlinux 0xbb0540aa zlib_inflateReset -EXPORT_SYMBOL vmlinux 0xbb1c4b82 cdev_alloc -EXPORT_SYMBOL vmlinux 0xbb21260e convert_ifc_address -EXPORT_SYMBOL vmlinux 0xbb24f607 init_cdrom_command -EXPORT_SYMBOL vmlinux 0xbb2e307d iov_iter_bvec -EXPORT_SYMBOL vmlinux 0xbb35675b __bitmap_intersects -EXPORT_SYMBOL vmlinux 0xbb4f4766 simple_write_to_buffer -EXPORT_SYMBOL vmlinux 0xbb4fe0fb inode_insert5 -EXPORT_SYMBOL vmlinux 0xbb5993bc tcf_idrinfo_destroy -EXPORT_SYMBOL vmlinux 0xbb5c52d6 flow_block_cb_priv -EXPORT_SYMBOL vmlinux 0xbb687724 bman_new_pool -EXPORT_SYMBOL vmlinux 0xbb6af921 fs_param_is_u32 -EXPORT_SYMBOL vmlinux 0xbb784a20 dcb_ieee_getapp_default_prio_mask -EXPORT_SYMBOL vmlinux 0xbb78c4d2 nosteal_pipe_buf_ops -EXPORT_SYMBOL vmlinux 0xbb823c44 ip6_frag_next -EXPORT_SYMBOL vmlinux 0xbb93d51b xfrm6_rcv_encap -EXPORT_SYMBOL vmlinux 0xbb9a2751 is_acpi_data_node -EXPORT_SYMBOL vmlinux 0xbb9b78cb gnet_stats_copy_rate_est -EXPORT_SYMBOL vmlinux 0xbb9ed3bf mutex_trylock -EXPORT_SYMBOL vmlinux 0xbbc14e85 import_iovec -EXPORT_SYMBOL vmlinux 0xbbd2ece7 netdev_lower_get_next_private -EXPORT_SYMBOL vmlinux 0xbbd72364 eth_platform_get_mac_address -EXPORT_SYMBOL vmlinux 0xbbe80fdb kmalloc_order -EXPORT_SYMBOL vmlinux 0xbbfa5794 free_cgroup_ns -EXPORT_SYMBOL vmlinux 0xbbfe6bd3 remove_watch_from_object -EXPORT_SYMBOL vmlinux 0xbc11a81f scsi_eh_finish_cmd -EXPORT_SYMBOL vmlinux 0xbc155f4c get_user_pages -EXPORT_SYMBOL vmlinux 0xbc174ea0 fb_class -EXPORT_SYMBOL vmlinux 0xbc2031de acpi_processor_get_bios_limit -EXPORT_SYMBOL vmlinux 0xbc468c16 pci_find_capability -EXPORT_SYMBOL vmlinux 0xbc6fcc67 processors -EXPORT_SYMBOL vmlinux 0xbc9fc022 of_chosen -EXPORT_SYMBOL vmlinux 0xbcaa039e configfs_depend_item -EXPORT_SYMBOL vmlinux 0xbcab6ee6 sscanf -EXPORT_SYMBOL vmlinux 0xbcbc59f6 nf_reinject -EXPORT_SYMBOL vmlinux 0xbcc107c5 param_ops_int -EXPORT_SYMBOL vmlinux 0xbcd464f4 skb_find_text -EXPORT_SYMBOL vmlinux 0xbd3d3afa cont_write_begin -EXPORT_SYMBOL vmlinux 0xbd462b55 __kfifo_init -EXPORT_SYMBOL vmlinux 0xbd5245a7 devfreq_register_opp_notifier -EXPORT_SYMBOL vmlinux 0xbd628752 __tracepoint_mmap_lock_start_locking -EXPORT_SYMBOL vmlinux 0xbd670258 __mdiobus_read -EXPORT_SYMBOL vmlinux 0xbd6841d4 crc16 -EXPORT_SYMBOL vmlinux 0xbd8b22a0 cfb_copyarea -EXPORT_SYMBOL vmlinux 0xbd96e20f udp6_set_csum -EXPORT_SYMBOL vmlinux 0xbd9ffb72 bprm_change_interp -EXPORT_SYMBOL vmlinux 0xbda8e977 scm_detach_fds -EXPORT_SYMBOL vmlinux 0xbdb1dd32 rpmh_write_async -EXPORT_SYMBOL vmlinux 0xbdf80f49 register_framebuffer -EXPORT_SYMBOL vmlinux 0xbe09eb28 tcp_syn_ack_timeout -EXPORT_SYMBOL vmlinux 0xbe118c52 __tracepoint_mmap_lock_acquire_returned -EXPORT_SYMBOL vmlinux 0xbe1427af __printk_cpu_unlock -EXPORT_SYMBOL vmlinux 0xbe23466b blk_queue_split -EXPORT_SYMBOL vmlinux 0xbe245f60 tcp_openreq_init_rwin -EXPORT_SYMBOL vmlinux 0xbe32ac51 inet_accept -EXPORT_SYMBOL vmlinux 0xbe49252c acpi_os_write_port -EXPORT_SYMBOL vmlinux 0xbe4ac458 mipi_dsi_driver_unregister -EXPORT_SYMBOL vmlinux 0xbe4eb6ed secure_dccpv6_sequence_number -EXPORT_SYMBOL vmlinux 0xbe4ef870 napi_enable -EXPORT_SYMBOL vmlinux 0xbe5200be __mod_zone_page_state -EXPORT_SYMBOL vmlinux 0xbe5358e0 registered_fb -EXPORT_SYMBOL vmlinux 0xbe5a24e9 xxh32_copy_state -EXPORT_SYMBOL vmlinux 0xbe64bf23 genphy_update_link -EXPORT_SYMBOL vmlinux 0xbe6818cc pcie_get_mps -EXPORT_SYMBOL vmlinux 0xbe6960c6 xfrm_policy_delete -EXPORT_SYMBOL vmlinux 0xbe6a866f __wait_on_bit -EXPORT_SYMBOL vmlinux 0xbe6b6faf no_seek_end_llseek_size -EXPORT_SYMBOL vmlinux 0xbe745276 lru_cache_add -EXPORT_SYMBOL vmlinux 0xbe78e372 n_tty_ioctl_helper -EXPORT_SYMBOL vmlinux 0xbe7e05a8 acpi_tb_install_and_load_table -EXPORT_SYMBOL vmlinux 0xbe80262e devm_rproc_add -EXPORT_SYMBOL vmlinux 0xbe83f988 udp_seq_stop -EXPORT_SYMBOL vmlinux 0xbe84c8c4 generic_pipe_buf_try_steal -EXPORT_SYMBOL vmlinux 0xbebbb99f i2c_smbus_write_byte -EXPORT_SYMBOL vmlinux 0xbec522c2 scsi_change_queue_depth -EXPORT_SYMBOL vmlinux 0xbec8c308 rio_query_mport -EXPORT_SYMBOL vmlinux 0xbeed42bf qdisc_watchdog_init_clockid -EXPORT_SYMBOL vmlinux 0xbef43296 console_conditional_schedule -EXPORT_SYMBOL vmlinux 0xbefa51a3 gen_pool_add_owner -EXPORT_SYMBOL vmlinux 0xbefd49b6 generic_writepages -EXPORT_SYMBOL vmlinux 0xbf03d71e __skb_checksum -EXPORT_SYMBOL vmlinux 0xbf08e3ab vfs_getattr_nosec -EXPORT_SYMBOL vmlinux 0xbf21cbc0 of_get_next_cpu_node -EXPORT_SYMBOL vmlinux 0xbf2aa7c7 rawv6_mh_filter_unregister -EXPORT_SYMBOL vmlinux 0xbf539f3b pci_bus_read_dev_vendor_id -EXPORT_SYMBOL vmlinux 0xbf59c419 posix_acl_init -EXPORT_SYMBOL vmlinux 0xbf6baf5b neigh_connected_output -EXPORT_SYMBOL vmlinux 0xbf78d020 blk_queue_max_write_zeroes_sectors -EXPORT_SYMBOL vmlinux 0xbf7bff44 rproc_elf_sanity_check -EXPORT_SYMBOL vmlinux 0xbf80315f tcp_gro_complete -EXPORT_SYMBOL vmlinux 0xbf87111a mdiobus_read_nested -EXPORT_SYMBOL vmlinux 0xbf9bcc8d __cap_empty_set -EXPORT_SYMBOL vmlinux 0xbfc9eba4 free_buffer_head -EXPORT_SYMBOL vmlinux 0xbfcbc0d2 stmp_reset_block -EXPORT_SYMBOL vmlinux 0xbfd43c75 padata_do_parallel -EXPORT_SYMBOL vmlinux 0xbfe252bf pci_get_class -EXPORT_SYMBOL vmlinux 0xbfee3ad5 loop_unregister_transfer -EXPORT_SYMBOL vmlinux 0xbff14bc1 sk_capable -EXPORT_SYMBOL vmlinux 0xc028b870 dump_skip -EXPORT_SYMBOL vmlinux 0xc033e845 device_match_acpi_dev -EXPORT_SYMBOL vmlinux 0xc0364007 fault_in_writeable -EXPORT_SYMBOL vmlinux 0xc03a4763 dm_kobject_release -EXPORT_SYMBOL vmlinux 0xc0470353 dev_driver_string -EXPORT_SYMBOL vmlinux 0xc047b553 unpin_user_pages_dirty_lock -EXPORT_SYMBOL vmlinux 0xc067b5eb sock_bindtoindex -EXPORT_SYMBOL vmlinux 0xc0763484 rfkill_blocked -EXPORT_SYMBOL vmlinux 0xc07b0863 fb_destroy_modedb -EXPORT_SYMBOL vmlinux 0xc0843561 tty_hangup -EXPORT_SYMBOL vmlinux 0xc0a7eab7 skb_tunnel_check_pmtu -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 0xc0c55791 lookup_positive_unlocked -EXPORT_SYMBOL vmlinux 0xc0d09e57 blk_sync_queue -EXPORT_SYMBOL vmlinux 0xc0e89326 capable_wrt_inode_uidgid -EXPORT_SYMBOL vmlinux 0xc0ea4199 iov_iter_discard -EXPORT_SYMBOL vmlinux 0xc0ff12fb nla_strdup -EXPORT_SYMBOL vmlinux 0xc0ff21c1 input_get_new_minor -EXPORT_SYMBOL vmlinux 0xc10a6000 simple_lookup -EXPORT_SYMBOL vmlinux 0xc10bfab8 PDE_DATA -EXPORT_SYMBOL vmlinux 0xc1251c8e __scsi_add_device -EXPORT_SYMBOL vmlinux 0xc12cb86d __sk_backlog_rcv -EXPORT_SYMBOL vmlinux 0xc14dc168 acpi_get_data -EXPORT_SYMBOL vmlinux 0xc1514a3b free_irq -EXPORT_SYMBOL vmlinux 0xc1579516 fman_port_enable -EXPORT_SYMBOL vmlinux 0xc160500f inet_put_port -EXPORT_SYMBOL vmlinux 0xc16410b9 ZSTD_getDictID_fromDDict -EXPORT_SYMBOL vmlinux 0xc164a51c keygen_init -EXPORT_SYMBOL vmlinux 0xc16be39d iter_div_u64_rem -EXPORT_SYMBOL vmlinux 0xc18d4523 blk_mq_complete_request -EXPORT_SYMBOL vmlinux 0xc1ae28f9 generic_file_read_iter -EXPORT_SYMBOL vmlinux 0xc1b04dec free_task -EXPORT_SYMBOL vmlinux 0xc1d5d504 scsi_cmd_allowed -EXPORT_SYMBOL vmlinux 0xc1d746eb __cpuhp_setup_state_cpuslocked -EXPORT_SYMBOL vmlinux 0xc1d8cfaf __fdget -EXPORT_SYMBOL vmlinux 0xc1e0ca24 ps2_handle_response -EXPORT_SYMBOL vmlinux 0xc1e2c742 tegra_io_rail_power_on -EXPORT_SYMBOL vmlinux 0xc1e65834 _copy_to_iter -EXPORT_SYMBOL vmlinux 0xc1f138db __insert_inode_hash -EXPORT_SYMBOL vmlinux 0xc1f2a62c send_sig_info -EXPORT_SYMBOL vmlinux 0xc2050974 fman_port_get_tstamp -EXPORT_SYMBOL vmlinux 0xc2310cdc logic_inl -EXPORT_SYMBOL vmlinux 0xc233e923 devm_of_clk_del_provider -EXPORT_SYMBOL vmlinux 0xc235e805 vga_client_register -EXPORT_SYMBOL vmlinux 0xc24c8567 kernel_param_unlock -EXPORT_SYMBOL vmlinux 0xc25911d6 invalidate_inode_buffers -EXPORT_SYMBOL vmlinux 0xc267960e utf8_validate -EXPORT_SYMBOL vmlinux 0xc267a0d0 read_cache_pages -EXPORT_SYMBOL vmlinux 0xc26b0a60 i2c_verify_adapter -EXPORT_SYMBOL vmlinux 0xc278dcc5 inet_addr_type -EXPORT_SYMBOL vmlinux 0xc27dbe64 address_space_init_once -EXPORT_SYMBOL vmlinux 0xc286a9fb d_make_root -EXPORT_SYMBOL vmlinux 0xc29bf967 strspn -EXPORT_SYMBOL vmlinux 0xc2a17ebe seqno_fence_ops -EXPORT_SYMBOL vmlinux 0xc2a4601a devm_pci_remap_cfg_resource -EXPORT_SYMBOL vmlinux 0xc2b1b495 fuse_mount_destroy -EXPORT_SYMBOL vmlinux 0xc2d08661 of_platform_device_create -EXPORT_SYMBOL vmlinux 0xc2d4a6a8 of_pci_range_to_resource -EXPORT_SYMBOL vmlinux 0xc2e168ab caches_clean_inval_pou -EXPORT_SYMBOL vmlinux 0xc2e587d1 reset_devices -EXPORT_SYMBOL vmlinux 0xc2f11eac meson_sm_call_read -EXPORT_SYMBOL vmlinux 0xc2f4c07c fb_pan_display -EXPORT_SYMBOL vmlinux 0xc2f52274 __lshrti3 -EXPORT_SYMBOL vmlinux 0xc2ff8017 xfrm6_protocol_deregister -EXPORT_SYMBOL vmlinux 0xc3055d20 usleep_range_state -EXPORT_SYMBOL vmlinux 0xc310b981 strnstr -EXPORT_SYMBOL vmlinux 0xc318d59d dquot_get_dqblk -EXPORT_SYMBOL vmlinux 0xc31db0ce is_vmalloc_addr -EXPORT_SYMBOL vmlinux 0xc324345a mmc_gpiod_request_ro -EXPORT_SYMBOL vmlinux 0xc32c71af register_inetaddr_validator_notifier -EXPORT_SYMBOL vmlinux 0xc33cc199 __lock_page -EXPORT_SYMBOL vmlinux 0xc349ed11 phy_reset_after_clk_enable -EXPORT_SYMBOL vmlinux 0xc35a1946 __mark_inode_dirty -EXPORT_SYMBOL vmlinux 0xc36a3bd4 __acpi_handle_debug -EXPORT_SYMBOL vmlinux 0xc3762aec mempool_alloc -EXPORT_SYMBOL vmlinux 0xc37f9c6e cpufreq_update_policy -EXPORT_SYMBOL vmlinux 0xc382585c get_ipc_ns_exported -EXPORT_SYMBOL vmlinux 0xc38c83b8 mod_timer -EXPORT_SYMBOL vmlinux 0xc39091e9 jbd2_journal_put_journal_head -EXPORT_SYMBOL vmlinux 0xc3bc72ad trace_print_array_seq -EXPORT_SYMBOL vmlinux 0xc3c617b3 param_get_string -EXPORT_SYMBOL vmlinux 0xc3c99b3a netif_set_xps_queue -EXPORT_SYMBOL vmlinux 0xc3c9e28b of_graph_get_port_parent -EXPORT_SYMBOL vmlinux 0xc3cd034d crc8_populate_lsb -EXPORT_SYMBOL vmlinux 0xc3d3521a vfs_mkobj -EXPORT_SYMBOL vmlinux 0xc3f41fd0 skb_abort_seq_read -EXPORT_SYMBOL vmlinux 0xc3ff38c2 down_read_trylock -EXPORT_SYMBOL vmlinux 0xc40478d2 tso_count_descs -EXPORT_SYMBOL vmlinux 0xc41795d1 scsi_is_host_device -EXPORT_SYMBOL vmlinux 0xc41bc980 iwe_stream_add_value -EXPORT_SYMBOL vmlinux 0xc4212ab9 qdisc_class_hash_insert -EXPORT_SYMBOL vmlinux 0xc422d46e netdev_refcnt_read -EXPORT_SYMBOL vmlinux 0xc42dcb99 acpi_evaluate_ost -EXPORT_SYMBOL vmlinux 0xc453c09a jbd2_fc_begin_commit -EXPORT_SYMBOL vmlinux 0xc4708199 cpm_muram_addr -EXPORT_SYMBOL vmlinux 0xc4777aa9 __ctzsi2 -EXPORT_SYMBOL vmlinux 0xc4b21d2f qman_get_affine_portal -EXPORT_SYMBOL vmlinux 0xc4b951fc __breadahead -EXPORT_SYMBOL vmlinux 0xc4c635da submit_bio_wait -EXPORT_SYMBOL vmlinux 0xc507467e grab_cache_page_write_begin -EXPORT_SYMBOL vmlinux 0xc50bda7a mr_mfc_find_any -EXPORT_SYMBOL vmlinux 0xc511f517 tegra_prod_set_list -EXPORT_SYMBOL vmlinux 0xc514f1ea __netdev_notify_peers -EXPORT_SYMBOL vmlinux 0xc528a49a queued_write_lock_slowpath -EXPORT_SYMBOL vmlinux 0xc532b3f2 fqdir_exit -EXPORT_SYMBOL vmlinux 0xc566375c __xfrm_dst_lookup -EXPORT_SYMBOL vmlinux 0xc56a41e6 vabits_actual -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 0xc5a1d706 genphy_handle_interrupt_no_ack -EXPORT_SYMBOL vmlinux 0xc5a3367a __tracepoint_dma_fence_emit -EXPORT_SYMBOL vmlinux 0xc5b6f236 queue_work_on -EXPORT_SYMBOL vmlinux 0xc5bee528 pin_user_pages -EXPORT_SYMBOL vmlinux 0xc5cdae51 dquot_get_state -EXPORT_SYMBOL vmlinux 0xc5d3ce09 kthread_create_on_node -EXPORT_SYMBOL vmlinux 0xc5d5fb5e dcb_ieee_setapp -EXPORT_SYMBOL vmlinux 0xc5e74216 release_resource -EXPORT_SYMBOL vmlinux 0xc5e88263 inet_del_protocol -EXPORT_SYMBOL vmlinux 0xc5f7e801 sg_last -EXPORT_SYMBOL vmlinux 0xc60d0620 __num_online_cpus -EXPORT_SYMBOL vmlinux 0xc622556f prepare_to_wait_exclusive -EXPORT_SYMBOL vmlinux 0xc631580a console_unlock -EXPORT_SYMBOL vmlinux 0xc633d82d phy_unregister_fixup -EXPORT_SYMBOL vmlinux 0xc634846e reuseport_add_sock -EXPORT_SYMBOL vmlinux 0xc6531be3 dcache_dir_close -EXPORT_SYMBOL vmlinux 0xc653360d nf_ip_checksum -EXPORT_SYMBOL vmlinux 0xc65e4e97 secure_dccp_sequence_number -EXPORT_SYMBOL vmlinux 0xc666a132 crc_t10dif -EXPORT_SYMBOL vmlinux 0xc66a8304 cpu_rmap_add -EXPORT_SYMBOL vmlinux 0xc66ad1c5 backlight_device_get_by_name -EXPORT_SYMBOL vmlinux 0xc6702791 bdev_read_only -EXPORT_SYMBOL vmlinux 0xc67cd3e7 devm_devfreq_add_device -EXPORT_SYMBOL vmlinux 0xc67e2714 add_to_page_cache_locked -EXPORT_SYMBOL vmlinux 0xc69a7300 generic_key_instantiate -EXPORT_SYMBOL vmlinux 0xc69fce52 qcom_scm_qsmmu500_wait_safe_toggle -EXPORT_SYMBOL vmlinux 0xc6b6d45d dma_resv_add_excl_fence -EXPORT_SYMBOL vmlinux 0xc6bf8278 block_write_end -EXPORT_SYMBOL vmlinux 0xc6cb465a __kfifo_max_r -EXPORT_SYMBOL vmlinux 0xc6cbbc89 capable -EXPORT_SYMBOL vmlinux 0xc6ccb4dc configfs_register_default_group -EXPORT_SYMBOL vmlinux 0xc6d09aa9 release_firmware -EXPORT_SYMBOL vmlinux 0xc6d11478 get_cached_acl -EXPORT_SYMBOL vmlinux 0xc6d43547 fwnode_mdio_find_device -EXPORT_SYMBOL vmlinux 0xc6f3b3fc refcount_dec_if_one -EXPORT_SYMBOL vmlinux 0xc6f46339 init_timer_key -EXPORT_SYMBOL vmlinux 0xc6feb6a5 tty_port_tty_get -EXPORT_SYMBOL vmlinux 0xc6ff4b88 ip_sock_set_mtu_discover -EXPORT_SYMBOL vmlinux 0xc708f1fe ec_write -EXPORT_SYMBOL vmlinux 0xc7208c3a serial8250_resume_port -EXPORT_SYMBOL vmlinux 0xc781bd9f rfkill_resume_polling -EXPORT_SYMBOL vmlinux 0xc784b86f input_mt_drop_unused -EXPORT_SYMBOL vmlinux 0xc7856a3d inet6addr_notifier_call_chain -EXPORT_SYMBOL vmlinux 0xc7a4fbed rtnl_lock -EXPORT_SYMBOL vmlinux 0xc7a90908 vm_map_pages_zero -EXPORT_SYMBOL vmlinux 0xc7ac1f44 sock_no_connect -EXPORT_SYMBOL vmlinux 0xc7c1107a LZ4_decompress_safe -EXPORT_SYMBOL vmlinux 0xc7d007a6 md_update_sb -EXPORT_SYMBOL vmlinux 0xc7d094b5 dm_read_arg_group -EXPORT_SYMBOL vmlinux 0xc80ab559 swake_up_one -EXPORT_SYMBOL vmlinux 0xc838c3f5 __ashrti3 -EXPORT_SYMBOL vmlinux 0xc83b1d02 netif_set_real_num_queues -EXPORT_SYMBOL vmlinux 0xc83b335f posix_acl_update_mode -EXPORT_SYMBOL vmlinux 0xc83c7b34 mmc_calc_max_discard -EXPORT_SYMBOL vmlinux 0xc8443351 inet_listen -EXPORT_SYMBOL vmlinux 0xc8471897 dma_map_page_attrs -EXPORT_SYMBOL vmlinux 0xc849ae97 mpage_readahead -EXPORT_SYMBOL vmlinux 0xc84a0a7e seq_hlist_start_rcu -EXPORT_SYMBOL vmlinux 0xc84dd209 pci_ep_cfs_remove_epf_group -EXPORT_SYMBOL vmlinux 0xc872fd85 in6addr_interfacelocal_allnodes -EXPORT_SYMBOL vmlinux 0xc87531b3 dquot_scan_active -EXPORT_SYMBOL vmlinux 0xc8827b75 sysctl_vals -EXPORT_SYMBOL vmlinux 0xc88d7507 filemap_fdatawrite -EXPORT_SYMBOL vmlinux 0xc890c008 zlib_deflateEnd -EXPORT_SYMBOL vmlinux 0xc89457ea tc_setup_cb_call -EXPORT_SYMBOL vmlinux 0xc8956f8e devm_extcon_register_notifier_all -EXPORT_SYMBOL vmlinux 0xc89846c4 xudma_tchanrt_read -EXPORT_SYMBOL vmlinux 0xc8a91f5b cpumask_local_spread -EXPORT_SYMBOL vmlinux 0xc8bd0b0c param_ops_invbool -EXPORT_SYMBOL vmlinux 0xc8c2437d t10_pi_type3_crc -EXPORT_SYMBOL vmlinux 0xc8d406b6 mmc_request_done -EXPORT_SYMBOL vmlinux 0xc8daad84 vfs_dup_fs_context -EXPORT_SYMBOL vmlinux 0xc8dcc62a krealloc -EXPORT_SYMBOL vmlinux 0xc8f1d70a dma_alloc_attrs -EXPORT_SYMBOL vmlinux 0xc916dd46 __SCK__tp_func_kmalloc -EXPORT_SYMBOL vmlinux 0xc91af25c balance_dirty_pages_ratelimited -EXPORT_SYMBOL vmlinux 0xc9222a5c csum_and_copy_from_iter -EXPORT_SYMBOL vmlinux 0xc92ade81 security_lock_kernel_down -EXPORT_SYMBOL vmlinux 0xc9319efa pci_bus_write_config_word -EXPORT_SYMBOL vmlinux 0xc93e8461 acpi_get_event_resources -EXPORT_SYMBOL vmlinux 0xc94324e0 of_find_compatible_node -EXPORT_SYMBOL vmlinux 0xc9490a17 of_clk_get_by_name -EXPORT_SYMBOL vmlinux 0xc94cf119 jbd2_journal_flush -EXPORT_SYMBOL vmlinux 0xc962582c scsi_block_when_processing_errors -EXPORT_SYMBOL vmlinux 0xc9634df9 in6addr_linklocal_allrouters -EXPORT_SYMBOL vmlinux 0xc9663fc9 inet6_unregister_protosw -EXPORT_SYMBOL vmlinux 0xc972449f mempool_alloc_slab -EXPORT_SYMBOL vmlinux 0xc9822234 clk_register_clkdev -EXPORT_SYMBOL vmlinux 0xc9831ad7 flow_keys_dissector -EXPORT_SYMBOL vmlinux 0xc98812f7 vme_lm_request -EXPORT_SYMBOL vmlinux 0xc98aee6a netif_rx_any_context -EXPORT_SYMBOL vmlinux 0xc99e2a55 twl_rev -EXPORT_SYMBOL vmlinux 0xc9c3461b devm_mdiobus_alloc_size -EXPORT_SYMBOL vmlinux 0xc9cb2caf of_mdiobus_child_is_phy -EXPORT_SYMBOL vmlinux 0xc9ccf4fa vfs_parse_fs_string -EXPORT_SYMBOL vmlinux 0xc9df055a xfrm_policy_walk_init -EXPORT_SYMBOL vmlinux 0xc9ed0401 imx_sc_rm_is_resource_owned -EXPORT_SYMBOL vmlinux 0xc9ed8d1b pm860x_bulk_write -EXPORT_SYMBOL vmlinux 0xc9f27e6f sk_stream_wait_connect -EXPORT_SYMBOL vmlinux 0xc9f6064e cdev_device_add -EXPORT_SYMBOL vmlinux 0xca0c7a4a t10_pi_type3_ip -EXPORT_SYMBOL vmlinux 0xca15413f ZSTD_resetDStream -EXPORT_SYMBOL vmlinux 0xca1c689b pps_lookup_dev -EXPORT_SYMBOL vmlinux 0xca21ebd3 bitmap_free -EXPORT_SYMBOL vmlinux 0xca431c05 wake_bit_function -EXPORT_SYMBOL vmlinux 0xca62afaf xudma_rflow_is_gp -EXPORT_SYMBOL vmlinux 0xca62d838 netlink_kernel_release -EXPORT_SYMBOL vmlinux 0xca6a3500 unregister_console -EXPORT_SYMBOL vmlinux 0xca817d2c vmf_insert_pfn_prot -EXPORT_SYMBOL vmlinux 0xca90541c textsearch_destroy -EXPORT_SYMBOL vmlinux 0xca9360b5 rb_next -EXPORT_SYMBOL vmlinux 0xca9beaa4 __xa_store -EXPORT_SYMBOL vmlinux 0xcaa1f604 neigh_direct_output -EXPORT_SYMBOL vmlinux 0xcaa50dcd jbd2_wait_inode_data -EXPORT_SYMBOL vmlinux 0xcaaf7545 scsi_alloc_sgtables -EXPORT_SYMBOL vmlinux 0xcabb4111 nonseekable_open -EXPORT_SYMBOL vmlinux 0xcaca3d21 flow_rule_match_ct -EXPORT_SYMBOL vmlinux 0xcad1aca8 acpi_exception -EXPORT_SYMBOL vmlinux 0xcaeb5c3c sock_diag_put_filterinfo -EXPORT_SYMBOL vmlinux 0xcaf2c603 scsi_sd_pm_domain -EXPORT_SYMBOL vmlinux 0xcb02a46a mmc_register_driver -EXPORT_SYMBOL vmlinux 0xcb1cdd6a vme_bus_type -EXPORT_SYMBOL vmlinux 0xcb232a65 flow_block_cb_alloc -EXPORT_SYMBOL vmlinux 0xcb3a05f9 __xfrm_decode_session -EXPORT_SYMBOL vmlinux 0xcb3ae215 call_blocking_lsm_notifier -EXPORT_SYMBOL vmlinux 0xcb3db994 audit_log_start -EXPORT_SYMBOL vmlinux 0xcb3eddbc blk_mq_rq_cpu -EXPORT_SYMBOL vmlinux 0xcb5556e0 PageMovable -EXPORT_SYMBOL vmlinux 0xcb5c3743 of_find_node_with_property -EXPORT_SYMBOL vmlinux 0xcb6cbbd3 fb_get_mode -EXPORT_SYMBOL vmlinux 0xcb733bf2 acpi_bus_set_power -EXPORT_SYMBOL vmlinux 0xcb83b065 __remove_inode_hash -EXPORT_SYMBOL vmlinux 0xcb8622cd tegra_ivc_init -EXPORT_SYMBOL vmlinux 0xcb98ad4d zpool_unregister_driver -EXPORT_SYMBOL vmlinux 0xcba1e01e cdrom_release -EXPORT_SYMBOL vmlinux 0xcbac5b52 tegra_dfll_runtime_suspend -EXPORT_SYMBOL vmlinux 0xcbaeac0e inet_frag_pull_head -EXPORT_SYMBOL vmlinux 0xcbb43324 ip_mc_join_group -EXPORT_SYMBOL vmlinux 0xcbb5ba22 tcp_initialize_rcv_mss -EXPORT_SYMBOL vmlinux 0xcbb9ecf8 nf_ip6_checksum -EXPORT_SYMBOL vmlinux 0xcbbdb719 wait_on_page_bit -EXPORT_SYMBOL vmlinux 0xcbc88a23 ZSTD_isFrame -EXPORT_SYMBOL vmlinux 0xcbcb7ec0 netdev_adjacent_change_prepare -EXPORT_SYMBOL vmlinux 0xcbd4898c fortify_panic -EXPORT_SYMBOL vmlinux 0xcbd48c80 mmc_can_trim -EXPORT_SYMBOL vmlinux 0xcbe69dd4 devfreq_update_status -EXPORT_SYMBOL vmlinux 0xcbeb9ed5 dev_getfirstbyhwtype -EXPORT_SYMBOL vmlinux 0xcbfb33e4 init_opal_dev -EXPORT_SYMBOL vmlinux 0xcc04b953 skb_copy_and_csum_bits -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 0xcc28f4a3 inode_init_owner -EXPORT_SYMBOL vmlinux 0xcc328a5c reservation_ww_class -EXPORT_SYMBOL vmlinux 0xcc3b5f12 fs_param_is_enum -EXPORT_SYMBOL vmlinux 0xcc41d75c pps_register_source -EXPORT_SYMBOL vmlinux 0xcc441def netdev_set_num_tc -EXPORT_SYMBOL vmlinux 0xcc441f4b page_pool_put_page -EXPORT_SYMBOL vmlinux 0xcc445ceb __sg_page_iter_dma_next -EXPORT_SYMBOL vmlinux 0xcc4c92cd ip_mc_check_igmp -EXPORT_SYMBOL vmlinux 0xcc5005fe msleep_interruptible -EXPORT_SYMBOL vmlinux 0xcc5143c6 security_task_getsecid_obj -EXPORT_SYMBOL vmlinux 0xcc53535a devm_clk_get_optional -EXPORT_SYMBOL vmlinux 0xcc5386ad tegra_ivc_read_get_next_frame -EXPORT_SYMBOL vmlinux 0xcc5c2df4 trace_print_symbols_seq -EXPORT_SYMBOL vmlinux 0xcc5ca1cc flow_block_cb_lookup -EXPORT_SYMBOL vmlinux 0xcc5d22d9 can_do_mlock -EXPORT_SYMBOL vmlinux 0xcc67e441 dquot_alloc -EXPORT_SYMBOL vmlinux 0xcc767b60 input_open_device -EXPORT_SYMBOL vmlinux 0xcc76c981 make_kuid -EXPORT_SYMBOL vmlinux 0xcc7ea913 cdev_add -EXPORT_SYMBOL vmlinux 0xcc86e12d of_find_backlight_by_node -EXPORT_SYMBOL vmlinux 0xcc97d7be input_mt_get_slot_by_key -EXPORT_SYMBOL vmlinux 0xcca1a0a1 eth_header_cache -EXPORT_SYMBOL vmlinux 0xcca5839d xen_vcpu_id -EXPORT_SYMBOL vmlinux 0xccb98c37 tegra_dfll_register -EXPORT_SYMBOL vmlinux 0xccd4b338 blk_mq_stop_hw_queue -EXPORT_SYMBOL vmlinux 0xccd4c999 __sg_page_iter_start -EXPORT_SYMBOL vmlinux 0xcce67441 devm_register_reboot_notifier -EXPORT_SYMBOL vmlinux 0xccef37e4 ZSTD_DStreamOutSize -EXPORT_SYMBOL vmlinux 0xccfb7471 get_vm_area -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 0xcd033015 flow_rule_match_ipv6_addrs -EXPORT_SYMBOL vmlinux 0xcd18d845 update_devfreq -EXPORT_SYMBOL vmlinux 0xcd1feb91 phy_resume -EXPORT_SYMBOL vmlinux 0xcd227cfc proc_create -EXPORT_SYMBOL vmlinux 0xcd256667 tcp_md5_needed -EXPORT_SYMBOL vmlinux 0xcd279169 nla_find -EXPORT_SYMBOL vmlinux 0xcd279dda __break_lease -EXPORT_SYMBOL vmlinux 0xcd2b30e3 vfs_get_fsid -EXPORT_SYMBOL vmlinux 0xcd367a17 km_new_mapping -EXPORT_SYMBOL vmlinux 0xcd4556e6 phy_loopback -EXPORT_SYMBOL vmlinux 0xcd55ecd4 __kfree_skb -EXPORT_SYMBOL vmlinux 0xcd8ce890 acpi_format_exception -EXPORT_SYMBOL vmlinux 0xcd8f9b10 tty_vhangup -EXPORT_SYMBOL vmlinux 0xcd92a948 fget -EXPORT_SYMBOL vmlinux 0xcd9cff69 scsi_eh_restore_cmnd -EXPORT_SYMBOL vmlinux 0xcda2fc04 acpi_dev_hid_uid_match -EXPORT_SYMBOL vmlinux 0xcdc39c9e security_ismaclabel -EXPORT_SYMBOL vmlinux 0xcdd2e091 devm_ioport_unmap -EXPORT_SYMBOL vmlinux 0xcdd3cc3c blk_get_queue -EXPORT_SYMBOL vmlinux 0xcdd4e1b2 d_instantiate_new -EXPORT_SYMBOL vmlinux 0xcde77bcc free_opal_dev -EXPORT_SYMBOL vmlinux 0xcdf2e91f filemap_range_has_page -EXPORT_SYMBOL vmlinux 0xcdf8edaa bio_kmalloc -EXPORT_SYMBOL vmlinux 0xce036f24 sg_split -EXPORT_SYMBOL vmlinux 0xce0df380 fs_param_is_bool -EXPORT_SYMBOL vmlinux 0xce1117db mr_mfc_find_parent -EXPORT_SYMBOL vmlinux 0xce2840e7 irq_set_irq_wake -EXPORT_SYMBOL vmlinux 0xce38c730 dma_free_attrs -EXPORT_SYMBOL vmlinux 0xce40a48f zero_fill_bio -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 0xce7014fe netpoll_cleanup -EXPORT_SYMBOL vmlinux 0xce731b34 ucc_slow_get_qe_cr_subblock -EXPORT_SYMBOL vmlinux 0xce76c257 acpi_get_irq_routing_table -EXPORT_SYMBOL vmlinux 0xce7bc210 dump_page -EXPORT_SYMBOL vmlinux 0xce7bd30e copy_page_to_iter -EXPORT_SYMBOL vmlinux 0xce807a25 up_write -EXPORT_SYMBOL vmlinux 0xce8f2b28 request_partial_firmware_into_buf -EXPORT_SYMBOL vmlinux 0xcea2712d lock_sock_nested -EXPORT_SYMBOL vmlinux 0xceab0311 strchrnul -EXPORT_SYMBOL vmlinux 0xcebf2181 kernel_sendpage_locked -EXPORT_SYMBOL vmlinux 0xcecdb27b sched_autogroup_create_attach -EXPORT_SYMBOL vmlinux 0xceced03d tcp_setsockopt -EXPORT_SYMBOL vmlinux 0xced0f4d4 gen_pool_create -EXPORT_SYMBOL vmlinux 0xcefb0c9f __mutex_init -EXPORT_SYMBOL vmlinux 0xcefcd99a serial8250_unregister_port -EXPORT_SYMBOL vmlinux 0xcf19340e ps2_drain -EXPORT_SYMBOL vmlinux 0xcf1b88e7 phy_ethtool_get_sset_count -EXPORT_SYMBOL vmlinux 0xcf2a6966 up -EXPORT_SYMBOL vmlinux 0xcf30de6d devm_get_clk_from_child -EXPORT_SYMBOL vmlinux 0xcf332ebf nvmem_get_mac_address -EXPORT_SYMBOL vmlinux 0xcf34ca38 sock_wake_async -EXPORT_SYMBOL vmlinux 0xcf41ffae devm_release_resource -EXPORT_SYMBOL vmlinux 0xcf4897fe writeback_inodes_sb_nr -EXPORT_SYMBOL vmlinux 0xcf4dde1e dma_mmap_attrs -EXPORT_SYMBOL vmlinux 0xcf4fdd4d _atomic_dec_and_lock -EXPORT_SYMBOL vmlinux 0xcf60c1b9 pcim_set_mwi -EXPORT_SYMBOL vmlinux 0xcf702b6e acpi_pm_device_sleep_state -EXPORT_SYMBOL vmlinux 0xcf71751a __ethtool_get_link_ksettings -EXPORT_SYMBOL vmlinux 0xcf81b951 __SetPageMovable -EXPORT_SYMBOL vmlinux 0xcf909dc4 scsi_remove_target -EXPORT_SYMBOL vmlinux 0xcf99873c blk_mq_queue_stopped -EXPORT_SYMBOL vmlinux 0xcf9b558d touchscreen_set_mt_pos -EXPORT_SYMBOL vmlinux 0xcfa38854 mr_table_alloc -EXPORT_SYMBOL vmlinux 0xcfa7e913 posix_acl_valid -EXPORT_SYMBOL vmlinux 0xcfb257d4 console_start -EXPORT_SYMBOL vmlinux 0xcfb52ad2 setattr_copy -EXPORT_SYMBOL vmlinux 0xcfc9deaf atomic_dec_and_mutex_lock -EXPORT_SYMBOL vmlinux 0xcfd29e75 ppp_register_channel -EXPORT_SYMBOL vmlinux 0xcfd7637b neigh_app_ns -EXPORT_SYMBOL vmlinux 0xcfd884a8 __hsiphash_unaligned -EXPORT_SYMBOL vmlinux 0xcfdf64bb skb_dequeue_tail -EXPORT_SYMBOL vmlinux 0xcfeb98a8 acpi_processor_register_performance -EXPORT_SYMBOL vmlinux 0xcff4f97c dev_load -EXPORT_SYMBOL vmlinux 0xd0011601 iov_iter_get_pages_alloc -EXPORT_SYMBOL vmlinux 0xd0110f71 __blk_mq_end_request -EXPORT_SYMBOL vmlinux 0xd02a6dea pci_disable_link_state_locked -EXPORT_SYMBOL vmlinux 0xd04c1a64 sysctl_devconf_inherit_init_net -EXPORT_SYMBOL vmlinux 0xd050b777 sock_init_data -EXPORT_SYMBOL vmlinux 0xd0654aba woken_wake_function -EXPORT_SYMBOL vmlinux 0xd0760fc0 kfree_sensitive -EXPORT_SYMBOL vmlinux 0xd07e562c __skb_checksum_complete_head -EXPORT_SYMBOL vmlinux 0xd07f1c01 vmf_insert_mixed -EXPORT_SYMBOL vmlinux 0xd08adb2b trace_seq_hex_dump -EXPORT_SYMBOL vmlinux 0xd0989d7b ip_mc_inc_group -EXPORT_SYMBOL vmlinux 0xd0ae5f55 __printk_cpu_trylock -EXPORT_SYMBOL vmlinux 0xd0b74705 acpi_install_interface -EXPORT_SYMBOL vmlinux 0xd0e2864b ipv6_find_hdr -EXPORT_SYMBOL vmlinux 0xd0e51977 blk_mq_delay_kick_requeue_list -EXPORT_SYMBOL vmlinux 0xd0fe8d51 sg_pcopy_from_buffer -EXPORT_SYMBOL vmlinux 0xd1042862 __skb_recv_udp -EXPORT_SYMBOL vmlinux 0xd10a4971 filp_open -EXPORT_SYMBOL vmlinux 0xd10a5ffa tcp_mss_to_mtu -EXPORT_SYMBOL vmlinux 0xd117280f dev_get_phys_port_id -EXPORT_SYMBOL vmlinux 0xd1363cc1 ucs2_strsize -EXPORT_SYMBOL vmlinux 0xd154f9af nf_unregister_net_hooks -EXPORT_SYMBOL vmlinux 0xd18045af misc_deregister -EXPORT_SYMBOL vmlinux 0xd1816f32 frontswap_writethrough -EXPORT_SYMBOL vmlinux 0xd194ddf9 acpi_gpe_count -EXPORT_SYMBOL vmlinux 0xd197ece3 get_unmapped_area -EXPORT_SYMBOL vmlinux 0xd19f4a36 tcp_req_err -EXPORT_SYMBOL vmlinux 0xd1a211cf sock_no_shutdown -EXPORT_SYMBOL vmlinux 0xd1a3acfc bdevname -EXPORT_SYMBOL vmlinux 0xd1a53722 dev_get_by_index -EXPORT_SYMBOL vmlinux 0xd1a6190d max8998_write_reg -EXPORT_SYMBOL vmlinux 0xd1b5d0ee security_socket_socketpair -EXPORT_SYMBOL vmlinux 0xd1b9ca6f unregister_filesystem -EXPORT_SYMBOL vmlinux 0xd1d29bb8 bioset_init_from_src -EXPORT_SYMBOL vmlinux 0xd1d87e92 scsi_mlreturn_string -EXPORT_SYMBOL vmlinux 0xd2051916 qcom_scm_cpu_power_down -EXPORT_SYMBOL vmlinux 0xd205c86d qman_get_qm_portal_config -EXPORT_SYMBOL vmlinux 0xd215b015 xfrm_state_unregister_afinfo -EXPORT_SYMBOL vmlinux 0xd21c53bb phy_start -EXPORT_SYMBOL vmlinux 0xd2214cf1 __inc_zone_page_state -EXPORT_SYMBOL vmlinux 0xd2237016 radix_tree_delete_item -EXPORT_SYMBOL vmlinux 0xd2271873 unregister_md_personality -EXPORT_SYMBOL vmlinux 0xd22f8ca5 scsi_device_put -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 0xd2800691 nf_conntrack_destroy -EXPORT_SYMBOL vmlinux 0xd29aab17 of_graph_get_endpoint_count -EXPORT_SYMBOL vmlinux 0xd2be2afd mipi_dsi_attach -EXPORT_SYMBOL vmlinux 0xd2c99738 __kmalloc_track_caller -EXPORT_SYMBOL vmlinux 0xd2ce6972 reuseport_migrate_sock -EXPORT_SYMBOL vmlinux 0xd2d22477 inet_addr_type_dev_table -EXPORT_SYMBOL vmlinux 0xd2da1048 register_netdevice_notifier -EXPORT_SYMBOL vmlinux 0xd2e2a9d0 hdmi_spd_infoframe_pack_only -EXPORT_SYMBOL vmlinux 0xd2ea34a4 __blk_rq_map_sg -EXPORT_SYMBOL vmlinux 0xd2ea49b8 acpi_leave_sleep_state_prep -EXPORT_SYMBOL vmlinux 0xd2ee2372 pci_dev_get -EXPORT_SYMBOL vmlinux 0xd2f10681 alloc_buffer_head -EXPORT_SYMBOL vmlinux 0xd307f897 task_work_add -EXPORT_SYMBOL vmlinux 0xd30c7801 vlan_vid_del -EXPORT_SYMBOL vmlinux 0xd31ccb06 of_machine_is_compatible -EXPORT_SYMBOL vmlinux 0xd32d5eb2 dquot_mark_dquot_dirty -EXPORT_SYMBOL vmlinux 0xd344ddac sock_no_sendpage_locked -EXPORT_SYMBOL vmlinux 0xd345ba3d devfreq_unregister_opp_notifier -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 0xd3844629 mipi_dsi_detach -EXPORT_SYMBOL vmlinux 0xd3882f5e tcf_idr_check_alloc -EXPORT_SYMBOL vmlinux 0xd391c25b __cpuhp_remove_state_cpuslocked -EXPORT_SYMBOL vmlinux 0xd3978237 phy_ethtool_nway_reset -EXPORT_SYMBOL vmlinux 0xd39bf365 seq_pad -EXPORT_SYMBOL vmlinux 0xd3ab9c78 pci_scan_bridge -EXPORT_SYMBOL vmlinux 0xd3b2a9f0 dev_uc_init -EXPORT_SYMBOL vmlinux 0xd3cf7c09 tcp_v4_connect -EXPORT_SYMBOL vmlinux 0xd3db3f05 mfd_remove_devices_late -EXPORT_SYMBOL vmlinux 0xd3eaf1ed devlink_dpipe_entry_clear -EXPORT_SYMBOL vmlinux 0xd3f454ce xp_dma_unmap -EXPORT_SYMBOL vmlinux 0xd3fb6431 sk_mc_loop -EXPORT_SYMBOL vmlinux 0xd3fba534 qcom_scm_set_cold_boot_addr -EXPORT_SYMBOL vmlinux 0xd406d266 fb_mode_is_equal -EXPORT_SYMBOL vmlinux 0xd4244836 blk_integrity_register -EXPORT_SYMBOL vmlinux 0xd425cac0 mroute6_is_socket -EXPORT_SYMBOL vmlinux 0xd426b3f3 netpoll_send_skb -EXPORT_SYMBOL vmlinux 0xd4339de8 qcom_scm_pas_init_image -EXPORT_SYMBOL vmlinux 0xd4344440 dma_unmap_sg_attrs -EXPORT_SYMBOL vmlinux 0xd44081a9 ip_ct_attach -EXPORT_SYMBOL vmlinux 0xd443e5e6 __nla_reserve_nohdr -EXPORT_SYMBOL vmlinux 0xd454fb56 i2c_del_driver -EXPORT_SYMBOL vmlinux 0xd45cc6ca bin2hex -EXPORT_SYMBOL vmlinux 0xd45e869f page_pool_alloc_frag -EXPORT_SYMBOL vmlinux 0xd46425e3 iov_iter_advance -EXPORT_SYMBOL vmlinux 0xd4713cd3 sock_no_mmap -EXPORT_SYMBOL vmlinux 0xd4766a56 end_page_private_2 -EXPORT_SYMBOL vmlinux 0xd47a0468 backlight_device_set_brightness -EXPORT_SYMBOL vmlinux 0xd47e0428 pci_get_device -EXPORT_SYMBOL vmlinux 0xd480f091 vfs_getattr -EXPORT_SYMBOL vmlinux 0xd4835ef8 dmi_check_system -EXPORT_SYMBOL vmlinux 0xd48e5236 sdev_enable_disk_events -EXPORT_SYMBOL vmlinux 0xd4931ab1 phy_register_fixup_for_uid -EXPORT_SYMBOL vmlinux 0xd4931e89 dmaenginem_async_device_register -EXPORT_SYMBOL vmlinux 0xd49c5041 scsi_host_get -EXPORT_SYMBOL vmlinux 0xd4a69d20 qm_channel_caam -EXPORT_SYMBOL vmlinux 0xd4b2ad57 __scsi_iterate_devices -EXPORT_SYMBOL vmlinux 0xd4ba5dd6 netdev_bonding_info_change -EXPORT_SYMBOL vmlinux 0xd4bb4a82 inet6addr_validator_notifier_call_chain -EXPORT_SYMBOL vmlinux 0xd4d057fd xfrm_user_policy -EXPORT_SYMBOL vmlinux 0xd4d1983c udplite_table -EXPORT_SYMBOL vmlinux 0xd4db2185 skb_vlan_push -EXPORT_SYMBOL vmlinux 0xd4dcbb5d tcp_make_synack -EXPORT_SYMBOL vmlinux 0xd4e71d63 inet_rcv_saddr_equal -EXPORT_SYMBOL vmlinux 0xd4e93de5 release_pages -EXPORT_SYMBOL vmlinux 0xd4f955af page_cache_next_miss -EXPORT_SYMBOL vmlinux 0xd4fa5a87 __kfifo_dma_out_prepare -EXPORT_SYMBOL vmlinux 0xd4fe1073 mdio_device_reset -EXPORT_SYMBOL vmlinux 0xd5263820 mb_cache_destroy -EXPORT_SYMBOL vmlinux 0xd5346bfc acpi_get_possible_resources -EXPORT_SYMBOL vmlinux 0xd552854a amba_driver_register -EXPORT_SYMBOL vmlinux 0xd555cbcc jbd2_journal_stop -EXPORT_SYMBOL vmlinux 0xd58408ae of_find_node_by_type -EXPORT_SYMBOL vmlinux 0xd58a7444 devm_tegra_prod_get_from_node -EXPORT_SYMBOL vmlinux 0xd58e70dd net_rand_noise -EXPORT_SYMBOL vmlinux 0xd5aa9ad6 pci_iomap_range -EXPORT_SYMBOL vmlinux 0xd5abd608 inet_get_local_port_range -EXPORT_SYMBOL vmlinux 0xd5b3d0d5 xxh64_copy_state -EXPORT_SYMBOL vmlinux 0xd5b88d28 dev_graft_qdisc -EXPORT_SYMBOL vmlinux 0xd5b93814 writeback_inodes_sb -EXPORT_SYMBOL vmlinux 0xd5bf18f9 jbd2_trans_will_send_data_barrier -EXPORT_SYMBOL vmlinux 0xd5d2fb6b __napi_schedule -EXPORT_SYMBOL vmlinux 0xd5d92b36 md_bitmap_cond_end_sync -EXPORT_SYMBOL vmlinux 0xd5e11590 default_llseek -EXPORT_SYMBOL vmlinux 0xd5fd90f1 prepare_to_wait -EXPORT_SYMBOL vmlinux 0xd60736ec gf128mul_free_64k -EXPORT_SYMBOL vmlinux 0xd62ecd49 rps_sock_flow_table -EXPORT_SYMBOL vmlinux 0xd63ace0f debugfs_create_automount -EXPORT_SYMBOL vmlinux 0xd63fd8d1 utf8nagemax -EXPORT_SYMBOL vmlinux 0xd643239a acpi_leave_sleep_state -EXPORT_SYMBOL vmlinux 0xd64b4bba neigh_xmit -EXPORT_SYMBOL vmlinux 0xd65809ee sockfd_lookup -EXPORT_SYMBOL vmlinux 0xd666571f d_find_any_alias -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 0xd698e7ab __pagevec_release -EXPORT_SYMBOL vmlinux 0xd6a6165d udp_disconnect -EXPORT_SYMBOL vmlinux 0xd6a872bf jbd2_journal_restart -EXPORT_SYMBOL vmlinux 0xd6a91f54 twl_i2c_read -EXPORT_SYMBOL vmlinux 0xd6bd2802 vfs_tmpfile -EXPORT_SYMBOL vmlinux 0xd6e36eec pnp_device_attach -EXPORT_SYMBOL vmlinux 0xd6eaaea1 full_name_hash -EXPORT_SYMBOL vmlinux 0xd6eb2af0 is_nvdimm_bus_locked -EXPORT_SYMBOL vmlinux 0xd6ee688f vmalloc -EXPORT_SYMBOL vmlinux 0xd6f806f2 kthread_stop -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 0xd71d119c vfs_get_link -EXPORT_SYMBOL vmlinux 0xd7203841 pagecache_get_page -EXPORT_SYMBOL vmlinux 0xd7236112 genlmsg_multicast_allns -EXPORT_SYMBOL vmlinux 0xd72a342d alloc_file_pseudo -EXPORT_SYMBOL vmlinux 0xd72ac081 show_init_ipc_ns -EXPORT_SYMBOL vmlinux 0xd738ca1b phy_unregister_fixup_for_uid -EXPORT_SYMBOL vmlinux 0xd7482f05 vcalloc -EXPORT_SYMBOL vmlinux 0xd7553c73 wait_on_page_private_2_killable -EXPORT_SYMBOL vmlinux 0xd75d575e noop_fsync -EXPORT_SYMBOL vmlinux 0xd75f5639 super_setup_bdi_name -EXPORT_SYMBOL vmlinux 0xd762b79e cdev_set_parent -EXPORT_SYMBOL vmlinux 0xd77b6b92 blk_mq_run_hw_queues -EXPORT_SYMBOL vmlinux 0xd7cd8117 kiocb_set_cancel_fn -EXPORT_SYMBOL vmlinux 0xd7cfbc27 iter_file_splice_write -EXPORT_SYMBOL vmlinux 0xd7d280ad irq_poll_complete -EXPORT_SYMBOL vmlinux 0xd7d83fd1 input_mt_report_pointer_emulation -EXPORT_SYMBOL vmlinux 0xd7e4c743 neigh_ifdown -EXPORT_SYMBOL vmlinux 0xd7e56a4e simple_strtoll -EXPORT_SYMBOL vmlinux 0xd7ea7094 nf_unregister_queue_handler -EXPORT_SYMBOL vmlinux 0xd7ed8e04 tcp_rcv_established -EXPORT_SYMBOL vmlinux 0xd7f3fd26 copy_highpage -EXPORT_SYMBOL vmlinux 0xd7f9ae1a sb_set_blocksize -EXPORT_SYMBOL vmlinux 0xd7ff1b8a __ashlti3 -EXPORT_SYMBOL vmlinux 0xd806f461 set_nlink -EXPORT_SYMBOL vmlinux 0xd80bec7e of_iomap -EXPORT_SYMBOL vmlinux 0xd8131274 qman_alloc_cgrid_range -EXPORT_SYMBOL vmlinux 0xd81c4ce5 __genphy_config_aneg -EXPORT_SYMBOL vmlinux 0xd8203a2b crypto_sha512_update -EXPORT_SYMBOL vmlinux 0xd828f063 xudma_tchanrt_write -EXPORT_SYMBOL vmlinux 0xd86a1946 __page_cache_alloc -EXPORT_SYMBOL vmlinux 0xd879fada ethtool_op_get_link -EXPORT_SYMBOL vmlinux 0xd89bcaa9 rproc_free -EXPORT_SYMBOL vmlinux 0xd89da37f movable_zone -EXPORT_SYMBOL vmlinux 0xd8a4640f qdisc_put_unlocked -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 0xd8e6f560 ip_local_deliver -EXPORT_SYMBOL vmlinux 0xd8eec010 pnp_unregister_driver -EXPORT_SYMBOL vmlinux 0xd904577a phy_attach -EXPORT_SYMBOL vmlinux 0xd9073280 dm_table_get_mode -EXPORT_SYMBOL vmlinux 0xd90cbd03 input_set_capability -EXPORT_SYMBOL vmlinux 0xd91f6ab6 strnlen_user -EXPORT_SYMBOL vmlinux 0xd9275860 mmc_command_done -EXPORT_SYMBOL vmlinux 0xd92deb6b acpi_evaluate_object -EXPORT_SYMBOL vmlinux 0xd9315ef6 rproc_elf_load_segments -EXPORT_SYMBOL vmlinux 0xd9403444 mipi_dsi_dcs_write_buffer -EXPORT_SYMBOL vmlinux 0xd9431931 cpufreq_generic_suspend -EXPORT_SYMBOL vmlinux 0xd9491c14 xa_destroy -EXPORT_SYMBOL vmlinux 0xd94aeb43 cros_ec_get_host_event -EXPORT_SYMBOL vmlinux 0xd953a1d9 dev_get_port_parent_id -EXPORT_SYMBOL vmlinux 0xd96deea0 kthread_create_on_cpu -EXPORT_SYMBOL vmlinux 0xd976d374 acpi_device_set_power -EXPORT_SYMBOL vmlinux 0xd97bb5af devm_ioremap_wc -EXPORT_SYMBOL vmlinux 0xd985dc99 mempool_free_pages -EXPORT_SYMBOL vmlinux 0xd9a1b711 security_sctp_assoc_request -EXPORT_SYMBOL vmlinux 0xd9a5ea54 __init_waitqueue_head -EXPORT_SYMBOL vmlinux 0xd9aa7aa1 padata_alloc_shell -EXPORT_SYMBOL vmlinux 0xd9b1ff76 tcf_get_next_proto -EXPORT_SYMBOL vmlinux 0xd9b85ef6 lockref_get -EXPORT_SYMBOL vmlinux 0xd9b8eaea __SCK__tp_func_dma_fence_signaled -EXPORT_SYMBOL vmlinux 0xd9c1cc40 of_get_cpu_state_node -EXPORT_SYMBOL vmlinux 0xd9c615fd generic_file_splice_read -EXPORT_SYMBOL vmlinux 0xd9c6e0f7 pci_msi_vec_count -EXPORT_SYMBOL vmlinux 0xd9ca94b9 kset_register -EXPORT_SYMBOL vmlinux 0xd9cad645 tcf_em_tree_destroy -EXPORT_SYMBOL vmlinux 0xd9d8fd16 register_restart_handler -EXPORT_SYMBOL vmlinux 0xd9d952d1 crypto_aes_sbox -EXPORT_SYMBOL vmlinux 0xd9dbef3e kthread_blkcg -EXPORT_SYMBOL vmlinux 0xd9e2c237 flow_rule_match_eth_addrs -EXPORT_SYMBOL vmlinux 0xd9fb8c5a __dev_kfree_skb_any -EXPORT_SYMBOL vmlinux 0xd9fe8421 __ip4_datagram_connect -EXPORT_SYMBOL vmlinux 0xda10443c xudma_tchan_get_id -EXPORT_SYMBOL vmlinux 0xda28ce49 skb_set_owner_w -EXPORT_SYMBOL vmlinux 0xda3d10a8 security_tun_dev_open -EXPORT_SYMBOL vmlinux 0xda3f06cc jbd2_journal_blocks_per_page -EXPORT_SYMBOL vmlinux 0xda41a3b5 napi_disable -EXPORT_SYMBOL vmlinux 0xda72a7ec ZSTD_nextInputType -EXPORT_SYMBOL vmlinux 0xda89ea3b ip_idents_reserve -EXPORT_SYMBOL vmlinux 0xdaaee6a0 _copy_from_iter -EXPORT_SYMBOL vmlinux 0xdac4913a bitmap_allocate_region -EXPORT_SYMBOL vmlinux 0xdaec288d pr_flush -EXPORT_SYMBOL vmlinux 0xdafc3ee4 nf_register_queue_handler -EXPORT_SYMBOL vmlinux 0xdb186576 netdev_upper_dev_unlink -EXPORT_SYMBOL vmlinux 0xdb23e50c netlink_ack -EXPORT_SYMBOL vmlinux 0xdb280bfe mdiobb_write -EXPORT_SYMBOL vmlinux 0xdb46383c blk_mq_delay_run_hw_queue -EXPORT_SYMBOL vmlinux 0xdb68bbad rfkill_destroy -EXPORT_SYMBOL vmlinux 0xdb760f52 __kfifo_free -EXPORT_SYMBOL vmlinux 0xdb7c0df0 scsi_target_quiesce -EXPORT_SYMBOL vmlinux 0xdb98a677 of_find_i2c_device_by_node -EXPORT_SYMBOL vmlinux 0xdbad2bd1 blk_queue_dma_alignment -EXPORT_SYMBOL vmlinux 0xdbaf7c61 xfrm_state_delete -EXPORT_SYMBOL vmlinux 0xdbcabf58 __sk_mem_raise_allocated -EXPORT_SYMBOL vmlinux 0xdbcf041a acpi_install_address_space_handler -EXPORT_SYMBOL vmlinux 0xdbd7ab89 rproc_del -EXPORT_SYMBOL vmlinux 0xdbdf6c92 ioport_resource -EXPORT_SYMBOL vmlinux 0xdbfd2513 i2c_smbus_write_block_data -EXPORT_SYMBOL vmlinux 0xdc0b2f0c param_ops_long -EXPORT_SYMBOL vmlinux 0xdc14eda7 pci_pci_problems -EXPORT_SYMBOL vmlinux 0xdc185821 seq_printf -EXPORT_SYMBOL vmlinux 0xdc207ab1 param_ops_short -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 0xdc7e26b1 mdiobus_setup_mdiodev_from_board_info -EXPORT_SYMBOL vmlinux 0xdc84a8fc sock_create -EXPORT_SYMBOL vmlinux 0xdc88ba84 regset_get -EXPORT_SYMBOL vmlinux 0xdca4fc1b pci_bus_write_config_dword -EXPORT_SYMBOL vmlinux 0xdca8c3d4 logic_outb -EXPORT_SYMBOL vmlinux 0xdcb764ad memset -EXPORT_SYMBOL vmlinux 0xdcbeb27c devm_request_threaded_irq -EXPORT_SYMBOL vmlinux 0xdcdc0040 slhc_compress -EXPORT_SYMBOL vmlinux 0xdce76542 kthread_create_worker_on_cpu -EXPORT_SYMBOL vmlinux 0xdce80ee3 input_unregister_handler -EXPORT_SYMBOL vmlinux 0xdceee0d9 unpin_user_page -EXPORT_SYMBOL vmlinux 0xdd00447a acpi_resource_to_address64 -EXPORT_SYMBOL vmlinux 0xdd01cb70 load_nls -EXPORT_SYMBOL vmlinux 0xdd09d28a rpmh_write -EXPORT_SYMBOL vmlinux 0xdd18a993 acpi_check_dsm -EXPORT_SYMBOL vmlinux 0xdd1df281 phys_mem_access_prot -EXPORT_SYMBOL vmlinux 0xdd2c169b mb_cache_create -EXPORT_SYMBOL vmlinux 0xdd4a47d5 request_firmware_into_buf -EXPORT_SYMBOL vmlinux 0xdd4ce197 phy_print_status -EXPORT_SYMBOL vmlinux 0xdd4f871e phy_drivers_unregister -EXPORT_SYMBOL vmlinux 0xdd55562c dm_table_get_md -EXPORT_SYMBOL vmlinux 0xdd64e639 strscpy -EXPORT_SYMBOL vmlinux 0xdd7e3192 qcom_scm_pas_auth_and_reset -EXPORT_SYMBOL vmlinux 0xdd7f7d09 mr_vif_seq_idx -EXPORT_SYMBOL vmlinux 0xdd8166a1 dma_fence_free -EXPORT_SYMBOL vmlinux 0xdd8261ba alloc_mdio_bitbang -EXPORT_SYMBOL vmlinux 0xdd849d51 scsi_get_sense_info_fld -EXPORT_SYMBOL vmlinux 0xdd98e4cd blk_mq_start_stopped_hw_queues -EXPORT_SYMBOL vmlinux 0xddad7952 acpi_dbg_level -EXPORT_SYMBOL vmlinux 0xddaf32fb sock_no_ioctl -EXPORT_SYMBOL vmlinux 0xddafdd31 vm_node_stat -EXPORT_SYMBOL vmlinux 0xddb7cafb sock_no_accept -EXPORT_SYMBOL vmlinux 0xddda0e31 kern_unmount -EXPORT_SYMBOL vmlinux 0xddec799b page_symlink_inode_operations -EXPORT_SYMBOL vmlinux 0xddf15ff7 netdev_upper_get_next_dev_rcu -EXPORT_SYMBOL vmlinux 0xddf6ad7a completion_done -EXPORT_SYMBOL vmlinux 0xddfabaae scsi_host_alloc -EXPORT_SYMBOL vmlinux 0xddfcea77 mii_ethtool_gset -EXPORT_SYMBOL vmlinux 0xde0be6e1 tty_port_hangup -EXPORT_SYMBOL vmlinux 0xde120373 pnp_possible_config -EXPORT_SYMBOL vmlinux 0xde293f9e add_wait_queue_exclusive -EXPORT_SYMBOL vmlinux 0xde4dbf5a qdisc_watchdog_schedule_range_ns -EXPORT_SYMBOL vmlinux 0xde4f6987 elv_rb_former_request -EXPORT_SYMBOL vmlinux 0xde5b8077 pci_clear_mwi -EXPORT_SYMBOL vmlinux 0xde7b044a fman_get_mem_region -EXPORT_SYMBOL vmlinux 0xde85c774 pci_write_config_byte -EXPORT_SYMBOL vmlinux 0xde9ec77f to_ndd -EXPORT_SYMBOL vmlinux 0xdea387da mipi_dsi_dcs_set_column_address -EXPORT_SYMBOL vmlinux 0xdebb6135 __sk_mem_reduce_allocated -EXPORT_SYMBOL vmlinux 0xdec5031e security_sctp_sk_clone -EXPORT_SYMBOL vmlinux 0xded39a6b gen_kill_estimator -EXPORT_SYMBOL vmlinux 0xdef7c893 fb_match_mode -EXPORT_SYMBOL vmlinux 0xdefc3b05 mr_dump -EXPORT_SYMBOL vmlinux 0xdf19c158 gnet_stats_start_copy -EXPORT_SYMBOL vmlinux 0xdf256037 kstrtou8_from_user -EXPORT_SYMBOL vmlinux 0xdf2c2742 rb_last -EXPORT_SYMBOL vmlinux 0xdf2f5b27 __dquot_alloc_space -EXPORT_SYMBOL vmlinux 0xdf36914b xa_find_after -EXPORT_SYMBOL vmlinux 0xdf452f7f md_integrity_add_rdev -EXPORT_SYMBOL vmlinux 0xdf54a8f7 netlink_unregister_notifier -EXPORT_SYMBOL vmlinux 0xdf60ccba jbd2_journal_release_jbd_inode -EXPORT_SYMBOL vmlinux 0xdf6b082f proc_dointvec_jiffies -EXPORT_SYMBOL vmlinux 0xdf70dad7 md_wakeup_thread -EXPORT_SYMBOL vmlinux 0xdf74a4ea mmc_cqe_request_done -EXPORT_SYMBOL vmlinux 0xdf8c695a __ndelay -EXPORT_SYMBOL vmlinux 0xdf914e9a tcf_get_next_chain -EXPORT_SYMBOL vmlinux 0xdf929370 fs_overflowgid -EXPORT_SYMBOL vmlinux 0xdf93b9d8 timespec64_to_jiffies -EXPORT_SYMBOL vmlinux 0xdf98cf30 kernel_connect -EXPORT_SYMBOL vmlinux 0xdf9bf33a jbd2_fc_end_commit_fallback -EXPORT_SYMBOL vmlinux 0xdf9c947c input_mt_report_slot_state -EXPORT_SYMBOL vmlinux 0xdfa2a977 generic_delete_inode -EXPORT_SYMBOL vmlinux 0xdfa9b55a pci_set_master -EXPORT_SYMBOL vmlinux 0xdfb48020 memory_cgrp_subsys -EXPORT_SYMBOL vmlinux 0xdfbd9324 inc_node_page_state -EXPORT_SYMBOL vmlinux 0xdfc97c31 pci_restore_state -EXPORT_SYMBOL vmlinux 0xdfcc992c current_work -EXPORT_SYMBOL vmlinux 0xdfdfa9e7 utf8nfdi -EXPORT_SYMBOL vmlinux 0xdfe41037 devm_mfd_add_devices -EXPORT_SYMBOL vmlinux 0xdff126b6 scsi_set_medium_removal -EXPORT_SYMBOL vmlinux 0xdff905e5 vme_slave_free -EXPORT_SYMBOL vmlinux 0xdffc80fc vesa_modes -EXPORT_SYMBOL vmlinux 0xe00de6ec sock_set_reuseport -EXPORT_SYMBOL vmlinux 0xe01d3c71 generic_setlease -EXPORT_SYMBOL vmlinux 0xe02ba436 trace_print_hex_seq -EXPORT_SYMBOL vmlinux 0xe02c9c92 __xa_erase -EXPORT_SYMBOL vmlinux 0xe030dfbe xfrm_lookup_route -EXPORT_SYMBOL vmlinux 0xe03a689d dma_fence_array_ops -EXPORT_SYMBOL vmlinux 0xe0419ac4 kstrtos16 -EXPORT_SYMBOL vmlinux 0xe06cc62f gnet_stats_copy_basic -EXPORT_SYMBOL vmlinux 0xe06ce71c pci_get_domain_bus_and_slot -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 0xe0839c25 jbd2_fc_wait_bufs -EXPORT_SYMBOL vmlinux 0xe08f31e4 bio_copy_data -EXPORT_SYMBOL vmlinux 0xe091c977 list_sort -EXPORT_SYMBOL vmlinux 0xe0955f76 utf8_casefold -EXPORT_SYMBOL vmlinux 0xe09a4c09 mdio_device_create -EXPORT_SYMBOL vmlinux 0xe0a323f6 __do_once_slow_start -EXPORT_SYMBOL vmlinux 0xe0b0f936 phy_start_aneg -EXPORT_SYMBOL vmlinux 0xe0b13336 argv_free -EXPORT_SYMBOL vmlinux 0xe0bef318 icst_hz_to_vco -EXPORT_SYMBOL vmlinux 0xe0da3896 mount_single -EXPORT_SYMBOL vmlinux 0xe0db7416 pipe_unlock -EXPORT_SYMBOL vmlinux 0xe0e902c3 seq_escape -EXPORT_SYMBOL vmlinux 0xe0eb65da blk_rq_map_integrity_sg -EXPORT_SYMBOL vmlinux 0xe10a7c09 pcibios_bus_to_resource -EXPORT_SYMBOL vmlinux 0xe113bbbc csum_partial -EXPORT_SYMBOL vmlinux 0xe11c0fc0 phy_find_first -EXPORT_SYMBOL vmlinux 0xe11ca997 ZSTD_getDictID_fromDict -EXPORT_SYMBOL vmlinux 0xe123f3d9 dma_fence_release -EXPORT_SYMBOL vmlinux 0xe1278816 tegra_ivc_write_advance -EXPORT_SYMBOL vmlinux 0xe12bda79 vme_dma_free_attribute -EXPORT_SYMBOL vmlinux 0xe133894e find_inode_by_ino_rcu -EXPORT_SYMBOL vmlinux 0xe138fb8c percpu_counter_add_batch -EXPORT_SYMBOL vmlinux 0xe13c3a4d arp_send -EXPORT_SYMBOL vmlinux 0xe13cd8a7 dmi_name_in_vendors -EXPORT_SYMBOL vmlinux 0xe13f25a1 of_device_register -EXPORT_SYMBOL vmlinux 0xe145217f __netlink_kernel_create -EXPORT_SYMBOL vmlinux 0xe1546a47 __sock_queue_rcv_skb -EXPORT_SYMBOL vmlinux 0xe155a040 simple_write_begin -EXPORT_SYMBOL vmlinux 0xe16b0302 tcp_shutdown -EXPORT_SYMBOL vmlinux 0xe17972c2 qdisc_create_dflt -EXPORT_SYMBOL vmlinux 0xe19a77a7 locks_delete_block -EXPORT_SYMBOL vmlinux 0xe19aac86 iproc_msi_exit -EXPORT_SYMBOL vmlinux 0xe1a9237c disk_end_io_acct -EXPORT_SYMBOL vmlinux 0xe1ad1778 ip6tun_encaps -EXPORT_SYMBOL vmlinux 0xe1d87dab iov_iter_alignment -EXPORT_SYMBOL vmlinux 0xe1dcf64a audit_log_format -EXPORT_SYMBOL vmlinux 0xe1fa3db3 ipv6_select_ident -EXPORT_SYMBOL vmlinux 0xe1fdbdde scsi_get_host_dev -EXPORT_SYMBOL vmlinux 0xe207f287 twl6040_set_bits -EXPORT_SYMBOL vmlinux 0xe2097744 rproc_coredump_add_segment -EXPORT_SYMBOL vmlinux 0xe21654c9 cdrom_number_of_slots -EXPORT_SYMBOL vmlinux 0xe21f18ac __genradix_iter_peek -EXPORT_SYMBOL vmlinux 0xe22f650f pcim_iounmap_regions -EXPORT_SYMBOL vmlinux 0xe234b0ec mmc_of_parse -EXPORT_SYMBOL vmlinux 0xe24bec17 dput -EXPORT_SYMBOL vmlinux 0xe271128b cpumask_any_distribute -EXPORT_SYMBOL vmlinux 0xe2731bf6 fscrypt_free_bounce_page -EXPORT_SYMBOL vmlinux 0xe273d75d alloc_cpu_rmap -EXPORT_SYMBOL vmlinux 0xe275e351 tcp_sock_set_keepcnt -EXPORT_SYMBOL vmlinux 0xe276c9ad generic_parse_monolithic -EXPORT_SYMBOL vmlinux 0xe27eba44 phy_disconnect -EXPORT_SYMBOL vmlinux 0xe28adadd vm_iomap_memory -EXPORT_SYMBOL vmlinux 0xe297819a mmc_card_alternative_gpt_sector -EXPORT_SYMBOL vmlinux 0xe2b14033 tcf_action_update_stats -EXPORT_SYMBOL vmlinux 0xe2c0f667 __skb_pad -EXPORT_SYMBOL vmlinux 0xe2d2d2c9 __cgroup_bpf_run_filter_sock_ops -EXPORT_SYMBOL vmlinux 0xe2d5255a strcmp -EXPORT_SYMBOL vmlinux 0xe2df832f of_find_net_device_by_node -EXPORT_SYMBOL vmlinux 0xe2e642a2 flow_rule_match_cvlan -EXPORT_SYMBOL vmlinux 0xe2eb48a9 inet_ioctl -EXPORT_SYMBOL vmlinux 0xe2f7fae1 eth_header_parse -EXPORT_SYMBOL vmlinux 0xe32a76fe buffer_migrate_page -EXPORT_SYMBOL vmlinux 0xe32ab4d8 xxh64_digest -EXPORT_SYMBOL vmlinux 0xe356d8a6 phy_device_create -EXPORT_SYMBOL vmlinux 0xe36be452 of_count_phandle_with_args -EXPORT_SYMBOL vmlinux 0xe36f9fa1 vmf_insert_mixed_prot -EXPORT_SYMBOL vmlinux 0xe3775165 truncate_inode_pages_final -EXPORT_SYMBOL vmlinux 0xe39565c1 pci_write_config_word -EXPORT_SYMBOL vmlinux 0xe39b2ea5 sha256 -EXPORT_SYMBOL vmlinux 0xe3a76b2c __cgroup_bpf_run_filter_sock_addr -EXPORT_SYMBOL vmlinux 0xe3afd8f0 devm_request_any_context_irq -EXPORT_SYMBOL vmlinux 0xe3cfdbf0 devm_rproc_alloc -EXPORT_SYMBOL vmlinux 0xe3e1ba33 nvdimm_bus_unlock -EXPORT_SYMBOL vmlinux 0xe3e6d55c f_setown -EXPORT_SYMBOL vmlinux 0xe3e9d350 netdev_txq_to_tc -EXPORT_SYMBOL vmlinux 0xe3ea3a39 qdisc_warn_nonwc -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 0xe403f05c kernel_write -EXPORT_SYMBOL vmlinux 0xe40976c0 pnp_range_reserved -EXPORT_SYMBOL vmlinux 0xe40c37ea down_write_trylock -EXPORT_SYMBOL vmlinux 0xe40e6f8b genphy_config_eee_advert -EXPORT_SYMBOL vmlinux 0xe4133ccc napi_schedule_prep -EXPORT_SYMBOL vmlinux 0xe42f4256 param_set_bool -EXPORT_SYMBOL vmlinux 0xe444d294 of_platform_bus_probe -EXPORT_SYMBOL vmlinux 0xe4607bbf of_mdio_find_bus -EXPORT_SYMBOL vmlinux 0xe46997c7 pnp_register_driver -EXPORT_SYMBOL vmlinux 0xe48cee94 dev_alloc_name -EXPORT_SYMBOL vmlinux 0xe48fd8c0 napi_get_frags -EXPORT_SYMBOL vmlinux 0xe4a55fe4 pci_write_vpd -EXPORT_SYMBOL vmlinux 0xe4af98b3 tegra_dfll_suspend -EXPORT_SYMBOL vmlinux 0xe4bbc1dd kimage_voffset -EXPORT_SYMBOL vmlinux 0xe4bc2c2f hdmi_drm_infoframe_pack -EXPORT_SYMBOL vmlinux 0xe4cc7529 mii_ethtool_get_link_ksettings -EXPORT_SYMBOL vmlinux 0xe4ed5f46 elv_rb_latter_request -EXPORT_SYMBOL vmlinux 0xe51f47ec udp_set_csum -EXPORT_SYMBOL vmlinux 0xe5202b73 ptp_clock_unregister -EXPORT_SYMBOL vmlinux 0xe5232659 param_set_long -EXPORT_SYMBOL vmlinux 0xe523ad75 synchronize_irq -EXPORT_SYMBOL vmlinux 0xe5254f76 mini_qdisc_pair_block_init -EXPORT_SYMBOL vmlinux 0xe532b534 fb_validate_mode -EXPORT_SYMBOL vmlinux 0xe5368fc1 __nla_put_nohdr -EXPORT_SYMBOL vmlinux 0xe538531b fput -EXPORT_SYMBOL vmlinux 0xe562e8b0 inet_dgram_ops -EXPORT_SYMBOL vmlinux 0xe571a992 acpi_device_hid -EXPORT_SYMBOL vmlinux 0xe57feefb qcom_scm_ocmem_unlock -EXPORT_SYMBOL vmlinux 0xe58090ca security_ib_endport_manage_subnet -EXPORT_SYMBOL vmlinux 0xe590dea3 sk_busy_loop_end -EXPORT_SYMBOL vmlinux 0xe593d24b phy_device_free -EXPORT_SYMBOL vmlinux 0xe59e71e6 seq_dentry -EXPORT_SYMBOL vmlinux 0xe5aa1dd1 tcp_stream_memory_free -EXPORT_SYMBOL vmlinux 0xe5aee9d5 pci_scan_slot -EXPORT_SYMBOL vmlinux 0xe5af810e of_parse_phandle_with_args_map -EXPORT_SYMBOL vmlinux 0xe5b73653 netif_stacked_transfer_operstate -EXPORT_SYMBOL vmlinux 0xe5bd319d amba_find_device -EXPORT_SYMBOL vmlinux 0xe5be43b8 send_sig_mceerr -EXPORT_SYMBOL vmlinux 0xe5c60bd2 percpu_counter_set -EXPORT_SYMBOL vmlinux 0xe5c78a99 do_blank_screen -EXPORT_SYMBOL vmlinux 0xe5cc2b93 pci_enable_device_io -EXPORT_SYMBOL vmlinux 0xe5cdbf9d dma_set_coherent_mask -EXPORT_SYMBOL vmlinux 0xe5d37a8d fman_reset_mac -EXPORT_SYMBOL vmlinux 0xe5f3d130 xfrm_state_alloc -EXPORT_SYMBOL vmlinux 0xe602b7ca mipi_dsi_dcs_enter_sleep_mode -EXPORT_SYMBOL vmlinux 0xe61262b0 phy_start_cable_test_tdr -EXPORT_SYMBOL vmlinux 0xe613a798 inet_addr_is_any -EXPORT_SYMBOL vmlinux 0xe614ade0 ip_queue_xmit -EXPORT_SYMBOL vmlinux 0xe61f80ea __cleancache_invalidate_inode -EXPORT_SYMBOL vmlinux 0xe647e48e pci_remove_bus -EXPORT_SYMBOL vmlinux 0xe65ce76d pm860x_page_bulk_read -EXPORT_SYMBOL vmlinux 0xe661eb8a fman_port_get_device -EXPORT_SYMBOL vmlinux 0xe67c677f _copy_from_iter_nocache -EXPORT_SYMBOL vmlinux 0xe67f7a70 dentry_path_raw -EXPORT_SYMBOL vmlinux 0xe67fbec1 block_is_partially_uptodate -EXPORT_SYMBOL vmlinux 0xe6801d7b of_io_request_and_map -EXPORT_SYMBOL vmlinux 0xe691ac7f ZSTD_decompressBegin -EXPORT_SYMBOL vmlinux 0xe6998fe8 ptp_clock_index -EXPORT_SYMBOL vmlinux 0xe6c2c94e simple_dir_inode_operations -EXPORT_SYMBOL vmlinux 0xe6cb2d6e pcie_bandwidth_available -EXPORT_SYMBOL vmlinux 0xe6cd11ff param_ops_ullong -EXPORT_SYMBOL vmlinux 0xe6d0d0b1 pci_dev_driver -EXPORT_SYMBOL vmlinux 0xe6d2458e do_trace_netlink_extack -EXPORT_SYMBOL vmlinux 0xe6dc4195 user_path_create -EXPORT_SYMBOL vmlinux 0xe6f5f6b7 inet_addr_type_table -EXPORT_SYMBOL vmlinux 0xe6fa06a2 rename_lock -EXPORT_SYMBOL vmlinux 0xe704db56 textsearch_unregister -EXPORT_SYMBOL vmlinux 0xe70b1af6 simple_statfs -EXPORT_SYMBOL vmlinux 0xe7257ab8 xa_store_range -EXPORT_SYMBOL vmlinux 0xe7324b9a utf8nfdicf -EXPORT_SYMBOL vmlinux 0xe7423668 __sk_queue_drop_skb -EXPORT_SYMBOL vmlinux 0xe7520799 netdev_port_same_parent_id -EXPORT_SYMBOL vmlinux 0xe75b48e1 dump_align -EXPORT_SYMBOL vmlinux 0xe75fbad5 devm_of_iomap -EXPORT_SYMBOL vmlinux 0xe766cf01 free_mdio_bitbang -EXPORT_SYMBOL vmlinux 0xe767e10f proc_remove -EXPORT_SYMBOL vmlinux 0xe7698027 ioremap_cache -EXPORT_SYMBOL vmlinux 0xe76acbc2 jbd2_journal_force_commit -EXPORT_SYMBOL vmlinux 0xe789f7d0 backlight_device_unregister -EXPORT_SYMBOL vmlinux 0xe7a02573 ida_alloc_range -EXPORT_SYMBOL vmlinux 0xe7a2254e blk_queue_max_hw_sectors -EXPORT_SYMBOL vmlinux 0xe7af78a4 pagecache_write_end -EXPORT_SYMBOL vmlinux 0xe7b0353b __cpu_active_mask -EXPORT_SYMBOL vmlinux 0xe7c9de72 reuseport_has_conns_set -EXPORT_SYMBOL vmlinux 0xe7d4daac seq_list_next -EXPORT_SYMBOL vmlinux 0xe80eff12 notify_change -EXPORT_SYMBOL vmlinux 0xe8294370 netdev_change_features -EXPORT_SYMBOL vmlinux 0xe8330a5a call_usermodehelper_exec -EXPORT_SYMBOL vmlinux 0xe857018e kmem_cache_free -EXPORT_SYMBOL vmlinux 0xe85f2123 acpi_tb_unload_table -EXPORT_SYMBOL vmlinux 0xe86a0aa7 ucc_of_parse_tdm -EXPORT_SYMBOL vmlinux 0xe8796b4c account_page_redirty -EXPORT_SYMBOL vmlinux 0xe880d69d configfs_remove_default_groups -EXPORT_SYMBOL vmlinux 0xe8ac9c8a dma_resv_reserve_shared -EXPORT_SYMBOL vmlinux 0xe8b5c3c3 __tracepoint_module_get -EXPORT_SYMBOL vmlinux 0xe8bb42ab sock_release -EXPORT_SYMBOL vmlinux 0xe8d7a668 ppp_channel_index -EXPORT_SYMBOL vmlinux 0xe8fbf4fa __alloc_bucket_spinlocks -EXPORT_SYMBOL vmlinux 0xe90253f0 xudma_rflow_get -EXPORT_SYMBOL vmlinux 0xe909997a bitmap_print_list_to_buf -EXPORT_SYMBOL vmlinux 0xe914e41e strcpy -EXPORT_SYMBOL vmlinux 0xe9415536 simple_release_fs -EXPORT_SYMBOL vmlinux 0xe953b21f get_next_ino -EXPORT_SYMBOL vmlinux 0xe965b93a truncate_pagecache_range -EXPORT_SYMBOL vmlinux 0xe96e2909 twl6040_clear_bits -EXPORT_SYMBOL vmlinux 0xe972c855 phy_register_fixup -EXPORT_SYMBOL vmlinux 0xe98bdbbe inet6_add_offload -EXPORT_SYMBOL vmlinux 0xe98dd0db tcp_close -EXPORT_SYMBOL vmlinux 0xe9915478 mpage_readpage -EXPORT_SYMBOL vmlinux 0xe9a43cd5 jbd2_journal_load -EXPORT_SYMBOL vmlinux 0xe9a7c885 get_acl -EXPORT_SYMBOL vmlinux 0xe9af7397 __xa_set_mark -EXPORT_SYMBOL vmlinux 0xe9bd1350 dev_set_mac_address_user -EXPORT_SYMBOL vmlinux 0xe9c0a087 vme_unregister_driver -EXPORT_SYMBOL vmlinux 0xe9e7fe3c get_user_pages_remote -EXPORT_SYMBOL vmlinux 0xe9e8faeb efi_tpm_final_log_size -EXPORT_SYMBOL vmlinux 0xe9f7149c zlib_deflate_workspacesize -EXPORT_SYMBOL vmlinux 0xe9fa6dcf param_get_byte -EXPORT_SYMBOL vmlinux 0xe9ffc063 down_trylock -EXPORT_SYMBOL vmlinux 0xea0f143a generic_read_dir -EXPORT_SYMBOL vmlinux 0xea1c3e3a arm_smccc_1_2_hvc -EXPORT_SYMBOL vmlinux 0xea2248d1 filemap_page_mkwrite -EXPORT_SYMBOL vmlinux 0xea39c49b netdev_get_xmit_slave -EXPORT_SYMBOL vmlinux 0xea3c8e4e scsilun_to_int -EXPORT_SYMBOL vmlinux 0xea4325d9 udp_lib_get_port -EXPORT_SYMBOL vmlinux 0xea4cc3f9 generic_file_open -EXPORT_SYMBOL vmlinux 0xea6f9a36 zlib_deflate_dfltcc_enabled -EXPORT_SYMBOL vmlinux 0xea778fab sg_pcopy_to_buffer -EXPORT_SYMBOL vmlinux 0xea86efbf rdmacg_uncharge -EXPORT_SYMBOL vmlinux 0xea89f281 mipi_dsi_dcs_set_display_brightness_large -EXPORT_SYMBOL vmlinux 0xea908dbe pneigh_enqueue -EXPORT_SYMBOL vmlinux 0xea9f1c29 __alloc_skb -EXPORT_SYMBOL vmlinux 0xeaa44c14 tcf_idr_search -EXPORT_SYMBOL vmlinux 0xeaa80ebe mdiobus_read -EXPORT_SYMBOL vmlinux 0xeaadafc2 padata_free_shell -EXPORT_SYMBOL vmlinux 0xeab6f4c4 acpi_check_resource_conflict -EXPORT_SYMBOL vmlinux 0xeabd668b dma_async_tx_descriptor_init -EXPORT_SYMBOL vmlinux 0xead0dba0 padata_free -EXPORT_SYMBOL vmlinux 0xead8c400 bman_get_bpid -EXPORT_SYMBOL vmlinux 0xeae3dfd6 __const_udelay -EXPORT_SYMBOL vmlinux 0xeae8ec5e kmem_cache_create -EXPORT_SYMBOL vmlinux 0xeafc141f __posix_acl_chmod -EXPORT_SYMBOL vmlinux 0xeb00c817 qdisc_offload_dump_helper -EXPORT_SYMBOL vmlinux 0xeb0189bd udp_push_pending_frames -EXPORT_SYMBOL vmlinux 0xeb093c71 xfrm4_protocol_register -EXPORT_SYMBOL vmlinux 0xeb1287e2 jbd2_journal_start_reserved -EXPORT_SYMBOL vmlinux 0xeb155c20 tcf_qevent_validate_change -EXPORT_SYMBOL vmlinux 0xeb233a45 __kmalloc -EXPORT_SYMBOL vmlinux 0xeb2eb73c sock_set_keepalive -EXPORT_SYMBOL vmlinux 0xeb348ad5 devm_alloc_etherdev_mqs -EXPORT_SYMBOL vmlinux 0xeb37101c audit_log_end -EXPORT_SYMBOL vmlinux 0xeb44339a free_pages_exact -EXPORT_SYMBOL vmlinux 0xeb5dbaf8 seq_open_private -EXPORT_SYMBOL vmlinux 0xeb601f70 xfrm_state_walk -EXPORT_SYMBOL vmlinux 0xeb7f6046 acpi_get_devices -EXPORT_SYMBOL vmlinux 0xeb9e913d sgl_alloc_order -EXPORT_SYMBOL vmlinux 0xeb9eef52 match_uint -EXPORT_SYMBOL vmlinux 0xebc0abd6 mipi_dsi_dcs_set_tear_off -EXPORT_SYMBOL vmlinux 0xebd0d20e ip6_frag_init -EXPORT_SYMBOL vmlinux 0xebdc27ff ww_mutex_unlock -EXPORT_SYMBOL vmlinux 0xebe46dc8 max8925_bulk_read -EXPORT_SYMBOL vmlinux 0xebe857d5 cros_ec_query_all -EXPORT_SYMBOL vmlinux 0xebeb20ea __nla_put -EXPORT_SYMBOL vmlinux 0xebf2ee26 d_find_alias -EXPORT_SYMBOL vmlinux 0xebf6e58b mii_check_link -EXPORT_SYMBOL vmlinux 0xebfb9c4c fs_param_is_u64 -EXPORT_SYMBOL vmlinux 0xec251bea inet_register_protosw -EXPORT_SYMBOL vmlinux 0xec2b8a42 acpi_walk_namespace -EXPORT_SYMBOL vmlinux 0xec2e1c8f proc_doulongvec_minmax -EXPORT_SYMBOL vmlinux 0xec33c668 __SCK__tp_func_spi_transfer_start -EXPORT_SYMBOL vmlinux 0xec41716a qman_alloc_fqid_range -EXPORT_SYMBOL vmlinux 0xec4d9e3a clk_get_sys -EXPORT_SYMBOL vmlinux 0xec511b08 neigh_sysctl_register -EXPORT_SYMBOL vmlinux 0xec5366e9 mipi_dsi_turn_on_peripheral -EXPORT_SYMBOL vmlinux 0xec53e0c6 security_inode_getsecctx -EXPORT_SYMBOL vmlinux 0xec653420 __of_mdiobus_register -EXPORT_SYMBOL vmlinux 0xec68d6f5 __i2c_smbus_xfer -EXPORT_SYMBOL vmlinux 0xec948355 __set_page_dirty_buffers -EXPORT_SYMBOL vmlinux 0xec970d76 scsi_print_sense_hdr -EXPORT_SYMBOL vmlinux 0xec999dcb phy_ethtool_set_link_ksettings -EXPORT_SYMBOL vmlinux 0xecddccf1 dma_resv_init -EXPORT_SYMBOL vmlinux 0xece107d0 dquot_claim_space_nodirty -EXPORT_SYMBOL vmlinux 0xece784c2 rb_first -EXPORT_SYMBOL vmlinux 0xecfd68ef acpi_get_node -EXPORT_SYMBOL vmlinux 0xed00c4fb acpi_os_printf -EXPORT_SYMBOL vmlinux 0xed13bc92 ptp_find_pin -EXPORT_SYMBOL vmlinux 0xed238617 __put_cred -EXPORT_SYMBOL vmlinux 0xed24bd72 delete_from_page_cache -EXPORT_SYMBOL vmlinux 0xed37747c ww_mutex_lock_interruptible -EXPORT_SYMBOL vmlinux 0xed5376c5 __printk_wait_on_cpu_lock -EXPORT_SYMBOL vmlinux 0xed55f929 acpi_os_unmap_generic_address -EXPORT_SYMBOL vmlinux 0xed5d64c4 nla_put_64bit -EXPORT_SYMBOL vmlinux 0xed656e30 udp_encap_disable -EXPORT_SYMBOL vmlinux 0xed7ca561 ps2_handle_ack -EXPORT_SYMBOL vmlinux 0xed8a2d95 memset64 -EXPORT_SYMBOL vmlinux 0xed8a7e5e mii_nway_restart -EXPORT_SYMBOL vmlinux 0xeda3d246 amba_request_regions -EXPORT_SYMBOL vmlinux 0xeda96381 vme_new_dma_list -EXPORT_SYMBOL vmlinux 0xedacc5c0 page_pool_put_page_bulk -EXPORT_SYMBOL vmlinux 0xedbaee5e nla_strcmp -EXPORT_SYMBOL vmlinux 0xedc03953 iounmap -EXPORT_SYMBOL vmlinux 0xedd467ff phy_init_eee -EXPORT_SYMBOL vmlinux 0xedd5c54d put_fs_context -EXPORT_SYMBOL vmlinux 0xee084f6e nd_btt_arena_is_valid -EXPORT_SYMBOL vmlinux 0xee0c00e3 md_bitmap_sync_with_cluster -EXPORT_SYMBOL vmlinux 0xee216c74 md_bitmap_start_sync -EXPORT_SYMBOL vmlinux 0xee2d0fc7 _local_bh_enable -EXPORT_SYMBOL vmlinux 0xee341049 bmap -EXPORT_SYMBOL vmlinux 0xee35addd input_get_keycode -EXPORT_SYMBOL vmlinux 0xee39650b flow_indr_dev_setup_offload -EXPORT_SYMBOL vmlinux 0xee58e970 fb_add_videomode -EXPORT_SYMBOL vmlinux 0xee6f068c ip_tunnel_header_ops -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 0xeea335f1 security_sb_set_mnt_opts -EXPORT_SYMBOL vmlinux 0xeea9dbaf bitmap_bitremap -EXPORT_SYMBOL vmlinux 0xeee1038e sk_stream_wait_memory -EXPORT_SYMBOL vmlinux 0xeee75d91 ucc_fast_init -EXPORT_SYMBOL vmlinux 0xeef39a2b fman_port_bind -EXPORT_SYMBOL vmlinux 0xeef4ab2f fscrypt_free_inode -EXPORT_SYMBOL vmlinux 0xef02f92b input_mt_init_slots -EXPORT_SYMBOL vmlinux 0xef126370 lock_page_memcg -EXPORT_SYMBOL vmlinux 0xef367fec rtnl_configure_link -EXPORT_SYMBOL vmlinux 0xef3eccd6 skb_recv_datagram -EXPORT_SYMBOL vmlinux 0xef5dbeb9 devm_ioport_map -EXPORT_SYMBOL vmlinux 0xef6579e7 genphy_c37_config_aneg -EXPORT_SYMBOL vmlinux 0xef7c05ab hsierrrpt_dereg_cb -EXPORT_SYMBOL vmlinux 0xef842e9c skb_eth_push -EXPORT_SYMBOL vmlinux 0xef8ac53d qcom_scm_restore_sec_cfg -EXPORT_SYMBOL vmlinux 0xef997777 twl6040_get_vibralr_status -EXPORT_SYMBOL vmlinux 0xefa24891 config_item_init_type_name -EXPORT_SYMBOL vmlinux 0xefaab454 __skb_vlan_pop -EXPORT_SYMBOL vmlinux 0xefaf2e4f tcf_queue_work -EXPORT_SYMBOL vmlinux 0xefb498c4 tcf_em_unregister -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 0xf0009fee put_pages_list -EXPORT_SYMBOL vmlinux 0xf00ff229 sg_miter_start -EXPORT_SYMBOL vmlinux 0xf024b3d7 tty_unthrottle -EXPORT_SYMBOL vmlinux 0xf027ba0f dev_mc_del -EXPORT_SYMBOL vmlinux 0xf02aa937 wait_for_completion_interruptible_timeout -EXPORT_SYMBOL vmlinux 0xf032e1a3 nlmsg_notify -EXPORT_SYMBOL vmlinux 0xf046063b mmc_gpiod_request_cd -EXPORT_SYMBOL vmlinux 0xf05c93ae tc_setup_cb_add -EXPORT_SYMBOL vmlinux 0xf06475a4 genphy_check_and_restart_aneg -EXPORT_SYMBOL vmlinux 0xf065f62a simple_recursive_removal -EXPORT_SYMBOL vmlinux 0xf06683ad dev_mc_init -EXPORT_SYMBOL vmlinux 0xf0749b81 pci_bus_add_devices -EXPORT_SYMBOL vmlinux 0xf09b5d9a get_zeroed_page -EXPORT_SYMBOL vmlinux 0xf0a40294 netif_device_attach -EXPORT_SYMBOL vmlinux 0xf0a71b1b revert_creds -EXPORT_SYMBOL vmlinux 0xf0b2419f cmd_db_read_aux_data -EXPORT_SYMBOL vmlinux 0xf0c21330 kernel_bind -EXPORT_SYMBOL vmlinux 0xf0cb4e97 filemap_write_and_wait_range -EXPORT_SYMBOL vmlinux 0xf0cd19d2 uart_get_baud_rate -EXPORT_SYMBOL vmlinux 0xf0cd532d blk_queue_max_write_same_sectors -EXPORT_SYMBOL vmlinux 0xf0dbc28f tcp_child_process -EXPORT_SYMBOL vmlinux 0xf0e11c04 phy_support_sym_pause -EXPORT_SYMBOL vmlinux 0xf10a42b3 netif_rx_ni -EXPORT_SYMBOL vmlinux 0xf10d3d60 phy_connect_direct -EXPORT_SYMBOL vmlinux 0xf1132c2b lookup_one_positive_unlocked -EXPORT_SYMBOL vmlinux 0xf11dd46e _page_poisoning_enabled_early -EXPORT_SYMBOL vmlinux 0xf12c2fa3 crypto_sha1_update -EXPORT_SYMBOL vmlinux 0xf13015af set_anon_super -EXPORT_SYMBOL vmlinux 0xf18300ad logic_inb -EXPORT_SYMBOL vmlinux 0xf18eb53a devm_memremap -EXPORT_SYMBOL vmlinux 0xf195c682 fb_invert_cmaps -EXPORT_SYMBOL vmlinux 0xf1969a8e __usecs_to_jiffies -EXPORT_SYMBOL vmlinux 0xf1a243e0 disk_stack_limits -EXPORT_SYMBOL vmlinux 0xf1ba3dae proc_mkdir_mode -EXPORT_SYMBOL vmlinux 0xf1bf48ff __phy_read_mmd -EXPORT_SYMBOL vmlinux 0xf1cee28c qdisc_offload_graft_helper -EXPORT_SYMBOL vmlinux 0xf1db1704 nla_memcpy -EXPORT_SYMBOL vmlinux 0xf1e046cc panic -EXPORT_SYMBOL vmlinux 0xf1e98c74 avenrun -EXPORT_SYMBOL vmlinux 0xf1ec0e22 __blk_alloc_disk -EXPORT_SYMBOL vmlinux 0xf1f4a971 __seq_open_private -EXPORT_SYMBOL vmlinux 0xf21ee142 unlock_rename -EXPORT_SYMBOL vmlinux 0xf232c20a tcf_action_set_ctrlact -EXPORT_SYMBOL vmlinux 0xf23fcb99 __kfifo_in -EXPORT_SYMBOL vmlinux 0xf25b10e5 netif_skb_features -EXPORT_SYMBOL vmlinux 0xf2669a2c imx_scu_irq_register_notifier -EXPORT_SYMBOL vmlinux 0xf282b72e blk_set_runtime_active -EXPORT_SYMBOL vmlinux 0xf28404cf devlink_dpipe_header_ipv6 -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 0xf2b4daa6 kmem_cache_alloc_node_trace -EXPORT_SYMBOL vmlinux 0xf2c43f3f zlib_deflate -EXPORT_SYMBOL vmlinux 0xf2c54625 vme_register_error_handler -EXPORT_SYMBOL vmlinux 0xf2d85cd5 mipi_dsi_dcs_set_tear_scanline -EXPORT_SYMBOL vmlinux 0xf2e5bd87 security_free_mnt_opts -EXPORT_SYMBOL vmlinux 0xf2ed7a59 mipi_dsi_dcs_set_tear_on -EXPORT_SYMBOL vmlinux 0xf2eeff5d pci_request_irq -EXPORT_SYMBOL vmlinux 0xf2f53617 memregion_free -EXPORT_SYMBOL vmlinux 0xf3107926 sha224_update -EXPORT_SYMBOL vmlinux 0xf31087e2 seq_vprintf -EXPORT_SYMBOL vmlinux 0xf3209989 pci_scan_bus -EXPORT_SYMBOL vmlinux 0xf33df361 security_sb_clone_mnt_opts -EXPORT_SYMBOL vmlinux 0xf3423129 migrate_page -EXPORT_SYMBOL vmlinux 0xf346231f seq_list_start_head -EXPORT_SYMBOL vmlinux 0xf353a698 register_module_notifier -EXPORT_SYMBOL vmlinux 0xf36a0b5d mem_cgroup_from_task -EXPORT_SYMBOL vmlinux 0xf36f42a9 slhc_uncompress -EXPORT_SYMBOL vmlinux 0xf38ba631 blk_get_request -EXPORT_SYMBOL vmlinux 0xf3916987 global_cursor_default -EXPORT_SYMBOL vmlinux 0xf3932313 mb_cache_entry_wait_unused -EXPORT_SYMBOL vmlinux 0xf39b813b block_write_begin -EXPORT_SYMBOL vmlinux 0xf3a57892 release_dentry_name_snapshot -EXPORT_SYMBOL vmlinux 0xf3b30a06 utf8version_latest -EXPORT_SYMBOL vmlinux 0xf3d64e41 seq_hex_dump -EXPORT_SYMBOL vmlinux 0xf3daf675 d_prune_aliases -EXPORT_SYMBOL vmlinux 0xf3e0cddb devfreq_recommended_opp -EXPORT_SYMBOL vmlinux 0xf3e0e1df allocate_resource -EXPORT_SYMBOL vmlinux 0xf3e6402e __bitmap_equal -EXPORT_SYMBOL vmlinux 0xf3f99b90 kthread_destroy_worker -EXPORT_SYMBOL vmlinux 0xf3fc8a70 ns_capable_noaudit -EXPORT_SYMBOL vmlinux 0xf405cfc3 watchdog_unregister_governor -EXPORT_SYMBOL vmlinux 0xf40add51 input_grab_device -EXPORT_SYMBOL vmlinux 0xf4102303 nla_put_nohdr -EXPORT_SYMBOL vmlinux 0xf43452c5 pci_choose_state -EXPORT_SYMBOL vmlinux 0xf43d2caa acpi_remove_interface -EXPORT_SYMBOL vmlinux 0xf4477112 ip_sock_set_freebind -EXPORT_SYMBOL vmlinux 0xf44a904a net_ns_barrier -EXPORT_SYMBOL vmlinux 0xf44bddb7 vme_dma_request -EXPORT_SYMBOL vmlinux 0xf45e8dbc refresh_frequency_limits -EXPORT_SYMBOL vmlinux 0xf45ef8bc blk_rq_map_kern -EXPORT_SYMBOL vmlinux 0xf4615344 xfrm_state_flush -EXPORT_SYMBOL vmlinux 0xf4681fa3 sock_no_sendmsg_locked -EXPORT_SYMBOL vmlinux 0xf46dad3e mmc_cards -EXPORT_SYMBOL vmlinux 0xf470c17f jbd2_log_start_commit -EXPORT_SYMBOL vmlinux 0xf474c21c bitmap_print_to_pagebuf -EXPORT_SYMBOL vmlinux 0xf474fdcb kfree_const -EXPORT_SYMBOL vmlinux 0xf4905947 jbd2_journal_inode_ranged_write -EXPORT_SYMBOL vmlinux 0xf4939d51 bio_put -EXPORT_SYMBOL vmlinux 0xf4a82cb3 dm_table_get_size -EXPORT_SYMBOL vmlinux 0xf4a8628a of_xudma_dev_get -EXPORT_SYMBOL vmlinux 0xf4ad1a66 file_open_root -EXPORT_SYMBOL vmlinux 0xf4ad51b6 clear_nlink -EXPORT_SYMBOL vmlinux 0xf4b754fd acpi_resources_are_enforced -EXPORT_SYMBOL vmlinux 0xf4b87707 __inet_hash -EXPORT_SYMBOL vmlinux 0xf4bdbeb9 __frontswap_invalidate_area -EXPORT_SYMBOL vmlinux 0xf4cb3349 of_phy_deregister_fixed_link -EXPORT_SYMBOL vmlinux 0xf4db35bc stpcpy -EXPORT_SYMBOL vmlinux 0xf4f14de6 rtnl_trylock -EXPORT_SYMBOL vmlinux 0xf4f500f0 bio_clone_fast -EXPORT_SYMBOL vmlinux 0xf501939e dev_printk_emit -EXPORT_SYMBOL vmlinux 0xf51704b0 __ip_select_ident -EXPORT_SYMBOL vmlinux 0xf522e469 scmd_printk -EXPORT_SYMBOL vmlinux 0xf530ce1d rproc_elf_get_boot_addr -EXPORT_SYMBOL vmlinux 0xf535f666 sock_no_bind -EXPORT_SYMBOL vmlinux 0xf53d4c26 qdisc_class_hash_destroy -EXPORT_SYMBOL vmlinux 0xf55a9d99 blk_rq_init -EXPORT_SYMBOL vmlinux 0xf5651bc6 sock_no_socketpair -EXPORT_SYMBOL vmlinux 0xf57fc4b1 param_ops_uint -EXPORT_SYMBOL vmlinux 0xf586ee0c __dquot_transfer -EXPORT_SYMBOL vmlinux 0xf58c263a netdev_notice -EXPORT_SYMBOL vmlinux 0xf5a20ed2 __genradix_prealloc -EXPORT_SYMBOL vmlinux 0xf5add0ae ns_capable_setid -EXPORT_SYMBOL vmlinux 0xf5b53912 phy_advertise_supported -EXPORT_SYMBOL vmlinux 0xf5c20975 ipv6_chk_custom_prefix -EXPORT_SYMBOL vmlinux 0xf5c3937a __hw_addr_ref_sync_dev -EXPORT_SYMBOL vmlinux 0xf5e7ea40 ktime_get_coarse_ts64 -EXPORT_SYMBOL vmlinux 0xf5e90fab acpi_notifier_call_chain -EXPORT_SYMBOL vmlinux 0xf5f5a644 iov_iter_pipe -EXPORT_SYMBOL vmlinux 0xf620df88 setup_arg_pages -EXPORT_SYMBOL vmlinux 0xf62c39fe ucc_slow_graceful_stop_tx -EXPORT_SYMBOL vmlinux 0xf62d720c edac_mc_find -EXPORT_SYMBOL vmlinux 0xf6378862 iput -EXPORT_SYMBOL vmlinux 0xf63a3f3a tty_port_carrier_raised -EXPORT_SYMBOL vmlinux 0xf643d104 hsiphash_4u32 -EXPORT_SYMBOL vmlinux 0xf665f74f sock_load_diag_module -EXPORT_SYMBOL vmlinux 0xf68285c0 register_inetaddr_notifier -EXPORT_SYMBOL vmlinux 0xf68e9623 get_mem_cgroup_from_mm -EXPORT_SYMBOL vmlinux 0xf6987424 pagevec_lookup_range_tag -EXPORT_SYMBOL vmlinux 0xf6d2e4be pps_unregister_source -EXPORT_SYMBOL vmlinux 0xf6ebc03b net_ratelimit -EXPORT_SYMBOL vmlinux 0xf6f9d58d init_on_free -EXPORT_SYMBOL vmlinux 0xf6fc8791 __bitmap_xor -EXPORT_SYMBOL vmlinux 0xf70b8f5d __tty_alloc_driver -EXPORT_SYMBOL vmlinux 0xf7149b8d inet_frag_find -EXPORT_SYMBOL vmlinux 0xf7202b85 tcp_sock_set_user_timeout -EXPORT_SYMBOL vmlinux 0xf723c4b4 tty_port_destroy -EXPORT_SYMBOL vmlinux 0xf738d1be register_blocking_lsm_notifier -EXPORT_SYMBOL vmlinux 0xf75282fe of_iommu_get_resv_regions -EXPORT_SYMBOL vmlinux 0xf75d64c9 iproc_msi_init -EXPORT_SYMBOL vmlinux 0xf76843b5 qcom_scm_pas_supported -EXPORT_SYMBOL vmlinux 0xf76e0db6 bpf_prog_get_type_path -EXPORT_SYMBOL vmlinux 0xf77337a1 hdmi_audio_infoframe_check -EXPORT_SYMBOL vmlinux 0xf773ccb3 sock_common_getsockopt -EXPORT_SYMBOL vmlinux 0xf77555cd __memcpy_toio -EXPORT_SYMBOL vmlinux 0xf780a57e netpoll_parse_options -EXPORT_SYMBOL vmlinux 0xf7842eb7 __dst_destroy_metrics_generic -EXPORT_SYMBOL vmlinux 0xf786e603 sk_stream_error -EXPORT_SYMBOL vmlinux 0xf7c477c1 mmc_cqe_start_req -EXPORT_SYMBOL vmlinux 0xf7c48778 __tracepoint_kmalloc_node -EXPORT_SYMBOL vmlinux 0xf7d31de9 kstrtoul_from_user -EXPORT_SYMBOL vmlinux 0xf7da6e6f acpi_unload_table -EXPORT_SYMBOL vmlinux 0xf7ea6311 qman_p_poll_dqrr -EXPORT_SYMBOL vmlinux 0xf7f05c17 fman_port_use_kg_hash -EXPORT_SYMBOL vmlinux 0xf7f60bf0 write_cache_pages -EXPORT_SYMBOL vmlinux 0xf806713b tty_port_put -EXPORT_SYMBOL vmlinux 0xf80b7171 ip_cmsg_recv_offset -EXPORT_SYMBOL vmlinux 0xf81101fd __task_pid_nr_ns -EXPORT_SYMBOL vmlinux 0xf811e69d scsi_eh_flush_done_q -EXPORT_SYMBOL vmlinux 0xf812cff6 memscan -EXPORT_SYMBOL vmlinux 0xf82abc1d isa_dma_bridge_buggy -EXPORT_SYMBOL vmlinux 0xf82ec573 rb_prev -EXPORT_SYMBOL vmlinux 0xf835c4d9 tty_port_init -EXPORT_SYMBOL vmlinux 0xf84bd6ee bpf_stats_enabled_key -EXPORT_SYMBOL vmlinux 0xf84ca187 pci_scan_root_bus_bridge -EXPORT_SYMBOL vmlinux 0xf863d34e to_nd_dax -EXPORT_SYMBOL vmlinux 0xf86467f3 ps2_begin_command -EXPORT_SYMBOL vmlinux 0xf86b810e dmaengine_get_unmap_data -EXPORT_SYMBOL vmlinux 0xf87b4aea prepare_to_swait_event -EXPORT_SYMBOL vmlinux 0xf888ca21 sg_init_table -EXPORT_SYMBOL vmlinux 0xf892cc98 dquot_quota_on -EXPORT_SYMBOL vmlinux 0xf89676cc vme_dma_list_add -EXPORT_SYMBOL vmlinux 0xf89cfd62 netdev_notify_peers -EXPORT_SYMBOL vmlinux 0xf8b06de0 super_setup_bdi -EXPORT_SYMBOL vmlinux 0xf8b17530 blk_pre_runtime_resume -EXPORT_SYMBOL vmlinux 0xf8bf8e22 ZSTD_DDictWorkspaceBound -EXPORT_SYMBOL vmlinux 0xf8d07858 bitmap_from_arr32 -EXPORT_SYMBOL vmlinux 0xf8e6747e pcie_get_readrq -EXPORT_SYMBOL vmlinux 0xf8f61ebc wake_up_var -EXPORT_SYMBOL vmlinux 0xf8f9dad3 sock_register -EXPORT_SYMBOL vmlinux 0xf9006c84 eth_commit_mac_addr_change -EXPORT_SYMBOL vmlinux 0xf9195c1f serio_unregister_child_port -EXPORT_SYMBOL vmlinux 0xf91b89ab fman_sp_build_buffer_struct -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 0xf967e3c0 posix_lock_file -EXPORT_SYMBOL vmlinux 0xf971cea8 utf8len -EXPORT_SYMBOL vmlinux 0xf9722676 twl_i2c_write -EXPORT_SYMBOL vmlinux 0xf981c667 regset_get_alloc -EXPORT_SYMBOL vmlinux 0xf98d0d61 vfs_get_tree -EXPORT_SYMBOL vmlinux 0xf9a482f9 msleep -EXPORT_SYMBOL vmlinux 0xf9c0b663 strlcat -EXPORT_SYMBOL vmlinux 0xf9c38a92 pci_ep_cfs_add_epc_group -EXPORT_SYMBOL vmlinux 0xf9c7a0b9 config_item_put -EXPORT_SYMBOL vmlinux 0xf9ca2eb4 kstrtoint_from_user -EXPORT_SYMBOL vmlinux 0xfa042227 gnet_stats_add_basic -EXPORT_SYMBOL vmlinux 0xfa08c34a page_offline_end -EXPORT_SYMBOL vmlinux 0xfa2320a1 key_move -EXPORT_SYMBOL vmlinux 0xfa297415 acpi_map_pxm_to_node -EXPORT_SYMBOL vmlinux 0xfa2e5f32 i2c_smbus_pec -EXPORT_SYMBOL vmlinux 0xfa384b47 iw_handler_get_spy -EXPORT_SYMBOL vmlinux 0xfa55f2d3 inode_update_time -EXPORT_SYMBOL vmlinux 0xfa570fc4 remap_vmalloc_range -EXPORT_SYMBOL vmlinux 0xfa599bb2 netlink_register_notifier -EXPORT_SYMBOL vmlinux 0xfa627650 napi_gro_receive -EXPORT_SYMBOL vmlinux 0xfa873ad0 prandom_seed -EXPORT_SYMBOL vmlinux 0xfa893cf2 dma_sync_sg_for_device -EXPORT_SYMBOL vmlinux 0xfa942791 iommu_put_dma_cookie -EXPORT_SYMBOL vmlinux 0xfa9de673 uart_unregister_driver -EXPORT_SYMBOL vmlinux 0xfaaa12d0 _page_poisoning_enabled -EXPORT_SYMBOL vmlinux 0xfac29056 kfree_skb_reason -EXPORT_SYMBOL vmlinux 0xfac8865f sysctl_wmem_max -EXPORT_SYMBOL vmlinux 0xfacd8c28 nla_put -EXPORT_SYMBOL vmlinux 0xfad23c3e xfrm_parse_spi -EXPORT_SYMBOL vmlinux 0xfae56614 rtc_add_group -EXPORT_SYMBOL vmlinux 0xfaebba21 inet_csk_delete_keepalive_timer -EXPORT_SYMBOL vmlinux 0xfaec648d tty_lock -EXPORT_SYMBOL vmlinux 0xfaeec377 of_graph_get_remote_node -EXPORT_SYMBOL vmlinux 0xfaf17b65 jbd2_journal_try_to_free_buffers -EXPORT_SYMBOL vmlinux 0xfb03d7df inet_csk_reset_keepalive_timer -EXPORT_SYMBOL vmlinux 0xfb0c8c7a cdev_device_del -EXPORT_SYMBOL vmlinux 0xfb348fea fault_in_safe_writeable -EXPORT_SYMBOL vmlinux 0xfb384d37 kasprintf -EXPORT_SYMBOL vmlinux 0xfb4fcb0d d_alloc_name -EXPORT_SYMBOL vmlinux 0xfb6af58d recalc_sigpending -EXPORT_SYMBOL vmlinux 0xfb819b63 flow_rule_match_ports -EXPORT_SYMBOL vmlinux 0xfb937dd7 netdev_lower_dev_get_private -EXPORT_SYMBOL vmlinux 0xfb9c5f00 cdrom_ioctl -EXPORT_SYMBOL vmlinux 0xfba7ddd2 match_u64 -EXPORT_SYMBOL vmlinux 0xfba81316 blkdev_issue_zeroout -EXPORT_SYMBOL vmlinux 0xfbaaf01e console_lock -EXPORT_SYMBOL vmlinux 0xfbad3cf0 scsi_normalize_sense -EXPORT_SYMBOL vmlinux 0xfbb8a761 strscpy_pad -EXPORT_SYMBOL vmlinux 0xfbbe4937 tcp_connect -EXPORT_SYMBOL vmlinux 0xfbbebb4e set_page_dirty_lock -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 0xfbecbb05 tcf_exts_num_actions -EXPORT_SYMBOL vmlinux 0xfc089262 phy_trigger_machine -EXPORT_SYMBOL vmlinux 0xfc1ad96e vm_mmap -EXPORT_SYMBOL vmlinux 0xfc336d2e __wake_up_bit -EXPORT_SYMBOL vmlinux 0xfc3697aa noop_qdisc -EXPORT_SYMBOL vmlinux 0xfc399557 utf8_load -EXPORT_SYMBOL vmlinux 0xfc4152fc ec_read -EXPORT_SYMBOL vmlinux 0xfc421e79 gnet_stats_add_queue -EXPORT_SYMBOL vmlinux 0xfc4b6e0d __wait_on_buffer -EXPORT_SYMBOL vmlinux 0xfc52abc7 qcom_scm_pas_shutdown -EXPORT_SYMBOL vmlinux 0xfc552eab blk_integrity_compare -EXPORT_SYMBOL vmlinux 0xfc614e7b d_set_fallthru -EXPORT_SYMBOL vmlinux 0xfc6a87e5 scsi_unblock_requests -EXPORT_SYMBOL vmlinux 0xfc81130b dev_pick_tx_cpu_id -EXPORT_SYMBOL vmlinux 0xfc866308 qdisc_class_hash_grow -EXPORT_SYMBOL vmlinux 0xfc881b89 fman_port_get_hash_result_offset -EXPORT_SYMBOL vmlinux 0xfc9ed8c3 qcom_scm_ice_available -EXPORT_SYMBOL vmlinux 0xfcb8ba61 __d_drop -EXPORT_SYMBOL vmlinux 0xfcc9b137 __breadahead_gfp -EXPORT_SYMBOL vmlinux 0xfcce2f7d ucc_fast_enable -EXPORT_SYMBOL vmlinux 0xfcd1819a hdmi_spd_infoframe_check -EXPORT_SYMBOL vmlinux 0xfcd453f2 __free_pages -EXPORT_SYMBOL vmlinux 0xfcdd59a3 __frontswap_test -EXPORT_SYMBOL vmlinux 0xfce6d1ce blk_queue_io_opt -EXPORT_SYMBOL vmlinux 0xfcec0987 enable_irq -EXPORT_SYMBOL vmlinux 0xfd0d92c2 dev_get_mac_address -EXPORT_SYMBOL vmlinux 0xfd373038 xfrm_state_lookup_byaddr -EXPORT_SYMBOL vmlinux 0xfd40994e simple_open -EXPORT_SYMBOL vmlinux 0xfd6f6c8b validate_slab_cache -EXPORT_SYMBOL vmlinux 0xfd6ffcd5 xfrm_state_free -EXPORT_SYMBOL vmlinux 0xfd9459ac __tcp_md5_do_lookup -EXPORT_SYMBOL vmlinux 0xfd95d0f9 sock_i_ino -EXPORT_SYMBOL vmlinux 0xfda9581f prandom_u32 -EXPORT_SYMBOL vmlinux 0xfdad7097 nf_log_packet -EXPORT_SYMBOL vmlinux 0xfdc01c64 tegra_dfll_runtime_resume -EXPORT_SYMBOL vmlinux 0xfdc3eafb skb_expand_head -EXPORT_SYMBOL vmlinux 0xfdcb4ed3 acpi_os_get_line -EXPORT_SYMBOL vmlinux 0xfdcc8a0e fb_find_best_display -EXPORT_SYMBOL vmlinux 0xfdf605c1 sock_recv_errqueue -EXPORT_SYMBOL vmlinux 0xfdfcf49e netdev_has_upper_dev_all_rcu -EXPORT_SYMBOL vmlinux 0xfe029963 unregister_inetaddr_notifier -EXPORT_SYMBOL vmlinux 0xfe1d2e94 key_create_or_update -EXPORT_SYMBOL vmlinux 0xfe314f12 ip_frag_init -EXPORT_SYMBOL vmlinux 0xfe3dab36 __register_chrdev -EXPORT_SYMBOL vmlinux 0xfe41f613 mdiobus_register_device -EXPORT_SYMBOL vmlinux 0xfe487975 init_wait_entry -EXPORT_SYMBOL vmlinux 0xfe50badc d_alloc_anon -EXPORT_SYMBOL vmlinux 0xfe5d4bb2 sys_tz -EXPORT_SYMBOL vmlinux 0xfe66bdf1 scsi_add_host_with_dma -EXPORT_SYMBOL vmlinux 0xfe79f8af unregister_nexthop_notifier -EXPORT_SYMBOL vmlinux 0xfe89b2e5 inode_init_always -EXPORT_SYMBOL vmlinux 0xfe8a8d3c poll_initwait -EXPORT_SYMBOL vmlinux 0xfe916dc6 hex_dump_to_buffer -EXPORT_SYMBOL vmlinux 0xfe9d0c02 tso_build_data -EXPORT_SYMBOL vmlinux 0xfe9ebbbb acpi_osi_is_win8 -EXPORT_SYMBOL vmlinux 0xfea609f9 pcie_get_speed_cap -EXPORT_SYMBOL vmlinux 0xfeb5d0aa verify_spi_info -EXPORT_SYMBOL vmlinux 0xfedcdb60 seq_hlist_next_percpu -EXPORT_SYMBOL vmlinux 0xfeebc7c4 __kfifo_from_user_r -EXPORT_SYMBOL vmlinux 0xfefcb98e vme_dma_vme_attribute -EXPORT_SYMBOL vmlinux 0xff0cfb59 ipv6_sock_mc_join -EXPORT_SYMBOL vmlinux 0xff1e9dd8 seq_list_start -EXPORT_SYMBOL vmlinux 0xff282521 rfkill_register -EXPORT_SYMBOL vmlinux 0xff2cf4c5 fb_get_buffer_offset -EXPORT_SYMBOL vmlinux 0xff36a44d flow_indr_block_cb_alloc -EXPORT_SYMBOL vmlinux 0xff3ca7a1 __traceiter_spi_transfer_start -EXPORT_SYMBOL vmlinux 0xff3fa320 ps2_command -EXPORT_SYMBOL vmlinux 0xff591d40 of_translate_dma_address -EXPORT_SYMBOL vmlinux 0xff6215c9 scsi_host_busy -EXPORT_SYMBOL vmlinux 0xff625fdf tty_wait_until_sent -EXPORT_SYMBOL vmlinux 0xff6272f5 kill_block_super -EXPORT_SYMBOL vmlinux 0xff642e3c tcp_md5_hash_skb_data -EXPORT_SYMBOL vmlinux 0xff6878cf fb_default_cmap -EXPORT_SYMBOL vmlinux 0xff758036 d_move -EXPORT_SYMBOL vmlinux 0xff76da0e from_kprojid_munged -EXPORT_SYMBOL vmlinux 0xff7e7f8d kryo_l2_set_indirect_reg -EXPORT_SYMBOL vmlinux 0xff87cd18 lockref_get_not_dead -EXPORT_SYMBOL vmlinux 0xff8c2378 pci_bus_read_config_dword -EXPORT_SYMBOL vmlinux 0xff9cda30 touchscreen_report_pos -EXPORT_SYMBOL vmlinux 0xffaa0fef serio_unregister_driver -EXPORT_SYMBOL vmlinux 0xffb6021f mount_nodev -EXPORT_SYMBOL vmlinux 0xffb7b673 pci_stop_and_remove_bus_device -EXPORT_SYMBOL vmlinux 0xffb7c514 ida_free -EXPORT_SYMBOL vmlinux 0xffcc4ec7 tcp_bpf_bypass_getsockopt -EXPORT_SYMBOL vmlinux 0xffd6ba4e reuseport_stop_listen_sock -EXPORT_SYMBOL vmlinux 0xffeedf6a delayed_work_timer_fn -EXPORT_SYMBOL_GPL crypto/af_alg 0x0b5c713e af_alg_count_tsgl -EXPORT_SYMBOL_GPL crypto/af_alg 0x0c0de872 af_alg_release -EXPORT_SYMBOL_GPL crypto/af_alg 0x11ed5b53 af_alg_get_rsgl -EXPORT_SYMBOL_GPL crypto/af_alg 0x24fbd68b af_alg_free_resources -EXPORT_SYMBOL_GPL crypto/af_alg 0x44022112 af_alg_make_sg -EXPORT_SYMBOL_GPL crypto/af_alg 0x45879b26 af_alg_alloc_areq -EXPORT_SYMBOL_GPL crypto/af_alg 0x6dd9398d af_alg_unregister_type -EXPORT_SYMBOL_GPL crypto/af_alg 0x814582c5 af_alg_poll -EXPORT_SYMBOL_GPL crypto/af_alg 0x83476a65 af_alg_release_parent -EXPORT_SYMBOL_GPL crypto/af_alg 0x8fc1d071 af_alg_wait_for_data -EXPORT_SYMBOL_GPL crypto/af_alg 0xb91bf6d0 af_alg_wmem_wakeup -EXPORT_SYMBOL_GPL crypto/af_alg 0xbd64af4b af_alg_sendpage -EXPORT_SYMBOL_GPL crypto/af_alg 0xc665b238 af_alg_pull_tsgl -EXPORT_SYMBOL_GPL crypto/af_alg 0xc9d8610f af_alg_accept -EXPORT_SYMBOL_GPL crypto/af_alg 0xcc554a7b af_alg_register_type -EXPORT_SYMBOL_GPL crypto/af_alg 0xce957d9d af_alg_async_cb -EXPORT_SYMBOL_GPL crypto/af_alg 0xd99ff126 af_alg_free_sg -EXPORT_SYMBOL_GPL crypto/af_alg 0xdcb0a583 af_alg_sendmsg -EXPORT_SYMBOL_GPL crypto/asymmetric_keys/asym_tpm 0x723f2cb5 asym_tpm_subtype -EXPORT_SYMBOL_GPL crypto/asymmetric_keys/asym_tpm 0x7430f97c tpm_key_create -EXPORT_SYMBOL_GPL crypto/async_tx/async_memcpy 0x561ddae4 async_memcpy -EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0x42fe04aa async_gen_syndrome -EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0xc76e1d7d async_syndrome_val -EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0x367d5213 async_raid6_2data_recov -EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0x8dc99fad async_raid6_datap_recov -EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x054a0140 async_tx_quiesce -EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x3ab536dc async_trigger_callback -EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x81738f23 async_tx_submit -EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0xa4cd19e6 __async_tx_find_channel -EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x1ffd1d06 async_xor_val -EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x41c1dd3d async_xor_offs -EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0xc6c91534 async_xor_val_offs -EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0xf008542c async_xor -EXPORT_SYMBOL_GPL crypto/authenc 0x2479193e crypto_authenc_extractkeys -EXPORT_SYMBOL_GPL crypto/blowfish_common 0xdcf2798e blowfish_setkey -EXPORT_SYMBOL_GPL crypto/cast5_generic 0x188d9d26 __cast5_decrypt -EXPORT_SYMBOL_GPL crypto/cast5_generic 0x28a86fbb 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 0x4e0ba287 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 0x04b8186b cryptd_free_aead -EXPORT_SYMBOL_GPL crypto/cryptd 0x0bf0c51f cryptd_free_ahash -EXPORT_SYMBOL_GPL crypto/cryptd 0x23edc107 cryptd_aead_queued -EXPORT_SYMBOL_GPL crypto/cryptd 0x40b70534 cryptd_skcipher_child -EXPORT_SYMBOL_GPL crypto/cryptd 0x44f8ee5f cryptd_alloc_aead -EXPORT_SYMBOL_GPL crypto/cryptd 0x4810b3a5 cryptd_alloc_ahash -EXPORT_SYMBOL_GPL crypto/cryptd 0x74261e3f cryptd_skcipher_queued -EXPORT_SYMBOL_GPL crypto/cryptd 0x77d4587b cryptd_aead_child -EXPORT_SYMBOL_GPL crypto/cryptd 0x90603a9e cryptd_ahash_child -EXPORT_SYMBOL_GPL crypto/cryptd 0xa944a728 cryptd_alloc_skcipher -EXPORT_SYMBOL_GPL crypto/cryptd 0xc64c6d26 cryptd_shash_desc -EXPORT_SYMBOL_GPL crypto/cryptd 0xcc8fcaa8 cryptd_ahash_queued -EXPORT_SYMBOL_GPL crypto/cryptd 0xf700c6a6 cryptd_free_skcipher -EXPORT_SYMBOL_GPL crypto/crypto_engine 0x047772a2 crypto_finalize_hash_request -EXPORT_SYMBOL_GPL crypto/crypto_engine 0x1927f075 crypto_engine_alloc_init_and_set -EXPORT_SYMBOL_GPL crypto/crypto_engine 0x1ffaef59 crypto_transfer_akcipher_request_to_engine -EXPORT_SYMBOL_GPL crypto/crypto_engine 0x224da4aa crypto_transfer_skcipher_request_to_engine -EXPORT_SYMBOL_GPL crypto/crypto_engine 0x6271ab69 crypto_engine_start -EXPORT_SYMBOL_GPL crypto/crypto_engine 0x6df220ef crypto_transfer_hash_request_to_engine -EXPORT_SYMBOL_GPL crypto/crypto_engine 0x784a8950 crypto_engine_alloc_init -EXPORT_SYMBOL_GPL crypto/crypto_engine 0x86b62837 crypto_transfer_aead_request_to_engine -EXPORT_SYMBOL_GPL crypto/crypto_engine 0x87818330 crypto_engine_exit -EXPORT_SYMBOL_GPL crypto/crypto_engine 0x92d4cd80 crypto_finalize_aead_request -EXPORT_SYMBOL_GPL crypto/crypto_engine 0xb5c8c4f5 crypto_finalize_akcipher_request -EXPORT_SYMBOL_GPL crypto/crypto_engine 0xbed94115 crypto_engine_stop -EXPORT_SYMBOL_GPL crypto/crypto_engine 0xc215b9ca crypto_finalize_skcipher_request -EXPORT_SYMBOL_GPL crypto/crypto_simd 0x288571ff simd_register_skciphers_compat -EXPORT_SYMBOL_GPL crypto/crypto_simd 0x4cdba020 simd_unregister_skciphers -EXPORT_SYMBOL_GPL crypto/crypto_simd 0x504cb053 simd_aead_create_compat -EXPORT_SYMBOL_GPL crypto/crypto_simd 0x54fcdc61 simd_unregister_aeads -EXPORT_SYMBOL_GPL crypto/crypto_simd 0x66983e96 simd_skcipher_create -EXPORT_SYMBOL_GPL crypto/crypto_simd 0x6fad4248 simd_register_aeads_compat -EXPORT_SYMBOL_GPL crypto/crypto_simd 0x851c747c simd_aead_create -EXPORT_SYMBOL_GPL crypto/crypto_simd 0x88638552 simd_skcipher_create_compat -EXPORT_SYMBOL_GPL crypto/crypto_simd 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 0x3f3d1c2e serpent_setkey -EXPORT_SYMBOL_GPL crypto/serpent_generic 0x4eb4c55e __serpent_encrypt -EXPORT_SYMBOL_GPL crypto/serpent_generic 0xbcc074f3 __serpent_decrypt -EXPORT_SYMBOL_GPL crypto/serpent_generic 0xd4c9681a __serpent_setkey -EXPORT_SYMBOL_GPL crypto/sm3_generic 0x0bddca87 sm3_zero_message_hash -EXPORT_SYMBOL_GPL crypto/twofish_common 0xe22b7787 __twofish_setkey -EXPORT_SYMBOL_GPL crypto/twofish_common 0xfa1a950c twofish_setkey -EXPORT_SYMBOL_GPL drivers/acpi/nfit/nfit 0x322e39f4 __acpi_nvdimm_notify -EXPORT_SYMBOL_GPL drivers/acpi/nfit/nfit 0x4639bcda acpi_nfit_shutdown -EXPORT_SYMBOL_GPL drivers/acpi/nfit/nfit 0x499bbf57 nfit_get_smbios_id -EXPORT_SYMBOL_GPL drivers/acpi/nfit/nfit 0x6d254bc0 acpi_nfit_desc_init -EXPORT_SYMBOL_GPL drivers/acpi/nfit/nfit 0x7c350000 acpi_nfit_ctl -EXPORT_SYMBOL_GPL drivers/acpi/nfit/nfit 0xcf9eff12 __acpi_nfit_notify -EXPORT_SYMBOL_GPL drivers/acpi/nfit/nfit 0xd6c648d7 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 0x225ea5df __pata_platform_probe -EXPORT_SYMBOL_GPL drivers/ata/pata_sis 0xeb479b97 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 0x1edf1926 regmap_ac97_default_volatile -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-ac97 0xa96d7b5a __devm_regmap_init_ac97 -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-ac97 0xb934f56b __regmap_init_ac97 -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-i3c 0x984d72eb __devm_regmap_init_i3c -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sccb 0x59c3389f __regmap_init_sccb -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sccb 0xeba311b5 __devm_regmap_init_sccb -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sdw 0x1ed711a9 __devm_regmap_init_sdw -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sdw 0x64d0498b __regmap_init_sdw -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sdw-mbq 0x02a3bf97 __devm_regmap_init_sdw_mbq -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sdw-mbq 0x95a6a9cf __regmap_init_sdw_mbq -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-slimbus 0x2211eeb4 __regmap_init_slimbus -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-slimbus 0x2b63660a __devm_regmap_init_slimbus -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spi-avmm 0x9598508a __devm_regmap_init_spi_avmm -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spi-avmm 0x9f43939c __regmap_init_spi_avmm -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x333a5bb7 __regmap_init_spmi_base -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x50e8e699 __regmap_init_spmi_ext -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x8dbcc2cd __devm_regmap_init_spmi_base -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0xdd618ceb __devm_regmap_init_spmi_ext -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-w1 0xc30d759d __regmap_init_w1 -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-w1 0xff1cc93f __devm_regmap_init_w1 -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x0c968d2b bcma_chipco_gpio_outen -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x14e8988e bcma_pmu_spuravoid_pllupdate -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x15f6bb2d bcma_chipco_pll_maskset -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x164cacc3 bcma_core_is_enabled -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x18574886 bcma_core_pll_ctl -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x1a37bd9d bcma_host_pci_irq_ctl -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x1fc10256 bcma_chipco_b_mii_write -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x2fa4b5f5 bcma_chipco_regctl_maskset -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x44d2119c bcma_core_disable -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x4aa2b41a bcma_chipco_get_alp_clock -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x761c19fd bcma_driver_unregister -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x98da5988 bcma_host_pci_up -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x99ebd240 bcma_core_pci_power_save -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x9a0df42b bcma_pmu_get_bus_clock -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xa09b4423 bcma_chipco_pll_write -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xa304c344 bcma_host_pci_down -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xafb7e048 bcma_core_set_clockmode -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xb6f4fe31 __bcma_driver_register -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xc29ab108 bcma_chipco_chipctl_maskset -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xcd4b0cc3 bcma_chipco_gpio_out -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xd2f73409 bcma_chipco_pll_read -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xe2f0a98c bcma_core_enable -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xe9f49302 bcma_chipco_gpio_control -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xea7873f7 bcma_find_core_unit -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x27dde79d btbcm_setup_apple -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x30759d26 btbcm_setup_patchram -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x726961ec btbcm_initialize -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x766fde3c btbcm_check_bdaddr -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x93b0695f btbcm_set_bdaddr -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xb22caa2a btbcm_finalize -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xe94b5f6c btbcm_write_pcm_int_params -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xf83ff05e btbcm_read_pcm_int_params -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x0ef19c68 btintel_check_bdaddr -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x13e0a149 btintel_set_event_mask_mfg -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x2d2b0f60 btintel_set_bdaddr -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x2ebf7df1 btintel_set_diag -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x41adb024 btintel_load_ddc_config -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x4b0e03ae btintel_download_firmware -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x557a55c9 btintel_exit_mfg -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x5bf0bd56 btintel_configure_setup -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x5ccdeb83 btintel_bootup -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x63a08d0a btintel_read_version -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x6b45b071 btintel_version_info -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x9c284f00 btintel_regmap_init -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xa296540d btintel_enter_mfg -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xc8225b8a btintel_send_intel_reset -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xf9d82e64 btintel_read_boot_params -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xfbf21fe8 btintel_secure_send_result -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x1357bb29 btmrvl_pscan_window_reporting -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x13a2996f btmrvl_interrupt -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x1de3afdf btmrvl_check_evtpkt -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x39cec5b4 btmrvl_remove_card -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x4f5ee038 btmrvl_process_event -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x51255d56 btmrvl_enable_hs -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x56cafa43 btmrvl_add_card -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x995bc6f4 btmrvl_enable_ps -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xb84809b5 btmrvl_register_hdev -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xd2fdae0d btmrvl_send_hscfg_cmd -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xdcd87a1a btmrvl_send_module_cfg_cmd -EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x35acdf7c qca_set_bdaddr_rome -EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x58cffcc6 qca_send_pre_shutdown_cmd -EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0xb4b372c9 qca_uart_setup -EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0xc0a3bb12 qca_read_soc_version -EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0xe6885afb qca_set_bdaddr -EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x20f1ded8 btrtl_download_firmware -EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x76170841 btrtl_setup_realtek -EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x96f3f568 btrtl_initialize -EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0xaf78f260 btrtl_free -EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0xb5e494ec btrtl_set_quirks -EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0xbb30328e btrtl_get_uart_settings -EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0xfba98b8a btrtl_shutdown_realtek -EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0x1afbdfe3 hci_uart_register_device -EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0x43bc8030 hci_uart_tx_wakeup -EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0x5f4d94d5 h4_recv_buf -EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0x7e9ba664 hci_uart_unregister_device -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x05ce3724 mhi_queue_buf -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x15cac020 mhi_unprepare_from_transfer -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x2057a162 mhi_get_mhi_state -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x21ac5104 mhi_pm_resume_force -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x2480e22c mhi_device_get_sync -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x24d23591 mhi_notify -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x2a8a4666 mhi_async_power_up -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x2d005c03 mhi_get_exec_env -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x2deea0f7 mhi_get_free_desc_count -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x3a8680d7 mhi_pm_suspend -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x524a0949 mhi_register_controller -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x5d44b423 mhi_force_rddm_mode -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x607b7531 mhi_unprepare_after_power_down -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x607db2a5 mhi_driver_unregister -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x60f372cd mhi_device_put -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x6de54cec mhi_poll -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x714f01a9 mhi_unregister_controller -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x741a0b97 mhi_pm_resume -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x77e98f9f __mhi_driver_register -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x80296479 mhi_prepare_for_power_up -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x861341a8 mhi_queue_skb -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x8faf1bde mhi_queue_is_full -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x9a4b490b mhi_power_down -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xc0eced23 mhi_alloc_controller -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xcb9fc85d mhi_queue_dma -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xe34848f7 mhi_free_controller -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xec31e0e1 mhi_prepare_for_transfer -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xfce45685 mhi_download_rddm_image -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xfeb3abab mhi_device_get -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xff13d36b mhi_soc_reset -EXPORT_SYMBOL_GPL drivers/bus/moxtet 0xa64cb3c1 __moxtet_register_driver -EXPORT_SYMBOL_GPL drivers/bus/moxtet 0xbef72296 moxtet_device_read -EXPORT_SYMBOL_GPL drivers/bus/moxtet 0xcc7bbcc0 moxtet_device_written -EXPORT_SYMBOL_GPL drivers/bus/moxtet 0xea25e6da moxtet_device_write -EXPORT_SYMBOL_GPL drivers/bus/sunxi-rsb 0x945fd1b5 sunxi_rsb_driver_register -EXPORT_SYMBOL_GPL drivers/bus/sunxi-rsb 0x986ffbca __devm_regmap_init_sunxi_rsb -EXPORT_SYMBOL_GPL drivers/clk/meson/clk-phase 0x161af923 meson_clk_phase_ops -EXPORT_SYMBOL_GPL drivers/clk/meson/clk-phase 0x4c7a21e5 meson_sclk_ws_inv_ops -EXPORT_SYMBOL_GPL drivers/clk/meson/clk-phase 0xb4929c37 meson_clk_triphase_ops -EXPORT_SYMBOL_GPL drivers/clk/meson/sclk-div 0x4ba6701c 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 0x17d44071 clk_alpha_pll_hwfsm_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x183be5e6 clk_alpha_pll_agera_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x1a142e7c clk_alpha_pll_fixed_trion_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x20796d46 clk_trion_pll_configure -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x24a7abf5 clk_zonda_pll_configure -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x272f3204 clk_alpha_pll_fixed_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x2a9c7452 clk_rcg_lcc_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x2b0d957d clk_pixel_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x2cae96b3 clk_regmap_div_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x30bbf987 clk_rcg2_shared_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x310b6341 clk_regmap_mux_closest_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x3747af55 clk_rcg_bypass2_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x395868a1 qcom_find_freq_floor -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 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 0x43c15251 qcom_find_cfg_index -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x468c585a qcom_find_src_index -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x4938f44a qcom_cc_probe -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x4b0ed6da clk_ops_hfpll -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x4bf45bf2 qcom_cc_probe_by_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 0x5fbc7cda qcom_cc_map -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 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 0x8b65e75d qcom_cc_register_board_clk -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x8c40a81b devm_clk_register_regmap -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 0xa04badbe qcom_cc_register_sleep_clk -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xaa403ee8 clk_alpha_pll_huayra_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xadc2751b clk_alpha_pll_postdiv_fabia_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xba961aa7 clk_dp_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xbc98cf3a gdsc_gx_do_nothing_enable -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xc150d434 clk_alpha_pll_postdiv_ro_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xc5bdfa11 clk_byte2_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xc82bd181 clk_agera_pll_configure -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xcf422970 clk_rcg_bypass_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xd438c1c3 clk_alpha_pll_postdiv_trion_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xd6d7fc12 qcom_cc_really_probe -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 0x4cad4f51 sprd_div_helper_round_rate -EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0x4f93d75f sprd_mux_helper_get_parent -EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0x597905e4 sprd_sc_gate_ops -EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0x6b8639b9 sprd_div_helper_set_rate -EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0x911aa4a0 sprd_mux_ops -EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0x9925914a sprd_mux_helper_set_parent -EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0xaf833f64 sprd_pll_sc_gate_ops -EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0xaf894afe sprd_clk_regmap_init -EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0xe305cb73 sprd_comp_ops -EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0xf122779d sprd_clk_probe -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x034663d3 comedi_buf_read_n_available -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x0904eb23 comedi_readback_insn_read -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x0cd330f4 range_unknown -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x21102f87 range_0_32mA -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x28a99cf7 comedi_buf_write_samples -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x2f0ad9d3 range_bipolar5 -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x370c119b comedi_load_firmware -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x4236eaaf range_4_20mA -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x43af9fd9 comedi_nscans_left -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x4806e70b comedi_auto_config -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x4fe634f3 range_bipolar2_5 -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x550ad7a0 comedi_driver_unregister -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x5682f75c comedi_set_spriv_auto_free -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x5bc5a8e0 comedi_dev_put -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x5f6c4825 comedi_inc_scan_progress -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x6fd1ce03 comedi_buf_write_free -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x7305a0ea comedi_buf_read_alloc -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x76d6f79e comedi_bytes_per_scan -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x78312e02 comedi_dio_insn_config -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x8113872c range_unipolar10 -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x8e478cf3 comedi_timeout -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x94b18c5b comedi_request_region -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x95ef8871 comedi_buf_read_free -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x990effab comedi_is_subdevice_running -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x9b798f8a comedi_alloc_subdevices -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x9ed4313a comedi_handle_events -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xa52a1b12 comedi_event -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xa7fcb0b2 comedi_alloc_devpriv -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xaab42d93 comedi_dio_update_state -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xb32c0802 __comedi_request_region -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 0xbbca41e2 comedi_bytes_per_scan_cmd -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xbcf93bc6 comedi_legacy_detach -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xbdbe75c6 range_unipolar2_5 -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xc62605d2 comedi_check_chanlist -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xcd53a8d9 comedi_driver_register -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xcdf48ebc comedi_buf_write_alloc -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xcea230ba comedi_auto_unconfig -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xd22bc1d6 comedi_alloc_spriv -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xd71b85df comedi_dev_get_from_minor -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xda6c7ed3 comedi_nsamples_left -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xdb2044b2 range_unipolar5 -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xdd70bfe7 comedi_alloc_subdev_readback -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xf6b0139b comedi_set_hw_dev -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xfd5b4b16 comedi_buf_read_samples -EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x0102f84a comedi_pci_enable -EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x1fbe2b64 comedi_pci_disable -EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x2c9f27e5 comedi_pci_auto_unconfig -EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x39d0efc4 comedi_to_pci_dev -EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x6f282549 comedi_pci_driver_register -EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x8a770594 comedi_pci_detach -EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x8d395770 comedi_pci_driver_unregister -EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0xb7f38ca8 comedi_pci_auto_config -EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0x2245281b comedi_to_usb_dev -EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0x398693b6 comedi_usb_driver_unregister -EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0x3ba3db43 comedi_usb_auto_unconfig -EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0x8276fa0d comedi_usb_driver_register -EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0x8b74fec2 comedi_usb_auto_config -EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0xeb9ccabd comedi_to_usb_interface -EXPORT_SYMBOL_GPL drivers/comedi/drivers/addi_watchdog 0x79f4a6cf addi_watchdog_reset -EXPORT_SYMBOL_GPL drivers/comedi/drivers/addi_watchdog 0xef1b146a addi_watchdog_init -EXPORT_SYMBOL_GPL drivers/comedi/drivers/amplc_dio200_common 0xa63b0772 amplc_dio200_set_enhance -EXPORT_SYMBOL_GPL drivers/comedi/drivers/amplc_dio200_common 0xbbf2d7b8 amplc_dio200_common_attach -EXPORT_SYMBOL_GPL drivers/comedi/drivers/amplc_pc236_common 0x6d9a629f amplc_pc236_common_attach -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x427f398d comedi_8254_pacer_enable -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x4ccbb7aa comedi_8254_update_divisors -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x5ce96859 comedi_8254_set_busy -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x66037a4e comedi_8254_mm_init -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x67d30427 comedi_8254_write -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x68dc471d comedi_8254_read -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x92034956 comedi_8254_ns_to_timer -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x936166c0 comedi_8254_init -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x97089ebc comedi_8254_load -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x9c275571 comedi_8254_cascade_ns_to_timer -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0xaeec820d comedi_8254_set_mode -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0xbc87ce1f comedi_8254_status -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0xc6b146ac comedi_8254_subdevice_init -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8255 0x2b71515c subdev_8255_regbase -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8255 0x6860ea74 subdev_8255_mm_init -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8255 0xc736fd23 subdev_8255_init -EXPORT_SYMBOL_GPL drivers/comedi/drivers/das08 0x385b7daa das08_common_attach -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x233acd10 mite_prep_dma -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x271cf9b2 mite_alloc_ring -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x366b469b mite_buf_change -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x5153257b mite_detach -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x57b234b7 mite_attach -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x7a28d9b1 mite_request_channel_in_range -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x8584d7ce mite_request_channel -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xa902db84 mite_sync_dma -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xb1fdccff mite_done -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xb5ff6a31 mite_bytes_in_transit -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xc02573eb mite_ack_linkc -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xc96e3341 mite_dma_disarm -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xe1810536 mite_dma_arm -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xe5f5dbfc mite_free_ring -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xedceecc0 mite_release_channel -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xf4673170 mite_init_ring_descriptors -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_labpc_common 0x77394c38 labpc_common_detach -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_labpc_common 0xef4dc74b 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 0x1bd80836 ni_tio_init_counter -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x1df42e9e ni_tio_set_bits -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x4224fa2e ni_gpct_device_destroy -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x52addd0c ni_tio_set_gate_src -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x6214e262 ni_tio_arm -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x636e1455 ni_tio_insn_write -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x77ce3ce7 ni_tio_get_soft_copy -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x8808b42b ni_tio_read -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x8859e97c ni_tio_insn_read -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x98023701 ni_tio_set_gate_src_raw -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xa0a59820 ni_tio_unset_routing -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xb6f5509d ni_gpct_device_construct -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xdb404ecc ni_tio_set_routing -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xe799d8be ni_tio_insn_config -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xf099fa27 ni_tio_write -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xf8f0836d ni_tio_get_routing -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0x09043c80 ni_tio_cmd -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0x639a7fbe ni_tio_cancel -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0x8822bdbd ni_tio_cmdtest -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0xb2f012ba ni_tio_set_mite_channel -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0xd6db4a5b ni_tio_acknowledge -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0xfe6e37b0 ni_tio_handle_interrupt -EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0x566da8e3 comedi_get_n_channels -EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0x7860a0cb comedi_close -EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0x97c9d160 comedi_dio_bitfield2 -EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0xa3683768 comedi_dio_config -EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0xa7b594fb comedi_find_subdevice_by_type -EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0xf08d3ae1 comedi_open -EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0xf89f938c comedi_dio_get_config -EXPORT_SYMBOL_GPL drivers/counter/counter 0x3a6fb369 devm_counter_register -EXPORT_SYMBOL_GPL drivers/counter/counter 0x7f6ebea8 counter_register -EXPORT_SYMBOL_GPL drivers/counter/counter 0xab74cada counter_unregister -EXPORT_SYMBOL_GPL drivers/crypto/ccp/ccp 0x04773b60 ccp_present -EXPORT_SYMBOL_GPL drivers/crypto/ccp/ccp 0x3a1a3979 ccp_version -EXPORT_SYMBOL_GPL drivers/crypto/ccp/ccp 0xe050c029 ccp_enqueue_cmd -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x0e26e79a hisi_qm_debug_init -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x0e530e16 hisi_qm_pm_init -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x1ca5a135 hisi_qm_get_dfx_access -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x210174bb hisi_qm_dev_err_detected -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x261649ec hisi_acc_free_sgl_pool -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x2b485164 hisi_qm_start_qp -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x2c9c4ea7 hisi_qm_wait_task_finish -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x2e6d9ad5 hisi_qp_send -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x39318f2e hisi_qm_alg_unregister -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x3c8f86c0 hisi_qm_stop -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x3de5811c hisi_qm_pm_uninit -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x495a860b hisi_qm_reset_prepare -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x4c454f7d hisi_acc_sg_buf_map_to_hw_sgl -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x548b75e1 hisi_qm_stop_qp -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x7661dc82 hisi_qm_resume -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x7685fd8d hisi_qm_uninit -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x78514363 hisi_qm_sriov_disable -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x7bed5e5d hisi_qm_alloc_qps_node -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x80db28a4 hisi_qm_alg_register -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x8933101a hisi_qm_create_qp -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x9269ef52 hisi_qm_dev_err_uninit -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x976e4f54 hisi_qm_get_vft -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x9a9fb64f hisi_qm_sriov_configure -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x9edfaa4e hisi_qm_put_dfx_access -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xa88373c6 hisi_qm_dev_err_init -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xae384fa7 hisi_qm_release_qp -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xb4009fad hisi_qm_dev_shutdown -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xb7de4b90 hisi_qm_debug_regs_clear -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xbee35299 hisi_qm_get_free_qp_num -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xc8210e68 hisi_acc_create_sgl_pool -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xcc157dae hisi_qm_free_qps -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xd73f42fb hisi_acc_sg_buf_unmap -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xe2142213 hisi_qm_suspend -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xe4297b3a hisi_qm_sriov_enable -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xe59f6857 hisi_qm_reset_done -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xe90b9df3 hisi_qm_init -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xf4cff01e hisi_qm_start -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xf68e8bae hisi_qm_regs_dump -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xf9d230d7 hisi_qm_dev_slot_reset -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 0x7a554228 otx_cpt_eng_grp_has_eng_type -EXPORT_SYMBOL_GPL drivers/dma/dw-edma/dw-edma 0x824e53c4 dw_edma_probe -EXPORT_SYMBOL_GPL drivers/dma/dw-edma/dw-edma 0x91ca3a4d dw_edma_remove -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x042622b5 idma32_dma_remove -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x0759eee3 dw_dma_remove -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x098a85cf dw_dma_filter -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x09f42305 dw_dma_acpi_controller_register -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x450611e0 do_dw_dma_disable -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x476ffd82 dw_dma_acpi_controller_free -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x70d6bdc5 idma32_dma_probe -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x89e71a16 dw_dma_probe -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xe2f9433a do_dw_dma_enable -EXPORT_SYMBOL_GPL drivers/dma/fsl-dpaa2-qdma/dpdmai 0x33a9f650 dpdmai_open -EXPORT_SYMBOL_GPL drivers/dma/fsl-dpaa2-qdma/dpdmai 0x3c36f86e dpdmai_get_attributes -EXPORT_SYMBOL_GPL drivers/dma/fsl-dpaa2-qdma/dpdmai 0x585d5ff0 dpdmai_reset -EXPORT_SYMBOL_GPL drivers/dma/fsl-dpaa2-qdma/dpdmai 0x639021ee dpdmai_get_rx_queue -EXPORT_SYMBOL_GPL drivers/dma/fsl-dpaa2-qdma/dpdmai 0x6f75b15e dpdmai_enable -EXPORT_SYMBOL_GPL drivers/dma/fsl-dpaa2-qdma/dpdmai 0xa95d7ce4 dpdmai_close -EXPORT_SYMBOL_GPL drivers/dma/fsl-dpaa2-qdma/dpdmai 0xbbe709c2 dpdmai_disable -EXPORT_SYMBOL_GPL drivers/dma/fsl-dpaa2-qdma/dpdmai 0xda7ba330 dpdmai_destroy -EXPORT_SYMBOL_GPL drivers/dma/fsl-dpaa2-qdma/dpdmai 0xf9948948 dpdmai_set_rx_queue -EXPORT_SYMBOL_GPL drivers/dma/fsl-dpaa2-qdma/dpdmai 0xff3343f7 dpdmai_get_tx_queue -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x07cef83d fsl_edma_alloc_chan_resources -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x2f46139b fsl_edma_setup_regs -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x33564edb fsl_edma_terminate_all -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x3615f683 fsl_edma_free_desc -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x4c82b69f fsl_edma_prep_dma_cyclic -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x5627350a fsl_edma_prep_slave_sg -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x6a627c3d fsl_edma_slave_config -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x7a1142ab fsl_edma_cleanup_vchan -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0xb6766205 fsl_edma_issue_pending -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0xc933620e fsl_edma_pause -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0xc9a3b08c fsl_edma_chan_mux -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0xd4d92fbc fsl_edma_disable_request -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0xd88185ab fsl_edma_resume -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0xd9fa4e7c fsl_edma_xfer_desc -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0xdc90c829 fsl_edma_free_chan_resources -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0xe4847c31 fsl_edma_tx_status -EXPORT_SYMBOL_GPL drivers/dma/qcom/hdma_mgmt 0x47b3dfdc hidma_mgmt_setup -EXPORT_SYMBOL_GPL drivers/dma/qcom/hdma_mgmt 0x93dd9d31 hidma_mgmt_init_sys -EXPORT_SYMBOL_GPL drivers/firewire/firewire-core 0xe86fb5c7 fw_card_release -EXPORT_SYMBOL_GPL drivers/firmware/arm_ffa/ffa-module 0x27f96a42 ffa_bus_type -EXPORT_SYMBOL_GPL drivers/firmware/arm_ffa/ffa-module 0x2c1d3945 ffa_driver_register -EXPORT_SYMBOL_GPL drivers/firmware/arm_ffa/ffa-module 0x45d6c791 ffa_device_register -EXPORT_SYMBOL_GPL drivers/firmware/arm_ffa/ffa-module 0x51f8427a ffa_device_unregister -EXPORT_SYMBOL_GPL drivers/firmware/arm_ffa/ffa-module 0x9cb2413a ffa_driver_unregister -EXPORT_SYMBOL_GPL drivers/firmware/arm_ffa/ffa-module 0xfc46ad4c ffa_dev_ops_get -EXPORT_SYMBOL_GPL drivers/firmware/arm_scpi 0x2819e5f3 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 0xd3df684d stratix10_svc_send -EXPORT_SYMBOL_GPL drivers/firmware/stratix10-svc 0xf41532a7 stratix10_svc_request_channel_byname -EXPORT_SYMBOL_GPL drivers/fpga/altera-pr-ip-core 0x8f38de01 alt_pr_register -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x01e18eeb dfl_fpga_port_ops_put -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x178b8c50 dfl_fpga_port_ops_del -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x3c5fc4e1 dfl_fpga_enum_info_add_irq -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x3f5cafd5 dfl_fpga_check_port_id -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x519bdb55 dfl_fpga_cdev_config_ports_pf -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x5ad809c4 dfl_fpga_dev_ops_register -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x6b8523e2 dfl_fpga_port_ops_get -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x75652245 __dfl_fpga_cdev_find_port -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x7d96b4d8 dfl_fpga_feature_devs_remove -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x7f0e8d6a dfl_feature_ioctl_set_irq -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x89ed024e dfl_fpga_feature_devs_enumerate -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x90788e77 dfl_fpga_cdev_release_port -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x9152b949 dfl_fpga_enum_info_add_dfl -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x9aee7e33 dfl_fpga_enum_info_alloc -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x9fb2f6a5 dfl_fpga_cdev_assign_port -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xb0482c53 dfl_fpga_dev_feature_uinit -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xce0cef39 dfl_fpga_set_irq_triggers -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xd2b849a1 dfl_fpga_dev_feature_init -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xda827b3f dfl_fpga_port_ops_add -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xdaf92bff dfl_fpga_enum_info_free -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xe1391072 dfl_fpga_dev_ops_unregister -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xe748302d dfl_fpga_cdev_config_ports_vf -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xf36e752a dfl_feature_ioctl_get_num_irqs -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x04263594 fpga_bridge_put -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x0633c4b9 fpga_bridges_enable -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x0b2b884c fpga_bridges_put -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x0ef9ba0d fpga_bridge_get_to_list -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x1e2f19ff fpga_bridge_get -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x2c8167cf fpga_bridges_disable -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x37a03bb6 devm_fpga_bridge_create -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x69f6e061 fpga_bridge_register -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x7ae84012 of_fpga_bridge_get_to_list -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x8d7ee988 fpga_bridge_enable -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x9784fb19 fpga_bridge_free -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0xa13608ec fpga_bridge_create -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0xf17ae60c fpga_bridge_unregister -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0xfd19c0dc of_fpga_bridge_get -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0xfdbae638 fpga_bridge_disable -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x145a1fdf fpga_mgr_unlock -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x1f81ad0a devm_fpga_mgr_create -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x38f54fbf fpga_image_info_free -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x5640ae60 fpga_mgr_free -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x59ad2e39 fpga_mgr_register -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x6c1828af devm_fpga_mgr_register -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x79d05868 fpga_mgr_put -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x8f9ea8bc fpga_mgr_create -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xa6c6dc79 fpga_mgr_unregister -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xc114ce97 fpga_mgr_get -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xc51e915d fpga_image_info_alloc -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xc8ffb8eb fpga_mgr_lock -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xd97adc2f of_fpga_mgr_get -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xe3a9e7ec fpga_mgr_load -EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0x251a0340 devm_fpga_region_create -EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0x2b4c3e8b fpga_region_class_find -EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0x5cac2ee0 fpga_region_free -EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0x60fa93b1 fpga_region_unregister -EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0x977bf0a2 fpga_region_register -EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0x9f46f2ee fpga_region_program_fpga -EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0xb7e4f57d fpga_region_create -EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x0189e67e fsi_driver_register -EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x1735de70 fsi_cdev_type -EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x2975227a fsi_device_write -EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x38170590 fsi_master_rescan -EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x3a93847e fsi_slave_claim_range -EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x5a57d574 fsi_free_minor -EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x78060f23 fsi_slave_read -EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x7ff72c6b fsi_master_register -EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0xa915b2dc fsi_master_unregister -EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0xb570bf73 fsi_bus_type -EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0xc6238f17 fsi_get_new_minor -EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0xce22aee2 fsi_slave_release_range -EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0xd0be6356 fsi_device_read -EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0xd1a4ccd3 fsi_driver_unregister -EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0xd942f235 fsi_slave_write -EXPORT_SYMBOL_GPL drivers/fsi/fsi-occ 0x52af0a1c fsi_occ_submit -EXPORT_SYMBOL_GPL drivers/fsi/fsi-sbefifo 0x0beb20d8 sbefifo_submit -EXPORT_SYMBOL_GPL drivers/fsi/fsi-sbefifo 0x2192d7a9 sbefifo_parse_status -EXPORT_SYMBOL_GPL drivers/gnss/gnss 0x1eb167bb gnss_allocate_device -EXPORT_SYMBOL_GPL drivers/gnss/gnss 0x43fdca4a gnss_register_device -EXPORT_SYMBOL_GPL drivers/gnss/gnss 0x8fbd00db gnss_deregister_device -EXPORT_SYMBOL_GPL drivers/gnss/gnss 0xe39e2da1 gnss_insert_raw -EXPORT_SYMBOL_GPL drivers/gnss/gnss 0xe67201ef gnss_put_device -EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0x45e53e43 gnss_serial_allocate -EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0x7211b56f gnss_serial_pm_ops -EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0x9a38b45b gnss_serial_free -EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0xf6918f85 gnss_serial_register -EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0xf952de93 gnss_serial_deregister -EXPORT_SYMBOL_GPL drivers/gpio/gpio-max730x 0x21f7f353 __max730x_probe -EXPORT_SYMBOL_GPL drivers/gpio/gpio-max730x 0x267db1c7 __max730x_remove -EXPORT_SYMBOL_GPL drivers/gpio/gpio-regmap 0x496ce291 gpio_regmap_get_drvdata -EXPORT_SYMBOL_GPL drivers/gpio/gpio-regmap 0x948c1af5 gpio_regmap_register -EXPORT_SYMBOL_GPL drivers/gpio/gpio-regmap 0x994e21c0 devm_gpio_regmap_register -EXPORT_SYMBOL_GPL drivers/gpio/gpio-regmap 0xb7066570 gpio_regmap_unregister -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x0fe224ac analogix_dp_suspend -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 0x69ef061c analogix_dp_stop_crc -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x785ac743 analogix_dp_remove -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x7f81d326 analogix_dp_resume -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x9c9bb068 analogix_dp_start_crc -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0xbcb7a282 analogix_dp_probe -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0xc09a0e0f analogix_dp_bind -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0xf50db6b8 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 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 0x743ff06b dw_hdmi_bind -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x7d8a3aee dw_hdmi_phy_i2c_write -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x8c56146d dw_hdmi_set_high_tmds_clock_ratio -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x8dcd6f43 dw_hdmi_set_sample_rate -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x9b44a60b dw_hdmi_phy_gen2_pddq -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0xce27012a dw_hdmi_audio_disable -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0xd6968220 dw_hdmi_phy_setup_hpd -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0xd8fe547b dw_hdmi_audio_enable -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0xda862f39 dw_hdmi_set_plugged_cb -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 0xf8a1556e 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 0x1493f844 dw_mipi_dsi_bind -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-mipi-dsi 0x22642ed7 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 0x09819c6c drmm_kstrdup -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x22992031 drm_gem_shmem_get_pages_sgt -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x37bfdc80 drm_gem_shmem_prime_import_sg_table -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x4e139bfc drm_of_find_panel_or_bridge -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x55899e7b drm_bridge_get_modes -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x56087193 drm_gem_dumb_map_offset -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x5b226d74 drm_of_encoder_active_endpoint -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x5d1be4a1 drm_bridge_hpd_notify -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x5f02dec0 drm_get_unmapped_area -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x66cf2f64 drm_display_mode_from_videomode -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x789eaf32 drm_gem_shmem_get_sg_table -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x8a92d670 drm_of_component_match_add -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x8e1457ae drm_crtc_add_crc_entry -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x958fefa1 drm_gem_shmem_mmap -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x9f21774b drm_gem_cma_vm_ops -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xa87d1725 drm_gem_shmem_create -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xa9af2d1f of_get_drm_display_mode -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xad3c049e drm_bridge_detect -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xad885165 drm_bus_flags_from_videomode -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xb08ec1f7 drm_bridge_get_edid -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xb82f5b02 drm_gem_cma_get_sg_table -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xb8b9d2bc drm_bridge_hpd_disable -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xb900957f drm_class_device_register -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xbae9c078 drm_gem_cma_create -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xbc6ecbb7 drm_gem_shmem_free -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xc068380c drm_do_get_edid -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xc40ce22d drm_class_device_unregister -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xcac30e63 drm_gem_cma_prime_import_sg_table -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xd7626484 drm_bridge_hpd_enable -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xd795e7e9 drm_hdcp_check_ksvs_revoked -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xd9e26931 drm_gem_cma_dumb_create_internal -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xdfa6073a drm_gem_cma_mmap -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xeb665741 drm_gem_cma_dumb_create -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xedbdda70 drm_gem_shmem_dumb_create -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xee1c2bc6 drm_of_lvds_get_dual_link_pixel_order -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xf2654663 drm_gem_cma_free_object -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xf7b0c340 drm_gem_cma_vmap -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xfe9f72f3 drm_display_mode_to_videomode -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dp_aux_bus 0x01d3afca __dp_aux_dp_driver_register -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dp_aux_bus 0x453d1405 devm_of_dp_aux_populate_ep_devices -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dp_aux_bus 0x6d2a7b89 of_dp_aux_populate_ep_devices -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dp_aux_bus 0x9efad147 of_dp_aux_depopulate_ep_devices -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dp_aux_bus 0x9f78a513 dp_aux_dp_driver_unregister -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x0091b7cd drm_gem_fb_create_with_dirty -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x0d82e46d drm_fb_cma_sync_non_coherent -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x447a5d0d drm_gem_fb_get_obj -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x60f93b7d drm_gem_fb_create_with_funcs -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x61de042e drm_fb_cma_get_gem_addr -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x69bb019c drm_gem_fb_init_with_funcs -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x78158bf0 drm_fb_cma_get_gem_obj -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x85ec8e06 drm_gem_plane_helper_prepare_fb -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x8e87180e drm_gem_fb_create -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x90a3e701 drm_bridge_connector_enable_hpd -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x9935346d drm_bridge_connector_disable_hpd -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xb6ee5545 drm_gem_fb_afbc_init -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xde7b81f2 drm_bridge_connector_init -EXPORT_SYMBOL_GPL drivers/gpu/drm/meson/meson-drm 0x2c73cfcf meson_venc_hdmi_venc_repeat -EXPORT_SYMBOL_GPL drivers/gpu/drm/meson/meson-drm 0x80b7dd42 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 0xb4e4ed7d meson_venc_hdmi_mode_set -EXPORT_SYMBOL_GPL drivers/gpu/drm/meson/meson-drm 0xb9fc6d28 meson_vclk_setup -EXPORT_SYMBOL_GPL drivers/gpu/drm/meson/meson-drm 0xcae17642 meson_vclk_vic_supported_freq -EXPORT_SYMBOL_GPL drivers/gpu/drm/panel/panel-samsung-s6e63m0 0x8fe4a726 s6e63m0_remove -EXPORT_SYMBOL_GPL drivers/gpu/drm/panel/panel-samsung-s6e63m0 0xc013ec9a s6e63m0_probe -EXPORT_SYMBOL_GPL drivers/gpu/drm/pl111/pl111_drm 0x4a126ed0 pl111_versatile_init -EXPORT_SYMBOL_GPL drivers/gpu/drm/rcar-du/rcar_cmm 0x18791ef2 rcar_cmm_init -EXPORT_SYMBOL_GPL drivers/gpu/drm/rcar-du/rcar_cmm 0x9b3a7407 rcar_cmm_disable -EXPORT_SYMBOL_GPL drivers/gpu/drm/rcar-du/rcar_cmm 0xa831c23a rcar_cmm_enable -EXPORT_SYMBOL_GPL drivers/gpu/drm/rcar-du/rcar_cmm 0xf19ac5cf rcar_cmm_setup -EXPORT_SYMBOL_GPL drivers/gpu/drm/rcar-du/rcar_lvds 0xb54a61ce rcar_lvds_dual_link -EXPORT_SYMBOL_GPL drivers/gpu/drm/rcar-du/rcar_lvds 0xea916ad9 rcar_lvds_clk_enable -EXPORT_SYMBOL_GPL drivers/gpu/drm/rcar-du/rcar_lvds 0xf27d1b70 rcar_lvds_is_connected -EXPORT_SYMBOL_GPL drivers/gpu/drm/rcar-du/rcar_lvds 0xf3171b4c rcar_lvds_clk_disable -EXPORT_SYMBOL_GPL drivers/gpu/drm/rockchip/rockchipdrm 0x940cb543 vop_component_ops -EXPORT_SYMBOL_GPL drivers/gpu/drm/rockchip/rockchipdrm 0xed594ea6 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 0x14028e17 __SCK__tp_func_gb_hd_add -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x15d1942f greybus_disabled -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x1e342a07 gb_hd_cport_release_reserved -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x2204fe36 gb_connection_create_offloaded -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x298ad7ef gb_hd_output -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x3011698a gb_hd_add -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x3060c0aa __traceiter_gb_hd_create -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x34c564a3 gb_operation_sync_timeout -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x3862cf48 gb_connection_create_flags -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x3b5ef996 gb_hd_del -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x3ff83352 gb_connection_disable_rx -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x42b09bb4 gb_operation_request_send_sync_timeout -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x4328e1b8 greybus_data_rcvd -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x451bce94 __traceiter_gb_hd_release -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x49891028 gb_hd_put -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x4a28dba2 gb_connection_create -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x53747107 gb_debugfs_get -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x546b482e __traceiter_gb_hd_in -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x549746ac gb_operation_get -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x5ad3f2d7 __tracepoint_gb_hd_add -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x5b8442a2 gb_connection_latency_tag_enable -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x5c0a8043 __tracepoint_gb_hd_in -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x5da7e656 greybus_deregister_driver -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x6213634d __tracepoint_gb_hd_create -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x664f868f greybus_message_sent -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x6d3bb9ec __SCK__tp_func_gb_message_submit -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x7e3dd4a0 gb_connection_disable -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x81e221fb __SCK__tp_func_gb_hd_create -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x82688a0a gb_operation_get_payload_size_max -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x83ff83c0 greybus_register_driver -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x870651fd 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 0x922a7c81 __traceiter_gb_message_submit -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x9336d0ef gb_connection_destroy -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x9b120a9c gb_hd_shutdown -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x9ff3ace7 gb_connection_disable_forced -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xa416e2da __tracepoint_gb_hd_del -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xb17ca858 gb_operation_put -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xbb5a9f17 gb_hd_create -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xc563c744 gb_hd_cport_reserve -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xd3e646d9 __tracepoint_gb_hd_release -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xd3edc277 gb_operation_cancel -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xd5e2c644 gb_connection_enable -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xdc80084d __traceiter_gb_hd_del -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xe12f968f gb_connection_enable_tx -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xe3e39295 gb_interface_request_mode_switch -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xeac79e1a __SCK__tp_func_gb_hd_del -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xec0a3364 gb_operation_unidirectional_timeout -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xed684173 gb_operation_request_send -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xef27c1b2 gb_operation_response_alloc -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xf107a122 __SCK__tp_func_gb_hd_release -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xf489ca31 __traceiter_gb_hd_add -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xf52c6c15 gb_operation_result -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xf83c4663 gb_connection_latency_tag_disable -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xfd660c26 gb_operation_create_flags -EXPORT_SYMBOL_GPL drivers/hid/hid 0x035000a9 hid_disconnect -EXPORT_SYMBOL_GPL drivers/hid/hid 0x05495392 hid_debug -EXPORT_SYMBOL_GPL drivers/hid/hid 0x06eeba5e hid_lookup_quirk -EXPORT_SYMBOL_GPL drivers/hid/hid 0x0fe22ef2 hid_hw_open -EXPORT_SYMBOL_GPL drivers/hid/hid 0x16b0ca8a __hid_request -EXPORT_SYMBOL_GPL drivers/hid/hid 0x19d52f1f hid_quirks_exit -EXPORT_SYMBOL_GPL drivers/hid/hid 0x1a2d9945 hid_allocate_device -EXPORT_SYMBOL_GPL drivers/hid/hid 0x1a8a0e50 hid_validate_values -EXPORT_SYMBOL_GPL drivers/hid/hid 0x2496efcd hid_hw_stop -EXPORT_SYMBOL_GPL drivers/hid/hid 0x315dc540 hidraw_connect -EXPORT_SYMBOL_GPL drivers/hid/hid 0x319ffdba hid_unregister_driver -EXPORT_SYMBOL_GPL drivers/hid/hid 0x3d280104 hid_debug_event -EXPORT_SYMBOL_GPL drivers/hid/hid 0x3dfee56d hidinput_find_field -EXPORT_SYMBOL_GPL drivers/hid/hid 0x4237549d hid_compare_device_paths -EXPORT_SYMBOL_GPL drivers/hid/hid 0x42e54b5a hid_ignore -EXPORT_SYMBOL_GPL drivers/hid/hid 0x442c03ad hid_register_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0x4a0ea436 hidraw_disconnect -EXPORT_SYMBOL_GPL drivers/hid/hid 0x4c23a571 hid_set_field -EXPORT_SYMBOL_GPL drivers/hid/hid 0x4f16b994 hid_input_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0x4fceec54 hid_hw_start -EXPORT_SYMBOL_GPL drivers/hid/hid 0x59d74530 hidinput_disconnect -EXPORT_SYMBOL_GPL drivers/hid/hid 0x5f7e0d99 hid_parse_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0x66ad3003 hid_field_extract -EXPORT_SYMBOL_GPL drivers/hid/hid 0x6a35b7c5 hid_match_device -EXPORT_SYMBOL_GPL drivers/hid/hid 0x6b05814a hid_output_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0x6fe5865c hidraw_report_event -EXPORT_SYMBOL_GPL drivers/hid/hid 0x7c03959b hid_resolv_usage -EXPORT_SYMBOL_GPL drivers/hid/hid 0x7d98731f hidinput_report_event -EXPORT_SYMBOL_GPL drivers/hid/hid 0x827ff2c3 hid_dump_device -EXPORT_SYMBOL_GPL drivers/hid/hid 0x82da0b0c hid_hw_close -EXPORT_SYMBOL_GPL drivers/hid/hid 0x86f57916 hid_connect -EXPORT_SYMBOL_GPL drivers/hid/hid 0x8a7fe851 hid_dump_input -EXPORT_SYMBOL_GPL drivers/hid/hid 0x8b13a8b8 hid_snto32 -EXPORT_SYMBOL_GPL drivers/hid/hid 0x8b6ceed6 hidinput_calc_abs_res -EXPORT_SYMBOL_GPL drivers/hid/hid 0x91f38e6c hidinput_get_led_field -EXPORT_SYMBOL_GPL drivers/hid/hid 0x97b6e233 hid_report_raw_event -EXPORT_SYMBOL_GPL drivers/hid/hid 0x9efe0a4c hid_open_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0xc2eb5e33 hid_dump_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0xc49d74d3 hidinput_count_leds -EXPORT_SYMBOL_GPL drivers/hid/hid 0xc5d8176a hid_setup_resolution_multiplier -EXPORT_SYMBOL_GPL drivers/hid/hid 0xdcd73b28 __hid_register_driver -EXPORT_SYMBOL_GPL drivers/hid/hid 0xe41aef9b hid_dump_field -EXPORT_SYMBOL_GPL drivers/hid/hid 0xe5d4a751 hid_alloc_report_buf -EXPORT_SYMBOL_GPL drivers/hid/hid 0xed977404 hidinput_connect -EXPORT_SYMBOL_GPL drivers/hid/hid 0xf754fdc9 hid_destroy_device -EXPORT_SYMBOL_GPL drivers/hid/hid 0xfa355613 hid_quirks_init -EXPORT_SYMBOL_GPL drivers/hid/hid 0xfa5d697d hid_check_keys_pressed -EXPORT_SYMBOL_GPL drivers/hid/hid 0xfdce628e hid_add_device -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat 0x2f622ea1 roccat_disconnect -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat 0x3e4427c8 roccat_report_event -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat 0x42e31035 roccat_connect -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x14e2fcf2 roccat_common2_send -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x299a5a5b roccat_common2_sysfs_read -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x3e497bf1 roccat_common2_device_init_struct -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x6d7244ec roccat_common2_receive -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0xa1d510a4 roccat_common2_send_with_status -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0xd4d2f86e roccat_common2_sysfs_write -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x10bf44d8 sensor_hub_device_open -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x1f03f694 sensor_hub_set_feature -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x239f8b31 sensor_hub_input_attr_get_raw_value -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x450bd8e3 sensor_hub_remove_callback -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x498bcf15 sensor_hub_get_feature -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x7f822004 sensor_hub_register_callback -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xc14030f2 sensor_hub_input_get_attribute_info -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xc7225455 sensor_hub_device_close -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xc8353d97 hid_sensor_get_usage_index -EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0x1fbecf1a i2c_hid_core_remove -EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0x731e938d i2c_hid_core_pm -EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0x7bc62833 i2c_hid_ll_driver -EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0xbd1ed4d6 i2c_hid_core_shutdown -EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0xfae6c432 i2c_hid_core_probe -EXPORT_SYMBOL_GPL drivers/hid/surface-hid/surface_hid_core 0x8f685d81 surface_hid_device_destroy -EXPORT_SYMBOL_GPL drivers/hid/surface-hid/surface_hid_core 0xa7de18b1 surface_hid_device_add -EXPORT_SYMBOL_GPL drivers/hid/surface-hid/surface_hid_core 0xfaa5e23b surface_hid_pm_ops -EXPORT_SYMBOL_GPL drivers/hid/uhid 0x51501243 uhid_hid_driver -EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0x16480dbe usb_hid_driver -EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0xdb333dca hiddev_hid_event -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x057626c7 hsi_free_msg -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x17217712 hsi_alloc_controller -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x1f8926c1 hsi_put_controller -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x2793f153 hsi_port_unregister_clients -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x408befe3 hsi_release_port -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x45277efd hsi_new_client -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x5210a5bf hsi_board_list -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x65978f4b hsi_register_controller -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x69ecabb5 hsi_claim_port -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x841526d0 hsi_register_client_driver -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x9a959cba hsi_alloc_msg -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xaeb90651 hsi_unregister_controller -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xb886b749 hsi_async -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xb8ba8cfd hsi_event -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xbf7ccc9d hsi_add_clients_from_dt -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xbf984b34 hsi_register_port_event -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xc5046369 hsi_unregister_port_event -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xebc097b0 hsi_remove_client -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xfa4f6648 hsi_get_channel_id_by_name -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x12d3b322 vmbus_disconnect_ring -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x1f794f8b __vmbus_driver_register -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x21768964 vmbus_close -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x30c57830 hv_pkt_iter_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 0x3220fe5a vmbus_allocate_mmio -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x3facf0d3 vmbus_set_chn_rescind_callback -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x41b4367d vmbus_alloc_ring -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x4656e31d vmbus_connect_ring -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x46a417ca vmbus_proto_version -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x48287893 vmbus_request_addr -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x4b2210b8 vmbus_send_tl_connect_request -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x65b306fb vmbus_free_ring -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x674e657e hv_ringbuffer_get_debuginfo -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x696f5406 vmbus_connection -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x6a939190 vmbus_hvsock_device_unregister -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x758c1795 hv_pkt_iter_first_raw -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x7b13230b vmbus_send_modifychannel -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x8649c950 hv_ringbuffer_spinlock_busy -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x86fe6d95 vmbus_sendpacket_pagebuffer -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x8cf84588 vmbus_setevent -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x97b8b8e5 __hv_pkt_iter_next -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xa18e69a5 vmbus_recvpacket_raw -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xa22a05a9 vmbus_sendpacket_mpb_desc -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xa520f6a0 hv_pkt_iter_first -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xb5e07671 vmbus_establish_gpadl -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xc39a4eb2 vmbus_are_subchannels_present -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xca7bb177 vmbus_teardown_gpadl -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xd286f303 vmbus_driver_unregister -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xd399120d vmbus_open -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xdd0bd973 vmbus_set_sc_create_callback -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xdf624249 vmbus_set_event -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xe15d5b31 vmbus_next_request_id -EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0x3298977e adt7x10_dev_pm_ops -EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0xa0ecdb61 adt7x10_remove -EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0xeffae55b adt7x10_probe -EXPORT_SYMBOL_GPL drivers/hwmon/ltc2947-core 0x5cbb5274 ltc2947_core_probe -EXPORT_SYMBOL_GPL drivers/hwmon/ltc2947-core 0x9528aeca ltc2947_pm_ops -EXPORT_SYMBOL_GPL drivers/hwmon/ltc2947-core 0xbc54f93e ltc2947_of_match -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x3a3c3b97 intel_th_trace_switch -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x44083202 intel_th_driver_unregister -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x467f1400 intel_th_trace_disable -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x564fe8da intel_th_output_enable -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x5679f0c5 intel_th_trace_enable -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x87bb44f6 intel_th_driver_register -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xb93d0798 intel_th_alloc -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xce1fbede intel_th_set_output -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xf82709d8 intel_th_free -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th_msu 0x7570a17e intel_th_msu_buffer_register -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th_msu 0x780227b7 intel_th_msu_buffer_unregister -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th_msu 0x9fcae38f intel_th_msc_window_unlock -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x0f8849ad stm_unregister_device -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x12ae9b29 stm_register_protocol -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x2db76b2f to_pdrv_policy_node -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x79050f71 stm_data_write -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x88b43f32 stm_unregister_protocol -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xaf2d9776 stm_source_register_device -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xb6bf89fe stm_register_device -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xb710812b stm_source_unregister_device -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xc29e1d80 stm_source_write -EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0x181952a5 i2c_register_spd -EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0x869a2546 i2c_free_slave_host_notify_device -EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0xcf635ab8 i2c_new_slave_host_notify_device -EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0xed5b0c19 i2c_handle_smbus_alert -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x0af92719 i3c_master_do_daa -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x20bf3845 i3c_master_enec_locked -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x236d4e3d i3c_master_add_i3c_dev_locked -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x2566f924 i3c_master_get_free_addr -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x2fe623c3 i3c_driver_unregister -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x33e2b23d i3c_master_set_info -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x36b5f5d0 i3c_master_queue_ibi -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x3d2c5c06 i3c_device_enable_ibi -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x468d7b04 i3c_generic_ibi_alloc_pool -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x7346fc2e i3c_master_entdaa_locked -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x76fe3e05 i3c_generic_ibi_free_pool -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x7713fdd0 i3c_master_disec_locked -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x7863e1ee dev_to_i3cdev -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x87767460 i3c_device_disable_ibi -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x8a6d2229 i3c_master_register -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x94f740ef i3c_master_defslvs_locked -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x9bb9a256 i3c_driver_register_with_owner -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x9c540500 i3c_device_do_priv_xfers -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xa2f3c532 i3cdev_to_dev -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xaec3c09f i3c_device_free_ibi -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xb5ea9602 i3c_device_request_ibi -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xbd44bd5b i3c_device_get_info -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xbf6bc61e i3c_master_unregister -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xca084214 i3c_generic_ibi_recycle_slot -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xccb86c92 i3c_device_match_id -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xec333fbf i3c_generic_ibi_get_free_slot -EXPORT_SYMBOL_GPL drivers/iio/accel/adxl372 0x5d290f54 adxl372_readable_noinc_reg -EXPORT_SYMBOL_GPL drivers/iio/accel/adxl372 0xa56a5e26 adxl372_probe -EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0x2e0f9504 bmc150_accel_core_remove -EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0x446bf538 bmc150_regmap_conf -EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0x90b24dfd bmc150_accel_core_probe -EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0xf101764b bmc150_accel_pm_ops -EXPORT_SYMBOL_GPL drivers/iio/accel/bmi088-accel-core 0x36710b5f bmi088_regmap_conf -EXPORT_SYMBOL_GPL drivers/iio/accel/bmi088-accel-core 0x5ac227c9 bmi088_accel_core_remove -EXPORT_SYMBOL_GPL drivers/iio/accel/bmi088-accel-core 0x71fc2dce bmi088_accel_core_probe -EXPORT_SYMBOL_GPL drivers/iio/accel/bmi088-accel-core 0xafdb1a64 bmi088_accel_pm_ops -EXPORT_SYMBOL_GPL drivers/iio/accel/fxls8962af-core 0x159518e1 fxls8962af_pm_ops -EXPORT_SYMBOL_GPL drivers/iio/accel/fxls8962af-core 0x657b48da fxls8962af_i2c_regmap_conf -EXPORT_SYMBOL_GPL drivers/iio/accel/fxls8962af-core 0xabc02e70 fxls8962af_core_probe -EXPORT_SYMBOL_GPL drivers/iio/accel/fxls8962af-core 0xc7a5dc1f fxls8962af_spi_regmap_conf -EXPORT_SYMBOL_GPL drivers/iio/accel/mma7455_core 0x396f3a8f mma7455_core_probe -EXPORT_SYMBOL_GPL drivers/iio/accel/mma7455_core 0x8e07faa4 mma7455_core_remove -EXPORT_SYMBOL_GPL drivers/iio/accel/mma7455_core 0xb3a52439 mma7455_core_regmap -EXPORT_SYMBOL_GPL drivers/iio/adc/ad7091r-base 0xb441bca6 ad7091r_probe -EXPORT_SYMBOL_GPL drivers/iio/adc/ad7091r-base 0xca7cc036 ad7091r_regmap_config -EXPORT_SYMBOL_GPL drivers/iio/adc/ad7606 0x0c6790eb ad7606_pm_ops -EXPORT_SYMBOL_GPL drivers/iio/adc/ad7606 0x7625e1b2 ad7606_probe -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x0b0e6227 ad_sd_write_reg -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x10c6c50e ad_sd_read_reg -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x286df6d4 ad_sd_init -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x428806d7 ad_sd_reset -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x7310687e ad_sd_calibrate -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x9164c77f devm_ad_sd_setup_buffer_and_trigger -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x9454569c ad_sd_set_comm -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x9728f62b ad_sd_calibrate_all -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xc584ac03 ad_sigma_delta_single_conversion -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xca7646a4 ad_sd_validate_trigger -EXPORT_SYMBOL_GPL drivers/iio/adc/adi-axi-adc 0x4a321e3d devm_adi_axi_adc_conv_register -EXPORT_SYMBOL_GPL drivers/iio/adc/adi-axi-adc 0xac47f289 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 0x2b6ed1e9 iio_channel_get_all_cb -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x7a711aef iio_channel_start_all_cb -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x9acf62ab iio_channel_cb_set_buffer_watermark -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0xacc29dc8 iio_channel_cb_get_iio_dev -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0xfa951b85 iio_channel_cb_get_channels -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x08b06f8f iio_dma_buffer_block_done -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x181628c6 iio_dma_buffer_disable -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x1eaa7681 iio_dma_buffer_release -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x31b3d0e5 iio_dma_buffer_init -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x486aebfb iio_dma_buffer_data_available -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x4e6426f4 iio_dma_buffer_set_length -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x511fb8e9 iio_dma_buffer_exit -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x544b7991 iio_dma_buffer_enable -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x90ccbab7 iio_dma_buffer_read -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x926be43c iio_dma_buffer_block_list_abort -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x9bc9bf0c iio_dma_buffer_request_update -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0xe5dcc311 iio_dma_buffer_set_bytes_per_datum -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dmaengine 0xedaec363 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 0x7720b913 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 0xe10d5136 devm_iio_hw_consumer_alloc -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-triggered-buffer 0x3991abc3 devm_iio_triggered_buffer_setup_ext -EXPORT_SYMBOL_GPL drivers/iio/buffer/kfifo_buf 0x9cd29fc3 devm_iio_kfifo_buffer_setup_ext -EXPORT_SYMBOL_GPL drivers/iio/chemical/bme680_core 0xb9f1ff22 bme680_core_probe -EXPORT_SYMBOL_GPL drivers/iio/chemical/sps30 0x7276d382 sps30_probe -EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x067bcbe0 cros_ec_sensors_core_write -EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x0df79f88 cros_ec_sensors_core_read -EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x1e0383e8 cros_ec_sensors_read_cmd -EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x47eb97c7 cros_ec_sensors_pm_ops -EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x54338f16 cros_ec_sensors_push_data -EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x58f440be cros_ec_motion_send_host_cmd -EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x6a49d037 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 0xc48f5573 cros_ec_sensors_core_read_avail -EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0xe0587503 cros_ec_sensors_core_init -EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0xe78d8671 cros_ec_sensors_read_lpc -EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0xf14e5d24 cros_ec_sensors_core_register -EXPORT_SYMBOL_GPL drivers/iio/dac/ad5592r-base 0x666043fc ad5592r_remove -EXPORT_SYMBOL_GPL drivers/iio/dac/ad5592r-base 0xca92435b ad5592r_probe -EXPORT_SYMBOL_GPL drivers/iio/dac/ad5686 0x4eeeed28 ad5686_remove -EXPORT_SYMBOL_GPL drivers/iio/dac/ad5686 0xcbf6dea0 ad5686_probe -EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0x09520deb bmg160_core_remove -EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0x3a2993a4 bmg160_core_probe -EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0xbee577ab bmg160_pm_ops -EXPORT_SYMBOL_GPL drivers/iio/gyro/fxas21002c_core 0x3432bc6e fxas21002c_core_probe -EXPORT_SYMBOL_GPL drivers/iio/gyro/fxas21002c_core 0xae6a8ffb fxas21002c_pm_ops -EXPORT_SYMBOL_GPL drivers/iio/gyro/fxas21002c_core 0xf6941e31 fxas21002c_core_remove -EXPORT_SYMBOL_GPL drivers/iio/imu/bmi160/bmi160_core 0xa60ff501 bmi160_core_probe -EXPORT_SYMBOL_GPL drivers/iio/imu/fxos8700_core 0x28aa8b27 fxos8700_core_probe -EXPORT_SYMBOL_GPL drivers/iio/imu/inv_icm42600/inv-icm42600 0x31170e19 inv_icm42600_regmap_config -EXPORT_SYMBOL_GPL drivers/iio/imu/inv_icm42600/inv-icm42600 0xf3488855 inv_icm42600_pm_ops -EXPORT_SYMBOL_GPL drivers/iio/imu/inv_icm42600/inv-icm42600 0xf4b12f5b inv_icm42600_core_probe -EXPORT_SYMBOL_GPL drivers/iio/imu/inv_mpu6050/inv-mpu6050 0x73848fd5 inv_mpu_pmops -EXPORT_SYMBOL_GPL drivers/iio/imu/inv_mpu6050/inv-mpu6050 0x8375a90d inv_mpu_core_probe -EXPORT_SYMBOL_GPL drivers/iio/imu/st_lsm9ds0/st_lsm9ds0 0x3e82a1b1 st_lsm9ds0_probe -EXPORT_SYMBOL_GPL drivers/iio/imu/st_lsm9ds0/st_lsm9ds0 0x64500865 st_lsm9ds0_remove -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x03fdd659 iio_channel_get -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x08078481 iio_get_channel_ext_info_count -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x134b721f iio_read_channel_processed -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x1dfd8738 devm_iio_device_alloc -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x1ebdcd85 devm_of_iio_channel_get_by_name -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x234b3973 devm_iio_trigger_alloc -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x25022899 iio_read_channel_ext_info -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x26f6b499 iio_str_to_fixpoint -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x4dce7dd4 iio_format_value -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x56b128ed iio_device_claim_direct_mode -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x577b9bd3 iio_channel_get_all -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x595e53d8 iio_channel_release -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x59fa8a05 iio_read_channel_raw -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x5bb84f8c iio_read_channel_processed_scale -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x690f3720 __devm_iio_device_register -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x6ed5004b iio_push_to_buffers -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x6fa32ce5 iio_read_max_channel_raw -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x753b3060 iio_buffer_put -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x795379c1 iio_convert_raw_to_processed -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x85013cdb iio_map_array_unregister -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x8e8e4879 iio_update_buffers -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x9627eb1c __devm_iio_trigger_register -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x96361183 iio_channel_release_all -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xa5a9c7cb iio_read_channel_offset -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xb2f34652 iio_read_channel_attribute -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xb3a41827 devm_iio_channel_get_all -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xbceb473f iio_read_avail_channel_attribute -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xbf91e811 of_iio_channel_get_by_name -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xc2fb7c70 iio_buffer_get -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xc32731d8 iio_validate_scan_mask_onehot -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xcd0350ba iio_read_channel_scale -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xd256066f iio_get_debugfs_dentry -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xd384f1d5 iio_device_release_direct_mode -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xd3d11957 iio_write_channel_raw -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xd43c7bdf iio_enum_available_read -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xd53887a8 iio_device_id -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xd7ea4f6a iio_write_channel_ext_info -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xe2507cff iio_alloc_pollfunc -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xe5234060 iio_show_mount_matrix -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xeaf40412 iio_write_channel_attribute -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xf01f2bc0 iio_get_channel_type -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xf277f539 iio_dealloc_pollfunc -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xf2ab778e iio_enum_read -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xf2d13ac6 iio_device_attach_buffer -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xf3838d55 iio_enum_write -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xf39a7918 iio_map_array_register -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xf99999c8 iio_read_channel_average_raw -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xfbf1d5c6 devm_iio_channel_get -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xfca6bb2e iio_read_avail_channel_raw -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 0xb30bb5b9 rm3100_common_probe -EXPORT_SYMBOL_GPL drivers/iio/magnetometer/rm3100-core 0xcc7209be rm3100_writable_table -EXPORT_SYMBOL_GPL drivers/iio/pressure/mpl115 0x8a64521d mpl115_probe -EXPORT_SYMBOL_GPL drivers/iio/pressure/zpa2326 0x3d5b7ad1 zpa2326_isreg_precious -EXPORT_SYMBOL_GPL drivers/iio/pressure/zpa2326 0xa4f65f67 zpa2326_pm_ops -EXPORT_SYMBOL_GPL drivers/iio/pressure/zpa2326 0xc1055659 zpa2326_isreg_writeable -EXPORT_SYMBOL_GPL drivers/iio/pressure/zpa2326 0xca8ef912 zpa2326_isreg_readable -EXPORT_SYMBOL_GPL drivers/iio/pressure/zpa2326 0xd867460e zpa2326_remove -EXPORT_SYMBOL_GPL drivers/iio/pressure/zpa2326 0xfc0af1e0 zpa2326_probe -EXPORT_SYMBOL_GPL drivers/infiniband/core/ib_core 0xdbd019c4 ib_wq -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x024c4cf2 rtrs_post_recv_empty -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x06010637 rtrs_stop_hb -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x13b00d2d rtrs_iu_post_recv -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x184cf5c7 rtrs_cq_qp_destroy -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x1c55c41c rtrs_cq_qp_create -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x4592fefa rtrs_iu_post_send -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x45a72b4a rtrs_iu_post_rdma_write_imm -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x48b52373 rtrs_start_hb -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x73a4b30e rtrs_iu_free -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x8c4de56c rtrs_send_hb_ack -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xce1eb502 rtrs_init_hb -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xee62a342 rtrs_iu_alloc -EXPORT_SYMBOL_GPL drivers/input/ff-memless 0x86b24913 input_ff_create_memless -EXPORT_SYMBOL_GPL drivers/input/matrix-keymap 0x35e306b9 matrix_keypad_parse_properties -EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0x332fee63 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 0x08f7b9d0 __rmi_register_function_handler -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x15674f2d rmi_driver_suspend -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x200a0389 rmi_2d_sensor_abs_process -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x2b7fafec rmi_set_attn_data -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x4b4a9e6a rmi_of_property_read_u32 -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x5e5e3f87 rmi_2d_sensor_abs_report -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x6cfbbecf rmi_driver_resume -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x7fb52402 rmi_register_transport_device -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x85bec701 rmi_2d_sensor_configure_input -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x9b2d53b5 rmi_dbg -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xa83bf0f2 rmi_2d_sensor_of_probe -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xd79b2fb8 rmi_2d_sensor_rel_report -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xeec7d2de rmi_unregister_function_handler -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0x79e6428a cyttsp4_probe -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0xc4ba7ce0 cyttsp4_pm_ops -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0xf234bb55 cyttsp4_remove -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0x66f7c392 cyttsp_pm_ops -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0xf6ba4214 cyttsp_probe -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_i2c_common 0x0ee226ca cyttsp_i2c_read_block_data -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_i2c_common 0xc92e326f cyttsp_i2c_write_block_data -EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x09d9b76d tsc200x_regmap_config -EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x7a0266a5 tsc200x_remove -EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x8ee33048 tsc200x_pm_ops -EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0xfc128020 tsc200x_probe -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x2b68c32a wm97xx_unregister_mach_ops -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x35d2a126 wm97xx_register_mach_ops -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x43ec171b wm9712_codec -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x5e520a41 wm9705_codec -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x8f185e2d wm97xx_reg_write -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x8f461785 wm9713_codec -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xa1587f10 wm97xx_set_suspend_mode -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xabbe1fae wm97xx_set_gpio -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xc19df1ff wm97xx_get_gpio -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xdcb06bf9 wm97xx_reg_read -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xe23d3881 wm97xx_config_gpio -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xfb899870 wm97xx_read_aux_adc -EXPORT_SYMBOL_GPL drivers/interconnect/imx/imx-interconnect 0x40e3f0f2 imx_icc_unregister -EXPORT_SYMBOL_GPL drivers/interconnect/imx/imx-interconnect 0xc64a768e 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 0xf9a277ce of_bcm_voter_get -EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-rpmh 0x0e9c49a1 qcom_icc_rpmh_remove -EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-rpmh 0x2e8e8112 qcom_icc_set -EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-rpmh 0xb4150250 qcom_icc_rpmh_probe -EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-rpmh 0xc32549f3 qcom_icc_bcm_init -EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-rpmh 0xda88d41b qcom_icc_pre_aggregate -EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-rpmh 0xe58c1e54 qcom_icc_xlate_extended -EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-rpmh 0xeff9e7b5 qcom_icc_aggregate -EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-smd-rpm 0x81e513ad qcom_icc_rpm_smd_available -EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-smd-rpm 0xe8dbdc6c qcom_icc_rpm_smd_send -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x053ce243 ipack_bus_register -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x417871b0 ipack_driver_register -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x476e0ad9 ipack_device_init -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x5e939f71 ipack_get_device -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x8463c928 ipack_device_add -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x868ecc4a ipack_bus_unregister -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x8aca0a84 ipack_put_device -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xce4d3f7a ipack_device_del -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xf34c825d ipack_driver_unregister -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x0ecb6142 led_set_flash_timeout -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x22304a8e devm_led_classdev_flash_register_ext -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x387b28e7 led_classdev_flash_register_ext -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x8ad9aff7 led_get_flash_fault -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x8b5146dd led_classdev_flash_unregister -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xc582249e led_update_flash_brightness -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xe07fe6ce led_set_flash_brightness -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xf7b1cec9 devm_led_classdev_flash_unregister -EXPORT_SYMBOL_GPL drivers/leds/led-class-multicolor 0x33466684 devm_led_classdev_multicolor_register_ext -EXPORT_SYMBOL_GPL drivers/leds/led-class-multicolor 0x5eb815a8 led_classdev_multicolor_unregister -EXPORT_SYMBOL_GPL drivers/leds/led-class-multicolor 0xa7062f28 led_classdev_multicolor_register_ext -EXPORT_SYMBOL_GPL drivers/leds/led-class-multicolor 0xf06a963a devm_led_classdev_multicolor_unregister -EXPORT_SYMBOL_GPL drivers/leds/led-class-multicolor 0xf14d92d8 led_mc_calc_color_components -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x02ae62a5 lp55xx_unregister_sysfs -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x1052fc6a lp55xx_register_sysfs -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x16fd3d4b lp55xx_deinit_device -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x95cd0615 lp55xx_of_populate_pdata -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x9ccc6609 lp55xx_read -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xb7e6ce1c lp55xx_write -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xb84e006d lp55xx_register_leds -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xbebe7680 lp55xx_update_bits -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xe05fb1cb lp55xx_init_device -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xf4a0c89c lp55xx_is_extclk_used -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 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 0x0ae11c4b __traceiter_bcache_btree_node_alloc_fail -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x0bc0be45 __SCK__tp_func_bcache_bypass_sequential -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x154b8a9e __traceiter_bcache_btree_node_split -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x15f3de09 __SCK__tp_func_bcache_read_retry -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x16ea7222 __tracepoint_bcache_journal_full -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x17a83e40 __traceiter_bcache_writeback -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x1810e7c7 __traceiter_bcache_read_retry -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 0x22ae6324 __SCK__tp_func_bcache_btree_node_split -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x23bf4490 __traceiter_bcache_bypass_sequential -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 0x2e8f9c8e __traceiter_bcache_btree_node_compact -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x313be064 __traceiter_bcache_read -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x3257d343 __tracepoint_bcache_gc_copy -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x43462ace __traceiter_bcache_journal_write -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 0x5357df54 __traceiter_bcache_btree_node_alloc -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x53b5e5e3 __tracepoint_bcache_journal_entry_full -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x5406cac6 __traceiter_bcache_write -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x59970321 __traceiter_bcache_bypass_congested -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x5cc8cb86 __tracepoint_bcache_btree_insert_key -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x5d93e99e __traceiter_bcache_btree_read -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x5d9c8fc8 __SCK__tp_func_bcache_cache_insert -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 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 0x628c88ed __traceiter_bcache_gc_end -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x64e39418 __traceiter_bcache_writeback_collision -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x6697827f __SCK__tp_func_bcache_writeback -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x67f214ff __traceiter_bcache_btree_set_root -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 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 0x7afa480f __traceiter_bcache_btree_write -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x80e3881d __SCK__tp_func_bcache_request_end -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 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 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 0xa1911335 __traceiter_bcache_journal_entry_full -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa4dd595f __traceiter_bcache_invalidate -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 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 0xbe0c0514 __traceiter_bcache_request_end -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xc1857470 __tracepoint_bcache_bypass_congested -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xc53b4efb __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 0xc98fc3f0 __traceiter_bcache_btree_insert_key -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xce48d6f4 __tracepoint_bcache_alloc_fail -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xcf15e599 __traceiter_bcache_gc_start -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xd5789ee3 __traceiter_bcache_request_start -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 0xe4fdd341 __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 0xeffde6cc __traceiter_bcache_btree_cache_cannibalize -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xf59ca070 __traceiter_bcache_journal_full -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 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 0x42ca267e dm_bio_detain -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x50645089 dm_cell_lock_v2 -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x51e3d217 dm_bio_prison_alloc_cell_v2 -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x527161c2 dm_bio_prison_free_cell -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x56958777 dm_cell_promote_or_release -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x6279c72d dm_bio_prison_alloc_cell -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x6791a44e dm_deferred_entry_dec -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x753e20b2 dm_bio_prison_create -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x78d1d16b dm_cell_release -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x8e462335 dm_cell_put_v2 -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x8f330394 dm_cell_release_no_holder -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x98e6be0b dm_cell_visit_release -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x9d8a1ca7 dm_get_cell -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xa85bb2f7 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 0xb6a1426d dm_cell_error -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xb6d5c65d dm_deferred_set_add_work -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xb70b342a dm_bio_prison_destroy -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xc0d3dc7c dm_cell_lock_promote_v2 -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xc0f02e27 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 0xe6b047ca dm_bio_prison_free_cell_v2 -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xf5ba0ff1 dm_cell_quiesce_v2 -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x0ad0dc4f dm_bufio_mark_buffer_dirty -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x111ab12a dm_bufio_mark_partial_buffer_dirty -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x24772bfe dm_bufio_get -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x2e0774dc dm_bufio_get_block_number -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 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 0xe03181de dm_bufio_client_create -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xe6024e59 dm_bufio_release -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xebcc64a4 dm_bufio_get_block_data -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xeca7949e dm_bufio_client_destroy -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xed3283a4 dm_bufio_set_sector_offset -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xf241a6eb dm_bufio_forget_buffers -EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x0efbca4c btracker_promotion_already_present -EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x15c2f369 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 0x771b70c9 dm_cache_policy_register -EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x7890d535 dm_cache_policy_get_name -EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x87bee547 btracker_queue -EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x890723f7 dm_cache_policy_get_version -EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xa2365f44 btracker_issue -EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xa7eadcb5 btracker_complete -EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xadbefda4 dm_cache_policy_destroy -EXPORT_SYMBOL_GPL drivers/md/dm-cache 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 0x4f968d6b dm_unregister_path_selector -EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0xf9e7b3d5 dm_register_path_selector -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x01d2f9ac dm_rh_recovery_start -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x38972f23 dm_rh_region_to_sector -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x38efaf5a dm_region_hash_destroy -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x3a18389a dm_rh_update_states -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x3a1efd4e dm_rh_dirty_log -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x4e5f994a dm_region_hash_create -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x57e16c3e dm_rh_get_state -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x5f4a6e61 dm_rh_dec -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x64e86f4b 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 0x9b5345d4 dm_rh_mark_nosync -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xa37d7a7b 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 0xcabbad4c dm_rh_bio_to_region -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xd8aa4284 dm_rh_region_context -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xf92b8a3d dm_rh_get_region_size -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xfd93482e dm_rh_recovery_in_flight -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 0x011629d4 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 0x08d86f0b cec_notifier_conn_register -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x107b22a1 cec_s_phys_addr_from_edid -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x1fd97997 cec_notifier_cec_adap_register -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x26efe617 cec_notifier_cec_adap_unregister -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x4a9df447 cec_pin_allocate_adapter -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x4ad14cdf cec_delete_adapter -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x4e9e1ab0 cec_register_adapter -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x5f1b7968 cec_s_conn_info -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x8a6f16d2 cec_fill_conn_info_from_drm -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x954574d4 cec_pin_changed -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x9c2b1130 cec_queue_pin_cec_event -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 0xb1d53d0b cec_notifier_parse_hdmi_phandle -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xbc8987eb cec_transmit_msg -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xbe4de675 cec_get_edid_phys_addr -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xc16f2887 cec_notifier_set_phys_addr_from_edid -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xc2c8e232 cec_s_log_addrs -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xd26f2b53 cec_allocate_adapter -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xd5018e86 cec_queue_pin_5v_event -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xd9900727 cec_transmit_done_ts -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xe2959402 cec_transmit_attempt_done_ts -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xe9f0dd5b cec_s_phys_addr -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xef4c3791 cec_queue_pin_hpd_event -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xf9390a60 cec_received_msg_ts -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xf9701f88 cec_unregister_adapter -EXPORT_SYMBOL_GPL drivers/media/common/b2c2/b2c2-flexcop 0x66c0289a b2c2_flexcop_debug -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x11442a30 saa7146_setgpio -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x47980a9a saa7146_pgtable_build_single -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x6143fbc7 saa7146_vmalloc_build_pgtable -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x79a0f015 saa7146_register_extension -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x7e2e1c31 saa7146_vfree_destroy_pgtable -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x9264204c saa7146_pgtable_alloc -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x94dfb313 saa7146_i2c_adapter_prepare -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xc571c362 saa7146_wait_for_debi_done -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xde33ad61 saa7146_unregister_extension -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xe3cd9b5c saa7146_debug -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xee58b7df saa7146_pgtable_free -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x5ecf887e saa7146_unregister_device -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x74338b28 saa7146_set_hps_source_and_sync -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x7de7033e saa7146_vv_release -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0xbf5daccc saa7146_start_preview -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0xde91d6b4 saa7146_register_device -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0xe50d4186 saa7146_stop_preview -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0xe5f3885a saa7146_vv_init -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x03e00060 sms_board_event -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x0f6d2834 smscore_register_client -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x15419b1a sms_board_power -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 0x3810f013 smscore_register_device -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x437995b7 smscore_getbuffer -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x45284ae9 smsendian_handle_rx_message -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x45e6435f sms_board_setup -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x74ee9098 sms_board_load_modules -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x768fa620 smscore_start_device -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x769e8f05 smscore_get_device_mode -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 0x882e497b sms_board_lna_control -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x95bc516f smscore_register_hotplug -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x99a81ab3 smsclient_sendrequest -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xa18e738d smscore_set_board_id -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xa6ca2aec smscore_onresponse -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xaa34bbd7 smscore_putbuffer -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xb49e4fad sms_board_led_feedback -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xbbdb5c42 smscore_unregister_client -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xc6e78ad3 smscore_get_board_id -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xd02a88eb smscore_unregister_hotplug -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xfea7f6f7 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 0x01cb4b23 vb2_core_queue_release -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 0x0d575af5 vb2_mmap -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x0dcb681f vb2_core_dqbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x103c3337 vb2_core_queue_init -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x212c26fd __traceiter_vb2_qbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x24451812 __tracepoint_vb2_buf_done -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x2593782f __tracepoint_vb2_buf_queue -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x2ab96644 vb2_queue_error -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x314d5e2c vb2_core_streamon -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x3e56c245 vb2_buffer_done -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x43a55a5f vb2_core_prepare_buf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x4d27532c vb2_thread_stop -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x59a622a7 vb2_thread_start -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x61ad5a47 vb2_plane_cookie -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x630b24d3 __tracepoint_vb2_qbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x689bd29a __traceiter_vb2_buf_done -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x6c5e30b4 vb2_request_object_is_buffer -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x7ce372df vb2_write -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x8106e9f1 vb2_plane_vaddr -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x83a96308 vb2_core_reqbufs -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x96436c01 vb2_core_streamoff -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xa3b77cbc vb2_core_create_bufs -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xa6e4147d vb2_discard_done -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xb50c71eb __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 0xb9d2df39 __SCK__tp_func_vb2_dqbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xbcd1cb38 vb2_request_buffer_cnt -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xc7b45aa4 __SCK__tp_func_vb2_buf_done -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xd0edd395 vb2_core_poll -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xd151567f vb2_core_querybuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xd167c68b vb2_wait_for_all_buffers -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xd33029a6 vb2_core_qbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xe6a4c368 vb2_read -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xeac46094 __traceiter_vb2_buf_queue -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xed9e5974 vb2_core_expbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xf703a3f9 __tracepoint_vb2_dqbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-dma-contig 0x7607bac1 vb2_dma_contig_set_max_seg_size -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-dma-contig 0x8da03abf vb2_dma_contig_memops -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-dma-sg 0x2323aa51 vb2_dma_sg_memops -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-memops 0x62e39de5 vb2_common_vm_ops -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x037e4a77 vb2_video_unregister_device -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x062e7860 vb2_queue_release -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x19557049 vb2_create_bufs -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x1f905be2 vb2_ioctl_prepare_buf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x241c21d0 vb2_dqbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x2afcb342 vb2_queue_change_type -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x331aa281 vb2_fop_read -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x3f358492 vb2_ioctl_streamon -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x43743acd vb2_streamon -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x4ab30c52 vb2_ioctl_create_bufs -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x53597636 vb2_ioctl_expbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x55317278 vb2_fop_mmap -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x59c149b3 vb2_fop_release -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x68ac07cf vb2_qbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x7312aa76 vb2_prepare_buf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x7329124a vb2_request_queue -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x735253fc vb2_ops_wait_prepare -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x7940077e vb2_ioctl_querybuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x7d7652cc vb2_expbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x826bc48e vb2_ops_wait_finish -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x97264e22 vb2_streamoff -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x9b4aeb56 vb2_ioctl_streamoff -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xb452924b vb2_poll -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xbe0d784d vb2_queue_init_name -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xc43199f5 vb2_find_timestamp -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xc950dcae vb2_request_validate -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xd55a866e vb2_queue_init -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xd83a8182 vb2_ioctl_qbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xdbf35fb6 vb2_ioctl_dqbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xea6a500d vb2_fop_poll -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xec6ec85e vb2_ioctl_reqbufs -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xf0d932d3 _vb2_fop_release -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xfd1dee38 vb2_reqbufs -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xfe3cbb89 vb2_fop_write -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-vmalloc 0x659238f5 vb2_vmalloc_memops -EXPORT_SYMBOL_GPL drivers/media/dvb-core/dvb-core 0x29449c69 dvb_module_release -EXPORT_SYMBOL_GPL drivers/media/dvb-core/dvb-core 0x410ac519 dvb_create_media_graph -EXPORT_SYMBOL_GPL drivers/media/dvb-core/dvb-core 0x6eab1dfb dvb_module_probe -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/as102_fe 0x2334396e as102_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cx24117 0xc9d9c96e cx24117_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/gp8psk-fe 0x178497a0 gp8psk_fe_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/mxl5xx 0x3e71533a mxl5xx_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv0910 0x96389608 stv0910_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv6111 0x399822d9 stv6111_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda18271c2dd 0x74f93ac7 tda18271c2dd_attach -EXPORT_SYMBOL_GPL drivers/media/i2c/aptina-pll 0x4e20606b aptina_pll_calculate -EXPORT_SYMBOL_GPL drivers/media/i2c/ccs-pll 0xd900529c ccs_pll_calculate -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x2eb0d531 max9271_enable_gpios -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x5ecee8e5 max9271_set_gpios -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x63a3d826 max9271_set_translation -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x64a09b46 max9271_clear_gpios -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x682f29f4 max9271_configure_i2c -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x6c01d532 max9271_verify_id -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x725f0240 max9271_set_address -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x79e9f97b max9271_wake_up -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x8d7ad90d max9271_configure_gmsl_link -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0xaa6fa4e2 max9271_set_high_threshold -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0xaae320ea max9271_set_serial_link -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0xeb525f2a max9271_set_deserializer_address -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0xefbb7a85 max9271_disable_gpios -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x01f39196 __media_entity_setup_link -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x02f2d917 media_pipeline_start -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x073fa335 __media_device_usb_init -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x0b69ae8c media_request_object_init -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x1577c9dd media_entity_find_link -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x239cf96c media_graph_walk_init -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x25f49497 media_remove_intf_link -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x2605a579 media_device_delete -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x2ca2e49b media_device_register_entity_notify -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x2cefbd66 media_request_put -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x2d08cbee __media_device_register -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x3b2b05c9 media_entity_remote_pad -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x3e50caa9 media_request_object_unbind -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x41ea43cf media_get_pad_index -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x4a126d6e media_entity_setup_link -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x4c6c177a media_pipeline_stop -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x559093c6 media_devnode_create -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x5f433d78 __media_pipeline_start -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x6b9eb30a __media_entity_remove_links -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x7a62a8d0 media_entity_pads_init -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x80845346 media_device_init -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x90e9dced media_device_pci_init -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x93e580a0 media_remove_intf_links -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x95345500 media_graph_walk_next -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x9a7a052b media_device_unregister_entity_notify -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xa263bdce media_device_usb_allocate -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xab9d4a39 media_create_pad_links -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xafcf4d67 media_create_intf_link -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xb2882374 media_device_unregister -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xb4d0840d media_request_object_find -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xc02f0e57 media_request_object_complete -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xc0b3a575 media_request_get_by_fd -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xc439935d media_request_object_bind -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xcb79f641 media_entity_get_fwnode_pad -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xcdab4c60 media_graph_walk_start -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xd7d2c6bf media_device_register_entity -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xd9a885ec media_entity_remove_links -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xda3ef1db __media_remove_intf_links -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xdb857cb9 __media_remove_intf_link -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xe5ceecd6 media_entity_enum_cleanup -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xe7c767a3 media_device_unregister_entity -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xe83f35ce media_devnode_remove -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xe97f82f5 media_graph_walk_cleanup -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xe99f4fe2 __media_pipeline_stop -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xeeb2cfe6 media_create_pad_link -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xf318a75e media_device_cleanup -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xfc781c47 __media_entity_enum_init -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xffc84fdf media_request_object_put -EXPORT_SYMBOL_GPL drivers/media/pci/cx88/cx88xx 0xa63b312c cx88_setup_xc3028 -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x3210ea86 mantis_frontend_soft_reset -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x3b90eac2 mantis_dma_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x44da2811 mantis_ca_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x52873534 mantis_input_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x52d1bb7f mantis_gpio_set_bits -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x569e0c70 mantis_i2c_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x5ac87659 mantis_input_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x5b274e18 mantis_dvb_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x6ea08898 mantis_frontend_power -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x76f5e4e3 mantis_uart_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x909339c3 mantis_dma_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xbd1b743f mantis_pci_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xcc18cd74 mantis_uart_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xd14a529d mantis_ca_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xf0249d19 mantis_dvb_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xf127728c mantis_stream_control -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xf9e96de5 mantis_pci_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xfc1192fb mantis_get_mac -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xfd9ddf71 mantis_i2c_init -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x03088910 saa7134_enum_input -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x04b4ca80 saa7134_s_input -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x0abb0939 saa7134_g_tuner -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x12a5801d saa7134_ts_queue_setup -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x2f9d7843 saa7134_g_input -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x31fec887 saa7134_ts_buffer_init -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x35b75df1 saa7134_g_std -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x37a41a51 saa7134_ts_start_streaming -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x3d6f692c saa7134_s_std -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x8a46c802 saa7134_querystd -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x954bd5f0 saa7134_vb2_buffer_queue -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x9d11bad4 saa7134_querycap -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xa054a7d6 saa7134_s_tuner -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xaebbf5e2 saa7134_ts_stop_streaming -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xb156338a saa7134_g_frequency -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xb80ad7d2 saa7134_ts_buffer_prepare -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xc32ddd53 saa7134_s_frequency -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xd8e5c8c7 saa7134_ts_qops -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xed092130 saa7134_stop_streaming -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x00efcbeb ttpci_budget_init_hooks -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x2d067129 ttpci_budget_set_video_port -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x7948c222 budget_debug -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x7ba45f17 ttpci_budget_init -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x83f8b6a4 ttpci_budget_irq10_handler -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xa41b70b2 ttpci_budget_debiwrite -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xe57b3fc8 ttpci_budget_deinit -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xea37084d ttpci_budget_debiread -EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0x051bb7ba nal_h264_write_pps -EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0x0a7999a8 nal_hevc_tier_from_v4l2 -EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0x1c729dc0 nal_h264_read_pps -EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0x1f8a04f8 nal_h264_write_sps -EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0x21ca16e9 nal_hevc_read_pps -EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0x253e0612 nal_hevc_read_filler -EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0x36d13921 nal_hevc_level_from_v4l2 -EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0x45b5097a nal_h264_read_sps -EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0x4c6076f3 nal_h264_read_filler -EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0x9d8a2fe4 nal_hevc_write_pps -EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0x9f23692d nal_hevc_write_sps -EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0xa8f36c32 nal_hevc_write_filler -EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0xda687e65 nal_hevc_profile_from_v4l2 -EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0xddab8c75 nal_h264_write_filler -EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0xdf43d10f nal_hevc_write_vps -EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0xe3a2e85a nal_hevc_read_vps -EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0xe876ffc9 nal_hevc_read_sps -EXPORT_SYMBOL_GPL drivers/media/platform/marvell-ccic/mcam-core 0x08e8b398 mccic_shutdown -EXPORT_SYMBOL_GPL drivers/media/platform/marvell-ccic/mcam-core 0x0965f159 mccic_resume -EXPORT_SYMBOL_GPL drivers/media/platform/marvell-ccic/mcam-core 0x4bacb1e8 mccic_register -EXPORT_SYMBOL_GPL drivers/media/platform/marvell-ccic/mcam-core 0xc0ed112e mccic_irq -EXPORT_SYMBOL_GPL drivers/media/platform/marvell-ccic/mcam-core 0xdc9d1e46 mccic_suspend -EXPORT_SYMBOL_GPL drivers/media/platform/mtk-vpu/mtk-vpu 0x07afdc18 vpu_wdt_reg_handler -EXPORT_SYMBOL_GPL drivers/media/platform/mtk-vpu/mtk-vpu 0x14eb412b vpu_ipi_send -EXPORT_SYMBOL_GPL drivers/media/platform/mtk-vpu/mtk-vpu 0x29991652 vpu_get_venc_hw_capa -EXPORT_SYMBOL_GPL drivers/media/platform/mtk-vpu/mtk-vpu 0x3b182df1 vpu_mapping_dm_addr -EXPORT_SYMBOL_GPL drivers/media/platform/mtk-vpu/mtk-vpu 0x7697b4c8 vpu_load_firmware -EXPORT_SYMBOL_GPL drivers/media/platform/mtk-vpu/mtk-vpu 0xa036d56a vpu_get_plat_device -EXPORT_SYMBOL_GPL drivers/media/platform/mtk-vpu/mtk-vpu 0xbd484b20 vpu_get_vdec_hw_capa -EXPORT_SYMBOL_GPL drivers/media/platform/mtk-vpu/mtk-vpu 0xc68bd382 vpu_ipi_register -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x0098dfcf venus_helper_set_output_resolution -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x015a1b91 hfi_session_process_buf -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x03f3de9b hfi_session_abort -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x0b4bd171 hfi_session_create -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x0c3c9ccc hfi_session_unload_res -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x0c513ac4 venus_helper_set_input_resolution -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x2619ed93 venus_helper_get_profile_level -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 0x282c3ffc venus_helper_vb2_buf_init -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x2bb4cc43 venus_helper_set_color_format -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 0x33fff9d9 venus_helper_set_profile_level -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x3dfb27ef venus_helper_free_dpb_bufs -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x476ce4db venus_helper_alloc_dpb_bufs -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x512b42b4 venus_helper_get_bufreq -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x5afa4fa3 venus_helper_vb2_start_streaming -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x6134c85f venus_helper_buffers_done -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x6698483b hfi_session_continue -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x69b93d65 hfi_session_get_property -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x6bf77ea9 hfi_session_destroy -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x76bc6b94 venus_helper_set_dyn_bufmode -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x780106fc venus_helper_set_num_bufs -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x788b7022 hfi_session_start -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x7a4cca9e venus_helper_set_format_constraints -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x7cc926cc venus_helper_find_buf -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x805c8be6 venus_helper_vb2_buf_queue -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x874f4818 venus_helper_check_codec -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x90024993 venus_helper_get_opb_size -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x921114dd venus_helper_session_init -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x94c17d20 venus_helper_process_initial_out_bufs -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x96543706 venus_helper_set_raw_format -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x997786d2 venus_helper_acquire_buf_ref -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x9a90ef34 venus_helper_get_ts_metadata -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x9c17e8c2 venus_helper_set_multistream -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xa652af9f venus_helper_set_bufsize -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xa738a87d venus_helper_set_stride -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xa7d46d92 venus_helper_process_initial_cap_bufs -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xa8d3b461 venus_helper_intbufs_free -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xb38aa054 venus_helper_vb2_stop_streaming -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xb4865e8f hfi_session_flush -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 0xb8ee909e venus_helper_init_instance -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xbb27ed88 venus_helper_get_out_fmts -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xbcab3bff hfi_session_init -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xc0050ee6 venus_helper_intbufs_realloc -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xc930d274 hfi_session_deinit -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xca42427d venus_helper_queue_dpb_bufs -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xcc1f12ed venus_helper_set_work_mode -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 0xd5d583fc venus_helper_unregister_bufs -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xdf3a0919 hfi_session_set_property -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xe166aa7b hfi_session_stop -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xe362722d venus_helper_release_buf_ref -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xe65354b4 venus_helper_intbufs_alloc -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xf829e244 venus_helper_vb2_buf_prepare -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 0xb8a95090 rcar_fcp_get_device -EXPORT_SYMBOL_GPL drivers/media/platform/vsp1/vsp1 0x2eba6440 vsp1_du_init -EXPORT_SYMBOL_GPL drivers/media/platform/vsp1/vsp1 0x4e477bb8 vsp1_du_setup_lif -EXPORT_SYMBOL_GPL drivers/media/platform/vsp1/vsp1 0x82d6ffc3 vsp1_du_map_sg -EXPORT_SYMBOL_GPL drivers/media/platform/vsp1/vsp1 0xb1769b06 vsp1_du_unmap_sg -EXPORT_SYMBOL_GPL drivers/media/platform/vsp1/vsp1 0xcb64600c vsp1_du_atomic_begin -EXPORT_SYMBOL_GPL drivers/media/platform/vsp1/vsp1 0xf03a2b0f vsp1_du_atomic_flush -EXPORT_SYMBOL_GPL drivers/media/platform/vsp1/vsp1 0xf8e404db vsp1_du_atomic_update -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x02aa6bd1 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 0x9401c411 xvip_cleanup_resources -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x9fc14d95 xvip_enum_mbus_code -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0xad89059d xvip_clr_or_set -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0xb67940fb xvip_get_format_by_fourcc -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0xbbcf3163 xvip_clr_and_set -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0xda3a646b xvip_init_resources -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0xe08e6063 xvip_get_format_by_code -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0xe84c9daf xvip_enum_frame_size -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-vtc 0x3c16a6b1 xvtc_generator_stop -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-vtc 0x47d7900b xvtc_generator_start -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-vtc 0x888dd67b xvtc_of_get -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-vtc 0xa8a0f912 xvtc_put -EXPORT_SYMBOL_GPL drivers/media/radio/shark2 0x13f3eda3 radio_tea5777_init -EXPORT_SYMBOL_GPL drivers/media/radio/shark2 0x5648e8f6 radio_tea5777_exit -EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0x4495de7d si470x_viddev_template -EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0x5180a60c si470x_set_freq -EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0xa4c0f762 si470x_ctrl_ops -EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0xabee990f si470x_stop -EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0xf71eb0ac si470x_start -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x06b10957 devm_rc_register_device -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x1c810edc rc_repeat -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x2b384d65 lirc_scancode_event -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x2ed90ced rc_map_unregister -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x42d07e5a rc_keyup -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x4b2ca9ba devm_rc_allocate_device -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x555645c5 ir_raw_event_store_edge -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x5a9db4d1 rc_g_keycode_from_table -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x63f6c857 ir_raw_event_store_with_filter -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x8652370f rc_unregister_device -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x8ca66908 ir_raw_event_set_idle -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xa460fa23 rc_register_device -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xa883987b rc_keydown -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xad8168c7 rc_allocate_device -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xb231514c ir_raw_event_store -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xb960f15c rc_map_register -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xbdc2b03c ir_raw_event_handle -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xd8690705 rc_keydown_notimeout -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xdb7a8f6d rc_free_device -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xe2ecf02b ir_raw_event_store_with_timeout -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xfc5d3079 rc_map_get -EXPORT_SYMBOL_GPL drivers/media/tuners/mt2063 0x98381f98 mt2063_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/mt20xx 0x839db8a1 microtune_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/mxl5007t 0xf5bee18d mxl5007t_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/r820t 0x16b43fb3 r820t_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tda18271 0xf774efc8 tda18271_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tda827x 0x54fbf388 tda827x_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tda8290 0x3953ebf9 tda829x_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tda8290 0x8250c21a tda829x_probe -EXPORT_SYMBOL_GPL drivers/media/tuners/tda9887 0x55fa5d42 tda9887_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tea5761 0xd5e94f4f tea5761_autodetection -EXPORT_SYMBOL_GPL drivers/media/tuners/tea5761 0xfca74ddf tea5761_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tea5767 0x02324ea1 tea5767_autodetection -EXPORT_SYMBOL_GPL drivers/media/tuners/tea5767 0xfbcc9709 tea5767_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tuner-simple 0x2a1283f1 simple_tuner_attach -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x017ea7c7 cx231xx_tuner_callback -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x04ca54f2 cx231xx_init_isoc -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x0e144ab6 cx231xx_uninit_vbi_isoc -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x0e24483a cx231xx_uninit_bulk -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x1a0a1365 cx231xx_init_bulk -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x2077ed0d cx231xx_disable656 -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x2a6fbc40 cx231xx_send_gpio_cmd -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x45908f77 cx231xx_capture_start -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x4c7b6bf0 cx231xx_uninit_isoc -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x5b00a0c5 is_fw_load -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x6a3d312e cx231xx_enable_i2c_port_3 -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x754fe83c cx231xx_enable656 -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x90573a75 cx231xx_dev_uninit -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x9a21d0c7 cx231xx_demod_reset -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xa8b131f8 cx231xx_set_mode -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xb24a1e02 cx231xx_send_usb_command -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xcca5312d cx231xx_get_i2c_adap -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xd1e565ef cx231xx_dev_init -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xe252ca04 cx231xx_init_vbi_isoc -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xf5f7659a cx231xx_set_alt_setting -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xfe312915 cx231xx_unmute_audio -EXPORT_SYMBOL_GPL drivers/media/usb/dvb-usb-v2/mxl111sf-demod 0x5024da54 mxl111sf_demod_attach -EXPORT_SYMBOL_GPL drivers/media/usb/dvb-usb-v2/mxl111sf-tuner 0xe83562bf mxl111sf_tuner_attach -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x1428eae5 em28xx_uninit_usb_xfer -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x3af969b1 em28xx_toggle_reg_bits -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x5a03b4ff em28xx_write_regs -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x5c46ef66 em28xx_write_reg_bits -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x665f7645 em28xx_audio_setup -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x721f7cc7 em28xx_free_device -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x783d840a em28xx_write_ac97 -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x7d62125c em28xx_read_reg -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x7fc8652c em28xx_tuner_callback -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x80c33556 em28xx_alloc_urbs -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x921d7c65 em28xx_boards -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x95e85a7a em28xx_init_usb_xfer -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x9d691412 em28xx_write_reg -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xacc0f64f em28xx_stop_urbs -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xb1ee76f7 em28xx_set_mode -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xb91614d5 em28xx_read_ac97 -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xbda1de52 em28xx_setup_xc3028 -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xd1d7fd7b em28xx_init_camera -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xe7b933e7 em28xx_find_led -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xe7d602dc em28xx_audio_analog_set -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xf252cbb1 em28xx_gpio_set -EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x10c75aff tm6000_set_audio_bitrate -EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x2309a6d6 tm6000_xc5000_callback -EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x28d3c66c tm6000_set_reg_mask -EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x2e8ce5d2 tm6000_get_reg -EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x89b611dd tm6000_debug -EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0xcee44b5f tm6000_set_reg -EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0xdff8e89d tm6000_tuner_callback -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0x406852ea v4l2_async_notifier_cleanup -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0x439d6094 __v4l2_async_notifier_add_fwnode_remote_subdev -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0x73c22df6 __v4l2_async_notifier_add_fwnode_subdev -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0xb2d83536 __v4l2_async_notifier_add_subdev -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0xd9f78bfe __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 0x97638b19 v4l2_flash_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-flash-led-class 0xaa5f0b6e v4l2_flash_release -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-flash-led-class 0xb5cd039f v4l2_flash_indicator_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x35942961 v4l2_fwnode_put_link -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x45e229be v4l2_fwnode_connector_parse -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x4e1905fc v4l2_async_notifier_parse_fwnode_endpoints -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x523f06df v4l2_async_register_subdev_sensor -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x57227606 v4l2_fwnode_parse_link -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x5fa1efc8 v4l2_fwnode_endpoint_parse -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x612ddce5 v4l2_fwnode_connector_free -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x67e77ee6 v4l2_fwnode_endpoint_alloc_parse -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x7a004ff8 v4l2_fwnode_endpoint_free -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x90182800 v4l2_fwnode_connector_add_link -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0xb06b8f3f v4l2_fwnode_device_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-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 0x1224ad35 v4l2_m2m_fop_poll -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x123b1882 v4l2_m2m_decoder_cmd -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x14b81143 v4l2_m2m_ioctl_try_encoder_cmd -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x177c2267 v4l2_m2m_ioctl_querybuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x1ca3a1b0 v4l2_m2m_ioctl_streamon -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x1db8c5e0 v4l2_m2m_last_buf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x1dbf3eb2 v4l2_m2m_ioctl_encoder_cmd -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x21c7359d v4l2_m2m_fop_mmap -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x24b07c99 v4l2_m2m_ioctl_stateless_try_decoder_cmd -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x26bd7300 v4l2_m2m_streamon -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x2a947880 v4l2_m2m_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x2fc4f348 v4l2_m2m_buf_remove -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x333a0358 v4l2_m2m_reqbufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x4da85654 v4l2_m2m_encoder_cmd -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x4e093c97 v4l2_m2m_ioctl_streamoff -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x5328f175 v4l2_m2m_streamoff -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x5797e8d7 v4l2_m2m_ioctl_stateless_decoder_cmd -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x61fbf621 v4l2_m2m_ioctl_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x64c821fe v4l2_m2m_ctx_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x69fe5ea5 v4l2_m2m_try_schedule -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x6f192c27 v4l2_m2m_querybuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x730f2eae v4l2_m2m_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x7dbfc7ab v4l2_m2m_expbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x7f2b7567 v4l2_m2m_buf_remove_by_idx -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x828a9e33 v4l2_m2m_update_start_streaming_state -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x921c57df v4l2_m2m_ctx_release -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x94956c93 v4l2_m2m_ioctl_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x9c99d9ed v4l2_m2m_ioctl_create_bufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x9d77a48e v4l2_m2m_buf_queue -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xa013a436 v4l2_m2m_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xa8f40f30 v4l2_m2m_prepare_buf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xb18f8ca3 v4l2_m2m_next_buf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xb4409470 v4l2_m2m_ioctl_try_decoder_cmd -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xb4f564fa v4l2_m2m_ioctl_expbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xb7cef2e2 v4l2_m2m_update_stop_streaming_state -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xb827054a v4l2_m2m_create_bufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xb8d07fa1 v4l2_m2m_request_queue -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xc6fca5ad v4l2_m2m_release -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xcbfb6f13 v4l2_m2m_ioctl_prepare_buf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xd12a2a13 v4l2_m2m_buf_copy_metadata -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xd711a8e6 v4l2_m2m_poll -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xdd4f7d13 v4l2_m2m_buf_remove_by_buf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xf0bf6771 v4l2_m2m_last_buffer_done -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xf13ff84d v4l2_m2m_unregister_media_controller -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xf3071f74 v4l2_m2m_register_media_controller -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xf41e1e1a v4l2_m2m_ioctl_decoder_cmd -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xf8510350 v4l2_m2m_ioctl_reqbufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x02faf18d videobuf_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x05fd47ee videobuf_mmap_mapper -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x1c368147 videobuf_poll_stream -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x2085ae02 videobuf_read_start -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x246b0372 videobuf_read_stream -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x33bd2ed1 videobuf_streamon -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x389dbde7 videobuf_stop -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x617db6c8 videobuf_alloc_vb -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x6402c80b __videobuf_mmap_setup -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x6e048b80 videobuf_queue_core_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x6e882b1e videobuf_iolock -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x7821495f videobuf_queue_cancel -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x7910ee1e videobuf_streamoff -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x7b8f8a6f videobuf_querybuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x87a4a56b videobuf_waiton -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x8dbe4d9a videobuf_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x8fce538f videobuf_mmap_free -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x981378ed videobuf_read_one -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xa75df6e6 videobuf_next_field -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xb466cf75 videobuf_queue_to_vaddr -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xd7f9f82c videobuf_read_stop -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xdc866517 videobuf_reqbufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xdd9b90cb videobuf_queue_is_busy -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xeceb22e1 videobuf_mmap_setup -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x25e6e179 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 0x5a94f3d5 videobuf_queue_sg_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x9f6f787a videobuf_dma_unmap -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0xfdbf1fce videobuf_dma_free -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0x3f2827e9 videobuf_vmalloc_free -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0xeeff0813 videobuf_to_vmalloc -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0xfaf013e1 videobuf_queue_vmalloc_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x06028b50 v4l2_device_register -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x0859a8f3 v4l2_subdev_link_validate_default -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x0a2457de v4l2_fh_open -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x0b6566a9 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 0x1483af2e v4l2_fh_exit -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x175e4d58 v4l2_create_fwnode_links -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x18e7e91e v4l2_event_subscribe -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x1d68274f __traceiter_vb2_v4l2_buf_done -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x203dbcf0 v4l2_ctrl_request_hdl_find -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x22519564 v4l2_s_parm_cap -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x244bddb0 v4l2_event_subdev_unsubscribe -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x2ae0877b __SCK__tp_func_vb2_v4l2_buf_done -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x3070986e __traceiter_vb2_v4l2_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x3461e8c7 __v4l2_device_register_subdev_nodes -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x364cd993 v4l2_device_disconnect -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x36b78ec0 v4l2_src_change_event_subdev_subscribe -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x392d44bf v4l2_fh_add -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x3b61871c v4l2_subdev_get_fwnode_pad_1_to_1 -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x3f388d9a v4l2_create_fwnode_links_to_pad -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 0x4ee53ddf v4l_vb2q_enable_media_source -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x52b5fbf7 v4l2_event_wake_all -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x5444bf21 v4l2_fh_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x553edaaf v4l2_pipeline_pm_get -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x57709ded v4l2_i2c_new_subdev_board -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x6322fe47 v4l2_event_unsubscribe -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x667d20b1 v4l2_event_unsubscribe_all -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x68169481 v4l2_subdev_notify_event -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x6a2de036 __tracepoint_vb2_v4l2_buf_queue -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x6ca47902 v4l2_pipeline_link_notify -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x6cbec37d __v4l2_ctrl_handler_setup -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x6ce1c95c __SCK__tp_func_vb2_v4l2_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x6e8a30f1 v4l2_event_pending -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x6e9acc41 v4l2_fill_pixfmt_mp -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x77fc042a v4l2_fh_release -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7f284fd7 v4l2_ctrl_request_hdl_ctrl_find -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x833aec95 v4l2_device_register_subdev -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x97f38688 v4l2_subdev_link_validate -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x9a9dad2d __traceiter_vb2_v4l2_buf_queue -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x9c71cc4e 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 0xa138027b v4l_disable_media_source -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa2fa1b94 v4l2_spi_subdev_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa4fb7aa3 v4l_enable_media_source -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa578a85f v4l2_device_unregister_subdev -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xaf3a27f7 v4l2_spi_new_subdev -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xb10a875f v4l2_src_change_event_subscribe -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xb13d41a0 v4l2_subdev_free_state -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xb592254e v4l2_event_queue_fh -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xb78724e3 v4l2_i2c_new_subdev -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xb79ea0c0 v4l2_i2c_subdev_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xbc1b7210 v4l2_g_parm_cap -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xbce09872 v4l2_i2c_subdev_addr -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc1ca2796 v4l2_event_queue -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc584bee4 v4l2_get_link_freq -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc5b0d403 v4l2_i2c_subdev_set_name -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc6479130 __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 0xcc501597 v4l2_fill_pixfmt -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xd18e8bee v4l2_fh_del -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xd2c7d7a0 v4l2_device_put -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xd979a9a5 v4l2_event_dequeue -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe0b4a839 v4l2_pipeline_pm_put -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe2822320 __v4l2_find_nearest_size -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe5a33113 __SCK__tp_func_vb2_v4l2_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf2a353ac v4l2_i2c_tuner_addrs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf37f0782 v4l2_device_set_name -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf38af476 v4l2_compat_ioctl32 -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf5ef842e v4l_bound_align_image -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf978bed9 v4l2_device_unregister -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xfebdba47 v4l2_mc_create_media_graph -EXPORT_SYMBOL_GPL drivers/memory/mtk-smi 0x6599b3cf mtk_smi_larb_put -EXPORT_SYMBOL_GPL drivers/memory/mtk-smi 0x6963e179 mtk_smi_larb_get -EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0x4d0b0c0c pm80x_pm_ops -EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0x5b86e364 pm80x_init -EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0x5ce15fae pm80x_regmap_config -EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0xd99fd720 pm80x_deinit -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x0b277760 wm8997_patch -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x0ff68f74 wm8998_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x17bd1e0d cs47l24_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x1e045980 wm5102_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x24c13ce1 arizona_pm_ops -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x28865a41 wm8997_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x3713f0cf arizona_dev_init -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x3dc526a9 arizona_of_match -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x3f122508 arizona_free_irq -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x4048fbbc wm8997_aod -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x4267ffb2 arizona_set_irq_wake -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x4c087981 wm5110_aod -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x59ee28f7 arizona_request_irq -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x5d3c98cc wm5102_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x6c1237e6 cs47l24_patch -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x79678cfd arizona_clk32k_enable -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xa06fccf1 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 0xb4a677ff wm5110_patch -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xc81b43ab wm5110_revd_irq -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xd1d19a86 arizona_clk32k_disable -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xe3570dbd wm5110_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xf452502e arizona_dev_exit -EXPORT_SYMBOL_GPL drivers/mfd/atc260x-core 0x4c0dc8ad atc260x_device_probe -EXPORT_SYMBOL_GPL drivers/mfd/atc260x-core 0xb32407de atc260x_match_device -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x29cc1e6b da9150_write_qif -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x37f2834f da9150_bulk_read -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x4cdc581e da9150_bulk_write -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x4fbb1c11 da9150_reg_read -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x9b12122c da9150_reg_write -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xad63fee4 da9150_set_bits -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xb73e7dc7 da9150_read_qif -EXPORT_SYMBOL_GPL drivers/mfd/gateworks-gsc 0xa142a524 gsc_read -EXPORT_SYMBOL_GPL drivers/mfd/gateworks-gsc 0xb7abd1c4 gsc_write -EXPORT_SYMBOL_GPL drivers/mfd/iqs62x 0xa436f4de iqs62x_events -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x0553c7be kempld_get_mutex -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x3a7b1430 kempld_read32 -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x3d434e55 kempld_write8 -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x41d2757b kempld_release_mutex -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x4628415b kempld_write32 -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xc074d54e kempld_read8 -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xcd0a46cd kempld_write16 -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xdd41d2f3 kempld_read16 -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0x0d6c0c32 lm3533_write -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0xb8d0e02e lm3533_update -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0xfcae6c02 lm3533_read -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x3321ead8 lm3533_ctrlbank_set_brightness -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x43ecb506 lm3533_ctrlbank_set_pwm -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x7d893ab6 lm3533_ctrlbank_set_max_current -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x7e5451a9 lm3533_ctrlbank_get_pwm -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xb00a1893 lm3533_ctrlbank_disable -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xe38b68be lm3533_ctrlbank_get_brightness -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xfb30b837 lm3533_ctrlbank_enable -EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0x91eab00a lp3943_read_byte -EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0x9be0fd00 lp3943_update_bits -EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0xa6053b65 lp3943_write_byte -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x0a6bf627 cs47l90_patch -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x0f2220f9 cs47l85_patch -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x0f379262 madera_of_match -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x37ef5821 madera_dev_init -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x3b25c4bf cs47l92_patch -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x3c95dff5 cs47l15_32bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x3c9803b5 cs47l15_16bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x3d27d3c9 cs47l15_patch -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x7471285e madera_pm_ops -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x7fa0c2f9 cs47l15_16bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x7fad1eb9 cs47l15_32bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x8711f34d cs47l85_32bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x871c2f0d cs47l85_16bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x9fc484fd cs47l90_32bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x9fc958bd cs47l90_16bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0xa8459f00 cs47l92_16bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0xa8484340 cs47l92_32bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0xb5636835 cs47l35_32bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0xb56eb475 cs47l35_16bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0xc06fab2b madera_dev_exit -EXPORT_SYMBOL_GPL drivers/mfd/madera 0xc3c2868d cs47l35_patch -EXPORT_SYMBOL_GPL drivers/mfd/madera 0xc424ee41 cs47l85_16bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0xc4293201 cs47l85_32bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0xdcf199f1 cs47l90_16bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0xdcfc45b1 cs47l90_32bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0xeb70820c cs47l92_32bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0xeb7d5e4c cs47l92_16bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0xebe384cb madera_name_from_type -EXPORT_SYMBOL_GPL drivers/mfd/madera 0xf6567539 cs47l35_16bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0xf65ba979 cs47l35_32bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x25be200e mc13xxx_variant_mc13892 -EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x5195f8da mc13xxx_common_init -EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x65046b2e mc13xxx_variant_mc13783 -EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x770b9e46 mc13xxx_variant_mc34708 -EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0xe518e982 mc13xxx_common_exit -EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0xff4c5745 mc13xxx_adc_do_conversion -EXPORT_SYMBOL_GPL drivers/mfd/motorola-cpcap 0xa226dbe8 cpcap_sense_virq -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x01a64617 pcf50633_read_block -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x0daf373c pcf50633_irq_mask -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x295930d8 pcf50633_irq_unmask -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x2c81b656 pcf50633_reg_clear_bits -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x6cee2348 pcf50633_write_block -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x71a77cc3 pcf50633_reg_write -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x7878aa58 pcf50633_free_irq -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x85fbaae6 pcf50633_reg_set_bit_mask -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x97312d07 pcf50633_reg_read -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xbcd37337 pcf50633_irq_mask_get -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xf5676aeb pcf50633_register_irq -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0xb0260eff pcf50633_adc_sync_read -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0xdd261156 pcf50633_adc_async_read -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x317de2bb pcf50633_gpio_invert_get -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x8fa16fdc pcf50633_gpio_set -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xa2260ac3 pcf50633_gpio_invert_set -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xb6ee4c2d pcf50633_gpio_power_supply_set -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xcc224929 pcf50633_gpio_get -EXPORT_SYMBOL_GPL drivers/mfd/rave-sp 0x096b1dac 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 0x00dc2a7d si476x_core_cmd_fm_rsq_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x11ef4773 si476x_core_cmd_am_rsq_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x14a87fc1 si476x_core_cmd_fm_tune_freq -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x186050c9 si476x_core_cmd_am_seek_start -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x1dcd17b5 si476x_core_cmd_zif_pin_cfg -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x23bd47ec si476x_core_cmd_power_down -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x2ecc4abf si476x_core_has_am -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x304648ba si476x_core_cmd_set_property -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x32eca9b5 si476x_core_cmd_fm_seek_start -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x396b1720 si476x_core_cmd_fm_rds_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x3a9ae4a8 si476x_core_cmd_power_up -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x3cf2031e si476x_core_set_power_state -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x451e74b2 si476x_core_cmd_ana_audio_pin_cfg -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x50d704f2 si476x_core_cmd_fm_rds_blockcount -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x54ac9762 si476x_core_cmd_get_property -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x660b452e si476x_core_cmd_intb_pin_cfg -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x6a3cc66d si476x_core_is_powered_up -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x6ac6064a si476x_core_is_in_am_receiver_mode -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x7bc6cfbc si476x_core_cmd_fm_acf_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x8ccbf254 si476x_core_i2c_xfer -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x94ed3c50 si476x_core_cmd_am_tune_freq -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x96457a21 si476x_core_cmd_am_acf_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x9e1654ad si476x_core_stop -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xb12a9951 si476x_core_cmd_fm_phase_diversity -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xb6065039 si476x_core_cmd_func_info -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xb60c8bed si476x_core_cmd_agc_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xce57dee1 si476x_core_is_a_primary_tuner -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xce67e671 si476x_core_has_diversity -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xcef9c59a si476x_core_cmd_ic_link_gpo_ctl_pin_cfg -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xd1be7fb3 si476x_core_start -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xd679ad08 si476x_core_cmd_dig_audio_pin_cfg -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xdd75f9d6 si476x_core_is_a_secondary_tuner -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xdeb5ddd8 devm_regmap_init_si476x -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xe7212d03 si476x_core_cmd_fm_phase_div_status -EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x4d94cab2 sm501_set_clock -EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x916c8662 sm501_find_clock -EXPORT_SYMBOL_GPL drivers/mfd/sm501 0xa0c63b5f sm501_modify_reg -EXPORT_SYMBOL_GPL drivers/mfd/sm501 0xae7a1dd5 sm501_misc_control -EXPORT_SYMBOL_GPL drivers/mfd/sm501 0xd9a2af0f sm501_unit_power -EXPORT_SYMBOL_GPL drivers/mfd/sprd-sc27xx-spi 0xfa3ca7f3 sprd_pmic_detect_charger_type -EXPORT_SYMBOL_GPL drivers/mfd/stmfx 0x87061e3a stmfx_function_enable -EXPORT_SYMBOL_GPL drivers/mfd/stmfx 0xd04e4d28 stmfx_function_disable -EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x41a9addf am335x_tsc_se_clr -EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x9185c262 am335x_tsc_se_set_once -EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0xd0ff08a4 am335x_tsc_se_set_cache -EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0xe277e18e am335x_tsc_se_adc_done -EXPORT_SYMBOL_GPL drivers/mfd/tps65217 0x0fc87b6a tps65217_clear_bits -EXPORT_SYMBOL_GPL drivers/mfd/tps65217 0x30303969 tps65217_set_bits -EXPORT_SYMBOL_GPL drivers/mfd/tps65217 0x3a21d5cc tps65217_reg_read -EXPORT_SYMBOL_GPL drivers/mfd/tps65217 0xb28d30a5 tps65217_reg_write -EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0xb54133c8 tps65218_clear_bits -EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0xefe989ac tps65218_reg_write -EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0xf27967d5 tps65218_set_bits -EXPORT_SYMBOL_GPL drivers/mfd/ucb1400_core 0x3ba8eab9 ucb1400_adc_read -EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x025c941a alcor_write32 -EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x07f81d1e alcor_write16 -EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x5c534e8f alcor_write8 -EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x82361809 alcor_read8 -EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x905932cf alcor_read32be -EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0xa962e244 alcor_write32be -EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0xe38a6269 alcor_read32 -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x08206632 rtsx_pci_write_ppbuf -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x1718a76c rtsx_pci_card_exist -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x1e57fd3a rtsx_pci_transfer_data -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x2166883a rtsx_pci_send_cmd -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x3581bffb rtsx_pci_card_pull_ctl_enable -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x3ecb797a rtsx_pci_card_power_off -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x40424c20 rtsx_pci_dma_transfer -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x53cd5b53 rtsx_pci_send_cmd_no_wait -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x575e27b0 rtsx_pci_read_ppbuf -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x618e85ab rtsx_pci_read_phy_register -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x63e86cc8 rtsx_pci_stop_cmd -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x64a69255 rtsx_pci_start_run -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x6aca1a23 rtsx_pci_write_phy_register -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x738ebfae rtsx_pci_card_power_on -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x87f06da8 rtsx_pci_dma_map_sg -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x88909669 rtsx_pci_add_cmd -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x8ccfd8e2 rtsx_pci_card_pull_ctl_disable -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x9329f7b5 rtsx_pci_write_register -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xb0e271d9 rtsx_pci_read_register -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xd2cd3def rtsx_pci_card_exclusive_check -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xd2e3eb62 rtsx_pci_complete_unfinished_transfer -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xd513757f rtsx_pci_switch_clock -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xda751ce0 rtsx_pci_switch_output_voltage -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xffc301bf rtsx_pci_dma_unmap_sg -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x082d030f rtsx_usb_switch_clock -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x1376c118 rtsx_usb_write_ppbuf -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x17df2a74 rtsx_usb_add_cmd -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x37fbe16f rtsx_usb_transfer_data -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x3f2fa6c2 rtsx_usb_card_exclusive_check -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x473ad729 rtsx_usb_send_cmd -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x5917047c rtsx_usb_ep0_write_register -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x5c924ec8 rtsx_usb_ep0_read_register -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x72358331 rtsx_usb_read_ppbuf -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xa1d44e06 rtsx_usb_get_rsp -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xcefa1f2d rtsx_usb_get_card_status -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xd455851a rtsx_usb_write_register -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xf4f6649a rtsx_usb_read_register -EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x2b8c120a cb710_pci_update_config_reg -EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x30f56ed1 cb710_sg_dwiter_read_next_block -EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x576ac1dc cb710_set_irq_handler -EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x5a3d453e 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 0x1c8d28b1 enclosure_unregister -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x3434f72c enclosure_add_device -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x649e6fca enclosure_for_each_device -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x6a6f4e1a enclosure_register -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x6d9369d5 enclosure_component_register -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xadae96cb enclosure_remove_device -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xd6c820de enclosure_component_alloc -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xdc14f869 enclosure_find -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x44988aea lis3lv02d_poweron -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x609590b8 lis3lv02d_init_dt -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x764f0f83 lis3lv02d_joystick_disable -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x78f484b4 lis3lv02d_remove_fs -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x8d6f8094 lis3lv02d_init_device -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x9ce1d63f lis3lv02d_joystick_enable -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xc9000414 lis3_dev -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xf6b299a5 lis3lv02d_poweroff -EXPORT_SYMBOL_GPL drivers/misc/pvpanic/pvpanic 0x5a263ac4 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 0xb205dda8 uacce_alloc -EXPORT_SYMBOL_GPL drivers/misc/uacce/uacce 0xc9427d03 uacce_remove -EXPORT_SYMBOL_GPL drivers/misc/uacce/uacce 0xc9dc85cd uacce_register -EXPORT_SYMBOL_GPL drivers/mmc/host/dw_mmc-pltfm 0x0d63c81b dw_mci_pltfm_pmops -EXPORT_SYMBOL_GPL drivers/mmc/host/dw_mmc-pltfm 0x1dd056c9 dw_mci_pltfm_register -EXPORT_SYMBOL_GPL drivers/mmc/host/dw_mmc-pltfm 0x78478ff4 dw_mci_pltfm_remove -EXPORT_SYMBOL_GPL drivers/mmc/host/mmc_hsq 0x1a22a871 mmc_hsq_finalize_request -EXPORT_SYMBOL_GPL drivers/mmc/host/mmc_hsq 0xc7af13ec mmc_hsq_suspend -EXPORT_SYMBOL_GPL drivers/mmc/host/mmc_hsq 0xd6baf680 mmc_hsq_resume -EXPORT_SYMBOL_GPL drivers/mmc/host/mmc_hsq 0xe7857cbe mmc_hsq_init -EXPORT_SYMBOL_GPL drivers/mmc/host/renesas_sdhi_core 0x2abb1395 renesas_sdhi_probe -EXPORT_SYMBOL_GPL drivers/mmc/host/renesas_sdhi_core 0xbc45151b renesas_sdhi_remove -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x04e334e2 sdhci_switch_external_dma -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x0dd48d4f sdhci_suspend_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x0e2ad15b sdhci_cleanup_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x1ca202f1 sdhci_dumpregs -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x21e52b78 sdhci_set_power_noreg -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x27e676bf sdhci_set_power_and_bus_voltage -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x29a55e8d sdhci_cqe_disable -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x466e7216 sdhci_cqe_irq -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x493e474c sdhci_end_tuning -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x51aa6f71 sdhci_reset -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x57247e09 sdhci_request -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x59a8b7dc sdhci_send_tuning -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x6284cc86 sdhci_abort_tuning -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x643b45c4 sdhci_remove_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x6edd7dcb __sdhci_add_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x71e53dc8 sdhci_start_signal_voltage_switch -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x71fd4a1b __sdhci_read_caps -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x74f09c08 sdhci_start_tuning -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x79a2e51f sdhci_set_power -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x7f49c5f4 sdhci_resume_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x80e28111 sdhci_set_bus_width -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x8a8c8629 sdhci_adma_write_desc -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x91eaf637 sdhci_set_uhs_signaling -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x964ef8b7 sdhci_free_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x997d376d sdhci_reset_tuning -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x99ccc138 sdhci_request_atomic -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x9dee3627 sdhci_enable_v4_mode -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xa3ae3701 sdhci_set_data_timeout_irq -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xa50720ad __sdhci_set_timeout -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xb190f481 sdhci_runtime_resume_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xb26f3f7a sdhci_execute_tuning -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xcc53f44d sdhci_enable_sdio_irq -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xd3601385 sdhci_alloc_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xd426a9dd sdhci_setup_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xd847b099 sdhci_calc_clk -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xe135b69f sdhci_runtime_suspend_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xe21faddf sdhci_add_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xe502e08c sdhci_set_clock -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xe5ad0c50 sdhci_cqe_enable -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xed6d6824 sdhci_enable_clk -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xf7df7f47 sdhci_set_ios -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x0e91065b sdhci_pltfm_pmops -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x4956f511 sdhci_get_property -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x625caa21 sdhci_pltfm_init -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x8b84342b sdhci_pltfm_suspend -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x97eb30a5 sdhci_pltfm_unregister -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xb5a28736 sdhci_pltfm_resume -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xe5426a56 sdhci_pltfm_register -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xe78880b4 sdhci_pltfm_clk_get_max_clock -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xecbd93c2 sdhci_pltfm_free -EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0x1aa746a5 tmio_mmc_host_runtime_suspend -EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0x1e415e93 tmio_mmc_do_data_irq -EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0x378f2335 tmio_mmc_irq -EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0x55d74ca3 tmio_mmc_host_probe -EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0x6daa320b tmio_mmc_host_alloc -EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0x82e0c8fe tmio_mmc_enable_mmc_irqs -EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0x858f1a63 tmio_mmc_host_runtime_resume -EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0xcfc64eeb tmio_mmc_host_remove -EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0xf5f79112 tmio_mmc_disable_mmc_irqs -EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0xfe586061 tmio_mmc_host_free -EXPORT_SYMBOL_GPL drivers/most/most_core 0x03b9fddd most_register_component -EXPORT_SYMBOL_GPL drivers/most/most_core 0x0d785e26 most_start_channel -EXPORT_SYMBOL_GPL drivers/most/most_core 0x102bd385 most_register_configfs_subsys -EXPORT_SYMBOL_GPL drivers/most/most_core 0x14111453 channel_has_mbo -EXPORT_SYMBOL_GPL drivers/most/most_core 0x47c209b4 most_get_mbo -EXPORT_SYMBOL_GPL drivers/most/most_core 0x570ee095 most_stop_channel -EXPORT_SYMBOL_GPL drivers/most/most_core 0x769a2184 most_submit_mbo -EXPORT_SYMBOL_GPL drivers/most/most_core 0x7be1036d most_deregister_configfs_subsys -EXPORT_SYMBOL_GPL drivers/most/most_core 0xa9be369c most_deregister_component -EXPORT_SYMBOL_GPL drivers/most/most_core 0xccd12d62 most_put_mbo -EXPORT_SYMBOL_GPL drivers/most/most_core 0xd0748126 most_deregister_interface -EXPORT_SYMBOL_GPL drivers/most/most_core 0xd728eab1 most_resume_enqueue -EXPORT_SYMBOL_GPL drivers/most/most_core 0xd8634bbe most_register_interface -EXPORT_SYMBOL_GPL drivers/most/most_core 0xe52d4b8e most_stop_enqueue -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0x033cfff1 cfi_cmdset_0001 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0x3c15da19 cfi_cmdset_0003 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0xc10bff8f cfi_cmdset_0200 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0x238148ed cfi_cmdset_0002 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0x5dd3033d cfi_cmdset_0006 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0xd078876b cfi_cmdset_0701 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0020 0xb2462e6a cfi_cmdset_0020 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0x46d79f3b cfi_qry_mode_off -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0x89e944f1 cfi_qry_mode_on -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0xef083534 cfi_qry_present -EXPORT_SYMBOL_GPL drivers/mtd/hyperbus/hyperbus-core 0x3e06c682 hyperbus_register_device -EXPORT_SYMBOL_GPL drivers/mtd/hyperbus/hyperbus-core 0xfbdadd7c hyperbus_unregister_device -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x017c9db9 register_mtd_user -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x048e24b3 mtd_is_locked -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x0a51f46e mtd_lock_user_prot_reg -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x0d5b648a mtd_writev -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x0f82f649 get_tree_mtd -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x0fc326c6 mtd_write_oob -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x1c64d74b mtd_unlock -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x20016ee6 mtd_get_device_size -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x204bc35e __put_mtd_device -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x2db88e70 mtd_block_isreserved -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x30bdf998 mtd_ooblayout_set_eccbytes -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x35f5f167 __register_mtd_parser -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x37bf2bae mtd_ooblayout_free -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x38ea0bb8 mtd_read_user_prot_reg -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x3f114fdb mtd_read -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x403ac997 mtd_device_parse_register -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x4042697e mtd_get_user_prot_info -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x42a2ef74 mtd_ooblayout_get_eccbytes -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x4c60c28a mtd_read_oob -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x4f3cdc3f mtd_point -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x50a27528 mtd_wunit_to_pairing_info -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x50dabc2f mtd_table_mutex -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x53785c01 mtd_block_markbad -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x53e3f96b mtd_pairing_groups -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x5848fe93 mtd_ooblayout_set_databytes -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x58793d5f mtd_write_user_prot_reg -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x64fe18f1 mtd_lock -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x678a69e1 mtd_pairing_info_to_wunit -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x67cd604f mtd_kmalloc_up_to -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x69ffe5d7 mtd_get_unmapped_area -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x6b5d2cd5 mtd_ooblayout_count_freebytes -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x6ce1be5e mtd_erase -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x6cf271d2 mtd_unpoint -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x710dc30c mtd_panic_write -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x7dfaee12 mtd_write -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x852c761c __mtd_next_device -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x8c59ab40 __get_mtd_device -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x91e530fa mtd_ooblayout_find_eccregion -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x9e740137 mtd_get_fact_prot_info -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x9ee9f871 unregister_mtd_user -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x9faf711b mtd_device_unregister -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xa86b4799 mtd_ooblayout_count_eccbytes -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xa9910df7 kill_mtd_super -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xb51c8755 mtd_read_fact_prot_reg -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xc1a257c6 mtd_erase_user_prot_reg -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xca55852a get_mtd_device -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xd084fb06 deregister_mtd_parser -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xd334f246 put_mtd_device -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xd71f2050 mtd_ooblayout_get_databytes -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xe54af489 mtd_add_partition -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xe7fb7a6c mtd_del_partition -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xedba650f get_mtd_device_nm -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xf0ae8f72 mtd_ooblayout_ecc -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xf5eaa29b mtd_block_isbad -EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x52057c0a register_mtd_blktrans -EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x8dd469d1 mtd_blktrans_cease_background -EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0xa9a07aee del_mtd_blktrans_dev -EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0xd37d0a7c add_mtd_blktrans_dev -EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0xdb999d10 deregister_mtd_blktrans -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x128710c5 nand_ecc_cleanup_req_tweaking -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x14938e80 nand_get_small_page_ooblayout -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x1ff67d2d nanddev_init -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x2425586c nand_get_large_page_hamming_ooblayout -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x323c11c2 nanddev_mtd_erase -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x398308e5 nanddev_isbad -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x3b2e6142 nanddev_markbad -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x3cd491f6 nanddev_bbt_update -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x482e59c5 nanddev_mtd_max_bad_blocks -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x552c2e98 nanddev_bbt_get_block_status -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x5904b02c nanddev_erase -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x5f2732e4 nand_ecc_init_req_tweaking -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x7e877062 nanddev_isreserved -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x812f81c4 nanddev_bbt_cleanup -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x8ccf1fdf nand_ecc_tweak_req -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x8dc5c18f nanddev_ecc_engine_init -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xa8463494 nanddev_bbt_set_block_status -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xaf73493b nanddev_cleanup -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xb6c56f07 nanddev_bbt_init -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xca3a045d nand_get_large_page_ooblayout -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xf1309782 nand_ecc_restore_req -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xf3cc9098 nanddev_ecc_engine_cleanup -EXPORT_SYMBOL_GPL drivers/mtd/nand/onenand/onenand 0x0fb9c4b8 onenand_scan -EXPORT_SYMBOL_GPL drivers/mtd/nand/onenand/onenand 0x0ff5034d onenand_release -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/brcmnand/brcmnand 0x43120f8c brcmnand_probe -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/brcmnand/brcmnand 0x899316ab brcmnand_pm_ops -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/brcmnand/brcmnand 0xce88b001 brcmnand_remove -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/denali 0xd5b36f8e denali_chip_init -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x03a1efd1 nand_change_write_column_op -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x11091291 nand_extract_bits -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x2d368c4c nand_subop_get_addr_start_off -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x3d80a8a7 nand_prog_page_begin_op -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x3fb7d349 nand_reset_op -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x5632e63d nand_subop_get_num_addr_cyc -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x64f3c690 nand_deselect_target -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x703670ed nand_gpio_waitrdy -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x73a59393 nand_change_read_column_op -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x75059bcc nand_status_op -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x85220d42 nand_ecc_choose_conf -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x98c4c7d6 nand_prog_page_end_op -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x9f1eb0fb nand_erase_op -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xaea3d979 nand_cleanup -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xb3cdd70b nand_decode_ext_id -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xb75e1003 nand_read_oob_op -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xb8771585 nand_write_data_op -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xb88e43d6 nand_soft_waitrdy -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xbcad0eca nand_wait_ready -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xcfc07ada nand_read_page_hwecc_oob_first -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 0xd71749a1 nand_read_page_op -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xe0955d58 nand_prog_page_op -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xf0a598d1 nand_readid_op -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xf22a7279 nand_read_data_op -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xf8f62332 nand_op_parser_exec_op -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xf98ba779 nand_select_target -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xfeefa1ec nand_reset -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/sm_common 0xd6fca648 sm_register_device -EXPORT_SYMBOL_GPL drivers/mtd/spi-nor/spi-nor 0x609d45d5 spi_nor_restore -EXPORT_SYMBOL_GPL drivers/mtd/spi-nor/spi-nor 0x87a56853 spi_nor_scan -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x0ca89195 ubi_open_volume_nm -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x0ce43c4e ubi_leb_read -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x12ba2319 ubi_open_volume -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x1b0d169b ubi_leb_map -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x38e10c1d ubi_flush -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x42801d20 ubi_sync -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x66011ab6 ubi_get_device_info -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x6e90aa51 ubi_leb_write -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x741b27a2 ubi_leb_unmap -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x7c805f8a ubi_leb_read_sg -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x85a8ee76 ubi_unregister_volume_notifier -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x9f551ddf ubi_leb_change -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xb6f6c8bb ubi_leb_erase -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xc22b3453 ubi_open_volume_path -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xe4671564 ubi_do_get_device_info -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xec832219 ubi_get_volume_info -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xf183b62c ubi_is_mapped -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xf5ee9ba8 ubi_register_volume_notifier -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xfe16e28a ubi_close_volume -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x0b5a13fb mux_control_get -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x0cba4051 mux_chip_free -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x1f9354ba devm_mux_control_get -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x27dc23a0 devm_mux_chip_alloc -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x32f211ae mux_control_select -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x6785af0a mux_control_deselect -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x809d13d9 mux_control_put -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x8d3dcb6b mux_chip_alloc -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xa5c6babf mux_control_states -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xbf53e7c1 mux_chip_unregister -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xcb71f370 mux_chip_register -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xe157ba21 mux_control_try_select -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xee559ee6 devm_mux_chip_register -EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0x0549ec52 arcnet_led_event -EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0x994ded6a devm_arcnet_led_init -EXPORT_SYMBOL_GPL drivers/net/bareudp 0xb7b677fb bareudp_dev_create -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x1ccaeca7 alloc_c_can_dev -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x4300cbf2 c_can_power_down -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x7304cad3 register_c_can_dev -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xabee5304 c_can_power_up -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xd5ca2dc0 free_c_can_dev -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xfc975073 unregister_c_can_dev -EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x1356eda2 unregister_cc770dev -EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x380bb606 alloc_cc770dev -EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x97e2c6db free_cc770dev -EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0xe552b27e register_cc770dev -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x10d892eb can_get_state_str -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x221cce72 safe_candev_priv -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x2b5f2f5a alloc_can_err_skb -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x39059628 of_can_transceiver -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x4156fd0a free_candev -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x5d53443d alloc_canfd_skb -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x5dbca465 open_candev -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x6047ede6 can_fd_len2dlc -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x630299b4 can_rx_offload_enable -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x6be2819d can_rx_offload_del -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x6c66a9e1 register_candev -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x73490773 can_rx_offload_get_echo_skb -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x8491803b can_free_echo_skb -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x89b7e264 can_rx_offload_queue_tail -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x9bda1041 can_rx_offload_threaded_irq_finish -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xa4a1428b can_rx_offload_add_fifo -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xa4a5f9e6 can_get_echo_skb -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xa72d0d15 can_skb_get_frame_len -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xa7d664ef close_candev -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xaacc746a can_change_state -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xb37b509a can_rx_offload_add_manual -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xc15a3058 can_rx_offload_irq_finish -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xc227487c can_bus_off -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xc3501e9e unregister_candev -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xd1fec233 can_rx_offload_queue_sorted -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xe047cf66 can_put_echo_skb -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xe58a7e1e alloc_candev_mqs -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xe789c022 can_rx_offload_add_timestamp -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xe90cc3c0 can_rx_offload_irq_offload_timestamp -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xebaf7d92 can_rx_offload_irq_offload_fifo -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xf12d9387 can_fd_dlc2len -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xf3647271 alloc_can_skb -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xf94e7801 can_change_mtu -EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x4e0482b2 m_can_class_suspend -EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x536a781e m_can_class_allocate_dev -EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x5551a6db m_can_init_ram -EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x588f50c7 m_can_class_unregister -EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x7d2297de m_can_class_resume -EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x98240661 m_can_class_register -EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0xba0c49f2 m_can_class_get_clocks -EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0xe524dfa1 m_can_class_free_dev -EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x1b238150 free_sja1000dev -EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x455679fe alloc_sja1000dev -EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x49623e1b unregister_sja1000dev -EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x49ebd0d2 sja1000_interrupt -EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x9f3b0e69 register_sja1000dev -EXPORT_SYMBOL_GPL drivers/net/dsa/lan9303-core 0xe79fe50f lan9303_indirect_phy_ops -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x01793640 ksz_port_fast_age -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x0c62c747 ksz_mac_link_down -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x145d7f02 ksz_phy_write16 -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x17cce2b6 ksz_port_mdb_add -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x18979de2 ksz_port_bridge_leave -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x33d86f46 ksz_enable_port -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x4b47f623 ksz_init_mib_timer -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x4c9d3778 ksz_update_port_member -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x55bdbe8e ksz_port_mdb_del -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x6c4b2e66 ksz_sset_count -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x8e55177c ksz_port_fdb_dump -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xb2454c90 ksz_phy_read16 -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xbea73d31 ksz_get_ethtool_stats -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xfe0f511c ksz_port_bridge_join -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x1a585870 rtl8366_vlan_filtering -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x554dcf79 rtl8366_init_vlan -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x61572542 rtl8366_enable_vlan -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x67c9eb3f realtek_smi_write_reg_noack -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x6c1d7dc6 rtl8366_vlan_del -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x73fa139f rtl8366_get_ethtool_stats -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x7d7c77b0 rtl8366_set_vlan -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xa3c4b806 rtl8366_enable_vlan4k -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xbbc3b0ce rtl8366_get_strings -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xc1354fe9 rtl8366rb_variant -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xcb11d0ff rtl8366_set_pvid -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xcde1ab7b rtl8366_mc_is_used -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xe37e39b5 rtl8366_vlan_add -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xeec0f7bb rtl8366_get_sset_count -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xf6535d36 rtl8366_reset_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/arc/arc_emac 0x9794c999 arc_emac_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/arc/arc_emac 0x9b82412d arc_emac_probe -EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-mdio 0x505860ca enetc_hw_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-mdio 0x874e6051 enetc_mdio_write -EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-mdio 0xc6122983 enetc_mdio_read -EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-mdio 0xd9d61d6f enetc_mdio_lock -EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-ptp 0x5431a304 enetc_phc_index -EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/i40e/i40e 0x3759f9ce i40e_client_device_unregister -EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/i40e/i40e 0x41c0f0c2 i40e_client_device_register -EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0x139c47bf ice_add_rdma_qset -EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0x2a194669 ice_get_qos_params -EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0x30ec9d7b ice_del_rdma_qset -EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0xa8b3b416 ice_rdma_update_vsi_filter -EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0xe8e9abb4 ice_rdma_request_reset -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0096c9e1 mlx4_find_cached_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x05a83e17 mlx4_cq_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0e4d901d mlx4_bond -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0e647e80 mlx4_mw_enable -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1357cc24 mlx4_uar_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x15af41c9 mlx4_set_vf_spoofchk -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x163f3735 mlx4_hw_rule_sz -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x19369dd7 mlx4_register_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x206a597c mlx4_config_dev_retrieval -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2374bd86 mlx4_unicast_promisc_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x23a003bb mlx4_db_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x240e4d2a mlx4_cq_resize -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x29b31d8a mlx4_free_hwq_res -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2a3c937a mlx4_map_sw_to_hw_steering_id -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2d35203e mlx4_INIT_PORT -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2fb88024 mlx4_register_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x30831d8e mlx4_srq_query -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x34022a41 mlx4_unregister_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x364065ee mlx4_mtt_init -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3674c712 mlx4_srq_lookup -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3a5d436a mlx4_bf_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3eff26a9 mlx4_mr_rereg_mem_cleanup -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3f17b27b mlx4_multicast_detach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x41607b05 mlx4_wol_read -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x43c0c08e mlx4_mtt_addr -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4543d3e3 mlx4_slave_convert_port -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x481e101d mlx4_srq_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x49454b83 mlx4_SYNC_TPT -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4bcfd715 mlx4_qp_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x50600ec5 mlx4_replace_zero_macs -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x50af6023 mlx4_get_active_ports -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x50b67eeb mlx4_unregister_interface -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x53842706 mlx4_pd_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x55088839 mlx4_set_vf_rate -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x556e25a4 mlx4_get_protocol_dev -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x59887b6b mlx4_qp_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5a8dfb52 mlx4_get_base_gid_ix -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5edaac56 mlx4_get_slave_default_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x602f8e8f mlx4_mw_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6131f180 mlx4_qp_query -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x61411e29 mlx4_alloc_hwq_res -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x625e6dc5 mlx4_flow_steer_promisc_add -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6367ff3c mlx4_buf_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6530f4bc mlx4_phys_to_slave_port -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6539c6ff mlx4_buf_write_mtt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x687cb53c mlx4_vf_get_enable_smi_admin -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x68b40ce6 mlx4_get_devlink_port -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6ddf5ca7 mlx4_mr_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x70988ed1 mlx4_phys_to_slaves_pport_actv -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x70ba9d1a mlx4_mr_rereg_mem_write -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x729dbfe1 mlx4_mr_enable -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x73aa3d2a mlx4_srq_arm -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7408e55b mlx4_get_admin_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x781eba90 mlx4_set_vf_link_state -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7a006b5c mlx4_unicast_detach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7a4c9bea __mlx4_unregister_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7f43256e mlx4_xrcd_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7fc0761f mlx4_CLOSE_PORT -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8150aadc __mlx4_replace_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x81a1536f mlx4_mtt_cleanup -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x845cec09 mlx4_port_map_set -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x883e2166 mlx4_vf_smi_enabled -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8bcef92a mlx4_qp_reserve_range -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8d4e5e22 mlx4_cq_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x90ede008 mlx4_flow_steer_promisc_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x91493695 mlx4_mr_hw_put_mpt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x92873b27 mlx4_pd_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x92985ba9 mlx4_vf_set_enable_smi_admin -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x93fbcb06 mlx4_unregister_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x94f3b0b2 mlx4_phys_to_slaves_pport -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x97200a89 mlx4_get_vf_config -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x985be16f mlx4_set_vf_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9b75a6cd mlx4_free_cmd_mailbox -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9e7b39a5 mlx4_config_roce_v2_port -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa0648e57 mlx4_mr_hw_change_access -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa4660603 mlx4_qp_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa735eab2 mlx4_mr_hw_write_mpt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xaa62ba35 mlx4_get_base_qpn -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb33f6b8d mlx4_qp_release_range -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb9a602a5 mlx4_config_vxlan_port -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbd62fcd8 mlx4_multicast_attach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbe280ef6 mlx4_ACCESS_PTYS_REG -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbedd1bd3 mlx4_multicast_promisc_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbfdf5494 mlx4_multicast_promisc_add -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc2fea64a mlx4_find_cached_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc3bd2d2c mlx4_flow_detach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc3efce27 mlx4_get_internal_clock_params -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc4dda81b mlx4_get_counter_stats -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc55ceda6 mlx4_mr_hw_get_mpt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc6ae4e9c mlx4_xrcd_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc701930d mlx4_write_mtt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc71338e7 mlx4_read_clock -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc732e589 mlx4_bf_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc9138650 mlx4_register_interface -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xca8c4505 mlx4_mr_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd14866a7 mlx4_counter_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd61d858f mlx4_unicast_attach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd78ceacd mlx4_set_vf_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd890a10e __mlx4_register_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd93faa6c mlx4_set_admin_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xde7a4b0b mlx4_unicast_promisc_add -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe0b9ad62 mlx4_qp_to_ready -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe0fae352 mlx4_wol_write -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe1447f8e mlx4_alloc_cmd_mailbox -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe21f16ad mlx4_qp_modify -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe584ad1a mlx4_FLOW_STEERING_IB_UC_QP_RANGE -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe648bcb6 mlx4_counter_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe67272a2 __mlx4_cmd -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe68322d2 mlx4_unbond -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe831a7df mlx4_cq_modify -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xea18b725 mlx4_srq_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xea9f53fb mlx4_mr_hw_change_pd -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xed162bf5 mlx4_mw_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xef395017 mlx4_buf_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf100dfaa mlx4_flow_attach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf15aa761 mlx4_uar_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf248c054 mlx4_get_vf_stats -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf49a7d47 mlx4_db_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf64b4d5b mlx4_map_sw_to_hw_steering_mode -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfd7fd1e3 mlx4_update_qp -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfea308ad mlx4_get_default_counter_index -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 0x07a61f5f mlx5_set_port_mtu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0ae42b70 mlx5_query_nic_vport_mac_address -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x13695c3d mlx5_query_nic_vport_node_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x13eec72f mlx5_query_port_pause -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1576d873 mlx5_query_port_prio_tc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x15ee3f66 mlx5_query_min_inline -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x15f4d1ae mlx5_query_nic_vport_promisc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1ec71f84 mlx5_query_port_max_mtu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x271134d2 mlx5_query_mac_address -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x28e7cb20 mlx5_buf_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3b3fdb50 mlx5_query_port_oper_mtu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3cf0fc47 mlx5_eswitch_mode -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4330e85a mlx5_nic_vport_query_local_lb -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x454839e8 mlx5_accel_esp_modify_xfrm -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4f17df6e mlx5_core_modify_hca_vport_context -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5117a73a mlx5_query_module_eeprom_by_page -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5226ecd3 mlx5_nic_vport_enable_roce -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x56dadec2 mlx5_query_port_admin_status -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x618d790f mlx5_eswitch_get_total_vports -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x64e04110 mlx5_query_hca_vport_pkey -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6c3efb05 mlx5_query_port_tc_bw_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x71ff5286 mlx5_db_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7640d248 mlx5_query_nic_vport_mtu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7c12d67a mlx5_query_nic_vport_mac_list -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x806e4c97 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 0x84cf1369 mlx5_modify_nic_vport_promisc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x85ffd502 mlx5_query_hca_vport_gid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8641cc47 mlx5_query_port_ptys -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x88a6b12c mlx5_core_query_vport_counter -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8d43d64c mlx5_query_hca_vport_system_image_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8d5eaa04 mlx5_query_nic_vport_system_image_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8d8d576b mlx5_frag_buf_alloc_node -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8e018d19 mlx5_query_port_vl_hw_cap -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9244ead2 mlx5_query_nic_vport_min_inline -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x942b2149 mlx5_set_port_pfc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9ef4d96a mlx5_query_port_wol -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa4e9e0ea mlx5_core_query_sq_state -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa5780f01 mlx5_core_query_ib_ppcnt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa5bde9b1 mlx5_set_port_admin_status -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa7477eb5 mlx5_query_hca_vport_node_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 0xa991f7d0 mlx5_query_port_ets_rate_limit -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xae524410 mlx5_accel_ipsec_device_caps -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb039cef8 mlx5_modify_port_ets_rate_limit -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb0883e87 mlx5_set_port_tc_group -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb159396f mlx5_set_port_pause -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb3ad76ff mlx5_modify_nic_vport_mac_address -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb752f929 mlx5_nic_vport_update_local_lb -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb7d09fe1 mlx5_query_hca_vport_context -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb8a982ad mlx5_toggle_port_link -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xba8631f9 mlx5_accel_esp_destroy_xfrm -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbd670aa3 mlx5_db_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbdb8efc0 mlx5_set_port_caps -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbf93b726 mlx5_modify_nic_vport_vlans -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc0ae6c6f mlx5_core_access_reg -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc6a7cd2e mlx5_core_reserved_gids_count -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcbc883f4 mlx5_query_nic_vport_qkey_viol_cntr -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xccf89c34 mlx5_set_port_tc_bw_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd608625c mlx5_set_port_wol -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd821148c mlx5_set_port_prio_tc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdaa7ebcf mlx5_dm_sw_icm_dealloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdad24c0b mlx5_query_nic_system_image_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdd8889b5 mlx5_dm_sw_icm_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe2ae91c0 mlx5_frag_buf_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe3dd360a mlx5_nic_vport_affiliate_multiport -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe889a975 mlx5_db_alloc_node -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe90d99c7 mlx5_query_port_pfc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xee8834ea mlx5_modify_nic_vport_mac_list -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xef168e7b mlx5_query_module_eeprom -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xef8c5a24 mlx5_modify_nic_vport_mtu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf21c3e4f mlx5_accel_esp_create_xfrm -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf7bcc2ea mlx5_query_port_tc_group -EXPORT_SYMBOL_GPL drivers/net/ethernet/micrel/ks8851_common 0x2744d1fb ks8851_resume -EXPORT_SYMBOL_GPL drivers/net/ethernet/micrel/ks8851_common 0x99357ae1 ks8851_remove_common -EXPORT_SYMBOL_GPL drivers/net/ethernet/micrel/ks8851_common 0x9bbd486f ks8851_suspend -EXPORT_SYMBOL_GPL drivers/net/ethernet/micrel/ks8851_common 0xe4cca586 ks8851_probe_common -EXPORT_SYMBOL_GPL drivers/net/ethernet/microchip/encx24j600-regmap 0x14a56f8e 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 0x024d7281 ocelot_cls_flower_stats -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x1b1ee86b __ocelot_rmw_ix -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x1d9d34e1 __ocelot_read_ix -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x1e393bd2 __ocelot_write_ix -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x3fe8b5e5 ocelot_cls_flower_destroy -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x4d9a62b1 ocelot_phylink_mac_link_up -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x5900d490 ocelot_cls_flower_replace -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x88fc6285 ocelot_port_readl -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xa454dfca ocelot_regmap_init -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xa5abefd2 ocelot_phylink_mac_link_down -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xcf9e6f17 ocelot_port_writel -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xd16f816b ocelot_port_rmwl -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xda88a911 ocelot_regfields_init -EXPORT_SYMBOL_GPL drivers/net/ethernet/qualcomm/qca_7k_common 0x0b28a9ad qcafrm_create_footer -EXPORT_SYMBOL_GPL drivers/net/ethernet/qualcomm/qca_7k_common 0x2b6ddf3f qcafrm_fsm_decode -EXPORT_SYMBOL_GPL drivers/net/ethernet/qualcomm/qca_7k_common 0x41da0375 qcafrm_create_header -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x7f2846cf stmmac_suspend -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x8c087e90 stmmac_resume -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x8e5d8f98 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 0xb1d21d4b stmmac_init_tstamp_counter -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0xcb657232 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 0xf24e42c4 stmmac_bus_clks_config -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x5831091a stmmac_probe_config_dt -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x7e59ae85 stmmac_remove_config_dt -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0xa094b87f stmmac_pltfr_pm_ops -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0xa530b799 stmmac_pltfr_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0xbea1ec06 stmmac_get_platform_resources -EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/am65-cpts 0x405b51c2 am65_cpts_ns_gettime -EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/am65-cpts 0x49aa2485 am65_cpts_tx_timestamp -EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/am65-cpts 0x4af3b6b7 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 0xee7b87ad 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 0x332c7d5f w5100_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0x8b2c5fa7 w5100_probe -EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0xa95a7674 w5100_ops_priv -EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0xdd919f03 w5100_pm_ops -EXPORT_SYMBOL_GPL drivers/net/geneve 0x81be045b geneve_dev_create_fb -EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0xaded47c7 ipvlan_count_rx -EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0xb1f203f5 ipvlan_link_setup -EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0xb9c20dfa ipvlan_link_delete -EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0xd91b73fe ipvlan_link_new -EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0xdb5365ff ipvlan_link_register -EXPORT_SYMBOL_GPL drivers/net/macsec 0x2beaeeb8 macsec_pn_wrapped -EXPORT_SYMBOL_GPL drivers/net/macvlan 0x0e6ee5d1 macvlan_link_register -EXPORT_SYMBOL_GPL drivers/net/macvlan 0x76c91563 macvlan_common_newlink -EXPORT_SYMBOL_GPL drivers/net/macvlan 0xa97bad96 macvlan_dellink -EXPORT_SYMBOL_GPL drivers/net/macvlan 0xbe8cd5cf macvlan_common_setup -EXPORT_SYMBOL_GPL drivers/net/mdio/mdio-i2c 0xd2833754 mdio_i2c_alloc -EXPORT_SYMBOL_GPL drivers/net/net_failover 0x5cd25595 net_failover_destroy -EXPORT_SYMBOL_GPL drivers/net/net_failover 0xbb095838 net_failover_create -EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0x2763d280 xpcs_do_config -EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0x40aaba0d xpcs_destroy -EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0x5e05347d xpcs_create -EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0xa8cd7680 xpcs_validate -EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0xb86a6558 xpcs_config_eee -EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0xc08ccbc3 xpcs_get_an_mode -EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0xe05362b0 xpcs_link_up -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x05739526 bcm_phy_read_exp -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x0f0eeef5 bcm_phy_enable_jumbo -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x18bb1a35 bcm_phy_read_rdb -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x1d819ef8 bcm_phy_write_misc -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x24b2927b bcm_phy_read_misc -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x2738d61a bcm_phy_cable_test_start -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x2c30b452 bcm_phy_write_shadow -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x3054413d bcm_phy_enable_apd -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x35e6a50f bcm_phy_get_strings -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x39ffb166 bcm_phy_downshift_get -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x3af1d260 bcm_phy_get_sset_count -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x420edda7 bcm_phy_modify_rdb -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x51ea2c1e bcm_phy_downshift_set -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x6e81cdee __bcm_phy_modify_rdb -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x88aa27cb bcm_phy_r_rc_cal_reset -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x90aff42e bcm_phy_cable_test_get_status_rdb -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x98ce9109 bcm_phy_get_stats -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xa1c34444 __bcm_phy_read_exp -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xa68d3c19 bcm_phy_cable_test_start_rdb -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xb3076450 bcm_phy_read_shadow -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xb5b1e7c1 bcm_phy_cable_test_get_status -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xbc0bcb57 __bcm_phy_read_rdb -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xc7f9d8c8 __bcm_phy_modify_exp -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xcb850a1a __bcm_phy_write_rdb -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xcd3716b8 bcm_phy_ack_intr -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xcdf3bfa6 bcm_phy_write_exp -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xda76aba6 __bcm_phy_write_exp -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xdc001e1a bcm_phy_write_rdb -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xeb76c881 bcm_phy_modify_exp -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xec5693f6 bcm54xx_auxctl_read -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xee68a054 bcm_phy_28nm_a0b0_afe_config_init -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xf3fba173 bcm_phy_handle_interrupt -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xf51ad541 bcm_phy_set_eee -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xfd645320 bcm_phy_config_intr -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 0x13f9f0e3 phylink_mii_c22_pcs_set_advertisement -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 0x1cc887f8 phylink_mii_c22_pcs_get_state -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x1fefd400 phylink_create -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 0x62104126 phylink_ethtool_set_wol -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x6831eccf phylink_ethtool_ksettings_get -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x6cbb40a6 phylink_fwnode_phy_connect -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 0x84cafa1e phylink_connect_phy -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x911fcd6c phylink_start -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x983276da phylink_disconnect_phy -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x9ad6f36d phylink_decode_usxgmii_word -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xa74ea03e 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 0xc854402e phylink_mii_c22_pcs_an_restart -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xdb261872 phylink_mii_c45_pcs_get_state -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xdcb0a2c0 phylink_stop -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xde66f4a7 phylink_mii_ioctl -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xe8c137ed phylink_set_pcs -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xec02ebe0 phylink_init_eee -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xf3083a1d phylink_destroy -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xf81ab0d6 phylink_mii_c22_pcs_config -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xf8fe5642 phylink_ethtool_get_pauseparam -EXPORT_SYMBOL_GPL drivers/net/tap 0x004d832a tap_free_minor -EXPORT_SYMBOL_GPL drivers/net/tap 0x29c9f8ad tap_queue_resize -EXPORT_SYMBOL_GPL drivers/net/tap 0x5938ba1f tap_del_queues -EXPORT_SYMBOL_GPL drivers/net/tap 0x5c092036 tap_get_ptr_ring -EXPORT_SYMBOL_GPL drivers/net/tap 0x9dc6deb5 tap_get_socket -EXPORT_SYMBOL_GPL drivers/net/tap 0xa3d48992 tap_get_minor -EXPORT_SYMBOL_GPL drivers/net/tap 0xbe0c39af tap_destroy_cdev -EXPORT_SYMBOL_GPL drivers/net/tap 0xe41ce59a tap_handle_frame -EXPORT_SYMBOL_GPL drivers/net/tap 0xf8f3133a tap_create_cdev -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x0a16f6c6 usbnet_cdc_unbind -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x398c501e usbnet_cdc_update_filter -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x4ec96fc4 usbnet_cdc_bind -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x6de16031 usbnet_ether_cdc_bind -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x80da4007 usbnet_generic_cdc_bind -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xd3b7627e usbnet_cdc_status -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x0bb42fa9 cdc_ncm_rx_verify_ndp32 -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x20fa9001 cdc_ncm_rx_verify_nth32 -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x3c675adb cdc_ncm_rx_verify_nth16 -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x7cce4064 cdc_ncm_rx_verify_ndp16 -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x7e458790 cdc_ncm_select_altsetting -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x88a68a93 cdc_ncm_tx_fixup -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x9909239f cdc_ncm_bind_common -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x9eadb404 cdc_ncm_rx_fixup -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xa54daa96 cdc_ncm_unbind -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xb4855312 cdc_ncm_change_mtu -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xfa5b5699 cdc_ncm_fill_tx_frame -EXPORT_SYMBOL_GPL drivers/net/usb/r8152 0x987d53b2 rtl8152_get_version -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x20fed8e9 rndis_tx_fixup -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x26185486 rndis_rx_fixup -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x287ad501 rndis_unbind -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x2c2b2eb7 rndis_command -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x3ab3b213 rndis_status -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x7a5e86cb generic_rndis_bind -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x083bfb4f usbnet_get_drvinfo -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x0ba9f534 usbnet_write_cmd_async -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x0de52336 usbnet_set_msglevel -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x142f859d usbnet_write_cmd -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x2b4e2475 usbnet_set_rx_mode -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x2bc87d6e usbnet_pause_rx -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x3cb54a01 usbnet_purge_paused_rxq -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x437425ac usbnet_change_mtu -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x46b4457c usbnet_start_xmit -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x62d128e0 usbnet_write_cmd_nopm -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x6a5ded1b usbnet_status_stop -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x70bccdc8 usbnet_get_endpoints -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x73c776b0 usbnet_resume -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x7b6e1d0c usbnet_skb_return -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x7c50f74c usbnet_read_cmd_nopm -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x7e682ed0 usbnet_update_max_qlen -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x83955fb3 usbnet_get_link -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x8f7ac883 usbnet_open -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x9260ccff usbnet_tx_timeout -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xa0b0f167 usbnet_get_link_ksettings_internal -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xa73a8f47 usbnet_unlink_rx_urbs -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xaa56057d usbnet_probe -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xb047e6ab usbnet_suspend -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xb0a8c5a8 usbnet_get_link_ksettings_mii -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xb5b0fe81 usbnet_set_link_ksettings_mii -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xc272f27a usbnet_defer_kevent -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xd41db8f5 usbnet_resume_rx -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xd725d8f2 usbnet_get_ethernet_addr -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xde91697a usbnet_stop -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xe7a91d44 usbnet_status_start -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xf467b54f usbnet_read_cmd -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xf5d14acb usbnet_disconnect -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xf636fa65 usbnet_get_msglevel -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xfa3ee4e0 usbnet_nway_reset -EXPORT_SYMBOL_GPL drivers/net/vxlan/vxlan 0x5d4fbc47 vxlan_dev_create -EXPORT_SYMBOL_GPL drivers/net/vxlan/vxlan 0x6ea9b2a5 vxlan_fdb_clear_offload -EXPORT_SYMBOL_GPL drivers/net/vxlan/vxlan 0xbbcadd20 vxlan_fdb_find_uc -EXPORT_SYMBOL_GPL drivers/net/vxlan/vxlan 0xd2e8e4fa vxlan_fdb_replay -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/ipw2x00/libipw 0x90442438 libipw_rx_any -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x8e7cb74a il_mac_tx_last_beacon -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xac5da772 il_remove_station -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xbc15fecc il_prep_station -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd29f8937 _il_grab_nic_access -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xdbc329c1 il_dealloc_bcast_stations -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x01125446 iwl_sar_geo_support -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x01ee726e iwl_sar_geo_init -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x03dba9c4 iwl_finish_nic_init -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x0902df42 iwl_write64 -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x0c25b4f2 iwl_sar_get_ewrd_table -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x0d9ab4b9 iwl_write_direct32 -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x112010a1 iwl_set_bits_mask_prph -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x126c8d78 iwl_read_prph -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x1332e4de iwl_abort_notification_waits -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x1780e66c __iwl_dbg -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x1a7128e4 iwl_get_shared_mem_conf -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x1c0fdee1 iwl_pnvm_load -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x210cf412 iwl_read_eeprom -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x2710c362 iwl_dump_desc_assert -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x29347e3b iwl_fw_dbg_collect_desc -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x2a559548 iwl_acpi_get_wifi_pkg -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x2acb0626 iwl_fw_dbg_collect -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x2b210e26 iwl_fw_runtime_suspend -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x2e263604 iwl_write8 -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x2e9a89bb iwl_write_prph_no_grab -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x2ff95794 iwl_acpi_get_lari_config_bitmap -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x30541dfd iwl_dbg_tlv_del_timers -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x321d336a iwl_clear_bits_prph -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x35033c81 iwl_phy_db_free -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x382550a9 iwl_set_soc_latency -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x389514b4 iwl_acpi_get_dsm_u32 -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x3af96c66 iwl_parse_nvm_mcc_info -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x3c4ac4a2 iwl_fw_runtime_resume -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x3d558069 iwl_acpi_get_mcc -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x46675b43 iwl_fw_start_dbg_conf -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x494f2e32 iwl_fw_dbg_collect_trig -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x4d09ff54 iwl_acpi_get_eckv -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x5229d541 iwl_read_external_nvm -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 0x59ac7ddf iwl_set_bits_prph -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x5c52e109 iwl_opmode_deregister -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x5f914d7c iwl_read_direct32 -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x638e08e2 iwl_write_prph_delay -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x688b5562 iwl_force_nmi -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x6b72a85e iwl_acpi_get_pwr_limit -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x6db806d7 iwl_trans_send_cmd -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x6edbdae9 iwl_write_prph64_no_grab -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x714f03ca iwl_acpi_get_dsm_u8 -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x776221bf iwl_send_phy_db_data -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x7c1eb539 iwl_parse_nvm_data -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x7d008a20 iwl_fw_dbg_stop_sync -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x82a10139 iwl_cmd_groups_verify_sorted -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x862933dc __iwl_crit -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x8cd2f16c iwl_fw_lookup_notif_ver -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x9038811a iwl_rfi_guid -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x92549816 iwl_opmode_register -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x98ca88db iwl_phy_db_init -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x9a59f4a0 iwl_fwrt_dump_error_logs -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x9e708700 iwl_sar_select_profile -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xa01ac2a7 iwl_sar_get_wgds_table -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xa0afe1b5 iwl_write_direct64 -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xa4378a4e iwl_write32 -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xa877285f iwl_acpi_get_object -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xa9f05394 iwlwifi_mod_params -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xac8c2e87 iwl_free_fw_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 0xb38ab4a3 __iwl_warn -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xb741b03c iwl_sar_get_wrds_table -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xb83dd8ca iwl_fw_dbg_read_d3_debug_data -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xb83fba2b _iwl_dbg_tlv_time_point -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xbafc8994 iwl_wait_notification -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xca77349f iwl_read_prph_no_grab -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xce0c6460 iwl_phy_db_set_section -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xd18d6429 iwl_parse_eeprom_data -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xd43a5688 __iwl_info -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xd57edd17 iwl_fw_dbg_error_collect -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xd9e9eabd iwl_poll_direct_bit -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xdc08161c iwl_poll_bit -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xde6e31ef iwl_read32 -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 0xeab19c16 iwl_fw_runtime_init -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xf0602c5b iwl_get_nvm -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xf1a665a5 iwl_init_paging -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xf566b553 __iwl_err -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xf88964e4 iwl_remove_notification -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xf8ae3e02 iwl_configure_rxq -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xfaa85bfd iwl_fw_dbg_stop_restart_recording -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xfb615ac5 iwl_get_cmd_string -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xfc1e6f41 iwl_guid -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xfe6c2454 iwl_acpi_get_tas -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x00917aae p54_unregister_common -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x1db7fe77 p54_rx -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x40c0d850 p54_free_common -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x57322a23 p54_parse_eeprom -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x5a73be0f p54_read_eeprom -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xbfeb37bc p54_parse_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xdc711be1 p54_init_common -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xe90c8c1d p54_free_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xea030942 p54_register_common -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x01df2d09 lbs_send_tx_feedback -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x045ac713 lbs_notify_command_response -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x18ddddbd lbs_get_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x26b7affb lbs_remove_card -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x28df466f lbs_get_firmware_async -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x2e8c95a2 lbs_start_card -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x408b7169 lbs_add_card -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x40ae42a1 __lbs_cmd -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x5f31e562 lbs_process_rxed_packet -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x5fdf38b8 lbs_disablemesh -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x9b59c0c0 lbs_resume -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xa522eee9 lbs_host_sleep_cfg -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xacdada81 lbs_cmd_copyback -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xd22e41e8 lbs_queue_event -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xd4eb1992 lbs_stop_card -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xdd507fab 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/libertas 0xfce74a5b lbs_suspend -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x1925bd11 lbtf_remove_card -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x2e9b91b9 lbtf_rx -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x36cd5ad4 lbtf_add_card -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x90714353 lbtf_bcn_sent -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x91c44224 lbtf_cmd_copyback -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x9b3e68e9 lbtf_cmd_response_rx -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0xa60f3f74 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 0xf09b3bef __lbtf_cmd -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x0def1547 mwifiex_write_data_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x0e123a59 mwifiex_init_shutdown_fw -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x10b7c9bb mwifiex_prepare_fw_dump_info -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x111d96b0 mwifiex_fw_dump_event -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x47eba835 mwifiex_process_hs_config -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x4ef05ae1 mwifiex_reinit_sw -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x5b12dd82 mwifiex_remove_card -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x6cb7e97f mwifiex_add_card -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x6fb5dc24 mwifiex_queue_main_work -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x76dba3b5 mwifiex_enable_hs -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x7af8f7ef mwifiex_main_process -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x7da1c64e _mwifiex_dbg -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xa025822c mwifiex_upload_device_dump -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xa333910e mwifiex_drv_info_dump -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xa6487c14 mwifiex_shutdown_sw -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xa9aba4b7 mwifiex_add_virtual_intf -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xad6fbb48 mwifiex_dnld_fw -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xb2c5893c mwifiex_multi_chan_resync -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xb83a2fe4 mwifiex_del_virtual_intf -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xd4dad9f3 mwifiex_alloc_dma_align_buf -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xd8490d80 mwifiex_handle_rx_packet -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xe349a8b0 mwifiex_disable_auto_ds -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xf50982ab mwifiex_process_sleep_confirm_resp -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xfabc77db mwifiex_deauthenticate_all -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xfe299cea mwifiex_cancel_hs -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x0456516d mt76_mmio_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x06eac94b mt76_pci_disable_aspm -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x0964130f mt76_dma_rx_poll -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x0a6bd29c mt76_free_device -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x0aab3894 mt76_tx_check_agg_ssn -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x15e08b2b mt76_init_sar_power -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x179d0266 __mt76_set_tx_blocked -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 0x274e5e47 mt76_tx_status_skb_get -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x29e06169 mt76_tx_worker_run -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x2ce0cdc0 ____mt76_poll_msec -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x2ed83606 mt76_tx_status_check -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x339290a6 mt76_insert_ccmp_hdr -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x357a33d1 mt76_register_debugfs_fops -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x37a6e0f9 mt76_txq_schedule -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x3ca3c408 mt76_set_tim -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x3e9d69a4 mt76_init_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x3f3518c5 mt76_get_txpower -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x42e6380d __mt76_poll -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x46107d2e mt76_stop_tx_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x48b02cb0 mt76_tx_status_skb_add -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x4a860f7e mt76_get_antenna -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x4b11a0d8 mt76_set_irq_mask -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x4be1e0e6 mt76_eeprom_override -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x4ceb5131 mt76_update_survey_active_time -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x5d1b4e42 __tracepoint_mac_txdone -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x6046ac5b mt76_release_buffered_frames -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x606cc774 mt76_dma_attach -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x665d3cde mt76_csa_check -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x6a5b8b68 mt76_skb_adjust_pad -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x705ce5dc mt76_set_stream_caps -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x7432c037 __mt76_tx_complete_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x7d27fe3d mt76_sw_scan_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x7f91038b mt76_txq_schedule_all -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x802255a9 mt76_wake_tx_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x805fc13a __SCK__tp_func_dev_irq -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x81f642cb mt76_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x82ab4f11 __mt76_sta_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x8384388b mt76_mcu_get_response -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x84947199 mt76_token_consume -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x87172661 mt76_eeprom_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x8749f477 mt76_tx_status_lock -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x891bb52b mt76_register_phy -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x8ebf24f3 mt76_rx_poll_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x91289ddc mt76_mcu_send_and_get_msg -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x91ae9897 mt76_unregister_device -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x927e591e mt76_sta_pre_rcu_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x949150f8 mt76_get_sar_power -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x9669c0cb mt76_sta_state -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x9a5471af mt76_sar_capa -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xa3bde078 mt76_rx_aggr_start -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xa3d8ead7 mt76_alloc_device -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xa76f28c7 mt76_register_device -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xaca1761a mt76_rx_aggr_stop -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xaed0a9b5 mt76_get_rate_power_limits -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xaf4f671f mt76_sw_scan -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xaffa76f5 mt76_mcu_send_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xbae255f9 mt76_dma_cleanup -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xc2a421f7 mt76_rx -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xc56bc98a mt76_queues_read -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xc6135496 mt76_unregister_phy -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 0xc6f3eb14 mt76_get_min_avg_rssi -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xcc359ec2 mt76_set_channel -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xd012ee19 mt76_get_survey -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xd025bb50 mt76_tx_status_skb_done -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xd0ba31d6 mt76_put_txwi -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xd50d7361 mt76_queue_tx_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xdc1a0cea mt76_tx_status_unlock -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xdc27df7d mt76_mcu_rx_event -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xe1179695 mt76_alloc_phy -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xe40b66ef mt76_wcid_alloc -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xe4f624dc __traceiter_mac_txdone -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xe6e61a95 mt76_get_of_eeprom -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xe7210d3d mt76_update_survey -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xefc8d13b mt76_seq_puts_array -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xf123b189 __traceiter_dev_irq -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xf4f49879 mt76_has_tx_pending -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xf53de14f mt76_get_rate -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xf540dd92 mt76_token_release -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xf9fafb22 mt76_csa_finish -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xfbf5ece6 mt76_mcu_msg_alloc -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xfeb000d6 mt76_mcu_skb_send_and_get_msg -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x0525d8dc mt76_connac_mcu_set_channel_domain -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x08c97006 mt76_connac_mcu_uni_add_dev -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x0e1c8eb9 mt76_connac_mcu_set_suspend_iter -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x11b2a2d1 mt76_connac_mcu_patch_sem_ctrl -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x13e5459a mt76_connac_mcu_init_download -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x1a8ffc2d mt76_connac_mcu_start_patch -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x204bdb8d mt76_connac_mcu_update_gtk_rekey -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x21aa7cfa mt76_connac_mcu_get_nic_capability -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x26904176 mt76_connac_mcu_alloc_sta_req -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x2a15e4bc mt76_connac_mcu_update_arp_filter -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x2fa34c0e mt76_connac_mcu_set_deep_sleep -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x31943b85 mt76_connac_mcu_wtbl_generic_tlv -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x34277580 mt76_connac_mcu_sta_tlv -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x3ef3ce18 mt76_connac_mcu_chip_config -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x4792aa48 mt76_connac_pm_wake -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x47eae927 mt76_connac_mcu_sched_scan_req -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x48d8ef7a mt76_connac_mcu_hw_scan -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x4a3ea3ac mt76_connac_pm_queue_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x4d1d9e4f mt76_connac_mcu_set_hif_suspend -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x4e585a04 mt76_connac_mcu_coredump_event -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x6bd07399 mt76_connac_mcu_start_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x6f980824 mt76_connac_mcu_cancel_hw_scan -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x7c599669 mt76_connac_mcu_wtbl_hdr_trans_tlv -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x81ad2fcf 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 0x9191890a mt76_connac_sta_state_dp -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x95541f66 mt76_connac_mcu_wtbl_ht_tlv -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x9e898e03 mt76_connac_power_save_sched -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x9ed49c56 mt76_connac_mcu_uni_add_bss -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xa37d3dfb mt76_connac_mcu_sta_ba_tlv -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xa6250b70 mt76_connac_mcu_sched_scan_enable -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xa8132872 mt76_connac_free_pending_tx_skbs -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xae5e60ca mt76_connac_mcu_set_rts_thresh -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xaf2c2fd2 mt76_connac_mcu_set_vif_ps -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xb844cb21 mt76_connac_mcu_beacon_loss_iter -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xbb41e1be mt76_connac_mcu_sta_cmd -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xcccacb5c mt76_connac_mcu_sta_basic_tlv -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xd59af241 mt76_connac_mcu_set_mac_enable -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xdb03268a mt76_connac_mcu_sta_ba -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xdf9a7d34 mt76_connac_pm_dequeue_skbs -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xec9a086a mt76_connac_mcu_sta_update_hdr_trans -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xf7ce4e18 mt76_connac_mcu_wtbl_ba_tlv -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xfe377411 mt76_connac_mcu_add_nested_tlv -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xfe65e006 mt76_connac_mcu_alloc_wtbl_req -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x2bd6bcfa mt76s_deinit -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0xb9fbb53a mt76s_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0xdded7170 mt76s_alloc_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x0b74fa85 mt76u_stop_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x210572d0 mt76u_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x2d47faa6 mt76u_queues_deinit -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x3cc55445 mt76u_vendor_request -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x42013b7c mt76u_resume_rx -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x4be7b88e mt76u_single_wr -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x9d1400bd mt76u_stop_rx -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xcf8bd587 mt76u_alloc_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xf3eb3a57 mt76u_alloc_mcu_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x114efceb mt7615_thermal_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x1be0ae4a mt7615_init_work -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x233f6c03 mt7615_mac_set_rates -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x2b2bad83 mt7615_register_ext_phy -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x300eba2c mt7615_mcu_parse_response -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x31d685c4 mt7615_ops -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x35cd50ac mt7615_mcu_reg_wr -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x3da0b8b2 mt7615_unregister_ext_phy -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x3fe09bd1 mt7615_mcu_fill_msg -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x50fd9e6d __mt7663_load_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x62c84c3a mt7615_eeprom_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x6a0d3d07 mt7615_sta_ps -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x731c555a mt7615_mcu_reg_rr -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x7976025e mt7615_mac_sta_poll -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xa27f80a0 mt7615_init_txpower -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xa5fbedb2 mt7622_trigger_hif_int -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xb139da91 mt7615_mac_sta_add -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xb78d7009 mt7615_mcu_exit -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xba3f4d2c mt7615_init_debugfs -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xc1ca120d mt7615_mac_write_txwi -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xc2e3a699 mt7615_mcu_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xc77902e6 mt7615_tx_token_put -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xca4a1701 mt7615_init_device -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xd713a349 mt7615_txp_skb_unmap -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xd73155af mt7615_mcu_restart -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xe69d5f6d mt7615_wait_for_mcu_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xf125fe7c mt7615_queue_rx_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xfaa4d167 mt7615_update_channel -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xfbb56f37 mt7615_mac_sta_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615e 0x61b20042 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 0x46fc6f12 mt7663_usb_sdio_tx_prepare_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7663-usb-sdio-common 0x6de9b480 mt7663_usb_sdio_tx_status_data -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7663-usb-sdio-common 0x84c831a9 mt7663_usb_sdio_tx_complete_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7663-usb-sdio-common 0xa76f8a37 mt7663_usb_sdio_register_device -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x194f81b4 mt76x0_register_device -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x72718ec9 mt76x0_phy_calibrate -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x938aad30 mt76x0_init_hardware -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x948cb24c mt76x0_config -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0xf1d41822 mt76x0_mac_stop -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0xfead2014 mt76x0_chip_onoff -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x033449d3 mt76x02_phy_set_bw -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x036292d1 mt76x02_sw_scan_complete -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 0x07f5d754 mt76x02_tx_complete_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x0878bc35 mt76x02_phy_adjust_vga_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 0x0e13cede mt76x02_mac_write_txwi -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x0e64977a mt76x02_phy_set_txdac -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x18b02136 mt76x02_eeprom_copy -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x1b640e09 mt76x02_mcu_calibrate -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x1ca8ae8c mt76x02_mac_wcid_setup -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x1f96112b mt76x02_remove_hdr_pad -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x22b59e7d mt76x02_conf_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x27e1eca7 mt76x02_eeprom_parse_hw_cap -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x2cde03e1 mt76x02_get_efuse_data -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x32494151 mt76x02_set_rts_threshold -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 0x3a15f2a8 mt76x02_phy_dfs_adjust_agc -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x40337ee5 mt76x02_sta_ps -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x4576d1f8 mt76x02_tx_set_txpwr_auto -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x46aeab16 mt76x02_reconfig_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x5287c057 mt76x02_set_ethtool_fwver -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x565c1f7e mt76x02_phy_set_txpower -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x5a313d7d mt76x02_phy_set_rxpath -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x5ae0886b mt76x02_ampdu_action -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x5bd84fd5 mt76x02_rates -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x5e839390 mt76x02_get_rx_gain -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x6543dd43 mt76x02_dma_disable -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x6cac0688 mt76x02_edcca_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x7187a5c6 mt76x02_phy_set_band -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x72bbd8d6 mt76x02_mac_reset_counters -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x7ecfcf07 mt76x02_mac_cc_reset -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x8459ce4b mt76x02_sta_add -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x8902d9d1 mt76x02_mcu_cleanup -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x89cb0247 mt76x02_sta_rate_tbl_update -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x91d5b9ee mt76x02_irq_handler -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x955fd55f mt76x02_enqueue_buffered_bc -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x9dc63d33 mt76x02_bss_info_changed -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xa30bf16d mt76x02_init_device -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xa51517bd mt76x02_add_interface -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xa75849b3 mt76x02_init_beacon_config -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xa76fa171 mt76x02_rx_poll_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xade1238b mt76x02_sta_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xb2221a34 mt76x02_get_lna_gain -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xb487bea2 mt76x02_mcu_msg_send -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xb84f49e1 mt76x02_set_tx_ackto -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xb8a44df9 mt76x02_init_agc_gain -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xbcd3e5ed mt76x02_config_mac_addr_list -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xbdcae0a4 mt76x02e_init_beacon_config -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xbfda9ceb mt76x02_update_channel -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xc21b3722 mt76x02_mcu_parse_response -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xc38b09b2 mt76x02_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xc5732828 mt76x02_configure_filter -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xc6751f27 mt76x02_ext_pa_enabled -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xcc6f7b57 mt76x02_resync_beacon_timer -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xd11d0464 mt76x02_update_beacon_iter -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xd183268a mt76x02_mcu_function_select -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xd67080fa mt76x02_mac_set_beacon -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xd6a02933 mt76x02_mac_setaddr -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xdb131270 mt76x02_set_key -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xdc1275eb mt76x02_init_debugfs -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xdda7c952 mt76x02_queue_rx_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xe3cc2f9a mt76x02_tx_prepare_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xe65fd1d8 mt76x02_set_coverage_class -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xe8588d5e mt76x02_dma_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xebcd86bf mt76x02_mac_shared_key_setup -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xef00893a mt76x02_mcu_set_radio_state -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xf0f04420 mt76x02_tx_status_data -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xf4b04cbc mt76x02_dfs_init_params -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xf55de133 mt76x02_remove_interface -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xfdec5f78 mt76x02_mac_start -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x099dbc75 mt76x02u_tx_complete_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x40703c3d mt76x02u_init_beacon_config -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x5c825c65 mt76x02u_init_mcu -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x5def7b1c mt76x02u_mcu_fw_send_data -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x9023c237 mt76x02u_tx_prepare_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0xbb6122f5 mt76x02u_mcu_fw_reset -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0xca300db3 mt76x02u_mac_start -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0xe8b71a27 mt76x02u_exit_beacon_config -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x106d659e mt76x2_mcu_tssi_comp -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x2c702f32 mt76x2_get_temp_comp -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x344a15dd mt76x2_read_rx_gain -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x431b8705 mt76x2_mac_stop -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x4cec60da mt76x2_phy_set_txpower_regs -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x5815c7dd mt76x2_phy_tssi_compensate -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x5e81a259 mt76x2_mcu_init_gain -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x70672551 mt76x2_apply_gain_adj -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x84d92250 mt76x2_mcu_load_cr -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x8f972cd5 mt76x2_mcu_set_channel -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xabb79f8b mt76x2_reset_wlan -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xb26aebd0 mt76x2_configure_tx_delay -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xc8fc5429 mt76_write_mac_initvals -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xd9f1fa26 mt76x2_phy_update_channel_gain -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xe9a3d19f mt76x2_get_power_info -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xea15b753 mt76x2_eeprom_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xec0501e7 mt76x2_get_rate_power -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xef42e9a4 mt76x2_init_txpower -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xefcad6f7 mt76x2_phy_set_txpower -EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x058b2b54 host_wakeup_notify -EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x1321f931 wilc_netdev_cleanup -EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x28ca3cb3 chip_allow_sleep -EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x62ff1c6b chip_wakeup -EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x6366769f wilc_cfg80211_init -EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0xd3b77441 host_sleep_notify -EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0xded918fb wilc_handle_isr -EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x31fab83c qtnf_chipid_to_string -EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x550fe118 qtnf_core_detach -EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x6ac90305 qtnf_classify_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x7e85408c qtnf_wake_all_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x80697320 qtnf_trans_handle_rx_ctl_packet -EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0xc66e767d qtnf_core_attach -EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0xf116ecd2 qtnf_get_debugfs_dir -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x1b412806 rt2800_pre_reset_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x270fdc20 rt2800_config -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x2e7bae03 rt2800_read_eeprom_efuse -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x30fe1d77 rt2800_link_stats -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x35d7f09d rt2800_config_ant -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x43096693 rt2800_write_tx_data -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x43ecae68 rt2800_get_tsf -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x4ae7f59a rt2800_vco_calibration -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x55182f89 rt2800_reset_tuner -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x5591b129 rt2800_config_pairwise_key -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x5b918aec rt2800_write_beacon -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x62bc9801 rt2800_gain_calibration -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x71a25be4 rt2800_mcu_request -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x729304b1 rt2800_get_txwi_rxwi_size -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x746179cd rt2800_process_rxwi -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x758c626e rt2800_txstatus_pending -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x7751f312 rt2800_conf_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x823450b2 rt2800_link_tuner -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x8683b8f2 rt2800_txdone_nostatus -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x882b652a rt2800_config_erp -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x899a2b42 rt2800_config_shared_key -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x8a3ff97a rt2800_probe_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x8ec7e67f rt2800_load_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x8ffac590 rt2800_ampdu_action -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x90f4ffc5 rt2800_rfkill_poll -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x953a6da7 rt2800_watchdog -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xa1930194 rt2800_config_intf -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xab7570d7 rt2800_disable_wpdma -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xabbea4cf rt2800_get_survey -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xad3e1fef rt2800_wait_wpdma_ready -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xafee5d31 rt2800_config_filter -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xb3621800 rt2800_wait_csr_ready -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xb6b8d458 rt2800_disable_radio -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xc008afd6 rt2800_sta_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xcaaa81f0 rt2800_txstatus_timeout -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xcd973aed rt2800_efuse_detect -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xd089b246 rt2800_sta_add -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xd46f6ed6 rt2800_txdone_entry -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xd964c549 rt2800_clear_beacon -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xdb3c0616 rt2800_set_rts_threshold -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xe11324d5 rt2800_enable_radio -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xe78d406e rt2800_check_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xec92d532 rt2800_get_key_seq -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xf9edd7a9 rt2800_txdone -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x09100c14 rt2800mmio_get_dma_done -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x0a0b2058 rt2800mmio_write_tx_desc -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x0bd42f22 rt2800mmio_get_txwi -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x1135a58a rt2800mmio_init_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x14360a73 rt2800mmio_get_entry_state -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x17a21964 rt2800mmio_queue_init -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x2b2c9c19 rt2800mmio_start_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x32ac3645 rt2800mmio_rxdone_tasklet -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x33911079 rt2800mmio_fill_rxdone -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x3671c9ae rt2800mmio_probe_hw -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 0x5fa4db64 rt2800mmio_interrupt -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x7dbd842b 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 0x9f3c8921 rt2800mmio_txstatus_tasklet -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xa3b2dc59 rt2800mmio_clear_entry -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xa5596297 rt2800mmio_flush_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xc06372a7 rt2800mmio_enable_radio -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xc1e1c964 rt2800mmio_stop_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xf16c0363 rt2800mmio_toggle_irq -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xfde0666a rt2800mmio_init_registers -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x1c49da0c rt2x00mac_conf_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x327472af rt2x00mac_rfkill_poll -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x33bcb5d9 rt2x00queue_flush_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x3779517b rt2x00mac_get_antenna -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x4978cea5 rt2x00mac_sw_scan_start -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x4a6469e5 rt2x00queue_unpause_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x4e00e921 rt2x00lib_resume -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x51182c28 rt2x00lib_probe_dev -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x561dfebf rt2x00mac_get_stats -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x5a433481 rt2x00queue_stop_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x610d8fb0 rt2x00queue_flush_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x630411ce rt2x00lib_rxdone -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x65e88b19 rt2x00mac_bss_info_changed -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x69667c1f rt2x00lib_get_bssidx -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x6b1e5b38 rt2x00lib_txdone_nomatch -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x6e7ab375 rt2x00mac_config -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x6fbf4fd3 rt2x00mac_set_tim -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x7227ad89 rt2x00mac_stop -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x75159344 rt2x00queue_pause_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x78d60bba rt2x00mac_remove_interface -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x7c6ea590 rt2x00lib_suspend -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x7f75ec31 rt2x00mac_configure_filter -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x8713d7c8 rt2x00mac_reconfig_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x8ee97858 rt2x00mac_sw_scan_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x921a935a rt2x00lib_pretbtt -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x93917a94 rt2x00mac_flush -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x9a3beebb rt2x00lib_txdone -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xa28e071a rt2x00mac_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xaad5caa3 rt2x00lib_txdone_noinfo -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xaafbb659 rt2x00lib_dmadone -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xac8b4d02 rt2x00queue_map_txskb -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xaeaf3227 rt2x00mac_add_interface -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xb6343d6b rt2x00lib_beacondone -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xbddbffa1 rt2x00mac_tx_frames_pending -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xc235cfff rt2x00queue_unmap_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xc369982b rt2x00mac_set_key -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xcd6118cc rt2x00mac_start -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xd3716051 rt2x00queue_start_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xd38d1edd rt2x00lib_set_mac_address -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xdcbb0b07 rt2x00mac_get_ringparam -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xdda67781 rt2x00queue_get_entry -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xf49262ee rt2x00lib_dmastart -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xf4bf9c43 rt2x00queue_start_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xf72c8f4f rt2x00mac_set_antenna -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xfb610e98 rt2x00queue_for_each_entry -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xfd13374f rt2x00lib_remove_dev -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xfeb3e8b9 rt2x00queue_stop_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x1fe2ea2f rt2x00mmio_rxdone -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x36b466eb rt2x00mmio_regbusy_read -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x58f166b3 rt2x00mmio_initialize -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x5c2af192 rt2x00mmio_flush_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x62f708a7 rt2x00mmio_uninitialize -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00pci 0x1efcced5 rt2x00pci_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00pci 0x6ec342e1 rt2x00pci_pm_ops -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00pci 0x83780200 rt2x00pci_probe -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x03f431b4 rt2x00usb_vendor_req_buff_lock -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x0dd07201 rt2x00usb_resume -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x560c2e68 rt2x00usb_register_read_async -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x5bdec1e1 rt2x00usb_kick_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x62ee6d11 rt2x00usb_watchdog -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x941170e1 rt2x00usb_clear_entry -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x97fb5565 rt2x00usb_vendor_request -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x98edc4e6 rt2x00usb_flush_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xa0eea314 rt2x00usb_initialize -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xa9a712b7 rt2x00usb_vendor_request_buff -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xaae86969 rt2x00usb_suspend -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xd1981f85 rt2x00usb_regbusy_read -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xd1c915c0 rt2x00usb_disconnect -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xe8f59329 rt2x00usb_uninitialize -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xf3de5218 rt2x00usb_probe -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xf842c37a rt2x00usb_disable_radio -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x098e8e2e rtl92c_set_p2p_ps_offload_cmd -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x16e8dd78 dm_restorepowerindex -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x76dd0f6d dm_savepowerindex -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xef00218f dm_writepowerindex -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x0b16359e rtl8723_phy_pi_mode_switch -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x1032b894 rtl8723_phy_path_a_fill_iqk_matrix -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x16526332 rtl8723_phy_save_mac_registers -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x22f9746b rtl8723ae_firmware_selfreset -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x24e31549 rtl8723_download_fw -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x282b9cc0 rtl8723_write_fw -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x3932ec46 rtl8723_phy_mac_setting_calibration -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x3ab8ae51 rtl8723_cmd_send_packet -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x3bbc0ff4 rtl8723_dm_init_edca_turbo -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x3f5bf9c0 rtl8723_phy_calculate_bit_shift -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x43913f1c rtl8723_phy_rf_serial_write -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x50712f6c rtl8723_phy_query_bb_reg -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x5b1784fc rtl8723_dm_init_dynamic_bb_powersaving -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x5f389a2f rtl8723_phy_reload_adda_registers -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x64077872 rtl8723_save_adda_registers -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x69ab4fed rtl8723_dm_init_dynamic_txpower -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x8baf8913 rtl8723_phy_set_sw_chnl_cmdarray -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x8e348998 rtl8723_phy_reload_mac_registers -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x909f0a56 rtl8723_phy_set_bb_reg -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x9b57387d rtl8723_fw_free_to_go -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xb27b4cec rtl8723_phy_txpwr_idx_to_dbm -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xd57ab64e rtl8723_enable_fw_download -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xda6c7c01 rtl8723be_firmware_selfreset -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xdd0de22a rtl8723_phy_init_bb_rf_reg_def -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xe5b750ee rtl8723_phy_path_a_standby -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xe71f19de rtl8723_phy_rf_serial_read -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xffad544e rtl8723_phy_path_adda_on -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0abb3731 rtl_set_tx_report -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0e1a3f68 rtl_tx_report_handler -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x1719271f read_efuse_byte -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x1a35b539 rtl_deinit_rfkill -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2630960e rtl_deinit_core -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x277154bf rtl_is_special_data -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2921a4d4 rtl_btc_status_false -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2d32cdfc rtl_lps_change_work_callback -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2e5382f9 rtl_fill_dummy -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x3877d6a2 rtl_recognize_peer -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x4a5e9b5f rtl_lps_leave -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x4e94cd48 rtl_global_var -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x615c6eab rtl_ops -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x6804acc3 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 0x72ed5afb rtl_tx_ackqueue -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x773bc879 rtl_deinit_deferred_work -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x807f0c9d rtl_ips_nic_on -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x846674d0 rtl_efuse_ops_init -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x847a2282 rtl_init_rx_config -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x8aaa818a rtl_lps_enter -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x8ee0077a rtl_fw_page_write -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x97e05663 rtl_tid_to_ac -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x9f21f757 rtl_fw_block_write -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa9b513bd rtl_get_hwinfo -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xb8e3d1cf rtl_p2p_info -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xdbbd7fac rtl_init_core -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xe526c0cc rtl_tx_mgmt_proc -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xe754f409 rtl_swlps_beacon -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf875e12b rtl_beacon_statistic -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xfc7028e3 rtl_action_proc -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x0f5c3ce9 rsi_zone_enabled -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x2c28e569 rsi_hal_device_init -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x308c9503 rsi_mac80211_detach -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x97f2b901 rsi_91x_deinit -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xcd173710 rsi_dbg -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xd29245b3 rsi_91x_init -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xec931252 rsi_read_pkt -EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0x30140995 cw1200_irq_handler -EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0x7a1a95be cw1200_core_probe -EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0x8a7ab2c9 cw1200_can_suspend -EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0xc1b99c01 cw1200_core_release -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0x1ac6974d wl1251_alloc_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0x9e4c5802 wl1251_free_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0xd3409265 wl1251_init_ieee80211 -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x02ea73bf wlcore_cmd_generic_cfg -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x06d3b27e wl12xx_debug_level -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x0d94c627 wlcore_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x14f463c4 wl1271_cmd_send -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x15558122 wl1271_tx_flush -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x1a4ed17e wl1271_tx_min_rate_get -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x1c0983b7 wlcore_enable_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 0x23923a92 wlcore_scan_sched_scan_ssid_list -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x25b8c863 wlcore_probe -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x3fffb245 wlcore_set_partition -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x41848001 wlcore_set_scan_chan_params -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x55669713 wlcore_cmd_wait_for_event_or_timeout -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x57a906e0 wlcore_event_beacon_loss -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x5fa9eeae wlcore_event_soft_gemini_sense -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x613da49d wlcore_event_inactive_sta -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x6a6a3d04 wlcore_event_rssi_trigger -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x6d0f6cdd wlcore_disable_interrupts -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x6eb02f0b wl1271_acx_sleep_auth -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x6eefad17 wlcore_event_dummy_packet -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x76332072 wl1271_acx_pm_config -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x7cf0c95d wlcore_event_ba_rx_constraint -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x85498cd1 wl1271_format_buffer -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x86cf1a4b wlcore_free_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x8c43e9ae wlcore_event_sched_scan_completed -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x8fc01bbc wlcore_boot_run_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x902182a3 wl1271_acx_init_mem_config -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x9b4ff481 wlcore_event_fw_logger -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x9beff3df wlcore_boot_upload_nvs -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x9db016df wl1271_cmd_test -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x9fc9ca66 wlcore_scan_sched_scan_results -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xb4dbfda2 wlcore_translate_addr -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xbc748932 wl1271_acx_set_ht_capabilities -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xc434909b wl1271_debugfs_update_stats -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xc62a3e0c wlcore_event_roc_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xc65d8c7a wlcore_event_max_tx_failure -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xc8310f6c wl1271_cmd_data_path -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xcbcee8fa wlcore_boot_upload_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xcc41c73f wl12xx_cmd_build_probe_req -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xd1d8b78c wl12xx_acx_mem_cfg -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xda6a2732 wlcore_set_key -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xdbfc3b36 wlcore_event_channel_switch -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xdccc17ad wlcore_alloc_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xdd11fb0b wl1271_cmd_configure -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xf50c512a wlcore_synchronize_interrupts -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xffd3f302 wlcore_disable_interrupts_nosync -EXPORT_SYMBOL_GPL drivers/net/wwan/wwan 0x3585ec6d wwan_port_rx -EXPORT_SYMBOL_GPL drivers/net/wwan/wwan 0x3d9bbf75 wwan_port_txon -EXPORT_SYMBOL_GPL drivers/net/wwan/wwan 0x3ee5d54c wwan_create_port -EXPORT_SYMBOL_GPL drivers/net/wwan/wwan 0x4dff61e5 wwan_port_txoff -EXPORT_SYMBOL_GPL drivers/net/wwan/wwan 0x51164ccb wwan_register_ops -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 0xe6a61067 wwan_unregister_ops -EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x8d492e8d nfcmrvl_nci_unregister_dev -EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0xe6869e9d nfcmrvl_nci_register_dev -EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0xf52533bf nfcmrvl_parse_dt -EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0xff467b72 nfcmrvl_nci_recv_frame -EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x3a06297f pn532_i2c_nfc_alloc -EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x664ea37b pn53x_register_nfc -EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x6b7c0b8f pn53x_unregister_nfc -EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x6e61ee37 pn53x_common_init -EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x701fb28b pn533_rx_frame_is_cmd_response -EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x96fcd74c pn533_finalize_setup -EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0xdecfd339 pn533_rx_frame_is_ack -EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0xeb87257e pn53x_common_clean -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x0a5bfa3f st_nci_remove -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x281591ba st_nci_hci_load_session -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x307dbe84 st_nci_hci_event_received -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x4127f573 st_nci_disable_se -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x4d5832a1 st_nci_discover_se -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x62923270 st_nci_enable_se -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xa17a7254 st_nci_probe -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xe0a0b67f st_nci_hci_cmd_received -EXPORT_SYMBOL_GPL drivers/nfc/st95hf/st95hf 0x219e5f01 st95hf_spi_recv_response -EXPORT_SYMBOL_GPL drivers/nfc/st95hf/st95hf 0x99ce2ce6 st95hf_spi_recv_echo_res -EXPORT_SYMBOL_GPL drivers/nfc/st95hf/st95hf 0xa625995f st95hf_spi_send -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x0862001f ntb_transport_tx_free_entry -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x1bf33b87 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 0x5bdc8dc5 ntb_transport_create_queue -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x6165ff51 ntb_transport_unregister_client -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x82e6c13d ntb_transport_qp_num -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x9c992c8f ntb_transport_link_up -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xc270dc24 ntb_transport_free_queue -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xc37d9036 ntb_transport_rx_remove -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xd40e7a02 ntb_transport_rx_enqueue -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 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 0xb61a038e async_pmem_flush -EXPORT_SYMBOL_GPL drivers/nvdimm/nd_virtio 0xddd8805f virtio_pmem_host_ack -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x0b68b208 nvme_cancel_admin_tagset -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x0f214c8f nvme_init_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x108dd945 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 0x1b68bd25 nvme_enable_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x22595ba2 nvme_cancel_request -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x27240dec nvme_alloc_request -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x33f6cb7e nvme_remove_namespaces -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x3ddaf5c7 nvme_set_features -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x3ed7e71f nvme_stop_keep_alive -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x49224181 nvme_reset_wq -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x5a67d670 nvme_start_freeze -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x5e47b26d nvme_host_path_error -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x5ece97c9 nvme_change_ctrl_state -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x641d3390 nvme_disable_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x64b62862 nvme_wq -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x6e461893 nvme_kill_queues -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x703caf7c __nvme_submit_sync_cmd -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x755fe104 nvme_wait_reset -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x76946081 nvme_init_ctrl_finish -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x7c024a47 nvme_unfreeze -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x7f3f4f1f nvme_submit_sync_cmd -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x80554bec __nvme_check_ready -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x813cf212 nvme_io_timeout -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x88cb9cd7 nvme_sync_io_queues -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x8a9c70ed nvme_sec_submit -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x8b0979d6 nvme_cancel_tagset -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x8e7ec2b6 __tracepoint_nvme_sq -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x941871b3 nvme_try_sched_reset -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x9b4cbef2 nvme_complete_async_event -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x9ee79f7d nvme_set_queue_count -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xa1c062d8 nvme_complete_rq -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xaa9911dd nvme_shutdown_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xabcf3625 nvme_start_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xb0e7733b __traceiter_nvme_sq -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xb123c413 nvme_wait_freeze_timeout -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xb427b63a nvme_cleanup_cmd -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xbca04c1f nvme_stop_queues -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xbdd658c1 nvme_wait_freeze -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xd26df1d5 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 0xd5f31489 nvme_sync_queues -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xd77b2b9a nvme_reset_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xee7e74f4 nvme_get_features -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xef77f132 nvme_delete_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xf30dee81 nvme_start_queues -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xfc6410e3 nvme_stop_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xfd255cce nvme_uninit_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x000eebb1 nvmf_ip_options_match -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x163a9133 nvmf_reg_read32 -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x1f502b24 nvmf_get_address -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x3abc7356 nvmf_connect_io_queue -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x51c659eb nvmf_free_options -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x631edceb nvmf_reg_read64 -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x762f65fd nvmf_reg_write32 -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xe5c3d1c7 nvmf_unregister_transport -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xea8d0bcd nvmf_should_reconnect -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xec6125da nvmf_register_transport -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xf8a19e72 nvmf_connect_admin_queue -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0x0d12e564 nvme_fc_register_remoteport -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0x122debca 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 0x1143dce6 nvmet_req_alloc_sgls -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x163d8640 nvmet_check_transfer_len -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x2a4b874f nvmet_register_transport -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x3185ab0a nvmet_unregister_transport -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x36a20a9a nvmet_req_init -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x3e0ef07a nvmet_wq -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x53e763e0 nvmet_req_uninit -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x6da30e82 nvmet_sq_init -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x811bac50 nvmet_ctrl_fatal_error -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x94b2249f nvmet_sq_destroy -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xc4233286 nvmet_req_free_sgls -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xe4cd6a80 nvmet_req_complete -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet-fc 0x0b98123d nvmet_fc_rcv_ls_req -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet-fc 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 0xdabb15f1 nvmet_fc_register_targetport -EXPORT_SYMBOL_GPL drivers/pci/controller/pcie-iproc 0xd113ce01 iproc_pcie_shutdown -EXPORT_SYMBOL_GPL drivers/pci/switch/switchtec 0x8c06833d switchtec_class -EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0x154cd6f0 hisi_event_sysfs_show -EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0x18a69f08 hisi_uncore_pmu_init_irq -EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0x2879dcb1 hisi_uncore_pmu_event_update -EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0x2942e021 hisi_uncore_pmu_del -EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0x3713d5b0 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 0x58664933 hisi_uncore_pmu_get_event_idx -EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0x60b8c439 hisi_uncore_pmu_event_init -EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0x7e3c2914 hisi_uncore_pmu_read -EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0x8527f42d hisi_uncore_pmu_set_event_period -EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0x887f0fc2 hisi_uncore_pmu_stop -EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0xb6ad0221 hisi_cpumask_sysfs_show -EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0xb715d57d hisi_uncore_pmu_disable -EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0xbb988c7a hisi_uncore_pmu_identifier_attr_show -EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0xc920c00f hisi_uncore_pmu_add -EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0xe39623c3 hisi_uncore_pmu_start -EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0xf31bd08d hisi_format_sysfs_show -EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0xfb6373d1 hisi_uncore_pmu_offline_cpu -EXPORT_SYMBOL_GPL drivers/phy/allwinner/phy-sun4i-usb 0xaddb6439 sun4i_usb_phy_set_squelch_detect -EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x060d74fb tegra_phy_xusb_utmi_pad_power_down -EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x0914bb21 tegra186_xusb_padctl_soc -EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x099e0644 tegra234_xusb_padctl_soc -EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x1ec0ce52 tegra_xusb_padctl_get -EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x2c1628a8 tegra_xusb_padctl_disable_phy_sleepwalk -EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x3fcd74f5 tegra_xusb_padctl_usb3_save_context -EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x4778dded tegra_xusb_padctl_disable_phy_wake -EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x5580a7ca tegra_xusb_padctl_remote_wake_detected -EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x5f0e1b65 tegra_phy_xusb_utmi_port_reset -EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x71d5cbd6 tegra124_xusb_padctl_soc -EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x7682d7b3 tegra210_xusb_padctl_soc -EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x91acbaab tegra_xusb_padctl_enable_phy_sleepwalk -EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x9ae11f97 tegra_xusb_padctl_hsic_set_idle -EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0xa0871caa tegra_phy_xusb_utmi_pad_power_on -EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0xbce97926 tegra_xusb_padctl_enable_phy_wake -EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0xc159b0a1 tegra_xusb_padctl_put -EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0xcec685af tegra_xusb_padctl_set_vbus_override -EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0xdb2250fa tegra194_xusb_padctl_soc -EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0xe46062cc tegra_xusb_padctl_usb3_set_lfps_detect -EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0xed6702b9 tegra_xusb_padctl_get_usb3_companion -EXPORT_SYMBOL_GPL drivers/phy/ti/phy-omap-usb2 0x00d48f33 omap_usb2_set_comparator -EXPORT_SYMBOL_GPL drivers/pinctrl/pinctrl-mcp23s08 0x458a25a5 mcp23x08_regmap -EXPORT_SYMBOL_GPL drivers/pinctrl/pinctrl-mcp23s08 0x75f1814a mcp23x17_regmap -EXPORT_SYMBOL_GPL drivers/pinctrl/pinctrl-mcp23s08 0x9ce8446a mcp23s08_probe_one -EXPORT_SYMBOL_GPL drivers/platform/chrome/cros-ec-sensorhub 0x187e4c94 cros_ec_sensorhub_unregister_push_data -EXPORT_SYMBOL_GPL drivers/platform/chrome/cros-ec-sensorhub 0x468dd3a5 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 0x0024fb03 ssam_request_sync -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x09736347 ssam_device_driver_unregister -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x1b6f510f ssam_device_get_match -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x3de66636 ssam_notifier_register -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x4ea47e26 ssam_request_sync_free -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x54e0e91b ssam_controller_get -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x59a6e6e9 ssam_device_alloc -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x5bae214d ssam_get_controller -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x5c03579d ssh_packet_put -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x702aecbc ssam_controller_put -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x723d981a __ssam_device_driver_register -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x795eaef0 ssam_device_remove -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x7c268b8e ssam_notifier_unregister -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x86c07461 ssam_controller_statelock -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x90bf1dc6 ssam_controller_event_enable -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x95ffe1f1 ssam_request_write_data -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x9c566b7c ssam_client_bind -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xa472ad69 ssam_device_get_match_data -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xac9cfa91 ssam_device_type -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xaef25aa7 ssam_device_add -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xbe05f337 ssam_bus_type -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xc0f14b76 ssam_client_link -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xc2bd582d ssam_device_id_match -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xcc241d9a ssam_request_sync_alloc -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xd3667405 ssam_controller_stateunlock -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xdca50cb6 ssam_controller_event_disable -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xdda93996 ssh_packet_get -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xeb2197f4 ssam_request_sync_submit -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xf5a63daf ssam_controller_device -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xfc013229 ssam_request_sync_init -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xfe8f9ebd ssam_request_sync_with_buffer -EXPORT_SYMBOL_GPL drivers/platform/surface/surface_acpi_notify 0x48cf4c48 san_dgpu_notifier_register -EXPORT_SYMBOL_GPL drivers/platform/surface/surface_acpi_notify 0x4ef8e20d 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 0x0cb05579 devm_reboot_mode_unregister -EXPORT_SYMBOL_GPL drivers/power/reset/reboot-mode 0x3c045795 devm_reboot_mode_register -EXPORT_SYMBOL_GPL drivers/power/reset/reboot-mode 0x52b1f0c8 reboot_mode_unregister -EXPORT_SYMBOL_GPL drivers/power/reset/reboot-mode 0x782e63c6 reboot_mode_register -EXPORT_SYMBOL_GPL drivers/power/supply/bq27xxx_battery 0x128c7aeb bq27xxx_battery_teardown -EXPORT_SYMBOL_GPL drivers/power/supply/bq27xxx_battery 0x129face9 bq27xxx_battery_update -EXPORT_SYMBOL_GPL drivers/power/supply/bq27xxx_battery 0x33815455 bq27xxx_battery_setup -EXPORT_SYMBOL_GPL drivers/power/supply/pcf50633-charger 0x07dfeeb7 pcf50633_mbc_get_status -EXPORT_SYMBOL_GPL drivers/power/supply/pcf50633-charger 0x26567db4 pcf50633_mbc_get_usb_online_status -EXPORT_SYMBOL_GPL drivers/power/supply/pcf50633-charger 0x8590cd69 pcf50633_mbc_usb_curlim_set -EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0x2eae82b0 ptp_qoriq_isr -EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0x7a5935e8 ptp_qoriq_gettime -EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0x8c6cf5d7 extts_clean_up -EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0xa49b1cec ptp_qoriq_adjtime -EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0xbb1a4dc2 ptp_qoriq_adjfine -EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0xcb9ba06c ptp_qoriq_enable -EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0xdc780bda ptp_qoriq_settime -EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0xecbe26e2 ptp_qoriq_free -EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0xf808d173 ptp_qoriq_init -EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x2ed2ec4e mc13xxx_get_num_regulators_dt -EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x45dbaa5f mc13xxx_fixed_regulator_set_voltage -EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x8f512602 mc13xxx_regulator_ops -EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0xd6850934 mc13xxx_fixed_regulator_ops -EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0xd9dd352e mc13xxx_parse_regulators_dt -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x40f70f1b wm8350_dcdc_set_slot -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x488ff485 wm8350_isink_set_flash -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x7e8406cb wm8350_ldo_set_slot -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xbf80fae1 wm8350_register_regulator -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xcf3cf6dd wm8350_dcdc25_set_mode -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xde9ace7d wm8350_register_led -EXPORT_SYMBOL_GPL drivers/regulator/wm8400-regulator 0x61fb2d9b wm8400_register_regulator -EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp 0x249bcc2c scp_get_rproc -EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp 0x7ab802f9 scp_mapping_dm_addr -EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp 0xb20a1a1f scp_get_venc_hw_capa -EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp 0xc96e115e scp_get_vdec_hw_capa -EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp 0xf01b72de scp_get_device -EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp 0xf7d49031 scp_get -EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp 0xffe019e9 scp_put -EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp_ipi 0x09313652 scp_memcpy_aligned -EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp_ipi 0x6d7d39b2 scp_ipi_unlock -EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp_ipi 0x77dcfd77 scp_ipi_lock -EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp_ipi 0x96bad156 scp_ipi_send -EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp_ipi 0xb0aab84f scp_ipi_register -EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp_ipi 0xd3bfad3f scp_ipi_unregister -EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0x0fa538df qcom_register_ssr_notifier -EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0x27e91372 qcom_add_glink_subdev -EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0x356e0f11 qcom_add_smd_subdev -EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0x4694a634 qcom_minidump -EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0x74c5197c qcom_register_dump_segments -EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0x757b53c8 qcom_remove_ssr_subdev -EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0xa6741279 qcom_remove_glink_subdev -EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0xd6cc0cc0 qcom_unregister_ssr_notifier -EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0xe14cf6c8 qcom_add_ssr_subdev -EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0xf8f82fea qcom_remove_smd_subdev -EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_pil_info 0x30e58241 qcom_pil_info_store -EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_q6v5 0x2064bb91 qcom_q6v5_unprepare -EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_q6v5 0x68371753 qcom_q6v5_init -EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_q6v5 0x9893718d qcom_q6v5_wait_for_start -EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_q6v5 0x9f8c4f8c qcom_q6v5_request_stop -EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_q6v5 0xbd22ef38 qcom_q6v5_prepare -EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_q6v5 0xe2320a89 qcom_q6v5_panic -EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_sysmon 0x1482d168 qcom_sysmon_shutdown_acked -EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_sysmon 0x99ef5f70 qcom_add_sysmon_subdev -EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_sysmon 0xa881c6fc qcom_remove_sysmon_subdev -EXPORT_SYMBOL_GPL drivers/rpmsg/mtk_rpmsg 0x50def0c0 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 0x93cc1ce6 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 0x067e5445 qcom_glink_smem_register -EXPORT_SYMBOL_GPL drivers/rpmsg/qcom_glink_smem 0x72dd75d9 qcom_glink_smem_unregister -EXPORT_SYMBOL_GPL drivers/rtc/rtc-ds1685 0xa24fabee ds1685_rtc_poweroff -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x016a4f9a cxgbi_conn_xmit_pdu -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x0d89f81b cxgbi_bind_conn -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x11b0e393 cxgbi_device_find_by_lldev -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x1333f5c9 cxgbi_iscsi_cleanup -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x1f13a0a7 cxgbi_sock_select_mss -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x2001f746 cxgbi_parse_pdu_itt -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x2085bcd7 cxgbi_sock_check_wr_invariants -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x2d45cad6 cxgbi_device_find_by_netdev_rcu -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x2e7a3bbf cxgbi_cleanup_task -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x36f9efc7 cxgbi_sock_rcv_wr_ack -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x3b969bf5 cxgbi_conn_tx_open -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x3e4e9f27 cxgbi_sock_fail_act_open -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x4e69984e cxgbi_hbas_add -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x512b60f4 cxgbi_ddp_ppm_setup -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x5a33e0be cxgbi_device_unregister -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x62e0c414 cxgbi_set_conn_param -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x68ff0e46 cxgbi_create_conn -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x69107c06 cxgbi_set_host_param -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x6ac080c4 cxgbi_device_portmap_cleanup -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x768e0e90 cxgbi_get_ep_param -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x76fc0073 cxgbi_sock_established -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x79363a9d cxgbi_ep_poll -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7d384aae cxgbi_conn_init_pdu -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7fdb6004 cxgbi_device_unregister_all -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x9112d041 cxgbi_ep_disconnect -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x949a4651 cxgbi_sock_free_cpl_skbs -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x9609be69 cxgbi_iscsi_init -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x9ba5754a cxgbi_device_find_by_netdev -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xa159ec7d cxgbi_sock_rcv_abort_rpl -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xa4172671 cxgbi_get_conn_stats -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xa4c810d7 cxgbi_get_host_param -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xabda3626 cxgbi_hbas_remove -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xc0017cd6 cxgbi_sock_rcv_peer_close -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xc011af75 cxgbi_ddp_set_one_ppod -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xc2ae76ae cxgbi_ep_connect -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xd3c0aa40 cxgbi_device_register -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xd5fa754c cxgbi_destroy_session -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xd6064eb2 cxgbi_sock_rcv_close_conn_rpl -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xda2d5a3c cxgbi_device_portmap_create -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xdb542a8e cxgbi_sock_act_open_req_arp_failure -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xe3b73e6f cxgbi_conn_pdu_ready -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xe5ab5183 cxgbi_sock_purge_wr_queue -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xedf0d4ba cxgbi_conn_alloc_pdu -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xef346615 cxgbi_attr_is_visible -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xf1d08088 cxgbi_sock_closed -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xf41da122 cxgbi_sock_skb_entail -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xf5f4b64b cxgbi_create_session -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x00613e7a fcoe_validate_vport_create -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x043a22b3 fcoe_libfc_config -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x0656ebae fcoe_fcf_device_delete -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x202d51d6 fcoe_start_io -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x242a42b0 fcoe_link_speed_update -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x2af263f1 fcoe_fcf_device_add -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x60d2c3f2 fcoe_fc_crc -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x75baaa44 fcoe_get_wwn -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x9a0d55c6 fcoe_get_paged_crc_eof -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xa0f87944 fcoe_clean_pending_queue -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xb7e1124e 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 0xcf97e219 __fcoe_get_lesb -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xe1d322f7 fcoe_ctlr_device_add -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xe34cd4d4 fcoe_get_lesb -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xf167cb7a fcoe_wwn_to_str -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xf1cc10e1 fcoe_ctlr_device_delete -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xf5fd6f41 fcoe_check_wait_queue -EXPORT_SYMBOL_GPL drivers/scsi/fdomain 0x591916df fdomain_create -EXPORT_SYMBOL_GPL drivers/scsi/fdomain 0x756e3648 fdomain_destroy -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x0412e049 hisi_sas_sync_irqs -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x09d9078d hisi_sas_host_reset -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x1af9f4fc hisi_sas_phy_down -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x28f9d30b hisi_sas_init_mem -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x2dbff2ac hisi_sas_sata_done -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x3e8d580f hisi_sas_slave_configure -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x4012cba5 hisi_sas_alloc -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x45bf05a4 hisi_sas_probe -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x4e86e626 hisi_sas_controller_reset_done -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x4fc22123 hisi_sas_stt -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x68fca21d hisi_sas_slot_task_free -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x742a7075 hisi_sas_phy_enable -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x77e6132f hisi_sas_scan_start -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x950f958e hisi_sas_scan_finished -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x9979e1bb hisi_sas_remove -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 0xa0907d77 hisi_sas_notify_phy_event -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0xa7fddde7 to_hisi_sas_port -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 0xb2f9e2f5 hisi_sas_stop_phys -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0xbdc25737 hisi_sas_debugfs_dir -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 0xc9f094ff hisi_sas_controller_reset_prepare -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0xd2b78e3a hisi_sas_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 0xe44827f5 hisi_sas_get_fw_info -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 0xf42b0a66 hisi_sas_release_tasks -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0xfd5fb299 hisi_sas_phy_oob_ready -EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x6b3456ce iscsi_boot_create_target -EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x6ee732c7 iscsi_boot_create_ethernet -EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xae8da022 iscsi_boot_destroy_kset -EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xb0955429 iscsi_boot_create_initiator -EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xed44531d iscsi_boot_create_acpitbl -EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xefe2ab1a iscsi_boot_create_kset -EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xfe61a0d4 iscsi_boot_create_host_kset -EXPORT_SYMBOL_GPL drivers/scsi/libfc/libfc 0x905b0a32 fc_seq_els_rsp_send -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x03d0e4d8 iscsi_host_remove -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x11417e17 __iscsi_put_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x12b2ad06 iscsi_switch_str_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x1871d958 iscsi_complete_pdu -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x1eec2259 iscsi_set_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x213b1cd2 iscsi_conn_start -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x24ca8467 iscsi_conn_teardown -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x2c09d969 iscsi_eh_session_reset -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x2c67683c iscsi_eh_cmd_timed_out -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x2fa7b846 iscsi_session_recovery_timedout -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x2fed88f2 iscsi_conn_bind -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3313bd80 iscsi_host_free -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x39f177e3 iscsi_verify_itt -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3bef2f73 iscsi_pool_init -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3e0e7089 iscsi_suspend_tx -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x408ecc6f __iscsi_get_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x460be5e7 iscsi_host_add -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x486614be iscsi_session_free -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x4bf13ac6 __iscsi_complete_pdu -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x55b2953f iscsi_eh_device_reset -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x569c8a04 iscsi_conn_get_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x572ec84d iscsi_session_get_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x5d66e4b3 iscsi_update_cmdsn -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x63b9ecf4 iscsi_suspend_queue -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x69cbc7cd iscsi_host_get_max_scsi_cmds -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x6b9e8f30 iscsi_eh_abort -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x6d40c98f iscsi_target_alloc -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7fb8883c iscsi_session_teardown -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x893bca27 iscsi_host_get_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8bb5f612 iscsi_eh_recover_target -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8d303b1b iscsi_pool_free -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x924ee2ed iscsi_session_remove -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x94a76189 iscsi_conn_queue_xmit -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa5fb0552 iscsi_conn_failure -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xaf77d254 iscsi_put_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb448b5a7 iscsi_prep_data_out_pdu -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb64bd464 iscsi_host_alloc -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb9e3cbb3 iscsi_session_failure -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xbb996f35 iscsi_host_set_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc2677a73 iscsi_conn_queue_recv -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc6f95006 iscsi_complete_scsi_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xcb7b7dd9 iscsi_suspend_rx -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd08745d1 iscsi_conn_unbind -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd8e1981e iscsi_conn_send_pdu -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xddc63053 iscsi_itt_to_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xdec143bb iscsi_itt_to_ctask -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xe109a1d0 iscsi_queuecommand -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xe85a5a1f iscsi_session_setup -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xeab9cbd5 iscsi_conn_get_addr_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf19a4161 iscsi_conn_stop -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xfad0e1c5 iscsi_requeue_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xfbca617d iscsi_conn_setup -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x14f13d18 iscsi_tcp_hdr_recv_prep -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x30db8065 iscsi_tcp_conn_get_stats -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x373c5d3d iscsi_tcp_r2tpool_alloc -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x3d8403eb iscsi_tcp_segment_unmap -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x4fe83726 iscsi_tcp_dgst_header -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x60c38515 iscsi_segment_init_linear -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x965f7915 iscsi_tcp_conn_teardown -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xa7b12834 iscsi_tcp_cleanup_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xa8c23c7a iscsi_tcp_task_xmit -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xb622a520 iscsi_tcp_recv_segment_is_hdr -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xc5bba17a iscsi_tcp_recv_skb -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xc9e1ddf1 iscsi_tcp_conn_setup -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xe07515a8 iscsi_segment_seek_sg -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xe7976105 iscsi_tcp_task_init -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xeb2d1897 iscsi_tcp_set_max_r2t -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xecf4f925 iscsi_tcp_r2tpool_free -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xef76782e iscsi_tcp_segment_done -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x00c2c268 sas_request_addr -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x1270d3e9 dev_attr_phy_event_threshold -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x2a5abfe0 sas_alloc_task -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x2a9d7b81 sas_eh_abort_handler -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x34bd89cd sas_ioctl -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x49251d40 sas_slave_alloc -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x4b8c6595 sas_notify_phy_event -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x4c03995b sas_drain_work -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x57b7db27 sas_domain_attach_transport -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x5d2e28ee sas_bios_param -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x6fa0cf26 sas_ata_schedule_reset -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x7823f71b sas_ssp_task_response -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x7826f2c1 sas_slave_configure -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x805c717f sas_task_abort -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x9c3ea2e4 sas_queuecommand -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xa346f7c2 sas_target_alloc -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xa8e7aa3c sas_alloc_slow_task -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xb092c1c5 sas_free_task -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xba6c5d92 sas_unregister_ha -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xbaa7e966 sas_notify_port_event -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xbcb4e74e sas_register_ha -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xcc5ef761 sas_target_destroy -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xdb8912e2 sas_eh_target_reset_handler -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xdd9ca575 sas_eh_device_reset_handler -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xde6e8716 sas_change_queue_depth -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xe11c8f12 sas_phy_reset -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xe1d7225d sas_get_local_phy -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_fc 0x9e8051e4 fc_eh_should_retry_cmd -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x0736dd10 __tracepoint_iscsi_dbg_eh -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x0dfd9cf5 iscsi_destroy_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x1b88d417 iscsi_host_for_each_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x1ccd826d iscsi_session_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x2f6691ee iscsi_create_endpoint -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x2feea380 iscsi_get_port_speed_name -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x314a0b9c iscsi_destroy_all_flashnode -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x32306dce iscsi_create_flashnode_sess -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x336df1d2 __traceiter_iscsi_dbg_eh -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x34ee4d25 iscsi_get_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x3785e561 __tracepoint_iscsi_dbg_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x3aa840d8 iscsi_destroy_flashnode_sess -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x3fec5b93 iscsi_put_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x434b3307 iscsi_create_flashnode_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x47da9e6c iscsi_is_session_online -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x497a20fb __traceiter_iscsi_dbg_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x584a31ab __SCK__tp_func_iscsi_dbg_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x5bfaa2c3 __tracepoint_iscsi_dbg_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x5c982a7a iscsi_conn_error_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x5e295529 iscsi_create_iface -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x627f4af6 iscsi_add_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x6726b4e7 iscsi_register_transport -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x699fe53e iscsi_get_discovery_parent_name -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x6c8247d9 iscsi_destroy_endpoint -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x6da83720 iscsi_create_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x6e1271ae iscsi_remove_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x70679c99 iscsi_block_scsi_eh -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x710d3560 iscsi_put_endpoint -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x71b768b0 __SCK__tp_func_iscsi_dbg_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x75a2e504 iscsi_find_flashnode_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x775a2355 iscsi_block_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x77e0e8d5 __traceiter_iscsi_dbg_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x84a005f1 iscsi_get_router_state_name -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x84abb5c6 iscsi_session_chkready -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x862fda23 iscsi_offload_mesg -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x87c1a4af iscsi_post_host_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x88768c48 __SCK__tp_func_iscsi_dbg_tcp -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x90af35f6 iscsi_conn_login_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x9216d045 iscsi_unregister_transport -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x97df6172 iscsi_free_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x994e5e72 iscsi_create_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xaa976bb3 __tracepoint_iscsi_dbg_tcp -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xab4674c8 __SCK__tp_func_iscsi_dbg_sw_tcp -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xac2d0a4e __traceiter_iscsi_dbg_sw_tcp -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xaf7e60a0 iscsi_lookup_endpoint -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb6159978 iscsi_alloc_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb7ffe999 iscsi_is_session_dev -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb9f73d94 __traceiter_iscsi_dbg_tcp -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xba584c89 iscsi_destroy_iface -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xbc071179 iscsi_get_ipaddress_state_name -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xbc3aa216 iscsi_find_flashnode_sess -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xbc3cdcd2 iscsi_scan_finished -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xc0e79765 iscsi_recv_pdu -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xc22dd18c iscsi_dbg_trace -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd00b3cff iscsi_ping_comp_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd4e55f1e __tracepoint_iscsi_dbg_sw_tcp -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd9255a98 iscsi_unblock_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xde290deb iscsi_get_port_state_name -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xde31a72a iscsi_force_destroy_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe4c79fa6 __SCK__tp_func_iscsi_dbg_eh -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf851638b iscsi_flashnode_bus_match -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x03fca174 sas_enable_tlr -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x6b9de39b sas_is_tlr_enabled -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0xa9ac369c sas_disable_tlr -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0xca54792a sas_tlr_supported -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0x0ef06974 spi_populate_ppr_msg -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0x3468dbf1 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 0x24eb40a7 srp_attach_transport -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x58a3d0c4 srp_release_transport -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xdd946eb1 srp_rport_add -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xe42c31a9 srp_rport_del -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xedb67616 srp_stop_rport_timers -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xf8ee1688 srp_remove_host -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x009a6323 ufshcd_init -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x0c6a9179 ufshcd_suspend_prepare -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x0d8a625a ufshcd_hba_enable -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x0f605d46 ufshcd_link_recovery -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x1d58848d ufshcd_resume_complete -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x1d7315dc ufshcd_make_hba_operational -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x2a09dcc0 ufshcd_config_pwr_mode -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x2b38657e ufshcd_query_attr -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x439a8600 ufshcd_dme_set_attr -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x46f860b4 ufshcd_update_evt_hist -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x6d5b21ec ufshcd_auto_hibern8_update -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x723b1abf ufshcd_delay_us -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x72be76b5 ufshcd_dealloc_host -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x73f9b7aa ufshcd_release -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x769e91d2 ufshcd_hold -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x775ed943 ufshcd_hba_stop -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x7adf8aa6 ufshcd_dump_regs -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x7df9a8f5 ufshcd_remove -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0xa798bed6 ufshcd_dme_configure_adapt -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0xad09e22e ufshcd_query_descriptor_retry -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0xe740fb08 ufshcd_dme_get_attr -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0xf3f56031 ufshcd_fixup_dev_quirks -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0xf8849740 ufshcd_uic_hibern8_exit -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x54c946de ufshcd_init_pwr_dev_param -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x60bd5faf ufshcd_pltfrm_init -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x650c4d84 ufshcd_pltfrm_shutdown -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0xff85cd6b ufshcd_get_pwr_dev_param -EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x36b655df siox_device_connected -EXPORT_SYMBOL_GPL drivers/siox/siox-core 0xa2ef7389 siox_master_unregister -EXPORT_SYMBOL_GPL drivers/siox/siox-core 0xadb2aa56 siox_device_synced -EXPORT_SYMBOL_GPL drivers/siox/siox-core 0xb5ab421f siox_master_register -EXPORT_SYMBOL_GPL drivers/siox/siox-core 0xe9861600 siox_master_alloc -EXPORT_SYMBOL_GPL drivers/siox/siox-core 0xf00798c2 __siox_driver_register -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x01761c18 slim_ctrl_clk_pause -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x16887039 slim_stream_disable -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x310e8ed7 slim_stream_prepare -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x337cd2fe slim_stream_enable -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x3805dedb slim_driver_unregister -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x440b1a68 of_slim_get_device -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x49d265a8 slim_alloc_txn_tid -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x4bbe3e3f slimbus_bus -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x53722f09 slim_msg_response -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x55e33bd8 slim_device_report_present -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x6cfa5d60 slim_get_device -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x7f175af1 __slim_driver_register -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x881aaca1 slim_writeb -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x8c91531a slim_register_controller -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x989519d2 slim_do_transfer -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x9a9343dd slim_free_txn_tid -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x9c16e17e slim_stream_free -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xb270f648 slim_readb -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xb56122f7 slim_unregister_controller -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xb57439c5 slim_get_logical_addr -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xb77626a2 slim_read -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xc9179a28 slim_stream_unprepare -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xceaa3824 slim_write -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xdf308fd4 slim_stream_allocate -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xe2734d7f slim_xfer_msg -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xee06b1de slim_report_absent -EXPORT_SYMBOL_GPL drivers/soc/amlogic/meson-canvas 0x22e56155 meson_canvas_get -EXPORT_SYMBOL_GPL drivers/soc/amlogic/meson-canvas 0x494128eb meson_canvas_alloc -EXPORT_SYMBOL_GPL drivers/soc/amlogic/meson-canvas 0x673c5a86 meson_canvas_config -EXPORT_SYMBOL_GPL drivers/soc/amlogic/meson-canvas 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 0x6560c60d dpaa2_io_service_acquire -EXPORT_SYMBOL_GPL drivers/soc/fsl/dpio/fsl-mc-dpio 0x70bc39e3 dpaa2_io_store_create -EXPORT_SYMBOL_GPL drivers/soc/fsl/dpio/fsl-mc-dpio 0x79cf65a1 dpaa2_io_service_enqueue_qd -EXPORT_SYMBOL_GPL drivers/soc/fsl/dpio/fsl-mc-dpio 0x8553be96 dpaa2_io_service_register -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 0xa88ce878 dpaa2_io_service_deregister -EXPORT_SYMBOL_GPL drivers/soc/fsl/dpio/fsl-mc-dpio 0xb9e81961 dpaa2_io_query_fq_count -EXPORT_SYMBOL_GPL drivers/soc/qcom/apr 0x40a68bb5 __apr_driver_register -EXPORT_SYMBOL_GPL drivers/soc/qcom/apr 0x77831c84 aprbus -EXPORT_SYMBOL_GPL drivers/soc/qcom/apr 0x7a950dd7 apr_send_pkt -EXPORT_SYMBOL_GPL drivers/soc/qcom/apr 0x8f50c0cb apr_driver_unregister -EXPORT_SYMBOL_GPL drivers/soc/qcom/llcc-qcom 0x03c9a66d llcc_get_slice_size -EXPORT_SYMBOL_GPL drivers/soc/qcom/llcc-qcom 0x0679b34d llcc_slice_getd -EXPORT_SYMBOL_GPL drivers/soc/qcom/llcc-qcom 0x7e773088 llcc_get_slice_id -EXPORT_SYMBOL_GPL drivers/soc/qcom/llcc-qcom 0xad3516c4 llcc_slice_activate -EXPORT_SYMBOL_GPL drivers/soc/qcom/llcc-qcom 0xb534ec76 llcc_slice_deactivate -EXPORT_SYMBOL_GPL drivers/soc/qcom/llcc-qcom 0xb68b1300 llcc_slice_putd -EXPORT_SYMBOL_GPL drivers/soc/qcom/mdt_loader 0x6ac789f6 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 0xfc553e79 qcom_mdt_load_no_init -EXPORT_SYMBOL_GPL drivers/soundwire/soundwire-bus 0x6a7aec7b sdw_bus_type -EXPORT_SYMBOL_GPL drivers/soundwire/soundwire-bus 0x8387cb78 __sdw_register_driver -EXPORT_SYMBOL_GPL drivers/soundwire/soundwire-bus 0xaf9a4479 sdw_unregister_driver -EXPORT_SYMBOL_GPL drivers/soundwire/soundwire-cadence 0x92bb0e75 sdw_cdns_debugfs_init -EXPORT_SYMBOL_GPL drivers/spi/spi-altera-core 0xb9edd149 altera_spi_irq -EXPORT_SYMBOL_GPL drivers/spi/spi-altera-core 0xfc60a8bf altera_spi_init_master -EXPORT_SYMBOL_GPL drivers/spi/spi-bcm-qspi 0x0119336e bcm_qspi_pm_ops -EXPORT_SYMBOL_GPL drivers/spi/spi-bcm-qspi 0x0f4bd442 bcm_qspi_remove -EXPORT_SYMBOL_GPL drivers/spi/spi-bcm-qspi 0x2bcf092d bcm_qspi_probe -EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x36f9af3f spi_bitbang_stop -EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x59535a1a spi_bitbang_cleanup -EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x683fc89e spi_bitbang_start -EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x69ef8361 spi_bitbang_setup_transfer -EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xaac204da spi_bitbang_init -EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xeb5a25e0 spi_bitbang_setup -EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x2adc65e3 dw_spi_remove_host -EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x6e81bc9e dw_spi_resume_host -EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x87825235 dw_spi_check_status -EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x96f06d72 dw_spi_set_cs -EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0xacd13143 dw_spi_dma_setup_generic -EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0xc32c633d dw_spi_add_host -EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0xcd0ad71a dw_spi_suspend_host -EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0xd95833b8 dw_spi_update_config -EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0xe7d1478f dw_spi_dma_setup_mfld -EXPORT_SYMBOL_GPL drivers/spi/spi-loopback-test 0x0f3972c1 spi_test_run_tests -EXPORT_SYMBOL_GPL drivers/spi/spi-loopback-test 0x2c333355 spi_test_run_test -EXPORT_SYMBOL_GPL drivers/spi/spi-loopback-test 0x8a62ea12 spi_test_execute_msg -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x3675c3c1 spmi_command_shutdown -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x3c8eacc5 spmi_device_add -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x3e8a7f8e spmi_controller_remove -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x4aa3cf60 spmi_command_reset -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x52910105 spmi_ext_register_writel -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x73b2297c spmi_register_read -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x86ac134d spmi_register_write -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x8a9adf62 spmi_device_remove -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x93214d03 spmi_ext_register_readl -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xa76cfcc5 spmi_ext_register_read -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xab9e0275 spmi_command_wakeup -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xad6f0280 __spmi_driver_register -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xb6e738c4 spmi_controller_add -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xd29c101d spmi_device_alloc -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xe291a0ba spmi_register_zero_write -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xe825fc94 spmi_ext_register_write -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xf01acf9d spmi_command_sleep -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xfcd01559 spmi_controller_alloc -EXPORT_SYMBOL_GPL drivers/ssb/ssb 0x14d86791 ssb_pmu_spuravoid_pllupdate -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x34a051a4 anybuss_client_driver_unregister -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x4abf2c64 anybuss_recv_msg -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x4d8f6931 anybuss_start_init -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x54400a8b anybuss_host_common_probe -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x56fb5c55 anybuss_set_power -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x60d96085 anybuss_send_msg -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x6ce0d159 anybuss_finish_init -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x822a6da9 anybuss_client_driver_register -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x8e9945d0 anybuss_read_fbctrl -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0xa8b8cf14 anybuss_write_input -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0xadf184ce devm_anybuss_host_common_probe -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0xd0c353e3 anybuss_read_output -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0xd90d6115 anybuss_send_ext -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0xfce879ad anybuss_host_common_remove -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0x17acb4cf fieldbus_dev_unregister -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0x3c6ffbb3 fieldbus_dev_area_updated -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0x45fa6128 fieldbus_dev_register -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0xef398e0e fieldbus_dev_online_changed -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x19e8bf98 gb_audio_apbridgea_start_rx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x23e7bcb9 gb_audio_apbridgea_unregister_cport -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x277c6036 gb_audio_apbridgea_prepare_tx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x468eebbc gb_audio_apbridgea_register_cport -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x6a463298 gb_audio_apbridgea_stop_rx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x6e412aad gb_audio_apbridgea_set_rx_data_size -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x7a3b6762 gb_audio_apbridgea_set_tx_data_size -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x7f570de3 gb_audio_apbridgea_shutdown_rx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xaf6a4eb1 gb_audio_apbridgea_prepare_rx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xb8e803be gb_audio_apbridgea_start_tx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xc4354738 gb_audio_apbridgea_set_config -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xe2501c1f gb_audio_apbridgea_stop_tx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xf7412364 gb_audio_apbridgea_shutdown_tx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x01091d88 gb_audio_gb_set_rx_data_size -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x016f2ade gb_audio_gb_deactivate_rx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x174dbc28 gb_audio_gb_get_topology -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x36426de9 gb_audio_gb_activate_tx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x43d1dd7b gb_audio_gb_activate_rx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x5385b052 gb_audio_gb_get_control -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x5be2ef91 gb_audio_gb_get_pcm -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x74fc9a4c gb_audio_gb_deactivate_tx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x80288329 gb_audio_gb_set_tx_data_size -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xb5037eae gb_audio_gb_disable_widget -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xc19c5795 gb_audio_gb_set_control -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xc302394a gb_audio_gb_set_pcm -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xcdf532ae gb_audio_gb_enable_widget -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-manager 0x19e9e6b1 gb_audio_manager_remove_all -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-manager 0x32e6391e gb_audio_manager_remove -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-manager 0x5a108b0f gb_audio_manager_add -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-manager 0x79eef2f8 gb_audio_manager_dump_all -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-manager 0x953d4c92 gb_audio_manager_put_module -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-manager 0xae8a17f4 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 0x910cbbf4 gb_gbphy_deregister_driver -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-gbphy 0xee468119 gb_gbphy_register_driver -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-spilib 0x050e3498 gb_spilib_master_init -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-spilib 0xe9ad2591 gb_spilib_master_exit -EXPORT_SYMBOL_GPL drivers/staging/iio/addac/adt7316 0xca3e3ecf adt7316_pm_ops -EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x0aa5d568 imx_media_of_add_csi -EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x13710268 imx_media_dev_init -EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x158151be imx_media_capture_device_unregister -EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x16369c7d imx_media_find_subdev_by_fwnode -EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x1fde26e5 imx_media_pipeline_subdev -EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x2cd00939 imx_media_capture_device_remove -EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x39ff5a18 imx_media_find_subdev_by_devname -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 0x3b14d8d6 imx_media_alloc_dma_buf -EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x534ba9e1 imx_media_find_mbus_format -EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x55be6d3c imx_media_capture_device_register -EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x727a50e6 imx_media_get_pad_fwnode -EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x752b748e imx_media_init_cfg -EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x7d8eaf43 imx_media_pipeline_set_stream -EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x8563c730 imx_media_capture_device_error -EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x871f7376 imx_media_pipeline_pad -EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x8e7f820b imx_media_capture_device_next_buf -EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x9cabe551 imx_media_probe_complete -EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0xa3d4c4db 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 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 0xc4700d02 imx_media_free_dma_buf -EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0xc8ec4bb8 imx_media_add_of_subdevs -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 0xde577feb imx_media_dev_notifier_register -EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0xe8710fc6 imx_media_pipeline_video_device -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/imx/imx-media-common 0xf6535be8 imx_media_pipeline_csi2_channel -EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0xfa9c2070 imx_media_add_video_device -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x115655e9 amvdec_am21c_body_size -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x16812c41 codec_hevc_free_mmu_headers -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x1cb1e6d9 amvdec_am21c_size -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x2172b268 amvdec_write_dos -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x2e789b8f amvdec_set_canvases -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x2e7e414e amvdec_read_parser -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x39ade650 amvdec_dst_buf_done_idx -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x3cf0afa8 amvdec_src_change -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x43e55792 amvdec_clear_dos_bits -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x4c0f8b31 codec_hevc_free_fbc_buffers -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x5480c737 amvdec_remove_ts -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x594547e5 amvdec_dst_buf_done_offset -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x5f46c41c codec_hevc_setup_buffers -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 0x643fe7ff amvdec_set_par_from_dar -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x71811f28 amvdec_read_dos -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x800eced8 amvdec_abort -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x895a9c8d amvdec_write_parser -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x9ed3a189 amvdec_get_output_size -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xc073788f amvdec_dst_buf_done -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xca7e5585 codec_hevc_setup_decode_head -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xe1e85886 amvdec_add_ts -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xf0837afc amvdec_write_dos_bits -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xfd6ccf0f codec_hevc_fill_mmu_map -EXPORT_SYMBOL_GPL drivers/staging/nvec/nvec 0x7a22d674 nvec_register_notifier -EXPORT_SYMBOL_GPL drivers/staging/nvec/nvec 0x95506fc4 nvec_unregister_notifier -EXPORT_SYMBOL_GPL drivers/staging/nvec/nvec 0xdb8e7d2e nvec_msg_free -EXPORT_SYMBOL_GPL drivers/staging/vc04_services/vchiq-mmal/bcm2835-mmal-vchiq 0x01286af7 mmal_vchi_buffer_cleanup -EXPORT_SYMBOL_GPL drivers/staging/vc04_services/vchiq-mmal/bcm2835-mmal-vchiq 0x17c47fa3 vchiq_mmal_port_enable -EXPORT_SYMBOL_GPL drivers/staging/vc04_services/vchiq-mmal/bcm2835-mmal-vchiq 0x2071209c vchiq_mmal_component_disable -EXPORT_SYMBOL_GPL drivers/staging/vc04_services/vchiq-mmal/bcm2835-mmal-vchiq 0x3893e4ae vchiq_mmal_port_parameter_get -EXPORT_SYMBOL_GPL drivers/staging/vc04_services/vchiq-mmal/bcm2835-mmal-vchiq 0x405613f0 vchiq_mmal_submit_buffer -EXPORT_SYMBOL_GPL drivers/staging/vc04_services/vchiq-mmal/bcm2835-mmal-vchiq 0x5643947d vchiq_mmal_port_parameter_set -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 0x66bdda83 vchiq_mmal_port_disable -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 0x9a8f93ce vchiq_mmal_component_finalise -EXPORT_SYMBOL_GPL drivers/staging/vc04_services/vchiq-mmal/bcm2835-mmal-vchiq 0xaca4dd80 vchiq_mmal_init -EXPORT_SYMBOL_GPL drivers/staging/vc04_services/vchiq-mmal/bcm2835-mmal-vchiq 0xb2de987d mmal_vchi_buffer_init -EXPORT_SYMBOL_GPL drivers/staging/vc04_services/vchiq-mmal/bcm2835-mmal-vchiq 0xc0aba817 vchiq_mmal_port_connect_tunnel -EXPORT_SYMBOL_GPL drivers/staging/vc04_services/vchiq-mmal/bcm2835-mmal-vchiq 0xc2e46b95 vchiq_mmal_port_set_format -EXPORT_SYMBOL_GPL drivers/staging/vc04_services/vchiq-mmal/bcm2835-mmal-vchiq 0xe0e935ec vchiq_mmal_component_enable -EXPORT_SYMBOL_GPL drivers/staging/vc04_services/vchiq-mmal/bcm2835-mmal-vchiq 0xf1c51a53 vchiq_mmal_component_init -EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0x02853a25 target_init_cmd -EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0x17ea3ab7 target_submit -EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0x3e01427a target_queue_submission -EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0x48a535a0 target_submit_prep -EXPORT_SYMBOL_GPL drivers/tee/tee 0x00089886 tee_shm_va2pa -EXPORT_SYMBOL_GPL drivers/tee/tee 0x1352dcc6 tee_client_close_context -EXPORT_SYMBOL_GPL drivers/tee/tee 0x1a94e1f5 tee_shm_alloc_kernel_buf -EXPORT_SYMBOL_GPL drivers/tee/tee 0x27295d02 tee_device_unregister -EXPORT_SYMBOL_GPL drivers/tee/tee 0x2d035239 tee_shm_pool_mgr_alloc_res_mem -EXPORT_SYMBOL_GPL drivers/tee/tee 0x3955c0d5 teedev_open -EXPORT_SYMBOL_GPL drivers/tee/tee 0x3a578dbc tee_bus_type -EXPORT_SYMBOL_GPL drivers/tee/tee 0x400e7439 teedev_close_context -EXPORT_SYMBOL_GPL drivers/tee/tee 0x40493a55 tee_client_close_session -EXPORT_SYMBOL_GPL drivers/tee/tee 0x480be463 tee_shm_pool_alloc -EXPORT_SYMBOL_GPL drivers/tee/tee 0x6195e747 tee_shm_pa2va -EXPORT_SYMBOL_GPL drivers/tee/tee 0x66dcb5ff tee_shm_get_va -EXPORT_SYMBOL_GPL drivers/tee/tee 0x70417522 tee_shm_get_pa -EXPORT_SYMBOL_GPL drivers/tee/tee 0x8536b29b tee_client_open_session -EXPORT_SYMBOL_GPL drivers/tee/tee 0x85fd9922 tee_session_calc_client_uuid -EXPORT_SYMBOL_GPL drivers/tee/tee 0x9d654324 tee_shm_register -EXPORT_SYMBOL_GPL drivers/tee/tee 0xa348f6c0 tee_client_get_version -EXPORT_SYMBOL_GPL drivers/tee/tee 0xabca5b41 tee_shm_alloc -EXPORT_SYMBOL_GPL drivers/tee/tee 0xacef7db0 tee_device_alloc -EXPORT_SYMBOL_GPL drivers/tee/tee 0xb677e7d0 tee_client_invoke_func -EXPORT_SYMBOL_GPL drivers/tee/tee 0xb6a2a854 tee_shm_pool_alloc_res_mem -EXPORT_SYMBOL_GPL drivers/tee/tee 0xc0aeb27a tee_get_drvdata -EXPORT_SYMBOL_GPL drivers/tee/tee 0xc384e25b tee_client_open_context -EXPORT_SYMBOL_GPL drivers/tee/tee 0xc72ae3d6 tee_shm_get_from_id -EXPORT_SYMBOL_GPL drivers/tee/tee 0xca271236 tee_device_register -EXPORT_SYMBOL_GPL drivers/tee/tee 0xd18ee2c0 tee_shm_free -EXPORT_SYMBOL_GPL drivers/tee/tee 0xd6059a28 tee_shm_put -EXPORT_SYMBOL_GPL drivers/tee/tee 0xf097a792 tee_shm_pool_free -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x01d23ee1 tb_property_create_dir -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x0c4405ee tb_ring_alloc_rx -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x13c09822 tb_xdomain_release_in_hopid -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x1a75d2cf tb_xdomain_release_out_hopid -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x218a02fd tb_service_type -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x393b4f2f tb_property_free_dir -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x47c14199 tb_xdomain_find_by_route -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 0x603249ed tb_unregister_property_dir -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x61e2b730 tb_xdomain_enable_paths -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x658e3d97 tb_property_add_immediate -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x6a870fb2 tb_ring_stop -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 0x80501005 tb_xdomain_request -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x8b62f95e tb_property_add_dir -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x8d5c645b tb_xdomain_response -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x8fa75eb3 tb_xdomain_find_by_uuid -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x90594684 tb_ring_alloc_tx -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x9258594f tb_xdomain_disable_paths -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xa2d35ef4 tb_ring_free -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xa3d2b403 tb_property_add_data -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xa5742a6f tb_ring_start -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xa742e230 tb_xdomain_lane_bonding_enable -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xb7c7cdce tb_property_add_text -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xbaeb6afd tb_xdomain_lane_bonding_disable -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xbb60152f tb_ring_poll_complete -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xc0090be6 __tb_ring_enqueue -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xcfd5e8c8 tb_xdomain_type -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xd26bd8d6 tb_register_service_driver -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xdb460ae7 tb_xdomain_alloc_in_hopid -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xf1b36262 tb_xdomain_alloc_out_hopid -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xf1cfd1ff tb_register_property_dir -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xf2d7f500 tb_ring_poll -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xf34a5968 tb_unregister_service_driver -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xf76028c7 tb_unregister_protocol_handler -EXPORT_SYMBOL_GPL drivers/uio/uio 0x02abea1e uio_unregister_device -EXPORT_SYMBOL_GPL drivers/uio/uio 0x323158ac __devm_uio_register_device -EXPORT_SYMBOL_GPL drivers/uio/uio 0x3364f338 uio_event_notify -EXPORT_SYMBOL_GPL drivers/uio/uio 0xf3463977 __uio_register_device -EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0xbbccbf0d usbatm_usb_probe -EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0xc414e764 usbatm_usb_disconnect -EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x37dbfce0 cdns_drd_gadget_on -EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x3a61a272 cdns_clear_vbus -EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x63c9de24 cdns_init -EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0xaa0b5b4a cdns_remove -EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0xace8f1ee cdns_suspend -EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0xbc5b656f cdns_drd_gadget_off -EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0xc4580d49 cdns_power_is_lost -EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0xe17b4dc5 cdns_set_vbus -EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0xef11a702 cdns_resume -EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0x2764f026 hw_phymode_configure -EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0x28b8575d ci_hdrc_query_available_role -EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0x98c911ea ci_hdrc_remove_device -EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0xc684a894 ci_hdrc_add_device -EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0x4002fe5e imx_usbmisc_init_post -EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0x4315ee9f imx_usbmisc_set_wakeup -EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0x44404d6b imx_usbmisc_init -EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0x4fc28a58 imx_usbmisc_charger_detection -EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0xdc115321 imx_usbmisc_hsic_set_clk -EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0xf1b6a309 imx_usbmisc_hsic_set_connect -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x2306011e ulpi_write -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x500bdcdf ulpi_read -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x71b21aa3 __ulpi_register_driver -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x79008bee ulpi_register_interface -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0xb26fab8f ulpi_unregister_driver -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0xf6f80479 ulpi_unregister_interface -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x0479d94a u_audio_set_volume -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x13f33c3d g_audio_setup -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x327b8053 u_audio_start_playback -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x4c68fbde u_audio_start_capture -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x4e14f27e u_audio_stop_capture -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0xa4160bbb u_audio_set_mute -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0xb4fbd32f u_audio_get_mute -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0xdc602909 u_audio_get_volume -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0xe4af5fb2 u_audio_stop_playback -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0xedccabee g_audio_cleanup -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x25b43cad gether_set_ifname -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x31416752 gether_connect -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x6794242a gether_disconnect -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x801983cb gether_setup_name -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x8060b57c gether_set_dev_addr -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x8327f405 gether_set_qmult -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x85c8d281 gether_setup_name_default -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x8878cfa6 gether_cleanup -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x9f6fbf2c gether_get_host_addr_cdc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xa0f720a6 gether_set_host_addr -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xa2cb396a gether_get_host_addr -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xa2f8f0bc gether_register_netdev -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xa77c4f6b gether_get_ifname -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xb117282d gether_get_qmult -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xbf019aa0 gether_get_host_addr_u8 -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xe830b27c gether_get_dev_addr -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xf23bedd7 gether_set_gadget -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 0x5222acbd gserial_suspend -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x60db48f5 gserial_get_console -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x60ea48a0 gs_free_req -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x844c30b4 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 0xce7fe82d gserial_disconnect -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xe3a799b0 gserial_connect -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xe89dc424 gserial_alloc_line_no_console -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_accessory 0x3980acd8 acc_disconnect -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_accessory 0xb57029d5 acc_ctrlrequest -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0x5bc0d1e1 ffs_single_dev -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0x6c825859 ffs_lock -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0xfc05ed07 ffs_name_dev -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x002631a7 fsg_lun_fsync_sub -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x141fce2a fsg_common_remove_luns -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x1710b539 fsg_fs_bulk_out_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x1ccb58f7 fsg_common_set_num_buffers -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x24f81ec1 fsg_show_file -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x2933ee1d fsg_ss_bulk_in_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x2d0809c7 fsg_show_inquiry_string -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x2f05a180 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 0x56344daf fsg_hs_bulk_out_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x5bc019c1 fsg_store_file -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x64c7077f fsg_store_inquiry_string -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x6a5efa5c fsg_show_nofua -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x6acb4179 fsg_common_set_inquiry_string -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x6f6fc1f3 fsg_common_set_cdev -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x74b25e34 fsg_lun_open -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x7b12b916 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 0x83e14e32 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 0x8bdfc443 fsg_store_removable -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x92eea8da fsg_store_nofua -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x941c5383 fsg_common_remove_lun -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x95cffb3e fsg_hs_bulk_in_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x9a0221c7 fsg_common_free_buffers -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 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 0xab357f80 fsg_show_cdrom -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xab6c68ac fsg_config_from_params -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xb3adf38d store_cdrom_address -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xb52ba28a fsg_intf_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xb54d0d95 fsg_fs_bulk_in_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xd1a3e8e0 fsg_common_create_luns -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xd38c485e fsg_store_ro -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xf4efc0c8 fsg_ss_bulk_out_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xf70b972f fsg_lun_close -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x0337b357 rndis_deregister -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x27b5b160 rndis_set_param_vendor -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x2aacdb0e rndis_set_param_dev -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x2cd5512c rndis_borrow_net -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x56a22f1b rndis_register -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x5f1ed25d rndis_get_next_response -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x6193726b rndis_free_response -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x697e326f rndis_uninit -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x8af8f6e5 rndis_signal_connect -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x8f9cea4b rndis_msg_parser -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xa4023594 rndis_set_param_medium -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xab56a97d rndis_rm_hdr -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xce47a877 rndis_add_hdr -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xd7fd8573 rndis_set_host_mac -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xf60e933a rndis_signal_disconnect -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x050a28a4 usb_interface_id -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x09d388a9 usb_ep_autoconfig -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x0bf0f40a config_ep_by_speed_and_alt -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 0x0f72ab43 usb_function_activate -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x24f0ddb8 usb_composite_overwrite_options -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x2634df9f usb_assign_descriptors -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x2db0bcef usb_otg_descriptor_init -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x2e09263f usb_copy_descriptors -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x35e2a620 usb_otg_descriptor_alloc -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x378cf056 usb_add_config_only -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x3c4dc06e usb_composite_setup_continue -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x3f95ccdd usb_function_unregister -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x434b730d usb_ep_autoconfig_reset -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x46891bd7 usb_put_function -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x480f5ef0 usb_free_all_descriptors -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x4b970d61 usb_string_id -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x4beb505d usb_gadget_get_string -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x5a4bd478 usb_gstrings_attach -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x5b07ff62 usb_put_function_instance -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x66daef66 usb_ep_autoconfig_ss -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x73cdc222 usb_composite_unregister -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x75e64d90 usb_add_config -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x86636bca config_ep_by_speed -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x8fa4f836 usb_composite_probe -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xa628d204 usb_remove_function -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xa8569efd usb_function_register -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xa9384cd7 unregister_gadget_item -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xb0b80e1b usb_get_function_instance -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xb25e3f28 usb_add_function -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xb2704fac usb_function_deactivate -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 0xef317588 usb_get_function -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xf474a207 usb_gadget_config_buf -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xfa0b92ad usb_string_ids_tab -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xff40e9e2 usb_string_ids_n -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x3c053d14 udc_remove -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x5b35b135 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 0x8a4e5215 udc_mask_unused_interrupts -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0xa2c5827e udc_enable_dev_setup_interrupts -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0xa458d318 empty_req_queue -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0xbe54b5d0 udc_basic_init -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0xc13865c2 gadget_release -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0xda3ea6b8 udc_probe -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0xed1329f2 free_dma_pools -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x01b12bfb usb_ep_free_request -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x09174e90 usb_del_gadget -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 0x11d31c41 usb_gadget_check_config -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x1239525b usb_gadget_clear_selfpowered -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x1bf84089 usb_add_gadget_udc -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x2055f3d0 usb_gadget_activate -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x26a9b4fe usb_gadget_udc_reset -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x2aabc999 usb_gadget_set_state -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x348f096d usb_gadget_connect -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x38467e62 usb_gadget_wakeup -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x39b4433d usb_udc_vbus_handler -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 0x5194c9bc usb_gadget_unmap_request_by_dev -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x58325e46 usb_gadget_vbus_disconnect -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x5a85a5da gadget_find_ep_by_name -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x5c331b78 usb_gadget_probe_driver -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x5fc294ef usb_ep_clear_halt -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x5feaa482 usb_gadget_unregister_driver -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x7027d7b4 usb_initialize_gadget -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x7a41b9f2 usb_ep_set_maxpacket_limit -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x7be89624 usb_gadget_giveback_request -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x7f91e13b usb_gadget_map_request -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x8184800a usb_gadget_frame_number -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x82c02cef usb_gadget_vbus_draw -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x882077d5 usb_ep_dequeue -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x885ee941 usb_gadget_deactivate -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x9eb52803 usb_ep_disable -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xa0edc53d usb_gadget_disconnect -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xa8f74e6c usb_gadget_unmap_request -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 0xb87710f3 usb_add_gadget_udc_release -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xb9a5405d usb_gadget_map_request_by_dev -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xbc4f692a usb_del_gadget_udc -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xbef10c00 usb_add_gadget -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xc43b4e08 usb_gadget_set_remote_wakeup -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xc9b18ac6 usb_gadget_ep_match_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xdc141fb5 usb_gadget_vbus_connect -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xf7335992 usb_gadget_set_selfpowered -EXPORT_SYMBOL_GPL drivers/usb/host/xhci-pci-renesas 0xe17f20a4 renesas_xhci_check_request_fw -EXPORT_SYMBOL_GPL drivers/usb/misc/ezusb 0x06ae29f3 ezusb_fx1_ihex_firmware_download -EXPORT_SYMBOL_GPL drivers/usb/misc/ezusb 0x6695fb64 ezusb_fx1_set_reset -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x2eb8da87 usb_ftdi_elan_edset_single -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x35994c11 ftdi_elan_gone_away -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x44232ab2 usb_ftdi_elan_edset_input -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x4dc503a8 usb_ftdi_elan_edset_empty -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x7019d293 usb_ftdi_elan_edset_output -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xb261eecd usb_ftdi_elan_edset_flush -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xbe2bc901 usb_ftdi_elan_write_pcimem -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xf80936bb usb_ftdi_elan_read_pcimem -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xf8d3ebc3 usb_ftdi_elan_edset_setup -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x07c3f2b5 musb_set_peripheral -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x09492220 musb_mailbox -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x0b4a8834 musb_writeb -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x2734197f musb_readb -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x358f3a20 musb_set_host -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x608ddfdb 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 0x8dc84570 musb_get_mode -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 0xe9078518 musb_queue_resume_work -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0xf0f95e51 musb_readl -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0xf3c5de5b musb_interrupt -EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0x1bbcd890 usb_phy_generic_unregister -EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0x4702c0ce usb_phy_gen_create_phy -EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0x6b90bfc9 usb_gen_phy_init -EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0x98f69d5b usb_gen_phy_shutdown -EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0xf3ea63b9 usb_phy_generic_register -EXPORT_SYMBOL_GPL drivers/usb/phy/phy-isp1301 0xfeea36a1 isp1301_get_client -EXPORT_SYMBOL_GPL drivers/usb/phy/phy-tegra-usb 0x0c1985eb tegra_ehci_phy_restore_start -EXPORT_SYMBOL_GPL drivers/usb/phy/phy-tegra-usb 0x66ccdcfb tegra_usb_phy_preresume -EXPORT_SYMBOL_GPL drivers/usb/phy/phy-tegra-usb 0x7a59b5a9 tegra_usb_phy_postresume -EXPORT_SYMBOL_GPL drivers/usb/phy/phy-tegra-usb 0x9845fc04 tegra_ehci_phy_restore_end -EXPORT_SYMBOL_GPL drivers/usb/serial/usb_wwan 0x3e50da46 usb_wwan_port_probe -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x0e55885c usb_serial_generic_get_icount -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x19e029c9 usb_serial_generic_throttle -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x1c69cef9 usb_serial_deregister_drivers -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x2db23132 usb_serial_generic_unthrottle -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x47baa2d7 usb_serial_port_softint -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x5dc4cc45 usb_serial_generic_wait_until_sent -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x6b88ef15 usb_serial_handle_dcd_change -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x71bc551b usb_serial_generic_write -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x84873cc9 usb_serial_generic_tiocmiwait -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x863b3984 usb_serial_generic_read_bulk_callback -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x872a8636 usb_serial_generic_write_bulk_callback -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xa34b7b05 usb_serial_generic_process_read_urb -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xb8e93db1 usb_serial_claim_interface -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xbe10216f usb_serial_generic_open -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xc86a17ac usb_serial_generic_write_start -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xdb451e9e usb_serial_generic_resume -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xe5bf4e6c usb_serial_generic_submit_read_urbs -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xe8688b0e usb_serial_generic_close -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xf0cdba0f usb_serial_register_drivers -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xff20c5ea usb_serial_generic_chars_in_buffer -EXPORT_SYMBOL_GPL drivers/usb/typec/altmodes/typec_displayport 0x7f538674 dp_altmode_remove -EXPORT_SYMBOL_GPL drivers/usb/typec/altmodes/typec_displayport 0xf5a3e21a 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 0xcb2a212d 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 0x43d5a422 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 0x01c1019f typec_set_pwr_opmode -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x02ad76ea typec_switch_set -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x08b42cc5 typec_unlink_port -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x0a203836 typec_altmode_get_partner -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x140d0d73 typec_mux_put -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x1418b7ea typec_set_pwr_role -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x16317be1 typec_altmode2port -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x1d31eedc typec_partner_set_identity -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x23e308f3 typec_partner_set_svdm_version -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x25ba2dfe typec_switch_put -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x28628601 typec_switch_get_drvdata -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x2d1e301d typec_find_power_role -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x2d32ef91 typec_plug_set_num_altmodes -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x350fa447 typec_set_vconn_role -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x38eb06f4 typec_altmode_exit -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x3daa126c typec_mux_get_drvdata -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x3e8f9a41 fwnode_typec_switch_get -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x40440620 typec_switch_set_drvdata -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x432c988d typec_register_cable -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x4f16381e typec_mux_unregister -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x602b68ef typec_register_partner -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x62235ee9 fwnode_typec_mux_get -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x6743729a typec_set_orientation -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x6bb468dc typec_partner_set_num_altmodes -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x6f752772 typec_altmode_enter -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x7ca1e45f typec_mux_register -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x7dc6866f typec_mux_set_drvdata -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x7eb65f3f typec_altmode_notify -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x7eb75377 typec_port_register_altmodes -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x7f304548 typec_register_port -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x87453601 typec_link_port -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x8a25b307 typec_partner_set_pd_revision -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x9049491e typec_find_port_data_role -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x93af11ea typec_unregister_partner -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x94643cdf typec_set_mode -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xa254de98 typec_find_orientation -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xa2d91cf9 typec_mux_set -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xa5980fa1 typec_cable_set_identity -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xa6b5532f typec_altmode_get_plug -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xaab95963 typec_match_altmode -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xad79c69c typec_altmode_vdm -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xb0bd6cd3 typec_cable_is_active -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xb6711150 typec_altmode_attention -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xb854f360 typec_cable_put -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xb949722c typec_altmode_unregister_driver -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xbaa63bfe typec_port_register_altmode -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xc395f2af typec_unregister_port -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xc3a9c385 __typec_altmode_register_driver -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xc81b5ac0 typec_get_orientation -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xc944d49c typec_get_fw_cap -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xca8ef9b7 typec_get_drvdata -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xccf887eb typec_switch_unregister -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xce79abb4 typec_plug_register_altmode -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xd7c5965e typec_switch_register -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xe292ef41 typec_get_negotiated_svdm_version -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xe2c6d7be typec_unregister_plug -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xeafc1eb8 typec_find_port_power_role -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xec596714 typec_unregister_cable -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xec59daf5 typec_set_data_role -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xecf2938c typec_altmode_put_plug -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xed9ec488 typec_partner_register_altmode -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xf0aaf274 typec_register_plug -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xf1234a8b typec_find_pwr_opmode -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xf9ea3661 typec_unregister_altmode -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xfc81b92f typec_altmode_update_active -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xfcebe068 typec_cable_get -EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x0072596b ucsi_get_drvdata -EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x33ac451b ucsi_destroy -EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x8af83dfd ucsi_unregister -EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0xa1a74c6c ucsi_connector_change -EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0xabb20e4c ucsi_create -EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0xbac1044b ucsi_resume -EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0xe06f0ad8 ucsi_set_drvdata -EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0xe420f3aa ucsi_send_command -EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0xf4c60c62 ucsi_register -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x2ed94ee8 usbip_pack_pdu -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x30113344 usbip_recv_xbuff -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x332b98af usbip_pad_iso -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x56568588 usbip_recv_iso -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x5995325b usbip_recv -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x59aea2bb usbip_dump_urb -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x62594569 usbip_start_eh -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x663884ce usbip_event_happened -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x78b72f44 usbip_debug_flag -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x9b905fc7 dev_attr_usbip_debug -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xb1f7f9d5 usbip_alloc_iso_desc_pdu -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xba07450b usbip_event_add -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xd02753dc usbip_header_correct_endian -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xe0206746 usbip_stop_eh -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xe1ea0586 usbip_dump_header -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xe6a7dcff usbip_in_eh -EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x23475443 __vdpa_alloc_device -EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x388f6a08 _vdpa_unregister_device -EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x69f11245 _vdpa_register_device -EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x6ad5861e vdpa_mgmtdev_unregister -EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x77823bd1 vdpa_unregister_device -EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x8dda59d7 vdpa_unregister_driver -EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0xd23ef4d5 __vdpa_register_driver -EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0xd569d534 vdpa_register_device -EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0xf79049d4 vdpa_mgmtdev_register -EXPORT_SYMBOL_GPL drivers/vdpa/vdpa_sim/vdpa_sim 0x01f0debb vdpasim_create -EXPORT_SYMBOL_GPL drivers/vfio/mdev/mdev 0x1e41b2ee mdev_bus_type -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x1d767c26 vfio_pci_core_match -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x2030b7f6 vfio_pci_register_dev_region -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x2902f540 vfio_pci_core_disable -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x2c853626 vfio_pci_core_request -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x2df63c28 vfio_pci_core_close_device -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x417f40c2 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 0x51a17115 vfio_pci_core_register_device -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x6eaf439a vfio_pci_core_sriov_configure -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x93472b33 vfio_pci_core_err_handlers -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x987d753d vfio_pci_core_unregister_device -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xa8f6c2e1 vfio_pci_core_mmap -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xaa6594ee vfio_pci_core_enable -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xb92dbd2e vfio_pci_core_write -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xb9409388 vfio_pci_core_init_device -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xc67425fa vfio_pci_core_ioctl -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xc7670c36 vfio_pci_core_uninit_device -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xdf580981 vfio_pci_core_finish_enable -EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0x4f36ac7c vfio_platform_probe_common -EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0x8b41afe2 __vfio_platform_register_reset -EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0xea802d78 vfio_platform_unregister_reset -EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0xf896f950 vfio_platform_remove_common -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x27e7707d vfio_group_get_external_user_from_dev -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x2edd03f0 vfio_init_group_dev -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x3567743b vfio_external_user_iommu_id -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x5b35c4f9 vfio_group_set_kvm -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x5c607e50 vfio_assign_device_set -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x5d09266d vfio_unregister_iommu_driver -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x60a634c4 vfio_info_cap_add -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x632a25a8 vfio_unregister_group_dev -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x6c21b050 vfio_external_group_match_file -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x84f0fdc3 vfio_register_iommu_driver -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x9142cf22 vfio_register_group_dev -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x93330636 vfio_group_get_external_user -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x9dd5ef67 vfio_device_get_from_dev -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xbb243263 vfio_iommu_group_put -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xbe1abcf7 vfio_group_iommu_domain -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xbea9235c vfio_device_put -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 0xc7b1d35b vfio_iommu_group_get -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xdedf0c2c vfio_uninit_group_dev -EXPORT_SYMBOL_GPL drivers/vfio/vfio_virqfd 0xaa257042 vfio_virqfd_enable -EXPORT_SYMBOL_GPL drivers/vfio/vfio_virqfd 0xec69e027 vfio_virqfd_disable -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x03ce4934 vhost_add_used_and_signal_n -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x10b72f8c vhost_dev_stop -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x135c5bf9 vhost_chr_read_iter -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x15a4cd7f vhost_poll_stop -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x23c7fd8e vhost_log_write -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x24f13772 vhost_poll_queue -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x2f883989 vhost_work_queue -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x31841291 vhost_vring_ioctl -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x3c596439 vhost_exceeds_weight -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x3e218542 vhost_poll_start -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x3e712780 vhost_dev_set_owner -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x40218335 vhost_vq_avail_empty -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x48509f02 vhost_enable_notify -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x492689c4 vhost_vq_init_access -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x50c02f2d vhost_dev_cleanup -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x52db5017 vhost_discard_vq_desc -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x58612c6d vhost_new_msg -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x784a21eb vhost_dev_init -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x82553b89 vhost_poll_flush -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x842a7769 vhost_get_vq_desc -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x89276416 vhost_work_dev_flush -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x912f3baf vhost_add_used_n -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x922ad4f7 vq_meta_prefetch -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x9c40b5b8 vhost_log_access_ok -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x9cecbf09 vhost_enqueue_msg -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x9fe57f6c vhost_clear_msg -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xa909cfc5 vhost_work_init -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xad40fbcb vhost_dev_check_owner -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xc2e68643 vhost_disable_notify -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xc3786014 vhost_signal -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xc56d299a vhost_has_work -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xc9ab9a0f vhost_dequeue_msg -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xcd40194a vhost_dev_reset_owner -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xce544167 vhost_vq_access_ok -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xd3a69ba4 vhost_init_device_iotlb -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xd71829b0 vhost_set_backend_features -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xd8e006d1 vhost_vq_is_setup -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xdfb9d319 vhost_add_used_and_signal -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xe11aba43 vhost_dev_ioctl -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xec5a4d90 vhost_dev_has_owner -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xf7b41ff1 vhost_add_used -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xf990e62c vhost_poll_init -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xfd2b3e45 vhost_dev_reset_owner_prepare -EXPORT_SYMBOL_GPL drivers/vhost/vhost_iotlb 0x38ff875f vhost_iotlb_add_range -EXPORT_SYMBOL_GPL drivers/vhost/vhost_iotlb 0x5f4e5249 vhost_iotlb_reset -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 0x061b1685 ili9320_suspend -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x5539b107 ili9320_write_regs -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x9f54f87c ili9320_shutdown -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xa7e17f77 ili9320_write -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xca3774ff ili9320_probe_spi -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xd006d072 ili9320_resume -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xe1acab7c ili9320_remove -EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_ddc 0x1d24b783 fb_ddc_read -EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_sys_fops 0x5f543502 fb_sys_write -EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_sys_fops 0xc2efd193 fb_sys_read -EXPORT_SYMBOL_GPL drivers/video/fbdev/sis/sisfb 0x23a30d79 sis_malloc_new -EXPORT_SYMBOL_GPL drivers/video/fbdev/sis/sisfb 0xe7203ef9 sis_free_new -EXPORT_SYMBOL_GPL drivers/w1/wire 0x03faab58 w1_triplet -EXPORT_SYMBOL_GPL drivers/w1/wire 0x0b6b3759 w1_read_block -EXPORT_SYMBOL_GPL drivers/w1/wire 0x0f11860f w1_next_pullup -EXPORT_SYMBOL_GPL drivers/w1/wire 0x2ca9a388 w1_touch_bit -EXPORT_SYMBOL_GPL drivers/w1/wire 0x3316c699 w1_reset_select_slave -EXPORT_SYMBOL_GPL drivers/w1/wire 0x3e183648 w1_reset_bus -EXPORT_SYMBOL_GPL drivers/w1/wire 0x563308fa w1_write_block -EXPORT_SYMBOL_GPL drivers/w1/wire 0x63757e92 w1_calc_crc8 -EXPORT_SYMBOL_GPL drivers/w1/wire 0xaffa6103 w1_write_8 -EXPORT_SYMBOL_GPL drivers/w1/wire 0xcc78591c w1_reset_resume_command -EXPORT_SYMBOL_GPL drivers/w1/wire 0xcda5ca5d w1_read_8 -EXPORT_SYMBOL_GPL drivers/w1/wire 0xda24d361 w1_touch_block -EXPORT_SYMBOL_GPL drivers/xen/xen-front-pgdir-shbuf 0x00681ef3 xen_front_pgdir_shbuf_free -EXPORT_SYMBOL_GPL drivers/xen/xen-front-pgdir-shbuf 0x42e4a73b xen_front_pgdir_shbuf_alloc -EXPORT_SYMBOL_GPL drivers/xen/xen-front-pgdir-shbuf 0x4b3cbc32 xen_front_pgdir_shbuf_get_dir_start -EXPORT_SYMBOL_GPL drivers/xen/xen-front-pgdir-shbuf 0x660cc09f xen_front_pgdir_shbuf_map -EXPORT_SYMBOL_GPL drivers/xen/xen-front-pgdir-shbuf 0xd181170a xen_front_pgdir_shbuf_unmap -EXPORT_SYMBOL_GPL drivers/xen/xen-privcmd 0xb83e72e5 xen_privcmdbuf_fops -EXPORT_SYMBOL_GPL drivers/xen/xen-privcmd 0xbca7f914 xen_privcmd_fops -EXPORT_SYMBOL_GPL fs/dlm/dlm 0x1b96230e dlm_posix_get -EXPORT_SYMBOL_GPL fs/dlm/dlm 0x4b62826c dlm_unlock -EXPORT_SYMBOL_GPL fs/dlm/dlm 0x647d6170 dlm_lock -EXPORT_SYMBOL_GPL fs/dlm/dlm 0x6aef1518 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 0xe995477b dlm_posix_lock -EXPORT_SYMBOL_GPL fs/fscache/fscache 0x092cf98e fscache_object_sleep_till_congested -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x03e2712e lockd_down -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x2db821d5 nlmsvc_ops -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x73de7897 nlmsvc_unlock_all_by_sb -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x77e35ccc nlmsvc_unlock_all_by_ip -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x8a4bd76d nlmclnt_proc -EXPORT_SYMBOL_GPL fs/lockd/lockd 0xc11bbf56 nlmclnt_done -EXPORT_SYMBOL_GPL fs/lockd/lockd 0xc537f159 nlmclnt_init -EXPORT_SYMBOL_GPL fs/lockd/lockd 0xe62a71c8 lockd_up -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x00339a85 nfs_server_copy_userdata -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x00845edb nfs_fs_type -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0294c6a2 nfs_callback_nr_threads -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0650f5e7 nfs_sops -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0986990c nfs_add_or_obtain -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0a4aec9d nfs_file_fsync -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0e17485b nfs_file_mmap -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0fbcc255 __traceiter_nfs_fsync_exit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x10962bc2 nfs_auth_info_match -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x10ae01fb nfs4_fs_type -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x152dd21f nfs_zap_acl_cache -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x180d11cb nfs_wait_on_request -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1a97c4e2 nfs_permission -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1b841534 nfs_kill_super -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1f7d67b2 nfs_rmdir -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x205e555e nfs_commit_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x22d795a8 _nfs_display_fhandle_hash -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x22f3ed94 get_nfs_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x251480dd nfs_lookup -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x268160fd nfs_post_op_update_inode_force_wcc -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x26884ff7 nfs_alloc_fhandle -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x26b5c3c1 alloc_nfs_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x28c696a7 __traceiter_nfs_fsync_enter -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x28f58a91 nfs_file_operations -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2f35bba8 nfs_check_cache_invalid -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2f468a21 nfs_pgio_header_alloc -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2fff2069 nfs_put_lock_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x30496988 __tracepoint_nfs_fsync_enter -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x309a854c nfs_init_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3118563d nfs_pageio_init_read -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x34444105 put_nfs_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x369c44d3 nfs_file_read -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x38182cd6 nfs_try_get_tree -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x38366a8e __traceiter_nfs_xdr_status -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x38f47e9c nfs_set_cache_invalid -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x394f61fd __traceiter_nfs_xdr_bad_filehandle -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x39e05ac3 nfs_idmap_cache_timeout -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3bfd86c9 nfs_alloc_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3cfc14f0 nfs_alloc_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3d90ebf6 nfs_refresh_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3eaae7ec nfs_commitdata_alloc -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3f2690f2 nfs_check_flags -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3fcee2d5 nfs_free_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x40739385 nfs_wait_bit_killable -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4154167f nfs_fscache_open_file -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x427abc2c nfs_file_set_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x42f2c81f nfs4_client_id_uniquifier -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4494a2b3 nfs_force_lookup_revalidate -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x44cc3a41 __tracepoint_nfs_fsync_exit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x456c571a nfs_client_init_is_complete -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x459a5cae nfs_init_commit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x48b34b34 nfs_sb_active -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x49bb31db nfs_clear_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4cb9e001 recover_lost_locks -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4d04ca5d nfs_alloc_fattr_with_label -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4dca98b0 nfs_commitdata_release -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4ebea438 nfs_statfs -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4f304ecd nfs_pageio_resend -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4f74c23b nfs_unlink -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5140c813 nfs_set_verifier -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x51892d61 nfs_callback_set_tcpport -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x519f71a7 nfs_setattr -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x53ce541b nfs_do_submount -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x54b3d2c4 nfs_wait_client_init_complete -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x54db8f56 nfs_close_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x579c7d3f nfs_get_lock_context -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 0x5addb826 nfs_instantiate -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5b376b65 nfs_client_init_status -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x61a0ff31 nfs_access_add_cache -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6262a6c5 nfs_pageio_init_write -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x63a1e605 nfs_submount -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6510a0d5 unregister_nfs_version -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6763d7d2 nfs_flock -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6a3a18f1 register_nfs_version -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6e81f032 __SCK__tp_func_nfs_fsync_exit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x70425fb1 nfs_initiate_commit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x73dff4c0 __SCK__tp_func_nfs_xdr_status -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x745e18b2 nfs_rename -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x75366a4d nfs_reconfigure -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x75d902d2 nfs_alloc_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7ab6562b nfs_file_write -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7b704dfd nfs_client_for_each_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7c9722ba nfs_dreq_bytes_left -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7fecebd9 nfs_pageio_reset_write_mds -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8144a00a nfs_getattr -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8156a049 nfs_show_options -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x81eacf8e nfs_invalidate_atime -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x81edc5ae nfs_free_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x832e8f0b nfs_alloc_fattr -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x843ce210 nfs_inode_attach_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x844985ea nfs_request_add_commit_list_locked -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x86f5d246 nfs_revalidate_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8abd9f3c nfs_link -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x901780a0 nfs_init_cinfo -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9047b82a nfs_initiate_pgio -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x90a5530f nfsiod_workqueue -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x91102dc0 nfs_sb_deactive -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x91d1fe52 max_session_slots -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x93b0de3f nfs_setattr_update_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x95007f7e __SCK__tp_func_nfs_xdr_bad_filehandle -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x95116cf1 nfs_post_op_update_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9673c178 nfs_pgio_current_mirror -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x96a254ee nfs_pageio_reset_read_mds -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x96b1aa89 nfs_atomic_open -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x98b0ece8 nfs_init_timeout_values -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x996f1b86 nfs_access_get_cached -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9b8f4d60 nfs_setsecurity -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa05ca625 nfs_fattr_init -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa0cd3325 nfs_free_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa202b71a nfs_commit_free -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa2c720ea nfs_create_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa3d3b0ce nfs_file_release -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa430a8ab nfs_dentry_operations -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa7014512 nfs_show_devname -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa81184e8 nfs_drop_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa8e87d7c nfs_show_path -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa8e9e1ae send_implementation_id -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa9a24ec9 nfs_clone_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xaafd4acc max_session_cb_slots -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xab79404e nfs_create_rpc_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb060b685 nfs_scan_commit_list -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb190a700 nfs_mknod -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb550d68d nfs_retry_commit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb7d9cb3f nfs_lock -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb9fd4d1e nfs_release_request -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbb11bf60 nfs_access_zap_cache -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbbdb25a0 nfs_pgio_header_free -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbc3d153b nfs_pgheader_init -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbda7d13b nfs_server_insert_lists -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbec0d0a8 nfs_async_iocounter_wait -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc15ed992 nfs_access_set_mask -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc3a2be67 nfs_net_id -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc4515579 nfs_request_add_commit_list -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc7f3bf4a nfs_generic_pgio -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc8dce4c8 nfs_filemap_write_and_wait_range -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcb66322d nfs_init_server_rpcclient -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcdece2c7 nfs_get_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd02a80fb nfs_request_remove_commit_list -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd26bf84a nfs_wb_all -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd8c81a2d nfs_umount_begin -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdae9b5d7 nfs4_disable_idmapping -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xddb2829c nfs_sync_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xde27967d nfs_mark_client_ready -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe57ebb51 nfs_may_open -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe70507df __tracepoint_nfs_xdr_bad_filehandle -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xeac53c3d nfs_mkdir -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xeb8c48fa nfs_writeback_update_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xec505514 nfs_symlink -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xeda84965 nfs_show_stats -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf0158633 nfs_put_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf03e6111 nfs_generic_pg_test -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf0a27643 nfs_server_remove_lists -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf42ac8ba nfs4_label_alloc -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf437cf78 nfs_clear_verifier_delegated -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf548538c nfs_write_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf6913e2c nfs4_dentry_operations -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf930ea6d nfs_file_llseek -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf96f04c4 __SCK__tp_func_nfs_fsync_enter -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf9e914c2 nfs_path -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfb38592e nfs_fhget -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfc619abd _nfs_display_fhandle -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfd9429e0 nfs_probe_fsinfo -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfe4c244d nfs_create -EXPORT_SYMBOL_GPL fs/nfs/nfsv3 0x594b043e nfs3_set_ds_client -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x00609555 nfs4_pnfs_ds_put -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0125d97a __traceiter_nfs4_pnfs_commit_ds -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x04fa2bb0 pnfs_ld_read_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0545e23c pnfs_generic_recover_commit_reqs -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x054bef45 layoutstats_timer -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x05e6ddde pnfs_register_layoutdriver -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x07a8badd nfs4_mark_deviceid_available -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x07fa91dd pnfs_generic_pg_check_range -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x08b2c467 __SCK__tp_func_ff_layout_commit_error -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0a57fb3e pnfs_layout_mark_request_commit -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0a93c89b __traceiter_pnfs_mds_fallback_read_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0aebca68 __tracepoint_ff_layout_read_error -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0d3ef1dd pnfs_generic_pg_check_layout -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 0x13fb2c4b nfs4_pnfs_ds_connect -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x157a7acf pnfs_generic_layout_insert_lseg -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x18bb629e nfs4_put_deviceid_node -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1ab4a87f pnfs_generic_pg_init_write -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1af01e7b pnfs_generic_pg_cleanup -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1c90ba55 pnfs_alloc_commit_array -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1d10832f pnfs_generic_pg_init_read -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1f4690bd pnfs_generic_ds_cinfo_destroy -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x22ee6706 __traceiter_pnfs_mds_fallback_read_pagelist -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x277c32eb pnfs_report_layoutstat -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x27ad47ea __SCK__tp_func_pnfs_mds_fallback_write_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2b7350dc pnfs_error_mark_layout_for_return -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2b78a187 pnfs_generic_pg_test -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2f3338b8 pnfs_generic_pg_readpages -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2f9628a8 pnfs_ld_write_done -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 0x33b8eec2 __traceiter_nfs4_pnfs_write -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3c5ecfeb __traceiter_pnfs_mds_fallback_pg_get_mirror_count -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x433ff4dd nfs4_proc_getdeviceinfo -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4677a922 nfs4_test_session_trunk -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x474d9cc9 pnfs_generic_scan_commit_lists -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4aecfafe nfs4_decode_mp_ds_addr -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4d81b86e nfs41_sequence_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x533c198f __SCK__tp_func_nfs4_pnfs_write -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x53411c73 __traceiter_pnfs_mds_fallback_pg_init_read -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x55d1cbd7 pnfs_set_layoutcommit -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 0x5be4da04 pnfs_read_done_resend_to_mds -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5ce462a3 __tracepoint_pnfs_mds_fallback_write_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5da01652 nfs4_init_ds_session -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5e8e65ad nfs4_find_get_deviceid -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5f1ab53a pnfs_unregister_layoutdriver -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6085edbd nfs_map_string_to_numeric -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x62e88339 nfs4_schedule_migration_recovery -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6741812d nfs4_find_or_create_ds_client -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x69d3558d pnfs_generic_rw_release -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x69f5aa93 __traceiter_pnfs_mds_fallback_write_pagelist -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x737301d2 nfs4_init_deviceid_node -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x746f59e7 pnfs_destroy_layout -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 0x7f7ea73c pnfs_generic_clear_request_commit -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x82409884 __tracepoint_pnfs_mds_fallback_read_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x87138089 pnfs_generic_ds_cinfo_release_lseg -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8c0120b6 pnfs_nfs_generic_sync -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8d694c14 pnfs_read_resend_pnfs -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x91982ac2 pnfs_generic_search_commit_reqs -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x96ac4744 pnfs_set_lo_fail -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x974a1614 __tracepoint_pnfs_mds_fallback_pg_init_write -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x99330b5f nfs4_schedule_lease_moved_recovery -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9a1a74c3 __tracepoint_nfs4_pnfs_write -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9a21efb7 __traceiter_nfs4_pnfs_read -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9ef240f8 nfs4_schedule_stateid_recovery -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa06f845f nfs4_test_deviceid_unavailable -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa7e3df9e __traceiter_ff_layout_write_error -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa7fa3761 __traceiter_pnfs_mds_fallback_write_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa8274260 pnfs_update_layout -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xaa88d6e8 nfs4_schedule_session_recovery -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xac13432d pnfs_generic_commit_pagelist -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xac4c96f3 pnfs_layoutcommit_inode -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xad73153b pnfs_generic_write_commit_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb49ef4c1 pnfs_generic_sync -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb63c09fd nfs4_schedule_lease_recovery -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xba53a1ef __SCK__tp_func_pnfs_mds_fallback_pg_init_read -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbe4efdb2 __traceiter_ff_layout_read_error -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc7a9d954 __SCK__tp_func_nfs4_pnfs_read -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc7c45d11 pnfs_free_commit_array -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc83e8c9d __traceiter_ff_layout_commit_error -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xcb4f4dcb nfs4_sequence_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xcead8c78 __traceiter_pnfs_mds_fallback_pg_init_write -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xcf29b95f __tracepoint_pnfs_mds_fallback_read_pagelist -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd0ecfaad __tracepoint_pnfs_mds_fallback_pg_init_read -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd2f03307 pnfs_add_commit_array -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd4646f01 nfs4_set_rw_stateid -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd99228ac nfs42_proc_layouterror -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xdba09993 nfs4_pnfs_ds_add -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xdc417ae9 nfs4_mark_deviceid_unavailable -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xde4848ec 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 0xe639fe08 pnfs_put_lseg -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xeae8522f __tracepoint_nfs4_pnfs_commit_ds -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xeb05a839 pnfs_generic_pg_writepages -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xebfc6d60 nfs4_delete_deviceid -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 0xf5f26828 nfs4_set_ds_client -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf7801360 nfs41_maxgetdevinfo_overhead -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf999267e pnfs_generic_commit_release -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xfba85341 pnfs_generic_prepare_to_resend_writes -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xfc34ae76 nfs_remove_bad_delegation -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xfe25479d pnfs_write_done_resend_to_mds -EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x1fe1e1ad locks_end_grace -EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x58c76aad locks_start_grace -EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x5b6566a3 locks_in_grace -EXPORT_SYMBOL_GPL fs/nfs_common/grace 0xe2cdb0f9 opens_in_grace -EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x0a59d4e0 nfsacl_encode -EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x4939dc2b nfs_stream_encode_acl -EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x649913a2 nfs_stream_decode_acl -EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0xbddd504e nfsacl_decode -EXPORT_SYMBOL_GPL fs/nfsd/nfsd 0xa8ff98dd 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 0x429b049f o2hb_unregister_callback -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x4900035b o2hb_stop_all_regions -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x58c88ff2 o2hb_get_all_regions -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x5e95a4b2 o2net_send_message_vec -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x6a0c3847 __mlog_printk -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x6ef9d6c3 o2hb_register_callback -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x7fed9662 o2nm_get_node_by_ip -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x81a17396 mlog_and_bits -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa30699b9 o2hb_setup_callback -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa5b72e71 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 0xcf253059 o2nm_get_node_by_num -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xd859ac8c o2net_fill_node_map -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xe4b7fd79 o2nm_node_put -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 0x4e855cf0 dlm_print_one_lock -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x570f3629 dlmlock -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x7a1211f8 dlm_setup_eviction_cb -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x841debf0 dlm_unregister_domain -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xa48b0277 dlm_register_domain -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xcc393c99 dlmunlock -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xd0095038 dlm_register_eviction_cb -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xd7ba575e dlm_errmsg -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xd8fa57a6 dlm_unregister_eviction_cb -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 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 0x11906515 ocfs2_plock -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x1475f64b ocfs2_dlm_lvb_valid -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x38e9ef71 ocfs2_stack_glue_unregister -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x4d3af7fa ocfs2_cluster_hangup -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x67716e34 ocfs2_kset -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x76f40744 ocfs2_dlm_lvb -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x8b3a37bf ocfs2_stack_glue_register -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x9507547f ocfs2_cluster_disconnect -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xaf969565 ocfs2_dlm_lock -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xbbc4ef97 ocfs2_stack_supports_plocks -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 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 0x95a0fb80 register_pstore_device -EXPORT_SYMBOL_GPL fs/pstore/pstore_blk 0xcb8e8dd1 unregister_pstore_device -EXPORT_SYMBOL_GPL fs/pstore/pstore_zone 0x1af18f53 unregister_pstore_zone -EXPORT_SYMBOL_GPL fs/pstore/pstore_zone 0x5e46c5d3 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 0x951ef5ed notifier_err_inject_init -EXPORT_SYMBOL_GPL lib/notifier-error-inject 0xb154968e 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 0x179ea7e8 lowpan_header_decompress -EXPORT_SYMBOL_GPL net/6lowpan/6lowpan 0xb518856c lowpan_header_compress -EXPORT_SYMBOL_GPL net/802/garp 0x2d167b44 garp_request_join -EXPORT_SYMBOL_GPL net/802/garp 0x8463e64f garp_uninit_applicant -EXPORT_SYMBOL_GPL net/802/garp 0x924a19c1 garp_register_application -EXPORT_SYMBOL_GPL net/802/garp 0x9f01cf3f garp_init_applicant -EXPORT_SYMBOL_GPL net/802/garp 0xee9e1b81 garp_unregister_application -EXPORT_SYMBOL_GPL net/802/garp 0xf399e3b3 garp_request_leave -EXPORT_SYMBOL_GPL net/802/mrp 0x15705050 mrp_unregister_application -EXPORT_SYMBOL_GPL net/802/mrp 0x23ebb36a mrp_register_application -EXPORT_SYMBOL_GPL net/802/mrp 0x28f75e92 mrp_request_join -EXPORT_SYMBOL_GPL net/802/mrp 0x63eb38f4 mrp_uninit_applicant -EXPORT_SYMBOL_GPL net/802/mrp 0x76e1c28b mrp_init_applicant -EXPORT_SYMBOL_GPL net/802/mrp 0xcb7a9cd9 mrp_request_leave -EXPORT_SYMBOL_GPL net/802/stp 0x3c7ba959 stp_proto_register -EXPORT_SYMBOL_GPL net/802/stp 0x70d2363d stp_proto_unregister -EXPORT_SYMBOL_GPL net/9p/9pnet 0x25168104 p9_client_xattrcreate -EXPORT_SYMBOL_GPL net/9p/9pnet 0x9e6e6305 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 0xac93ae05 ax25_bcast -EXPORT_SYMBOL_GPL net/ax25/ax25 0xaeb7451e ax25_defaddr -EXPORT_SYMBOL_GPL net/ax25/ax25 0xd23b83ae ax25_register_pid -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x075fe2ca bt_debugfs -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x16532e40 l2cap_chan_set_defaults -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x31bb3ebb l2cap_chan_del -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x66407972 l2cap_chan_put -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x89651606 l2cap_chan_list -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x93d7c9cc l2cap_chan_create -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xa4be43dd l2cap_add_psm -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xb6f60109 l2cap_chan_connect -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xf91790e0 l2cap_chan_send -EXPORT_SYMBOL_GPL net/bluetooth/hidp/hidp 0xca51415d hidp_hid_driver -EXPORT_SYMBOL_GPL net/bridge/bridge 0x103d3247 br_vlan_get_info -EXPORT_SYMBOL_GPL net/bridge/bridge 0x16c090db br_fdb_clear_offload -EXPORT_SYMBOL_GPL net/bridge/bridge 0x174e8563 br_vlan_get_pvid -EXPORT_SYMBOL_GPL net/bridge/bridge 0x32fb1548 br_forward_finish -EXPORT_SYMBOL_GPL net/bridge/bridge 0x34224dcb br_get_ageing_time -EXPORT_SYMBOL_GPL net/bridge/bridge 0x36b57356 br_multicast_list_adjacent -EXPORT_SYMBOL_GPL net/bridge/bridge 0x3f7d1507 br_multicast_has_router_adjacent -EXPORT_SYMBOL_GPL net/bridge/bridge 0x44b172d1 br_multicast_has_querier_anywhere -EXPORT_SYMBOL_GPL net/bridge/bridge 0x78f468a3 br_fdb_find_port -EXPORT_SYMBOL_GPL net/bridge/bridge 0x8348c999 br_handle_frame_finish -EXPORT_SYMBOL_GPL net/bridge/bridge 0x89d48c7d br_forward -EXPORT_SYMBOL_GPL net/bridge/bridge 0x8e797705 br_vlan_get_pvid_rcu -EXPORT_SYMBOL_GPL net/bridge/bridge 0x9b3f1670 br_port_flag_is_set -EXPORT_SYMBOL_GPL net/bridge/bridge 0x9e021048 br_multicast_has_querier_adjacent -EXPORT_SYMBOL_GPL net/bridge/bridge 0xb234accc br_multicast_router -EXPORT_SYMBOL_GPL net/bridge/bridge 0xc429d75b br_vlan_get_proto -EXPORT_SYMBOL_GPL net/bridge/bridge 0xc7f8b419 br_dev_queue_push_xmit -EXPORT_SYMBOL_GPL net/bridge/bridge 0xcc4655bf br_multicast_enabled -EXPORT_SYMBOL_GPL net/bridge/bridge 0xde850a90 br_vlan_get_info_rcu -EXPORT_SYMBOL_GPL net/bridge/bridge 0xe807f162 br_vlan_enabled -EXPORT_SYMBOL_GPL net/bridge/bridge 0xeff1a821 nf_br_ops -EXPORT_SYMBOL_GPL net/bridge/bridge 0xf59aa469 br_port_get_stp_state -EXPORT_SYMBOL_GPL net/core/failover 0x38ab57c8 failover_slave_unregister -EXPORT_SYMBOL_GPL net/core/failover 0xdeb53e47 failover_register -EXPORT_SYMBOL_GPL net/core/failover 0xfaef750c failover_unregister -EXPORT_SYMBOL_GPL net/dccp/dccp 0x02dfc02d inet_dccp_listen -EXPORT_SYMBOL_GPL net/dccp/dccp 0x0aeba397 dccp_disconnect -EXPORT_SYMBOL_GPL net/dccp/dccp 0x140e8636 dccp_rcv_established -EXPORT_SYMBOL_GPL net/dccp/dccp 0x175673ff dccp_ctl_make_reset -EXPORT_SYMBOL_GPL net/dccp/dccp 0x182ec2bf dccp_ackvec_parsed_add -EXPORT_SYMBOL_GPL net/dccp/dccp 0x2af84047 dccp_poll -EXPORT_SYMBOL_GPL net/dccp/dccp 0x35b49a6a dccp_reqsk_send_ack -EXPORT_SYMBOL_GPL net/dccp/dccp 0x37f2147b dccp_parse_options -EXPORT_SYMBOL_GPL net/dccp/dccp 0x39e9f28b dccp_send_ack -EXPORT_SYMBOL_GPL net/dccp/dccp 0x41b39ee7 dccp_insert_option -EXPORT_SYMBOL_GPL net/dccp/dccp 0x478e4b1e dccp_child_process -EXPORT_SYMBOL_GPL net/dccp/dccp 0x486be39d dccp_check_req -EXPORT_SYMBOL_GPL net/dccp/dccp 0x4b2a9aa5 dccp_ioctl -EXPORT_SYMBOL_GPL net/dccp/dccp 0x4cdd391d dccp_feat_list_purge -EXPORT_SYMBOL_GPL net/dccp/dccp 0x59814a84 dccp_statistics -EXPORT_SYMBOL_GPL net/dccp/dccp 0x5d25ef86 dccp_send_sync -EXPORT_SYMBOL_GPL net/dccp/dccp 0x5db9da18 dccp_shutdown -EXPORT_SYMBOL_GPL net/dccp/dccp 0x61f83d42 dccp_rcv_state_process -EXPORT_SYMBOL_GPL net/dccp/dccp 0x722630de dccp_hashinfo -EXPORT_SYMBOL_GPL net/dccp/dccp 0x7756c0ca dccp_feat_signal_nn_change -EXPORT_SYMBOL_GPL net/dccp/dccp 0x7b5ca848 dccp_setsockopt -EXPORT_SYMBOL_GPL net/dccp/dccp 0x7e722dcc dccp_make_response -EXPORT_SYMBOL_GPL net/dccp/dccp 0x80993155 dccp_timestamp -EXPORT_SYMBOL_GPL net/dccp/dccp 0x82f8a68c dccp_init_sock -EXPORT_SYMBOL_GPL net/dccp/dccp 0x86be7924 dccp_packet_name -EXPORT_SYMBOL_GPL net/dccp/dccp 0x884a32bd dccp_death_row -EXPORT_SYMBOL_GPL net/dccp/dccp 0x9598d24d dccp_ackvec_parsed_cleanup -EXPORT_SYMBOL_GPL net/dccp/dccp 0x963aea9c dccp_destruct_common -EXPORT_SYMBOL_GPL net/dccp/dccp 0x9765e643 dccp_getsockopt -EXPORT_SYMBOL_GPL net/dccp/dccp 0x9d07af09 dccp_create_openreq_child -EXPORT_SYMBOL_GPL net/dccp/dccp 0xb17a08e7 dccp_reqsk_init -EXPORT_SYMBOL_GPL net/dccp/dccp 0xb1b6bd94 dccp_recvmsg -EXPORT_SYMBOL_GPL net/dccp/dccp 0xbaf0e8d2 dccp_done -EXPORT_SYMBOL_GPL net/dccp/dccp 0xd04c574e dccp_feat_nn_get -EXPORT_SYMBOL_GPL net/dccp/dccp 0xd64c7a50 dccp_close -EXPORT_SYMBOL_GPL net/dccp/dccp 0xd75b7072 dccp_orphan_count -EXPORT_SYMBOL_GPL net/dccp/dccp 0xe57be77a dccp_set_state -EXPORT_SYMBOL_GPL net/dccp/dccp 0xeb0d8a01 dccp_sendmsg -EXPORT_SYMBOL_GPL net/dccp/dccp 0xeed68937 dccp_destroy_sock -EXPORT_SYMBOL_GPL net/dccp/dccp 0xfd3b2dd3 dccp_sync_mss -EXPORT_SYMBOL_GPL net/dccp/dccp 0xfed7fe21 dccp_connect -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x34f486c5 dccp_v4_conn_request -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x4f060ca2 dccp_v4_send_check -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x4ff33bb9 dccp_invalid_packet -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x730e80b0 dccp_v4_request_recv_sock -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x7eba3bbd dccp_v4_connect -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x88d49f95 dccp_v4_do_rcv -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x05cfeaab dsa_dev_to_net_device -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x092ee994 dsa_switch_suspend -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x0e33d6c4 dsa_switch_shutdown -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x28135919 dsa_slave_dev_check -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x396c4c6a dsa_tag_drivers_register -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x3da3e820 dsa_port_phylink_mac_change -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x40d39bdc dsa_devlink_resource_occ_get_register -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x417d1fed dsa_8021q_rx_switch_id -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x422513fe dsa_8021q_tx_vid -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x4b684acc dsa_unregister_switch -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x4ee1e9c4 dsa_enqueue_skb -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x5481b2c5 dsa_tag_8021q_bridge_tx_fwd_offload -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x5928bba7 vid_is_dsa_8021q_rxvlan -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x5959381e dsa_tag_8021q_bridge_tx_fwd_unoffload -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x5c62101c dsa_8021q_xmit -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x6294b209 dsa_register_switch -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x6a3b8924 dsa_devlink_resources_unregister -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x76a8f83d dsa_switch_find -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x8b2a7559 dsa_port_from_netdev -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x934b9181 dsa_8021q_rcv -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x9410f21a dsa_devlink_params_register -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x96af4166 dsa_switch_resume -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x9e59271d dsa_8021q_rx_source_port -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xaa54660e dsa_devlink_port_region_create -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xb2f85a3c dsa_8021q_rx_vid -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xb89b7c24 dsa_devlink_params_unregister -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xbe3856fc dsa_8021q_bridge_tx_fwd_offload_vid -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xbfd4e895 dsa_tag_8021q_unregister -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xc219f148 dsa_tag_8021q_register -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xc23e8d5f dsa_devlink_region_destroy -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xc7f6a801 dsa_port_get_ethtool_phy_stats -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xe2a6b41d dsa_devlink_resource_occ_get_unregister -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xeb980d7b dsa_port_get_phy_sset_count -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xee8ba0df dsa_tag_drivers_unregister -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xf06da311 dsa_devlink_param_get -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xf13e1803 vid_is_dsa_8021q -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xf25b380d dsa_devlink_region_create -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xf6f3b5c8 vid_is_dsa_8021q_txvlan -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xf9098e51 dsa_port_get_phy_strings -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xfa828389 dsa_devlink_resource_register -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xfd5b37db dsa_devlink_param_set -EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x0bcf5caf ieee802154_hdr_peek -EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x1f857c5e ieee802154_hdr_peek_addrs -EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x87e2553b ieee802154_max_payload -EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0xae877b3c ieee802154_hdr_push -EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0xd33a32de ieee802154_hdr_pull -EXPORT_SYMBOL_GPL net/ife/ife 0x0b23aabf ife_decode -EXPORT_SYMBOL_GPL net/ife/ife 0x2bf70de0 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 0xba8dd302 esp_input_done2 -EXPORT_SYMBOL_GPL net/ipv4/esp4 0xe8d16ed0 esp_output_head -EXPORT_SYMBOL_GPL net/ipv4/esp4 0xef67ffbf esp_output_tail -EXPORT_SYMBOL_GPL net/ipv4/gre 0x8fc84953 gre_del_protocol -EXPORT_SYMBOL_GPL net/ipv4/gre 0xe0373bb1 gre_add_protocol -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x0c3c5834 inet_diag_dump_one_icsk -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x2ad90468 inet_sk_diag_fill -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x38344499 inet_diag_msg_common_fill -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x5f0dadf8 inet_diag_msg_attrs_fill -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x74000bbe inet_diag_find_one_icsk -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x89de5208 inet_diag_dump_icsk -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xab6838b8 inet_diag_register -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xbcca8047 inet_diag_bc_sk -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xc8fac2ae inet_diag_unregister -EXPORT_SYMBOL_GPL net/ipv4/ip_gre 0x82917307 gretap_fb_dev_create -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x0f5856fb __ip_tunnel_change_mtu -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x13bb52ee ip_tunnel_init -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x1af03c0c ip_tunnel_ctl -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x2129119b ip_tunnel_uninit -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x4cf31cfe ip_tunnel_lookup -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x701cd720 ip_tunnel_rcv -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x750fdf70 ip_tunnel_siocdevprivate -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x8767c9c8 ip_tunnel_xmit -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x8d30479d ip_tunnel_delete_nets -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x99713ccd ip_tunnel_encap_setup -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xb08abb22 ip_tunnel_setup -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xb2d8821d ip_tunnel_newlink -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xb45c2a0f ip_tunnel_init_net -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xd5ea3bf0 ip_tunnel_dellink -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xdc77188a ip_md_tunnel_xmit -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xf6d5255e ip_tunnel_change_mtu -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xf73474f9 ip_tunnel_changelink -EXPORT_SYMBOL_GPL net/ipv4/netfilter/arp_tables 0xf14843d6 arpt_alloc_initial_table -EXPORT_SYMBOL_GPL net/ipv4/netfilter/ip_tables 0x02415eb9 ipt_alloc_initial_table -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_defrag_ipv4 0x700167fc nf_defrag_ipv4_disable -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_defrag_ipv4 0x7963adec nf_defrag_ipv4_enable -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_dup_ipv4 0x3e3fac01 nf_dup_ipv4 -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x04a5d36a nf_reject_ip_tcphdr_get -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x122a0aab nf_reject_iphdr_put -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x23ee938a nf_send_unreach -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xa512475b nf_send_reset -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xc3832b03 nf_reject_skb_v4_unreach -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xd094dc35 nf_reject_ip_tcphdr_put -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xf6f77057 nf_reject_skb_v4_tcp_reset -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_socket_ipv4 0xe7d865e1 nf_sk_lookup_slow_v4 -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0x19e67e27 nf_tproxy_get_sock_v4 -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0xa5933802 nf_tproxy_handle_time_wait4 -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0xd3aa8d69 nf_tproxy_laddr4 -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nft_fib_ipv4 0x33354845 nft_fib4_eval -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nft_fib_ipv4 0x52428903 nft_fib4_eval_type -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x1259db80 tcp_vegas_pkts_acked -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x68ac7901 tcp_vegas_get_info -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x7ff44cb8 tcp_vegas_state -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x8267b373 tcp_vegas_cwnd_event -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xce13d37c tcp_vegas_init -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x061985b9 udp_tunnel_notify_del_rx_port -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x0704f085 udp_tunnel_notify_add_rx_port -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x0e556f0e udp_tun_rx_dst -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x32779525 udp_tunnel_sock_release -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x869ce44a udp_tunnel_xmit_skb -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x8f034bea setup_udp_tunnel_sock -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xd5fc1352 udp_tunnel_drop_rx_port -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xfd5ea23b udp_tunnel_push_rx_port -EXPORT_SYMBOL_GPL net/ipv6/esp6 0x4f05cd12 esp6_output_tail -EXPORT_SYMBOL_GPL net/ipv6/esp6 0xc8fe9fe8 esp6_input_done2 -EXPORT_SYMBOL_GPL net/ipv6/esp6 0xd5bc9d86 esp6_output_head -EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x75b58673 ip6_tnl_xmit_ctl -EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0xaf57e605 ip6_tnl_rcv_ctl -EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0xb9e27047 ip6_tnl_encap_setup -EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0x6a0b210e udp_tunnel6_xmit_skb -EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0xe74cd98b udp_sock_create6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/ip6_tables 0x4337f4a3 ip6t_alloc_initial_table -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x294c3d11 nf_ct_frag6_gather -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x918fdf7f nf_defrag_ipv6_disable -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0xe4220ee5 nf_defrag_ipv6_enable -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_dup_ipv6 0x48b4e52d nf_dup_ipv6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x02503537 nf_send_unreach6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x029f6ee6 nf_reject_skb_v6_tcp_reset -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x19edfbee nf_reject_ip6_tcphdr_put -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x1dea805f nf_reject_ip6hdr_put -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x52280b60 nf_send_reset6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x90376965 nf_reject_skb_v6_unreach -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xc598e6f7 nf_reject_ip6_tcphdr_get -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_socket_ipv6 0x60bfc488 nf_sk_lookup_slow_v6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0x652f444b nf_tproxy_handle_time_wait6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0xb232ffbb nf_tproxy_get_sock_v6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0xe90be193 nf_tproxy_laddr6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nft_fib_ipv6 0x5bc50063 nft_fib6_eval_type -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nft_fib_ipv6 0xffd61458 nft_fib6_eval -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x097fa91c l2tp_session_delete -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x1265c3ca l2tp_recv_common -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x191f19a8 l2tp_tunnel_get_nth -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x1be2bbef l2tp_session_get_by_ifname -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x219e7500 l2tp_tunnel_dec_refcount -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x32b9c684 l2tp_session_get_nth -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x336a5607 l2tp_session_get -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x36b5c79b l2tp_tunnel_inc_refcount -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x37122092 l2tp_tunnel_get -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x444c4c6a l2tp_udp_encap_recv -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x5024914e l2tp_session_register -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x57d2bfeb l2tp_session_create -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x6ec3271b l2tp_session_set_header_len -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x82d2209b l2tp_session_dec_refcount -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x98021d25 l2tp_tunnel_register -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xa96af44c l2tp_session_inc_refcount -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xbc23ef2f l2tp_tunnel_get_session -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xed7bd6ff l2tp_sk_to_tunnel -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xf3a2229a l2tp_xmit_skb -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xf9e234e3 l2tp_tunnel_delete -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xfe010579 l2tp_tunnel_create -EXPORT_SYMBOL_GPL net/l2tp/l2tp_ip 0xbacaf825 l2tp_ioctl -EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0x337f2432 l2tp_nl_unregister_ops -EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0x78346328 l2tp_nl_register_ops -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x03fbe8d8 ieee80211_iterate_active_interfaces_atomic -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x1b84b1a7 ieee80211_color_change_finish -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x214dead9 ieee80211_iterate_active_interfaces_mtx -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x375f6a2a wdev_to_ieee80211_vif -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x3bfe5bc2 ieee80211_ave_rssi -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x44ad7792 ieee80211_resume_disconnect -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x48e0047a ieee80211_ready_on_channel -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 0x66b6c29c ieee80211_remain_on_channel_expired -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x6747c946 ieee80211_calc_rx_airtime -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x6c43fc5e ieee80211_find_sta_by_ifaddr -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x7a08d5f4 ieee80211_iterate_stations_atomic -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x7b4b8cbc ieee80211_update_mu_groups -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x8a28f2a1 ieee80211_iter_chan_contexts_atomic -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x8d1527d0 ieee80211_calc_tx_airtime -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x9f75a167 ieee80211_gtk_rekey_add -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 0xaa9c74a3 ieeee80211_obss_color_collision_notify -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xae9bcde9 ieee80211_gtk_rekey_notify -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xc3de4a9f ieee80211_request_smps -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xc7677ae6 ieee80211_iterate_interfaces -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xd8e09da4 ieee80211_set_key_rx_seq -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xdd97af31 ieee80211_vif_to_wdev -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x7670b536 nla_get_labels -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x9f9fbd0b mpls_stats_inc_outucastpkts -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xb27ce0e4 mpls_pkt_too_big -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xb303522f mpls_output_possible -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xcf4ee179 nla_put_labels -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xecb356af mpls_dev_mtu -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x141c5759 ip_set_nfnl_get_byindex -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x1898fa9d ip_set_name_byindex -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x1c31244e ip_set_match_extensions -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x22d966c6 ip_set_range_to_cidr -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x2393fec1 ip_set_get_extensions -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x3018aa4a ip_set_put_flags -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x328211d4 ip_set_extensions -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x397f6231 ip_set_free -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x3f5dd50d ip_set_type_register -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x5fff7501 ip_set_type_unregister -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x6239e7d3 ip_set_add -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x672ba5e1 ip_set_init_comment -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x7924b6de ip_set_hostmask_map -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x79cf724d ip_set_put_extensions -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x81260044 ip_set_get_ip6_port -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x81fff2d1 ip_set_netmask_map -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x8f33a174 ip_set_get_ip4_port -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x9781db45 ip_set_elem_len -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x98f8aa6d ip_set_test -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x9e98722b ip_set_get_ipaddr6 -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xa0f2a025 ip_set_del -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xa293f8a6 ip_set_get_ipaddr4 -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xc344c615 ip_set_put_byindex -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xc58684e4 ip_set_nfnl_put -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xf3b4d4ae ip_set_alloc -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xfb0b80f4 ip_set_get_byname -EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x00baa9e1 ip_vs_conn_in_get_proto -EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x1d996f9b ip_vs_conn_out_get_proto -EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x7d2d5a80 unregister_ip_vs_pe -EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0xd6265133 register_ip_vs_pe -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 0x9a2d65c2 nf_conncount_init -EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0xa65f3bba nf_conncount_count -EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0xbeed8c16 nf_conncount_destroy -EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0xc4510424 nf_conncount_gc_list -EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0xfc98dfc6 nf_conncount_add -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0425c3cc nf_ct_helper_init -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x05126c9a nf_conntrack_helper_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x06bd3f39 nf_connlabels_replace -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x077c393f nf_nat_helper_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x07e7512a nf_ct_iterate_cleanup_net -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x096df7a7 nf_ct_timeout_find_get_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0bc00f80 nf_nat_helper_try_module_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0bc39af3 nf_ct_expect_put -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1260aa27 nf_ct_get_id -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1305eba3 nf_conntrack_helpers_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x131a9c67 nf_ct_expect_alloc -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1525a87d nf_conntrack_helper_put -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x16784b58 nf_nat_helper_put -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x17f9857c nf_ct_destroy_timeout -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x19a4e195 nf_conntrack_helper_try_module_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1ac4612a nf_confirm -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x23e419b1 nf_conntrack_alter_reply -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x245a0c87 nf_ct_extend_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x282bba9a nf_ct_helper_expectfn_find_by_name -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x289a3032 nf_ct_port_tuple_to_nlattr -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 0x29d06a26 nf_ct_acct_add -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2cbe329a nf_ct_seq_offset -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x311b53e0 nf_ct_netns_put -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3a246dc5 nf_ct_unlink_expect_report -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3c4a858f nf_conntrack_tuple_taken -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3dfe7846 nf_ct_remove_expect -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x40687fee __nf_ct_try_assign_helper -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4714fcb6 nf_ct_timeout_put_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x492b1e47 nf_conntrack_helpers_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5240eb56 nf_ct_delete -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x56ab3909 nf_ct_set_timeout -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5a119178 nf_ct_tmpl_alloc -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5cbf77be __nf_conntrack_helper_find -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x60bd2056 nf_ct_seqadj_init -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x63e821ac nf_ct_helper_ext_add -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6407a276 nf_ct_expect_iterate_net -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6476805a nf_ct_helper_expectfn_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x64d91898 nf_ct_helper_expectfn_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x65e78af7 nf_conntrack_free -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6735949a nf_ct_expect_iterate_destroy -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x68517049 nf_conntrack_unregister_notifier -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x693c3961 nf_ct_helper_hash -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6e0949c3 nf_ct_gre_keymap_destroy -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x772c9954 nf_conntrack_eventmask_report -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7871e165 nf_conntrack_hash_check_insert -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8250a45c nf_ct_untimeout -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8296428b nf_ct_extend_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8bd7df55 nf_ct_remove_expectations -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8c415933 nf_conntrack_alloc -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8ffe7e89 nf_conntrack_htable_size -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x94ae548f nf_ct_tcp_seqadj_set -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x96514981 nf_ct_expect_find_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9664af06 nf_nat_helper_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9adb7399 nf_conntrack_expect_lock -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9d27ebdf nf_ct_iterate_destroy -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9d83d12e nf_ct_set_auto_assign_helper_warned -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa4d9187a __nf_ct_expect_find -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa7cd9a0e nf_ct_unconfirmed_destroy -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa8de9a0f nf_ct_netns_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa8ffe676 nf_ct_unexpect_related -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa9cd6384 nf_ct_l4proto_find -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xaae127da nf_ct_seq_adjust -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xac7d9f5c nf_l4proto_log_invalid -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 0xb02082ed nf_ct_get_tuplepr -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb0e269a4 nf_ct_helper_expectfn_find_by_symbol -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb0f47779 nf_ct_expect_init -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb2a1708a nf_ct_bridge_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb9964baa nf_ct_l4proto_log_invalid -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc18ac88d nf_ct_expect_hsize -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc18ce4eb nf_connlabels_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc3962f8e __nf_ct_refresh_acct -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc40f284c nf_ct_helper_hsize -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc44274b3 nf_ct_bridge_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc45bc146 nf_conntrack_in -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc5e5e6e4 nf_ct_expect_related_report -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc5f97fb0 nf_ct_kill_acct -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc6d03993 nf_conntrack_register_notifier -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd505c3e0 nf_ct_port_nlattr_tuple_size -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd86916c3 nf_ct_seqadj_set -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 0xdf690d1d nf_ct_gre_keymap_add -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe3f9d67b nf_connlabels_put -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe73b7883 nf_conntrack_helper_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xebd6a7ef __nf_conntrack_confirm -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xec8beba6 nf_ct_expect_hash -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf02cf1db nf_ct_tmpl_free -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf1d98832 nf_conntrack_count -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf227639e nf_ct_helper_log -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf38bcdf3 nf_conntrack_max -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf716e754 nf_ct_deliver_cached_events -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf71c44b8 nf_conntrack_find_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfe731af8 nf_ct_invert_tuple -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_amanda 0x0a314622 nf_nat_amanda_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_broadcast 0xb2ef52dc nf_conntrack_broadcast_help -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_ftp 0xf3c86f6d nf_nat_ftp_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x595a0976 set_h225_addr_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x5cc6ee7e set_h245_addr_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x5cfd0551 nat_t120_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x64531be3 nat_rtp_rtcp_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x697c0910 get_h225_addr -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x7f730a25 nat_callforwarding_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xb4667d14 nat_h245_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xd009f085 set_ras_addr_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xe54dec9f nat_q931_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xf35e069b set_sig_addr_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_irc 0x08d66a79 nf_nat_irc_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x7d3a9e1f nf_nat_pptp_hook_expectfn -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0xa90b9445 nf_nat_pptp_hook_inbound -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0xacbafb5f nf_nat_pptp_hook_outbound -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0xfa7a7e89 nf_nat_pptp_hook_exp_gre -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x061801d4 ct_sip_get_header -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x1fd19d3b ct_sip_parse_header_uri -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x4cc9462f ct_sip_parse_numerical_param -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x5cabf79a nf_nat_sip_hooks -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x70ff24ff ct_sip_get_sdp_header -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xb8cb8d5c ct_sip_parse_address_param -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xd9c516da ct_sip_parse_request -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_snmp 0x6e123412 nf_nat_snmp_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_tftp 0xde88c3aa nf_nat_tftp_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0x0521b1ea nf_dup_netdev_egress -EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0x4aeba86e nf_fwd_netdev_egress -EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0xdfd8930a nft_fwd_dup_netdev_offload -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x01e86f9d nf_flow_table_init -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x06e9fdfd flow_offload_add -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x07319177 nf_flow_offload_ipv6_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x28897f10 flow_offload_teardown -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x304452b8 nf_flow_rule_route_ipv6 -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x34ef80b9 flow_offload_alloc -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x50c73a6f nf_flow_table_offload_setup -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x64a23735 nf_flow_table_free -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x6ccc36f4 nf_flow_dnat_port -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x748b942a flow_offload_free -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x766ee353 flow_offload_lookup -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x8afef6cf flow_offload_route_init -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xa8ae6223 flow_offload_refresh -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xb65dfd59 nf_flow_table_cleanup -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xc4ebdfa2 nf_flow_rule_route_ipv4 -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xe60d5757 nf_flow_offload_ip_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xeb647763 nf_flow_snat_port -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x140e2320 nf_nat_inet_unregister_fn -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x1f447c66 nf_nat_icmpv6_reply_translation -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x27e2f688 nf_nat_redirect_ipv4 -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x2b7fd8dd nf_nat_ipv6_register_fn -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x2c97734e nf_nat_masquerade_ipv6 -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x30ba025b nf_nat_alloc_null_binding -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x3bc17c49 nf_nat_masquerade_inet_register_notifiers -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x3fb463d5 nf_nat_masquerade_ipv4 -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x532d2a01 nf_ct_nat_ext_add -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x6c5c4f3d nf_nat_redirect_ipv6 -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x6e7c3d7c nf_nat_ipv6_unregister_fn -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x774d8eb9 nf_nat_packet -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xaa557c3c nf_nat_ipv4_register_fn -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xcac272b3 nf_nat_inet_fn -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xd5dc23b4 nf_nat_icmp_reply_translation -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xd8cc240a nf_nat_inet_register_fn -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xd9c25654 nf_nat_masquerade_inet_unregister_notifiers -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xf8a2190a nf_nat_ipv4_unregister_fn -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x00236cde nf_synproxy_ipv4_init -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x150f14d2 nf_synproxy_ipv4_fini -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x1f099794 synproxy_init_timestamp_cookie -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x5974428c synproxy_send_client_synack -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x5bba7a8b ipv4_synproxy_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x684b57da synproxy_recv_client_ack -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x789af96e synproxy_parse_options -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xac12e78d nf_synproxy_ipv6_fini -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xacb7cfb5 synproxy_send_client_synack_ipv6 -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xb15d1fd2 ipv6_synproxy_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xb93e9f81 nf_synproxy_ipv6_init -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xca9fc082 synproxy_net_id -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xe945f610 synproxy_recv_client_ack_ipv6 -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x06c6ca47 nft_meta_policy -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x0cacb633 nft_chain_validate -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x131dd149 nft_register_chain_type -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x14ea7dec nft_dump_register -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x18eda9ad nf_tables_deactivate_flowtable -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x1e1448e3 nft_meta_set_init -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x1f2cbb44 nft_register_obj -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x3244bd4e 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 0x3550e03c nft_meta_set_dump -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x3f8528ad nft_meta_get_init -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x41b71e65 nft_trace_enabled -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x4244a6e5 nf_tables_bind_set -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x4d9c0b76 nft_register_expr -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x519e1c0c nft_meta_get_dump -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x5553da6a nft_unregister_chain_type -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x57592fe8 nft_request_module -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x6b10e702 __nft_release_basechain -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x8199c678 nft_register_flowtable_type -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x85a0146b nft_meta_set_destroy -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x8b5ae838 nft_chain_validate_dependency -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x8e80588e nf_tables_destroy_set -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x8fc6c3ec nft_obj_lookup -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x924f9363 nf_tables_deactivate_set -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xb3bd62b8 nft_data_release -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xb3c20bf3 nft_set_elem_destroy -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xbaf5f825 nft_unregister_flowtable_type -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xbed0d4a4 nft_meta_set_eval -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xc23cd9bb nft_chain_validate_hooks -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xc71a1912 nft_flowtable_lookup -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xc7f27cef nft_meta_set_validate -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xcf88be69 nft_unregister_expr -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xd3b2ff57 nf_tables_activate_set -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xd5f54a4f nft_do_chain -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xdd345c7a nft_meta_get_eval -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xde57b5f5 nft_parse_u32_check -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xe2b8cc13 nft_parse_register_load -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xe621c7bf nft_unregister_obj -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xe6b9b756 nft_parse_register_store -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xe6d97472 nft_data_dump -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xe7e37a40 nft_data_init -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xeda409fe nft_set_lookup_global -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xf191d18d nft_obj_notify -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x06c845d4 nfnetlink_set_err -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x15623e23 nfnetlink_broadcast -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x1b46993a nfnetlink_unicast -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x4b21d0e2 nfnetlink_has_listeners -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x5ce3b588 nfnl_lock -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x72cfc24d nfnetlink_subsys_register -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x8520269e nfnetlink_subsys_unregister -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xadb51572 nfnetlink_send -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xdb065657 nfnl_unlock -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x3bae634c nfnl_acct_overquota -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x760ce1a6 nfnl_acct_find_get -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xb8ad68cb 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 0xa39448bd nf_osf_match -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_osf 0xd2824752 nf_osf_find -EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0x21c5d0b0 nft_fib_store_result -EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0x6216b94d nft_fib_dump -EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0x86093cc8 nft_fib_validate -EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0xa1ff9a2b nft_fib_init -EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x1c494703 nft_reject_init -EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x1de558c1 nft_reject_icmpv6_code -EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x6081751d nft_reject_policy -EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xa6d8a0c3 nft_reject_validate -EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xb53cde39 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 0x20d1da3f xt_target_to_user -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x247fd5fe xt_hook_ops_alloc -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x357511a2 xt_compat_match_offset -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x368e1916 xt_register_template -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x3a300fc0 xt_register_table -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x3d712fe4 xt_proto_fini -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x47fcb09d xt_compat_target_to_user -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x552825ea xt_table_unlock -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x55d41539 xt_compat_match_from_user -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x58481424 xt_replace_table -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x5cfa2a73 xt_unregister_table -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x5f23b8e6 xt_check_target -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x63625a2c xt_find_table_lock -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x652a4e34 xt_proto_init -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 0x855ef5ba xt_compat_target_from_user -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x966fbef5 xt_unregister_template -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x96e4e647 xt_match_to_user -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 0xa9821ae8 xt_check_match -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 0xdff0a855 xt_request_find_table_lock -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xe6d8447e xt_compat_target_offset -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xea6e6122 xt_request_find_match -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xeb31f299 xt_request_find_target -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xf3b60b35 xt_compat_match_to_user -EXPORT_SYMBOL_GPL net/netfilter/xt_RATEEST 0x0631bdf7 xt_rateest_put -EXPORT_SYMBOL_GPL net/netfilter/xt_RATEEST 0x2d4dde97 xt_rateest_lookup -EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0x1ebe556f nci_spi_read -EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0x4944d9f5 nci_spi_send -EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0xf343e94a nci_spi_allocate_spi -EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0x08b8bfe8 nci_uart_set_config -EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0x206cbd00 nci_uart_unregister -EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0x975234de nci_uart_register -EXPORT_SYMBOL_GPL net/nsh/nsh 0x0c56701f nsh_push -EXPORT_SYMBOL_GPL net/nsh/nsh 0x2d6e546d nsh_pop -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x582c11bd ovs_netdev_tunnel_destroy -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x5a45d305 ovs_vport_alloc -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xd0e66b36 __ovs_vport_ops_register -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xd1ad6acc ovs_vport_free -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xd5881ef5 ovs_netdev_link -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xfe7f7a5a ovs_vport_ops_unregister -EXPORT_SYMBOL_GPL net/psample/psample 0x70a632bd psample_group_take -EXPORT_SYMBOL_GPL net/psample/psample 0xc8cbfceb psample_sample_packet -EXPORT_SYMBOL_GPL net/psample/psample 0xd9560d2e psample_group_put -EXPORT_SYMBOL_GPL net/psample/psample 0xf0772604 psample_group_get -EXPORT_SYMBOL_GPL net/qrtr/qrtr 0x8d25501f qrtr_ns_remove -EXPORT_SYMBOL_GPL net/qrtr/qrtr 0xa47e91ba qrtr_ns_init -EXPORT_SYMBOL_GPL net/qrtr/qrtr 0xba30095c qrtr_endpoint_post -EXPORT_SYMBOL_GPL net/qrtr/qrtr 0xf22b4c04 qrtr_endpoint_unregister -EXPORT_SYMBOL_GPL net/qrtr/qrtr 0xfaf19d00 qrtr_endpoint_register -EXPORT_SYMBOL_GPL net/rds/rds 0x00a467af rds_wq -EXPORT_SYMBOL_GPL net/rds/rds 0x104bd382 rds_inc_path_init -EXPORT_SYMBOL_GPL net/rds/rds 0x20c5e653 rds_cong_map_updated -EXPORT_SYMBOL_GPL net/rds/rds 0x22eac5bb rds_conn_path_connect_if_down -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 0x362c5344 rds_send_drop_acked -EXPORT_SYMBOL_GPL net/rds/rds 0x3b4714c0 rds_for_each_conn_info -EXPORT_SYMBOL_GPL net/rds/rds 0x4248d5a3 rds_conn_connect_if_down -EXPORT_SYMBOL_GPL net/rds/rds 0x43ce4b83 rds_send_path_drop_acked -EXPORT_SYMBOL_GPL net/rds/rds 0x45a4781e rds_addr_cmp -EXPORT_SYMBOL_GPL net/rds/rds 0x46ab58a3 rds_inc_init -EXPORT_SYMBOL_GPL net/rds/rds 0x53c2bf43 rds_atomic_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 0x6487df8b rds_inc_put -EXPORT_SYMBOL_GPL net/rds/rds 0x7b399e66 rds_page_remainder_alloc -EXPORT_SYMBOL_GPL net/rds/rds 0x8372e96f rds_message_addref -EXPORT_SYMBOL_GPL net/rds/rds 0x85e4e520 rds_stats_info_copy -EXPORT_SYMBOL_GPL net/rds/rds 0x8d13cf9d rds_conn_path_drop -EXPORT_SYMBOL_GPL net/rds/rds 0xa1844a63 rds_conn_drop -EXPORT_SYMBOL_GPL net/rds/rds 0xa2c6b554 rds_info_register_func -EXPORT_SYMBOL_GPL net/rds/rds 0xa3c15316 rds_send_path_reset -EXPORT_SYMBOL_GPL net/rds/rds 0xaaf3e6ce rds_conn_create -EXPORT_SYMBOL_GPL net/rds/rds 0xaced85c6 rds_connect_complete -EXPORT_SYMBOL_GPL net/rds/rds 0xb3a7f28d rds_trans_register -EXPORT_SYMBOL_GPL net/rds/rds 0xb8e89a15 rds_recv_incoming -EXPORT_SYMBOL_GPL net/rds/rds 0xc2589865 rds_conn_create_outgoing -EXPORT_SYMBOL_GPL net/rds/rds 0xc2dab779 rds_info_copy -EXPORT_SYMBOL_GPL net/rds/rds 0xc3ade33d rds_connect_path_complete -EXPORT_SYMBOL_GPL net/rds/rds 0xc9309e7c rds_rdma_send_complete -EXPORT_SYMBOL_GPL net/rds/rds 0xccb888dd rds_send_ping -EXPORT_SYMBOL_GPL net/rds/rds 0xd7dcffc9 rds_send_xmit -EXPORT_SYMBOL_GPL net/rds/rds 0xd8ff72f5 rds_conn_destroy -EXPORT_SYMBOL_GPL net/rds/rds 0xd9e580bb rds_message_put -EXPORT_SYMBOL_GPL net/rds/rds 0xeac015eb rds_info_deregister_func -EXPORT_SYMBOL_GPL net/rds/rds 0xf383f2ff rds_trans_unregister -EXPORT_SYMBOL_GPL net/rds/rds 0xf884677a rds_message_unmapped -EXPORT_SYMBOL_GPL net/sched/sch_pie 0x11c9bf3b pie_process_dequeue -EXPORT_SYMBOL_GPL net/sched/sch_pie 0x6ce9b467 pie_calculate_probability -EXPORT_SYMBOL_GPL net/sched/sch_pie 0xa309a136 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 0x0c3f8fd0 sctp_get_sctp_info -EXPORT_SYMBOL_GPL net/sctp/sctp 0xa532e059 sctp_transport_lookup_process -EXPORT_SYMBOL_GPL net/sctp/sctp 0xcbab81f7 sctp_transport_traverse_process -EXPORT_SYMBOL_GPL net/sctp/sctp 0xf34e1626 sctp_for_each_endpoint -EXPORT_SYMBOL_GPL net/smc/smc 0x377c6eb3 smcd_handle_irq -EXPORT_SYMBOL_GPL net/smc/smc 0x3c987f16 smcd_unregister_dev -EXPORT_SYMBOL_GPL net/smc/smc 0x731a8a16 smc_hash_sk -EXPORT_SYMBOL_GPL net/smc/smc 0x803de579 smc_unhash_sk -EXPORT_SYMBOL_GPL net/smc/smc 0x937a98f0 smcd_free_dev -EXPORT_SYMBOL_GPL net/smc/smc 0x9720dc79 smcd_handle_event -EXPORT_SYMBOL_GPL net/smc/smc 0xdb423050 smcd_register_dev -EXPORT_SYMBOL_GPL net/smc/smc 0xddab15bc smcd_alloc_dev -EXPORT_SYMBOL_GPL net/smc/smc 0xe45bcfcf smc_proto -EXPORT_SYMBOL_GPL net/smc/smc 0xfecbfe7c smc_proto6 -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x30d7663c 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 0x437b58f0 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 0xd7673035 g_verify_token_header -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xd8f17225 svcauth_gss_flavor -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xe5b2bd7f svcauth_gss_register_pseudoflavor -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00c62c68 rpc_clone_client_set_auth -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x010cc054 xprt_force_disconnect -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x01c83914 cache_purge -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x046912f3 xdr_decode_word -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x049c9159 xprt_free_slot -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x05e807a9 xdr_encode_string -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x061cdf35 sunrpc_destroy_cache_detail -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x065994f1 xdr_encode_opaque_fixed -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0788884c rpc_restart_call -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x08a22e75 xdr_init_encode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x08f7e277 rpc_bind_new_program -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0bdeba6f cache_check -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0ea11710 svc_create_pooled -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0ec09dd3 xprt_wake_up_backlog -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x10b564e7 xdr_init_decode_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x13ceb472 rpc_clnt_iterate_for_each_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x14339447 xprt_complete_rqst -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x15705bd5 rpc_init_pipe_dir_object -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x16fef597 read_bytes_from_xdr_buf -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1d8090b1 xdr_write_pages -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 0x201ca3ca rpc_peeraddr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x20d3e1b7 xprt_register_transport -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x219ea3e2 xdr_stream_decode_opaque_dup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x24440ab6 xprt_update_rtt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x24d441d0 xdr_expand_hole -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x252cf2b3 put_rpccred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2651326c xdr_stream_subsegment -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2707a2f0 svc_xprt_put -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2919b156 xdr_decode_string_inplace -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2a822ad3 xdr_stream_pos -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2ab11f79 rpc_sleep_on -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2e71f6f1 rpc_set_connect_timeout -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2f34b355 rpc_killall_tasks -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x31a89d59 rpc_debug -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x320e2063 rpc_clnt_xprt_switch_has_addr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x33c5c205 rpc_malloc -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3415b3a6 svc_max_payload -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x34b3b2b7 rpc_put_task_async -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x34d184de rpc_wake_up_status -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3689cd25 rpc_sleep_on_priority_timeout -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x36926d4b rpc_unlink -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x36c59a29 auth_domain_lookup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x376d92ca svc_bind -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x378d4b77 sunrpc_cache_pipe_upcall -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3794c83d xprt_wait_for_reply_request_rtt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x37be1a4f rpc_d_lookup_sb -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x37cc3cf6 rpc_find_or_alloc_pipe_dir_object -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x387e1639 rpc_pipefs_notifier_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x38f58557 rpc_clnt_add_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x39ba9723 rpc_switch_client_transport -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3a445499 auth_domain_find -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3a5bf71b rpc_task_timeout -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3b2950f4 xdr_inline_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3b98ffd6 svc_set_num_threads_sync -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3db82364 xdr_stream_decode_string_dup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3f3218b9 xprt_reserve_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3f430490 svc_rpcb_cleanup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3f602066 rpc_max_payload -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3f9a2b0b rpcauth_get_gssinfo -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3faf9a7e xdr_inline_decode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3ff95c8d rpc_max_bc_payload -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x400f6bbb xdr_buf_from_iov -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x41fe7a94 svc_generic_rpcbind_set -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x43454169 rpcauth_destroy_credcache -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x43f3abf8 xprt_request_get_cong -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x44a2c1a2 rpc_localaddr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x453efa54 svc_pool_map -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x462a2423 svc_xprt_enqueue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4686f25d svc_exit_thread -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x47a28277 rpc_mkpipe_dentry -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4899303a svc_drop -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x494b8173 svc_create_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4adc1e67 svc_close_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4aecf98f csum_partial_copy_to_xdr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4afedab1 xprtiod_workqueue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4b353d1c svc_xprt_names -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4d5f90f9 rpc_put_task -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4dac77f0 xdr_encode_netobj -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4df8e3ba svc_xprt_init -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4e8f6ca7 sunrpc_net_id -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4fdd10a5 xdr_encode_word -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5043e04e xdr_read_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x522faf8b svcauth_unix_set_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5251c9b8 xdr_terminate_string -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x531d4aba xprt_wake_pending_tasks -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x53445f68 nlm_debug -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x53fb6bff sunrpc_cache_update -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x54097373 rpc_net_ns -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x549972e7 xdr_encode_array2 -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x54bdedf6 rpc_proc_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x54d56406 rpc_add_pipe_dir_object -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x552c1bb9 rpc_run_task -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x55391239 sunrpc_cache_pipe_upcall_timeout -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5886b16a bc_svc_process -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x58a4af89 svc_sock_update_bufs -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x59f6ba31 svc_prepare_thread -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5a45ba31 svc_auth_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5be294d7 cache_destroy_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5c70df0f svc_wake_up -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5e9e43b2 svc_alien_sock -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5ff46e7b svc_generic_init_request -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6075ed27 svc_xprt_copy_addrs -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x608d9658 xdr_reserve_space_vec -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x60904b9a rpc_init_pipe_dir_head -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x62aaf7a7 xdr_process_buf -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x634b6798 svc_addsock -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x63a83ba8 rpc_clnt_test_and_add_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x643c96a4 rpcauth_lookupcred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x64c622e4 svc_authenticate -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x66ed2439 rpc_destroy_wait_queue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x680bc309 rpc_queue_upcall -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x68df58af svc_destroy -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x69a69da2 write_bytes_to_xdr_buf -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6a0ccdc7 xprt_release_xprt_cong -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6b8f1e61 svc_shutdown_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6bafdca3 svc_unreg_xprt_class -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6bf3a38a rpcauth_init_cred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6e32c893 xprt_alloc_slot -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6e4dafcd rpc_wake_up_queued_task -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6f3b4f82 rpc_call_null -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6fa4eb98 sunrpc_cache_unhash -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6fe64fe1 unix_domain_find -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7043d881 svc_age_temp_xprts_now -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x707df937 xprt_wait_for_buffer_space -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x70d75011 cache_unregister_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x71351fa1 xprt_add_backlog -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 0x73349e33 rpcauth_stringify_acceptor -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x74505fb0 _copy_from_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x750dc92d rpc_uaddr2sockaddr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x762ceed6 xprt_pin_rqst -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x76965b32 __rpc_wait_for_completion_task -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x791c4748 rpcauth_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x797886a8 xdr_enter_page -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7996182a rpc_sleep_on_priority -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7bf289e2 xprt_adjust_cwnd -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7dc17e5b rpc_clnt_swap_deactivate -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7de53067 rpc_init_rtt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7f99ad0d xdr_buf_trim -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x807a0d0c rpcauth_unwrap_resp_decode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x813a9c96 svc_print_addr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x81cf584b rpc_sleep_on_timeout -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x86322ee2 svc_xprt_deferred_close -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x866234ce xprt_write_space -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x882ed31b svcauth_unix_purge -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x89308837 rpc_destroy_pipe_data -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8939f573 rpc_force_rebind -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x897a1799 sunrpc_init_cache_detail -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8b4ae5a7 rpcauth_lookup_credcache -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8b50a477 rpc_restart_call_prepare -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8c4ec261 rpc_clnt_swap_activate -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8cc2ca3d rpc_get_sb_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8dfd0c3e rpc_peeraddr2str -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x90b0f578 rpc_clnt_show_stats -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x911a6f90 rpc_pton -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9211379e rpc_free -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x92301990 rpcauth_init_credcache -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9670b5a1 rpc_free_iostats -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x96b933bb xprt_reconnect_backoff -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x98e4171a svc_proc_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x99aee353 rpc_init_priority_wait_queue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9a36fe5e rpcauth_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9a645c81 svc_process -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9b7bb5aa svc_set_num_threads -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9beada50 rpc_pipe_generic_upcall -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9ca92468 svc_rqst_alloc -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9cf26e03 xprt_free -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9d7a39c1 rpc_exit -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9e457cde xprt_unregister_transport -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9ea32688 sunrpc_cache_lookup_rcu -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa13acdb8 svc_pool_map_put -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa2f6c68a auth_domain_put -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa41a893e xprt_release_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa4645399 svc_auth_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa6028bcf rpc_clnt_setup_test_and_add_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa6e5800b cache_seq_next_rcu -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa74cc237 cache_seq_stop_rcu -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa8bb4524 rpc_clnt_xprt_switch_add_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa8facdbf sunrpc_cache_unregister_pipefs -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa984c2c2 xprt_reconnect_delay -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa98cfab3 xprt_put -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xac39218c svc_find_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xac3d5509 cache_seq_start_rcu -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xac41e2ec svc_encode_result_payload -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xadcc737e svc_reg_xprt_class -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xadfc26b9 xprt_get -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaf5bf6ef nfs_debug -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xafa814e0 rpc_create -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb090346a xprt_destroy_backchannel -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb1a39f69 svc_fill_write_vector -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb272ff12 svc_proc_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb2e678e7 svc_fill_symlink_pathname -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 0xb8edcedb rpc_release_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbac862fe sunrpc_cache_register_pipefs -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbadc775e svc_reserve -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbb4695f2 rpc_call_start -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbbcaf352 svc_seq_show -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbd559146 xprt_lookup_rqst -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbdd9f6e4 xprt_unlock_connect -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbf9d1b96 nfsd_debug -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbfa8201a xdr_shift_buf -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc11ee816 rpc_wake_up_first -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc12435e3 rpc_calc_rto -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc1bab4f0 xprt_lock_connect -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc2077f43 rpc_task_release_transport -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc23342fe xdr_init_decode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc2793e4e rpc_proc_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc31ae40b rpc_put_sb_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc4318996 xprt_release_rqst_cong -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc4834907 xprt_wait_for_reply_request_def -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc5610754 xprt_disconnect_done -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc56c1b22 rpcauth_wrap_req_encode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc5c75f17 rpc_delay -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc5d971e6 xprt_unpin_rqst -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc63bc258 rpc_prepare_reply_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc6b8abb7 svc_rqst_free -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc6eaaf1c rpc_setbufsize -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc8dd630d xprt_reserve_xprt_cong -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc8e96dea qword_addhex -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc9595325 svc_create -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xca1d169c rpcb_getport_async -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcc16cf6f rpc_count_iostats_metrics -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xce678a59 xdr_decode_netobj -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd10d1d5b rpc_machine_cred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd1969036 rpc_num_bc_slots -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd1e36051 cache_create_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd2cbe02e rpc_mkpipe_data -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd536f0f4 rpc_clnt_xprt_switch_put -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd5626500 xdr_align_data -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd5f07503 xdr_decode_array2 -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd69555fc svc_set_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd72cc2c5 rpc_clone_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd8397ceb rpcauth_create -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdb6e179b xdr_commit_encode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdd691402 xprt_find_transport_ident -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdd8fa3fd rpc_count_iostats -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xddb605cc cache_register_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe0967bad xdr_stream_decode_opaque -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe2290fbf svc_xprt_received -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe255700b xdr_stream_decode_string -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe2a93638 xprt_alloc -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe5919cb1 xdr_encode_opaque -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe60b2872 xdr_page_pos -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe6870ef9 rpc_remove_pipe_dir_object -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe728ad16 rpc_wake_up_next -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe97f4ce5 qword_get -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xea9aada0 rpc_shutdown_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeaa4af08 svc_rqst_replace_page -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeaf2ad09 rpc_call_sync -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xec29086d xprt_setup_backchannel -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xec92c0ca rpc_alloc_iostats -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xedcf6be4 qword_add -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xee371cc6 gssd_running -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xee56e51b xdr_buf_subsegment -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeeacab69 rpc_update_rtt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xef1c1b89 svc_xprt_do_enqueue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xef212fcb svc_rpcbind_set_version -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf09bb8f9 svc_rpcb_setup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf0b7775d rpc_init_wait_queue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf4cc9568 rpc_call_async -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf7dc4940 xdr_reserve_space -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfcd40a28 svc_recv -EXPORT_SYMBOL_GPL net/tls/tls 0x170b0cd7 tls_device_sk_destruct -EXPORT_SYMBOL_GPL net/tls/tls 0x1be10fff tls_offload_tx_resync_request -EXPORT_SYMBOL_GPL net/tls/tls 0xe03cf8ed tls_validate_xmit_skb -EXPORT_SYMBOL_GPL net/tls/tls 0xe94b2d8c tls_encrypt_skb -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x004708e9 virtio_transport_put_credit -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x03a81e69 virtio_transport_stream_allow -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x05acde4c virtio_transport_dgram_dequeue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x2043541f virtio_transport_stream_has_space -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x2523fc32 virtio_transport_seqpacket_has_data -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x26ce2e65 virtio_transport_stream_rcvhiwat -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x2c17bf22 virtio_transport_stream_has_data -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x3313b040 virtio_transport_notify_poll_in -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x37fe33ce virtio_transport_seqpacket_enqueue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x383346e1 virtio_transport_destruct -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x45892b58 virtio_transport_connect -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x47aed69d virtio_transport_notify_recv_pre_block -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x59904638 virtio_transport_notify_poll_out -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x62f3db53 virtio_transport_recv_pkt -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x68933f32 virtio_transport_notify_send_pre_enqueue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x731e40f3 virtio_transport_get_credit -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x82bedcba virtio_transport_stream_enqueue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x8b122d1f virtio_transport_inc_tx_pkt -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x8bf60efb virtio_transport_stream_is_active -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x8c6a18a0 virtio_transport_do_socket_init -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x9254058b virtio_transport_notify_recv_post_dequeue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x938a25c0 virtio_transport_dgram_bind -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x9ac891ee virtio_transport_notify_send_init -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x9c1fbdb2 virtio_transport_free_pkt -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xadcdf887 virtio_transport_notify_send_post_enqueue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xadff2a0f virtio_transport_dgram_enqueue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xbabd30f5 virtio_transport_dgram_allow -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xbb858190 virtio_transport_stream_dequeue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xbeb90206 virtio_transport_release -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xc74c4e92 virtio_transport_shutdown -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xc80a53a3 virtio_transport_notify_recv_init -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xe8d9723b virtio_transport_deliver_tap_pkt -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xee54cbaa virtio_transport_notify_buffer_size -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xefb4691c virtio_transport_notify_send_pre_block -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xf73f2e4a virtio_transport_notify_recv_pre_dequeue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xf7f78c14 virtio_transport_seqpacket_dequeue -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x05d44132 vsock_for_each_connected_socket -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x0e9bc9b6 vsock_addr_unbind -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x13a131a9 vsock_find_connected_socket -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x2461872d vsock_stream_has_data -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x284e07d8 vsock_bind_table -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x31cdbc43 vsock_remove_connected -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x3d4b0fca vsock_addr_init -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x3d632c99 vsock_remove_sock -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x4b99648c vsock_addr_bound -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x4d29e2b0 vsock_assign_transport -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x4ddc197c vsock_remove_pending -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x524cfcb2 vsock_core_register -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x5686447a vsock_create_connected -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x577d1a8f vsock_remove_tap -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x61af7d70 vsock_stream_has_space -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x707c3e33 vsock_core_unregister -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x7647452d vsock_find_bound_socket -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 0x9bb6fd09 vsock_connected_table -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x9e3f7dba vsock_insert_connected -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xaf2674b5 vsock_addr_equals_addr -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xb097dec1 vsock_add_pending -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xc92f7f50 vsock_table_lock -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xeacf0b95 vsock_core_get_transport -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xec2e997c vsock_remove_bound -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xec96eadf vsock_addr_validate -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xecb575f9 vsock_enqueue_accept -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xf4b14f4d vsock_deliver_tap -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xf8455366 vsock_add_tap -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x1cd60467 cfg80211_wext_giwretry -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x20bfa72d cfg80211_pmsr_complete -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x2b6fb7de cfg80211_wext_giwname -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x5ba4c597 cfg80211_wext_giwrange -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x664e158f cfg80211_vendor_cmd_reply -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x68e12c97 cfg80211_wext_siwrts -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x6af32e3e cfg80211_wext_siwmode -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x79f78eff cfg80211_wext_giwrts -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x95202dab cfg80211_pmsr_report -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xb7ef34b3 cfg80211_wext_giwfrag -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xbc03c1ac cfg80211_wext_giwmode -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xc9451b63 cfg80211_vendor_cmd_get_sender -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xcbe610eb cfg80211_wext_giwscan -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xed07516f cfg80211_shutdown_all_interfaces -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xf11e3405 cfg80211_wext_siwscan -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xf497cb7b 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 0x2330484d ipcomp_destroy -EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x44bf3282 ipcomp_init_state -EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x579d2dbd ipcomp_input -EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0xc7fb1404 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 0xa526d08c 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 0x03e740fc snd_device_initialize -EXPORT_SYMBOL_GPL sound/core/snd 0x0a9d1e49 snd_card_free_on_error -EXPORT_SYMBOL_GPL sound/core/snd 0x0ba00db9 snd_ctl_register_layer -EXPORT_SYMBOL_GPL sound/core/snd 0x19d60a23 snd_device_disconnect -EXPORT_SYMBOL_GPL sound/core/snd 0x217b848c snd_ctl_activate_id -EXPORT_SYMBOL_GPL sound/core/snd 0x3bcc62db snd_ctl_sync_vmaster -EXPORT_SYMBOL_GPL sound/core/snd 0x507e6aac snd_power_ref_and_wait -EXPORT_SYMBOL_GPL sound/core/snd 0x5a46f68d snd_ctl_add_vmaster_hook -EXPORT_SYMBOL_GPL sound/core/snd 0x5af762f1 snd_fasync_free -EXPORT_SYMBOL_GPL sound/core/snd 0x5d879775 snd_ctl_apply_vmaster_followers -EXPORT_SYMBOL_GPL sound/core/snd 0x5fb4a668 snd_ctl_get_preferred_subdevice -EXPORT_SYMBOL_GPL sound/core/snd 0x644cd4a7 snd_ctl_disconnect_layer -EXPORT_SYMBOL_GPL sound/core/snd 0x679a09cf snd_fasync_helper -EXPORT_SYMBOL_GPL sound/core/snd 0x6fdb9746 snd_card_disconnect_sync -EXPORT_SYMBOL_GPL sound/core/snd 0x805c95a8 snd_card_ref -EXPORT_SYMBOL_GPL sound/core/snd 0x83a5ec24 snd_devm_card_new -EXPORT_SYMBOL_GPL sound/core/snd 0x87ffbe08 snd_card_add_dev_attr -EXPORT_SYMBOL_GPL sound/core/snd 0xac4d2cfb snd_device_get_state -EXPORT_SYMBOL_GPL sound/core/snd 0xea94c9f9 snd_card_rw_proc_new -EXPORT_SYMBOL_GPL sound/core/snd 0xf8f2a4eb snd_kill_fasync -EXPORT_SYMBOL_GPL sound/core/snd 0xfaf598c6 snd_ctl_request_layer -EXPORT_SYMBOL_GPL sound/core/snd-compress 0x9cc10c36 snd_compress_new -EXPORT_SYMBOL_GPL sound/core/snd-compress 0xea0b7d5b snd_compr_stop_error -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x04e1b99f snd_pcm_std_chmaps -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x0652cd04 snd_pcm_stop_xrun -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x09e913c1 snd_pcm_alt_chmaps -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x2a6f961d snd_pcm_hw_constraint_eld -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x2b01634a snd_pcm_stream_lock -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x2c50e2a3 _snd_pcm_stream_lock_irqsave_nested -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x39721969 snd_pcm_stream_unlock -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x3f71740e 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 0x80b9c576 snd_pcm_add_chmap_ctls -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x8737872d snd_pcm_lib_default_mmap -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x8d864069 snd_pcm_rate_range_to_bits -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xa286a234 snd_pcm_format_name -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xa5357286 snd_pcm_stream_lock_irq -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xab8bc1a2 snd_pcm_rate_mask_intersect -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xb97fc4ad snd_pcm_stream_unlock_irq -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xc66ca617 snd_pcm_stream_unlock_irqrestore -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xd3e51991 snd_pcm_fill_iec958_consumer -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xf9a86920 _snd_pcm_stream_lock_irqsave -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x01dec43a snd_dmaengine_pcm_request_channel -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x0f8ce505 snd_dmaengine_pcm_get_chan -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x1db47fbc snd_dmaengine_pcm_open -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x20f08289 snd_dmaengine_pcm_set_config_from_dai_data -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x477f12de snd_dmaengine_pcm_pointer -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x494d530d snd_dmaengine_pcm_close_release_chan -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x4afa14f2 snd_hwparams_to_dma_slave_config -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x5dacf6f4 snd_dmaengine_pcm_trigger -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x73aa36fd snd_dmaengine_pcm_pointer_no_residue -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x96d1fbc9 snd_dmaengine_pcm_refine_runtime_hwparams -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xda9444d0 snd_dmaengine_pcm_open_request_chan -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xf00e4ecf snd_dmaengine_pcm_close -EXPORT_SYMBOL_GPL sound/core/snd-seq-device 0x5da0a370 snd_seq_driver_unregister -EXPORT_SYMBOL_GPL sound/core/snd-seq-device 0x8ff66259 __snd_seq_driver_register -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x0fbc9014 amdtp_am824_set_pcm_position -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x37ff6647 amdtp_am824_midi_trigger -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x41dba8ca amdtp_am824_set_parameters -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x4adb2486 amdtp_domain_add_stream -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x4cf6c245 amdtp_domain_stop -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xaefc08e9 amdtp_domain_stream_pcm_pointer -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xb4b297ca amdtp_am824_set_midi_position -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xb594d494 amdtp_domain_stream_pcm_ack -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xc4fae8ab amdtp_domain_start -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xc534840e amdtp_domain_destroy -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xd65e9e4f amdtp_am824_init -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xfade7f1b amdtp_am824_add_pcm_hw_constraints -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xfc93872e amdtp_domain_init -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x00c35787 snd_hdac_display_power -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x05636f93 snd_hdac_aligned_read -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0608f4c3 snd_hdac_stream_assign -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0a17f5c8 snd_hdac_stream_set_params -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0acdc78d snd_hdac_bus_alloc_stream_pages -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0da44222 snd_hdac_stream_start -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0f695f4b snd_hdac_stream_setup -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1041f097 snd_hdac_device_init -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x10f2fe0e snd_hdac_device_register -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x11af3f6e snd_hdac_stream_sync_trigger -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x12d011c7 snd_hdac_stream_cleanup -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1488641f snd_hdac_aligned_write -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x149a4cf4 snd_hdac_override_parm -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x15b614e5 snd_hdac_query_supported_pcm -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x17d1b626 snd_hdac_bus_enter_link_reset -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1e7487e9 snd_hdac_stream_reset -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x22504c96 snd_hdac_stream_clear -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2631475c snd_hdac_setup_channel_mapping -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x26ffd6c8 snd_hdac_power_down_pm -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2ce30cb9 snd_hdac_read -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2fe73d0c snd_hdac_get_connections -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x37641d3f snd_hdac_codec_link_down -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x37852bb6 snd_hdac_acomp_exit -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x38070949 snd_hdac_bus_link_power -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x398fd500 snd_hdac_register_chmap_ops -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3bd544c2 snd_hdac_get_active_channels -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x449f323f snd_hdac_refresh_widgets -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4570d7e8 snd_hdac_sync_audio_rate -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4c7ec4b6 snd_hdac_get_ch_alloc_from_ca -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4e7b1518 snd_hdac_add_chmap_ctls -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x534b4e75 snd_hdac_get_stream -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x541f11d4 snd_hdac_bus_parse_capabilities -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x551ba7e0 snd_hdac_sync_power_state -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x551c80fc snd_hdac_stream_release -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5a9c498e snd_hdac_acomp_init -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5c07cb49 snd_hdac_calc_stream_format -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5c4e2817 snd_hdac_codec_modalias -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5c615302 snd_hdac_regmap_update_raw -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x6720b763 snd_hdac_power_down -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x67bfe791 snd_hdac_spk_to_chmap -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x67ca2bcf snd_hdac_bus_send_cmd -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x74d9d982 snd_hdac_bus_update_rirb -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x762dadea snd_hdac_regmap_sync -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x77c754a8 snd_hdac_chmap_to_spk_mask -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x793a7b28 snd_hdac_dsp_cleanup -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7b3a40f7 snd_hdac_device_exit -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7b54b7fe snd_hdac_stream_setup_periods -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7dc9e58a snd_hdac_bus_exit -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7ddf2c7b snd_hdac_stream_init -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x82cb9b4b snd_hdac_bus_stop_chip -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x85ceb271 snd_hdac_bus_free_stream_pages -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8aa7804c snd_hdac_regmap_add_vendor_verb -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8e4c2b25 snd_hdac_acomp_get_eld -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x998a9ca8 snd_hdac_stream_sync -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9a8e1877 snd_array_free -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9abc6681 _snd_hdac_read_parm -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9c25febe snd_hdac_bus_exec_verb_unlocked -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9cf5d07b snd_hdac_get_stream_stripe_ctl -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9fcea53c snd_hdac_set_codec_wakeup -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa44ec029 snd_hdac_regmap_write_raw -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xabe7e28d snd_hdac_power_up_pm -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xaf4ad394 snd_hdac_bus_init_cmd_io -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb31f0ab5 snd_hdac_stream_timecounter_init -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb58104ba snd_hdac_codec_link_up -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb663156d snd_hdac_device_unregister -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb714a680 snd_hdac_dsp_trigger -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbb436637 hdac_get_device_id -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbe7dd7dc snd_array_new -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc1e55b3a snd_hdac_bus_get_response -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc39d13e8 snd_hdac_is_supported_format -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc4810805 snd_hdac_bus_stop_cmd_io -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc511d219 snd_hdac_regmap_read_raw -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xcd876498 snd_hdac_get_sub_nodes -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xce6e3feb snd_hdac_power_up -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xced2ab21 snd_hdac_codec_read -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd57dad6e snd_hdac_bus_reset_link -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd7b8534f snd_hda_bus_type -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xdb3e1235 snd_hdac_device_set_chip_name -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xde684a7b snd_hdac_regmap_exit -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xdfe8bbec snd_hdac_bus_init -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe3e46202 snd_hdac_channel_allocation -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe4e07754 snd_hdac_print_channel_allocation -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe578d406 snd_hdac_stream_stop -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xeb155658 snd_hdac_regmap_update_raw_once -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xec2119e5 snd_hdac_dsp_prepare -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xede1cc5e snd_hdac_bus_exit_link_reset -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf0b310d9 snd_hdac_stop_streams -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf0c07bfd snd_hdac_codec_write -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf1a57102 snd_hdac_read_parm_uncached -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf498dbd4 snd_hdac_stop_streams_and_chip -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xfa70205c snd_hdac_regmap_init -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xfc074617 snd_hdac_bus_handle_stream_irq -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xfd52f315 snd_hdac_acomp_register_notifier -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xfdfb266a snd_hdac_bus_init_chip -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xff678d22 snd_hdac_check_power_state -EXPORT_SYMBOL_GPL sound/hda/snd-intel-dspcfg 0x00f23d64 intel_nhlt_get_dmic_geo -EXPORT_SYMBOL_GPL sound/hda/snd-intel-dspcfg 0x43b96d6d snd_intel_dsp_driver_probe -EXPORT_SYMBOL_GPL sound/hda/snd-intel-dspcfg 0x4e859456 intel_nhlt_free -EXPORT_SYMBOL_GPL sound/hda/snd-intel-dspcfg 0x93ccb414 snd_intel_acpi_dsp_driver_probe -EXPORT_SYMBOL_GPL sound/hda/snd-intel-dspcfg 0xa2e317ab intel_nhlt_init -EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x08493745 snd_ak4113_check_rate_and_errors -EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x113efacc snd_ak4113_reg_write -EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x4fdefe07 snd_ak4113_build -EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x511469b3 snd_ak4113_external_rate -EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xbcadf467 snd_ak4113_reinit -EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xd1146981 snd_ak4113_create -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x029b3619 snd_hda_get_conn_list -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x03a8a5c3 azx_codec_configure -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x04385b77 snd_hda_jack_unsol_event -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 0x06c4fef5 snd_hda_jack_set_dirty_all -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0710f3cf azx_stop_all_streams -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0ae5e0c3 snd_hda_add_nid -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0cfa356b snd_hda_enum_helper_info -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0d531f90 snd_hda_codec_load_dsp_trigger -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0f3940b7 snd_hda_jack_detect_state_mst -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x10fc24fa snd_hda_check_amp_list_power -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1154c603 snd_hda_input_mux_put -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x13875976 azx_get_position -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x16d941f4 snd_hda_set_vmaster_tlv -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1b1807f5 snd_hda_jack_set_button_state -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2020a00c snd_hda_codec_load_dsp_prepare -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2510a10c hda_codec_driver_unregister -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x28aea3a2 snd_hda_mixer_amp_volume_get -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2d2ceccc snd_hda_mixer_amp_switch_get -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2ff616e3 azx_free_streams -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x34c1e5de __snd_hda_apply_fixup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x38ce402b azx_interrupt -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3b778576 snd_hda_get_int_hint -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3f0607aa snd_hda_add_new_ctls -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3f8280fe snd_hda_check_amp_caps -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3fd8edc4 snd_hda_correct_pin_ctl -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4070f34c snd_hda_spdif_ctls_unassign -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x432134ca __snd_hda_codec_cleanup_stream -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4569f189 azx_probe_codecs -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x464099cc snd_hda_spdif_out_of_nid -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x48563bb2 snd_hda_codec_get_pin_target -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x49469d7f snd_hda_spdif_ctls_assign -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4951faac _snd_hda_set_pin_ctl -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4980662e snd_hda_multi_out_analog_open -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4c5d5ac8 snd_hda_codec_set_pin_target -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x53ad2769 snd_hda_codec_set_name -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x588dd8c6 snd_hda_codec_cleanup_for_unbind -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x59851617 azx_get_pos_lpib -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x598ff96d snd_hda_detach_beep_device -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5b3f4390 snd_hda_codec_cleanup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5fc1e42a snd_hda_jack_tbl_get_from_tag -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x611d8ac0 snd_hda_mixer_amp_switch_put_beep -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6643e89f query_amp_caps -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x66ab09c5 snd_hda_get_conn_index -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x685b8704 snd_hda_mixer_amp_switch_put -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x68668341 snd_hda_apply_pincfgs -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6bb8d7c0 azx_init_chip -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6c1b6849 snd_hda_pick_pin_fixup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6c76280f snd_hda_create_spdif_in_ctls -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6ce811c2 snd_hda_get_bool_hint -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6dd9c86a snd_hda_mixer_amp_volume_put -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6e92b0a0 snd_hda_codec_setup_stream -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6f67d591 azx_stop_chip -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6fc92898 hda_get_autocfg_input_label -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x75c9e693 azx_bus_init -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7652d90b snd_hda_pick_fixup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7920cf71 snd_hda_jack_pin_sense -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7bead95c snd_hda_load_patch -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7dd404c6 snd_hda_add_imux_item -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7e238ae5 snd_hda_create_spdif_share_sw -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7e6c7997 snd_hda_get_dev_select -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7e735952 snd_hda_jack_add_kctls -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7f2d5672 snd_hda_sync_vmaster_hook -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7f977105 azx_get_pos_posbuf -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x80fcc579 snd_hda_lock_devices -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x83c3fe18 snd_hda_jack_detect_enable_callback_mst -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x866084ff snd_hda_jack_tbl_get_mst -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x893c49bd snd_hda_attach_beep_device -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8c989fef __hda_codec_driver_register -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8ca1ec7a snd_hda_jack_poll_all -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x903e6dd0 snd_hda_mixer_amp_volume_info -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x910bb624 snd_hda_codec_amp_init_stereo -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x92187f58 snd_hda_apply_fixup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x933839d6 snd_hda_apply_verbs -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9371a790 snd_hda_get_hint -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x93f5a820 snd_hda_codec_amp_update -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x95111c9c snd_hda_codec_eapd_power_filter -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x95bc22be snd_hda_mixer_amp_switch_info -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9989236c snd_hda_codec_load_dsp_cleanup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x999106d3 snd_hda_add_verbs -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9bb35f47 snd_hda_add_vmaster_hook -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9f9a660b snd_hda_sequence_write -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa28cbcdc snd_hda_codec_new -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa3fa8923 snd_hda_jack_add_kctl_mst -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xaa70891d snd_hda_get_num_devices -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xadbb9808 snd_hda_codec_pcm_put -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb049e002 snd_hda_create_dig_out_ctls -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb0d50e74 snd_hda_jack_bind_keymap -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb26e50a3 snd_hda_parse_pin_defcfg -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb4ab748b azx_init_streams -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb4d16157 __snd_hda_add_vmaster -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb579741b snd_hda_multi_out_dig_prepare -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb59ec5b1 snd_hda_set_power_save -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb633009b snd_hda_get_default_vref -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb7e94ddf snd_hda_get_connections -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb95de772 snd_hda_codec_pcm_new -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbcafa0c9 snd_hda_codec_build_controls -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbdaae1b0 snd_hda_codec_prepare -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbefbec1c snd_hda_get_pin_label -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc01654ff snd_hda_jack_report_sync -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc1150d20 snd_hda_unlock_devices -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc135c9da snd_hda_override_amp_caps -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc9ada404 snd_hda_codec_set_pincfg -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xcb5faff7 snd_hda_override_conn_list -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xcb91513d snd_hda_jack_set_gating_jack -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xcc5ba810 snd_hda_codec_device_new -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xcd4132a8 snd_hda_shutup_pins -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd0195fcd snd_hda_mixer_amp_switch_get_beep -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd05fa081 snd_hda_codec_get_pincfg -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd0ecf586 snd_hda_multi_out_dig_open -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd21a1abb snd_hda_multi_out_dig_close -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd2c2ef51 snd_hda_codec_configure -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe0de2ba0 snd_hda_codec_amp_stereo -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe118de5d snd_pcm_2_1_chmaps -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe1393845 snd_hda_codec_amp_init -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe22f2f6a snd_hda_mixer_amp_tlv -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe3811042 snd_hda_multi_out_analog_prepare -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe8d7e44e snd_hda_set_dev_select -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe90535c0 snd_hda_ctl_add -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xea860a90 snd_hda_multi_out_dig_cleanup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xed3ede19 snd_hda_codec_parse_pcms -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xed7a0a2f is_jack_detectable -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xeda3a721 snd_print_pcm_bits -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf1061a87 snd_hda_enable_beep_device -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf1f5771f snd_hda_find_mixer_ctl -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf399916a snd_hda_codec_update_widgets -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf7df1755 snd_hda_jack_detect_enable -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf8dc35ac snd_hda_input_mux_info -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf925807a snd_hda_codec_set_power_to_all -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfa2a4db6 snd_hda_multi_out_analog_cleanup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x08e9173a snd_hda_gen_parse_auto_config -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x10081796 snd_hda_get_path_idx -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x1101cc2a snd_hda_gen_spec_init -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x1c807df4 snd_hda_gen_stream_pm -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x48b72423 snd_hda_gen_free -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x6ca16375 snd_hda_gen_add_micmute_led_cdev -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x76dc6871 hda_main_out_badness -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x79224a82 snd_hda_gen_fix_pin_power -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x7d82ed33 snd_hda_gen_add_mute_led_cdev -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x815bc087 snd_hda_get_path_from_idx -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x871a6e44 hda_extra_out_badness -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x896bc971 snd_hda_gen_build_controls -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x9253924f snd_hda_gen_line_automute -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x948c6231 snd_hda_gen_add_kctl -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x9c922826 snd_hda_gen_update_outputs -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xce74a819 snd_hda_gen_path_power_filter -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xd5aa1ca1 snd_hda_gen_check_power_status -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xdb7e80ad snd_hda_gen_mic_autoswitch -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xdcf93b6a snd_hda_gen_build_pcms -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xe2e087c2 snd_hda_gen_init -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xf3b12ff7 snd_hda_activate_path -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xf750349f snd_hda_add_new_path -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xf75d3195 snd_hda_gen_hp_automute -EXPORT_SYMBOL_GPL sound/soc/codecs/mt6359-accdet 0x958d0f0a 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 0xcd1f713b adau1372_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau1761 0x48ad01e3 adau1761_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau1761 0xb4652655 adau1761_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x08563d13 adau17x1_add_widgets -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x17fc1af7 adau17x1_set_micbias_voltage -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x23c753f5 adau17x1_volatile_register -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x27ab1280 adau17x1_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x4d78bd21 adau17x1_dai_ops -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x918b787a adau17x1_resume -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0xcaeeddb5 adau17x1_add_routes -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0xd235b88f adau17x1_precious_register -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0xe6e2fd4f adau17x1_readable_register -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0xf324abba adau17x1_remove -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau7118 0x8ebc85f1 adau7118_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41 0x1f66a972 cs35l41_pm_ops -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41 0x65274929 cs35l41_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41 0x9b2341cc cs35l41_remove -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x28d63f60 cs35l41_boost_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x3b68f89a cs35l41_regmap_spi -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x8d3dfe45 cs35l41_regmap_i2c -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x9e6f97ec cs35l41_register_errata_patch -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0xa9899efa cs35l41_test_key_unlock -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0xbe580443 cs35l41_otp_unpack -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0xc99290c0 cs35l41_set_channels -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0xf0982e29 cs35l41_test_key_lock -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0x18aef3de cs4271_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0x44b4cd78 cs4271_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0x7d05786f cs4271_dt_ids -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x04f809cd cs42l51_suspend -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0xb60d2b88 cs42l51_remove -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0xb9169efb cs42l51_resume -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0xf7eeda13 cs42l51_regmap -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0xfcc39189 cs42l51_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x0245c4f2 cs42xx8_of_match -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x1b3556dd cs42xx8_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x656618e1 cs42xx8_pm -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x7cac7292 cs42888_data -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0xa1f4f341 cs42xx8_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0xcd3794c9 cs42448_data -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-da7219 0x21279cbe da7219_aad_jack_det -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-da7219 0xa8939707 da7219_aad_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-da7219 0xca3efb6a da7219_aad_exit -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-da7219 0xeadf5a6f da7219_aad_init -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-es8328 0xa6db14e2 es8328_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-es8328 0xfb096b63 es8328_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98090 0x76915136 max98090_mic_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98373 0x1c874570 soc_codec_dev_max98373_sdw -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98373 0xad25177a max98373_reset -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98373 0xb1d681b0 max98373_slot_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98373 0xcc91be66 soc_codec_dev_max98373 -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6358 0x43b0dbd6 mt6358_mtkaif_calibration_enable -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6358 0xd48926ef mt6358_set_mtkaif_protocol -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6358 0xe72bf3dc mt6358_mtkaif_calibration_disable -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6358 0xeb9adb6c mt6358_set_mtkaif_calibration_phase -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6359 0x0caf89ad mt6359_mtkaif_calibration_disable -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6359 0x5ec5682a mt6359_set_mtkaif_protocol -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6359 0xc9fc9513 mt6359_mtkaif_calibration_enable -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6359 0xd3e42ade mt6359_set_mtkaif_calibration_phase -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-nau8824 0xdab96e76 nau8824_enable_jack_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm1789-codec 0x1a2a7c44 pcm1789_common_init -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm1789-codec 0x4aec07b2 pcm1789_common_exit -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm1789-codec 0xe32add0e pcm1789_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm179x-codec 0xa55caa5c pcm179x_common_init -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm179x-codec 0xe49a7126 pcm179x_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm186x 0x31edcc64 pcm186x_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm186x 0x6ca35cd9 pcm186x_regmap -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0x3217efee pcm3168a_regmap -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0xc5b16e55 pcm3168a_pm_ops -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0xd0413389 pcm3168a_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0xdfd53f34 pcm3168a_remove -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x13a20ed1 pcm512x_pm_ops -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x1d03f959 pcm512x_regmap -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x254bda73 pcm512x_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x2ea1d38f pcm512x_remove -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rl6231 0x5dc92cdf rl6231_pll_calc -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rl6231 0x70617a04 rl6231_get_clk_info -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rl6231 0x8d7fa148 rl6231_get_pre_div -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rl6231 0xdba4502f rl6231_calc_dmic_clk -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5514-spi 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 0x15f56c13 rt5640_detect_headset -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0x5da7d1d1 rt5640_sel_asrc_clk_src -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0x7908d5a8 rt5640_dmic_enable -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0xd89b59e3 rt5640_disable_micbias1_for_ovcd -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0xe9719ade rt5640_enable_micbias1_for_ovcd -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0xed58bea4 rt5640_set_ovcd_params -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5645 0x366280b4 rt5645_set_jack_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5645 0x61daf787 rt5645_sel_asrc_clk_src -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5659 0xde9867cf rt5659_set_jack_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5663 0x8f44f331 rt5663_sel_asrc_clk_src -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5677 0x327599e2 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 0x0eb7b0f4 rt5682_calibrate -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x1687ee10 rt5682_aif1_dai_ops -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x257039ff 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 0x3cb1b2bd rt5682_apply_patch_list -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x4cac032c rt5682_volatile_register -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x59d3d967 rt5682_jack_detect_handler -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x6e3ef7ea rt5682_parse_dt -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x7525327d rt5682_soc_component_dev -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x7c4d6566 rt5682_reset -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0xa90fcb5e rt5682_readable_register -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0xb897de56 rt5682_reg -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0xbdca7512 rt5682_sel_asrc_clk_src -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0xfdb05513 rt5682_aif2_dai_ops -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x5eac7d38 sigmadsp_setup -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x687bf1b1 sigmadsp_reset -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x9b9ca2b8 sigmadsp_attach -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0xe7298ac0 sigmadsp_restrict_params -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0xeb5e1757 devm_sigmadsp_init -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp-i2c 0xd95ab684 devm_sigmadsp_init_i2c -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp-regmap 0x7b578900 devm_sigmadsp_init_regmap -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ssm2602 0x617936c9 ssm2602_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ssm2602 0xf2cb26d0 ssm2602_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tlv320aic32x4 0x66164b9a aic32x4_register_clocks -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tlv320aic3x 0x3bc626c4 aic3x_regmap -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ts3a227e 0x620fba39 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 0x0e7b05a7 wcd938x_sdw_device_get -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd938x-sdw 0x7eaee084 wcd938x_sdw_free -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd938x-sdw 0xc0d872a9 wcd938x_swr_get_current_bank -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd938x-sdw 0xdebfc80f wcd938x_sdw_set_sdw_stream -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd938x-sdw 0xf9509070 wcd938x_sdw_hw_params -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x085774f3 wm_adsp1_event -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x1cc6ef2d wm_adsp_read_ctl -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x1da0cc17 wm_adsp_fw_get -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x27742654 wm_adsp_compr_copy -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x329ba5b9 wm_adsp_early_event -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x3dde0bd5 wm_adsp1_init -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x46c04df9 wm_adsp_compr_handle_irq -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x4b834d03 wm_adsp_compr_open -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x4cd6636a wm_adsp_fw_enum -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 0x5b03556a wm_adsp2_init -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x624a39eb wm_adsp2_remove -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x73cb5dc5 wm_adsp2_preloader_put -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x780d7f4c wm_adsp2_set_dspclk -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x86ec035d wm_adsp2_component_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x872ecc18 wm_adsp_write_ctl -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x927e00cc wm_halo_init -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xa3a44809 wm_adsp_compr_free -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xab64a218 wm_adsp_fw_put -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xafe9a484 wm_adsp_compr_get_caps -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xc50f33ca wm_adsp2_preloader_get -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xcda7ec16 wm_adsp2_component_remove -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xd0a567f8 wm_adsp_compr_pointer -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xdd3c79ef wm_adsp2_bus_error -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xe4212def wm_adsp_compr_set_params -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xea38ee07 wm_halo_bus_error -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xeac3a3f7 wm_adsp_compr_trigger -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xf80a4672 wm_adsp_event -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x05a2d8fa wm_hubs_hpl_mux -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x2d828513 wm_hubs_vmid_ena -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x3c7ebb11 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 0x6324bf86 wm_hubs_add_analogue_controls -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 0x7e817b6b wm_hubs_update_class_w -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0xc08ef6f9 wm_hubs_handle_analogue_pdata -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0xc139bcd9 wm_hubs_add_analogue_routes -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0xd3a99143 wm_hubs_set_bias_level -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x07c2c1b0 wm8804_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x23dea8d1 wm8804_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x7cda0731 wm8804_pm -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0xb68af7f3 wm8804_remove -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8903 0xfda753b1 wm8903_mic_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8962 0x6c533bf8 wm8962_mic_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8994 0x5c54f598 wm8994_mic_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8994 0xd210711d wm8958_mic_detect -EXPORT_SYMBOL_GPL sound/soc/fsl/imx-pcm-dma 0x989f5937 imx_pcm_dma_init -EXPORT_SYMBOL_GPL sound/soc/fsl/snd-soc-fsl-asrc 0xa869374d 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 0x2793dab4 audio_graph_parse_of -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-audio-graph-card2 0x5e5a58d3 audio_graph2_parse_of -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-audio-graph-card2 0x8eadc97d audio_graph2_link_normal -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x00e1d1ff asoc_simple_is_convert_required -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x1f7db789 asoc_simple_init_priv -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x2202bd35 asoc_simple_dai_init -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x3ba62ded asoc_simple_clean_reference -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x3c4ba9b8 asoc_simple_parse_pin_switches -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x5da46607 asoc_simple_parse_daifmt -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x5ff22046 asoc_simple_parse_clk -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x6a3a59ad asoc_simple_remove -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x6a93dcb4 asoc_simple_hw_params -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x72dc5746 asoc_simple_parse_tdm_width_map -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x7728131b asoc_simple_shutdown -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x7e969656 asoc_simple_parse_card_name -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x8ad22cad asoc_simple_parse_routing -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x8f0697c5 asoc_simple_canonicalize_platform -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x99021e8f asoc_simple_parse_convert -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xa79ae519 asoc_simple_parse_widgets -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xabdf297a asoc_simple_init_jack -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xb10f3b9d asoc_simple_be_hw_params_fixup -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xb6377e87 asoc_simple_startup -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xca2fa71f asoc_simple_set_dailink_name -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xd6b8d26d asoc_simple_canonicalize_cpu -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xdf799714 asoc_graph_card_probe -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xeea20112 asoc_simple_convert_fixup -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x16cba469 mtk_dynamic_irq_acquire -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x26f38496 mtk_afe_fe_hw_free -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x3a1ed7f8 mtk_memif_set_pbuf_size -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x3b3d1451 mtk_memif_set_rate_substream -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x408c5ee5 mtk_memif_set_disable -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x4a06fa13 mtk_memif_set_enable -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x51f7fd02 mtk_afe_pcm_platform -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x68748462 mtk_memif_set_addr -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x6fbfe2c0 mtk_afe_fe_hw_params -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x73993ce1 mtk_afe_fe_ops -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x7a08e9ee mtk_afe_fe_trigger -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x7f6113c6 mtk_afe_resume -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x8e1c2601 mtk_afe_add_sub_dai_control -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x8fe1b243 mtk_afe_fe_startup -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x955e93fe mtk_afe_fe_prepare -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x96463062 mtk_dynamic_irq_release -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x984bd59b mtk_memif_set_format -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xa3aa4a5b mtk_memif_set_channel -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xae39638e mtk_afe_pcm_new -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xb63a3981 mtk_afe_fe_shutdown -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xbf3cdd14 mtk_afe_pcm_pointer -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xe3df78ba mtk_afe_combine_sub_dai -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xeb3a2ce6 mtk_memif_set_rate -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xfeb1108c mtk_afe_suspend -EXPORT_SYMBOL_GPL sound/soc/mediatek/mt8195/snd-soc-mt8195-afe 0xa08c5615 mt8195_afe_enable_clk -EXPORT_SYMBOL_GPL sound/soc/mediatek/mt8195/snd-soc-mt8195-afe 0xf1673fb2 mt8195_afe_disable_clk -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0x123701f3 axg_fifo_pcm_hw_free -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0x3453645e g12a_fifo_pcm_hw_params -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0x3e7e7198 axg_fifo_pcm_trigger -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0x7f8669c2 axg_fifo_pcm_new -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0xab928f36 axg_fifo_pcm_open -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0xbe9d4f92 axg_fifo_pcm_pointer -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0xcc3cd5f5 axg_fifo_probe -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0xf371c9e3 axg_fifo_pcm_close -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0xf9e6d36d axg_fifo_pcm_hw_params -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-tdm-formatter 0x4988d1f8 axg_tdm_stream_alloc -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-tdm-formatter 0x539c48cc axg_tdm_stream_start -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-tdm-formatter 0x55316323 axg_tdm_formatter_set_channel_masks -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-tdm-formatter 0x64e0ca85 axg_tdm_stream_free -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-tdm-formatter 0x6e79c37b axg_tdm_formatter_probe -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-tdm-formatter 0xea488f65 axg_tdm_formatter_event -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-tdm-formatter 0xef4a0d56 axg_tdm_stream_stop -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-tdm-interface 0xaf3e2669 axg_tdm_set_tdm_slots -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0x13da02be meson_card_parse_dai -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0x1819044d meson_card_i2s_set_sysclk -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0x623833b1 meson_card_set_be_link -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0x65293764 meson_card_remove -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0x6e7ed6e7 meson_card_parse_daifmt -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0x6ef806eb meson_card_set_fe_link -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0x7889f727 meson_card_probe -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0xbb022133 meson_card_reallocate_links -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-codec-glue 0x010d9b8c meson_codec_glue_input_hw_params -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-codec-glue 0x0b42ec3e meson_codec_glue_input_dai_remove -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-codec-glue 0x151d5093 meson_codec_glue_input_get_data -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-codec-glue 0x165e9dca meson_codec_glue_output_startup -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-codec-glue 0x7326fc16 meson_codec_glue_input_set_fmt -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-codec-glue 0xd1642a67 meson_codec_glue_input_dai_probe -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6adm 0x0090e36e q6adm_matrix_map -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6adm 0x1ead13a7 q6adm_open -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6adm 0x28421460 q6adm_get_copp_id -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6adm 0x63c7de34 q6adm_close -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6afe 0x07a54780 q6afe_cdc_dma_port_prepare -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6afe 0x1bcf62c4 q6afe_port_get_from_id -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6afe 0x369b6eeb q6afe_port_put -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6afe 0x3b16d6e7 q6afe_port_stop -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6afe 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 0x591c43bf q6afe_set_lpass_clock -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6afe 0x7df60063 q6afe_port_set_sysclk -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6afe 0xae809786 q6afe_hdmi_port_prepare -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6afe 0xd4523c59 q6afe_i2s_port_prepare -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6afe 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 0x856b4fdb q6asm_stream_media_format_block_wma_v10 -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0x91ac2b52 q6asm_audio_client_alloc -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0x9d0cf85f q6asm_stream_media_format_block_flac -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0xa7d3a3a6 q6asm_media_format_block_multi_ch_pcm -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0xb37ed108 q6asm_enc_cfg_blk_pcm_format_support -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 0x19f2bcd6 lpass_cpu_pcm_new -EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0x43346896 asoc_qcom_lpass_cpu_platform_shutdown -EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0x75d143de asoc_qcom_lpass_cpu_platform_probe -EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0xa1452568 asoc_qcom_lpass_cpu_platform_remove -EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0xa786bb5f asoc_qcom_lpass_cpu_dai_probe -EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0xd3eab1a9 asoc_qcom_lpass_cpu_dai_ops -EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-hdmi 0xe0793554 asoc_qcom_lpass_hdmi_dai_ops -EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-platform 0xb281e302 asoc_qcom_lpass_platform_register -EXPORT_SYMBOL_GPL sound/soc/rockchip/snd-soc-rockchip-pcm 0xac3a0f1a rockchip_pcm_platform_register -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x051d8349 snd_soc_get_dai_id -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x054aa7bb snd_soc_free_ac97_component -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x060d2fde snd_soc_dapm_force_enable_pin -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0691551f snd_soc_of_parse_audio_routing -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x09d8a275 snd_soc_get_pcm_runtime -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0a2a4ceb snd_soc_dai_set_fmt -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0b9d1b4f snd_soc_get_volsw_range -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0bc48272 snd_soc_jack_add_pins -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0c3d1583 snd_soc_get_dai_name -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0c70a6d7 snd_soc_dai_compr_pointer -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0d3ed282 snd_soc_add_card_controls -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0e51b205 snd_soc_dpcm_get_substream -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x11489b1a snd_soc_of_get_dai_name -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x13244ff7 snd_soc_register_card -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x137c6fcc snd_soc_component_compr_get_params -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x146306d4 snd_soc_component_read -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x15e4f823 snd_soc_put_volsw_range -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x19cb81ea snd_soc_component_set_pll -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1a56222f snd_soc_dai_compr_shutdown -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1d1ac750 snd_soc_info_volsw_range -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1e16e7b1 snd_soc_info_enum_double -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1e4e58bd snd_soc_dai_compr_ack -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1f8498c8 snd_soc_lookup_component_nolocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1fd81f5e snd_soc_tplg_component_load -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2014a958 snd_soc_dai_digital_mute -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x20dae2ef snd_soc_component_exit_regmap -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x253f4392 snd_soc_set_ac97_ops_of_reset -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2541a979 snd_soc_calc_frame_size -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x284f9c92 snd_soc_of_parse_card_name -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2947f7ea snd_soc_cnew -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2b7e5fe9 snd_dmaengine_pcm_register -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2bbdd845 snd_soc_card_get_kcontrol -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2c2d99f6 snd_soc_dapm_ignore_suspend -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2dae2ab7 snd_soc_info_volsw -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x308b2447 snd_soc_set_dmi_name -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x31795abb snd_soc_put_volsw_sx -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3219bc57 snd_soc_new_ac97_component -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3341a034 snd_soc_jack_notifier_unregister -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x33b5f8c0 snd_soc_suspend -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x34202f67 devm_snd_soc_register_dai -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x34900786 snd_soc_dapm_kcontrol_widget -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3576ce7c snd_soc_of_parse_aux_devs -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x39318c88 snd_soc_of_parse_audio_simple_widgets -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x399fa1bb snd_soc_dapm_kcontrol_dapm -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3b0c81e5 snd_soc_jack_add_gpios -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3c863de4 snd_soc_dapm_weak_routes -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3d0c7d9f snd_soc_of_put_dai_link_codecs -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3e2791a4 snd_soc_dai_compr_get_metadata -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3e5bfd3d snd_soc_jack_add_zones -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x405d712b snd_soc_card_add_dai_link -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x40dca66e snd_soc_dai_set_sysclk -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x41c9e58b snd_soc_dapm_get_volsw -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x42e3a526 snd_soc_resume -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x446fb3cd snd_soc_dai_compr_startup -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x45d63dc9 snd_soc_component_force_enable_pin_unlocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x47ef634b snd_soc_component_compr_open -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4815e956 dapm_mark_endpoints_dirty -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x49b47a3d snd_soc_of_get_slot_mask -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4ba84790 snd_soc_component_test_bits -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4bc6e221 snd_soc_dapm_sync_unlocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4e4fecd7 snd_soc_unregister_component -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4ee7a7c9 snd_soc_get_volsw -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5061eb8c snd_soc_component_read_field -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x52e4fa41 snd_soc_dai_compr_get_params -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x54125341 snd_soc_dpcm_runtime_update -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5427e7d1 snd_soc_dpcm_fe_can_update -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x57218e50 snd_soc_set_runtime_hwparams -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x573c3e46 snd_soc_new_compress -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5d1ea53e snd_soc_info_volsw_sx -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5dc7766c snd_soc_dapm_nc_pin_unlocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5ec81957 snd_soc_dai_action -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5f3af749 snd_soc_dapm_get_pin_switch -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x603bc4cc snd_soc_dapm_mixer_update_power -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x61d179fc snd_soc_component_nc_pin -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x625ac2bb snd_soc_dapm_stream_stop -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x629b7855 snd_soc_close_delayed_work -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x68a2def2 snd_soc_remove_pcm_runtime -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6935844f snd_soc_of_parse_tdm_slot -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x69942f33 snd_soc_register_component -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x699438b9 snd_soc_component_write_field -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6b516e82 snd_soc_unregister_dai -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6c7872f4 snd_soc_runtime_action -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6ea945fc snd_soc_daifmt_parse_format -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6ebd2514 snd_soc_dapm_put_pin_switch -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6ef6b1fc snd_soc_add_component_controls -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6fb02d93 snd_soc_dpcm_be_can_update -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6ffd1684 snd_soc_jack_notifier_register -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7424bab3 snd_soc_dai_compr_set_params -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x74a97402 snd_soc_get_xr_sx -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x74c055f5 snd_soc_component_compr_free -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x752038b8 snd_soc_poweroff -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7582f3f1 snd_soc_component_compr_set_params -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x77f2a2d4 snd_soc_link_compr_startup -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x78a09ea5 snd_soc_dapm_new_widgets -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7a46077f snd_soc_find_dai -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7af9a854 snd_soc_bytes_info_ext -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7c0598ea snd_soc_component_compr_trigger -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7e606130 snd_soc_calc_bclk -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7eec40f1 dapm_kcontrol_get_value -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7fdf683a snd_soc_dpcm_can_be_prepared -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8055f5f8 snd_soc_component_set_sysclk -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x806f17b6 snd_soc_component_update_bits -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x81e228f0 devm_snd_soc_register_card -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8217e78f snd_soc_of_get_dai_link_codecs -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x83b11559 dapm_pinctrl_event -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x854a24a1 snd_soc_component_set_jack -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x86cd91b9 snd_soc_add_component -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x87e7195c snd_soc_dapm_add_routes -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x89baab54 snd_soc_runtime_calc_hw -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8ac22c1a snd_soc_component_nc_pin_unlocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8b93ec0d snd_soc_of_parse_node_prefix -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8de93141 snd_soc_dpcm_can_be_free_stop -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8dec4e32 snd_soc_put_volsw -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8f25ebbe snd_soc_bytes_get -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x90865764 snd_soc_get_volsw_sx -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x912302f9 snd_soc_component_disable_pin -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x92794e68 snd_soc_dai_compr_set_metadata -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9283543d snd_soc_component_write -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x936a0780 snd_soc_find_dai_with_mutex -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9446f685 snd_dmaengine_pcm_prepare_slave_config -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x958360a2 snd_soc_dapm_mux_update_power -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x96cc932c snd_soc_component_compr_get_metadata -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x97e7b896 snd_soc_dai_set_bclk_ratio -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x99aa5611 snd_soc_card_jack_new -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9b0fbc39 snd_soc_dpcm_can_be_params -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9ba5185f snd_soc_link_compr_shutdown -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9bfde704 snd_soc_daifmt_clock_provider_fliped -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9cc021e7 snd_soc_dapm_update_dai -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9ce169f1 snd_soc_component_update_bits_async -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9cf6ddca snd_soc_dai_set_tristate -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9fd8d116 snd_soc_dai_set_pll -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa1f26a82 snd_soc_debugfs_root -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa29cc761 snd_soc_dai_set_clkdiv -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa2d27b1c snd_soc_tplg_component_remove -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa5406d4b snd_soc_unregister_card -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa55e6300 snd_soc_component_init_regmap -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa5f2b6d5 snd_soc_dai_set_channel_map -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa86daf23 snd_soc_pm_ops -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa929686e snd_soc_dapm_free -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xabe24236 snd_soc_dapm_nc_pin -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xacadd19e snd_soc_dapm_get_enum_double -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xad0c8a6c snd_soc_bytes_tlv_callback -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xae601402 snd_soc_rtdcom_lookup -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xaf360f69 snd_soc_dai_set_tdm_slot -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb27bf94d snd_soc_dapm_info_pin_switch -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb60c6ecd snd_soc_unregister_component_by_driver -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb6aba503 snd_soc_jack_add_gpiods -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb75be18b snd_soc_lookup_component -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb7a29df9 snd_soc_put_xr_sx -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb7eb2e6b snd_soc_component_initialize -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb9467b05 snd_soc_dapm_put_enum_double -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb94f50d8 snd_soc_dapm_disable_pin -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbec86296 snd_soc_dapm_enable_pin_unlocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbeea2375 devm_snd_dmaengine_pcm_register -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbfb26064 dpcm_be_dai_trigger -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc2309c7d snd_soc_bytes_put -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc2ea26ed snd_soc_put_enum_double -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc3c8ade4 snd_soc_dapm_force_bias_level -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc3dded3d dapm_regulator_event -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc566e474 devm_snd_soc_register_component -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc6402aa4 snd_soc_component_compr_ack -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc6ca2984 snd_soc_component_enable_pin -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc7465d28 snd_soc_component_compr_get_codec_caps -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc7ad343b snd_soc_dapm_force_enable_pin_unlocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc7ceeaeb snd_soc_dapm_del_routes -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc8269f94 snd_soc_params_to_frame_size -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc8edce34 snd_soc_put_strobe -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc97853b9 snd_soc_component_compr_get_caps -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcc20f118 snd_soc_link_compr_set_params -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcd96e714 snd_soc_dai_active -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd2c26301 snd_soc_bytes_info -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd485e5c1 snd_dmaengine_pcm_unregister -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd60d43a1 snd_soc_dai_get_channel_map -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd62c2fd6 snd_soc_info_xr_sx -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd654efa1 soc_ac97_ops -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd71cd67a snd_soc_component_disable_pin_unlocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd80c8702 dapm_clock_event -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd83964ab snd_soc_dapm_get_pin_status -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xda671105 snd_soc_add_pcm_runtime -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdb98e1d7 snd_soc_add_dai_controls -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdc4709ee snd_soc_dapm_new_control -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdc47ec9e snd_soc_dapm_enable_pin -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdc93c581 snd_soc_get_enum_double -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdcc35db2 snd_soc_set_ac97_ops -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xde097198 snd_soc_jack_get_type -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdfaa8eb4 snd_soc_component_get_pin_status -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe241ee49 snd_soc_get_strobe -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe2424eab snd_soc_component_compr_copy -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe3775d0f snd_soc_component_compr_pointer -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe420a595 snd_soc_dapm_put_volsw -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe500a5ab snd_soc_component_force_enable_pin -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe5723422 snd_soc_dai_link_set_capabilities -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe5e97654 snd_soc_tplg_widget_bind_event -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe947111f snd_soc_daifmt_parse_clock_provider_raw -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xeb49973d snd_soc_dapm_sync -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xeb711ae7 snd_soc_params_to_bclk -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xeb8bf037 snd_soc_dai_compr_trigger -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xedc98e1a snd_soc_component_async_complete -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf3e6c254 null_dailink_component -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf4135880 snd_soc_component_compr_set_metadata -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf4e39d52 snd_soc_dapm_new_controls -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf55f5773 snd_soc_component_enable_pin_unlocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf6aed09d snd_soc_card_remove_dai_link -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf8e19d34 snd_soc_jack_free_gpios -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf9622dd1 snd_soc_daifmt_clock_provider_from_bitmap -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf9b7bca3 snd_soc_jack_report -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf9cf0b7d snd_soc_dapm_disable_pin_unlocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfa367a74 snd_soc_limit_volume -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfa6d763c snd_soc_dapm_init -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfd777e84 snd_soc_runtime_set_dai_fmt -EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0x1778e3d9 snd_sof_free_debug -EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0x308a0792 snd_sof_debugfs_buf_item -EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0x946e66c2 snd_sof_debugfs_io_item -EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0xb668db21 snd_sof_dbg_memory_info_init -EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0xded33d9b 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 0x411e4fb9 tegra_asoc_machine_init -EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-machine 0x49379ec3 tegra_asoc_machine_probe -EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0x0c4c164a tegra_pcm_pointer -EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0x7bdd4bf9 tegra_pcm_platform_register -EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0x7c73bebd tegra_pcm_platform_unregister -EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0x8fe32bd3 tegra_pcm_hw_params -EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0x975998f6 tegra_pcm_close -EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0x985fb2bf tegra_pcm_platform_register_with_chan_names -EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0xe16ed0fe tegra_pcm_construct -EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0xe382729f tegra_pcm_open -EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra20-das 0x0d54c9b9 tegra20_das_connect_dap_to_dac -EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra20-das 0xb52cfca4 tegra20_das_connect_dac_to_dap -EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra20-das 0xbced7431 tegra20_das_connect_dap_to_dap -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 0x7c0128db edma_pcm_platform_register -EXPORT_SYMBOL_GPL sound/soc/ti/snd-soc-ti-sdma 0xf622e793 sdma_pcm_platform_register -EXPORT_SYMBOL_GPL sound/soc/ti/snd-soc-ti-udma 0xc7491221 udma_pcm_platform_register -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x02b5c8f2 line6_send_sysex_message -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x07644d6d line6_pcm_release -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x105daa2f line6_read_serial_number -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x202a1b1b line6_midi_id -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x329da1c3 line6_send_raw_message -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x5b53c128 line6_resume -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x6417c777 line6_init_pcm -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x6f70ac8e line6_probe -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x88175865 line6_send_raw_message_async -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x8d9260ae line6_disconnect -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xa9582f5a line6_read_data -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xac2aabae line6_pcm_acquire -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xbe5e2d09 line6_write_data -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xcef91093 line6_version_request_async -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xdd1f83a6 line6_init_midi -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xdef81fee line6_suspend -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xebecf1d4 line6_alloc_sysex_buffer -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 0x000b90d3 key_type_trusted -EXPORT_SYMBOL_GPL vmlinux 0x002b4783 pci_iomap_wc_range -EXPORT_SYMBOL_GPL vmlinux 0x00385054 thermal_zone_of_sensor_unregister -EXPORT_SYMBOL_GPL vmlinux 0x0042de7c tcpv6_prot -EXPORT_SYMBOL_GPL vmlinux 0x00513f58 get_timespec64 -EXPORT_SYMBOL_GPL vmlinux 0x00542a20 tegra_bpmp_transfer_atomic -EXPORT_SYMBOL_GPL vmlinux 0x00565f18 pernet_ops_rwsem -EXPORT_SYMBOL_GPL vmlinux 0x005f18a6 add_wait_queue_priority -EXPORT_SYMBOL_GPL vmlinux 0x006012bc find_extend_vma -EXPORT_SYMBOL_GPL vmlinux 0x00646587 bpf_trace_run5 -EXPORT_SYMBOL_GPL vmlinux 0x007fa994 ata_bmdma_setup -EXPORT_SYMBOL_GPL vmlinux 0x0087c41b device_store_bool -EXPORT_SYMBOL_GPL vmlinux 0x009e88f3 devm_pinctrl_get -EXPORT_SYMBOL_GPL vmlinux 0x00a3c361 tps6586x_irq_get_virq -EXPORT_SYMBOL_GPL vmlinux 0x00a73ac2 debugfs_create_regset32 -EXPORT_SYMBOL_GPL vmlinux 0x00be52f6 tpm_send -EXPORT_SYMBOL_GPL vmlinux 0x00d4c500 usb_decode_interval -EXPORT_SYMBOL_GPL vmlinux 0x00df9837 ioasid_register_allocator -EXPORT_SYMBOL_GPL vmlinux 0x00f86b18 usb_hub_clear_tt_buffer -EXPORT_SYMBOL_GPL vmlinux 0x00fc730e ip6_input -EXPORT_SYMBOL_GPL vmlinux 0x01129869 dbs_update -EXPORT_SYMBOL_GPL vmlinux 0x0115db51 pci_epf_unbind -EXPORT_SYMBOL_GPL vmlinux 0x011b77ef ata_acpi_gtm_xfermask -EXPORT_SYMBOL_GPL vmlinux 0x012295c5 host1x_context_device_bus_type -EXPORT_SYMBOL_GPL vmlinux 0x0124a58a tty_standard_install -EXPORT_SYMBOL_GPL vmlinux 0x012a6f91 unregister_virtio_device -EXPORT_SYMBOL_GPL vmlinux 0x012e730e apei_exec_noop -EXPORT_SYMBOL_GPL vmlinux 0x0134ddbc i2c_acpi_new_device -EXPORT_SYMBOL_GPL vmlinux 0x013a5437 pm_generic_freeze -EXPORT_SYMBOL_GPL vmlinux 0x013d3343 regmap_register_patch -EXPORT_SYMBOL_GPL vmlinux 0x014e8186 cpu_scale -EXPORT_SYMBOL_GPL vmlinux 0x015cf151 regulator_get_exclusive -EXPORT_SYMBOL_GPL vmlinux 0x015fc5d6 devlink_dpipe_entry_ctx_close -EXPORT_SYMBOL_GPL vmlinux 0x0168deb4 sk_msg_is_readable -EXPORT_SYMBOL_GPL vmlinux 0x016bb0e2 bpf_prog_destroy -EXPORT_SYMBOL_GPL vmlinux 0x0178d629 regmap_attach_dev -EXPORT_SYMBOL_GPL vmlinux 0x017b86bd platform_get_mem_or_io -EXPORT_SYMBOL_GPL vmlinux 0x01866a57 ezx_pcap_set_bits -EXPORT_SYMBOL_GPL vmlinux 0x0187567d led_classdev_register_ext -EXPORT_SYMBOL_GPL vmlinux 0x0189eea5 ata_sff_tf_read -EXPORT_SYMBOL_GPL vmlinux 0x018dfe19 watchdog_unregister_device -EXPORT_SYMBOL_GPL vmlinux 0x01a0cb78 property_entries_free -EXPORT_SYMBOL_GPL vmlinux 0x01a7f2d2 pci_epc_get_features -EXPORT_SYMBOL_GPL vmlinux 0x01ae0b3a spi_controller_suspend -EXPORT_SYMBOL_GPL vmlinux 0x01c6cb0c cpu_cluster_pm_enter -EXPORT_SYMBOL_GPL vmlinux 0x01c865e2 rtc_read_time -EXPORT_SYMBOL_GPL vmlinux 0x01d0031c ata_cable_unknown -EXPORT_SYMBOL_GPL vmlinux 0x01d56fe4 spi_get_device_id -EXPORT_SYMBOL_GPL vmlinux 0x01d81ff0 list_lru_count_one -EXPORT_SYMBOL_GPL vmlinux 0x01d90cc6 devm_phy_destroy -EXPORT_SYMBOL_GPL vmlinux 0x01e1a8de kgdb_breakpoint -EXPORT_SYMBOL_GPL vmlinux 0x0202239e devres_add -EXPORT_SYMBOL_GPL vmlinux 0x0207a6c6 reset_control_bulk_acquire -EXPORT_SYMBOL_GPL vmlinux 0x021be4ff usb_hcd_link_urb_to_ep -EXPORT_SYMBOL_GPL vmlinux 0x02394899 play_idle_precise -EXPORT_SYMBOL_GPL vmlinux 0x023ed927 usb_phy_roothub_alloc -EXPORT_SYMBOL_GPL vmlinux 0x024d1072 icc_provider_del -EXPORT_SYMBOL_GPL vmlinux 0x024d13dd request_free_mem_region -EXPORT_SYMBOL_GPL vmlinux 0x025146bb cpci_hp_register_bus -EXPORT_SYMBOL_GPL vmlinux 0x0252aed6 usb_get_descriptor -EXPORT_SYMBOL_GPL vmlinux 0x025591d5 cpufreq_dbs_governor_limits -EXPORT_SYMBOL_GPL vmlinux 0x0255a866 regulator_map_voltage_pickable_linear_range -EXPORT_SYMBOL_GPL vmlinux 0x02599782 of_dma_router_register -EXPORT_SYMBOL_GPL vmlinux 0x025c5ec0 tpm_try_get_ops -EXPORT_SYMBOL_GPL vmlinux 0x02632887 perf_event_refresh -EXPORT_SYMBOL_GPL vmlinux 0x0266d336 clk_bulk_get_optional -EXPORT_SYMBOL_GPL vmlinux 0x02869c21 devlink_dpipe_table_counter_enabled -EXPORT_SYMBOL_GPL vmlinux 0x0296bc0a i2c_new_scanned_device -EXPORT_SYMBOL_GPL vmlinux 0x0297fce0 shmem_read_mapping_page_gfp -EXPORT_SYMBOL_GPL vmlinux 0x029dd9d5 gnttab_batch_copy -EXPORT_SYMBOL_GPL vmlinux 0x02a63829 subsys_dev_iter_exit -EXPORT_SYMBOL_GPL vmlinux 0x02b2815c fuse_dev_free -EXPORT_SYMBOL_GPL vmlinux 0x02b6f650 scsi_autopm_get_device -EXPORT_SYMBOL_GPL vmlinux 0x02c9659f devlink_resource_register -EXPORT_SYMBOL_GPL vmlinux 0x030580ec __account_locked_vm -EXPORT_SYMBOL_GPL vmlinux 0x03110926 ehci_setup -EXPORT_SYMBOL_GPL vmlinux 0x0312b3b0 reset_controller_add_lookup -EXPORT_SYMBOL_GPL vmlinux 0x0315db77 led_init_default_state_get -EXPORT_SYMBOL_GPL vmlinux 0x031ae4d5 __clk_get_hw -EXPORT_SYMBOL_GPL vmlinux 0x0321cdbf of_alias_get_highest_id -EXPORT_SYMBOL_GPL vmlinux 0x0325d7a4 pci_host_common_probe -EXPORT_SYMBOL_GPL vmlinux 0x032c8d5b blk_mq_quiesce_queue -EXPORT_SYMBOL_GPL vmlinux 0x032eb964 i2c_of_match_device -EXPORT_SYMBOL_GPL vmlinux 0x03363a55 xenbus_dev_changed -EXPORT_SYMBOL_GPL vmlinux 0x033832c7 usb_amd_hang_symptom_quirk -EXPORT_SYMBOL_GPL vmlinux 0x0343bdf1 __i2c_board_list -EXPORT_SYMBOL_GPL vmlinux 0x034e3385 usb_autopm_put_interface_no_suspend -EXPORT_SYMBOL_GPL vmlinux 0x03561d99 dev_pm_opp_enable -EXPORT_SYMBOL_GPL vmlinux 0x03599a7e ata_sas_port_resume -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 0x03704fb5 thermal_zone_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0x0381e688 devlink_sb_register -EXPORT_SYMBOL_GPL vmlinux 0x038df525 apei_get_debugfs_dir -EXPORT_SYMBOL_GPL vmlinux 0x03952887 ktime_add_safe -EXPORT_SYMBOL_GPL vmlinux 0x0396139e pm_generic_thaw -EXPORT_SYMBOL_GPL vmlinux 0x03990881 tcp_slow_start -EXPORT_SYMBOL_GPL vmlinux 0x039af36e devlink_port_attrs_pci_vf_set -EXPORT_SYMBOL_GPL vmlinux 0x03a3e5f7 fuse_dev_operations -EXPORT_SYMBOL_GPL vmlinux 0x03b15ab2 led_trigger_write -EXPORT_SYMBOL_GPL vmlinux 0x03c12dfe cancel_work_sync -EXPORT_SYMBOL_GPL vmlinux 0x03ce7234 sched_smt_present -EXPORT_SYMBOL_GPL vmlinux 0x03e2e621 platform_device_add_data -EXPORT_SYMBOL_GPL vmlinux 0x03e95bca __efivar_entry_get -EXPORT_SYMBOL_GPL vmlinux 0x042c9a04 em_cpu_get -EXPORT_SYMBOL_GPL vmlinux 0x044adeed spi_controller_resume -EXPORT_SYMBOL_GPL vmlinux 0x0465a073 regmap_reg_in_ranges -EXPORT_SYMBOL_GPL vmlinux 0x04674709 ping_rcv -EXPORT_SYMBOL_GPL vmlinux 0x046f359e of_overlay_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0x047130dd crypto_unregister_kpp -EXPORT_SYMBOL_GPL vmlinux 0x0472cf3b register_kprobe -EXPORT_SYMBOL_GPL vmlinux 0x048b5f8d twl4030_audio_get_mclk -EXPORT_SYMBOL_GPL vmlinux 0x0494c3ca rio_dev_get -EXPORT_SYMBOL_GPL vmlinux 0x049e5156 gnttab_try_end_foreign_access -EXPORT_SYMBOL_GPL vmlinux 0x04a54da5 serdev_device_write_flush -EXPORT_SYMBOL_GPL vmlinux 0x04aaf4ec dev_get_tstats64 -EXPORT_SYMBOL_GPL vmlinux 0x04ab6042 devfreq_event_remove_edev -EXPORT_SYMBOL_GPL vmlinux 0x04b54672 __percpu_init_rwsem -EXPORT_SYMBOL_GPL vmlinux 0x04be8c36 extcon_set_state_sync -EXPORT_SYMBOL_GPL vmlinux 0x04bf0092 io_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x04c4f603 mpi_get_buffer -EXPORT_SYMBOL_GPL vmlinux 0x04c8583e gpiochip_remove_pin_ranges -EXPORT_SYMBOL_GPL vmlinux 0x04c8aebf console_verbose -EXPORT_SYMBOL_GPL vmlinux 0x04d1b7ad crypto_register_kpp -EXPORT_SYMBOL_GPL vmlinux 0x04d67b2e ata_bmdma_port_start32 -EXPORT_SYMBOL_GPL vmlinux 0x04d87bec __nf_ip6_route -EXPORT_SYMBOL_GPL vmlinux 0x04ddbffb iommu_report_device_fault -EXPORT_SYMBOL_GPL vmlinux 0x04df8fbc lzo1x_decompress_safe -EXPORT_SYMBOL_GPL vmlinux 0x04f5a4c1 irq_work_queue -EXPORT_SYMBOL_GPL vmlinux 0x04fc6fa4 regulator_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x0505f9b8 phy_driver_is_genphy_10g -EXPORT_SYMBOL_GPL vmlinux 0x05060cd4 crypto_unregister_scomps -EXPORT_SYMBOL_GPL vmlinux 0x050aa517 ata_host_activate -EXPORT_SYMBOL_GPL vmlinux 0x05196b49 __cpuhp_state_add_instance -EXPORT_SYMBOL_GPL vmlinux 0x0521d784 amba_device_put -EXPORT_SYMBOL_GPL vmlinux 0x052b5c9d __pci_hp_initialize -EXPORT_SYMBOL_GPL vmlinux 0x052c9aed ktime_get_real_fast_ns -EXPORT_SYMBOL_GPL vmlinux 0x053932ab devm_pinctrl_put -EXPORT_SYMBOL_GPL vmlinux 0x053d738a __SCK__tp_func_br_fdb_update -EXPORT_SYMBOL_GPL vmlinux 0x0548e89d platform_driver_unregister -EXPORT_SYMBOL_GPL vmlinux 0x054af185 __irq_resolve_mapping -EXPORT_SYMBOL_GPL vmlinux 0x054b8f29 __traceiter_sched_overutilized_tp -EXPORT_SYMBOL_GPL vmlinux 0x054e550b kernel_halt -EXPORT_SYMBOL_GPL vmlinux 0x054fea9a pci_sriov_configure_simple -EXPORT_SYMBOL_GPL vmlinux 0x0558f92f acpiphp_unregister_attention -EXPORT_SYMBOL_GPL vmlinux 0x05610897 of_changeset_destroy -EXPORT_SYMBOL_GPL vmlinux 0x05641313 imx_clk_hw_sscg_pll -EXPORT_SYMBOL_GPL vmlinux 0x0568d277 acpi_get_first_physical_node -EXPORT_SYMBOL_GPL vmlinux 0x05883efb __traceiter_suspend_resume -EXPORT_SYMBOL_GPL vmlinux 0x058a59f1 srcu_notifier_chain_register -EXPORT_SYMBOL_GPL vmlinux 0x058c6377 for_each_kernel_tracepoint -EXPORT_SYMBOL_GPL vmlinux 0x058f9366 apei_exec_collect_resources -EXPORT_SYMBOL_GPL vmlinux 0x05a610a4 tps65912_regmap_config -EXPORT_SYMBOL_GPL vmlinux 0x05aeebec devm_of_phy_provider_unregister -EXPORT_SYMBOL_GPL vmlinux 0x05afbb1e gpiochip_find -EXPORT_SYMBOL_GPL vmlinux 0x05b148d3 __devm_regmap_init_spi -EXPORT_SYMBOL_GPL vmlinux 0x05bdc5f4 dev_fill_forward_path -EXPORT_SYMBOL_GPL vmlinux 0x05c66e9c pci_probe_reset_slot -EXPORT_SYMBOL_GPL vmlinux 0x06055a23 __tracepoint_pelt_se_tp -EXPORT_SYMBOL_GPL vmlinux 0x061a6e97 __pneigh_lookup -EXPORT_SYMBOL_GPL vmlinux 0x061b2a42 devm_fwnode_pwm_get -EXPORT_SYMBOL_GPL vmlinux 0x061bac75 open_related_ns -EXPORT_SYMBOL_GPL vmlinux 0x06209f49 phy_lookup_setting -EXPORT_SYMBOL_GPL vmlinux 0x0626da5f od_unregister_powersave_bias_handler -EXPORT_SYMBOL_GPL vmlinux 0x062c413a acpi_dma_configure_id -EXPORT_SYMBOL_GPL vmlinux 0x063336a1 rio_mport_read_config_8 -EXPORT_SYMBOL_GPL vmlinux 0x063e9296 rpi_firmware_put -EXPORT_SYMBOL_GPL vmlinux 0x063f8f66 nf_ipv6_ops -EXPORT_SYMBOL_GPL vmlinux 0x064db9a5 mark_mounts_for_expiry -EXPORT_SYMBOL_GPL vmlinux 0x06619953 da903x_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x066c11df clk_register_fixed_factor -EXPORT_SYMBOL_GPL vmlinux 0x06748c25 devlink_param_unpublish -EXPORT_SYMBOL_GPL vmlinux 0x067c3e09 wm831x_regmap_config -EXPORT_SYMBOL_GPL vmlinux 0x0682670b mtk_paris_pinctrl_probe -EXPORT_SYMBOL_GPL vmlinux 0x068f6ac0 led_classdev_notify_brightness_hw_changed -EXPORT_SYMBOL_GPL vmlinux 0x0696d9bd led_set_brightness_nosleep -EXPORT_SYMBOL_GPL vmlinux 0x0697330d register_wide_hw_breakpoint -EXPORT_SYMBOL_GPL vmlinux 0x069c77b1 ata_host_alloc_pinfo -EXPORT_SYMBOL_GPL vmlinux 0x06acf61e fscrypt_drop_inode -EXPORT_SYMBOL_GPL vmlinux 0x06b7f74e da9052_adc_manual_read -EXPORT_SYMBOL_GPL vmlinux 0x06bbf38f mmc_pwrseq_register -EXPORT_SYMBOL_GPL vmlinux 0x06bd061f acpi_subsys_prepare -EXPORT_SYMBOL_GPL vmlinux 0x06cca30b ring_buffer_record_off -EXPORT_SYMBOL_GPL vmlinux 0x06e4433e sunxi_ccu_set_mmc_timing_mode -EXPORT_SYMBOL_GPL vmlinux 0x06e5c806 gpio_to_desc -EXPORT_SYMBOL_GPL vmlinux 0x06e9dc67 tegra_agic_irq_is_active -EXPORT_SYMBOL_GPL vmlinux 0x06ef545d devm_pinctrl_register -EXPORT_SYMBOL_GPL vmlinux 0x06fd990e ahci_qc_issue -EXPORT_SYMBOL_GPL vmlinux 0x0707019a context_tracking -EXPORT_SYMBOL_GPL vmlinux 0x070aa16f extcon_get_edev_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0x071d45be proc_create_net_single -EXPORT_SYMBOL_GPL vmlinux 0x07215f26 edac_mc_alloc -EXPORT_SYMBOL_GPL vmlinux 0x07242d92 put_dax -EXPORT_SYMBOL_GPL vmlinux 0x0725488c mddev_init_writes_pending -EXPORT_SYMBOL_GPL vmlinux 0x0738b98a get_device -EXPORT_SYMBOL_GPL vmlinux 0x0739df99 fib_nl_newrule -EXPORT_SYMBOL_GPL vmlinux 0x07483e13 cn_del_callback -EXPORT_SYMBOL_GPL vmlinux 0x074f98db synth_event_add_field -EXPORT_SYMBOL_GPL vmlinux 0x076356e7 sfp_may_have_phy -EXPORT_SYMBOL_GPL vmlinux 0x0763c9e0 ncsi_register_dev -EXPORT_SYMBOL_GPL vmlinux 0x076476e5 xdp_return_frame_rx_napi -EXPORT_SYMBOL_GPL vmlinux 0x076cc6f5 led_trigger_set -EXPORT_SYMBOL_GPL vmlinux 0x077f5fd1 lwtunnel_output -EXPORT_SYMBOL_GPL vmlinux 0x0787f042 acpi_data_fwnode_ops -EXPORT_SYMBOL_GPL vmlinux 0x07959e32 get_device_system_crosststamp -EXPORT_SYMBOL_GPL vmlinux 0x0796cc61 fsverity_verify_bio -EXPORT_SYMBOL_GPL vmlinux 0x0798919d nexthop_for_each_fib6_nh -EXPORT_SYMBOL_GPL vmlinux 0x079e57ba power_supply_get_drvdata -EXPORT_SYMBOL_GPL vmlinux 0x07b21f85 kdb_get_kbd_char -EXPORT_SYMBOL_GPL vmlinux 0x07b52e38 rtnl_unregister -EXPORT_SYMBOL_GPL vmlinux 0x07b9ac72 virtqueue_enable_cb -EXPORT_SYMBOL_GPL vmlinux 0x07be6905 net_inc_egress_queue -EXPORT_SYMBOL_GPL vmlinux 0x07c7a594 pci_iov_virtfn_devfn -EXPORT_SYMBOL_GPL vmlinux 0x07d551b9 l3mdev_master_ifindex_rcu -EXPORT_SYMBOL_GPL vmlinux 0x07dc56e3 fsl_mc_object_allocate -EXPORT_SYMBOL_GPL vmlinux 0x07ebf830 usb_for_each_port -EXPORT_SYMBOL_GPL vmlinux 0x07f57499 msg_zerocopy_alloc -EXPORT_SYMBOL_GPL vmlinux 0x07f7444a tty_release_struct -EXPORT_SYMBOL_GPL vmlinux 0x07fae2d8 iommu_device_sysfs_remove -EXPORT_SYMBOL_GPL vmlinux 0x080eaa8a inet6_cleanup_sock -EXPORT_SYMBOL_GPL vmlinux 0x080fd81c regmap_multi_reg_write -EXPORT_SYMBOL_GPL vmlinux 0x08135613 dax_write_cache -EXPORT_SYMBOL_GPL vmlinux 0x081f9e40 crypto_register_acomp -EXPORT_SYMBOL_GPL vmlinux 0x082b4fcc blkcg_print_blkgs -EXPORT_SYMBOL_GPL vmlinux 0x08307bdf kobject_get_path -EXPORT_SYMBOL_GPL vmlinux 0x083b1ad1 handle_fasteoi_mask_irq -EXPORT_SYMBOL_GPL vmlinux 0x0846512c devlink_is_reload_failed -EXPORT_SYMBOL_GPL vmlinux 0x0850647b perf_event_pause -EXPORT_SYMBOL_GPL vmlinux 0x08576175 unregister_kretprobes -EXPORT_SYMBOL_GPL vmlinux 0x085df199 phy_restore_page -EXPORT_SYMBOL_GPL vmlinux 0x086323c0 acpi_cppc_processor_probe -EXPORT_SYMBOL_GPL vmlinux 0x0868822f usb_find_alt_setting -EXPORT_SYMBOL_GPL vmlinux 0x087554cc icc_std_aggregate -EXPORT_SYMBOL_GPL vmlinux 0x08793a29 virtio_check_driver_offered_feature -EXPORT_SYMBOL_GPL vmlinux 0x087f5dc5 wm831x_of_match -EXPORT_SYMBOL_GPL vmlinux 0x08aad3ed nvdimm_bus_unregister -EXPORT_SYMBOL_GPL vmlinux 0x08b59033 virtio_break_device -EXPORT_SYMBOL_GPL vmlinux 0x08bda339 ata_dev_set_feature -EXPORT_SYMBOL_GPL vmlinux 0x08c78cf7 offline_and_remove_memory -EXPORT_SYMBOL_GPL vmlinux 0x08e8287e of_get_fb_videomode -EXPORT_SYMBOL_GPL vmlinux 0x08e95f34 devlink_param_driverinit_value_set -EXPORT_SYMBOL_GPL vmlinux 0x08f19a09 mmu_notifier_range_update_to_read_only -EXPORT_SYMBOL_GPL vmlinux 0x08f1bb27 efivar_entry_remove -EXPORT_SYMBOL_GPL vmlinux 0x08f5cce7 dev_pm_opp_get_required_pstate -EXPORT_SYMBOL_GPL vmlinux 0x090243da dm_table_device_name -EXPORT_SYMBOL_GPL vmlinux 0x09044baa ping_getfrag -EXPORT_SYMBOL_GPL vmlinux 0x0907d14d blocking_notifier_chain_register -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 0x0945cec1 policy_has_boost_freq -EXPORT_SYMBOL_GPL vmlinux 0x094829ad exportfs_decode_fh_raw -EXPORT_SYMBOL_GPL vmlinux 0x09513dc9 auxiliary_driver_unregister -EXPORT_SYMBOL_GPL vmlinux 0x095b24bf ima_file_hash -EXPORT_SYMBOL_GPL vmlinux 0x09704f7f memremap_pages -EXPORT_SYMBOL_GPL vmlinux 0x097ddc04 context_tracking_exit -EXPORT_SYMBOL_GPL vmlinux 0x0997b589 __netpoll_cleanup -EXPORT_SYMBOL_GPL vmlinux 0x09b53e14 interval_tree_remove -EXPORT_SYMBOL_GPL vmlinux 0x09b58742 __devm_clk_hw_register_mux -EXPORT_SYMBOL_GPL vmlinux 0x09c2ef3f devm_memunmap_pages -EXPORT_SYMBOL_GPL vmlinux 0x09c8e617 virtqueue_add_inbuf -EXPORT_SYMBOL_GPL vmlinux 0x09d63265 list_lru_count_node -EXPORT_SYMBOL_GPL vmlinux 0x09da4487 sock_prot_inuse_get -EXPORT_SYMBOL_GPL vmlinux 0x09e2556e iommu_map_sg -EXPORT_SYMBOL_GPL vmlinux 0x09eca1b6 led_set_brightness_sync -EXPORT_SYMBOL_GPL vmlinux 0x09f50f32 rcu_nocb_flush_deferred_wakeup -EXPORT_SYMBOL_GPL vmlinux 0x09f54046 platform_msi_domain_free_irqs -EXPORT_SYMBOL_GPL vmlinux 0x09fbb0eb perf_get_aux -EXPORT_SYMBOL_GPL vmlinux 0x09fc6a00 bd_link_disk_holder -EXPORT_SYMBOL_GPL vmlinux 0x0a00dca5 __page_mapcount -EXPORT_SYMBOL_GPL vmlinux 0x0a103c55 clk_hw_register_gate2 -EXPORT_SYMBOL_GPL vmlinux 0x0a2461cf pci_load_and_free_saved_state -EXPORT_SYMBOL_GPL vmlinux 0x0a2bc0da devm_hwspin_lock_free -EXPORT_SYMBOL_GPL vmlinux 0x0a463293 __tracepoint_error_report_end -EXPORT_SYMBOL_GPL vmlinux 0x0a52c511 hv_query_ext_cap -EXPORT_SYMBOL_GPL vmlinux 0x0a556d12 gov_attr_set_put -EXPORT_SYMBOL_GPL vmlinux 0x0a645ef6 is_nvdimm_sync -EXPORT_SYMBOL_GPL vmlinux 0x0a6c4041 cn_netlink_send -EXPORT_SYMBOL_GPL vmlinux 0x0a792bba sprd_pinctrl_shutdown -EXPORT_SYMBOL_GPL vmlinux 0x0a7ceb30 __tracepoint_non_standard_event -EXPORT_SYMBOL_GPL vmlinux 0x0a87f91e gpiochip_line_is_persistent -EXPORT_SYMBOL_GPL vmlinux 0x0aaa66fe cpufreq_cooling_unregister -EXPORT_SYMBOL_GPL vmlinux 0x0ab8c929 ata_common_sdev_attrs -EXPORT_SYMBOL_GPL vmlinux 0x0abc6be6 k3_ringacc_ring_is_full -EXPORT_SYMBOL_GPL vmlinux 0x0abcbf05 pkcs7_parse_message -EXPORT_SYMBOL_GPL vmlinux 0x0ac56a6a mtk_eint_set_debounce -EXPORT_SYMBOL_GPL vmlinux 0x0ac85926 cleanup_srcu_struct -EXPORT_SYMBOL_GPL vmlinux 0x0ad0daf5 __list_lru_init -EXPORT_SYMBOL_GPL vmlinux 0x0ade4b9c relay_open -EXPORT_SYMBOL_GPL vmlinux 0x0ae18645 clk_hw_unregister -EXPORT_SYMBOL_GPL vmlinux 0x0ae6ce12 sdio_signal_irq -EXPORT_SYMBOL_GPL vmlinux 0x0aed447e regmap_async_complete_cb -EXPORT_SYMBOL_GPL vmlinux 0x0af127d3 nvdimm_badblocks_populate -EXPORT_SYMBOL_GPL vmlinux 0x0af3fff6 ahci_sdev_attrs -EXPORT_SYMBOL_GPL vmlinux 0x0af40724 iommu_alloc_resv_region -EXPORT_SYMBOL_GPL vmlinux 0x0afcf6e5 ncsi_vlan_rx_kill_vid -EXPORT_SYMBOL_GPL vmlinux 0x0b00b9ba usb_set_interface -EXPORT_SYMBOL_GPL vmlinux 0x0b07abe2 unshare_fs_struct -EXPORT_SYMBOL_GPL vmlinux 0x0b12ddf0 virtqueue_get_vring_size -EXPORT_SYMBOL_GPL vmlinux 0x0b1783fb reset_control_get_count -EXPORT_SYMBOL_GPL vmlinux 0x0b18cf97 irq_domain_create_legacy -EXPORT_SYMBOL_GPL vmlinux 0x0b1af04d cpufreq_cpu_get -EXPORT_SYMBOL_GPL vmlinux 0x0b236b5f devm_clk_unregister -EXPORT_SYMBOL_GPL vmlinux 0x0b2d76e0 watchdog_notify_pretimeout -EXPORT_SYMBOL_GPL vmlinux 0x0b2db2d5 remove_resource -EXPORT_SYMBOL_GPL vmlinux 0x0b3404b5 ack_all_badblocks -EXPORT_SYMBOL_GPL vmlinux 0x0b3a3ed7 zynqmp_pm_fpga_get_status -EXPORT_SYMBOL_GPL vmlinux 0x0b42e507 device_create_with_groups -EXPORT_SYMBOL_GPL vmlinux 0x0b47d2df mtk_pinconf_bias_get_rev1 -EXPORT_SYMBOL_GPL vmlinux 0x0b4a5cc9 meson_clk_dualdiv_ops -EXPORT_SYMBOL_GPL vmlinux 0x0b52e502 apei_resources_add -EXPORT_SYMBOL_GPL vmlinux 0x0b690f04 k3_udma_glue_tx_get_txcq_id -EXPORT_SYMBOL_GPL vmlinux 0x0b88b851 lp8788_read_multi_bytes -EXPORT_SYMBOL_GPL vmlinux 0x0b9f67f6 cpufreq_dbs_governor_init -EXPORT_SYMBOL_GPL vmlinux 0x0b9fde43 pinconf_generic_dt_node_to_map -EXPORT_SYMBOL_GPL vmlinux 0x0bb028d4 hisi_clk_register_fixed_factor -EXPORT_SYMBOL_GPL vmlinux 0x0bb550dd sfp_bus_add_upstream -EXPORT_SYMBOL_GPL vmlinux 0x0bb796bf irq_set_chip_and_handler_name -EXPORT_SYMBOL_GPL vmlinux 0x0bbd867b tc3589x_reg_read -EXPORT_SYMBOL_GPL vmlinux 0x0bbdc9b2 remove_memory -EXPORT_SYMBOL_GPL vmlinux 0x0bd78406 of_clk_src_onecell_get -EXPORT_SYMBOL_GPL vmlinux 0x0be4988c sysfs_create_link_nowarn -EXPORT_SYMBOL_GPL vmlinux 0x0bee1577 of_property_read_u32_index -EXPORT_SYMBOL_GPL vmlinux 0x0beeb709 of_pci_get_devfn -EXPORT_SYMBOL_GPL vmlinux 0x0bf32478 __SCK__tp_func_pelt_rt_tp -EXPORT_SYMBOL_GPL vmlinux 0x0bf3fee4 ata_qc_get_active -EXPORT_SYMBOL_GPL vmlinux 0x0bf8fe1c debugfs_create_bool -EXPORT_SYMBOL_GPL vmlinux 0x0bfa3a19 rcu_idle_exit -EXPORT_SYMBOL_GPL vmlinux 0x0c0e63bd __clk_hw_register_fixed_rate -EXPORT_SYMBOL_GPL vmlinux 0x0c2804e5 bpf_offload_dev_netdev_unregister -EXPORT_SYMBOL_GPL vmlinux 0x0c2bc151 __auxiliary_driver_register -EXPORT_SYMBOL_GPL vmlinux 0x0c2bfab4 dst_cache_get -EXPORT_SYMBOL_GPL vmlinux 0x0c2c0573 cros_ec_get_sensor_count -EXPORT_SYMBOL_GPL vmlinux 0x0c2c5802 work_busy -EXPORT_SYMBOL_GPL vmlinux 0x0c2e51b2 regmap_field_bulk_alloc -EXPORT_SYMBOL_GPL vmlinux 0x0c32ff8a edac_pci_alloc_index -EXPORT_SYMBOL_GPL vmlinux 0x0c3e6241 k3_udma_glue_disable_rx_chn -EXPORT_SYMBOL_GPL vmlinux 0x0c44e92a usb_phy_set_charger_state -EXPORT_SYMBOL_GPL vmlinux 0x0c464892 ping_recvmsg -EXPORT_SYMBOL_GPL vmlinux 0x0c4f2c1c fscrypt_d_revalidate -EXPORT_SYMBOL_GPL vmlinux 0x0c5419cd blk_mq_pci_map_queues -EXPORT_SYMBOL_GPL vmlinux 0x0c601953 blk_ksm_init_passthrough -EXPORT_SYMBOL_GPL vmlinux 0x0c61dd4a percpu_free_rwsem -EXPORT_SYMBOL_GPL vmlinux 0x0c6cb9f3 virtqueue_kick -EXPORT_SYMBOL_GPL vmlinux 0x0c88c1c3 pci_vpd_find_id_string -EXPORT_SYMBOL_GPL vmlinux 0x0c8eabe9 blkg_lookup_slowpath -EXPORT_SYMBOL_GPL vmlinux 0x0c916213 tps6586x_get_version -EXPORT_SYMBOL_GPL vmlinux 0x0c91acf2 debugfs_create_dir -EXPORT_SYMBOL_GPL vmlinux 0x0c969dac ata_do_set_mode -EXPORT_SYMBOL_GPL vmlinux 0x0c9c526a devm_clk_get_prepared -EXPORT_SYMBOL_GPL vmlinux 0x0cbe3ee2 software_node_unregister -EXPORT_SYMBOL_GPL vmlinux 0x0ccc69bb mmu_interval_read_begin -EXPORT_SYMBOL_GPL vmlinux 0x0cce1082 crypto_register_templates -EXPORT_SYMBOL_GPL vmlinux 0x0ccf5275 zynqmp_pm_pinctrl_get_config -EXPORT_SYMBOL_GPL vmlinux 0x0ccf58d4 wbc_detach_inode -EXPORT_SYMBOL_GPL vmlinux 0x0ccfa6d1 dma_release_channel -EXPORT_SYMBOL_GPL vmlinux 0x0ce3dd73 bman_is_probed -EXPORT_SYMBOL_GPL vmlinux 0x0cf83132 acpi_subsys_complete -EXPORT_SYMBOL_GPL vmlinux 0x0d0306f7 device_get_phy_mode -EXPORT_SYMBOL_GPL vmlinux 0x0d14e02d dev_pm_qos_remove_notifier -EXPORT_SYMBOL_GPL vmlinux 0x0d21e53f handle_fasteoi_nmi -EXPORT_SYMBOL_GPL vmlinux 0x0d2df789 rtc_set_alarm -EXPORT_SYMBOL_GPL vmlinux 0x0d3ce593 sysfs_create_file_ns -EXPORT_SYMBOL_GPL vmlinux 0x0d3f8f18 devlink_unregister -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 0x0d5c4663 relay_close -EXPORT_SYMBOL_GPL vmlinux 0x0d5cecc6 ima_measure_critical_data -EXPORT_SYMBOL_GPL vmlinux 0x0d762abe pci_acpi_set_companion_lookup_hook -EXPORT_SYMBOL_GPL vmlinux 0x0d78cc40 pci_ignore_hotplug -EXPORT_SYMBOL_GPL vmlinux 0x0d964fec ata_sas_port_init -EXPORT_SYMBOL_GPL vmlinux 0x0dca0a42 srcu_torture_stats_print -EXPORT_SYMBOL_GPL vmlinux 0x0dda99f4 serdev_device_write -EXPORT_SYMBOL_GPL vmlinux 0x0ddb1cd7 llist_reverse_order -EXPORT_SYMBOL_GPL vmlinux 0x0ddeac3c xdp_build_skb_from_frame -EXPORT_SYMBOL_GPL vmlinux 0x0de4bdce md_start -EXPORT_SYMBOL_GPL vmlinux 0x0df3d43a sk_clear_memalloc -EXPORT_SYMBOL_GPL vmlinux 0x0e007edf xen_evtchn_nr_channels -EXPORT_SYMBOL_GPL vmlinux 0x0e0423c1 of_icc_bulk_get -EXPORT_SYMBOL_GPL vmlinux 0x0e10f1ca dma_alloc_noncontiguous -EXPORT_SYMBOL_GPL vmlinux 0x0e1194d5 hrtimer_try_to_cancel -EXPORT_SYMBOL_GPL vmlinux 0x0e13cb4d apei_resources_release -EXPORT_SYMBOL_GPL vmlinux 0x0e1bf8da dma_buf_map_attachment -EXPORT_SYMBOL_GPL vmlinux 0x0e2b2e9e firmware_request_nowarn -EXPORT_SYMBOL_GPL vmlinux 0x0e321de6 xhci_resume -EXPORT_SYMBOL_GPL vmlinux 0x0e46f215 dw_pcie_host_deinit -EXPORT_SYMBOL_GPL vmlinux 0x0e4ecb8f pci_hp_deregister -EXPORT_SYMBOL_GPL vmlinux 0x0e59b7d9 crypto_aes_set_key -EXPORT_SYMBOL_GPL vmlinux 0x0e5cc9d7 xdp_unreg_mem_model -EXPORT_SYMBOL_GPL vmlinux 0x0e661140 vp_modern_set_features -EXPORT_SYMBOL_GPL vmlinux 0x0e68887d ahci_do_hardreset -EXPORT_SYMBOL_GPL vmlinux 0x0e6b79af static_key_disable_cpuslocked -EXPORT_SYMBOL_GPL vmlinux 0x0e6d1f57 of_thermal_get_trip_points -EXPORT_SYMBOL_GPL vmlinux 0x0e7ab554 fat_remove_entries -EXPORT_SYMBOL_GPL vmlinux 0x0e83c652 wm8350_reg_lock -EXPORT_SYMBOL_GPL vmlinux 0x0e91e26e spi_mem_dirmap_write -EXPORT_SYMBOL_GPL vmlinux 0x0ea5cbce xen_irq_lateeoi -EXPORT_SYMBOL_GPL vmlinux 0x0eb520f4 regulator_set_voltage_time -EXPORT_SYMBOL_GPL vmlinux 0x0eb6c8b2 regmap_irq_get_domain -EXPORT_SYMBOL_GPL vmlinux 0x0ec096b0 hv_read_reference_counter -EXPORT_SYMBOL_GPL vmlinux 0x0ecc3281 fscrypt_set_test_dummy_encryption -EXPORT_SYMBOL_GPL vmlinux 0x0ed46bc1 skb_mpls_pop -EXPORT_SYMBOL_GPL vmlinux 0x0ed4c90f ata_sff_dev_select -EXPORT_SYMBOL_GPL vmlinux 0x0ee9b863 fixed_phy_change_carrier -EXPORT_SYMBOL_GPL vmlinux 0x0ef1b1d7 pinctrl_dev_get_devname -EXPORT_SYMBOL_GPL vmlinux 0x0efd074c mmc_send_tuning -EXPORT_SYMBOL_GPL vmlinux 0x0f0b290d mddev_suspend -EXPORT_SYMBOL_GPL vmlinux 0x0f0bd7ba irq_chip_mask_ack_parent -EXPORT_SYMBOL_GPL vmlinux 0x0f136c8a security_path_truncate -EXPORT_SYMBOL_GPL vmlinux 0x0f180070 ring_buffer_free_read_page -EXPORT_SYMBOL_GPL vmlinux 0x0f27e079 pid_nr_ns -EXPORT_SYMBOL_GPL vmlinux 0x0f38c767 adp5520_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x0f3ec915 sk_msg_recvmsg -EXPORT_SYMBOL_GPL vmlinux 0x0f44ac9b nvdimm_cmd_mask -EXPORT_SYMBOL_GPL vmlinux 0x0f4508a9 dm_internal_resume_fast -EXPORT_SYMBOL_GPL vmlinux 0x0f47bd25 led_stop_software_blink -EXPORT_SYMBOL_GPL vmlinux 0x0f5d792f __phy_modify_mmd -EXPORT_SYMBOL_GPL vmlinux 0x0f657eb0 fwnode_gpiod_get_index -EXPORT_SYMBOL_GPL vmlinux 0x0f6b456c tracing_cond_snapshot_data -EXPORT_SYMBOL_GPL vmlinux 0x0f6b7c39 stmpe_reg_write -EXPORT_SYMBOL_GPL vmlinux 0x0f72ada1 acpi_dev_resource_io -EXPORT_SYMBOL_GPL vmlinux 0x0f7ca236 dmi_memdev_name -EXPORT_SYMBOL_GPL vmlinux 0x0f8994fa srcu_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0x0f8a2bc3 tty_perform_flush -EXPORT_SYMBOL_GPL vmlinux 0x0f905f41 add_to_page_cache_lru -EXPORT_SYMBOL_GPL vmlinux 0x0fbb7344 memremap_compat_align -EXPORT_SYMBOL_GPL vmlinux 0x0fca0384 spi_write_then_read -EXPORT_SYMBOL_GPL vmlinux 0x0fd4610e kmem_dump_obj -EXPORT_SYMBOL_GPL vmlinux 0x0fdc5039 handle_simple_irq -EXPORT_SYMBOL_GPL vmlinux 0x0feadc05 led_trigger_rename_static -EXPORT_SYMBOL_GPL vmlinux 0x0ffc87d0 mbox_request_channel -EXPORT_SYMBOL_GPL vmlinux 0x1001b5f4 noop_invalidatepage -EXPORT_SYMBOL_GPL vmlinux 0x10056d13 xenbus_map_ring_valloc -EXPORT_SYMBOL_GPL vmlinux 0x1005d60b tick_nohz_dep_set_cpu -EXPORT_SYMBOL_GPL vmlinux 0x1007c58b __ip6_local_out -EXPORT_SYMBOL_GPL vmlinux 0x10138352 tracing_on -EXPORT_SYMBOL_GPL vmlinux 0x1030adf7 devm_thermal_zone_of_sensor_register -EXPORT_SYMBOL_GPL vmlinux 0x10316909 fat_add_entries -EXPORT_SYMBOL_GPL vmlinux 0x10365a95 pm_schedule_suspend -EXPORT_SYMBOL_GPL vmlinux 0x10449400 nd_cmd_out_size -EXPORT_SYMBOL_GPL vmlinux 0x104c49f1 usb_deregister_device_driver -EXPORT_SYMBOL_GPL vmlinux 0x1057e5f8 mc_send_command -EXPORT_SYMBOL_GPL vmlinux 0x1068a1f7 device_get_child_node_count -EXPORT_SYMBOL_GPL vmlinux 0x108293a3 mtk_pinconf_adv_drive_get -EXPORT_SYMBOL_GPL vmlinux 0x1085da16 balloon_page_list_dequeue -EXPORT_SYMBOL_GPL vmlinux 0x108a0acd bstr_printf -EXPORT_SYMBOL_GPL vmlinux 0x108e5dbc pm_runtime_irq_safe -EXPORT_SYMBOL_GPL vmlinux 0x109270b5 gnttab_unmap_refs_async -EXPORT_SYMBOL_GPL vmlinux 0x10b19b55 rio_mport_write_config_16 -EXPORT_SYMBOL_GPL vmlinux 0x10de7492 devm_qcom_smem_state_get -EXPORT_SYMBOL_GPL vmlinux 0x10e21bf2 aead_init_geniv -EXPORT_SYMBOL_GPL vmlinux 0x10e8592c ahci_fill_cmd_slot -EXPORT_SYMBOL_GPL vmlinux 0x10ecc52c usb_amd_quirk_pll_enable -EXPORT_SYMBOL_GPL vmlinux 0x10f4d7fc metadata_dst_alloc_percpu -EXPORT_SYMBOL_GPL vmlinux 0x10fc0b0f xenbus_free_evtchn -EXPORT_SYMBOL_GPL vmlinux 0x10fd5648 trace_put_event_file -EXPORT_SYMBOL_GPL vmlinux 0x10fee23c __devm_alloc_percpu -EXPORT_SYMBOL_GPL vmlinux 0x110106c1 cper_severity_to_aer -EXPORT_SYMBOL_GPL vmlinux 0x1107769d crypto_alg_extsize -EXPORT_SYMBOL_GPL vmlinux 0x1109de22 imx_pinconf_set_scu -EXPORT_SYMBOL_GPL vmlinux 0x110ed33c of_genpd_parse_idle_states -EXPORT_SYMBOL_GPL vmlinux 0x1120a895 devlink_flash_update_status_notify -EXPORT_SYMBOL_GPL vmlinux 0x1149edfa pm_runtime_get_if_active -EXPORT_SYMBOL_GPL vmlinux 0x115a1155 inet_csk_addr2sockaddr -EXPORT_SYMBOL_GPL vmlinux 0x115d2616 ping_hash -EXPORT_SYMBOL_GPL vmlinux 0x117bdac1 usb_hcd_setup_local_mem -EXPORT_SYMBOL_GPL vmlinux 0x11a21029 debugfs_create_x32 -EXPORT_SYMBOL_GPL vmlinux 0x11a2e0ac crypto_dh_key_len -EXPORT_SYMBOL_GPL vmlinux 0x11a4e11a call_srcu -EXPORT_SYMBOL_GPL vmlinux 0x11aa4340 sysfs_create_groups -EXPORT_SYMBOL_GPL vmlinux 0x11aa7817 wm8350_gpio_config -EXPORT_SYMBOL_GPL vmlinux 0x11ad3a9e cpu_device_create -EXPORT_SYMBOL_GPL vmlinux 0x11bbc81e extcon_dev_unregister -EXPORT_SYMBOL_GPL vmlinux 0x11c8a2e0 platform_device_register_full -EXPORT_SYMBOL_GPL vmlinux 0x11d0f8ad __traceiter_sched_cpu_capacity_tp -EXPORT_SYMBOL_GPL vmlinux 0x11d5002e of_usb_get_phy_mode -EXPORT_SYMBOL_GPL vmlinux 0x11d883de devlink_trap_report -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 0x11fee410 debugfs_real_fops -EXPORT_SYMBOL_GPL vmlinux 0x120096c0 led_trigger_register_simple -EXPORT_SYMBOL_GPL vmlinux 0x121413dc skcipher_walk_aead_encrypt -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 0x123dcf01 driver_find_device -EXPORT_SYMBOL_GPL vmlinux 0x1242de4e iommu_device_link -EXPORT_SYMBOL_GPL vmlinux 0x124a95ad devm_pci_epc_destroy -EXPORT_SYMBOL_GPL vmlinux 0x124bf1d8 nvmem_device_find -EXPORT_SYMBOL_GPL vmlinux 0x124f9ffc skb_partial_csum_set -EXPORT_SYMBOL_GPL vmlinux 0x12537dae __tracepoint_napi_poll -EXPORT_SYMBOL_GPL vmlinux 0x1268f357 resume_device_irqs -EXPORT_SYMBOL_GPL vmlinux 0x12720763 security_inode_setattr -EXPORT_SYMBOL_GPL vmlinux 0x12758e6f ip6_dst_lookup_flow -EXPORT_SYMBOL_GPL vmlinux 0x128a69c6 iommu_map -EXPORT_SYMBOL_GPL vmlinux 0x129334ae sfp_parse_support -EXPORT_SYMBOL_GPL vmlinux 0x12941584 meson_clk_pll_ops -EXPORT_SYMBOL_GPL vmlinux 0x12b47079 cpufreq_freq_attr_scaling_available_freqs -EXPORT_SYMBOL_GPL vmlinux 0x12bf85b5 tcp_set_state -EXPORT_SYMBOL_GPL vmlinux 0x12c0c3d2 css_next_descendant_pre -EXPORT_SYMBOL_GPL vmlinux 0x12d1c66b devm_pm_runtime_enable -EXPORT_SYMBOL_GPL vmlinux 0x12d298ba fsstack_copy_attr_all -EXPORT_SYMBOL_GPL vmlinux 0x12ded1c4 tpm_transmit_cmd -EXPORT_SYMBOL_GPL vmlinux 0x12ee1173 memory_group_unregister -EXPORT_SYMBOL_GPL vmlinux 0x13078a06 platform_irq_count -EXPORT_SYMBOL_GPL vmlinux 0x130c9df3 crypto_register_aead -EXPORT_SYMBOL_GPL vmlinux 0x1313ba0f acpi_dma_controller_register -EXPORT_SYMBOL_GPL vmlinux 0x13186b9e perf_pmu_migrate_context -EXPORT_SYMBOL_GPL vmlinux 0x131a5ed7 regmap_del_irq_chip -EXPORT_SYMBOL_GPL vmlinux 0x131db64a system_long_wq -EXPORT_SYMBOL_GPL vmlinux 0x13299aaf scsi_internal_device_unblock_nowait -EXPORT_SYMBOL_GPL vmlinux 0x133969d7 __trace_printk -EXPORT_SYMBOL_GPL vmlinux 0x133eb173 sk_psock_init -EXPORT_SYMBOL_GPL vmlinux 0x1343a300 crypto_register_rngs -EXPORT_SYMBOL_GPL vmlinux 0x13460412 component_del -EXPORT_SYMBOL_GPL vmlinux 0x136209db power_supply_reg_notifier -EXPORT_SYMBOL_GPL vmlinux 0x13640660 get_cached_msi_msg -EXPORT_SYMBOL_GPL vmlinux 0x136b0d2f pci_ecam_map_bus -EXPORT_SYMBOL_GPL vmlinux 0x137a1b8f cdrom_multisession -EXPORT_SYMBOL_GPL vmlinux 0x137d9cda __root_device_register -EXPORT_SYMBOL_GPL vmlinux 0x138aff76 gnttab_init -EXPORT_SYMBOL_GPL vmlinux 0x138e0957 dax_write_cache_enabled -EXPORT_SYMBOL_GPL vmlinux 0x13a8cc0b regmap_get_val_endian -EXPORT_SYMBOL_GPL vmlinux 0x13af8c4a gpiochip_request_own_desc -EXPORT_SYMBOL_GPL vmlinux 0x13b416b7 usb_ep0_reinit -EXPORT_SYMBOL_GPL vmlinux 0x13cad9d1 xhci_shutdown -EXPORT_SYMBOL_GPL vmlinux 0x13cc97df sk_detach_filter -EXPORT_SYMBOL_GPL vmlinux 0x13ce87e8 asn1_ber_decoder -EXPORT_SYMBOL_GPL vmlinux 0x13d01b03 dprc_open -EXPORT_SYMBOL_GPL vmlinux 0x13db1eb8 k3_udma_glue_rx_cppi5_to_dma_addr -EXPORT_SYMBOL_GPL vmlinux 0x13dfc6f4 phy_set_speed -EXPORT_SYMBOL_GPL vmlinux 0x13ed8784 sdev_evt_alloc -EXPORT_SYMBOL_GPL vmlinux 0x13f8863a pci_msi_create_irq_domain -EXPORT_SYMBOL_GPL vmlinux 0x13fab921 cpuidle_unregister_device -EXPORT_SYMBOL_GPL vmlinux 0x1403ad09 cpufreq_add_update_util_hook -EXPORT_SYMBOL_GPL vmlinux 0x1404acd4 __traceiter_devlink_hwerr -EXPORT_SYMBOL_GPL vmlinux 0x1405d55d mmc_switch -EXPORT_SYMBOL_GPL vmlinux 0x141f38bf ktime_get_raw_fast_ns -EXPORT_SYMBOL_GPL vmlinux 0x142318b0 pci_bus_resource_n -EXPORT_SYMBOL_GPL vmlinux 0x143c39b9 sata_pmp_error_handler -EXPORT_SYMBOL_GPL vmlinux 0x1441ccc2 poll_state_synchronize_srcu -EXPORT_SYMBOL_GPL vmlinux 0x144c7853 cpufreq_dbs_governor_start -EXPORT_SYMBOL_GPL vmlinux 0x1456762b k3_ringacc_ring_get_free -EXPORT_SYMBOL_GPL vmlinux 0x145bb20a path_noexec -EXPORT_SYMBOL_GPL vmlinux 0x146cc88f bpf_master_redirect_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x147b1cf0 usb_hub_release_port -EXPORT_SYMBOL_GPL vmlinux 0x147d044e usb_phy_get_charger_current -EXPORT_SYMBOL_GPL vmlinux 0x147dd68f phy_save_page -EXPORT_SYMBOL_GPL vmlinux 0x148fd794 enable_kprobe -EXPORT_SYMBOL_GPL vmlinux 0x14a21726 kernfs_path_from_node -EXPORT_SYMBOL_GPL vmlinux 0x14aacae2 crypto_aead_setauthsize -EXPORT_SYMBOL_GPL vmlinux 0x14b5df7c sata_scr_write -EXPORT_SYMBOL_GPL vmlinux 0x14b75a35 addrconf_prefix_rcv_add_addr -EXPORT_SYMBOL_GPL vmlinux 0x14bda201 sdev_evt_send -EXPORT_SYMBOL_GPL vmlinux 0x14d01690 clk_mux_index_to_val -EXPORT_SYMBOL_GPL vmlinux 0x14dc9131 rio_mport_read_config_32 -EXPORT_SYMBOL_GPL vmlinux 0x14ec4fdb evtchn_put -EXPORT_SYMBOL_GPL vmlinux 0x14f34a2c nf_hook_entries_insert_raw -EXPORT_SYMBOL_GPL vmlinux 0x14f6b60b thermal_zone_of_sensor_register -EXPORT_SYMBOL_GPL vmlinux 0x14f96ade of_property_read_variable_u32_array -EXPORT_SYMBOL_GPL vmlinux 0x15021b4a xa_delete_node -EXPORT_SYMBOL_GPL vmlinux 0x1510be1d lwtstate_free -EXPORT_SYMBOL_GPL vmlinux 0x151fc2e6 divider_ro_round_rate_parent -EXPORT_SYMBOL_GPL vmlinux 0x152cea91 fib_add_nexthop -EXPORT_SYMBOL_GPL vmlinux 0x1532d1a0 powercap_unregister_zone -EXPORT_SYMBOL_GPL vmlinux 0x153b60a6 klist_del -EXPORT_SYMBOL_GPL vmlinux 0x154efc93 spi_mem_dirmap_destroy -EXPORT_SYMBOL_GPL vmlinux 0x154fda96 crypto_unregister_aeads -EXPORT_SYMBOL_GPL vmlinux 0x15510a89 devlink_fmsg_binary_put -EXPORT_SYMBOL_GPL vmlinux 0x1556ff71 tcp_sendpage_locked -EXPORT_SYMBOL_GPL vmlinux 0x15688559 virtqueue_add_inbuf_ctx -EXPORT_SYMBOL_GPL vmlinux 0x156ff12c usb_phy_set_event -EXPORT_SYMBOL_GPL vmlinux 0x1575ec96 blk_mq_unquiesce_queue -EXPORT_SYMBOL_GPL vmlinux 0x15785b5c fuse_get_unique -EXPORT_SYMBOL_GPL vmlinux 0x15897b5b regmap_read -EXPORT_SYMBOL_GPL vmlinux 0x158b37bc dev_attr_sw_activity -EXPORT_SYMBOL_GPL vmlinux 0x1597b083 tps6586x_writes -EXPORT_SYMBOL_GPL vmlinux 0x159b5a66 tps6586x_read -EXPORT_SYMBOL_GPL vmlinux 0x15a498cc switchdev_port_attr_set -EXPORT_SYMBOL_GPL vmlinux 0x15ade1cc filter_irq_stacks -EXPORT_SYMBOL_GPL vmlinux 0x15ae3934 devfreq_get_devfreq_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0x15b0350a tty_port_register_device -EXPORT_SYMBOL_GPL vmlinux 0x15c1b882 ndo_dflt_bridge_getlink -EXPORT_SYMBOL_GPL vmlinux 0x15c60a71 __tracepoint_pelt_dl_tp -EXPORT_SYMBOL_GPL vmlinux 0x15e40d5c power_supply_set_battery_charged -EXPORT_SYMBOL_GPL vmlinux 0x15ea2648 hwpoison_filter_flags_mask -EXPORT_SYMBOL_GPL vmlinux 0x15efd6fc crypto_aead_decrypt -EXPORT_SYMBOL_GPL vmlinux 0x15fd4c7c dpbp_reset -EXPORT_SYMBOL_GPL vmlinux 0x1624a7e5 thermal_cooling_device_register -EXPORT_SYMBOL_GPL vmlinux 0x162df119 fsverity_prepare_setattr -EXPORT_SYMBOL_GPL vmlinux 0x16422a6e xdp_reg_mem_model -EXPORT_SYMBOL_GPL vmlinux 0x16504359 xenbus_dev_error -EXPORT_SYMBOL_GPL vmlinux 0x16516798 osc_pc_lpi_support_confirmed -EXPORT_SYMBOL_GPL vmlinux 0x165a2209 decrypt_blob -EXPORT_SYMBOL_GPL vmlinux 0x166cc7c5 perf_aux_output_end -EXPORT_SYMBOL_GPL vmlinux 0x16719049 extcon_set_state -EXPORT_SYMBOL_GPL vmlinux 0x16786be4 usb_acpi_port_lpm_incapable -EXPORT_SYMBOL_GPL vmlinux 0x167c9dc2 sk_psock_msg_verdict -EXPORT_SYMBOL_GPL vmlinux 0x167d1e23 xenbus_unmap_ring_vfree -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 0x1690bb9a iommu_sva_alloc_pasid -EXPORT_SYMBOL_GPL vmlinux 0x169fdf0b inet6_lookup -EXPORT_SYMBOL_GPL vmlinux 0x16a98b74 rio_route_add_entry -EXPORT_SYMBOL_GPL vmlinux 0x16cb6a90 radix_tree_preloads -EXPORT_SYMBOL_GPL vmlinux 0x16cf09e3 ata_scsi_queuecmd -EXPORT_SYMBOL_GPL vmlinux 0x16d4804c fwnode_find_reference -EXPORT_SYMBOL_GPL vmlinux 0x16da1f88 devlink_fmsg_u32_put -EXPORT_SYMBOL_GPL vmlinux 0x16dfbf36 add_interrupt_randomness -EXPORT_SYMBOL_GPL vmlinux 0x16e00681 badblocks_set -EXPORT_SYMBOL_GPL vmlinux 0x16e45a1f rio_local_get_device_id -EXPORT_SYMBOL_GPL vmlinux 0x16f15139 bind_evtchn_to_irq -EXPORT_SYMBOL_GPL vmlinux 0x16f4cfb4 ata_wait_register -EXPORT_SYMBOL_GPL vmlinux 0x170cc36c put_timespec64 -EXPORT_SYMBOL_GPL vmlinux 0x171b7ad9 stmpe_disable -EXPORT_SYMBOL_GPL vmlinux 0x171cf2d0 device_property_read_u64_array -EXPORT_SYMBOL_GPL vmlinux 0x172e20b4 ata_bmdma_port_ops -EXPORT_SYMBOL_GPL vmlinux 0x173c49f7 clk_regmap_mux_ro_ops -EXPORT_SYMBOL_GPL vmlinux 0x1741ddee trace_seq_puts -EXPORT_SYMBOL_GPL vmlinux 0x17438597 devm_spi_mem_dirmap_destroy -EXPORT_SYMBOL_GPL vmlinux 0x17480d56 x509_free_certificate -EXPORT_SYMBOL_GPL vmlinux 0x174c6274 ring_buffer_time_stamp -EXPORT_SYMBOL_GPL vmlinux 0x17513118 serial8250_do_startup -EXPORT_SYMBOL_GPL vmlinux 0x175305b4 serial8250_read_char -EXPORT_SYMBOL_GPL vmlinux 0x17591ecd zynqmp_pm_write_ggs -EXPORT_SYMBOL_GPL vmlinux 0x175a655f __traceiter_devlink_hwmsg -EXPORT_SYMBOL_GPL vmlinux 0x176031a7 devlink_fmsg_string_put -EXPORT_SYMBOL_GPL vmlinux 0x17614bf3 apei_resources_sub -EXPORT_SYMBOL_GPL vmlinux 0x177c338d twl_get_version -EXPORT_SYMBOL_GPL vmlinux 0x177faebb __get_task_comm -EXPORT_SYMBOL_GPL vmlinux 0x17862063 dev_pm_set_dedicated_wake_irq -EXPORT_SYMBOL_GPL vmlinux 0x17b7a0fa ata_sff_wait_after_reset -EXPORT_SYMBOL_GPL vmlinux 0x17c12db8 spi_busnum_to_master -EXPORT_SYMBOL_GPL vmlinux 0x17e01f11 erst_clear -EXPORT_SYMBOL_GPL vmlinux 0x17e27856 memunmap_pages -EXPORT_SYMBOL_GPL vmlinux 0x17e509a3 register_user_hw_breakpoint -EXPORT_SYMBOL_GPL vmlinux 0x17f21072 xhci_gen_setup -EXPORT_SYMBOL_GPL vmlinux 0x17f3a293 sdio_retune_crc_disable -EXPORT_SYMBOL_GPL vmlinux 0x17fa54d8 dma_resv_test_signaled -EXPORT_SYMBOL_GPL vmlinux 0x18008c59 ring_buffer_resize -EXPORT_SYMBOL_GPL vmlinux 0x180a0725 __nvdimm_create -EXPORT_SYMBOL_GPL vmlinux 0x180e6fea serial8250_do_get_mctrl -EXPORT_SYMBOL_GPL vmlinux 0x18184938 pci_aer_clear_nonfatal_status -EXPORT_SYMBOL_GPL vmlinux 0x181f5f09 of_pci_parse_bus_range -EXPORT_SYMBOL_GPL vmlinux 0x18244cb4 blk_execute_rq_nowait -EXPORT_SYMBOL_GPL vmlinux 0x18293bc1 acpi_device_modalias -EXPORT_SYMBOL_GPL vmlinux 0x18319cd0 iommu_uapi_sva_bind_gpasid -EXPORT_SYMBOL_GPL vmlinux 0x183a58b1 gpiod_unexport -EXPORT_SYMBOL_GPL vmlinux 0x183f4a69 crypto_alloc_acomp -EXPORT_SYMBOL_GPL vmlinux 0x18428692 __cookie_v6_init_sequence -EXPORT_SYMBOL_GPL vmlinux 0x1848e2a7 gpiod_put_array -EXPORT_SYMBOL_GPL vmlinux 0x185eff78 nf_ip_route -EXPORT_SYMBOL_GPL vmlinux 0x18615d35 efivar_supports_writes -EXPORT_SYMBOL_GPL vmlinux 0x18699cd5 ohci_setup -EXPORT_SYMBOL_GPL vmlinux 0x18715353 k3_udma_glue_push_tx_chn -EXPORT_SYMBOL_GPL vmlinux 0x18756703 regulator_get_optional -EXPORT_SYMBOL_GPL vmlinux 0x18771dd4 tcp_leave_memory_pressure -EXPORT_SYMBOL_GPL vmlinux 0x188ce7a6 devfreq_event_reset_event -EXPORT_SYMBOL_GPL vmlinux 0x189ce950 __fat_fs_error -EXPORT_SYMBOL_GPL vmlinux 0x18a72a78 get_cpu_device -EXPORT_SYMBOL_GPL vmlinux 0x18b3b463 sync_page_io -EXPORT_SYMBOL_GPL vmlinux 0x18bbd8ba switchdev_port_obj_add -EXPORT_SYMBOL_GPL vmlinux 0x18c09781 meson_clk_cpu_dyndiv_ops -EXPORT_SYMBOL_GPL vmlinux 0x18e089fa skb_to_sgvec_nomark -EXPORT_SYMBOL_GPL vmlinux 0x18e4f8aa swphy_read_reg -EXPORT_SYMBOL_GPL vmlinux 0x18e8c440 arch_freq_scale -EXPORT_SYMBOL_GPL vmlinux 0x18f10f38 k3_udma_glue_enable_rx_chn -EXPORT_SYMBOL_GPL vmlinux 0x18fb2caf cpus_read_unlock -EXPORT_SYMBOL_GPL vmlinux 0x18fda110 crypto_alloc_aead -EXPORT_SYMBOL_GPL vmlinux 0x1913b57a kcpustat_cpu_fetch -EXPORT_SYMBOL_GPL vmlinux 0x1926028c zynqmp_pm_reset_assert -EXPORT_SYMBOL_GPL vmlinux 0x19580cae phy_package_leave -EXPORT_SYMBOL_GPL vmlinux 0x1969c120 sk_msg_free_partial -EXPORT_SYMBOL_GPL vmlinux 0x197199a1 mtk_pinconf_bias_set_rev1 -EXPORT_SYMBOL_GPL vmlinux 0x19821689 __tracepoint_fdb_delete -EXPORT_SYMBOL_GPL vmlinux 0x1983e902 phy_resolve_aneg_pause -EXPORT_SYMBOL_GPL vmlinux 0x1991bc3b wm8400_reset_codec_reg_cache -EXPORT_SYMBOL_GPL vmlinux 0x199fd57a fat_search_long -EXPORT_SYMBOL_GPL vmlinux 0x19a304ba usb_disabled -EXPORT_SYMBOL_GPL vmlinux 0x19b45052 locks_alloc_lock -EXPORT_SYMBOL_GPL vmlinux 0x19c20269 soc_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0x19c886b6 tracing_snapshot_cond_enable -EXPORT_SYMBOL_GPL vmlinux 0x19cc7068 input_class -EXPORT_SYMBOL_GPL vmlinux 0x19d2f3ff event_triggers_post_call -EXPORT_SYMBOL_GPL vmlinux 0x19d48aec pinctrl_register -EXPORT_SYMBOL_GPL vmlinux 0x19df724a of_pm_clk_add_clks -EXPORT_SYMBOL_GPL vmlinux 0x19e679dc edac_pci_alloc_ctl_info -EXPORT_SYMBOL_GPL vmlinux 0x19e81304 btree_alloc -EXPORT_SYMBOL_GPL vmlinux 0x19edd064 blkg_rwstat_exit -EXPORT_SYMBOL_GPL vmlinux 0x1a0139b0 mpc8xxx_spi_probe -EXPORT_SYMBOL_GPL vmlinux 0x1a10c32b crypto_ft_tab -EXPORT_SYMBOL_GPL vmlinux 0x1a146ec3 usb_ep_type_string -EXPORT_SYMBOL_GPL vmlinux 0x1a1d1b25 debugfs_create_u32 -EXPORT_SYMBOL_GPL vmlinux 0x1a20effc governor_sysfs_ops -EXPORT_SYMBOL_GPL vmlinux 0x1a2a29c3 fscrypt_ioctl_get_nonce -EXPORT_SYMBOL_GPL vmlinux 0x1a2edccf pcie_bus_configure_settings -EXPORT_SYMBOL_GPL vmlinux 0x1a38fc98 bpf_map_inc -EXPORT_SYMBOL_GPL vmlinux 0x1a3c012f tcf_dev_queue_xmit -EXPORT_SYMBOL_GPL vmlinux 0x1a3d0aa4 regulator_sync_voltage -EXPORT_SYMBOL_GPL vmlinux 0x1a43b0cc of_regulator_match -EXPORT_SYMBOL_GPL vmlinux 0x1a5ceeee nf_queue_nf_hook_drop -EXPORT_SYMBOL_GPL vmlinux 0x1a63d9c6 fat_free_clusters -EXPORT_SYMBOL_GPL vmlinux 0x1a6bf28f fsnotify_get_cookie -EXPORT_SYMBOL_GPL vmlinux 0x1a77903a of_alias_get_alias_list -EXPORT_SYMBOL_GPL vmlinux 0x1a81c12a ata_sff_data_xfer -EXPORT_SYMBOL_GPL vmlinux 0x1a876574 __tracepoint_attach_device_to_domain -EXPORT_SYMBOL_GPL vmlinux 0x1a9754cf sbitmap_queue_min_shallow_depth -EXPORT_SYMBOL_GPL vmlinux 0x1a99fbd4 pci_user_write_config_dword -EXPORT_SYMBOL_GPL vmlinux 0x1a9c3c0f __traceiter_neigh_timer_handler -EXPORT_SYMBOL_GPL vmlinux 0x1acd18c8 cpuset_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0x1af267f8 int_pow -EXPORT_SYMBOL_GPL vmlinux 0x1afdb4ea ata_sff_irq_on -EXPORT_SYMBOL_GPL vmlinux 0x1b101218 pci_find_vsec_capability -EXPORT_SYMBOL_GPL vmlinux 0x1b12365f udp_bpf_update_proto -EXPORT_SYMBOL_GPL vmlinux 0x1b1d5b4f uart_insert_char -EXPORT_SYMBOL_GPL vmlinux 0x1b28b139 ip6_redirect -EXPORT_SYMBOL_GPL vmlinux 0x1b30594d __kthread_init_worker -EXPORT_SYMBOL_GPL vmlinux 0x1b433422 fat_time_unix2fat -EXPORT_SYMBOL_GPL vmlinux 0x1b5059ce ata_id_xfermask -EXPORT_SYMBOL_GPL vmlinux 0x1b5f4377 trace_seq_putc -EXPORT_SYMBOL_GPL vmlinux 0x1b68c5b8 aead_exit_geniv -EXPORT_SYMBOL_GPL vmlinux 0x1b69004d regmap_can_raw_write -EXPORT_SYMBOL_GPL vmlinux 0x1b73030a pingv6_prot -EXPORT_SYMBOL_GPL vmlinux 0x1b8822d8 pinctrl_gpio_direction_output -EXPORT_SYMBOL_GPL vmlinux 0x1b89678d icc_disable -EXPORT_SYMBOL_GPL vmlinux 0x1b8d7bda ata_sas_port_destroy -EXPORT_SYMBOL_GPL vmlinux 0x1b8f1e92 fwnode_graph_get_remote_endpoint -EXPORT_SYMBOL_GPL vmlinux 0x1b92e41d inet_putpeer -EXPORT_SYMBOL_GPL vmlinux 0x1ba20363 blk_abort_request -EXPORT_SYMBOL_GPL vmlinux 0x1ba654f8 serial8250_set_defaults -EXPORT_SYMBOL_GPL vmlinux 0x1bab25b5 debugfs_create_x8 -EXPORT_SYMBOL_GPL vmlinux 0x1bb91bda __traceiter_kfree_skb -EXPORT_SYMBOL_GPL vmlinux 0x1bc07327 edac_mc_free -EXPORT_SYMBOL_GPL vmlinux 0x1bc5eebe pinctrl_gpio_direction_input -EXPORT_SYMBOL_GPL vmlinux 0x1bc85e1c irq_set_affinity -EXPORT_SYMBOL_GPL vmlinux 0x1be41d63 securityfs_remove -EXPORT_SYMBOL_GPL vmlinux 0x1bee4974 sg_alloc_table_chained -EXPORT_SYMBOL_GPL vmlinux 0x1c01f400 pinctrl_remove_gpio_range -EXPORT_SYMBOL_GPL vmlinux 0x1c1f44db pci_hp_remove_module_link -EXPORT_SYMBOL_GPL vmlinux 0x1c20fda7 gpiod_get_array_optional -EXPORT_SYMBOL_GPL vmlinux 0x1c2db7cd relay_switch_subbuf -EXPORT_SYMBOL_GPL vmlinux 0x1c361392 regulator_get_voltage_sel_pickable_regmap -EXPORT_SYMBOL_GPL vmlinux 0x1c3915a8 ahci_pmp_retry_srst_ops -EXPORT_SYMBOL_GPL vmlinux 0x1c4b8210 kthread_flush_work -EXPORT_SYMBOL_GPL vmlinux 0x1c4d15f8 phy_pm_runtime_forbid -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 0x1c75a368 netdev_walk_all_lower_dev -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 0x1ca3aa97 alarm_forward -EXPORT_SYMBOL_GPL vmlinux 0x1ca4a930 smp_call_function_any -EXPORT_SYMBOL_GPL vmlinux 0x1cb7c983 apei_exec_read_register_value -EXPORT_SYMBOL_GPL vmlinux 0x1cb9a1c8 xenbus_gather -EXPORT_SYMBOL_GPL vmlinux 0x1cbaceb7 devfreq_event_is_enabled -EXPORT_SYMBOL_GPL vmlinux 0x1cbd92b0 cpu_mitigations_off -EXPORT_SYMBOL_GPL vmlinux 0x1cbf5587 dma_mmap_pages -EXPORT_SYMBOL_GPL vmlinux 0x1cca1c2d scsi_register_device_handler -EXPORT_SYMBOL_GPL vmlinux 0x1cd0118b ata_sff_dma_pause -EXPORT_SYMBOL_GPL vmlinux 0x1cf40977 usb_alloc_dev -EXPORT_SYMBOL_GPL vmlinux 0x1cf56d4c devlink_dpipe_action_put -EXPORT_SYMBOL_GPL vmlinux 0x1cff5b70 dev_pm_opp_set_prop_name -EXPORT_SYMBOL_GPL vmlinux 0x1d031c3c rt_mutex_lock_interruptible -EXPORT_SYMBOL_GPL vmlinux 0x1d222ced irq_get_irqchip_state -EXPORT_SYMBOL_GPL vmlinux 0x1d2c2986 clockevents_config_and_register -EXPORT_SYMBOL_GPL vmlinux 0x1d42aeca iomap_dio_iopoll -EXPORT_SYMBOL_GPL vmlinux 0x1d4cef4f regcache_mark_dirty -EXPORT_SYMBOL_GPL vmlinux 0x1d56c023 __clocksource_update_freq_scale -EXPORT_SYMBOL_GPL vmlinux 0x1d5e407b gpiochip_unlock_as_irq -EXPORT_SYMBOL_GPL vmlinux 0x1d6696b0 mtk_mutex_disable -EXPORT_SYMBOL_GPL vmlinux 0x1d686949 tps80031_ext_power_req_config -EXPORT_SYMBOL_GPL vmlinux 0x1d6d6dff devm_kasprintf -EXPORT_SYMBOL_GPL vmlinux 0x1d6fa091 devm_extcon_dev_register -EXPORT_SYMBOL_GPL vmlinux 0x1d77b0f8 unix_socket_table -EXPORT_SYMBOL_GPL vmlinux 0x1d78216e clk_hw_register_composite -EXPORT_SYMBOL_GPL vmlinux 0x1d7cdd7d switchdev_handle_port_obj_add -EXPORT_SYMBOL_GPL vmlinux 0x1d7f62e3 usb_control_msg_send -EXPORT_SYMBOL_GPL vmlinux 0x1d9491e2 edac_device_free_ctl_info -EXPORT_SYMBOL_GPL vmlinux 0x1d94a218 dmi_memdev_handle -EXPORT_SYMBOL_GPL vmlinux 0x1dae51cd key_set_timeout -EXPORT_SYMBOL_GPL vmlinux 0x1dcc10f8 pinctrl_register_and_init -EXPORT_SYMBOL_GPL vmlinux 0x1dd18359 rio_free_net -EXPORT_SYMBOL_GPL vmlinux 0x1dd552fc regulator_is_supported_voltage -EXPORT_SYMBOL_GPL vmlinux 0x1df86b0b regulator_get_current_limit -EXPORT_SYMBOL_GPL vmlinux 0x1df97155 to_software_node -EXPORT_SYMBOL_GPL vmlinux 0x1dfa5dbd mpi_invm -EXPORT_SYMBOL_GPL vmlinux 0x1e00d3cf kill_device -EXPORT_SYMBOL_GPL vmlinux 0x1e0670c6 reset_control_release -EXPORT_SYMBOL_GPL vmlinux 0x1e12e02e platform_get_irq_byname_optional -EXPORT_SYMBOL_GPL vmlinux 0x1e1deea4 crypto_destroy_tfm -EXPORT_SYMBOL_GPL vmlinux 0x1e2c3199 blk_mark_disk_dead -EXPORT_SYMBOL_GPL vmlinux 0x1e378790 devm_free_pages -EXPORT_SYMBOL_GPL vmlinux 0x1e39b0eb vfs_cancel_lock -EXPORT_SYMBOL_GPL vmlinux 0x1e424d61 user_preparse -EXPORT_SYMBOL_GPL vmlinux 0x1e474923 tpm_chip_unregister -EXPORT_SYMBOL_GPL vmlinux 0x1e4e98c0 acpi_dev_filter_resource_type -EXPORT_SYMBOL_GPL vmlinux 0x1e7157b5 __traceiter_rpm_suspend -EXPORT_SYMBOL_GPL vmlinux 0x1e74e50c ata_dev_disable -EXPORT_SYMBOL_GPL vmlinux 0x1e76f25f ping_init_sock -EXPORT_SYMBOL_GPL vmlinux 0x1e7a28cc __hwspin_lock_timeout -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 0x1e9086eb ata_sff_port_ops -EXPORT_SYMBOL_GPL vmlinux 0x1e9872f6 sbitmap_finish_wait -EXPORT_SYMBOL_GPL vmlinux 0x1e9b32f3 rio_mport_get_efb -EXPORT_SYMBOL_GPL vmlinux 0x1e9bac60 devm_reset_control_array_get -EXPORT_SYMBOL_GPL vmlinux 0x1e9bc719 freq_qos_update_request -EXPORT_SYMBOL_GPL vmlinux 0x1e9c590a usb_find_common_endpoints_reverse -EXPORT_SYMBOL_GPL vmlinux 0x1eb2d131 crypto_stats_rng_seed -EXPORT_SYMBOL_GPL vmlinux 0x1eb77c71 fwnode_property_read_string -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 0x1edaa026 pci_stop_root_bus -EXPORT_SYMBOL_GPL vmlinux 0x1ee696a0 dma_vunmap_noncontiguous -EXPORT_SYMBOL_GPL vmlinux 0x1ee90625 edac_mc_find_csrow_by_page -EXPORT_SYMBOL_GPL vmlinux 0x1efaa06f __tracepoint_xhci_dbg_quirks -EXPORT_SYMBOL_GPL vmlinux 0x1efe4405 tegra_mc_probe_device -EXPORT_SYMBOL_GPL vmlinux 0x1f0b04d7 pci_epf_bind -EXPORT_SYMBOL_GPL vmlinux 0x1f0cb5bf pm_power_off_prepare -EXPORT_SYMBOL_GPL vmlinux 0x1f1cc011 zynqmp_pm_get_chipid -EXPORT_SYMBOL_GPL vmlinux 0x1f2c2559 cn_add_callback -EXPORT_SYMBOL_GPL vmlinux 0x1f2c4234 rio_pw_enable -EXPORT_SYMBOL_GPL vmlinux 0x1f38a4f6 mpi_set_highbit -EXPORT_SYMBOL_GPL vmlinux 0x1f3c82cd strp_data_ready -EXPORT_SYMBOL_GPL vmlinux 0x1f441797 clk_register_divider_table -EXPORT_SYMBOL_GPL vmlinux 0x1f449588 mctrl_gpio_disable_ms -EXPORT_SYMBOL_GPL vmlinux 0x1f563160 bpf_offload_dev_priv -EXPORT_SYMBOL_GPL vmlinux 0x1f622173 iomap_invalidatepage -EXPORT_SYMBOL_GPL vmlinux 0x1f7e3585 devm_rtc_nvmem_register -EXPORT_SYMBOL_GPL vmlinux 0x1f8544b8 panic_timeout -EXPORT_SYMBOL_GPL vmlinux 0x1f994390 tpm_chip_stop -EXPORT_SYMBOL_GPL vmlinux 0x1f9a2b53 zynqmp_pm_clock_enable -EXPORT_SYMBOL_GPL vmlinux 0x1f9b7d3f mtk_pinconf_drive_get_raw -EXPORT_SYMBOL_GPL vmlinux 0x1fa1d95c sha256_zero_message_hash -EXPORT_SYMBOL_GPL vmlinux 0x1fb14f4e bpf_offload_dev_match -EXPORT_SYMBOL_GPL vmlinux 0x1fb70eb9 gnttab_end_foreign_transfer_ref -EXPORT_SYMBOL_GPL vmlinux 0x1fbd3d42 filemap_range_needs_writeback -EXPORT_SYMBOL_GPL vmlinux 0x1fe6e504 gpiod_add_hogs -EXPORT_SYMBOL_GPL vmlinux 0x1ff56deb devm_nvmem_device_put -EXPORT_SYMBOL_GPL vmlinux 0x200103e4 devlink_dpipe_entry_ctx_prepare -EXPORT_SYMBOL_GPL vmlinux 0x2009e400 devlink_info_board_serial_number_put -EXPORT_SYMBOL_GPL vmlinux 0x200d0cc6 crypto_mod_put -EXPORT_SYMBOL_GPL vmlinux 0x202d4ed6 nvmem_cell_write -EXPORT_SYMBOL_GPL vmlinux 0x2048352a fscrypt_get_symlink -EXPORT_SYMBOL_GPL vmlinux 0x20486997 sdio_writesb -EXPORT_SYMBOL_GPL vmlinux 0x204f2c5c gnttab_free_grant_reference -EXPORT_SYMBOL_GPL vmlinux 0x20661760 blk_req_zone_write_trylock -EXPORT_SYMBOL_GPL vmlinux 0x206f52c8 usb_control_msg_recv -EXPORT_SYMBOL_GPL vmlinux 0x20707bfb driver_for_each_device -EXPORT_SYMBOL_GPL vmlinux 0x2074b9d2 phy_optional_get -EXPORT_SYMBOL_GPL vmlinux 0x207b6e99 irq_chip_set_vcpu_affinity_parent -EXPORT_SYMBOL_GPL vmlinux 0x20835a9f __xdp_release_frame -EXPORT_SYMBOL_GPL vmlinux 0x20978fb9 idr_find -EXPORT_SYMBOL_GPL vmlinux 0x20abbfd9 devfreq_event_add_edev -EXPORT_SYMBOL_GPL vmlinux 0x20b456ff of_get_named_gpio_flags -EXPORT_SYMBOL_GPL vmlinux 0x20b78b8d k3_udma_glue_request_rx_chn -EXPORT_SYMBOL_GPL vmlinux 0x20bc6f4f inet_csk_clone_lock -EXPORT_SYMBOL_GPL vmlinux 0x20d8c4ad genpd_dev_pm_attach_by_id -EXPORT_SYMBOL_GPL vmlinux 0x20ed23db regulator_bulk_register_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0x20fc44ac serdev_acpi_get_uart_resource -EXPORT_SYMBOL_GPL vmlinux 0x211966cd led_compose_name -EXPORT_SYMBOL_GPL vmlinux 0x2129ea3f dev_pm_qos_update_request -EXPORT_SYMBOL_GPL vmlinux 0x2131492f sec_irq_init -EXPORT_SYMBOL_GPL vmlinux 0x2133eea4 __kthread_should_park -EXPORT_SYMBOL_GPL vmlinux 0x2145bd44 dma_get_slave_caps -EXPORT_SYMBOL_GPL vmlinux 0x2160c544 serdev_device_set_parity -EXPORT_SYMBOL_GPL vmlinux 0x216de4e1 rcu_get_gp_kthreads_prio -EXPORT_SYMBOL_GPL vmlinux 0x21746ac3 ethnl_cable_test_amplitude -EXPORT_SYMBOL_GPL vmlinux 0x2176e42a hwpoison_filter_memcg -EXPORT_SYMBOL_GPL vmlinux 0x2187817b spi_register_controller -EXPORT_SYMBOL_GPL vmlinux 0x218c9913 of_reset_control_array_get -EXPORT_SYMBOL_GPL vmlinux 0x21a563da clk_get_accuracy -EXPORT_SYMBOL_GPL vmlinux 0x21a79c1e get_pid_task -EXPORT_SYMBOL_GPL vmlinux 0x21a7f98f gnttab_pages_clear_private -EXPORT_SYMBOL_GPL vmlinux 0x21abdd0c fat_attach -EXPORT_SYMBOL_GPL vmlinux 0x21ac8b77 iommu_group_get_by_id -EXPORT_SYMBOL_GPL vmlinux 0x21ae6c35 hwpoison_filter -EXPORT_SYMBOL_GPL vmlinux 0x21c34c8f gnttab_end_foreign_transfer -EXPORT_SYMBOL_GPL vmlinux 0x21c93e79 device_for_each_child_reverse -EXPORT_SYMBOL_GPL vmlinux 0x21ca7c47 devm_irq_alloc_generic_chip -EXPORT_SYMBOL_GPL vmlinux 0x21cd536a crypto_put_default_null_skcipher -EXPORT_SYMBOL_GPL vmlinux 0x21ce3ed1 dev_fetch_sw_netstats -EXPORT_SYMBOL_GPL vmlinux 0x21d1bc47 tpm_chip_alloc -EXPORT_SYMBOL_GPL vmlinux 0x21d27e15 call_switchdev_notifiers -EXPORT_SYMBOL_GPL vmlinux 0x21ed01cb extcon_get_property_capability -EXPORT_SYMBOL_GPL vmlinux 0x2200061c __tracepoint_pelt_irq_tp -EXPORT_SYMBOL_GPL vmlinux 0x22072d9d pinctrl_utils_reserve_map -EXPORT_SYMBOL_GPL vmlinux 0x2207616e devm_thermal_zone_of_sensor_unregister -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 0x22221327 of_icc_get_by_index -EXPORT_SYMBOL_GPL vmlinux 0x2240509c tty_port_unregister_device -EXPORT_SYMBOL_GPL vmlinux 0x224f51bf nvmem_device_cell_read -EXPORT_SYMBOL_GPL vmlinux 0x2254ec7c fsnotify_alloc_group -EXPORT_SYMBOL_GPL vmlinux 0x22848edc da9052_disable_irq -EXPORT_SYMBOL_GPL vmlinux 0x228eee63 usb_create_hcd -EXPORT_SYMBOL_GPL vmlinux 0x22a5cbd8 crypto_skcipher_setkey -EXPORT_SYMBOL_GPL vmlinux 0x22ac4dd1 sata_pmp_port_ops -EXPORT_SYMBOL_GPL vmlinux 0x22aca50c of_usb_host_tpl_support -EXPORT_SYMBOL_GPL vmlinux 0x22b0d219 regmap_noinc_read -EXPORT_SYMBOL_GPL vmlinux 0x22ba061e dev_pm_qos_hide_latency_tolerance -EXPORT_SYMBOL_GPL vmlinux 0x22c35949 regulator_set_current_limit_regmap -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 0x22efd0e1 fwnode_usb_role_switch_get -EXPORT_SYMBOL_GPL vmlinux 0x22f1a41e con_debug_enter -EXPORT_SYMBOL_GPL vmlinux 0x22f31abb add_hwgenerator_randomness -EXPORT_SYMBOL_GPL vmlinux 0x22fd08ba cpuacct_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0x2313822a pci_hp_create_module_link -EXPORT_SYMBOL_GPL vmlinux 0x233891ae usb_amd_pt_check_port -EXPORT_SYMBOL_GPL vmlinux 0x23412816 rtc_tm_to_ktime -EXPORT_SYMBOL_GPL vmlinux 0x23418754 regulator_is_enabled -EXPORT_SYMBOL_GPL vmlinux 0x2349158d gpiod_set_consumer_name -EXPORT_SYMBOL_GPL vmlinux 0x234cf416 devlink_fmsg_string_pair_put -EXPORT_SYMBOL_GPL vmlinux 0x236cd336 rockchip_clk_init -EXPORT_SYMBOL_GPL vmlinux 0x2373856a irq_remove_generic_chip -EXPORT_SYMBOL_GPL vmlinux 0x23864ce7 cpuset_mem_spread_node -EXPORT_SYMBOL_GPL vmlinux 0x2396c7f0 clk_set_parent -EXPORT_SYMBOL_GPL vmlinux 0x239c70bc kobject_uevent_env -EXPORT_SYMBOL_GPL vmlinux 0x23a58ec9 adp5520_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x23ab350f irq_domain_xlate_onecell -EXPORT_SYMBOL_GPL vmlinux 0x23cd0c6e trace_event_buffer_reserve -EXPORT_SYMBOL_GPL vmlinux 0x23d10f43 iommu_attach_device -EXPORT_SYMBOL_GPL vmlinux 0x23d3b097 __devm_reset_control_get -EXPORT_SYMBOL_GPL vmlinux 0x23e0c056 rpi_firmware_get -EXPORT_SYMBOL_GPL vmlinux 0x23e99dcd platform_device_register -EXPORT_SYMBOL_GPL vmlinux 0x241896a8 pci_pasid_features -EXPORT_SYMBOL_GPL vmlinux 0x2421097b mpi_const -EXPORT_SYMBOL_GPL vmlinux 0x2449aa58 pm_genpd_add_subdomain -EXPORT_SYMBOL_GPL vmlinux 0x244d6329 sdio_release_irq -EXPORT_SYMBOL_GPL vmlinux 0x2464da17 gen_pool_size -EXPORT_SYMBOL_GPL vmlinux 0x24709b2f trace_seq_putmem -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 0x2497e535 __blk_req_zone_write_lock -EXPORT_SYMBOL_GPL vmlinux 0x24a43383 serial8250_request_dma -EXPORT_SYMBOL_GPL vmlinux 0x24a66b26 fuse_init_fs_context_submount -EXPORT_SYMBOL_GPL vmlinux 0x24a9eeda acpi_spi_count_resources -EXPORT_SYMBOL_GPL vmlinux 0x24ad11db wakeup_sources_read_unlock -EXPORT_SYMBOL_GPL vmlinux 0x24b1bb83 rtc_class_open -EXPORT_SYMBOL_GPL vmlinux 0x24b207f2 __phy_modify -EXPORT_SYMBOL_GPL vmlinux 0x24b9d5b2 mptcp_token_iter_next -EXPORT_SYMBOL_GPL vmlinux 0x24cbe1e1 blk_mq_quiesce_queue_nowait -EXPORT_SYMBOL_GPL vmlinux 0x24da0093 rcu_inkernel_boot_has_ended -EXPORT_SYMBOL_GPL vmlinux 0x24eaef1e devm_clk_hw_get_clk -EXPORT_SYMBOL_GPL vmlinux 0x24eb7e32 leds_list -EXPORT_SYMBOL_GPL vmlinux 0x24f09a30 crypto_stats_akcipher_sign -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 0x24ffc601 usb_autopm_get_interface_async -EXPORT_SYMBOL_GPL vmlinux 0x250da977 usb_hcd_pci_shutdown -EXPORT_SYMBOL_GPL vmlinux 0x25252ccb ip6_datagram_recv_ctl -EXPORT_SYMBOL_GPL vmlinux 0x25301bc6 arch_wb_cache_pmem -EXPORT_SYMBOL_GPL vmlinux 0x25379e73 clk_set_min_rate -EXPORT_SYMBOL_GPL vmlinux 0x25454aa9 param_set_bool_enable_only -EXPORT_SYMBOL_GPL vmlinux 0x2554b8eb dequeue_signal -EXPORT_SYMBOL_GPL vmlinux 0x2567a74b gpiochip_add_pin_range -EXPORT_SYMBOL_GPL vmlinux 0x2574da11 zynqmp_pm_write_pggs -EXPORT_SYMBOL_GPL vmlinux 0x2592fc6c console_printk -EXPORT_SYMBOL_GPL vmlinux 0x25947b6b blk_ksm_is_superset -EXPORT_SYMBOL_GPL vmlinux 0x25994a77 serial8250_do_shutdown -EXPORT_SYMBOL_GPL vmlinux 0x259d55aa spi_new_ancillary_device -EXPORT_SYMBOL_GPL vmlinux 0x25a4cd60 __devm_spi_alloc_controller -EXPORT_SYMBOL_GPL vmlinux 0x25bbd9d0 lwtunnel_cmp_encap -EXPORT_SYMBOL_GPL vmlinux 0x25bbfa9a security_kernel_load_data -EXPORT_SYMBOL_GPL vmlinux 0x25defdab iommu_dev_feature_enabled -EXPORT_SYMBOL_GPL vmlinux 0x260cb94a gpiochip_irqchip_irq_valid -EXPORT_SYMBOL_GPL vmlinux 0x2617d5f3 nf_checksum -EXPORT_SYMBOL_GPL vmlinux 0x262fc208 virtqueue_add_sgs -EXPORT_SYMBOL_GPL vmlinux 0x263bf65d nvdimm_setup_pfn -EXPORT_SYMBOL_GPL vmlinux 0x263f039e xas_nomem -EXPORT_SYMBOL_GPL vmlinux 0x26520970 vm_memory_committed -EXPORT_SYMBOL_GPL vmlinux 0x265bbac8 xenbus_dev_remove -EXPORT_SYMBOL_GPL vmlinux 0x265bbef9 kexec_crash_loaded -EXPORT_SYMBOL_GPL vmlinux 0x265c1586 pci_epc_linkup -EXPORT_SYMBOL_GPL vmlinux 0x265eecb5 sk_attach_filter -EXPORT_SYMBOL_GPL vmlinux 0x266a4b08 tasklet_unlock -EXPORT_SYMBOL_GPL vmlinux 0x266f4920 genphy_c45_read_status -EXPORT_SYMBOL_GPL vmlinux 0x267df662 smp_call_on_cpu -EXPORT_SYMBOL_GPL vmlinux 0x269d1d5b crypto_unregister_akcipher -EXPORT_SYMBOL_GPL vmlinux 0x269dea44 generic_online_page -EXPORT_SYMBOL_GPL vmlinux 0x26a720f9 of_clk_src_simple_get -EXPORT_SYMBOL_GPL vmlinux 0x26a93eb2 verify_pkcs7_signature -EXPORT_SYMBOL_GPL vmlinux 0x26ab4755 put_old_itimerspec32 -EXPORT_SYMBOL_GPL vmlinux 0x26abfc44 sk_free_unlock_clone -EXPORT_SYMBOL_GPL vmlinux 0x26c7dd1b power_supply_changed -EXPORT_SYMBOL_GPL vmlinux 0x26c90d53 fb_deferred_io_init -EXPORT_SYMBOL_GPL vmlinux 0x26c90ea4 scsi_eh_get_sense -EXPORT_SYMBOL_GPL vmlinux 0x26d118f0 acpi_subsys_restore_early -EXPORT_SYMBOL_GPL vmlinux 0x26e5e8c2 dev_pm_opp_remove_all_dynamic -EXPORT_SYMBOL_GPL vmlinux 0x26ed2186 register_vmap_purge_notifier -EXPORT_SYMBOL_GPL vmlinux 0x2701953f mtk_mutex_add_comp -EXPORT_SYMBOL_GPL vmlinux 0x2718d46e scsi_target_unblock -EXPORT_SYMBOL_GPL vmlinux 0x272e9d77 hisi_reset_exit -EXPORT_SYMBOL_GPL vmlinux 0x2730093a serial8250_em485_config -EXPORT_SYMBOL_GPL vmlinux 0x2731cdfc wakeup_source_add -EXPORT_SYMBOL_GPL vmlinux 0x27382619 phy_pm_runtime_put -EXPORT_SYMBOL_GPL vmlinux 0x273e2382 __context_tracking_enter -EXPORT_SYMBOL_GPL vmlinux 0x274dd1a3 sg_free_table_chained -EXPORT_SYMBOL_GPL vmlinux 0x2753f94b gpiod_set_raw_array_value -EXPORT_SYMBOL_GPL vmlinux 0x2757a50a devm_free_percpu -EXPORT_SYMBOL_GPL vmlinux 0x2758739c devm_remove_action -EXPORT_SYMBOL_GPL vmlinux 0x2768d0db tty_encode_baud_rate -EXPORT_SYMBOL_GPL vmlinux 0x2773a9ae sysfs_unbreak_active_protection -EXPORT_SYMBOL_GPL vmlinux 0x2773c485 __wake_up_locked -EXPORT_SYMBOL_GPL vmlinux 0x277a7dad fwnode_get_next_available_child_node -EXPORT_SYMBOL_GPL vmlinux 0x2783c1df noop_direct_IO -EXPORT_SYMBOL_GPL vmlinux 0x27860dea ahci_platform_get_resources -EXPORT_SYMBOL_GPL vmlinux 0x2796dd82 imx_pinctrl_pm_ops -EXPORT_SYMBOL_GPL vmlinux 0x279779f2 __regmap_init -EXPORT_SYMBOL_GPL vmlinux 0x27a3e539 xhci_suspend -EXPORT_SYMBOL_GPL vmlinux 0x27a54659 pm_generic_thaw_noirq -EXPORT_SYMBOL_GPL vmlinux 0x27bcf1bc ohci_restart -EXPORT_SYMBOL_GPL vmlinux 0x27be708b vma_kernel_pagesize -EXPORT_SYMBOL_GPL vmlinux 0x27c845b4 icc_set_tag -EXPORT_SYMBOL_GPL vmlinux 0x27dc9471 __tracepoint_br_fdb_update -EXPORT_SYMBOL_GPL vmlinux 0x27e9d67b fib_nexthop_info -EXPORT_SYMBOL_GPL vmlinux 0x27f4f029 ftrace_set_global_filter -EXPORT_SYMBOL_GPL vmlinux 0x27f53b0a clk_hw_get_rate -EXPORT_SYMBOL_GPL vmlinux 0x27fa66e1 nr_free_buffer_pages -EXPORT_SYMBOL_GPL vmlinux 0x2801bfa5 shash_free_singlespawn_instance -EXPORT_SYMBOL_GPL vmlinux 0x280b025c of_dma_is_coherent -EXPORT_SYMBOL_GPL vmlinux 0x2817f7fd cppc_get_desired_perf -EXPORT_SYMBOL_GPL vmlinux 0x281ecaae pm_clk_suspend -EXPORT_SYMBOL_GPL vmlinux 0x28264b97 genphy_c45_read_mdix -EXPORT_SYMBOL_GPL vmlinux 0x282c8ccd blk_queue_flag_test_and_set -EXPORT_SYMBOL_GPL vmlinux 0x282cdabc usb_led_activity -EXPORT_SYMBOL_GPL vmlinux 0x2839b6dc extcon_dev_free -EXPORT_SYMBOL_GPL vmlinux 0x283b0e53 virtqueue_kick_prepare -EXPORT_SYMBOL_GPL vmlinux 0x28426d48 clk_mux_determine_rate_flags -EXPORT_SYMBOL_GPL vmlinux 0x284d9653 devm_mbox_controller_register -EXPORT_SYMBOL_GPL vmlinux 0x2854524f dma_buf_dynamic_attach -EXPORT_SYMBOL_GPL vmlinux 0x285edd0c i2c_get_device_id -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 0x28a04e22 ata_bmdma_qc_prep -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 0x28ba31fd devlink_region_snapshot_id_get -EXPORT_SYMBOL_GPL vmlinux 0x28bcefd0 dpcon_enable -EXPORT_SYMBOL_GPL vmlinux 0x28c0096f blk_insert_cloned_request -EXPORT_SYMBOL_GPL vmlinux 0x28dcaacf nfs42_ssc_unregister -EXPORT_SYMBOL_GPL vmlinux 0x28e9c09c usb_set_device_state -EXPORT_SYMBOL_GPL vmlinux 0x28f26684 irq_set_affinity_hint -EXPORT_SYMBOL_GPL vmlinux 0x28f98223 fscrypt_file_open -EXPORT_SYMBOL_GPL vmlinux 0x28fd0dfe register_asymmetric_key_parser -EXPORT_SYMBOL_GPL vmlinux 0x28ff6a2d crypto_unregister_skcipher -EXPORT_SYMBOL_GPL vmlinux 0x290f5201 msg_zerocopy_put_abort -EXPORT_SYMBOL_GPL vmlinux 0x29181c5b inet6_sock_destruct -EXPORT_SYMBOL_GPL vmlinux 0x291876f3 mpi_ec_get_affine -EXPORT_SYMBOL_GPL vmlinux 0x29222ba6 phy_modify -EXPORT_SYMBOL_GPL vmlinux 0x2928a5d9 fsl_mc_bus_dpdbg_type -EXPORT_SYMBOL_GPL vmlinux 0x2935e585 nd_region_dev -EXPORT_SYMBOL_GPL vmlinux 0x293c16bb pci_host_common_remove -EXPORT_SYMBOL_GPL vmlinux 0x295b982a hisi_clk_register_fixed_rate -EXPORT_SYMBOL_GPL vmlinux 0x29692579 rio_enable_rx_tx_port -EXPORT_SYMBOL_GPL vmlinux 0x29791ee9 __inode_attach_wb -EXPORT_SYMBOL_GPL vmlinux 0x297c1a1e fib_rules_seq_read -EXPORT_SYMBOL_GPL vmlinux 0x2989382d fwnode_device_is_available -EXPORT_SYMBOL_GPL vmlinux 0x2996f24c of_k3_ringacc_get_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0x29a0a59b l3mdev_fib_table_rcu -EXPORT_SYMBOL_GPL vmlinux 0x29a42e96 crypto_enqueue_request -EXPORT_SYMBOL_GPL vmlinux 0x29a71f63 dev_coredumpv -EXPORT_SYMBOL_GPL vmlinux 0x29adabf8 wakeup_source_remove -EXPORT_SYMBOL_GPL vmlinux 0x29b5aab1 pci_assign_unassigned_bus_resources -EXPORT_SYMBOL_GPL vmlinux 0x29b8e2e3 __sync_filesystem -EXPORT_SYMBOL_GPL vmlinux 0x29d2644a scsi_queue_work -EXPORT_SYMBOL_GPL vmlinux 0x29d76547 k3_udma_glue_tdown_rx_chn -EXPORT_SYMBOL_GPL vmlinux 0x29d9609c powercap_unregister_control_type -EXPORT_SYMBOL_GPL vmlinux 0x29d9f5e8 regulator_get_current_limit_regmap -EXPORT_SYMBOL_GPL vmlinux 0x29e3725b crypto_create_tfm_node -EXPORT_SYMBOL_GPL vmlinux 0x29eba37f current_is_async -EXPORT_SYMBOL_GPL vmlinux 0x29fed20b __traceiter_block_rq_remap -EXPORT_SYMBOL_GPL vmlinux 0x2a10f3a5 clk_hw_rate_is_protected -EXPORT_SYMBOL_GPL vmlinux 0x2a18aea7 pci_dev_unlock -EXPORT_SYMBOL_GPL vmlinux 0x2a37ea11 imx_clk_hw_frac_pll -EXPORT_SYMBOL_GPL vmlinux 0x2a5ea9ef rhashtable_destroy -EXPORT_SYMBOL_GPL vmlinux 0x2a62cb3a ring_buffer_overrun_cpu -EXPORT_SYMBOL_GPL vmlinux 0x2a659d41 blk_bio_list_merge -EXPORT_SYMBOL_GPL vmlinux 0x2a678a13 __suspend_report_result -EXPORT_SYMBOL_GPL vmlinux 0x2a7316da __SCK__tp_func_neigh_cleanup_and_release -EXPORT_SYMBOL_GPL vmlinux 0x2a75da96 spi_mem_poll_status -EXPORT_SYMBOL_GPL vmlinux 0x2a7bd29c crypto_unregister_acomp -EXPORT_SYMBOL_GPL vmlinux 0x2a85d7a6 rdev_get_dev -EXPORT_SYMBOL_GPL vmlinux 0x2a8af55a acpi_ec_add_query_handler -EXPORT_SYMBOL_GPL vmlinux 0x2a8bb11e hisi_clk_alloc -EXPORT_SYMBOL_GPL vmlinux 0x2a8c4afe __traceiter_remove_device_from_group -EXPORT_SYMBOL_GPL vmlinux 0x2a918cf6 regcache_sync -EXPORT_SYMBOL_GPL vmlinux 0x2a9c1ca2 cpci_hp_register_controller -EXPORT_SYMBOL_GPL vmlinux 0x2aa0052e fsl_mc_portal_free -EXPORT_SYMBOL_GPL vmlinux 0x2aa90d59 mddev_init -EXPORT_SYMBOL_GPL vmlinux 0x2aadad1a efi_capsule_update -EXPORT_SYMBOL_GPL vmlinux 0x2abf33df _proc_mkdir -EXPORT_SYMBOL_GPL vmlinux 0x2ad13f86 ata_bmdma_start -EXPORT_SYMBOL_GPL vmlinux 0x2ad61059 pci_epc_clear_bar -EXPORT_SYMBOL_GPL vmlinux 0x2ae1689e zynqmp_pm_clock_getdivider -EXPORT_SYMBOL_GPL vmlinux 0x2af1acaf debugfs_create_devm_seqfile -EXPORT_SYMBOL_GPL vmlinux 0x2b0765ca xen_store_interface -EXPORT_SYMBOL_GPL vmlinux 0x2b0a7577 ip6_local_out -EXPORT_SYMBOL_GPL vmlinux 0x2b0e3713 of_devfreq_cooling_register_power -EXPORT_SYMBOL_GPL vmlinux 0x2b0fe000 gnttab_cancel_free_callback -EXPORT_SYMBOL_GPL vmlinux 0x2b10d812 crypto_grab_spawn -EXPORT_SYMBOL_GPL vmlinux 0x2b21a4b9 pinctrl_get_group_pins -EXPORT_SYMBOL_GPL vmlinux 0x2b4509dd devlink_health_reporter_state_update -EXPORT_SYMBOL_GPL vmlinux 0x2b46b413 ahci_platform_resume -EXPORT_SYMBOL_GPL vmlinux 0x2b48b4b2 wm831x_set_bits -EXPORT_SYMBOL_GPL vmlinux 0x2b5aa579 mpc8xxx_spi_tx_buf_u8 -EXPORT_SYMBOL_GPL vmlinux 0x2b600e91 icc_node_del -EXPORT_SYMBOL_GPL vmlinux 0x2b6150fb power_supply_temp2resist_simple -EXPORT_SYMBOL_GPL vmlinux 0x2b6d960d synth_event_cmd_init -EXPORT_SYMBOL_GPL vmlinux 0x2b7120a5 pinctrl_find_gpio_range_from_pin -EXPORT_SYMBOL_GPL vmlinux 0x2b7ce4df ata_bmdma_port_start -EXPORT_SYMBOL_GPL vmlinux 0x2b88fff4 iomap_migrate_page -EXPORT_SYMBOL_GPL vmlinux 0x2b8e6a38 sdio_enable_func -EXPORT_SYMBOL_GPL vmlinux 0x2b952517 clk_has_parent -EXPORT_SYMBOL_GPL vmlinux 0x2b960b66 qman_is_probed -EXPORT_SYMBOL_GPL vmlinux 0x2b9997fb atomic_notifier_chain_register -EXPORT_SYMBOL_GPL vmlinux 0x2bb191d0 file_ra_state_init -EXPORT_SYMBOL_GPL vmlinux 0x2bb2a238 fat_flush_inodes -EXPORT_SYMBOL_GPL vmlinux 0x2bbfed31 uprobe_register -EXPORT_SYMBOL_GPL vmlinux 0x2bca26ad device_get_next_child_node -EXPORT_SYMBOL_GPL vmlinux 0x2bd3a99f uart_handle_cts_change -EXPORT_SYMBOL_GPL vmlinux 0x2bd491ac irq_domain_simple_ops -EXPORT_SYMBOL_GPL vmlinux 0x2be42e39 meson_pinctrl_probe -EXPORT_SYMBOL_GPL vmlinux 0x2c015c27 public_key_subtype -EXPORT_SYMBOL_GPL vmlinux 0x2c0dfb7c clk_hw_register_fixed_factor -EXPORT_SYMBOL_GPL vmlinux 0x2c208607 power_supply_is_system_supplied -EXPORT_SYMBOL_GPL vmlinux 0x2c23297f ip6_datagram_connect -EXPORT_SYMBOL_GPL vmlinux 0x2c23a1f1 virtqueue_add_outbuf -EXPORT_SYMBOL_GPL vmlinux 0x2c2b686b ata_pci_sff_activate_host -EXPORT_SYMBOL_GPL vmlinux 0x2c3054f9 net_inc_ingress_queue -EXPORT_SYMBOL_GPL vmlinux 0x2c36cc85 __tracepoint_unmap -EXPORT_SYMBOL_GPL vmlinux 0x2c5ca729 __rio_local_write_config_16 -EXPORT_SYMBOL_GPL vmlinux 0x2c635527 arch_invalidate_pmem -EXPORT_SYMBOL_GPL vmlinux 0x2c66ac85 devlink_info_serial_number_put -EXPORT_SYMBOL_GPL vmlinux 0x2c722327 report_iommu_fault -EXPORT_SYMBOL_GPL vmlinux 0x2c76d767 mtk_hw_set_value -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 0x2c8dd6b8 edac_mem_types -EXPORT_SYMBOL_GPL vmlinux 0x2c92ae47 dev_pm_opp_of_get_opp_desc_node -EXPORT_SYMBOL_GPL vmlinux 0x2c97f8a2 of_reconfig_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0x2c99ca2c edac_pci_create_generic_ctl -EXPORT_SYMBOL_GPL vmlinux 0x2c9ae62e tegra_agic_route_interrupt -EXPORT_SYMBOL_GPL vmlinux 0x2ca38484 component_unbind_all -EXPORT_SYMBOL_GPL vmlinux 0x2ca41024 ioasid_get -EXPORT_SYMBOL_GPL vmlinux 0x2ca755cf ata_sff_lost_interrupt -EXPORT_SYMBOL_GPL vmlinux 0x2cc495c5 rpi_firmware_property_list -EXPORT_SYMBOL_GPL vmlinux 0x2cd7a3d2 tracepoint_srcu -EXPORT_SYMBOL_GPL vmlinux 0x2cd817ed regulator_get_bypass_regmap -EXPORT_SYMBOL_GPL vmlinux 0x2ce20b72 dev_pm_genpd_resume -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 0x2cec8fd4 sdio_release_host -EXPORT_SYMBOL_GPL vmlinux 0x2d0684a9 hrtimer_init -EXPORT_SYMBOL_GPL vmlinux 0x2d0ac9d9 get_governor_parent_kobj -EXPORT_SYMBOL_GPL vmlinux 0x2d13c2ca class_remove_file_ns -EXPORT_SYMBOL_GPL vmlinux 0x2d1b02d2 usermodehelper_read_lock_wait -EXPORT_SYMBOL_GPL vmlinux 0x2d2280dd devres_get -EXPORT_SYMBOL_GPL vmlinux 0x2d28d97a tc3589x_set_bits -EXPORT_SYMBOL_GPL vmlinux 0x2d2bec5e virtqueue_poll -EXPORT_SYMBOL_GPL vmlinux 0x2d2c902f perf_trace_buf_alloc -EXPORT_SYMBOL_GPL vmlinux 0x2d2dd36f kobj_ns_grab_current -EXPORT_SYMBOL_GPL vmlinux 0x2d36bcb6 net_ns_type_operations -EXPORT_SYMBOL_GPL vmlinux 0x2d41e6f5 __trace_puts -EXPORT_SYMBOL_GPL vmlinux 0x2d5f69b3 rcu_read_unlock_strict -EXPORT_SYMBOL_GPL vmlinux 0x2d5f79de hisi_clk_register_phase -EXPORT_SYMBOL_GPL vmlinux 0x2d6aa0f0 arch_apei_enable_cmcff -EXPORT_SYMBOL_GPL vmlinux 0x2d70362b devfreq_event_disable_edev -EXPORT_SYMBOL_GPL vmlinux 0x2d7b83b1 of_mpc8xxx_spi_probe -EXPORT_SYMBOL_GPL vmlinux 0x2d7ec4bf pci_epc_map_msi_irq -EXPORT_SYMBOL_GPL vmlinux 0x2d8b7a0b of_genpd_add_device -EXPORT_SYMBOL_GPL vmlinux 0x2d94801a skb_gso_validate_mac_len -EXPORT_SYMBOL_GPL vmlinux 0x2dafb822 devlink_param_publish -EXPORT_SYMBOL_GPL vmlinux 0x2db67d4a owl_sps_set_pg -EXPORT_SYMBOL_GPL vmlinux 0x2dbd2904 transport_setup_device -EXPORT_SYMBOL_GPL vmlinux 0x2dbfcfdf inet_csk_get_port -EXPORT_SYMBOL_GPL vmlinux 0x2dc6590b spi_new_device -EXPORT_SYMBOL_GPL vmlinux 0x2dce0feb imx_unregister_hw_clocks -EXPORT_SYMBOL_GPL vmlinux 0x2df08e1a iommu_capable -EXPORT_SYMBOL_GPL vmlinux 0x2dfa37df netdev_walk_all_lower_dev_rcu -EXPORT_SYMBOL_GPL vmlinux 0x2e028ae6 rcutorture_get_gp_data -EXPORT_SYMBOL_GPL vmlinux 0x2e08226d badrange_add -EXPORT_SYMBOL_GPL vmlinux 0x2e152475 ata_sas_scsi_ioctl -EXPORT_SYMBOL_GPL vmlinux 0x2e2061df __fscrypt_prepare_link -EXPORT_SYMBOL_GPL vmlinux 0x2e2360b1 ftrace_set_global_notrace -EXPORT_SYMBOL_GPL vmlinux 0x2e237bb0 __traceiter_devlink_trap_report -EXPORT_SYMBOL_GPL vmlinux 0x2e446979 devlink_param_register -EXPORT_SYMBOL_GPL vmlinux 0x2e4a63c6 clk_hw_unregister_fixed_rate -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 0x2e6eca35 syscon_regmap_lookup_by_phandle_optional -EXPORT_SYMBOL_GPL vmlinux 0x2e756303 __tcp_send_ack -EXPORT_SYMBOL_GPL vmlinux 0x2e8312b4 gnttab_dma_alloc_pages -EXPORT_SYMBOL_GPL vmlinux 0x2eb0f980 rio_mport_write_config_32 -EXPORT_SYMBOL_GPL vmlinux 0x2eb7e3ad inet_twsk_alloc -EXPORT_SYMBOL_GPL vmlinux 0x2ebb19fd execute_in_process_context -EXPORT_SYMBOL_GPL vmlinux 0x2ebe3135 cpu_is_hotpluggable -EXPORT_SYMBOL_GPL vmlinux 0x2ec05216 unix_peer_get -EXPORT_SYMBOL_GPL vmlinux 0x2ed80697 tps6586x_reads -EXPORT_SYMBOL_GPL vmlinux 0x2ee7c52b btree_visitor -EXPORT_SYMBOL_GPL vmlinux 0x2ef23161 blk_queue_can_use_dma_map_merging -EXPORT_SYMBOL_GPL vmlinux 0x2ef9c799 blk_trace_setup -EXPORT_SYMBOL_GPL vmlinux 0x2f0789f9 device_remove_file_self -EXPORT_SYMBOL_GPL vmlinux 0x2f0d9053 usb_otg_state_string -EXPORT_SYMBOL_GPL vmlinux 0x2f184f4e clk_regmap_divider_ops -EXPORT_SYMBOL_GPL vmlinux 0x2f1e91a8 fsl_mc_bus_dpsw_type -EXPORT_SYMBOL_GPL vmlinux 0x2f1ea064 __SCK__tp_func_xdp_bulk_tx -EXPORT_SYMBOL_GPL vmlinux 0x2f252a2c i2c_mux_del_adapters -EXPORT_SYMBOL_GPL vmlinux 0x2f258a5e usb_driver_claim_interface -EXPORT_SYMBOL_GPL vmlinux 0x2f294a4c sk_msg_zerocopy_from_iter -EXPORT_SYMBOL_GPL vmlinux 0x2f2c95c4 flush_work -EXPORT_SYMBOL_GPL vmlinux 0x2f3ef127 devm_gpiod_get_array -EXPORT_SYMBOL_GPL vmlinux 0x2f4880df static_key_slow_dec -EXPORT_SYMBOL_GPL vmlinux 0x2f5c73e8 devm_nvmem_device_get -EXPORT_SYMBOL_GPL vmlinux 0x2f64415f unregister_acpi_hed_notifier -EXPORT_SYMBOL_GPL vmlinux 0x2f68b902 account_locked_vm -EXPORT_SYMBOL_GPL vmlinux 0x2f753143 do_xdp_generic -EXPORT_SYMBOL_GPL vmlinux 0x2f8217a3 mnt_drop_write -EXPORT_SYMBOL_GPL vmlinux 0x2f8fd89d xas_split_alloc -EXPORT_SYMBOL_GPL vmlinux 0x2f9636ff class_compat_create_link -EXPORT_SYMBOL_GPL vmlinux 0x2fa606bf skb_zerocopy_iter_stream -EXPORT_SYMBOL_GPL vmlinux 0x2fac2a65 pci_msi_unmask_irq -EXPORT_SYMBOL_GPL vmlinux 0x2fac3c71 k3_ringacc_request_rings_pair -EXPORT_SYMBOL_GPL vmlinux 0x2fb65d74 powercap_register_control_type -EXPORT_SYMBOL_GPL vmlinux 0x2fc1e0fe kmem_valid_obj -EXPORT_SYMBOL_GPL vmlinux 0x2fc4e087 bsg_job_put -EXPORT_SYMBOL_GPL vmlinux 0x2feeba37 pinctrl_generic_get_group_name -EXPORT_SYMBOL_GPL vmlinux 0x2ff43c84 get_net_ns_by_pid -EXPORT_SYMBOL_GPL vmlinux 0x30013461 ata_noop_qc_prep -EXPORT_SYMBOL_GPL vmlinux 0x30092a08 clk_register_hisi_phase -EXPORT_SYMBOL_GPL vmlinux 0x3025eee0 tegra210_clk_emc_dll_update_setting -EXPORT_SYMBOL_GPL vmlinux 0x3034cc09 sb800_prefetch -EXPORT_SYMBOL_GPL vmlinux 0x30351294 k3_udma_glue_rx_flow_get_fdq_id -EXPORT_SYMBOL_GPL vmlinux 0x305a2b56 __phy_modify_mmd_changed -EXPORT_SYMBOL_GPL vmlinux 0x3061cfce ring_buffer_entries_cpu -EXPORT_SYMBOL_GPL vmlinux 0x30689569 __traceiter_block_rq_insert -EXPORT_SYMBOL_GPL vmlinux 0x309fe648 devlink_trap_policers_register -EXPORT_SYMBOL_GPL vmlinux 0x30a16c18 divider_recalc_rate -EXPORT_SYMBOL_GPL vmlinux 0x30c939cc io_cgrp_subsys -EXPORT_SYMBOL_GPL vmlinux 0x30d85555 bpf_prog_free -EXPORT_SYMBOL_GPL vmlinux 0x30d86c4f usb_get_urb -EXPORT_SYMBOL_GPL vmlinux 0x30e1ec25 apei_map_generic_address -EXPORT_SYMBOL_GPL vmlinux 0x30e42163 tick_nohz_dep_clear_cpu -EXPORT_SYMBOL_GPL vmlinux 0x31019477 __ftrace_vbprintk -EXPORT_SYMBOL_GPL vmlinux 0x31035dbe kernel_read_file -EXPORT_SYMBOL_GPL vmlinux 0x310b2acf blk_mq_sched_mark_restart_hctx -EXPORT_SYMBOL_GPL vmlinux 0x31128b8e hv_remove_kexec_handler -EXPORT_SYMBOL_GPL vmlinux 0x31139940 sata_lpm_ignore_phy_events -EXPORT_SYMBOL_GPL vmlinux 0x311b21ad devm_pinctrl_register_and_init -EXPORT_SYMBOL_GPL vmlinux 0x31266931 con_debug_leave -EXPORT_SYMBOL_GPL vmlinux 0x3129a22e efivar_entry_add -EXPORT_SYMBOL_GPL vmlinux 0x312bbb63 nvdimm_security_setup_events -EXPORT_SYMBOL_GPL vmlinux 0x313ea5fd ipi_send_single -EXPORT_SYMBOL_GPL vmlinux 0x316179ba devm_nvmem_cell_get -EXPORT_SYMBOL_GPL vmlinux 0x3181d507 ethnl_cable_test_result -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 0x318ddece rio_alloc_net -EXPORT_SYMBOL_GPL vmlinux 0x3192d768 cpufreq_remove_update_util_hook -EXPORT_SYMBOL_GPL vmlinux 0x31976e91 usb_autopm_put_interface -EXPORT_SYMBOL_GPL vmlinux 0x319d333d gpiochip_free_own_desc -EXPORT_SYMBOL_GPL vmlinux 0x31a95e8b ring_buffer_record_enable_cpu -EXPORT_SYMBOL_GPL vmlinux 0x31b6531e pinctrl_utils_add_map_mux -EXPORT_SYMBOL_GPL vmlinux 0x31b7c240 wm8350_device_init -EXPORT_SYMBOL_GPL vmlinux 0x31b8a95c dm_per_bio_data -EXPORT_SYMBOL_GPL vmlinux 0x31c7970f pciserial_suspend_ports -EXPORT_SYMBOL_GPL vmlinux 0x31cd6a14 switchdev_handle_fdb_add_to_device -EXPORT_SYMBOL_GPL vmlinux 0x31cd6dd6 of_genpd_remove_subdomain -EXPORT_SYMBOL_GPL vmlinux 0x31dca4d8 gnttab_claim_grant_reference -EXPORT_SYMBOL_GPL vmlinux 0x31e9e8d5 zynqmp_pm_set_suspend_mode -EXPORT_SYMBOL_GPL vmlinux 0x32066413 perf_event_release_kernel -EXPORT_SYMBOL_GPL vmlinux 0x3206a7ad tty_kclose -EXPORT_SYMBOL_GPL vmlinux 0x321cf6c2 sysfs_remove_file_from_group -EXPORT_SYMBOL_GPL vmlinux 0x3224b2a9 mpi_read_raw_from_sgl -EXPORT_SYMBOL_GPL vmlinux 0x322e0899 device_property_read_string_array -EXPORT_SYMBOL_GPL vmlinux 0x322e37ee vring_del_virtqueue -EXPORT_SYMBOL_GPL vmlinux 0x32441f43 gpiochip_line_is_irq -EXPORT_SYMBOL_GPL vmlinux 0x3245f2f4 dax_supported -EXPORT_SYMBOL_GPL vmlinux 0x324d007a badblocks_store -EXPORT_SYMBOL_GPL vmlinux 0x325888a3 __tracepoint_neigh_update -EXPORT_SYMBOL_GPL vmlinux 0x326cefe5 hwpoison_filter_dev_minor -EXPORT_SYMBOL_GPL vmlinux 0x32763363 eventfd_fget -EXPORT_SYMBOL_GPL vmlinux 0x327a2687 bind_evtchn_to_irq_lateeoi -EXPORT_SYMBOL_GPL vmlinux 0x3297b3cb i2c_for_each_dev -EXPORT_SYMBOL_GPL vmlinux 0x3297bcbf sata_std_hardreset -EXPORT_SYMBOL_GPL vmlinux 0x329a06e8 sched_trace_rq_avg_rt -EXPORT_SYMBOL_GPL vmlinux 0x32ab06cc irq_percpu_is_enabled -EXPORT_SYMBOL_GPL vmlinux 0x32aead0e devres_close_group -EXPORT_SYMBOL_GPL vmlinux 0x32c2bb04 list_lru_walk_node -EXPORT_SYMBOL_GPL vmlinux 0x32c3cb4e class_compat_register -EXPORT_SYMBOL_GPL vmlinux 0x32c5098c device_match_any -EXPORT_SYMBOL_GPL vmlinux 0x32c59829 pci_destroy_slot -EXPORT_SYMBOL_GPL vmlinux 0x32cb7b91 xen_dbgp_external_startup -EXPORT_SYMBOL_GPL vmlinux 0x32e1be2f __vfs_setxattr_locked -EXPORT_SYMBOL_GPL vmlinux 0x32e7aae3 __sock_recv_wifi_status -EXPORT_SYMBOL_GPL vmlinux 0x32e7b280 tty_buffer_set_limit -EXPORT_SYMBOL_GPL vmlinux 0x32e92e01 of_clk_get_parent_count -EXPORT_SYMBOL_GPL vmlinux 0x330010b6 cpuset_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x33142cc6 ata_sas_tport_delete -EXPORT_SYMBOL_GPL vmlinux 0x333cba07 of_icc_get_from_provider -EXPORT_SYMBOL_GPL vmlinux 0x333f15bf led_trigger_event -EXPORT_SYMBOL_GPL vmlinux 0x334112d4 devm_devfreq_event_remove_edev -EXPORT_SYMBOL_GPL vmlinux 0x33550330 serdev_device_close -EXPORT_SYMBOL_GPL vmlinux 0x335aed75 skb_complete_tx_timestamp -EXPORT_SYMBOL_GPL vmlinux 0x335c570f enable_percpu_irq -EXPORT_SYMBOL_GPL vmlinux 0x335c901a gpiochip_irqchip_add_domain -EXPORT_SYMBOL_GPL vmlinux 0x335faed1 nd_tbl -EXPORT_SYMBOL_GPL vmlinux 0x336b3f30 dev_pm_genpd_suspend -EXPORT_SYMBOL_GPL vmlinux 0x337e3a82 usb_submit_urb -EXPORT_SYMBOL_GPL vmlinux 0x3389faa7 of_pwm_get -EXPORT_SYMBOL_GPL vmlinux 0x339d4a18 devm_clk_get_optional_prepared -EXPORT_SYMBOL_GPL vmlinux 0x33aa8bc7 mpc8xxx_spi_rx_buf_u16 -EXPORT_SYMBOL_GPL vmlinux 0x33b1ac56 pci_epf_remove_vepf -EXPORT_SYMBOL_GPL vmlinux 0x33beddc6 sk_psock_drop -EXPORT_SYMBOL_GPL vmlinux 0x33c16d91 usb_add_phy_dev -EXPORT_SYMBOL_GPL vmlinux 0x33c56544 dw_pcie_write_dbi -EXPORT_SYMBOL_GPL vmlinux 0x33e57434 devm_clk_bulk_get -EXPORT_SYMBOL_GPL vmlinux 0x33eb2544 usb_hcd_resume_root_hub -EXPORT_SYMBOL_GPL vmlinux 0x33ebd729 pstore_unregister -EXPORT_SYMBOL_GPL vmlinux 0x33effed2 phy_led_trigger_change_speed -EXPORT_SYMBOL_GPL vmlinux 0x33f7a866 platform_get_irq -EXPORT_SYMBOL_GPL vmlinux 0x34110612 devm_led_trigger_register -EXPORT_SYMBOL_GPL vmlinux 0x341ffa0e ahci_platform_enable_phys -EXPORT_SYMBOL_GPL vmlinux 0x342274d8 i2c_match_id -EXPORT_SYMBOL_GPL vmlinux 0x3429151f blk_mq_alloc_request_hctx -EXPORT_SYMBOL_GPL vmlinux 0x3431b5fb invalidate_inode_pages2_range -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 0x344b7133 bio_clone_blkg_association -EXPORT_SYMBOL_GPL vmlinux 0x3450185e bpf_prog_create_from_user -EXPORT_SYMBOL_GPL vmlinux 0x3450ad94 mpi_set_ui -EXPORT_SYMBOL_GPL vmlinux 0x345ff12e pci_epf_free_space -EXPORT_SYMBOL_GPL vmlinux 0x3463503e genphy_c45_check_and_restart_aneg -EXPORT_SYMBOL_GPL vmlinux 0x3466f921 evm_verifyxattr -EXPORT_SYMBOL_GPL vmlinux 0x347cd990 fsverity_verify_page -EXPORT_SYMBOL_GPL vmlinux 0x34a7b142 __SCK__tp_func_rpm_suspend -EXPORT_SYMBOL_GPL vmlinux 0x34bce58c ata_scsi_unlock_native_capacity -EXPORT_SYMBOL_GPL vmlinux 0x34cf4adc devm_power_supply_get_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0x34eab46d bind_evtchn_to_irqhandler -EXPORT_SYMBOL_GPL vmlinux 0x34fc4ad3 __tracepoint_block_split -EXPORT_SYMBOL_GPL vmlinux 0x34fd60df pinctrl_add_gpio_range -EXPORT_SYMBOL_GPL vmlinux 0x3508485d clk_fixed_factor_ops -EXPORT_SYMBOL_GPL vmlinux 0x350f6ce5 tasklet_unlock_wait -EXPORT_SYMBOL_GPL vmlinux 0x350fa8de sfp_register_socket -EXPORT_SYMBOL_GPL vmlinux 0x3514632d skb_send_sock_locked -EXPORT_SYMBOL_GPL vmlinux 0x3514eb7a nd_blk_region_set_provider_data -EXPORT_SYMBOL_GPL vmlinux 0x3525df1a skb_gso_validate_network_len -EXPORT_SYMBOL_GPL vmlinux 0x352b3813 maxim_charger_calc_reg_current -EXPORT_SYMBOL_GPL vmlinux 0x352ec68b bpf_offload_dev_destroy -EXPORT_SYMBOL_GPL vmlinux 0x35467580 bpf_offload_dev_create -EXPORT_SYMBOL_GPL vmlinux 0x35485f45 dpcon_close -EXPORT_SYMBOL_GPL vmlinux 0x354f364a tpm2_get_cc_attrs_tbl -EXPORT_SYMBOL_GPL vmlinux 0x35514a3f mtk_eint_do_suspend -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 0x357457c3 psil_get_ep_config -EXPORT_SYMBOL_GPL vmlinux 0x3585b393 bpf_trace_run1 -EXPORT_SYMBOL_GPL vmlinux 0x358a74c6 mtk_eint_find_irq -EXPORT_SYMBOL_GPL vmlinux 0x358ff60f twl_get_hfclk_rate -EXPORT_SYMBOL_GPL vmlinux 0x35a32c52 genphy_c45_pma_resume -EXPORT_SYMBOL_GPL vmlinux 0x35a41b85 mtk_pinconf_drive_set_raw -EXPORT_SYMBOL_GPL vmlinux 0x35a4f59d zynqmp_pm_clock_setdivider -EXPORT_SYMBOL_GPL vmlinux 0x35ae21fe pm_clk_runtime_suspend -EXPORT_SYMBOL_GPL vmlinux 0x35b48925 device_remove_file -EXPORT_SYMBOL_GPL vmlinux 0x35b84efa user_destroy -EXPORT_SYMBOL_GPL vmlinux 0x35b9fa64 tty_kopen_shared -EXPORT_SYMBOL_GPL vmlinux 0x35c76a7c amba_bustype -EXPORT_SYMBOL_GPL vmlinux 0x35d3dc46 crypto_alg_sem -EXPORT_SYMBOL_GPL vmlinux 0x35d47b52 kernfs_notify -EXPORT_SYMBOL_GPL vmlinux 0x35dd58f5 blk_queue_write_cache -EXPORT_SYMBOL_GPL vmlinux 0x35dfda6b usb_check_bulk_endpoints -EXPORT_SYMBOL_GPL vmlinux 0x35ef855a crypto_alg_mod_lookup -EXPORT_SYMBOL_GPL vmlinux 0x36075bb5 iommu_group_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x36094466 tty_ldisc_ref -EXPORT_SYMBOL_GPL vmlinux 0x36242943 switchdev_deferred_process -EXPORT_SYMBOL_GPL vmlinux 0x36247ad3 usb_hcd_giveback_urb -EXPORT_SYMBOL_GPL vmlinux 0x3640f9ad spi_setup -EXPORT_SYMBOL_GPL vmlinux 0x36452640 blkg_conf_finish -EXPORT_SYMBOL_GPL vmlinux 0x365989e5 imx_1416x_pll -EXPORT_SYMBOL_GPL vmlinux 0x365b45d1 __tracepoint_sched_update_nr_running_tp -EXPORT_SYMBOL_GPL vmlinux 0x3677b305 ata_bmdma_irq_clear -EXPORT_SYMBOL_GPL vmlinux 0x3682f742 acpi_dma_controller_free -EXPORT_SYMBOL_GPL vmlinux 0x368c981c pm_clk_remove_clk -EXPORT_SYMBOL_GPL vmlinux 0x369c4548 serial8250_init_port -EXPORT_SYMBOL_GPL vmlinux 0x369fcd70 tracing_snapshot -EXPORT_SYMBOL_GPL vmlinux 0x36aa271c __put_task_struct -EXPORT_SYMBOL_GPL vmlinux 0x36b2ddd4 dev_pm_opp_register_set_opp_helper -EXPORT_SYMBOL_GPL vmlinux 0x36c282c8 spi_mem_dirmap_create -EXPORT_SYMBOL_GPL vmlinux 0x36caf6f0 edac_device_handle_ue_count -EXPORT_SYMBOL_GPL vmlinux 0x36cecb9d wakeup_source_unregister -EXPORT_SYMBOL_GPL vmlinux 0x36d64369 __inet_inherit_port -EXPORT_SYMBOL_GPL vmlinux 0x36d7a57c of_msi_configure -EXPORT_SYMBOL_GPL vmlinux 0x36e6cc0e dst_cache_set_ip6 -EXPORT_SYMBOL_GPL vmlinux 0x36e7a02f fscrypt_mergeable_bio_bh -EXPORT_SYMBOL_GPL vmlinux 0x36eb824b xfrm_audit_policy_add -EXPORT_SYMBOL_GPL vmlinux 0x36f2d37f mtk_pinconf_bias_set_combo -EXPORT_SYMBOL_GPL vmlinux 0x36fad273 irq_domain_add_legacy -EXPORT_SYMBOL_GPL vmlinux 0x3708c5f0 clk_divider_ops -EXPORT_SYMBOL_GPL vmlinux 0x37169f79 cpu_latency_qos_update_request -EXPORT_SYMBOL_GPL vmlinux 0x37170db3 gnttab_unmap_refs_sync -EXPORT_SYMBOL_GPL vmlinux 0x37232f7b register_pernet_subsys -EXPORT_SYMBOL_GPL vmlinux 0x372cfd6e gnttab_end_foreign_access -EXPORT_SYMBOL_GPL vmlinux 0x374c53e1 ata_get_cmd_descript -EXPORT_SYMBOL_GPL vmlinux 0x37508d60 cgroup_attach_task_all -EXPORT_SYMBOL_GPL vmlinux 0x3750d770 erst_read -EXPORT_SYMBOL_GPL vmlinux 0x376de45e usb_kill_urb -EXPORT_SYMBOL_GPL vmlinux 0x37713689 devm_extcon_dev_allocate -EXPORT_SYMBOL_GPL vmlinux 0x3775c25b k3_udma_glue_tx_cppi5_to_dma_addr -EXPORT_SYMBOL_GPL vmlinux 0x377bbcbc pm_suspend_target_state -EXPORT_SYMBOL_GPL vmlinux 0x378adfb7 zynqmp_pm_sd_dll_reset -EXPORT_SYMBOL_GPL vmlinux 0x37914025 xenbus_write -EXPORT_SYMBOL_GPL vmlinux 0x37926ff7 smpboot_register_percpu_thread -EXPORT_SYMBOL_GPL vmlinux 0x379b6f60 pinctrl_unregister -EXPORT_SYMBOL_GPL vmlinux 0x37a270eb sata_scr_valid -EXPORT_SYMBOL_GPL vmlinux 0x37aa4528 devm_clk_bulk_get_optional -EXPORT_SYMBOL_GPL vmlinux 0x37bf7be3 percpu_ref_exit -EXPORT_SYMBOL_GPL vmlinux 0x37d0fd67 crypto_stats_skcipher_encrypt -EXPORT_SYMBOL_GPL vmlinux 0x37e00980 pci_bridge_emul_cleanup -EXPORT_SYMBOL_GPL vmlinux 0x37ee7337 rio_dma_prep_xfer -EXPORT_SYMBOL_GPL vmlinux 0x3801776b __ioread32_copy -EXPORT_SYMBOL_GPL vmlinux 0x3811a205 crypto_shash_setkey -EXPORT_SYMBOL_GPL vmlinux 0x3816e5ad pci_get_dsn -EXPORT_SYMBOL_GPL vmlinux 0x38268b62 icc_bulk_enable -EXPORT_SYMBOL_GPL vmlinux 0x3827e2a0 vp_modern_probe -EXPORT_SYMBOL_GPL vmlinux 0x382d6655 vp_modern_get_status -EXPORT_SYMBOL_GPL vmlinux 0x38374815 clear_selection -EXPORT_SYMBOL_GPL vmlinux 0x38424b47 usb_unanchor_urb -EXPORT_SYMBOL_GPL vmlinux 0x38484cd1 rtnl_register_module -EXPORT_SYMBOL_GPL vmlinux 0x38653db5 usb_deregister -EXPORT_SYMBOL_GPL vmlinux 0x3866e217 nvmem_device_write -EXPORT_SYMBOL_GPL vmlinux 0x38708e25 inet_peer_base_init -EXPORT_SYMBOL_GPL vmlinux 0x3873f45a bpf_trace_run9 -EXPORT_SYMBOL_GPL vmlinux 0x388da179 regulator_set_drvdata -EXPORT_SYMBOL_GPL vmlinux 0x388e17cc __ata_change_queue_depth -EXPORT_SYMBOL_GPL vmlinux 0x3890329f platform_get_resource -EXPORT_SYMBOL_GPL vmlinux 0x389b64a2 static_key_count -EXPORT_SYMBOL_GPL vmlinux 0x38a5f8fe rio_bus_type -EXPORT_SYMBOL_GPL vmlinux 0x38aa1397 gpiod_add_lookup_table -EXPORT_SYMBOL_GPL vmlinux 0x38aa9779 fib_rules_lookup -EXPORT_SYMBOL_GPL vmlinux 0x38ae6b07 skcipher_register_instance -EXPORT_SYMBOL_GPL vmlinux 0x38b73864 uprobe_register_refctr -EXPORT_SYMBOL_GPL vmlinux 0x38c3ff30 freq_qos_add_notifier -EXPORT_SYMBOL_GPL vmlinux 0x38c9dc3d crypto_register_acomps -EXPORT_SYMBOL_GPL vmlinux 0x38d74769 irq_domain_set_hwirq_and_chip -EXPORT_SYMBOL_GPL vmlinux 0x38d75295 hisi_reset_init -EXPORT_SYMBOL_GPL vmlinux 0x38d9e2f0 cpufreq_frequency_table_get_index -EXPORT_SYMBOL_GPL vmlinux 0x38db56fa regulator_get_mode -EXPORT_SYMBOL_GPL vmlinux 0x38de982b fsl_mc_free_irqs -EXPORT_SYMBOL_GPL vmlinux 0x38e1fde7 mpi_set -EXPORT_SYMBOL_GPL vmlinux 0x38e381a1 usb_autopm_get_interface -EXPORT_SYMBOL_GPL vmlinux 0x38e5bc5a clk_set_rate_range -EXPORT_SYMBOL_GPL vmlinux 0x38e7db61 devm_acpi_dma_controller_register -EXPORT_SYMBOL_GPL vmlinux 0x38fcecd2 ata_pci_device_do_suspend -EXPORT_SYMBOL_GPL vmlinux 0x390534a9 bsg_remove_queue -EXPORT_SYMBOL_GPL vmlinux 0x391623ff l3mdev_ifindex_lookup_by_table_id -EXPORT_SYMBOL_GPL vmlinux 0x392b5d31 ptp_parse_header -EXPORT_SYMBOL_GPL vmlinux 0x392ea316 device_property_read_u32_array -EXPORT_SYMBOL_GPL vmlinux 0x392f133b regulator_map_voltage_ascend -EXPORT_SYMBOL_GPL vmlinux 0x39315cfd ata_sff_prereset -EXPORT_SYMBOL_GPL vmlinux 0x3936cccf exportfs_encode_inode_fh -EXPORT_SYMBOL_GPL vmlinux 0x3942be73 ehci_handshake -EXPORT_SYMBOL_GPL vmlinux 0x394406f3 reset_controller_unregister -EXPORT_SYMBOL_GPL vmlinux 0x394c1a5e raw_abort -EXPORT_SYMBOL_GPL vmlinux 0x3958ba5d lwtunnel_encap_del_ops -EXPORT_SYMBOL_GPL vmlinux 0x3961b6fe debugfs_lookup_and_remove -EXPORT_SYMBOL_GPL vmlinux 0x39632f22 bd_unlink_disk_holder -EXPORT_SYMBOL_GPL vmlinux 0x397c0e18 clean_acked_data_disable -EXPORT_SYMBOL_GPL vmlinux 0x397e2142 __SCK__tp_func_sched_cpu_capacity_tp -EXPORT_SYMBOL_GPL vmlinux 0x399eda0f sbitmap_add_wait_queue -EXPORT_SYMBOL_GPL vmlinux 0x39a13059 acpi_subsys_runtime_resume -EXPORT_SYMBOL_GPL vmlinux 0x39a7affc driver_deferred_probe_timeout -EXPORT_SYMBOL_GPL vmlinux 0x39aa4888 usb_role_string -EXPORT_SYMBOL_GPL vmlinux 0x39b56158 of_reserved_mem_device_init_by_idx -EXPORT_SYMBOL_GPL vmlinux 0x39ba8248 class_create_file_ns -EXPORT_SYMBOL_GPL vmlinux 0x39c0363d rio_request_inb_dbell -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 0x39e2adbf fsl_mc_portal_allocate -EXPORT_SYMBOL_GPL vmlinux 0x39eeb8f8 sched_set_fifo -EXPORT_SYMBOL_GPL vmlinux 0x3a02774a efivars_unregister -EXPORT_SYMBOL_GPL vmlinux 0x3a176269 serial8250_do_set_mctrl -EXPORT_SYMBOL_GPL vmlinux 0x3a1ae0e4 rdev_get_regmap -EXPORT_SYMBOL_GPL vmlinux 0x3a1d0956 iommu_page_response -EXPORT_SYMBOL_GPL vmlinux 0x3a1e737f debugfs_create_blob -EXPORT_SYMBOL_GPL vmlinux 0x3a24fb2f percpu_ref_resurrect -EXPORT_SYMBOL_GPL vmlinux 0x3a49c495 blockdev_superblock -EXPORT_SYMBOL_GPL vmlinux 0x3a4e6eb3 gnttab_dma_free_pages -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 0x3a638437 vp_modern_get_queue_enable -EXPORT_SYMBOL_GPL vmlinux 0x3a74e484 __tracepoint_sched_util_est_se_tp -EXPORT_SYMBOL_GPL vmlinux 0x3a7ccac3 crypto_unregister_ahash -EXPORT_SYMBOL_GPL vmlinux 0x3a8bf68b gnttab_foreach_grant_in_range -EXPORT_SYMBOL_GPL vmlinux 0x3a9048eb pci_check_and_unmask_intx -EXPORT_SYMBOL_GPL vmlinux 0x3a9be019 asymmetric_key_id_partial -EXPORT_SYMBOL_GPL vmlinux 0x3aa62ae5 __traceiter_pelt_se_tp -EXPORT_SYMBOL_GPL vmlinux 0x3abe0e27 clk_hw_register_fractional_divider -EXPORT_SYMBOL_GPL vmlinux 0x3ac3feba rhltable_init -EXPORT_SYMBOL_GPL vmlinux 0x3acd05d8 device_property_read_u16_array -EXPORT_SYMBOL_GPL vmlinux 0x3acdf325 twl4030_audio_enable_resource -EXPORT_SYMBOL_GPL vmlinux 0x3ad67ba6 mmc_cmdq_enable -EXPORT_SYMBOL_GPL vmlinux 0x3b0b72f5 of_modalias_node -EXPORT_SYMBOL_GPL vmlinux 0x3b1068bb bus_remove_file -EXPORT_SYMBOL_GPL vmlinux 0x3b1ec07d ahci_platform_init_host -EXPORT_SYMBOL_GPL vmlinux 0x3b2298d9 simple_attr_read -EXPORT_SYMBOL_GPL vmlinux 0x3b41c699 genphy_c45_config_aneg -EXPORT_SYMBOL_GPL vmlinux 0x3b49c632 input_ff_create -EXPORT_SYMBOL_GPL vmlinux 0x3b4c240a display_timings_release -EXPORT_SYMBOL_GPL vmlinux 0x3b4fa046 acpi_dma_request_slave_chan_by_index -EXPORT_SYMBOL_GPL vmlinux 0x3b610584 __tracepoint_sched_cpu_capacity_tp -EXPORT_SYMBOL_GPL vmlinux 0x3b66397c pci_host_probe -EXPORT_SYMBOL_GPL vmlinux 0x3b74b456 driver_unregister -EXPORT_SYMBOL_GPL vmlinux 0x3b78bf02 sunxi_ccu_get_mmc_timing_mode -EXPORT_SYMBOL_GPL vmlinux 0x3b7f2010 pci_cfg_access_unlock -EXPORT_SYMBOL_GPL vmlinux 0x3b8979ea gnttab_grant_foreign_transfer_ref -EXPORT_SYMBOL_GPL vmlinux 0x3b93f6c5 __efivar_entry_iter -EXPORT_SYMBOL_GPL vmlinux 0x3ba01b47 get_compat_sigset -EXPORT_SYMBOL_GPL vmlinux 0x3ba68cfe tcp_register_ulp -EXPORT_SYMBOL_GPL vmlinux 0x3bbd717e devlink_dpipe_headers_register -EXPORT_SYMBOL_GPL vmlinux 0x3bc797ed trace_get_event_file -EXPORT_SYMBOL_GPL vmlinux 0x3bda8b94 elv_register -EXPORT_SYMBOL_GPL vmlinux 0x3bdb3f60 __fl6_sock_lookup -EXPORT_SYMBOL_GPL vmlinux 0x3bdb5d28 alg_test -EXPORT_SYMBOL_GPL vmlinux 0x3bdc0e0c __tracepoint_neigh_event_send_done -EXPORT_SYMBOL_GPL vmlinux 0x3be67500 da903x_writes -EXPORT_SYMBOL_GPL vmlinux 0x3beb8c59 tty_buffer_request_room -EXPORT_SYMBOL_GPL vmlinux 0x3bef1664 udp4_hwcsum -EXPORT_SYMBOL_GPL vmlinux 0x3bf17755 mpi_read_buffer -EXPORT_SYMBOL_GPL vmlinux 0x3bfc5244 pm_generic_resume_noirq -EXPORT_SYMBOL_GPL vmlinux 0x3c0578b4 pci_hp_del -EXPORT_SYMBOL_GPL vmlinux 0x3c0a7ead devm_nvmem_register -EXPORT_SYMBOL_GPL vmlinux 0x3c0e8050 hyperv_pcpu_input_arg -EXPORT_SYMBOL_GPL vmlinux 0x3c11b9f5 tegra210_put_utmipll_in_iddq -EXPORT_SYMBOL_GPL vmlinux 0x3c165215 crypto_get_default_null_skcipher -EXPORT_SYMBOL_GPL vmlinux 0x3c18f7c7 perf_event_disable -EXPORT_SYMBOL_GPL vmlinux 0x3c1c3725 rcu_fwd_progress_check -EXPORT_SYMBOL_GPL vmlinux 0x3c2b68f7 of_changeset_apply -EXPORT_SYMBOL_GPL vmlinux 0x3c330d76 adp5520_clr_bits -EXPORT_SYMBOL_GPL vmlinux 0x3c3c85d8 __SCK__tp_func_kfree_skb -EXPORT_SYMBOL_GPL vmlinux 0x3c4c45d7 devm_reset_controller_register -EXPORT_SYMBOL_GPL vmlinux 0x3c5d543a hrtimer_start_range_ns -EXPORT_SYMBOL_GPL vmlinux 0x3c681dc4 ring_buffer_record_disable -EXPORT_SYMBOL_GPL vmlinux 0x3c8e4cca skb_mpls_dec_ttl -EXPORT_SYMBOL_GPL vmlinux 0x3c8e8747 __clk_hw_register_gate -EXPORT_SYMBOL_GPL vmlinux 0x3c8ef2c1 cpufreq_dbs_governor_exit -EXPORT_SYMBOL_GPL vmlinux 0x3ccd8b46 zynqmp_pm_clock_getparent -EXPORT_SYMBOL_GPL vmlinux 0x3ccde9b1 devlink_traps_unregister -EXPORT_SYMBOL_GPL vmlinux 0x3cd06035 add_input_randomness -EXPORT_SYMBOL_GPL vmlinux 0x3cd1b510 trace_vbprintk -EXPORT_SYMBOL_GPL vmlinux 0x3ce39a87 __auxiliary_device_add -EXPORT_SYMBOL_GPL vmlinux 0x3ce650fd phy_10gbit_features -EXPORT_SYMBOL_GPL vmlinux 0x3ce87a86 power_supply_register_no_ws -EXPORT_SYMBOL_GPL vmlinux 0x3cee1ce0 led_trigger_unregister -EXPORT_SYMBOL_GPL vmlinux 0x3cf37c79 kthread_func -EXPORT_SYMBOL_GPL vmlinux 0x3cfdd5e1 rio_map_outb_region -EXPORT_SYMBOL_GPL vmlinux 0x3d247d7d class_for_each_device -EXPORT_SYMBOL_GPL vmlinux 0x3d281440 __irq_alloc_domain_generic_chips -EXPORT_SYMBOL_GPL vmlinux 0x3d290330 phy_create -EXPORT_SYMBOL_GPL vmlinux 0x3d357b7a mbox_free_channel -EXPORT_SYMBOL_GPL vmlinux 0x3d388324 dpm_resume_end -EXPORT_SYMBOL_GPL vmlinux 0x3d4bdf17 fbcon_modechange_possible -EXPORT_SYMBOL_GPL vmlinux 0x3d510a7b rcu_jiffies_till_stall_check -EXPORT_SYMBOL_GPL vmlinux 0x3d5e70a0 regulator_set_voltage -EXPORT_SYMBOL_GPL vmlinux 0x3d7a416d serdev_controller_remove -EXPORT_SYMBOL_GPL vmlinux 0x3d866e05 __SCK__tp_func_block_rq_insert -EXPORT_SYMBOL_GPL vmlinux 0x3d8baf3b zs_huge_class_size -EXPORT_SYMBOL_GPL vmlinux 0x3da385cf dw_pcie_ep_init -EXPORT_SYMBOL_GPL vmlinux 0x3daa2540 nf_hooks_lwtunnel_enabled -EXPORT_SYMBOL_GPL vmlinux 0x3db48927 sbitmap_any_bit_set -EXPORT_SYMBOL_GPL vmlinux 0x3dba6a3e __rt_mutex_init -EXPORT_SYMBOL_GPL vmlinux 0x3dbda674 pm_generic_restore_early -EXPORT_SYMBOL_GPL vmlinux 0x3dc14baa security_file_ioctl -EXPORT_SYMBOL_GPL vmlinux 0x3dc86316 perf_event_period -EXPORT_SYMBOL_GPL vmlinux 0x3dd554f7 __udp4_lib_lookup -EXPORT_SYMBOL_GPL vmlinux 0x3de1efd6 crypto_stats_akcipher_decrypt -EXPORT_SYMBOL_GPL vmlinux 0x3de9cae1 crypto_remove_final -EXPORT_SYMBOL_GPL vmlinux 0x3df70c99 trace_clock_global -EXPORT_SYMBOL_GPL vmlinux 0x3df92bb1 spi_finalize_current_message -EXPORT_SYMBOL_GPL vmlinux 0x3e0a73a5 dmi_kobj -EXPORT_SYMBOL_GPL vmlinux 0x3e16274b irq_get_default_host -EXPORT_SYMBOL_GPL vmlinux 0x3e25d8d8 task_cputime_adjusted -EXPORT_SYMBOL_GPL vmlinux 0x3e30b20a ata_pci_bmdma_clear_simplex -EXPORT_SYMBOL_GPL vmlinux 0x3e3288c5 scsi_ioctl_block_when_processing_errors -EXPORT_SYMBOL_GPL vmlinux 0x3e390d17 xdp_rxq_info_unreg -EXPORT_SYMBOL_GPL vmlinux 0x3e444604 ata_host_alloc -EXPORT_SYMBOL_GPL vmlinux 0x3e4db8d2 virtqueue_is_broken -EXPORT_SYMBOL_GPL vmlinux 0x3e5014a4 subsys_interface_register -EXPORT_SYMBOL_GPL vmlinux 0x3e5fcbe5 inet_csk_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0x3e7080cb mpi_read_from_buffer -EXPORT_SYMBOL_GPL vmlinux 0x3e7741d7 devm_platform_ioremap_resource_byname -EXPORT_SYMBOL_GPL vmlinux 0x3e7a3728 __blk_req_zone_write_unlock -EXPORT_SYMBOL_GPL vmlinux 0x3e866287 amba_ahb_device_add -EXPORT_SYMBOL_GPL vmlinux 0x3e90a34c srcu_init_notifier_head -EXPORT_SYMBOL_GPL vmlinux 0x3ea5196d apei_osc_setup -EXPORT_SYMBOL_GPL vmlinux 0x3ecbcb7b ti_sci_inta_msi_domain_free_irqs -EXPORT_SYMBOL_GPL vmlinux 0x3ecbce4e find_iova -EXPORT_SYMBOL_GPL vmlinux 0x3ecf508d __netpoll_setup -EXPORT_SYMBOL_GPL vmlinux 0x3ee52e8b evm_inode_init_security -EXPORT_SYMBOL_GPL vmlinux 0x3ee75f1c xhci_get_ep_ctx -EXPORT_SYMBOL_GPL vmlinux 0x3ee9b98d pci_stop_and_remove_bus_device_locked -EXPORT_SYMBOL_GPL vmlinux 0x3ef02933 blk_rq_unprep_clone -EXPORT_SYMBOL_GPL vmlinux 0x3ef051c8 crypto_inc -EXPORT_SYMBOL_GPL vmlinux 0x3efd1889 dax_direct_access -EXPORT_SYMBOL_GPL vmlinux 0x3f01fad1 tty_buffer_unlock_exclusive -EXPORT_SYMBOL_GPL vmlinux 0x3f04b267 raw_hash_sk -EXPORT_SYMBOL_GPL vmlinux 0x3f21affc led_get_default_pattern -EXPORT_SYMBOL_GPL vmlinux 0x3f2aad44 phy_create_lookup -EXPORT_SYMBOL_GPL vmlinux 0x3f34fc0a ata_bmdma_dumb_qc_prep -EXPORT_SYMBOL_GPL vmlinux 0x3f3ad288 fsverity_cleanup_inode -EXPORT_SYMBOL_GPL vmlinux 0x3f491f49 reset_control_bulk_reset -EXPORT_SYMBOL_GPL vmlinux 0x3f4c5286 of_pci_get_max_link_speed -EXPORT_SYMBOL_GPL vmlinux 0x3f558515 input_ff_event -EXPORT_SYMBOL_GPL vmlinux 0x3f5a1074 dev_pm_genpd_set_next_wakeup -EXPORT_SYMBOL_GPL vmlinux 0x3f5e6fca sbitmap_show -EXPORT_SYMBOL_GPL vmlinux 0x3f5ec60a bpfilter_ops -EXPORT_SYMBOL_GPL vmlinux 0x3f74dfe1 regulator_enable_regmap -EXPORT_SYMBOL_GPL vmlinux 0x3f7c019d ata_std_sched_eh -EXPORT_SYMBOL_GPL vmlinux 0x3f7c1eea regmap_add_irq_chip -EXPORT_SYMBOL_GPL vmlinux 0x3f7ed949 pci_user_read_config_word -EXPORT_SYMBOL_GPL vmlinux 0x3f83f8d3 rcu_bind_current_to_nocb -EXPORT_SYMBOL_GPL vmlinux 0x3f84bcd7 dax_alive -EXPORT_SYMBOL_GPL vmlinux 0x3f8aa729 of_clk_del_provider -EXPORT_SYMBOL_GPL vmlinux 0x3f8ab72e devlink_fmsg_bool_put -EXPORT_SYMBOL_GPL vmlinux 0x3f8f4d62 led_update_brightness -EXPORT_SYMBOL_GPL vmlinux 0x3f9238a3 tty_set_termios -EXPORT_SYMBOL_GPL vmlinux 0x3fae6ab0 hv_vp_index -EXPORT_SYMBOL_GPL vmlinux 0x3fc83e80 component_master_del -EXPORT_SYMBOL_GPL vmlinux 0x3fe6c346 devlink_fmsg_binary_pair_put -EXPORT_SYMBOL_GPL vmlinux 0x3fea029c hisi_clk_register_gate -EXPORT_SYMBOL_GPL vmlinux 0x3fec3dc1 devm_usb_get_phy_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0x3ff588f7 inet6_csk_xmit -EXPORT_SYMBOL_GPL vmlinux 0x3ff752c7 ipv6_find_tlv -EXPORT_SYMBOL_GPL vmlinux 0x3ff82085 public_key_signature_free -EXPORT_SYMBOL_GPL vmlinux 0x3ffdacf3 timerqueue_iterate_next -EXPORT_SYMBOL_GPL vmlinux 0x4008f8a2 epl_report_error -EXPORT_SYMBOL_GPL vmlinux 0x400a024b acpi_scan_lock_release -EXPORT_SYMBOL_GPL vmlinux 0x4023f275 class_interface_register -EXPORT_SYMBOL_GPL vmlinux 0x40267068 usb_anchor_resume_wakeups -EXPORT_SYMBOL_GPL vmlinux 0x402cd766 tegra_bpmp_get -EXPORT_SYMBOL_GPL vmlinux 0x402fe7be devm_spi_register_controller -EXPORT_SYMBOL_GPL vmlinux 0x4031b667 lp8788_update_bits -EXPORT_SYMBOL_GPL vmlinux 0x40380da8 devm_kstrdup_const -EXPORT_SYMBOL_GPL vmlinux 0x403f9529 gpio_request_one -EXPORT_SYMBOL_GPL vmlinux 0x4044ca16 pkcs7_verify -EXPORT_SYMBOL_GPL vmlinux 0x40546f14 bpf_prog_get_type_dev -EXPORT_SYMBOL_GPL vmlinux 0x4057b59d pci_dev_lock -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 0x40836ac1 genphy_c45_an_config_aneg -EXPORT_SYMBOL_GPL vmlinux 0x40858a92 driver_find -EXPORT_SYMBOL_GPL vmlinux 0x4099f919 tun_ptr_free -EXPORT_SYMBOL_GPL vmlinux 0x409adf21 fat_sync_inode -EXPORT_SYMBOL_GPL vmlinux 0x409c4ca7 __traceiter_block_split -EXPORT_SYMBOL_GPL vmlinux 0x40a3a489 perf_event_addr_filters_sync -EXPORT_SYMBOL_GPL vmlinux 0x40d349b6 sbitmap_queue_resize -EXPORT_SYMBOL_GPL vmlinux 0x40e0ba52 ftrace_set_notrace -EXPORT_SYMBOL_GPL vmlinux 0x40f0683e reset_control_put -EXPORT_SYMBOL_GPL vmlinux 0x40f22d97 devfreq_event_get_edev_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0x40f52a8a unregister_trace_event -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 0x411265e5 dw_pcie_ep_linkup -EXPORT_SYMBOL_GPL vmlinux 0x4112d7f7 devm_extcon_dev_unregister -EXPORT_SYMBOL_GPL vmlinux 0x411e133a devfreq_get_devfreq_by_node -EXPORT_SYMBOL_GPL vmlinux 0x41237f71 cpu_have_feature -EXPORT_SYMBOL_GPL vmlinux 0x412b747a fscrypt_mergeable_bio -EXPORT_SYMBOL_GPL vmlinux 0x412bc681 ring_buffer_empty_cpu -EXPORT_SYMBOL_GPL vmlinux 0x41393fd2 tcp_ca_get_key_by_name -EXPORT_SYMBOL_GPL vmlinux 0x4145856e pci_iomap_wc -EXPORT_SYMBOL_GPL vmlinux 0x414d119a videomode_from_timings -EXPORT_SYMBOL_GPL vmlinux 0x4156e01e mbox_chan_received_data -EXPORT_SYMBOL_GPL vmlinux 0x415b823c usb_match_one_id -EXPORT_SYMBOL_GPL vmlinux 0x415bbabf sysfs_chmod_file -EXPORT_SYMBOL_GPL vmlinux 0x416b109b set_capacity_and_notify -EXPORT_SYMBOL_GPL vmlinux 0x417a0b2c acpi_storage_d3 -EXPORT_SYMBOL_GPL vmlinux 0x41814cb8 dirty_writeback_interval -EXPORT_SYMBOL_GPL vmlinux 0x41857637 irq_set_chained_handler_and_data -EXPORT_SYMBOL_GPL vmlinux 0x419d7c83 zynqmp_pm_pinctrl_set_config -EXPORT_SYMBOL_GPL vmlinux 0x419e7efd sfp_module_stop -EXPORT_SYMBOL_GPL vmlinux 0x41adec7b ata_sff_error_handler -EXPORT_SYMBOL_GPL vmlinux 0x41af23d2 device_property_present -EXPORT_SYMBOL_GPL vmlinux 0x41b9a6e6 bsg_unregister_queue -EXPORT_SYMBOL_GPL vmlinux 0x41bce49a ghes_register_vendor_record_notifier -EXPORT_SYMBOL_GPL vmlinux 0x41c7a74f gpiod_get_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0x41c93368 xfrm_output -EXPORT_SYMBOL_GPL vmlinux 0x41d5599b bgmac_alloc -EXPORT_SYMBOL_GPL vmlinux 0x41d6caec psil_set_new_ep_config -EXPORT_SYMBOL_GPL vmlinux 0x41d79019 clk_gate_ops -EXPORT_SYMBOL_GPL vmlinux 0x41da30c8 devlink_dpipe_table_resource_set -EXPORT_SYMBOL_GPL vmlinux 0x41dc7e8b irq_chip_unmask_parent -EXPORT_SYMBOL_GPL vmlinux 0x41e0f993 __rtnl_link_register -EXPORT_SYMBOL_GPL vmlinux 0x41ed3cec eventfd_ctx_remove_wait_queue -EXPORT_SYMBOL_GPL vmlinux 0x42041512 i2c_get_dma_safe_msg_buf -EXPORT_SYMBOL_GPL vmlinux 0x4209e1a3 devlink_rate_leaf_create -EXPORT_SYMBOL_GPL vmlinux 0x420f3d01 nvmem_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x4214212f tty_port_register_device_attr -EXPORT_SYMBOL_GPL vmlinux 0x421bb0a8 pinctrl_utils_add_map_configs -EXPORT_SYMBOL_GPL vmlinux 0x421d6159 pci_epc_start -EXPORT_SYMBOL_GPL vmlinux 0x42217367 sock_diag_save_cookie -EXPORT_SYMBOL_GPL vmlinux 0x42271a8a nl_table -EXPORT_SYMBOL_GPL vmlinux 0x423c55b7 rcuwait_wake_up -EXPORT_SYMBOL_GPL vmlinux 0x424a67e0 phy_power_off -EXPORT_SYMBOL_GPL vmlinux 0x424e3e0d acpi_dev_get_memory_resources -EXPORT_SYMBOL_GPL vmlinux 0x42536dd4 regulator_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x425d94fa pinctrl_find_gpio_range_from_pin_nolock -EXPORT_SYMBOL_GPL vmlinux 0x4261d8b6 iomap_zero_range -EXPORT_SYMBOL_GPL vmlinux 0x42635d55 pm_suspend_global_flags -EXPORT_SYMBOL_GPL vmlinux 0x426452a3 acpi_evaluation_failure_warn -EXPORT_SYMBOL_GPL vmlinux 0x4267dcd0 rockchip_pcie_parse_dt -EXPORT_SYMBOL_GPL vmlinux 0x42825ce2 rcu_scheduler_active -EXPORT_SYMBOL_GPL vmlinux 0x428a57c3 nvmem_cell_read_variable_le_u64 -EXPORT_SYMBOL_GPL vmlinux 0x429bc9e6 rio_request_outb_mbox -EXPORT_SYMBOL_GPL vmlinux 0x42aae002 sysfs_remove_files -EXPORT_SYMBOL_GPL vmlinux 0x42c2114c to_nvdimm_bus_dev -EXPORT_SYMBOL_GPL vmlinux 0x42d595b9 extcon_register_notifier_all -EXPORT_SYMBOL_GPL vmlinux 0x42d82b6a devlink_trap_groups_unregister -EXPORT_SYMBOL_GPL vmlinux 0x42de4a10 ata_scsi_dma_need_drain -EXPORT_SYMBOL_GPL vmlinux 0x42e9d0da ring_buffer_unlock_commit -EXPORT_SYMBOL_GPL vmlinux 0x42f728aa mctrl_gpio_get_outputs -EXPORT_SYMBOL_GPL vmlinux 0x42f826f0 pci_epc_init_notify -EXPORT_SYMBOL_GPL vmlinux 0x42fd7951 pci_epc_raise_irq -EXPORT_SYMBOL_GPL vmlinux 0x43012c29 usb_block_urb -EXPORT_SYMBOL_GPL vmlinux 0x430d88ec __traceiter_arm_event -EXPORT_SYMBOL_GPL vmlinux 0x432776c5 bpf_trace_run11 -EXPORT_SYMBOL_GPL vmlinux 0x43297c6a blk_rq_err_bytes -EXPORT_SYMBOL_GPL vmlinux 0x43368f9b trace_event_raw_init -EXPORT_SYMBOL_GPL vmlinux 0x43372b5d device_link_del -EXPORT_SYMBOL_GPL vmlinux 0x4345eedb phy_driver_is_genphy -EXPORT_SYMBOL_GPL vmlinux 0x434ecea3 __trace_note_message -EXPORT_SYMBOL_GPL vmlinux 0x4360dd19 iommu_device_register -EXPORT_SYMBOL_GPL vmlinux 0x43679ccb ncsi_stop_dev -EXPORT_SYMBOL_GPL vmlinux 0x436ac919 i2c_new_smbus_alert_device -EXPORT_SYMBOL_GPL vmlinux 0x436d817f mpi_clear_bit -EXPORT_SYMBOL_GPL vmlinux 0x4372b0ba __rio_local_write_config_32 -EXPORT_SYMBOL_GPL vmlinux 0x437eb1df ipv6_mod_enabled -EXPORT_SYMBOL_GPL vmlinux 0x437ed0c8 icc_link_create -EXPORT_SYMBOL_GPL vmlinux 0x437fd583 regmap_field_read -EXPORT_SYMBOL_GPL vmlinux 0x43869ba6 blk_mq_sched_try_merge -EXPORT_SYMBOL_GPL vmlinux 0x438d4550 dev_pm_qos_add_ancestor_request -EXPORT_SYMBOL_GPL vmlinux 0x438d8df2 iova_cache_get -EXPORT_SYMBOL_GPL vmlinux 0x439a40fa serial8250_release_dma -EXPORT_SYMBOL_GPL vmlinux 0x43a1a743 pm_runtime_enable -EXPORT_SYMBOL_GPL vmlinux 0x43a56318 posix_acl_access_xattr_handler -EXPORT_SYMBOL_GPL vmlinux 0x43a665c8 inode_sb_list_add -EXPORT_SYMBOL_GPL vmlinux 0x43aa164c blk_trace_remove -EXPORT_SYMBOL_GPL vmlinux 0x43aa319e lease_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x43adf66d nf_queue -EXPORT_SYMBOL_GPL vmlinux 0x43b89701 locks_release_private -EXPORT_SYMBOL_GPL vmlinux 0x43c49e16 crypto_aead_setkey -EXPORT_SYMBOL_GPL vmlinux 0x43c88c4d wb_writeout_inc -EXPORT_SYMBOL_GPL vmlinux 0x43cb5ed3 __devm_pci_epc_create -EXPORT_SYMBOL_GPL vmlinux 0x43d0cf8a fat_truncate_time -EXPORT_SYMBOL_GPL vmlinux 0x43d49812 fsl_mc_bus_dpcon_type -EXPORT_SYMBOL_GPL vmlinux 0x43d66925 sata_port_ops -EXPORT_SYMBOL_GPL vmlinux 0x43d83287 rio_unregister_driver -EXPORT_SYMBOL_GPL vmlinux 0x43e19764 bus_unregister -EXPORT_SYMBOL_GPL vmlinux 0x43f56e82 ata_xfer_mode2shift -EXPORT_SYMBOL_GPL vmlinux 0x43f72473 mmc_app_cmd -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 0x440541ec regulator_is_equal -EXPORT_SYMBOL_GPL vmlinux 0x441195ab hwmon_device_register_with_info -EXPORT_SYMBOL_GPL vmlinux 0x442deaa9 poll_state_synchronize_rcu -EXPORT_SYMBOL_GPL vmlinux 0x44326d5a device_add_groups -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 0x445a09c0 nvmem_device_cell_write -EXPORT_SYMBOL_GPL vmlinux 0x445a6cb7 rio_register_scan -EXPORT_SYMBOL_GPL vmlinux 0x445ba9c9 usb_altnum_to_altsetting -EXPORT_SYMBOL_GPL vmlinux 0x447ba0e6 bdi_dev_name -EXPORT_SYMBOL_GPL vmlinux 0x4484a5a4 wait_for_device_probe -EXPORT_SYMBOL_GPL vmlinux 0x44868681 firmware_request_platform -EXPORT_SYMBOL_GPL vmlinux 0x4487b8e9 n_tty_inherit_ops -EXPORT_SYMBOL_GPL vmlinux 0x448ceeb2 loop_backing_file -EXPORT_SYMBOL_GPL vmlinux 0x448d1d2f regulator_desc_list_voltage_linear_range -EXPORT_SYMBOL_GPL vmlinux 0x44958377 xfrm_dev_state_add -EXPORT_SYMBOL_GPL vmlinux 0x449df581 pci_user_write_config_byte -EXPORT_SYMBOL_GPL vmlinux 0x44a1a425 pm_clk_destroy -EXPORT_SYMBOL_GPL vmlinux 0x44a793ab HYPERVISOR_grant_table_op -EXPORT_SYMBOL_GPL vmlinux 0x44b8d486 regulator_set_voltage_sel_regmap -EXPORT_SYMBOL_GPL vmlinux 0x44bae227 bit_wait_timeout -EXPORT_SYMBOL_GPL vmlinux 0x44bf78ad of_clk_get_from_provider -EXPORT_SYMBOL_GPL vmlinux 0x44c04bc2 bio_alloc_kiocb -EXPORT_SYMBOL_GPL vmlinux 0x44c29bb3 vfs_listxattr -EXPORT_SYMBOL_GPL vmlinux 0x44cc715d bpfilter_umh_cleanup -EXPORT_SYMBOL_GPL vmlinux 0x44cf8cf0 blk_zone_cond_str -EXPORT_SYMBOL_GPL vmlinux 0x44dfbb88 ahci_check_ready -EXPORT_SYMBOL_GPL vmlinux 0x44e1e9aa balloon_stats -EXPORT_SYMBOL_GPL vmlinux 0x44efcce7 cpufreq_freq_transition_end -EXPORT_SYMBOL_GPL vmlinux 0x44fcd9ce crypto_unregister_rng -EXPORT_SYMBOL_GPL vmlinux 0x44fffc4b tcp_bpf_sendmsg_redir -EXPORT_SYMBOL_GPL vmlinux 0x45074407 mptcp_pm_get_local_addr_max -EXPORT_SYMBOL_GPL vmlinux 0x4507f4a8 cpuhp_tasks_frozen -EXPORT_SYMBOL_GPL vmlinux 0x450bb30e usb_disable_ltm -EXPORT_SYMBOL_GPL vmlinux 0x450f0c54 sk_setup_caps -EXPORT_SYMBOL_GPL vmlinux 0x450f8178 event_triggers_call -EXPORT_SYMBOL_GPL vmlinux 0x450f9272 sdio_f0_readb -EXPORT_SYMBOL_GPL vmlinux 0x451efbda regmap_check_range_table -EXPORT_SYMBOL_GPL vmlinux 0x45224173 __traceiter_block_unplug -EXPORT_SYMBOL_GPL vmlinux 0x4527c70c start_poll_synchronize_srcu -EXPORT_SYMBOL_GPL vmlinux 0x4528aa75 nvdimm_blk_region_create -EXPORT_SYMBOL_GPL vmlinux 0x452a6b86 fuse_dev_install -EXPORT_SYMBOL_GPL vmlinux 0x4531624f usb_decode_ctrl -EXPORT_SYMBOL_GPL vmlinux 0x4531ab62 copy_from_kernel_nofault -EXPORT_SYMBOL_GPL vmlinux 0x45558f56 clk_unregister_fixed_factor -EXPORT_SYMBOL_GPL vmlinux 0x4561f990 qcom_smem_state_unregister -EXPORT_SYMBOL_GPL vmlinux 0x4565d4e1 crypto_unregister_skciphers -EXPORT_SYMBOL_GPL vmlinux 0x4569865a trace_event_buffer_lock_reserve -EXPORT_SYMBOL_GPL vmlinux 0x456ab951 mmc_send_status -EXPORT_SYMBOL_GPL vmlinux 0x457594fa crypto_alg_list -EXPORT_SYMBOL_GPL vmlinux 0x457ab8c7 rtnl_put_cacheinfo -EXPORT_SYMBOL_GPL vmlinux 0x4586382d serdev_device_set_baudrate -EXPORT_SYMBOL_GPL vmlinux 0x459e6151 mm_unaccount_pinned_pages -EXPORT_SYMBOL_GPL vmlinux 0x45aff28c irq_domain_translate_onecell -EXPORT_SYMBOL_GPL vmlinux 0x45b48600 tpm_pm_resume -EXPORT_SYMBOL_GPL vmlinux 0x45c21a89 devm_memremap_pages -EXPORT_SYMBOL_GPL vmlinux 0x45d0d2cd fwnode_remove_software_node -EXPORT_SYMBOL_GPL vmlinux 0x45dd7d49 regulator_unregister_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0x45e986c0 device_driver_attach -EXPORT_SYMBOL_GPL vmlinux 0x45ef94be of_reserved_mem_lookup -EXPORT_SYMBOL_GPL vmlinux 0x45f02f74 ata_pci_shutdown_one -EXPORT_SYMBOL_GPL vmlinux 0x45fdfb96 of_clk_set_defaults -EXPORT_SYMBOL_GPL vmlinux 0x46013233 net_dec_ingress_queue -EXPORT_SYMBOL_GPL vmlinux 0x46030074 __hrtimer_get_remaining -EXPORT_SYMBOL_GPL vmlinux 0x460d4132 devlink_alloc_ns -EXPORT_SYMBOL_GPL vmlinux 0x46132a63 genphy_c45_pma_setup_forced -EXPORT_SYMBOL_GPL vmlinux 0x4615d9d8 usb_find_interface -EXPORT_SYMBOL_GPL vmlinux 0x462205b3 i2c_acpi_find_adapter_by_handle -EXPORT_SYMBOL_GPL vmlinux 0x46269814 __tracepoint_neigh_event_send_dead -EXPORT_SYMBOL_GPL vmlinux 0x46366f64 power_supply_set_property -EXPORT_SYMBOL_GPL vmlinux 0x464f4f96 fuse_conn_get -EXPORT_SYMBOL_GPL vmlinux 0x465f8b78 dev_pm_opp_add -EXPORT_SYMBOL_GPL vmlinux 0x46723eea platform_find_device_by_driver -EXPORT_SYMBOL_GPL vmlinux 0x4688d7ec pvclock_gtod_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x46904e9a usb_enable_lpm -EXPORT_SYMBOL_GPL vmlinux 0x46a4b118 hrtimer_cancel -EXPORT_SYMBOL_GPL vmlinux 0x46b6e250 crypto_unregister_alg -EXPORT_SYMBOL_GPL vmlinux 0x46bd9c50 scmi_protocol_register -EXPORT_SYMBOL_GPL vmlinux 0x46c5be22 clk_multiplier_ops -EXPORT_SYMBOL_GPL vmlinux 0x46c6ac66 xdp_rxq_info_unreg_mem_model -EXPORT_SYMBOL_GPL vmlinux 0x46cf244b dax_writeback_mapping_range -EXPORT_SYMBOL_GPL vmlinux 0x46cffde6 kthread_use_mm -EXPORT_SYMBOL_GPL vmlinux 0x46e0589c xenbus_match -EXPORT_SYMBOL_GPL vmlinux 0x46f42be0 devlink_fmsg_u8_put -EXPORT_SYMBOL_GPL vmlinux 0x46f878a4 max8997_update_reg -EXPORT_SYMBOL_GPL vmlinux 0x47229b5c gpio_request -EXPORT_SYMBOL_GPL vmlinux 0x47291a4c __dev_forward_skb -EXPORT_SYMBOL_GPL vmlinux 0x472ef922 genphy_c45_read_pma -EXPORT_SYMBOL_GPL vmlinux 0x4738aec8 gpiochip_reqres_irq -EXPORT_SYMBOL_GPL vmlinux 0x475e6649 regcache_drop_region -EXPORT_SYMBOL_GPL vmlinux 0x4761f17c register_netevent_notifier -EXPORT_SYMBOL_GPL vmlinux 0x4778b1ab __hwspin_unlock -EXPORT_SYMBOL_GPL vmlinux 0x47817924 platform_bus -EXPORT_SYMBOL_GPL vmlinux 0x47848bd3 iopf_queue_add_device -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 0x4794247a trace_define_field -EXPORT_SYMBOL_GPL vmlinux 0x479f7d4b clk_bulk_disable -EXPORT_SYMBOL_GPL vmlinux 0x479ffb79 rio_dma_prep_slave_sg -EXPORT_SYMBOL_GPL vmlinux 0x47a86257 gen_pool_get -EXPORT_SYMBOL_GPL vmlinux 0x47aad3b9 have_governor_per_policy -EXPORT_SYMBOL_GPL vmlinux 0x47b46b97 wm8350_clear_bits -EXPORT_SYMBOL_GPL vmlinux 0x47c19260 iptunnel_handle_offloads -EXPORT_SYMBOL_GPL vmlinux 0x47c4918b dev_pm_domain_detach -EXPORT_SYMBOL_GPL vmlinux 0x47d0eea2 acpi_lpat_temp_to_raw -EXPORT_SYMBOL_GPL vmlinux 0x47de0dc7 clk_unregister_mux -EXPORT_SYMBOL_GPL vmlinux 0x47e41c2e clk_gate_is_enabled -EXPORT_SYMBOL_GPL vmlinux 0x47e82cad pci_ats_supported -EXPORT_SYMBOL_GPL vmlinux 0x48003220 acpi_register_gsi -EXPORT_SYMBOL_GPL vmlinux 0x480305ca kmsg_dump_rewind -EXPORT_SYMBOL_GPL vmlinux 0x4815aa79 dev_pm_opp_cpumask_remove_table -EXPORT_SYMBOL_GPL vmlinux 0x481c9b43 tty_mode_ioctl -EXPORT_SYMBOL_GPL vmlinux 0x481f9b7d mpi_mulm -EXPORT_SYMBOL_GPL vmlinux 0x48286d6b edac_device_alloc_ctl_info -EXPORT_SYMBOL_GPL vmlinux 0x4828e77b acpi_scan_lock_acquire -EXPORT_SYMBOL_GPL vmlinux 0x482c280e pci_hp_add -EXPORT_SYMBOL_GPL vmlinux 0x4843a748 qman_portals_probed -EXPORT_SYMBOL_GPL vmlinux 0x4846386b irq_chip_disable_parent -EXPORT_SYMBOL_GPL vmlinux 0x48477be9 anon_transport_class_unregister -EXPORT_SYMBOL_GPL vmlinux 0x48509c66 fwnode_count_parents -EXPORT_SYMBOL_GPL vmlinux 0x48593a00 bpf_prog_alloc -EXPORT_SYMBOL_GPL vmlinux 0x4860e068 pci_bridge_secondary_bus_reset -EXPORT_SYMBOL_GPL vmlinux 0x486dedc3 ghes_unregister_vendor_record_notifier -EXPORT_SYMBOL_GPL vmlinux 0x4871e35c devm_hwspin_lock_request_specific -EXPORT_SYMBOL_GPL vmlinux 0x48789366 sdio_register_driver -EXPORT_SYMBOL_GPL vmlinux 0x48953bab virtqueue_disable_cb -EXPORT_SYMBOL_GPL vmlinux 0x489773a6 get_task_mm -EXPORT_SYMBOL_GPL vmlinux 0x48a3a923 pkcs7_get_content_data -EXPORT_SYMBOL_GPL vmlinux 0x48a3d20b mctrl_gpio_get -EXPORT_SYMBOL_GPL vmlinux 0x48a432a1 linear_hugepage_index -EXPORT_SYMBOL_GPL vmlinux 0x48a82bd2 show_class_attr_string -EXPORT_SYMBOL_GPL vmlinux 0x48b02c60 set_selection_kernel -EXPORT_SYMBOL_GPL vmlinux 0x48b6b3de uart_try_toggle_sysrq -EXPORT_SYMBOL_GPL vmlinux 0x48b9042b pm_generic_resume -EXPORT_SYMBOL_GPL vmlinux 0x48c32847 __SCK__tp_func_sched_util_est_se_tp -EXPORT_SYMBOL_GPL vmlinux 0x48cc5c99 ata_sff_wait_ready -EXPORT_SYMBOL_GPL vmlinux 0x48d4110f bus_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x48ebfdf9 usb_enable_intel_xhci_ports -EXPORT_SYMBOL_GPL vmlinux 0x48f49400 apei_hest_parse -EXPORT_SYMBOL_GPL vmlinux 0x48fa6b65 iommu_unmap_fast -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 0x4943282c ata_sas_sync_probe -EXPORT_SYMBOL_GPL vmlinux 0x495003a1 acpi_dev_get_first_consumer_dev -EXPORT_SYMBOL_GPL vmlinux 0x49505190 scsi_flush_work -EXPORT_SYMBOL_GPL vmlinux 0x49608959 migrate_disable -EXPORT_SYMBOL_GPL vmlinux 0x4968357b usb_debug_root -EXPORT_SYMBOL_GPL vmlinux 0x498922df netdev_rx_handler_unregister -EXPORT_SYMBOL_GPL vmlinux 0x499043d3 crypto_init_queue -EXPORT_SYMBOL_GPL vmlinux 0x4996e143 usb_reset_endpoint -EXPORT_SYMBOL_GPL vmlinux 0x49a7333f pci_generic_config_write32 -EXPORT_SYMBOL_GPL vmlinux 0x49a8a248 fuse_dev_release -EXPORT_SYMBOL_GPL vmlinux 0x49a94119 bgmac_enet_probe -EXPORT_SYMBOL_GPL vmlinux 0x49a96ff9 irq_domain_free_fwnode -EXPORT_SYMBOL_GPL vmlinux 0x49b0c344 tracing_snapshot_cond_disable -EXPORT_SYMBOL_GPL vmlinux 0x49bf1198 platform_get_irq_optional -EXPORT_SYMBOL_GPL vmlinux 0x49c75c5e ahci_print_info -EXPORT_SYMBOL_GPL vmlinux 0x49cd25ed alloc_workqueue -EXPORT_SYMBOL_GPL vmlinux 0x49e96999 cond_synchronize_rcu -EXPORT_SYMBOL_GPL vmlinux 0x49f0c40c securityfs_create_dir -EXPORT_SYMBOL_GPL vmlinux 0x49fbe62c vfs_test_lock -EXPORT_SYMBOL_GPL vmlinux 0x4a069663 devm_rpi_firmware_get -EXPORT_SYMBOL_GPL vmlinux 0x4a093d48 ata_link_offline -EXPORT_SYMBOL_GPL vmlinux 0x4a0b041a md_stop -EXPORT_SYMBOL_GPL vmlinux 0x4a17ed66 sysrq_mask -EXPORT_SYMBOL_GPL vmlinux 0x4a305cb7 tcp_is_ulp_esp -EXPORT_SYMBOL_GPL vmlinux 0x4a3cc51a irq_create_mapping_affinity -EXPORT_SYMBOL_GPL vmlinux 0x4a3e8a52 kset_find_obj -EXPORT_SYMBOL_GPL vmlinux 0x4a420d09 acpi_bus_detach_private_data -EXPORT_SYMBOL_GPL vmlinux 0x4a462b53 metadata_dst_free_percpu -EXPORT_SYMBOL_GPL vmlinux 0x4a5814d1 nvdimm_has_flush -EXPORT_SYMBOL_GPL vmlinux 0x4a5e2b6b dw_pcie_own_conf_map_bus -EXPORT_SYMBOL_GPL vmlinux 0x4a682570 usb_hcd_platform_shutdown -EXPORT_SYMBOL_GPL vmlinux 0x4a70db38 synth_event_gen_cmd_array_start -EXPORT_SYMBOL_GPL vmlinux 0x4ab9c923 crypto_unregister_acomps -EXPORT_SYMBOL_GPL vmlinux 0x4abc3552 attribute_container_register -EXPORT_SYMBOL_GPL vmlinux 0x4ac16ab1 ata_bmdma_error_handler -EXPORT_SYMBOL_GPL vmlinux 0x4ac593a6 alloc_empty_file -EXPORT_SYMBOL_GPL vmlinux 0x4ac7e55d k3_udma_glue_rx_flow_init -EXPORT_SYMBOL_GPL vmlinux 0x4adbd0bf da9052_disable_irq_nosync -EXPORT_SYMBOL_GPL vmlinux 0x4ae816b3 pci_disable_pcie_error_reporting -EXPORT_SYMBOL_GPL vmlinux 0x4aefa53f pm_generic_freeze_late -EXPORT_SYMBOL_GPL vmlinux 0x4b0370f2 pm_generic_runtime_suspend -EXPORT_SYMBOL_GPL vmlinux 0x4b0c016b devm_clk_bulk_get_all -EXPORT_SYMBOL_GPL vmlinux 0x4b1e432a __traceiter_detach_device_from_domain -EXPORT_SYMBOL_GPL vmlinux 0x4b2153a9 syscon_regmap_lookup_by_phandle_args -EXPORT_SYMBOL_GPL vmlinux 0x4b2436d8 fuse_mount_remove -EXPORT_SYMBOL_GPL vmlinux 0x4b27bedd nvmem_cell_read_u64 -EXPORT_SYMBOL_GPL vmlinux 0x4b2f9e1e rio_mport_read_config_16 -EXPORT_SYMBOL_GPL vmlinux 0x4b3328a0 device_match_devt -EXPORT_SYMBOL_GPL vmlinux 0x4b429bc4 skb_pull_rcsum -EXPORT_SYMBOL_GPL vmlinux 0x4b51f74c ata_xfer_mode2mask -EXPORT_SYMBOL_GPL vmlinux 0x4b5acf74 rhashtable_init -EXPORT_SYMBOL_GPL vmlinux 0x4b69b798 serdev_controller_alloc -EXPORT_SYMBOL_GPL vmlinux 0x4b71a4c0 rockchip_clk_of_add_provider -EXPORT_SYMBOL_GPL vmlinux 0x4b7352af fsl_mc_driver_unregister -EXPORT_SYMBOL_GPL vmlinux 0x4b7e5bde ata_scsi_slave_destroy -EXPORT_SYMBOL_GPL vmlinux 0x4b83b5fa ethnl_cable_test_pulse -EXPORT_SYMBOL_GPL vmlinux 0x4b85d215 pci_disable_ats -EXPORT_SYMBOL_GPL vmlinux 0x4b8d47b0 ata_eh_freeze_port -EXPORT_SYMBOL_GPL vmlinux 0x4b931968 xen_features -EXPORT_SYMBOL_GPL vmlinux 0x4b934666 ip6_datagram_send_ctl -EXPORT_SYMBOL_GPL vmlinux 0x4ba6366e thermal_add_hwmon_sysfs -EXPORT_SYMBOL_GPL vmlinux 0x4bb212ea max8997_read_reg -EXPORT_SYMBOL_GPL vmlinux 0x4bb2a06f tcp_bpf_update_proto -EXPORT_SYMBOL_GPL vmlinux 0x4bbae2d0 devlink_port_params_unregister -EXPORT_SYMBOL_GPL vmlinux 0x4bbbd4cd regulator_list_voltage_table -EXPORT_SYMBOL_GPL vmlinux 0x4bc8727f xen_balloon_init -EXPORT_SYMBOL_GPL vmlinux 0x4bd6f08b misc_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0x4bdb702e iopf_queue_flush_dev -EXPORT_SYMBOL_GPL vmlinux 0x4bdee782 bpf_trace_run2 -EXPORT_SYMBOL_GPL vmlinux 0x4be181b3 netdev_is_rx_handler_busy -EXPORT_SYMBOL_GPL vmlinux 0x4be4bd66 ata_host_put -EXPORT_SYMBOL_GPL vmlinux 0x4be5188f pci_msi_mask_irq -EXPORT_SYMBOL_GPL vmlinux 0x4bf082cf kgdb_unregister_io_module -EXPORT_SYMBOL_GPL vmlinux 0x4c06d2c9 __traceiter_block_bio_remap -EXPORT_SYMBOL_GPL vmlinux 0x4c0b8732 devm_clk_register -EXPORT_SYMBOL_GPL vmlinux 0x4c15cb68 blkdev_ioctl -EXPORT_SYMBOL_GPL vmlinux 0x4c1a8680 acpi_dev_remove_driver_gpios -EXPORT_SYMBOL_GPL vmlinux 0x4c1e1d0c netlink_has_listeners -EXPORT_SYMBOL_GPL vmlinux 0x4c1f1104 devm_pm_opp_register_set_opp_helper -EXPORT_SYMBOL_GPL vmlinux 0x4c2a4a10 is_skb_forwardable -EXPORT_SYMBOL_GPL vmlinux 0x4c2c0ea7 evtchn_make_refcounted -EXPORT_SYMBOL_GPL vmlinux 0x4c3303e2 pin_get_name -EXPORT_SYMBOL_GPL vmlinux 0x4c339253 __regmap_init_spi -EXPORT_SYMBOL_GPL vmlinux 0x4c3b6c13 debugfs_print_regs32 -EXPORT_SYMBOL_GPL vmlinux 0x4c3d9d8f regulator_set_ramp_delay_regmap -EXPORT_SYMBOL_GPL vmlinux 0x4c4acfba stmpe_reg_read -EXPORT_SYMBOL_GPL vmlinux 0x4c50edff regulator_get_linear_step -EXPORT_SYMBOL_GPL vmlinux 0x4c549b36 __traceiter_xhci_dbg_quirks -EXPORT_SYMBOL_GPL vmlinux 0x4c58404b genpd_dev_pm_attach -EXPORT_SYMBOL_GPL vmlinux 0x4c5c4663 strp_done -EXPORT_SYMBOL_GPL vmlinux 0x4c605214 syscon_regmap_lookup_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0x4c7f27b8 pm_clk_add -EXPORT_SYMBOL_GPL vmlinux 0x4c8adfe1 hv_root_partition -EXPORT_SYMBOL_GPL vmlinux 0x4c8c36a3 posix_clock_register -EXPORT_SYMBOL_GPL vmlinux 0x4ca06e27 blk_mq_freeze_queue -EXPORT_SYMBOL_GPL vmlinux 0x4ca619eb virtio_device_restore -EXPORT_SYMBOL_GPL vmlinux 0x4ca63524 ata_sff_softreset -EXPORT_SYMBOL_GPL vmlinux 0x4cb27100 ktime_get_snapshot -EXPORT_SYMBOL_GPL vmlinux 0x4cb81fda __SCK__tp_func_wbc_writepage -EXPORT_SYMBOL_GPL vmlinux 0x4cb8b17f __srcu_read_lock -EXPORT_SYMBOL_GPL vmlinux 0x4cc12e08 regmap_update_bits_base -EXPORT_SYMBOL_GPL vmlinux 0x4cc92774 dprc_get_obj_count -EXPORT_SYMBOL_GPL vmlinux 0x4ceb75db ata_bmdma_post_internal_cmd -EXPORT_SYMBOL_GPL vmlinux 0x4d0015e2 cpu_hotplug_disable -EXPORT_SYMBOL_GPL vmlinux 0x4d00cd73 debugfs_create_atomic_t -EXPORT_SYMBOL_GPL vmlinux 0x4d0b752f alloc_iova -EXPORT_SYMBOL_GPL vmlinux 0x4d15a6bb regulator_bulk_enable -EXPORT_SYMBOL_GPL vmlinux 0x4d202b8c __xas_prev -EXPORT_SYMBOL_GPL vmlinux 0x4d2a4b65 rtnl_af_register -EXPORT_SYMBOL_GPL vmlinux 0x4d3a0696 __SCK__tp_func_rpm_idle -EXPORT_SYMBOL_GPL vmlinux 0x4d3b0972 rio_route_get_entry -EXPORT_SYMBOL_GPL vmlinux 0x4d3fd262 spi_replace_transfers -EXPORT_SYMBOL_GPL vmlinux 0x4d4d7b79 blk_mq_map_queues -EXPORT_SYMBOL_GPL vmlinux 0x4d65a980 devlink_dpipe_table_unregister -EXPORT_SYMBOL_GPL vmlinux 0x4d6d0bbc iommu_group_ref_get -EXPORT_SYMBOL_GPL vmlinux 0x4d6e792a mmu_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0x4d7272e4 migrate_enable -EXPORT_SYMBOL_GPL vmlinux 0x4d83c710 k3_udma_glue_tdown_tx_chn -EXPORT_SYMBOL_GPL vmlinux 0x4d8984a1 dev_get_regmap -EXPORT_SYMBOL_GPL vmlinux 0x4d8a96ab xas_set_mark -EXPORT_SYMBOL_GPL vmlinux 0x4d90e784 fs_kobj -EXPORT_SYMBOL_GPL vmlinux 0x4d95d6d1 memcpy_flushcache -EXPORT_SYMBOL_GPL vmlinux 0x4d968337 devlink_region_snapshot_id_put -EXPORT_SYMBOL_GPL vmlinux 0x4d9923e5 bpf_offload_dev_netdev_register -EXPORT_SYMBOL_GPL vmlinux 0x4da1f4a7 list_lru_del -EXPORT_SYMBOL_GPL vmlinux 0x4da4ef67 sched_trace_cfs_rq_path -EXPORT_SYMBOL_GPL vmlinux 0x4da715a9 ip6_append_data -EXPORT_SYMBOL_GPL vmlinux 0x4dae16e4 i2c_put_dma_safe_msg_buf -EXPORT_SYMBOL_GPL vmlinux 0x4db028db ata_sff_hsm_move -EXPORT_SYMBOL_GPL vmlinux 0x4dca6978 xenbus_grant_ring -EXPORT_SYMBOL_GPL vmlinux 0x4dd6fe78 i2c_unregister_device -EXPORT_SYMBOL_GPL vmlinux 0x4dd7f012 dev_pm_qos_update_user_latency_tolerance -EXPORT_SYMBOL_GPL vmlinux 0x4dd9d14d cn_netlink_send_mult -EXPORT_SYMBOL_GPL vmlinux 0x4de17ab3 usb_state_string -EXPORT_SYMBOL_GPL vmlinux 0x4e0eec33 generic_fh_to_parent -EXPORT_SYMBOL_GPL vmlinux 0x4e17c613 ata_sff_queue_delayed_work -EXPORT_SYMBOL_GPL vmlinux 0x4e192675 crypto_lookup_template -EXPORT_SYMBOL_GPL vmlinux 0x4e19f7d5 regulator_get_error_flags -EXPORT_SYMBOL_GPL vmlinux 0x4e378f01 dummy_con -EXPORT_SYMBOL_GPL vmlinux 0x4e39f3b1 mbox_client_txdone -EXPORT_SYMBOL_GPL vmlinux 0x4e445aa6 of_pci_range_parser_one -EXPORT_SYMBOL_GPL vmlinux 0x4e4c37e2 freq_qos_remove_notifier -EXPORT_SYMBOL_GPL vmlinux 0x4e5d55b5 bpf_map_inc_with_uref -EXPORT_SYMBOL_GPL vmlinux 0x4e74878e __tracepoint_devlink_hwerr -EXPORT_SYMBOL_GPL vmlinux 0x4ea1c648 sched_trace_rq_cpu_capacity -EXPORT_SYMBOL_GPL vmlinux 0x4ea4e34b sched_trace_rq_nr_running -EXPORT_SYMBOL_GPL vmlinux 0x4eac5fc1 cpu_mitigations_auto_nosmt -EXPORT_SYMBOL_GPL vmlinux 0x4eb39d4e __tracepoint_tcp_bad_csum -EXPORT_SYMBOL_GPL vmlinux 0x4ebf7c65 clk_fractional_divider_ops -EXPORT_SYMBOL_GPL vmlinux 0x4ece3615 blocking_notifier_chain_unregister -EXPORT_SYMBOL_GPL vmlinux 0x4ed4c9ba paste_selection -EXPORT_SYMBOL_GPL vmlinux 0x4ee2ac7b __hwspin_trylock -EXPORT_SYMBOL_GPL vmlinux 0x4ee4256e dm_device_name -EXPORT_SYMBOL_GPL vmlinux 0x4eee3fb8 inet_unhash -EXPORT_SYMBOL_GPL vmlinux 0x4eef3bc3 pwm_free -EXPORT_SYMBOL_GPL vmlinux 0x4ef5bcf4 perf_swevent_get_recursion_context -EXPORT_SYMBOL_GPL vmlinux 0x4efcf021 mpi_normalize -EXPORT_SYMBOL_GPL vmlinux 0x4efdc39c pci_generic_ecam_ops -EXPORT_SYMBOL_GPL vmlinux 0x4f0c1fcb skb_append_pagefrags -EXPORT_SYMBOL_GPL vmlinux 0x4f10def2 clk_hw_get_flags -EXPORT_SYMBOL_GPL vmlinux 0x4f115080 vp_modern_get_queue_size -EXPORT_SYMBOL_GPL vmlinux 0x4f2593f0 btree_update -EXPORT_SYMBOL_GPL vmlinux 0x4f2c996d kmsg_dump_get_line -EXPORT_SYMBOL_GPL vmlinux 0x4f3096cd pinctrl_select_default_state -EXPORT_SYMBOL_GPL vmlinux 0x4f3345b0 anon_inode_getfile -EXPORT_SYMBOL_GPL vmlinux 0x4f3f69db fuse_request_end -EXPORT_SYMBOL_GPL vmlinux 0x4f40e8af ata_sff_qc_issue -EXPORT_SYMBOL_GPL vmlinux 0x4f52eb64 mmc_pwrseq_unregister -EXPORT_SYMBOL_GPL vmlinux 0x4f5b5a7c rockchip_register_restart_notifier -EXPORT_SYMBOL_GPL vmlinux 0x4f5fa288 lp8788_write_byte -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 0x4f76341d watchdog_set_last_hw_keepalive -EXPORT_SYMBOL_GPL vmlinux 0x4f89f44e dm_put -EXPORT_SYMBOL_GPL vmlinux 0x4f91bfc7 mbox_controller_unregister -EXPORT_SYMBOL_GPL vmlinux 0x4f98d766 cpu_pm_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x4f9b4a61 fsverity_ioctl_measure -EXPORT_SYMBOL_GPL vmlinux 0x4f9fb9bd of_prop_next_u32 -EXPORT_SYMBOL_GPL vmlinux 0x4fb1ef8c regulator_disable -EXPORT_SYMBOL_GPL vmlinux 0x4fb21b78 sock_diag_unregister_inet_compat -EXPORT_SYMBOL_GPL vmlinux 0x4fb60057 dma_buf_pin -EXPORT_SYMBOL_GPL vmlinux 0x4fd2e0aa pci_reset_function_locked -EXPORT_SYMBOL_GPL vmlinux 0x4fdc945d sata_deb_timing_normal -EXPORT_SYMBOL_GPL vmlinux 0x4fe1eddf unregister_netevent_notifier -EXPORT_SYMBOL_GPL vmlinux 0x4fe4eb5d sysfs_merge_group -EXPORT_SYMBOL_GPL vmlinux 0x4ffdbdad ata_acpi_stm -EXPORT_SYMBOL_GPL vmlinux 0x500367b7 dm_internal_suspend_fast -EXPORT_SYMBOL_GPL vmlinux 0x50092cae pci_disable_rom -EXPORT_SYMBOL_GPL vmlinux 0x500c768c apei_exec_read_register -EXPORT_SYMBOL_GPL vmlinux 0x50112e41 device_dma_supported -EXPORT_SYMBOL_GPL vmlinux 0x5026585c xen_irq_from_gsi -EXPORT_SYMBOL_GPL vmlinux 0x50442c5e iommu_setup_dma_ops -EXPORT_SYMBOL_GPL vmlinux 0x505120cd iommu_sva_unbind_gpasid -EXPORT_SYMBOL_GPL vmlinux 0x506604dc __mdiobus_modify_changed -EXPORT_SYMBOL_GPL vmlinux 0x50706073 regulator_set_voltage_time_sel -EXPORT_SYMBOL_GPL vmlinux 0x5082516c dev_pm_opp_put_opp_table -EXPORT_SYMBOL_GPL vmlinux 0x5091b823 ring_buffer_read_start -EXPORT_SYMBOL_GPL vmlinux 0x509985f7 fb_deferred_io_cleanup -EXPORT_SYMBOL_GPL vmlinux 0x509c9efe devm_device_add_group -EXPORT_SYMBOL_GPL vmlinux 0x509e3fc4 __audit_inode_child -EXPORT_SYMBOL_GPL vmlinux 0x50c2ae54 rpi_firmware_property -EXPORT_SYMBOL_GPL vmlinux 0x50c61940 __context_tracking_exit -EXPORT_SYMBOL_GPL vmlinux 0x50c74e86 ata_bmdma_qc_issue -EXPORT_SYMBOL_GPL vmlinux 0x50df94f5 btree_insert -EXPORT_SYMBOL_GPL vmlinux 0x50e7193a __i2c_first_dynamic_bus_num -EXPORT_SYMBOL_GPL vmlinux 0x50f7222c tegra_mc_get_emem_device_count -EXPORT_SYMBOL_GPL vmlinux 0x50fad434 round_jiffies_up -EXPORT_SYMBOL_GPL vmlinux 0x5101ae07 devm_power_supply_register -EXPORT_SYMBOL_GPL vmlinux 0x51067d25 ip_valid_fib_dump_req -EXPORT_SYMBOL_GPL vmlinux 0x510a46a5 devfreq_event_enable_edev -EXPORT_SYMBOL_GPL vmlinux 0x510f06f4 rtc_class_close -EXPORT_SYMBOL_GPL vmlinux 0x5120602d device_remove_properties -EXPORT_SYMBOL_GPL vmlinux 0x512f4388 devlink_resource_occ_get_unregister -EXPORT_SYMBOL_GPL vmlinux 0x51390c96 rcu_barrier_tasks_rude -EXPORT_SYMBOL_GPL vmlinux 0x515397f2 simple_attr_write -EXPORT_SYMBOL_GPL vmlinux 0x515b390f __SCK__tp_func_remove_device_from_group -EXPORT_SYMBOL_GPL vmlinux 0x51673f20 mtk_pinconf_bias_disable_set -EXPORT_SYMBOL_GPL vmlinux 0x51676512 unregister_acpi_bus_type -EXPORT_SYMBOL_GPL vmlinux 0x5169344d k3_udma_glue_pop_tx_chn -EXPORT_SYMBOL_GPL vmlinux 0x5173477e fwnode_property_read_u16_array -EXPORT_SYMBOL_GPL vmlinux 0x5183aa23 crypto_stats_kpp_set_secret -EXPORT_SYMBOL_GPL vmlinux 0x5187ac4b xen_store_evtchn -EXPORT_SYMBOL_GPL vmlinux 0x519184d9 tpm_tis_core_init -EXPORT_SYMBOL_GPL vmlinux 0x51957add ip6_route_output_flags_noref -EXPORT_SYMBOL_GPL vmlinux 0x51991b38 mtk_mutex_enable -EXPORT_SYMBOL_GPL vmlinux 0x519c380d regulator_put -EXPORT_SYMBOL_GPL vmlinux 0x519f9139 ata_acpi_cbl_80wire -EXPORT_SYMBOL_GPL vmlinux 0x51a348cc usb_role_switch_set_drvdata -EXPORT_SYMBOL_GPL vmlinux 0x51ab63c8 register_virtio_driver -EXPORT_SYMBOL_GPL vmlinux 0x51ad07dd tegra210_plle_hw_sequence_start -EXPORT_SYMBOL_GPL vmlinux 0x51b6a1fd mtk_pinconf_drive_set_rev1 -EXPORT_SYMBOL_GPL vmlinux 0x51d13875 nf_hooks_lwtunnel_sysctl_handler -EXPORT_SYMBOL_GPL vmlinux 0x51eff4a0 iommu_uapi_cache_invalidate -EXPORT_SYMBOL_GPL vmlinux 0x51f04b99 serdev_device_set_tiocm -EXPORT_SYMBOL_GPL vmlinux 0x51f5c15f pci_vpd_alloc -EXPORT_SYMBOL_GPL vmlinux 0x51fc9a6d xenmem_reservation_decrease -EXPORT_SYMBOL_GPL vmlinux 0x52004a19 tcp_get_syncookie_mss -EXPORT_SYMBOL_GPL vmlinux 0x520ba125 power_supply_property_is_writeable -EXPORT_SYMBOL_GPL vmlinux 0x52252316 clk_unregister_fixed_rate -EXPORT_SYMBOL_GPL vmlinux 0x522fb0fd ata_link_next -EXPORT_SYMBOL_GPL vmlinux 0x523b5b4c __devres_alloc_node -EXPORT_SYMBOL_GPL vmlinux 0x523fb446 param_ops_bool_enable_only -EXPORT_SYMBOL_GPL vmlinux 0x52431348 xenbus_transaction_start -EXPORT_SYMBOL_GPL vmlinux 0x525480ec devm_regulator_register -EXPORT_SYMBOL_GPL vmlinux 0x5258718c auxiliary_find_device -EXPORT_SYMBOL_GPL vmlinux 0x525d0aa3 trace_seq_printf -EXPORT_SYMBOL_GPL vmlinux 0x526f9014 clk_register_fixed_rate -EXPORT_SYMBOL_GPL vmlinux 0x5274b3f7 ip6_flush_pending_frames -EXPORT_SYMBOL_GPL vmlinux 0x5275a983 __regmap_init_mmio_clk -EXPORT_SYMBOL_GPL vmlinux 0x5275c6b3 blk_poll -EXPORT_SYMBOL_GPL vmlinux 0x528a37b3 fuse_dev_alloc_install -EXPORT_SYMBOL_GPL vmlinux 0x52b1e3c7 pci_flags -EXPORT_SYMBOL_GPL vmlinux 0x52b32be5 phy_modify_mmd_changed -EXPORT_SYMBOL_GPL vmlinux 0x52c2832a pinctrl_force_sleep -EXPORT_SYMBOL_GPL vmlinux 0x52c35e83 call_rcu_tasks_trace -EXPORT_SYMBOL_GPL vmlinux 0x52cbee34 bus_find_device -EXPORT_SYMBOL_GPL vmlinux 0x52ce1b2d dw_pcie_wait_for_link -EXPORT_SYMBOL_GPL vmlinux 0x52ce2057 hv_setup_crash_handler -EXPORT_SYMBOL_GPL vmlinux 0x52d54fce devlink_info_version_stored_put -EXPORT_SYMBOL_GPL vmlinux 0x52dd30b3 regulator_allow_bypass -EXPORT_SYMBOL_GPL vmlinux 0x52dfd2c5 sched_set_normal -EXPORT_SYMBOL_GPL vmlinux 0x52e219ed wbt_enable_default -EXPORT_SYMBOL_GPL vmlinux 0x52e298d3 __traceiter_fib6_table_lookup -EXPORT_SYMBOL_GPL vmlinux 0x53012944 __tracepoint_rpm_resume -EXPORT_SYMBOL_GPL vmlinux 0x53100e31 l3mdev_table_lookup_unregister -EXPORT_SYMBOL_GPL vmlinux 0x531cad1e setfl -EXPORT_SYMBOL_GPL vmlinux 0x5321d3d6 sbitmap_get -EXPORT_SYMBOL_GPL vmlinux 0x532b90b5 kprobe_event_cmd_init -EXPORT_SYMBOL_GPL vmlinux 0x5338a4fc devm_pwm_get -EXPORT_SYMBOL_GPL vmlinux 0x533c15d3 inet_csk_listen_stop -EXPORT_SYMBOL_GPL vmlinux 0x533f766a pci_enable_pasid -EXPORT_SYMBOL_GPL vmlinux 0x534709d2 __ip6_datagram_connect -EXPORT_SYMBOL_GPL vmlinux 0x5358864e devlink_fmsg_binary_pair_nest_end -EXPORT_SYMBOL_GPL vmlinux 0x536822e3 sfp_module_insert -EXPORT_SYMBOL_GPL vmlinux 0x536cdf34 regmap_mmio_detach_clk -EXPORT_SYMBOL_GPL vmlinux 0x537252cf __SCK__tp_func_rpm_return_int -EXPORT_SYMBOL_GPL vmlinux 0x537f2580 tc3589x_block_write -EXPORT_SYMBOL_GPL vmlinux 0x5381c434 xenbus_dev_resume -EXPORT_SYMBOL_GPL vmlinux 0x538d073d phy_duplex_to_str -EXPORT_SYMBOL_GPL vmlinux 0x5391f2c7 gnttab_end_foreign_access_ref -EXPORT_SYMBOL_GPL vmlinux 0x5399e148 clk_regmap_mux_ops -EXPORT_SYMBOL_GPL vmlinux 0x539d5a14 regmap_bulk_write -EXPORT_SYMBOL_GPL vmlinux 0x53a6d26a devm_pm_clk_create -EXPORT_SYMBOL_GPL vmlinux 0x53b4a97c fsl_mc_resource_allocate -EXPORT_SYMBOL_GPL vmlinux 0x53c089f5 property_entries_dup -EXPORT_SYMBOL_GPL vmlinux 0x53ca9f44 get_user_pages_fast_only -EXPORT_SYMBOL_GPL vmlinux 0x53d2f7cc subsys_interface_unregister -EXPORT_SYMBOL_GPL vmlinux 0x53d7c01e __traceiter_cpu_idle -EXPORT_SYMBOL_GPL vmlinux 0x53dd8c4b bpf_prog_inc -EXPORT_SYMBOL_GPL vmlinux 0x53f7a24b pm_generic_poweroff_late -EXPORT_SYMBOL_GPL vmlinux 0x53f98037 power_supply_get_property_from_supplier -EXPORT_SYMBOL_GPL vmlinux 0x5402e39d sata_link_debounce -EXPORT_SYMBOL_GPL vmlinux 0x5403b149 xfrm_state_afinfo_get_rcu -EXPORT_SYMBOL_GPL vmlinux 0x541148c4 efivar_entry_delete -EXPORT_SYMBOL_GPL vmlinux 0x541bd60a irq_work_run -EXPORT_SYMBOL_GPL vmlinux 0x54215db5 visitor64 -EXPORT_SYMBOL_GPL vmlinux 0x54288b89 irq_create_of_mapping -EXPORT_SYMBOL_GPL vmlinux 0x542dd764 thermal_of_cooling_device_register -EXPORT_SYMBOL_GPL vmlinux 0x545025e5 nvmem_add_cell_table -EXPORT_SYMBOL_GPL vmlinux 0x54651f9b rhashtable_walk_next -EXPORT_SYMBOL_GPL vmlinux 0x5473b758 pci_epc_write_header -EXPORT_SYMBOL_GPL vmlinux 0x547449d8 blk_set_pm_only -EXPORT_SYMBOL_GPL vmlinux 0x547f5361 device_add_properties -EXPORT_SYMBOL_GPL vmlinux 0x54847434 pci_restore_msi_state -EXPORT_SYMBOL_GPL vmlinux 0x549525ef handle_nested_irq -EXPORT_SYMBOL_GPL vmlinux 0x54a25da2 qcom_smem_state_put -EXPORT_SYMBOL_GPL vmlinux 0x54bd0413 is_current_mnt_ns -EXPORT_SYMBOL_GPL vmlinux 0x54bea681 __of_phy_provider_register -EXPORT_SYMBOL_GPL vmlinux 0x54bf1638 trace_array_init_printk -EXPORT_SYMBOL_GPL vmlinux 0x54caa87a gpiochip_generic_free -EXPORT_SYMBOL_GPL vmlinux 0x54d7bf0b dst_cache_get_ip4 -EXPORT_SYMBOL_GPL vmlinux 0x54dd239d pinmux_generic_add_function -EXPORT_SYMBOL_GPL vmlinux 0x54e6cd78 acpi_create_platform_device -EXPORT_SYMBOL_GPL vmlinux 0x550f3e05 i2c_freq_mode_string -EXPORT_SYMBOL_GPL vmlinux 0x551069dd xhci_dbg_trace -EXPORT_SYMBOL_GPL vmlinux 0x551f7048 rio_add_device -EXPORT_SYMBOL_GPL vmlinux 0x55339365 flush_delayed_fput -EXPORT_SYMBOL_GPL vmlinux 0x553597aa __skb_tstamp_tx -EXPORT_SYMBOL_GPL vmlinux 0x55397e8d cpufreq_cpu_put -EXPORT_SYMBOL_GPL vmlinux 0x5539c41d device_store_ulong -EXPORT_SYMBOL_GPL vmlinux 0x553b49a4 cpufreq_get_driver_data -EXPORT_SYMBOL_GPL vmlinux 0x55417264 unregister_vt_notifier -EXPORT_SYMBOL_GPL vmlinux 0x5550b0a6 pinctrl_find_and_add_gpio_range -EXPORT_SYMBOL_GPL vmlinux 0x55594ffa __device_reset -EXPORT_SYMBOL_GPL vmlinux 0x556e4390 clk_get_rate -EXPORT_SYMBOL_GPL vmlinux 0x556e94b5 blk_mq_freeze_queue_wait_timeout -EXPORT_SYMBOL_GPL vmlinux 0x55784228 regmap_irq_get_virq -EXPORT_SYMBOL_GPL vmlinux 0x5585aac3 metadata_dst_free -EXPORT_SYMBOL_GPL vmlinux 0x55977a59 debugfs_remove -EXPORT_SYMBOL_GPL vmlinux 0x559dd650 cpufreq_register_governor -EXPORT_SYMBOL_GPL vmlinux 0x55c01b3b ehci_reset -EXPORT_SYMBOL_GPL vmlinux 0x55c76a23 ksys_sync_helper -EXPORT_SYMBOL_GPL vmlinux 0x55c9880c zynqmp_pm_release_node -EXPORT_SYMBOL_GPL vmlinux 0x55d0e887 led_blink_set -EXPORT_SYMBOL_GPL vmlinux 0x55d3fa77 get_task_pid -EXPORT_SYMBOL_GPL vmlinux 0x55e94513 netdev_set_default_ethtool_ops -EXPORT_SYMBOL_GPL vmlinux 0x55eecff4 bit_wait_io_timeout -EXPORT_SYMBOL_GPL vmlinux 0x55fcd276 clk_hw_get_parent_by_index -EXPORT_SYMBOL_GPL vmlinux 0x56054c05 crypto_it_tab -EXPORT_SYMBOL_GPL vmlinux 0x560e059c __of_reset_control_get -EXPORT_SYMBOL_GPL vmlinux 0x5610fce7 usb_hcd_start_port_resume -EXPORT_SYMBOL_GPL vmlinux 0x56173654 pcap_set_ts_bits -EXPORT_SYMBOL_GPL vmlinux 0x561ada88 devlink_reload_enable -EXPORT_SYMBOL_GPL vmlinux 0x56256e8a orderly_poweroff -EXPORT_SYMBOL_GPL vmlinux 0x56269130 sk_msg_alloc -EXPORT_SYMBOL_GPL vmlinux 0x562d5664 pci_enable_pcie_error_reporting -EXPORT_SYMBOL_GPL vmlinux 0x56310925 regulator_mode_to_status -EXPORT_SYMBOL_GPL vmlinux 0x5641485b tty_termios_encode_baud_rate -EXPORT_SYMBOL_GPL vmlinux 0x5643bf90 gpiochip_line_is_open_drain -EXPORT_SYMBOL_GPL vmlinux 0x56527e42 irq_get_domain_generic_chip -EXPORT_SYMBOL_GPL vmlinux 0x565ef62d fib_nl_delrule -EXPORT_SYMBOL_GPL vmlinux 0x565fa00e device_initialize -EXPORT_SYMBOL_GPL vmlinux 0x5661abf3 seg6_do_srh_encap -EXPORT_SYMBOL_GPL vmlinux 0x567719d7 pktgen_xfrm_outer_mode_output -EXPORT_SYMBOL_GPL vmlinux 0x567e5439 devlink_param_unregister -EXPORT_SYMBOL_GPL vmlinux 0x568dd723 unregister_virtio_driver -EXPORT_SYMBOL_GPL vmlinux 0x56a0abc4 devlink_port_param_value_changed -EXPORT_SYMBOL_GPL vmlinux 0x56ad5253 iptunnel_metadata_reply -EXPORT_SYMBOL_GPL vmlinux 0x56af60b4 serial8250_modem_status -EXPORT_SYMBOL_GPL vmlinux 0x56cb41c2 dma_buf_end_cpu_access -EXPORT_SYMBOL_GPL vmlinux 0x56cf73f5 of_platform_populate -EXPORT_SYMBOL_GPL vmlinux 0x56d31fa7 usb_poison_urb -EXPORT_SYMBOL_GPL vmlinux 0x56d61dce context_tracking_enter -EXPORT_SYMBOL_GPL vmlinux 0x56e9103b cpu_pm_enter -EXPORT_SYMBOL_GPL vmlinux 0x56e9ed56 irq_gc_set_wake -EXPORT_SYMBOL_GPL vmlinux 0x56f4d078 _copy_from_iter_flushcache -EXPORT_SYMBOL_GPL vmlinux 0x56fbb130 no_hash_pointers -EXPORT_SYMBOL_GPL vmlinux 0x5716a8ad pinctrl_count_index_with_args -EXPORT_SYMBOL_GPL vmlinux 0x573b5453 ipv6_fixup_options -EXPORT_SYMBOL_GPL vmlinux 0x573edcfa fsl_mc_device_remove -EXPORT_SYMBOL_GPL vmlinux 0x574609c5 apei_exec_write_register_value -EXPORT_SYMBOL_GPL vmlinux 0x5755a2b2 dpbp_enable -EXPORT_SYMBOL_GPL vmlinux 0x576719af acpi_is_pnp_device -EXPORT_SYMBOL_GPL vmlinux 0x5771203c skb_zerocopy_iter_dgram -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 0x578eeb4d hugetlb_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x578f4def fib_rules_register -EXPORT_SYMBOL_GPL vmlinux 0x5790e7a0 pci_unlock_rescan_remove -EXPORT_SYMBOL_GPL vmlinux 0x5798dacb dw_pcie_ep_deinit_notify -EXPORT_SYMBOL_GPL vmlinux 0x579e0bf5 rtnl_unregister_all -EXPORT_SYMBOL_GPL vmlinux 0x57b6dd20 regmap_fields_read -EXPORT_SYMBOL_GPL vmlinux 0x57baca18 extcon_find_edev_by_node -EXPORT_SYMBOL_GPL vmlinux 0x57cc6e00 inet6_compat_ioctl -EXPORT_SYMBOL_GPL vmlinux 0x57d4050a xhci_get_endpoint_index -EXPORT_SYMBOL_GPL vmlinux 0x57e4553b filemap_read -EXPORT_SYMBOL_GPL vmlinux 0x57f576b9 mpi_ec_curve_point -EXPORT_SYMBOL_GPL vmlinux 0x57f586f8 __blkg_prfill_rwstat -EXPORT_SYMBOL_GPL vmlinux 0x57ff3e6b wm831x_auxadc_read -EXPORT_SYMBOL_GPL vmlinux 0x57fffc58 regulator_register -EXPORT_SYMBOL_GPL vmlinux 0x58083d39 usb_role_switch_register -EXPORT_SYMBOL_GPL vmlinux 0x58171282 dax_region_put -EXPORT_SYMBOL_GPL vmlinux 0x5822cb91 cpufreq_generic_attr -EXPORT_SYMBOL_GPL vmlinux 0x5825117b devm_clk_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0x58276f93 cper_next_record_id -EXPORT_SYMBOL_GPL vmlinux 0x5831e062 cpus_read_trylock -EXPORT_SYMBOL_GPL vmlinux 0x5840ad64 devm_pinctrl_unregister -EXPORT_SYMBOL_GPL vmlinux 0x5846505d k3_udma_glue_rx_get_dma_device -EXPORT_SYMBOL_GPL vmlinux 0x5851addb gpiod_set_debounce -EXPORT_SYMBOL_GPL vmlinux 0x5856cc8e acpi_gpiochip_free_interrupts -EXPORT_SYMBOL_GPL vmlinux 0x586bfc8a alarm_restart -EXPORT_SYMBOL_GPL vmlinux 0x58763812 dprc_setup -EXPORT_SYMBOL_GPL vmlinux 0x5879a27d sfp_get_module_info -EXPORT_SYMBOL_GPL vmlinux 0x587cf535 regulator_suspend_enable -EXPORT_SYMBOL_GPL vmlinux 0x58877856 nf_nat_hook -EXPORT_SYMBOL_GPL vmlinux 0x589739f5 inet_send_prepare -EXPORT_SYMBOL_GPL vmlinux 0x589f8377 user_describe -EXPORT_SYMBOL_GPL vmlinux 0x58af1193 pid_vnr -EXPORT_SYMBOL_GPL vmlinux 0x58cdc92a __mmu_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0x58d40a8b ahci_platform_resume_host -EXPORT_SYMBOL_GPL vmlinux 0x58d4e101 md_rdev_clear -EXPORT_SYMBOL_GPL vmlinux 0x58def6ca sfp_module_remove -EXPORT_SYMBOL_GPL vmlinux 0x58e14f15 HYPERVISOR_event_channel_op -EXPORT_SYMBOL_GPL vmlinux 0x58e66bd0 ata_sff_tf_load -EXPORT_SYMBOL_GPL vmlinux 0x58e7b636 rt_mutex_trylock -EXPORT_SYMBOL_GPL vmlinux 0x58e86e87 tcp_unregister_ulp -EXPORT_SYMBOL_GPL vmlinux 0x58f71628 proc_get_parent_data -EXPORT_SYMBOL_GPL vmlinux 0x59120480 simple_attr_write_signed -EXPORT_SYMBOL_GPL vmlinux 0x59139a15 serdev_device_open -EXPORT_SYMBOL_GPL vmlinux 0x59279af2 check_move_unevictable_pages -EXPORT_SYMBOL_GPL vmlinux 0x59401ac4 usb_role_switch_find_by_fwnode -EXPORT_SYMBOL_GPL vmlinux 0x5952400c tpm_get_timeouts -EXPORT_SYMBOL_GPL vmlinux 0x5959aa83 pci_cfg_access_lock -EXPORT_SYMBOL_GPL vmlinux 0x595e3db9 dw_pcie_setup_rc -EXPORT_SYMBOL_GPL vmlinux 0x596b598c uart_handle_dcd_change -EXPORT_SYMBOL_GPL vmlinux 0x5986d190 kdb_printf -EXPORT_SYMBOL_GPL vmlinux 0x599ea9db rio_inb_pwrite_handler -EXPORT_SYMBOL_GPL vmlinux 0x599ff5e7 serdev_device_wait_until_sent -EXPORT_SYMBOL_GPL vmlinux 0x59a0154a devres_for_each_res -EXPORT_SYMBOL_GPL vmlinux 0x59a9e585 tun_get_tx_ring -EXPORT_SYMBOL_GPL vmlinux 0x59b2adbf input_ff_effect_from_user -EXPORT_SYMBOL_GPL vmlinux 0x59c285a7 pcie_update_link_speed -EXPORT_SYMBOL_GPL vmlinux 0x59c43dc9 __traceiter_non_standard_event -EXPORT_SYMBOL_GPL vmlinux 0x59c89398 xfrm_output_resume -EXPORT_SYMBOL_GPL vmlinux 0x59f32720 mpi_subm -EXPORT_SYMBOL_GPL vmlinux 0x59fe9f48 pci_user_read_config_byte -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 0x5a24a6eb __synth_event_gen_cmd_start -EXPORT_SYMBOL_GPL vmlinux 0x5a3a6267 crypto_grab_skcipher -EXPORT_SYMBOL_GPL vmlinux 0x5a3ddc3c acct_bioset_exit -EXPORT_SYMBOL_GPL vmlinux 0x5a49dbc9 timerqueue_del -EXPORT_SYMBOL_GPL vmlinux 0x5a4ec1d1 dev_pm_opp_of_add_table_noclk -EXPORT_SYMBOL_GPL vmlinux 0x5a50685f fscrypt_symlink_getattr -EXPORT_SYMBOL_GPL vmlinux 0x5a60fd0d gpiod_count -EXPORT_SYMBOL_GPL vmlinux 0x5a6a56f2 debugfs_file_put -EXPORT_SYMBOL_GPL vmlinux 0x5a6a7dcb device_show_ulong -EXPORT_SYMBOL_GPL vmlinux 0x5a6cdb52 nf_ct_zone_dflt -EXPORT_SYMBOL_GPL vmlinux 0x5a7aa0a3 serdev_device_write_room -EXPORT_SYMBOL_GPL vmlinux 0x5a7bfe41 crypto_probing_notify -EXPORT_SYMBOL_GPL vmlinux 0x5a87c70a platform_msi_domain_alloc_irqs -EXPORT_SYMBOL_GPL vmlinux 0x5a8df1e9 regmap_reinit_cache -EXPORT_SYMBOL_GPL vmlinux 0x5a970798 regcache_sync_region -EXPORT_SYMBOL_GPL vmlinux 0x5a9d70d9 acpi_device_get_match_data -EXPORT_SYMBOL_GPL vmlinux 0x5aa70984 acpi_reduced_hardware -EXPORT_SYMBOL_GPL vmlinux 0x5aa89e93 fsl_mc_bus_dpbp_type -EXPORT_SYMBOL_GPL vmlinux 0x5aaae436 skb_consume_udp -EXPORT_SYMBOL_GPL vmlinux 0x5ab09745 edac_get_owner -EXPORT_SYMBOL_GPL vmlinux 0x5ac48f64 crypto_aead_encrypt -EXPORT_SYMBOL_GPL vmlinux 0x5ac88198 tty_init_termios -EXPORT_SYMBOL_GPL vmlinux 0x5add7c6b device_get_dma_attr -EXPORT_SYMBOL_GPL vmlinux 0x5ae2c5e3 nvdimm_flush -EXPORT_SYMBOL_GPL vmlinux 0x5ae7e996 synth_event_add_next_val -EXPORT_SYMBOL_GPL vmlinux 0x5afabebe iommu_group_for_each_dev -EXPORT_SYMBOL_GPL vmlinux 0x5b1f4504 inet_csk_route_req -EXPORT_SYMBOL_GPL vmlinux 0x5b21ceff ring_buffer_iter_peek -EXPORT_SYMBOL_GPL vmlinux 0x5b2f86c3 tegra_bpmp_transfer -EXPORT_SYMBOL_GPL vmlinux 0x5b3117ff devm_regulator_register_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0x5b557ab3 wm8350_reg_read -EXPORT_SYMBOL_GPL vmlinux 0x5b6b0329 swiotlb_max_segment -EXPORT_SYMBOL_GPL vmlinux 0x5b6e6953 gov_update_cpu_data -EXPORT_SYMBOL_GPL vmlinux 0x5b6f0c3c ata_host_init -EXPORT_SYMBOL_GPL vmlinux 0x5ba61a00 extcon_set_property_sync -EXPORT_SYMBOL_GPL vmlinux 0x5bbdfa26 scatterwalk_ffwd -EXPORT_SYMBOL_GPL vmlinux 0x5bc1aab4 devlink_param_driverinit_value_get -EXPORT_SYMBOL_GPL vmlinux 0x5bc950fe regulator_irq_helper_cancel -EXPORT_SYMBOL_GPL vmlinux 0x5bcaa38b vfs_write -EXPORT_SYMBOL_GPL vmlinux 0x5bcc0df7 ata_dev_classify -EXPORT_SYMBOL_GPL vmlinux 0x5bcd48f1 sysfs_groups_change_owner -EXPORT_SYMBOL_GPL vmlinux 0x5bd0748f crypto_del_default_rng -EXPORT_SYMBOL_GPL vmlinux 0x5bd1e96e regmap_noinc_write -EXPORT_SYMBOL_GPL vmlinux 0x5bd7adc4 ata_sas_port_alloc -EXPORT_SYMBOL_GPL vmlinux 0x5bdae35b usb_phy_roothub_set_mode -EXPORT_SYMBOL_GPL vmlinux 0x5bdbac4e rcu_unexpedite_gp -EXPORT_SYMBOL_GPL vmlinux 0x5bde681e hvc_alloc -EXPORT_SYMBOL_GPL vmlinux 0x5bf4cfd6 scsi_unregister_device_handler -EXPORT_SYMBOL_GPL vmlinux 0x5bf58b08 class_dev_iter_next -EXPORT_SYMBOL_GPL vmlinux 0x5bf6e5cd mmu_notifier_unregister -EXPORT_SYMBOL_GPL vmlinux 0x5bfe927f usb_add_phy -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 0x5c32e399 devlink_port_region_create -EXPORT_SYMBOL_GPL vmlinux 0x5c3bbd06 __SCK__tp_func_mc_event -EXPORT_SYMBOL_GPL vmlinux 0x5c409e2d tpm_pcr_extend -EXPORT_SYMBOL_GPL vmlinux 0x5c464e27 of_property_read_u64 -EXPORT_SYMBOL_GPL vmlinux 0x5c5677bd crypto_unregister_ahashes -EXPORT_SYMBOL_GPL vmlinux 0x5c58589b regulator_list_voltage_linear_range -EXPORT_SYMBOL_GPL vmlinux 0x5c5a1b16 tick_broadcast_control -EXPORT_SYMBOL_GPL vmlinux 0x5c5c6826 phy_10gbit_full_features -EXPORT_SYMBOL_GPL vmlinux 0x5c66007e devlink_params_unregister -EXPORT_SYMBOL_GPL vmlinux 0x5c6f3565 inet_twsk_put -EXPORT_SYMBOL_GPL vmlinux 0x5c82016e __SCK__tp_func_napi_poll -EXPORT_SYMBOL_GPL vmlinux 0x5c8347e1 usb_get_dev -EXPORT_SYMBOL_GPL vmlinux 0x5c97370d cpufreq_driver_fast_switch -EXPORT_SYMBOL_GPL vmlinux 0x5cab9945 unregister_xenbus_watch -EXPORT_SYMBOL_GPL vmlinux 0x5cad8fc3 power_supply_ocv2cap_simple -EXPORT_SYMBOL_GPL vmlinux 0x5caeeda7 pci_platform_power_transition -EXPORT_SYMBOL_GPL vmlinux 0x5cb78732 trace_array_set_clr_event -EXPORT_SYMBOL_GPL vmlinux 0x5cc6820a ahash_register_instance -EXPORT_SYMBOL_GPL vmlinux 0x5ccbb836 acpi_cppc_processor_exit -EXPORT_SYMBOL_GPL vmlinux 0x5ccf2192 dev_attr_link_power_management_policy -EXPORT_SYMBOL_GPL vmlinux 0x5cd47710 page_endio -EXPORT_SYMBOL_GPL vmlinux 0x5cddf630 __traceiter_neigh_event_send_dead -EXPORT_SYMBOL_GPL vmlinux 0x5cea6b48 do_truncate -EXPORT_SYMBOL_GPL vmlinux 0x5cec6a59 __cpuhp_state_remove_instance -EXPORT_SYMBOL_GPL vmlinux 0x5cede0a7 xdp_flush_frame_bulk -EXPORT_SYMBOL_GPL vmlinux 0x5d009702 mmput -EXPORT_SYMBOL_GPL vmlinux 0x5d14cc78 devfreq_cooling_unregister -EXPORT_SYMBOL_GPL vmlinux 0x5d17148b apei_write -EXPORT_SYMBOL_GPL vmlinux 0x5d292bf7 __acpi_node_get_property_reference -EXPORT_SYMBOL_GPL vmlinux 0x5d2aa5fb rhashtable_walk_peek -EXPORT_SYMBOL_GPL vmlinux 0x5d2bc42a reset_control_rearm -EXPORT_SYMBOL_GPL vmlinux 0x5d31843d __traceiter_pelt_dl_tp -EXPORT_SYMBOL_GPL vmlinux 0x5d46241d devm_regulator_get_optional -EXPORT_SYMBOL_GPL vmlinux 0x5d47045a usb_urb_ep_type_check -EXPORT_SYMBOL_GPL vmlinux 0x5d472b22 tcp_register_congestion_control -EXPORT_SYMBOL_GPL vmlinux 0x5d5e38d1 bio_start_io_acct_time -EXPORT_SYMBOL_GPL vmlinux 0x5d61116a pcc_mbox_free_channel -EXPORT_SYMBOL_GPL vmlinux 0x5d727997 kobject_init_and_add -EXPORT_SYMBOL_GPL vmlinux 0x5d7a3309 vring_transport_features -EXPORT_SYMBOL_GPL vmlinux 0x5d8476d3 bpf_sk_storage_diag_alloc -EXPORT_SYMBOL_GPL vmlinux 0x5d84d3da cpufreq_policy_transition_delay_us -EXPORT_SYMBOL_GPL vmlinux 0x5da33a48 phy_led_triggers_unregister -EXPORT_SYMBOL_GPL vmlinux 0x5da67adc zs_compact -EXPORT_SYMBOL_GPL vmlinux 0x5da750ee md_stop_writes -EXPORT_SYMBOL_GPL vmlinux 0x5daefb6b pci_epc_mem_free_addr -EXPORT_SYMBOL_GPL vmlinux 0x5de38b3d tpm2_get_tpm_pt -EXPORT_SYMBOL_GPL vmlinux 0x5de412cd k3_ringacc_ring_push -EXPORT_SYMBOL_GPL vmlinux 0x5e093937 tegra210_clk_emc_attach -EXPORT_SYMBOL_GPL vmlinux 0x5e0b604d crypto_stats_ahash_final -EXPORT_SYMBOL_GPL vmlinux 0x5e173309 cpu_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0x5e1a9204 pm_generic_runtime_resume -EXPORT_SYMBOL_GPL vmlinux 0x5e2037c9 xenbus_watch_path -EXPORT_SYMBOL_GPL vmlinux 0x5e2e3b83 devlink_params_unpublish -EXPORT_SYMBOL_GPL vmlinux 0x5e3704d3 pci_check_and_mask_intx -EXPORT_SYMBOL_GPL vmlinux 0x5e3b0d95 dev_pm_opp_find_freq_ceil -EXPORT_SYMBOL_GPL vmlinux 0x5e467e8d pci_set_host_bridge_release -EXPORT_SYMBOL_GPL vmlinux 0x5e515be6 ktime_get_ts64 -EXPORT_SYMBOL_GPL vmlinux 0x5e5e82ac pci_num_vf -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 0x5e8f0435 md_run -EXPORT_SYMBOL_GPL vmlinux 0x5ea5020d xen_remap_vma_range -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 0x5eb506c4 devm_acpi_dev_add_driver_gpios -EXPORT_SYMBOL_GPL vmlinux 0x5eb6dc49 __pm_relax -EXPORT_SYMBOL_GPL vmlinux 0x5ec2319a mtk_mutex_unprepare -EXPORT_SYMBOL_GPL vmlinux 0x5ecdcf90 ti_sci_get_free_resource -EXPORT_SYMBOL_GPL vmlinux 0x5ed37381 __platform_register_drivers -EXPORT_SYMBOL_GPL vmlinux 0x5ed47e8c arm64_mm_context_get -EXPORT_SYMBOL_GPL vmlinux 0x5edb6d66 disk_force_media_change -EXPORT_SYMBOL_GPL vmlinux 0x5ee257d1 sysfs_remove_group -EXPORT_SYMBOL_GPL vmlinux 0x5f02d8b4 xdp_return_frame_bulk -EXPORT_SYMBOL_GPL vmlinux 0x5f1e9cc1 efivars_kobject -EXPORT_SYMBOL_GPL vmlinux 0x5f1f44c5 __vfs_removexattr_locked -EXPORT_SYMBOL_GPL vmlinux 0x5f23e3fa insert_resource -EXPORT_SYMBOL_GPL vmlinux 0x5f28cacc usb_of_get_companion_dev -EXPORT_SYMBOL_GPL vmlinux 0x5f4e471b irq_domain_associate_many -EXPORT_SYMBOL_GPL vmlinux 0x5f5fbfe8 bdev_disk_changed -EXPORT_SYMBOL_GPL vmlinux 0x5f6a75fc regulator_bulk_get -EXPORT_SYMBOL_GPL vmlinux 0x5f6f1e9e dax_get_private -EXPORT_SYMBOL_GPL vmlinux 0x5f7f9940 component_add -EXPORT_SYMBOL_GPL vmlinux 0x5f89b41b skcipher_walk_aead_decrypt -EXPORT_SYMBOL_GPL vmlinux 0x5f92ac6e power_supply_get_property -EXPORT_SYMBOL_GPL vmlinux 0x5fa625ed mpi_ec_mul_point -EXPORT_SYMBOL_GPL vmlinux 0x5fad1647 dev_pm_opp_put_regulators -EXPORT_SYMBOL_GPL vmlinux 0x5fb1b3f6 ata_bmdma_port_intr -EXPORT_SYMBOL_GPL vmlinux 0x5fc5982c vring_create_virtqueue -EXPORT_SYMBOL_GPL vmlinux 0x5fdf42b4 blk_mq_free_request -EXPORT_SYMBOL_GPL vmlinux 0x5fdfcd57 __tracepoint_pelt_thermal_tp -EXPORT_SYMBOL_GPL vmlinux 0x5fe11f14 irq_create_fwspec_mapping -EXPORT_SYMBOL_GPL vmlinux 0x5fe1fde4 scsi_schedule_eh -EXPORT_SYMBOL_GPL vmlinux 0x5fe36ef8 balloon_page_enqueue -EXPORT_SYMBOL_GPL vmlinux 0x5ff841ed gpiod_export -EXPORT_SYMBOL_GPL vmlinux 0x5ff95296 serial8250_handle_irq -EXPORT_SYMBOL_GPL vmlinux 0x5ffc0b1d xenbus_switch_state -EXPORT_SYMBOL_GPL vmlinux 0x6004540c blk_queue_max_discard_segments -EXPORT_SYMBOL_GPL vmlinux 0x60069ee1 inet_ehash_locks_alloc -EXPORT_SYMBOL_GPL vmlinux 0x60091316 clk_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0x601b66e7 bpf_trace_run3 -EXPORT_SYMBOL_GPL vmlinux 0x602d2920 irq_work_sync -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 0x6053ea5a bpf_trace_run6 -EXPORT_SYMBOL_GPL vmlinux 0x605d5bfa cache_line_size -EXPORT_SYMBOL_GPL vmlinux 0x605dba2b xdp_do_redirect -EXPORT_SYMBOL_GPL vmlinux 0x6063f442 extcon_set_property_capability -EXPORT_SYMBOL_GPL vmlinux 0x60720cbc ata_ncq_sdev_attrs -EXPORT_SYMBOL_GPL vmlinux 0x6074e050 kthread_mod_delayed_work -EXPORT_SYMBOL_GPL vmlinux 0x607c4683 devlink_info_version_fixed_put -EXPORT_SYMBOL_GPL vmlinux 0x608aea4c fib_table_lookup -EXPORT_SYMBOL_GPL vmlinux 0x6091797f synchronize_rcu -EXPORT_SYMBOL_GPL vmlinux 0x6098816e fwnode_handle_get -EXPORT_SYMBOL_GPL vmlinux 0x60a13e90 rcu_barrier -EXPORT_SYMBOL_GPL vmlinux 0x60a32ea9 pm_power_off -EXPORT_SYMBOL_GPL vmlinux 0x60ab5f61 regmap_multi_reg_write_bypassed -EXPORT_SYMBOL_GPL vmlinux 0x60e3b09f rdev_get_drvdata -EXPORT_SYMBOL_GPL vmlinux 0x60ebc96f ring_buffer_read_prepare -EXPORT_SYMBOL_GPL vmlinux 0x60f99e1b cppc_set_perf -EXPORT_SYMBOL_GPL vmlinux 0x60fa9f46 usb_wakeup_notification -EXPORT_SYMBOL_GPL vmlinux 0x611cfa85 klist_add_tail -EXPORT_SYMBOL_GPL vmlinux 0x61255c5d exportfs_decode_fh -EXPORT_SYMBOL_GPL vmlinux 0x61280625 ip6_sk_dst_lookup_flow -EXPORT_SYMBOL_GPL vmlinux 0x6129fb93 sfp_remove_phy -EXPORT_SYMBOL_GPL vmlinux 0x612a96ca fat_scan -EXPORT_SYMBOL_GPL vmlinux 0x612bfd89 errno_to_blk_status -EXPORT_SYMBOL_GPL vmlinux 0x612e6fca inet_csk_reqsk_queue_hash_add -EXPORT_SYMBOL_GPL vmlinux 0x61315549 vfs_removexattr -EXPORT_SYMBOL_GPL vmlinux 0x61339e5a usb_queue_reset_device -EXPORT_SYMBOL_GPL vmlinux 0x61352197 input_device_enabled -EXPORT_SYMBOL_GPL vmlinux 0x61361334 pci_epc_set_msi -EXPORT_SYMBOL_GPL vmlinux 0x61479d30 devlink_dpipe_table_register -EXPORT_SYMBOL_GPL vmlinux 0x614adcb7 of_overlay_remove_all -EXPORT_SYMBOL_GPL vmlinux 0x615d3447 kernel_read_file_from_path -EXPORT_SYMBOL_GPL vmlinux 0x615f3264 platform_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0x615ffbaa fwnode_handle_put -EXPORT_SYMBOL_GPL vmlinux 0x616ab019 of_property_match_string -EXPORT_SYMBOL_GPL vmlinux 0x617712a8 devm_usb_put_phy -EXPORT_SYMBOL_GPL vmlinux 0x617816c9 sk_msg_trim -EXPORT_SYMBOL_GPL vmlinux 0x617b026c hwrng_register -EXPORT_SYMBOL_GPL vmlinux 0x6181e79f timerqueue_add -EXPORT_SYMBOL_GPL vmlinux 0x618d9de6 usb_autopm_put_interface_async -EXPORT_SYMBOL_GPL vmlinux 0x618e1ddc of_pci_find_child_device -EXPORT_SYMBOL_GPL vmlinux 0x61987915 device_remove_bin_file -EXPORT_SYMBOL_GPL vmlinux 0x6198dfea __ring_buffer_alloc -EXPORT_SYMBOL_GPL vmlinux 0x6199ad5d crypto_has_skcipher -EXPORT_SYMBOL_GPL vmlinux 0x619a4f38 regulator_map_voltage_iterate -EXPORT_SYMBOL_GPL vmlinux 0x619d2eca acpi_gpio_get_irq_resource -EXPORT_SYMBOL_GPL vmlinux 0x61ae1d2d xas_pause -EXPORT_SYMBOL_GPL vmlinux 0x61afcae9 mddev_unlock -EXPORT_SYMBOL_GPL vmlinux 0x61c1ca29 __SCK__tp_func_add_device_to_group -EXPORT_SYMBOL_GPL vmlinux 0x61c370f8 class_dev_iter_exit -EXPORT_SYMBOL_GPL vmlinux 0x61d9f165 ahci_platform_shutdown -EXPORT_SYMBOL_GPL vmlinux 0x61dfbfd4 devm_pm_opp_set_clkname -EXPORT_SYMBOL_GPL vmlinux 0x61e08234 of_tegra_bpmp_get -EXPORT_SYMBOL_GPL vmlinux 0x61e2600f regmap_get_raw_write_max -EXPORT_SYMBOL_GPL vmlinux 0x61e8c6ba edac_pci_add_device -EXPORT_SYMBOL_GPL vmlinux 0x61f0d52b fsl_mc_device_add -EXPORT_SYMBOL_GPL vmlinux 0x61f2a683 device_set_wakeup_capable -EXPORT_SYMBOL_GPL vmlinux 0x61f67c92 phy_gbit_features_array -EXPORT_SYMBOL_GPL vmlinux 0x6205645e sata_scr_read -EXPORT_SYMBOL_GPL vmlinux 0x622880ce sdio_set_block_size -EXPORT_SYMBOL_GPL vmlinux 0x622c7922 register_oom_notifier -EXPORT_SYMBOL_GPL vmlinux 0x622db7c4 usb_reset_configuration -EXPORT_SYMBOL_GPL vmlinux 0x623351d1 page_cache_async_ra -EXPORT_SYMBOL_GPL vmlinux 0x62377a7b blk_io_schedule -EXPORT_SYMBOL_GPL vmlinux 0x62384455 i2c_adapter_type -EXPORT_SYMBOL_GPL vmlinux 0x623b39a3 crypto_ahash_digest -EXPORT_SYMBOL_GPL vmlinux 0x6246a629 synchronize_rcu_tasks_trace -EXPORT_SYMBOL_GPL vmlinux 0x6247d857 dprc_remove_devices -EXPORT_SYMBOL_GPL vmlinux 0x624ff81c iommu_sva_find -EXPORT_SYMBOL_GPL vmlinux 0x6257dda7 clk_rate_exclusive_get -EXPORT_SYMBOL_GPL vmlinux 0x6259d291 clk_restore_context -EXPORT_SYMBOL_GPL vmlinux 0x626eb1af crypto_shash_final -EXPORT_SYMBOL_GPL vmlinux 0x6270a317 extcon_get_extcon_dev -EXPORT_SYMBOL_GPL vmlinux 0x62749f60 iommu_domain_free -EXPORT_SYMBOL_GPL vmlinux 0x628f1687 devlink_region_create -EXPORT_SYMBOL_GPL vmlinux 0x62905265 da9055_regmap_config -EXPORT_SYMBOL_GPL vmlinux 0x629a5eab skb_scrub_packet -EXPORT_SYMBOL_GPL vmlinux 0x62af6653 edac_pci_free_ctl_info -EXPORT_SYMBOL_GPL vmlinux 0x62bb09bf clocks_calc_mult_shift -EXPORT_SYMBOL_GPL vmlinux 0x62bb2163 register_acpi_bus_type -EXPORT_SYMBOL_GPL vmlinux 0x62d2162c gpiochip_enable_irq -EXPORT_SYMBOL_GPL vmlinux 0x62eb746c set_online_page_callback -EXPORT_SYMBOL_GPL vmlinux 0x62f7df65 dev_set_name -EXPORT_SYMBOL_GPL vmlinux 0x62f9a744 devm_gpiod_get_index_optional -EXPORT_SYMBOL_GPL vmlinux 0x63102256 __pm_runtime_use_autosuspend -EXPORT_SYMBOL_GPL vmlinux 0x63104b05 security_kernel_read_file -EXPORT_SYMBOL_GPL vmlinux 0x63132579 ip_route_output_tunnel -EXPORT_SYMBOL_GPL vmlinux 0x63150e06 clk_get_parent -EXPORT_SYMBOL_GPL vmlinux 0x6318757f mdio_mux_uninit -EXPORT_SYMBOL_GPL vmlinux 0x631923c3 phy_check_downshift -EXPORT_SYMBOL_GPL vmlinux 0x63197685 s2idle_wake -EXPORT_SYMBOL_GPL vmlinux 0x632a3538 serial8250_rx_dma_flush -EXPORT_SYMBOL_GPL vmlinux 0x6339b8ef extcon_get_property -EXPORT_SYMBOL_GPL vmlinux 0x633b6ad7 scsi_eh_ready_devs -EXPORT_SYMBOL_GPL vmlinux 0x633db572 pm_stay_awake -EXPORT_SYMBOL_GPL vmlinux 0x633f1c5e pm_genpd_remove_device -EXPORT_SYMBOL_GPL vmlinux 0x6343f3bc __traceiter_block_bio_complete -EXPORT_SYMBOL_GPL vmlinux 0x634b9d42 __SCK__tp_func_block_unplug -EXPORT_SYMBOL_GPL vmlinux 0x634e0015 irq_gc_mask_set_bit -EXPORT_SYMBOL_GPL vmlinux 0x635c996d pinconf_generic_dt_subnode_to_map -EXPORT_SYMBOL_GPL vmlinux 0x636a5949 spi_sync -EXPORT_SYMBOL_GPL vmlinux 0x6374f873 __rio_local_read_config_32 -EXPORT_SYMBOL_GPL vmlinux 0x638aff11 proc_douintvec_minmax -EXPORT_SYMBOL_GPL vmlinux 0x6399f877 pinctrl_get -EXPORT_SYMBOL_GPL vmlinux 0x639f2953 da9052_enable_irq -EXPORT_SYMBOL_GPL vmlinux 0x63a832fd __mmc_poll_for_busy -EXPORT_SYMBOL_GPL vmlinux 0x63bef78f vfs_truncate -EXPORT_SYMBOL_GPL vmlinux 0x63bfc2d9 usb_sg_init -EXPORT_SYMBOL_GPL vmlinux 0x63c08029 clk_bulk_unprepare -EXPORT_SYMBOL_GPL vmlinux 0x63cf259c acpi_dev_get_dma_resources -EXPORT_SYMBOL_GPL vmlinux 0x63d47eff mbox_flush -EXPORT_SYMBOL_GPL vmlinux 0x63e9e127 bpf_trace_run8 -EXPORT_SYMBOL_GPL vmlinux 0x63ea80b3 cper_mem_err_type_str -EXPORT_SYMBOL_GPL vmlinux 0x63eee5e3 regulator_count_voltages -EXPORT_SYMBOL_GPL vmlinux 0x63efbf8d edac_pci_handle_npe -EXPORT_SYMBOL_GPL vmlinux 0x63f14489 rio_release_outb_dbell -EXPORT_SYMBOL_GPL vmlinux 0x640e1eff debugfs_create_u64 -EXPORT_SYMBOL_GPL vmlinux 0x640f4071 __traceiter_io_page_fault -EXPORT_SYMBOL_GPL vmlinux 0x64265256 inet6_hash -EXPORT_SYMBOL_GPL vmlinux 0x6426e0d9 device_release_driver -EXPORT_SYMBOL_GPL vmlinux 0x6427572b tegra210_clk_emc_dll_enable -EXPORT_SYMBOL_GPL vmlinux 0x642a9557 __platform_driver_register -EXPORT_SYMBOL_GPL vmlinux 0x642c9f95 dm_internal_suspend_noflush -EXPORT_SYMBOL_GPL vmlinux 0x643b06b0 zynqmp_pm_clock_setrate -EXPORT_SYMBOL_GPL vmlinux 0x643cc89f debugfs_create_file -EXPORT_SYMBOL_GPL vmlinux 0x643dad28 ethtool_set_ethtool_phy_ops -EXPORT_SYMBOL_GPL vmlinux 0x64444710 fsl_mc_bus_dpci_type -EXPORT_SYMBOL_GPL vmlinux 0x644b8827 serial8250_tx_chars -EXPORT_SYMBOL_GPL vmlinux 0x64609d25 __tracepoint_devlink_trap_report -EXPORT_SYMBOL_GPL vmlinux 0x64637286 rcu_read_unlock_trace_special -EXPORT_SYMBOL_GPL vmlinux 0x646af7d5 dax_layout_busy_page_range -EXPORT_SYMBOL_GPL vmlinux 0x64738520 devfreq_cooling_register -EXPORT_SYMBOL_GPL vmlinux 0x647537f3 pl320_ipc_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x6490dfb0 gpiochip_irq_map -EXPORT_SYMBOL_GPL vmlinux 0x64925270 __dax_synchronous -EXPORT_SYMBOL_GPL vmlinux 0x6492618e sk_set_peek_off -EXPORT_SYMBOL_GPL vmlinux 0x64a31445 mutex_lock_io -EXPORT_SYMBOL_GPL vmlinux 0x64b71173 reserve_iova -EXPORT_SYMBOL_GPL vmlinux 0x64c0af45 disk_uevent -EXPORT_SYMBOL_GPL vmlinux 0x64c7de08 usb_put_phy -EXPORT_SYMBOL_GPL vmlinux 0x64d3cc4e xas_load -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 0x652c2d72 relay_subbufs_consumed -EXPORT_SYMBOL_GPL vmlinux 0x652dad77 crypto_skcipher_encrypt -EXPORT_SYMBOL_GPL vmlinux 0x6531a37f mpi_add -EXPORT_SYMBOL_GPL vmlinux 0x6545268e __tracepoint_neigh_cleanup_and_release -EXPORT_SYMBOL_GPL vmlinux 0x654cb5a7 dpcon_disable -EXPORT_SYMBOL_GPL vmlinux 0x655e4879 __irq_alloc_descs -EXPORT_SYMBOL_GPL vmlinux 0x656158c1 tps6586x_clr_bits -EXPORT_SYMBOL_GPL vmlinux 0x6563a1fb fsnotify_get_group -EXPORT_SYMBOL_GPL vmlinux 0x6565a4f0 dma_mmap_noncontiguous -EXPORT_SYMBOL_GPL vmlinux 0x6565c167 device_show_bool -EXPORT_SYMBOL_GPL vmlinux 0x656ed374 device_remove_software_node -EXPORT_SYMBOL_GPL vmlinux 0x658f6a81 devm_gpiod_get -EXPORT_SYMBOL_GPL vmlinux 0x659c76ba fsl8250_handle_irq -EXPORT_SYMBOL_GPL vmlinux 0x659dd7a9 nvdimm_bus_register -EXPORT_SYMBOL_GPL vmlinux 0x65a25bf2 dev_pm_opp_xlate_required_opp -EXPORT_SYMBOL_GPL vmlinux 0x65ae1bf9 pinctrl_parse_index_with_args -EXPORT_SYMBOL_GPL vmlinux 0x65ccb6f0 call_netevent_notifiers -EXPORT_SYMBOL_GPL vmlinux 0x65db08b1 __rtnl_link_unregister -EXPORT_SYMBOL_GPL vmlinux 0x65e01af9 __sync_icache_dcache -EXPORT_SYMBOL_GPL vmlinux 0x65f9614b of_irq_find_parent -EXPORT_SYMBOL_GPL vmlinux 0x661601de sprint_symbol -EXPORT_SYMBOL_GPL vmlinux 0x662ddb69 wm831x_device_shutdown -EXPORT_SYMBOL_GPL vmlinux 0x6636c3c9 irq_set_vcpu_affinity -EXPORT_SYMBOL_GPL vmlinux 0x663bb448 devlink_fmsg_obj_nest_end -EXPORT_SYMBOL_GPL vmlinux 0x664eb54a k3_ringacc_ring_reset_dma -EXPORT_SYMBOL_GPL vmlinux 0x6659b19e of_property_count_elems_of_size -EXPORT_SYMBOL_GPL vmlinux 0x665e92a0 clk_set_duty_cycle -EXPORT_SYMBOL_GPL vmlinux 0x666cd382 dma_get_merge_boundary -EXPORT_SYMBOL_GPL vmlinux 0x667a25a3 unregister_pernet_subsys -EXPORT_SYMBOL_GPL vmlinux 0x668402aa crypto_put_default_rng -EXPORT_SYMBOL_GPL vmlinux 0x669adfe3 rio_release_outb_mbox -EXPORT_SYMBOL_GPL vmlinux 0x66b97421 sfp_link_up -EXPORT_SYMBOL_GPL vmlinux 0x66c5549f copy_user_highpage -EXPORT_SYMBOL_GPL vmlinux 0x66d42aa7 tcp_done -EXPORT_SYMBOL_GPL vmlinux 0x66d65add mnt_want_write -EXPORT_SYMBOL_GPL vmlinux 0x66d81f52 ata_sas_async_probe -EXPORT_SYMBOL_GPL vmlinux 0x66d87d38 symbol_put_addr -EXPORT_SYMBOL_GPL vmlinux 0x66dc6fa6 dprc_get_obj_region -EXPORT_SYMBOL_GPL vmlinux 0x66e81197 input_ff_flush -EXPORT_SYMBOL_GPL vmlinux 0x670f4b7f sock_gen_put -EXPORT_SYMBOL_GPL vmlinux 0x67179ed5 acpi_pm_set_device_wakeup -EXPORT_SYMBOL_GPL vmlinux 0x6723c90f devlink_rate_leaf_destroy -EXPORT_SYMBOL_GPL vmlinux 0x673263a2 device_add_software_node -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 0x67524e3c of_genpd_del_provider -EXPORT_SYMBOL_GPL vmlinux 0x6757fb74 irq_chip_set_type_parent -EXPORT_SYMBOL_GPL vmlinux 0x6760229d to_nvdimm -EXPORT_SYMBOL_GPL vmlinux 0x676c688f k3_ringacc_ring_free -EXPORT_SYMBOL_GPL vmlinux 0x67955ce6 profile_hits -EXPORT_SYMBOL_GPL vmlinux 0x67a7d947 scmi_driver_unregister -EXPORT_SYMBOL_GPL vmlinux 0x67bbea66 pci_epf_type_add_cfs -EXPORT_SYMBOL_GPL vmlinux 0x67c35c2d register_virtio_device -EXPORT_SYMBOL_GPL vmlinux 0x67d867d6 fwnode_property_present -EXPORT_SYMBOL_GPL vmlinux 0x67da9f7c sha512_zero_message_hash -EXPORT_SYMBOL_GPL vmlinux 0x67e707fe pci_find_ht_capability -EXPORT_SYMBOL_GPL vmlinux 0x67ea9dfb device_bind_driver -EXPORT_SYMBOL_GPL vmlinux 0x67eca3bd i2c_acpi_client_count -EXPORT_SYMBOL_GPL vmlinux 0x67f1ac6f icc_get -EXPORT_SYMBOL_GPL vmlinux 0x67f5230a vc_scrolldelta_helper -EXPORT_SYMBOL_GPL vmlinux 0x6818ebc7 __serdev_device_driver_register -EXPORT_SYMBOL_GPL vmlinux 0x682026b0 serial8250_rpm_get -EXPORT_SYMBOL_GPL vmlinux 0x682ff057 ring_buffer_commit_overrun_cpu -EXPORT_SYMBOL_GPL vmlinux 0x68433ee3 rio_unmap_outb_region -EXPORT_SYMBOL_GPL vmlinux 0x684b8530 net_selftest -EXPORT_SYMBOL_GPL vmlinux 0x684ca117 zynqmp_pm_get_pll_frac_mode -EXPORT_SYMBOL_GPL vmlinux 0x68549704 get_state_synchronize_srcu -EXPORT_SYMBOL_GPL vmlinux 0x6856c141 fw_devlink_purge_absent_suppliers -EXPORT_SYMBOL_GPL vmlinux 0x6862b001 nfs_ssc_unregister -EXPORT_SYMBOL_GPL vmlinux 0x6869dff9 gpiod_set_transitory -EXPORT_SYMBOL_GPL vmlinux 0x686ba8a7 phy_pm_runtime_put_sync -EXPORT_SYMBOL_GPL vmlinux 0x6874681f scsi_mode_select -EXPORT_SYMBOL_GPL vmlinux 0x68952493 rcu_note_context_switch -EXPORT_SYMBOL_GPL vmlinux 0x68a1fb1f usb_get_phy -EXPORT_SYMBOL_GPL vmlinux 0x68a6eddf regulator_list_voltage_linear -EXPORT_SYMBOL_GPL vmlinux 0x68b08ec7 dst_blackhole_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0x68cea0bb rockchip_register_softrst -EXPORT_SYMBOL_GPL vmlinux 0x68d03512 balloon_page_alloc -EXPORT_SYMBOL_GPL vmlinux 0x68d11b29 apply_to_page_range -EXPORT_SYMBOL_GPL vmlinux 0x68e22fce stmpe_block_read -EXPORT_SYMBOL_GPL vmlinux 0x68e4c9dc device_move -EXPORT_SYMBOL_GPL vmlinux 0x68f356a2 xfrm_audit_state_add -EXPORT_SYMBOL_GPL vmlinux 0x690c790a power_supply_get_by_name -EXPORT_SYMBOL_GPL vmlinux 0x690f585e phy_basic_ports_array -EXPORT_SYMBOL_GPL vmlinux 0x6912d882 usb_alloc_urb -EXPORT_SYMBOL_GPL vmlinux 0x69208d7e ata_link_abort -EXPORT_SYMBOL_GPL vmlinux 0x696340a5 __i2c_board_lock -EXPORT_SYMBOL_GPL vmlinux 0x69637b2c __traceiter_powernv_throttle -EXPORT_SYMBOL_GPL vmlinux 0x6965752a edac_pci_handle_pe -EXPORT_SYMBOL_GPL vmlinux 0x6965c993 ipv6_stub -EXPORT_SYMBOL_GPL vmlinux 0x69682e46 iommu_sva_unbind_device -EXPORT_SYMBOL_GPL vmlinux 0x696f2b63 of_changeset_init -EXPORT_SYMBOL_GPL vmlinux 0x697c5d0d tracing_snapshot_alloc -EXPORT_SYMBOL_GPL vmlinux 0x6983a2c5 devm_phy_put -EXPORT_SYMBOL_GPL vmlinux 0x698b972a __page_file_index -EXPORT_SYMBOL_GPL vmlinux 0x698da164 i2c_dw_prepare_clk -EXPORT_SYMBOL_GPL vmlinux 0x6995f09b usb_autopm_get_interface_no_resume -EXPORT_SYMBOL_GPL vmlinux 0x699d2be7 __raw_v4_lookup -EXPORT_SYMBOL_GPL vmlinux 0x69a01692 ahci_platform_disable_phys -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 0x6a05b65b fb_videomode_from_videomode -EXPORT_SYMBOL_GPL vmlinux 0x6a0bf247 devfreq_cooling_em_register -EXPORT_SYMBOL_GPL vmlinux 0x6a1733eb iommu_group_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x6a1ba3aa rio_lock_device -EXPORT_SYMBOL_GPL vmlinux 0x6a3e9085 rio_attach_device -EXPORT_SYMBOL_GPL vmlinux 0x6a41b72b of_nvmem_cell_get -EXPORT_SYMBOL_GPL vmlinux 0x6a421062 memory_failure_queue -EXPORT_SYMBOL_GPL vmlinux 0x6a45c979 sdio_retune_hold_now -EXPORT_SYMBOL_GPL vmlinux 0x6a460dc5 schedule_hrtimeout -EXPORT_SYMBOL_GPL vmlinux 0x6a47af55 clkdev_create -EXPORT_SYMBOL_GPL vmlinux 0x6a4b82b3 rio_release_inb_pwrite -EXPORT_SYMBOL_GPL vmlinux 0x6a4f623b mmu_notifier_synchronize -EXPORT_SYMBOL_GPL vmlinux 0x6a82dc63 devm_pwmchip_add -EXPORT_SYMBOL_GPL vmlinux 0x6a8441be cpci_hp_start -EXPORT_SYMBOL_GPL vmlinux 0x6a847d02 blk_mq_freeze_queue_wait -EXPORT_SYMBOL_GPL vmlinux 0x6a90d8c5 anon_inode_getfd -EXPORT_SYMBOL_GPL vmlinux 0x6a910175 imx_pinctrl_sc_ipc_init -EXPORT_SYMBOL_GPL vmlinux 0x6a93c9b2 zynqmp_pm_pinctrl_get_function -EXPORT_SYMBOL_GPL vmlinux 0x6a96fd7d gpiod_set_value -EXPORT_SYMBOL_GPL vmlinux 0x6a990ebb soc_device_match -EXPORT_SYMBOL_GPL vmlinux 0x6a9f7495 blk_mq_complete_request_remote -EXPORT_SYMBOL_GPL vmlinux 0x6aa2a877 xenbus_printf -EXPORT_SYMBOL_GPL vmlinux 0x6aad9152 xen_set_callback_via -EXPORT_SYMBOL_GPL vmlinux 0x6acd8709 crypto_unregister_template -EXPORT_SYMBOL_GPL vmlinux 0x6ace6566 bgmac_enet_suspend -EXPORT_SYMBOL_GPL vmlinux 0x6ad40d23 of_irq_parse_and_map_pci -EXPORT_SYMBOL_GPL vmlinux 0x6ad4151a fsl_mc_resource_free -EXPORT_SYMBOL_GPL vmlinux 0x6ada33aa ahci_kick_engine -EXPORT_SYMBOL_GPL vmlinux 0x6ade3d5a __platform_driver_probe -EXPORT_SYMBOL_GPL vmlinux 0x6ae7f4bf __fib_lookup -EXPORT_SYMBOL_GPL vmlinux 0x6b0dc565 xen_set_irq_priority -EXPORT_SYMBOL_GPL vmlinux 0x6b110524 devm_regmap_add_irq_chip_fwnode -EXPORT_SYMBOL_GPL vmlinux 0x6b1806a2 __dma_request_channel -EXPORT_SYMBOL_GPL vmlinux 0x6b198c77 led_colors -EXPORT_SYMBOL_GPL vmlinux 0x6b1c1ef7 gpiod_set_array_value -EXPORT_SYMBOL_GPL vmlinux 0x6b1df54c crypto_register_rng -EXPORT_SYMBOL_GPL vmlinux 0x6b22a906 ata_cable_40wire -EXPORT_SYMBOL_GPL vmlinux 0x6b281239 ata_port_wait_eh -EXPORT_SYMBOL_GPL vmlinux 0x6b2b69f7 static_key_enable -EXPORT_SYMBOL_GPL vmlinux 0x6b2e2ceb dev_pm_opp_unregister_set_opp_helper -EXPORT_SYMBOL_GPL vmlinux 0x6b32c202 dm_disk -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 0x6b493c34 of_alias_get_id -EXPORT_SYMBOL_GPL vmlinux 0x6b4a3076 xenbus_dev_probe -EXPORT_SYMBOL_GPL vmlinux 0x6b631767 devm_clk_hw_register -EXPORT_SYMBOL_GPL vmlinux 0x6b738a91 desc_to_gpio -EXPORT_SYMBOL_GPL vmlinux 0x6b7936bd usb_create_shared_hcd -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 0x6b8a1574 pinctrl_generic_remove_group -EXPORT_SYMBOL_GPL vmlinux 0x6b8a83a4 devm_gpio_free -EXPORT_SYMBOL_GPL vmlinux 0x6b933440 bpf_redirect_info -EXPORT_SYMBOL_GPL vmlinux 0x6b952d26 xenbus_register_driver_common -EXPORT_SYMBOL_GPL vmlinux 0x6b97cc5b switchdev_bridge_port_unoffload -EXPORT_SYMBOL_GPL vmlinux 0x6b9fd2da ping_get_port -EXPORT_SYMBOL_GPL vmlinux 0x6ba21a0b sock_inuse_get -EXPORT_SYMBOL_GPL vmlinux 0x6ba36c6a hwpoison_filter_flags_value -EXPORT_SYMBOL_GPL vmlinux 0x6bae3e94 pm_clk_runtime_resume -EXPORT_SYMBOL_GPL vmlinux 0x6bb5618b irq_domain_reset_irq_data -EXPORT_SYMBOL_GPL vmlinux 0x6bbf3888 device_property_read_string -EXPORT_SYMBOL_GPL vmlinux 0x6bcd710d serdev_device_get_tiocm -EXPORT_SYMBOL_GPL vmlinux 0x6bcdedc0 mpi_point_init -EXPORT_SYMBOL_GPL vmlinux 0x6bd1aa56 stack_trace_save -EXPORT_SYMBOL_GPL vmlinux 0x6bd8a49d sched_trace_cfs_rq_avg -EXPORT_SYMBOL_GPL vmlinux 0x6bdc1515 tty_buffer_lock_exclusive -EXPORT_SYMBOL_GPL vmlinux 0x6bdef35c acpi_ec_mark_gpe_for_wake -EXPORT_SYMBOL_GPL vmlinux 0x6be3a96b hv_remove_vmbus_handler -EXPORT_SYMBOL_GPL vmlinux 0x6be8b1dc gpiod_toggle_active_low -EXPORT_SYMBOL_GPL vmlinux 0x6c1809f4 __sock_recv_timestamp -EXPORT_SYMBOL_GPL vmlinux 0x6c188e2b pci_ioremap_wc_bar -EXPORT_SYMBOL_GPL vmlinux 0x6c205008 mpi_print -EXPORT_SYMBOL_GPL vmlinux 0x6c2bca87 scsi_bus_type -EXPORT_SYMBOL_GPL vmlinux 0x6c34991c iommu_uapi_sva_unbind_gpasid -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 0x6c4ce37b efivar_entry_set -EXPORT_SYMBOL_GPL vmlinux 0x6c550a84 pm_clk_resume -EXPORT_SYMBOL_GPL vmlinux 0x6c5ad0cd kmsg_dump_register -EXPORT_SYMBOL_GPL vmlinux 0x6c655913 register_acpi_hed_notifier -EXPORT_SYMBOL_GPL vmlinux 0x6c724ac1 ata_host_start -EXPORT_SYMBOL_GPL vmlinux 0x6c72b63f netlink_strict_get_check -EXPORT_SYMBOL_GPL vmlinux 0x6c7ceee8 strp_stop -EXPORT_SYMBOL_GPL vmlinux 0x6c83ca6d __put_net -EXPORT_SYMBOL_GPL vmlinux 0x6c8debcc vfs_read -EXPORT_SYMBOL_GPL vmlinux 0x6c956075 __SCK__tp_func_devlink_hwerr -EXPORT_SYMBOL_GPL vmlinux 0x6ca47755 __cpufreq_driver_target -EXPORT_SYMBOL_GPL vmlinux 0x6ca4bf88 async_synchronize_full_domain -EXPORT_SYMBOL_GPL vmlinux 0x6cab6f01 ncsi_start_dev -EXPORT_SYMBOL_GPL vmlinux 0x6cb0ce87 irq_get_percpu_devid_partition -EXPORT_SYMBOL_GPL vmlinux 0x6cbe761a usb_hcd_unmap_urb_for_dma -EXPORT_SYMBOL_GPL vmlinux 0x6cbebe92 divider_determine_rate -EXPORT_SYMBOL_GPL vmlinux 0x6cdea9ad nf_queue_entry_get_refs -EXPORT_SYMBOL_GPL vmlinux 0x6ce10eb0 trace_clock_jiffies -EXPORT_SYMBOL_GPL vmlinux 0x6ceaef3d pci_status_get_and_clear_errors -EXPORT_SYMBOL_GPL vmlinux 0x6cfa01a0 regmap_exit -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 0x6d1d83b5 acpi_spi_device_alloc -EXPORT_SYMBOL_GPL vmlinux 0x6d2d4ad9 netif_carrier_event -EXPORT_SYMBOL_GPL vmlinux 0x6d2d7609 ata_host_detach -EXPORT_SYMBOL_GPL vmlinux 0x6d2fc5a6 net_namespace_list -EXPORT_SYMBOL_GPL vmlinux 0x6d439f2f devm_pm_opp_set_regulators -EXPORT_SYMBOL_GPL vmlinux 0x6d467b08 arm_smccc_1_1_get_conduit -EXPORT_SYMBOL_GPL vmlinux 0x6d46ea51 clk_hw_is_enabled -EXPORT_SYMBOL_GPL vmlinux 0x6d470be9 hwmon_device_register_with_groups -EXPORT_SYMBOL_GPL vmlinux 0x6d492f6b ata_cable_ignore -EXPORT_SYMBOL_GPL vmlinux 0x6d4de03b relay_file_operations -EXPORT_SYMBOL_GPL vmlinux 0x6d6fec1f ktime_mono_to_any -EXPORT_SYMBOL_GPL vmlinux 0x6d7e951e rcu_exp_batches_completed -EXPORT_SYMBOL_GPL vmlinux 0x6d880f53 usb_get_maximum_speed -EXPORT_SYMBOL_GPL vmlinux 0x6d935a00 __irq_set_handler -EXPORT_SYMBOL_GPL vmlinux 0x6da02855 dma_buf_attach -EXPORT_SYMBOL_GPL vmlinux 0x6da36000 debugfs_create_file_size -EXPORT_SYMBOL_GPL vmlinux 0x6db6b216 crypto_unregister_instance -EXPORT_SYMBOL_GPL vmlinux 0x6dbaafd3 put_old_timespec32 -EXPORT_SYMBOL_GPL vmlinux 0x6dcc83ee ping_queue_rcv_skb -EXPORT_SYMBOL_GPL vmlinux 0x6dd5680d sprint_symbol_build_id -EXPORT_SYMBOL_GPL vmlinux 0x6ddb9ec1 sched_show_task -EXPORT_SYMBOL_GPL vmlinux 0x6ddf236f tcp_reno_undo_cwnd -EXPORT_SYMBOL_GPL vmlinux 0x6dffe198 rt_mutex_lock_killable -EXPORT_SYMBOL_GPL vmlinux 0x6e09d93d __SCK__tp_func_map -EXPORT_SYMBOL_GPL vmlinux 0x6e14ec12 usb_sg_wait -EXPORT_SYMBOL_GPL vmlinux 0x6e1647c6 __fscrypt_prepare_rename -EXPORT_SYMBOL_GPL vmlinux 0x6e1ec1ab pci_set_pcie_reset_state -EXPORT_SYMBOL_GPL vmlinux 0x6e381058 skb_defer_rx_timestamp -EXPORT_SYMBOL_GPL vmlinux 0x6e3ff83a edac_device_alloc_index -EXPORT_SYMBOL_GPL vmlinux 0x6e4aa78d k3_udma_glue_rx_flow_enable -EXPORT_SYMBOL_GPL vmlinux 0x6e4bc056 spi_res_free -EXPORT_SYMBOL_GPL vmlinux 0x6e4ea24e __blk_mq_debugfs_rq_show -EXPORT_SYMBOL_GPL vmlinux 0x6e59f821 __tracepoint_wbc_writepage -EXPORT_SYMBOL_GPL vmlinux 0x6e63385a md_kick_rdev_from_array -EXPORT_SYMBOL_GPL vmlinux 0x6e710859 tegra_mc_get_carveout_info -EXPORT_SYMBOL_GPL vmlinux 0x6e7943ec iommu_group_id -EXPORT_SYMBOL_GPL vmlinux 0x6e89a560 regmap_irq_chip_get_base -EXPORT_SYMBOL_GPL vmlinux 0x6ebe366f ktime_get_mono_fast_ns -EXPORT_SYMBOL_GPL vmlinux 0x6ec93cdf meson_clk_pcie_pll_ops -EXPORT_SYMBOL_GPL vmlinux 0x6ecae624 fork_usermode_driver -EXPORT_SYMBOL_GPL vmlinux 0x6ed6c3a1 devm_gpiod_get_optional -EXPORT_SYMBOL_GPL vmlinux 0x6eda1f20 devm_of_led_get -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 0x6efdbb45 regulator_irq_helper -EXPORT_SYMBOL_GPL vmlinux 0x6f00ee20 nvdimm_delete -EXPORT_SYMBOL_GPL vmlinux 0x6f12560a get_old_timespec32 -EXPORT_SYMBOL_GPL vmlinux 0x6f2017de misc_cg_set_capacity -EXPORT_SYMBOL_GPL vmlinux 0x6f26a07e fscrypt_fname_siphash -EXPORT_SYMBOL_GPL vmlinux 0x6f7e6040 irq_has_action -EXPORT_SYMBOL_GPL vmlinux 0x6f94cbd2 handle_fasteoi_irq -EXPORT_SYMBOL_GPL vmlinux 0x6f95bb84 sbitmap_queue_init_node -EXPORT_SYMBOL_GPL vmlinux 0x6f9e763b timecounter_read -EXPORT_SYMBOL_GPL vmlinux 0x6fac02c1 devfreq_event_set_event -EXPORT_SYMBOL_GPL vmlinux 0x6fb115f3 debugfs_create_x64 -EXPORT_SYMBOL_GPL vmlinux 0x6fcae5f2 regulator_set_pull_down_regmap -EXPORT_SYMBOL_GPL vmlinux 0x6fcede48 mtk_pinconf_adv_drive_get_raw -EXPORT_SYMBOL_GPL vmlinux 0x6fcef6ab ring_buffer_reset -EXPORT_SYMBOL_GPL vmlinux 0x6fd2bb32 blk_mq_virtio_map_queues -EXPORT_SYMBOL_GPL vmlinux 0x6fd4f814 of_pci_range_parser_init -EXPORT_SYMBOL_GPL vmlinux 0x6fdb4b41 iommu_detach_device -EXPORT_SYMBOL_GPL vmlinux 0x6fe79f2b regulator_list_hardware_vsel -EXPORT_SYMBOL_GPL vmlinux 0x6ff1cdb9 pci_reset_bus -EXPORT_SYMBOL_GPL vmlinux 0x6ff607b6 crypto_get_default_rng -EXPORT_SYMBOL_GPL vmlinux 0x7006586e iommu_get_group_resv_regions -EXPORT_SYMBOL_GPL vmlinux 0x7008ae3b devm_thermal_of_cooling_device_register -EXPORT_SYMBOL_GPL vmlinux 0x701816fa pcie_aspm_capable -EXPORT_SYMBOL_GPL vmlinux 0x701fed1a xfrm_audit_state_replay_overflow -EXPORT_SYMBOL_GPL vmlinux 0x702529eb fsl_mc_bus_dprc_type -EXPORT_SYMBOL_GPL vmlinux 0x702f5bd0 xen_unmap_domain_gfn_range -EXPORT_SYMBOL_GPL vmlinux 0x703b1d96 sock_diag_put_meminfo -EXPORT_SYMBOL_GPL vmlinux 0x703b83d3 blk_ksm_intersect_modes -EXPORT_SYMBOL_GPL vmlinux 0x70530064 md_find_rdev_nr_rcu -EXPORT_SYMBOL_GPL vmlinux 0x7054b841 serdev_device_add -EXPORT_SYMBOL_GPL vmlinux 0x7055c56e __sbitmap_queue_get_shallow -EXPORT_SYMBOL_GPL vmlinux 0x705fe070 fsl_mc_bus_type -EXPORT_SYMBOL_GPL vmlinux 0x7073c04f phy_10_100_features_array -EXPORT_SYMBOL_GPL vmlinux 0x708d5549 usb_sg_cancel -EXPORT_SYMBOL_GPL vmlinux 0x7097c54a tty_port_default_client_ops -EXPORT_SYMBOL_GPL vmlinux 0x709f45b8 mmc_regulator_set_vqmmc -EXPORT_SYMBOL_GPL vmlinux 0x70a0cbc5 __devm_clk_hw_register_divider -EXPORT_SYMBOL_GPL vmlinux 0x70a2c295 acpi_unbind_one -EXPORT_SYMBOL_GPL vmlinux 0x70a701b0 devm_clk_get_enabled -EXPORT_SYMBOL_GPL vmlinux 0x70aa2c6f devm_phy_package_join -EXPORT_SYMBOL_GPL vmlinux 0x70b0275e wakeup_sources_walk_start -EXPORT_SYMBOL_GPL vmlinux 0x70b3a8fa devm_gpiod_get_from_of_node -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 0x70cf032f usb_hcd_irq -EXPORT_SYMBOL_GPL vmlinux 0x70e06e33 pkcs7_free_message -EXPORT_SYMBOL_GPL vmlinux 0x70e2510d spi_mem_dirmap_read -EXPORT_SYMBOL_GPL vmlinux 0x70f6688b dev_queue_xmit_nit -EXPORT_SYMBOL_GPL vmlinux 0x7108293f usb_of_get_device_node -EXPORT_SYMBOL_GPL vmlinux 0x7109807e usb_alloc_coherent -EXPORT_SYMBOL_GPL vmlinux 0x710c73b6 crypto_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x710f1be1 perf_trace_run_bpf_submit -EXPORT_SYMBOL_GPL vmlinux 0x711f4ffa pinctrl_generic_get_group_pins -EXPORT_SYMBOL_GPL vmlinux 0x711f8d14 epl_report_misc_ec_error -EXPORT_SYMBOL_GPL vmlinux 0x7129a6f4 osc_sb_native_usb4_support_confirmed -EXPORT_SYMBOL_GPL vmlinux 0x71304a4a d_exchange -EXPORT_SYMBOL_GPL vmlinux 0x71419042 driver_register -EXPORT_SYMBOL_GPL vmlinux 0x71538fbd crypto_alloc_sync_skcipher -EXPORT_SYMBOL_GPL vmlinux 0x715557d0 dm_start_time_ns_from_clone -EXPORT_SYMBOL_GPL vmlinux 0x715ce5c2 fat_fill_super -EXPORT_SYMBOL_GPL vmlinux 0x715d5467 key_type_logon -EXPORT_SYMBOL_GPL vmlinux 0x716265c7 debugfs_initialized -EXPORT_SYMBOL_GPL vmlinux 0x7173ee10 crypto_stats_aead_decrypt -EXPORT_SYMBOL_GPL vmlinux 0x717e4abf pci_cfg_access_trylock -EXPORT_SYMBOL_GPL vmlinux 0x718072d0 fwnode_get_name -EXPORT_SYMBOL_GPL vmlinux 0x7181db30 atomic_notifier_chain_unregister -EXPORT_SYMBOL_GPL vmlinux 0x7186327e ata_sff_dev_classify -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 0x71aadd21 sdio_f0_writeb -EXPORT_SYMBOL_GPL vmlinux 0x71b15008 lwtunnel_valid_encap_type -EXPORT_SYMBOL_GPL vmlinux 0x71b18340 genphy_c45_pma_read_abilities -EXPORT_SYMBOL_GPL vmlinux 0x71b5469d stmpe_set_bits -EXPORT_SYMBOL_GPL vmlinux 0x71b6cf94 dst_cache_reset_now -EXPORT_SYMBOL_GPL vmlinux 0x71c059d8 __traceiter_map -EXPORT_SYMBOL_GPL vmlinux 0x71c77c30 tegra_bpmp_free_mrq -EXPORT_SYMBOL_GPL vmlinux 0x71ce776f scsi_autopm_put_device -EXPORT_SYMBOL_GPL vmlinux 0x71d925a2 ethnl_cable_test_step -EXPORT_SYMBOL_GPL vmlinux 0x71da73bc em_pd_get -EXPORT_SYMBOL_GPL vmlinux 0x71e2a364 acpi_subsys_freeze -EXPORT_SYMBOL_GPL vmlinux 0x71f67e59 tc3589x_block_read -EXPORT_SYMBOL_GPL vmlinux 0x71f7aa24 blk_req_needs_zone_write_lock -EXPORT_SYMBOL_GPL vmlinux 0x720ad695 inet6_destroy_sock -EXPORT_SYMBOL_GPL vmlinux 0x72316a3a dev_pm_opp_put_supported_hw -EXPORT_SYMBOL_GPL vmlinux 0x723c5051 crypto_register_aeads -EXPORT_SYMBOL_GPL vmlinux 0x72420282 crypto_skcipher_decrypt -EXPORT_SYMBOL_GPL vmlinux 0x7257d70e ata_bmdma_stop -EXPORT_SYMBOL_GPL vmlinux 0x725ae9ff __netdev_watchdog_up -EXPORT_SYMBOL_GPL vmlinux 0x725b99df acpi_device_uevent_modalias -EXPORT_SYMBOL_GPL vmlinux 0x7262702b sfp_get_module_eeprom_by_page -EXPORT_SYMBOL_GPL vmlinux 0x72639781 of_hwspin_lock_get_id -EXPORT_SYMBOL_GPL vmlinux 0x726566ab devm_i2c_new_dummy_device -EXPORT_SYMBOL_GPL vmlinux 0x7265f2b0 pci_vpd_check_csum -EXPORT_SYMBOL_GPL vmlinux 0x726639a1 usb_acpi_set_power_state -EXPORT_SYMBOL_GPL vmlinux 0x7278d328 all_vm_events -EXPORT_SYMBOL_GPL vmlinux 0x727ae575 dev_pm_qos_add_notifier -EXPORT_SYMBOL_GPL vmlinux 0x7283161b percpu_ref_switch_to_percpu -EXPORT_SYMBOL_GPL vmlinux 0x728f5c69 __regmap_init_i2c -EXPORT_SYMBOL_GPL vmlinux 0x7297c4ab bio_trim -EXPORT_SYMBOL_GPL vmlinux 0x729f188e pm_genpd_add_device -EXPORT_SYMBOL_GPL vmlinux 0x72a3cd5d nd_blk_region_provider_data -EXPORT_SYMBOL_GPL vmlinux 0x72d267dc nvmem_del_cell_lookups -EXPORT_SYMBOL_GPL vmlinux 0x72e5f3a8 dev_pm_opp_get_max_volt_latency -EXPORT_SYMBOL_GPL vmlinux 0x72edf918 __tracepoint_kfree_skb -EXPORT_SYMBOL_GPL vmlinux 0x72fb8f5d inet_csk_route_child_sock -EXPORT_SYMBOL_GPL vmlinux 0x7300b36a pinctrl_utils_free_map -EXPORT_SYMBOL_GPL vmlinux 0x73065757 crypto_grab_shash -EXPORT_SYMBOL_GPL vmlinux 0x73242dcd cpu_set_feature -EXPORT_SYMBOL_GPL vmlinux 0x732852fe xenbus_transaction_end -EXPORT_SYMBOL_GPL vmlinux 0x734699fb ata_dev_next -EXPORT_SYMBOL_GPL vmlinux 0x736a2556 watchdog_set_restart_priority -EXPORT_SYMBOL_GPL vmlinux 0x7379b40c device_set_wakeup_enable -EXPORT_SYMBOL_GPL vmlinux 0x7381287f trace_handle_return -EXPORT_SYMBOL_GPL vmlinux 0x7396b89a free_io_pgtable_ops -EXPORT_SYMBOL_GPL vmlinux 0x73978596 tty_find_polling_driver -EXPORT_SYMBOL_GPL vmlinux 0x7397c7bd genphy_c45_pma_suspend -EXPORT_SYMBOL_GPL vmlinux 0x73a157e3 devlink_traps_register -EXPORT_SYMBOL_GPL vmlinux 0x73a30df2 clk_register_mux_table -EXPORT_SYMBOL_GPL vmlinux 0x73a33e2d adp5520_read -EXPORT_SYMBOL_GPL vmlinux 0x73a48b4a ata_sff_std_ports -EXPORT_SYMBOL_GPL vmlinux 0x73bf96f8 platform_get_resource_byname -EXPORT_SYMBOL_GPL vmlinux 0x73c2554f __iowrite64_copy -EXPORT_SYMBOL_GPL vmlinux 0x73c52beb nfs_ssc_client_tbl -EXPORT_SYMBOL_GPL vmlinux 0x73cc8631 oiap -EXPORT_SYMBOL_GPL vmlinux 0x73f06d1a iommu_fwspec_add_ids -EXPORT_SYMBOL_GPL vmlinux 0x73ffa13a debugfs_file_get -EXPORT_SYMBOL_GPL vmlinux 0x7402e5c3 ahci_platform_disable_regulators -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 0x7450260a strp_unpause -EXPORT_SYMBOL_GPL vmlinux 0x74532e81 transport_configure_device -EXPORT_SYMBOL_GPL vmlinux 0x745d5951 devlink_trap_policers_unregister -EXPORT_SYMBOL_GPL vmlinux 0x74640685 mtk_pctrl_show_one_pin -EXPORT_SYMBOL_GPL vmlinux 0x7485c049 adp5520_write -EXPORT_SYMBOL_GPL vmlinux 0x74876fe1 __traceiter_sched_util_est_se_tp -EXPORT_SYMBOL_GPL vmlinux 0x74a18e18 mptcp_subflow_init_cookie_req -EXPORT_SYMBOL_GPL vmlinux 0x74a22bb4 k3_udma_glue_push_rx_chn -EXPORT_SYMBOL_GPL vmlinux 0x74a73fa0 devm_rtc_allocate_device -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 0x74de6bd3 __ndisc_fill_addr_option -EXPORT_SYMBOL_GPL vmlinux 0x74e73871 housekeeping_overridden -EXPORT_SYMBOL_GPL vmlinux 0x74f274bc usb_control_msg -EXPORT_SYMBOL_GPL vmlinux 0x74f279d1 irq_domain_xlate_onetwocell -EXPORT_SYMBOL_GPL vmlinux 0x75069ffc da903x_update -EXPORT_SYMBOL_GPL vmlinux 0x75133f6e visitor128 -EXPORT_SYMBOL_GPL vmlinux 0x75159190 hvc_remove -EXPORT_SYMBOL_GPL vmlinux 0x7522f3ba irq_modify_status -EXPORT_SYMBOL_GPL vmlinux 0x752b5716 sata_async_notification -EXPORT_SYMBOL_GPL vmlinux 0x752dedfd tegra_agic_clear_active -EXPORT_SYMBOL_GPL vmlinux 0x7567bcb1 ata_pci_device_do_resume -EXPORT_SYMBOL_GPL vmlinux 0x756d123b regulator_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0x7583a105 em_dev_register_perf_domain -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 0x7591b189 bpf_prog_sub -EXPORT_SYMBOL_GPL vmlinux 0x759bfe36 btree_destroy -EXPORT_SYMBOL_GPL vmlinux 0x75a00358 devm_hwspin_lock_request -EXPORT_SYMBOL_GPL vmlinux 0x75c84874 split_page -EXPORT_SYMBOL_GPL vmlinux 0x75dd4ebe of_overlay_remove -EXPORT_SYMBOL_GPL vmlinux 0x75e44ad4 usb_disable_xhci_ports -EXPORT_SYMBOL_GPL vmlinux 0x75e51945 __SCK__tp_func_error_report_end -EXPORT_SYMBOL_GPL vmlinux 0x75e62832 pci_dev_trylock -EXPORT_SYMBOL_GPL vmlinux 0x75e9c735 pci_ats_disabled -EXPORT_SYMBOL_GPL vmlinux 0x75f0e875 xas_store -EXPORT_SYMBOL_GPL vmlinux 0x75f33eff switchdev_handle_fdb_del_to_device -EXPORT_SYMBOL_GPL vmlinux 0x75f5b7c6 pm_runtime_barrier -EXPORT_SYMBOL_GPL vmlinux 0x75fb9062 arch_timer_read_counter -EXPORT_SYMBOL_GPL vmlinux 0x763463cc inet6_sk_rebuild_header -EXPORT_SYMBOL_GPL vmlinux 0x764a4ff9 fat_setattr -EXPORT_SYMBOL_GPL vmlinux 0x764ffefa page_reporting_register -EXPORT_SYMBOL_GPL vmlinux 0x7658cc22 reset_simple_ops -EXPORT_SYMBOL_GPL vmlinux 0x7665a95b idr_remove -EXPORT_SYMBOL_GPL vmlinux 0x7665b332 regulator_bulk_set_supply_names -EXPORT_SYMBOL_GPL vmlinux 0x7665ee72 crypto_dh_decode_key -EXPORT_SYMBOL_GPL vmlinux 0x7681946c unregister_pm_notifier -EXPORT_SYMBOL_GPL vmlinux 0x768b696a phy_init -EXPORT_SYMBOL_GPL vmlinux 0x769cefb5 percpu_ref_switch_to_atomic -EXPORT_SYMBOL_GPL vmlinux 0x769d4f20 bio_add_zone_append_page -EXPORT_SYMBOL_GPL vmlinux 0x76a04261 usb_hcd_check_unlink_urb -EXPORT_SYMBOL_GPL vmlinux 0x76bd6932 gpiod_to_chip -EXPORT_SYMBOL_GPL vmlinux 0x76be765f devlink_rate_nodes_destroy -EXPORT_SYMBOL_GPL vmlinux 0x76ca64d4 tpm_is_tpm2 -EXPORT_SYMBOL_GPL vmlinux 0x76d313b6 usb_get_hcd -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 0x76e8eae3 regulator_get_voltage_sel_regmap -EXPORT_SYMBOL_GPL vmlinux 0x76eeeb0f sha384_zero_message_hash -EXPORT_SYMBOL_GPL vmlinux 0x77090f7b wm831x_bulk_read -EXPORT_SYMBOL_GPL vmlinux 0x770cd494 dev_pm_opp_set_clkname -EXPORT_SYMBOL_GPL vmlinux 0x7712771a unbind_from_irqhandler -EXPORT_SYMBOL_GPL vmlinux 0x771ca535 crypto_shash_digest -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 0x7742dbc1 mptcp_pm_get_add_addr_accept_max -EXPORT_SYMBOL_GPL vmlinux 0x774806c5 pci_ecam_create -EXPORT_SYMBOL_GPL vmlinux 0x774f16ef __tracepoint_cpu_idle -EXPORT_SYMBOL_GPL vmlinux 0x7757b51a clk_unregister -EXPORT_SYMBOL_GPL vmlinux 0x776d0b91 meson8_pmx_ops -EXPORT_SYMBOL_GPL vmlinux 0x7778c095 devm_tegra_core_dev_init_opp_table -EXPORT_SYMBOL_GPL vmlinux 0x777bcf99 kvm_arch_ptp_get_crosststamp -EXPORT_SYMBOL_GPL vmlinux 0x77857f69 clone_private_mount -EXPORT_SYMBOL_GPL vmlinux 0x778f84af __bio_crypt_clone -EXPORT_SYMBOL_GPL vmlinux 0x7791e066 dw_pcie_read -EXPORT_SYMBOL_GPL vmlinux 0x779401d3 clk_hw_get_num_parents -EXPORT_SYMBOL_GPL vmlinux 0x779ea6d6 wm8350_set_bits -EXPORT_SYMBOL_GPL vmlinux 0x77ae495d usb_speed_string -EXPORT_SYMBOL_GPL vmlinux 0x77b0cddc pci_disable_pri -EXPORT_SYMBOL_GPL vmlinux 0x77be9bca __clk_hw_register_divider -EXPORT_SYMBOL_GPL vmlinux 0x77cd7878 devm_of_platform_populate -EXPORT_SYMBOL_GPL vmlinux 0x77daa106 fib6_rule_default -EXPORT_SYMBOL_GPL vmlinux 0x77e75be3 sfp_bus_put -EXPORT_SYMBOL_GPL vmlinux 0x77ecf68d memalloc_socks_key -EXPORT_SYMBOL_GPL vmlinux 0x77f4df7d devm_krealloc -EXPORT_SYMBOL_GPL vmlinux 0x77fc2386 dw_pcie_read_dbi -EXPORT_SYMBOL_GPL vmlinux 0x78030d3b devm_gpio_request_one -EXPORT_SYMBOL_GPL vmlinux 0x781d231b device_show_int -EXPORT_SYMBOL_GPL vmlinux 0x78290ad2 driver_remove_file -EXPORT_SYMBOL_GPL vmlinux 0x7833caa0 dma_buf_export -EXPORT_SYMBOL_GPL vmlinux 0x7839cb37 crypto_grab_akcipher -EXPORT_SYMBOL_GPL vmlinux 0x783c1de2 uart_console_device -EXPORT_SYMBOL_GPL vmlinux 0x78404018 crypto_shash_update -EXPORT_SYMBOL_GPL vmlinux 0x78406c85 ipv6_recv_error -EXPORT_SYMBOL_GPL vmlinux 0x78471459 meson_a1_parse_dt_extra -EXPORT_SYMBOL_GPL vmlinux 0x7852ad8e rio_add_net -EXPORT_SYMBOL_GPL vmlinux 0x785a93b4 si_mem_available -EXPORT_SYMBOL_GPL vmlinux 0x786cc698 fl6_update_dst -EXPORT_SYMBOL_GPL vmlinux 0x78730f44 regmap_get_val_bytes -EXPORT_SYMBOL_GPL vmlinux 0x787c882b lzo1x_1_compress -EXPORT_SYMBOL_GPL vmlinux 0x787cdd6b subsys_dev_iter_next -EXPORT_SYMBOL_GPL vmlinux 0x788bfbad ring_buffer_empty -EXPORT_SYMBOL_GPL vmlinux 0x78933947 sysfs_create_link -EXPORT_SYMBOL_GPL vmlinux 0x7894a1b8 dma_buf_move_notify -EXPORT_SYMBOL_GPL vmlinux 0x789b0774 imx_obtain_fixed_clk_hw -EXPORT_SYMBOL_GPL vmlinux 0x789c73d9 rcu_cpu_stall_suppress_at_boot -EXPORT_SYMBOL_GPL vmlinux 0x78c16d5e nvmem_cell_read_u8 -EXPORT_SYMBOL_GPL vmlinux 0x78c39a10 __traceiter_sched_util_est_cfs_tp -EXPORT_SYMBOL_GPL vmlinux 0x78cde15f dma_run_dependencies -EXPORT_SYMBOL_GPL vmlinux 0x78ddb76b dmi_match -EXPORT_SYMBOL_GPL vmlinux 0x78e1bce9 __pm_runtime_disable -EXPORT_SYMBOL_GPL vmlinux 0x790b060d platform_device_alloc -EXPORT_SYMBOL_GPL vmlinux 0x790be0b9 usb_bus_idr -EXPORT_SYMBOL_GPL vmlinux 0x790ee6f8 blk_mq_unfreeze_queue -EXPORT_SYMBOL_GPL vmlinux 0x7918d817 memory_failure -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 0x7943c866 dev_attr_em_message_type -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 0x794e89f0 pskb_put -EXPORT_SYMBOL_GPL vmlinux 0x795158e1 phy_pm_runtime_get -EXPORT_SYMBOL_GPL vmlinux 0x795c7e54 tpm2_probe -EXPORT_SYMBOL_GPL vmlinux 0x795e06d8 bio_associate_blkg_from_css -EXPORT_SYMBOL_GPL vmlinux 0x7965d6a0 pinctrl_utils_add_config -EXPORT_SYMBOL_GPL vmlinux 0x796ef7c0 uart_set_options -EXPORT_SYMBOL_GPL vmlinux 0x798b7682 klist_prev -EXPORT_SYMBOL_GPL vmlinux 0x798bc564 dma_free_noncontiguous -EXPORT_SYMBOL_GPL vmlinux 0x798c2a49 devres_remove -EXPORT_SYMBOL_GPL vmlinux 0x798f4733 gpiod_set_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0x79a18526 tty_ldisc_ref_wait -EXPORT_SYMBOL_GPL vmlinux 0x79bc842c usb_anchor_suspend_wakeups -EXPORT_SYMBOL_GPL vmlinux 0x79c42128 thermal_remove_hwmon_sysfs -EXPORT_SYMBOL_GPL vmlinux 0x79caa59f debugfs_create_ulong -EXPORT_SYMBOL_GPL vmlinux 0x79d9506b fwnode_graph_get_next_endpoint -EXPORT_SYMBOL_GPL vmlinux 0x79defbe1 kthread_should_park -EXPORT_SYMBOL_GPL vmlinux 0x79e5c2ac pinctrl_pm_select_sleep_state -EXPORT_SYMBOL_GPL vmlinux 0x79f697e4 lzorle1x_1_compress -EXPORT_SYMBOL_GPL vmlinux 0x7a33f504 power_supply_find_ocv2cap_table -EXPORT_SYMBOL_GPL vmlinux 0x7a3c9a8c iterate_mounts -EXPORT_SYMBOL_GPL vmlinux 0x7a450d38 cpufreq_driver_target -EXPORT_SYMBOL_GPL vmlinux 0x7a4f3faa pci_epc_set_msix -EXPORT_SYMBOL_GPL vmlinux 0x7a69bd24 wait_on_page_writeback_killable -EXPORT_SYMBOL_GPL vmlinux 0x7a73e605 wm831x_isinkv_values -EXPORT_SYMBOL_GPL vmlinux 0x7a81541b async_synchronize_cookie -EXPORT_SYMBOL_GPL vmlinux 0x7a944007 rcu_idle_enter -EXPORT_SYMBOL_GPL vmlinux 0x7a973424 pinmux_generic_get_function_count -EXPORT_SYMBOL_GPL vmlinux 0x7a97de19 dev_pm_opp_remove -EXPORT_SYMBOL_GPL vmlinux 0x7a98f4b4 copy_from_user_nofault -EXPORT_SYMBOL_GPL vmlinux 0x7a9e4c23 software_node_register_node_group -EXPORT_SYMBOL_GPL vmlinux 0x7aa7a9b2 meson8_aobus_parse_dt_extra -EXPORT_SYMBOL_GPL vmlinux 0x7ac10ad8 icst_clk_register -EXPORT_SYMBOL_GPL vmlinux 0x7ac5c784 icc_node_add -EXPORT_SYMBOL_GPL vmlinux 0x7ac722bd phy_all_ports_features_array -EXPORT_SYMBOL_GPL vmlinux 0x7acd6fea devm_device_remove_groups -EXPORT_SYMBOL_GPL vmlinux 0x7acf255b task_cls_state -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 0x7aef9fb8 dev_pm_set_wake_irq -EXPORT_SYMBOL_GPL vmlinux 0x7af2fbc8 platform_unregister_drivers -EXPORT_SYMBOL_GPL vmlinux 0x7af77850 dm_accept_partial_bio -EXPORT_SYMBOL_GPL vmlinux 0x7afcb7db __kprobe_event_add_fields -EXPORT_SYMBOL_GPL vmlinux 0x7b178afe unlock_system_sleep -EXPORT_SYMBOL_GPL vmlinux 0x7b196170 serial8250_get_port -EXPORT_SYMBOL_GPL vmlinux 0x7b2163bd HYPERVISOR_tmem_op -EXPORT_SYMBOL_GPL vmlinux 0x7b42cb73 follow_pte -EXPORT_SYMBOL_GPL vmlinux 0x7b5452b8 acpi_unregister_gsi -EXPORT_SYMBOL_GPL vmlinux 0x7b585e21 skb_mpls_push -EXPORT_SYMBOL_GPL vmlinux 0x7b5a4926 sha1_zero_message_hash -EXPORT_SYMBOL_GPL vmlinux 0x7b6ae680 meson_pmx_get_func_name -EXPORT_SYMBOL_GPL vmlinux 0x7b6f9536 acpi_register_wakeup_handler -EXPORT_SYMBOL_GPL vmlinux 0x7b762361 sk_msg_clone -EXPORT_SYMBOL_GPL vmlinux 0x7b8051ca __traceiter_sched_update_nr_running_tp -EXPORT_SYMBOL_GPL vmlinux 0x7b8ea197 ethtool_params_from_link_mode -EXPORT_SYMBOL_GPL vmlinux 0x7b90d1a9 bind_virq_to_irqhandler -EXPORT_SYMBOL_GPL vmlinux 0x7b94d9ef sysfs_add_file_to_group -EXPORT_SYMBOL_GPL vmlinux 0x7b9793a2 get_cpu_idle_time_us -EXPORT_SYMBOL_GPL vmlinux 0x7bacbf5c pci_reset_function -EXPORT_SYMBOL_GPL vmlinux 0x7bade022 fixed_phy_unregister -EXPORT_SYMBOL_GPL vmlinux 0x7bb045a7 __request_percpu_irq -EXPORT_SYMBOL_GPL vmlinux 0x7bc594a4 is_swiotlb_active -EXPORT_SYMBOL_GPL vmlinux 0x7bdbd819 irq_chip_release_resources_parent -EXPORT_SYMBOL_GPL vmlinux 0x7bf63d16 cpuidle_register_driver -EXPORT_SYMBOL_GPL vmlinux 0x7bfca23e relay_flush -EXPORT_SYMBOL_GPL vmlinux 0x7c0ec541 ata_sff_data_xfer32 -EXPORT_SYMBOL_GPL vmlinux 0x7c124dbe inet_twsk_hashdance -EXPORT_SYMBOL_GPL vmlinux 0x7c21ac6a iomap_writepage -EXPORT_SYMBOL_GPL vmlinux 0x7c291e86 show_rcu_tasks_trace_gp_kthread -EXPORT_SYMBOL_GPL vmlinux 0x7c34bcb9 sdio_set_host_pm_flags -EXPORT_SYMBOL_GPL vmlinux 0x7c3d8a4b icc_bulk_put -EXPORT_SYMBOL_GPL vmlinux 0x7c3e736a rcu_nocb_cpu_offload -EXPORT_SYMBOL_GPL vmlinux 0x7c3f7337 acpi_dma_simple_xlate -EXPORT_SYMBOL_GPL vmlinux 0x7c423706 pm_clk_remove -EXPORT_SYMBOL_GPL vmlinux 0x7c4c5c55 gpiod_set_raw_array_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0x7c5846ac acpi_bind_one -EXPORT_SYMBOL_GPL vmlinux 0x7c5f3711 ioasid_unregister_allocator -EXPORT_SYMBOL_GPL vmlinux 0x7c626556 list_lru_destroy -EXPORT_SYMBOL_GPL vmlinux 0x7c6f49f9 mmu_interval_notifier_insert_locked -EXPORT_SYMBOL_GPL vmlinux 0x7c7aa733 bsg_register_queue -EXPORT_SYMBOL_GPL vmlinux 0x7c7e0c5e of_gen_pool_get -EXPORT_SYMBOL_GPL vmlinux 0x7c983a5d dmi_walk -EXPORT_SYMBOL_GPL vmlinux 0x7c9a7371 clk_prepare -EXPORT_SYMBOL_GPL vmlinux 0x7c9c8285 clk_mux_ops -EXPORT_SYMBOL_GPL vmlinux 0x7c9dd7fd fb_deferred_io_open -EXPORT_SYMBOL_GPL vmlinux 0x7ca64a0b __cookie_v4_init_sequence -EXPORT_SYMBOL_GPL vmlinux 0x7ca85256 ms_hyperv -EXPORT_SYMBOL_GPL vmlinux 0x7cade18e device_destroy -EXPORT_SYMBOL_GPL vmlinux 0x7cb803de btree_grim_visitor -EXPORT_SYMBOL_GPL vmlinux 0x7cc3d055 unregister_hw_breakpoint -EXPORT_SYMBOL_GPL vmlinux 0x7cceaf92 zs_pool_stats -EXPORT_SYMBOL_GPL vmlinux 0x7cd6f042 cpufreq_get_current_driver -EXPORT_SYMBOL_GPL vmlinux 0x7cdabc0b dm_internal_resume -EXPORT_SYMBOL_GPL vmlinux 0x7ce67ba6 iommu_present -EXPORT_SYMBOL_GPL vmlinux 0x7ce93f2f kick_process -EXPORT_SYMBOL_GPL vmlinux 0x7ceaf0d5 generic_handle_irq -EXPORT_SYMBOL_GPL vmlinux 0x7cee6e00 mtk_eint_do_init -EXPORT_SYMBOL_GPL vmlinux 0x7cf68330 blkg_conf_prep -EXPORT_SYMBOL_GPL vmlinux 0x7d00c65b nd_synchronize -EXPORT_SYMBOL_GPL vmlinux 0x7d0978e7 regmap_parse_val -EXPORT_SYMBOL_GPL vmlinux 0x7d0dad37 sk_msg_return -EXPORT_SYMBOL_GPL vmlinux 0x7d1bb1d4 tnum_strn -EXPORT_SYMBOL_GPL vmlinux 0x7d2149b5 ahci_reset_em -EXPORT_SYMBOL_GPL vmlinux 0x7d275897 altr_sysmgr_regmap_lookup_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0x7d40c2da devm_device_add_groups -EXPORT_SYMBOL_GPL vmlinux 0x7d471321 zynqmp_pm_pinctrl_release -EXPORT_SYMBOL_GPL vmlinux 0x7d491683 free_iova_fast -EXPORT_SYMBOL_GPL vmlinux 0x7d566857 rdev_get_name -EXPORT_SYMBOL_GPL vmlinux 0x7d59dd46 pm_wq -EXPORT_SYMBOL_GPL vmlinux 0x7d6024e7 rio_request_inb_pwrite -EXPORT_SYMBOL_GPL vmlinux 0x7d75e3d0 tty_set_ldisc -EXPORT_SYMBOL_GPL vmlinux 0x7d770d96 crypto_larval_kill -EXPORT_SYMBOL_GPL vmlinux 0x7d7958c8 k3_udma_glue_tx_get_dma_device -EXPORT_SYMBOL_GPL vmlinux 0x7d7aa5f5 metadata_dst_alloc -EXPORT_SYMBOL_GPL vmlinux 0x7d843f1c regulator_force_disable -EXPORT_SYMBOL_GPL vmlinux 0x7dbc4bf1 bio_start_io_acct -EXPORT_SYMBOL_GPL vmlinux 0x7dca442b usb_hcd_poll_rh_status -EXPORT_SYMBOL_GPL vmlinux 0x7dcdb18f acpi_subsys_runtime_suspend -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 0x7debebce rio_add_mport_pw_handler -EXPORT_SYMBOL_GPL vmlinux 0x7dfee870 badblocks_exit -EXPORT_SYMBOL_GPL vmlinux 0x7e00d9b3 rio_mport_chk_dev_access -EXPORT_SYMBOL_GPL vmlinux 0x7e0795dd devm_of_phy_get_by_index -EXPORT_SYMBOL_GPL vmlinux 0x7e0c8da8 relay_reset -EXPORT_SYMBOL_GPL vmlinux 0x7e1de5b8 rockchip_clk_register_armclk -EXPORT_SYMBOL_GPL vmlinux 0x7e1fdafe fuse_conn_init -EXPORT_SYMBOL_GPL vmlinux 0x7e35bee6 of_genpd_add_subdomain -EXPORT_SYMBOL_GPL vmlinux 0x7e3bdecd __ftrace_vprintk -EXPORT_SYMBOL_GPL vmlinux 0x7e4cc790 virtqueue_get_used_addr -EXPORT_SYMBOL_GPL vmlinux 0x7e5ad55f of_dma_configure_id -EXPORT_SYMBOL_GPL vmlinux 0x7e5db80b pstore_name_to_type -EXPORT_SYMBOL_GPL vmlinux 0x7e64181d usb_calc_bus_time -EXPORT_SYMBOL_GPL vmlinux 0x7e65b553 ata_sas_slave_configure -EXPORT_SYMBOL_GPL vmlinux 0x7e68038e sysfs_change_owner -EXPORT_SYMBOL_GPL vmlinux 0x7e6edd14 devm_create_dev_dax -EXPORT_SYMBOL_GPL vmlinux 0x7e6fcc43 dma_buf_mmap -EXPORT_SYMBOL_GPL vmlinux 0x7e7a47c9 pci_acpi_clear_companion_lookup_hook -EXPORT_SYMBOL_GPL vmlinux 0x7e7b0da9 vfs_setlease -EXPORT_SYMBOL_GPL vmlinux 0x7e7e3f58 ring_buffer_reset_cpu -EXPORT_SYMBOL_GPL vmlinux 0x7e8d8619 usb_anchor_empty -EXPORT_SYMBOL_GPL vmlinux 0x7e917894 __SCK__tp_func_unmap -EXPORT_SYMBOL_GPL vmlinux 0x7ea467d8 shmem_truncate_range -EXPORT_SYMBOL_GPL vmlinux 0x7ea75c24 __wake_up_locked_key_bookmark -EXPORT_SYMBOL_GPL vmlinux 0x7eaa8477 addrconf_add_linklocal -EXPORT_SYMBOL_GPL vmlinux 0x7eaf6b9b __fput_sync -EXPORT_SYMBOL_GPL vmlinux 0x7eb1795e __tracepoint_detach_device_from_domain -EXPORT_SYMBOL_GPL vmlinux 0x7eb6e8d4 devm_nvdimm_memremap -EXPORT_SYMBOL_GPL vmlinux 0x7eb808d0 add_cpu -EXPORT_SYMBOL_GPL vmlinux 0x7ebbc1e5 task_cgroup_path -EXPORT_SYMBOL_GPL vmlinux 0x7ebccfa8 regmap_fields_update_bits_base -EXPORT_SYMBOL_GPL vmlinux 0x7ec814de inet_hashinfo_init -EXPORT_SYMBOL_GPL vmlinux 0x7ed4d41d devm_clk_hw_register_fixed_factor -EXPORT_SYMBOL_GPL vmlinux 0x7ee6bbc1 __dev_change_net_namespace -EXPORT_SYMBOL_GPL vmlinux 0x7ee88076 ata_host_register -EXPORT_SYMBOL_GPL vmlinux 0x7eea6b8b pcap_adc_async -EXPORT_SYMBOL_GPL vmlinux 0x7efb8bf5 vtime_guest_exit -EXPORT_SYMBOL_GPL vmlinux 0x7f027b17 nfs42_ssc_register -EXPORT_SYMBOL_GPL vmlinux 0x7f0869a4 of_resolve_phandles -EXPORT_SYMBOL_GPL vmlinux 0x7f088ee7 regmap_field_alloc -EXPORT_SYMBOL_GPL vmlinux 0x7f22c9c0 clk_hw_get_name -EXPORT_SYMBOL_GPL vmlinux 0x7f2be710 __spi_register_driver -EXPORT_SYMBOL_GPL vmlinux 0x7f300c7e pci_create_root_bus -EXPORT_SYMBOL_GPL vmlinux 0x7f36fef7 ata_pci_bmdma_init_one -EXPORT_SYMBOL_GPL vmlinux 0x7f47f59b vfs_submount -EXPORT_SYMBOL_GPL vmlinux 0x7f5fd3cb nd_region_provider_data -EXPORT_SYMBOL_GPL vmlinux 0x7f6cee89 rhashtable_free_and_destroy -EXPORT_SYMBOL_GPL vmlinux 0x7f7cbc64 ip_tunnel_need_metadata -EXPORT_SYMBOL_GPL vmlinux 0x7f7f096a dma_need_sync -EXPORT_SYMBOL_GPL vmlinux 0x7fa2ffd6 usb_unlink_urb -EXPORT_SYMBOL_GPL vmlinux 0x7fa96509 erst_get_record_id_next -EXPORT_SYMBOL_GPL vmlinux 0x7fb3f5b1 led_blink_set_oneshot -EXPORT_SYMBOL_GPL vmlinux 0x7fbb3d64 wbt_disable_default -EXPORT_SYMBOL_GPL vmlinux 0x7fcfd56a usb_anchor_urb -EXPORT_SYMBOL_GPL vmlinux 0x7fd80e66 ip6_sk_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0x7fd9a47c da9052_free_irq -EXPORT_SYMBOL_GPL vmlinux 0x7fdbacc1 dma_buf_vunmap -EXPORT_SYMBOL_GPL vmlinux 0x7fe21972 da903x_set_bits -EXPORT_SYMBOL_GPL vmlinux 0x7ff19c40 zynqmp_pm_set_requirement -EXPORT_SYMBOL_GPL vmlinux 0x7ff62ec9 dm_hold -EXPORT_SYMBOL_GPL vmlinux 0x7ffe54bb pci_epf_add_vepf -EXPORT_SYMBOL_GPL vmlinux 0x801330ce regmap_raw_read -EXPORT_SYMBOL_GPL vmlinux 0x80135182 k3_ringacc_ring_pop_tail -EXPORT_SYMBOL_GPL vmlinux 0x8035bed7 rockchip_clk_protect_critical -EXPORT_SYMBOL_GPL vmlinux 0x803689fc shash_ahash_digest -EXPORT_SYMBOL_GPL vmlinux 0x805667cf devlink_fmsg_u64_put -EXPORT_SYMBOL_GPL vmlinux 0x8057b0de usb_remove_hcd -EXPORT_SYMBOL_GPL vmlinux 0x806327ea imx_clk_hw_cpu -EXPORT_SYMBOL_GPL vmlinux 0x806fd4f5 power_supply_external_power_changed -EXPORT_SYMBOL_GPL vmlinux 0x8072e77e dst_blackhole_mtu -EXPORT_SYMBOL_GPL vmlinux 0x80741aea regulator_map_voltage_linear_range -EXPORT_SYMBOL_GPL vmlinux 0x807424d4 iommu_aux_attach_device -EXPORT_SYMBOL_GPL vmlinux 0x807766ea usb_scuttle_anchored_urbs -EXPORT_SYMBOL_GPL vmlinux 0x807fdcc4 call_rcu_tasks_rude -EXPORT_SYMBOL_GPL vmlinux 0x808d6be0 usb_ifnum_to_if -EXPORT_SYMBOL_GPL vmlinux 0x808ec1a3 crypto_alg_tested -EXPORT_SYMBOL_GPL vmlinux 0x80a362e8 crypto_req_done -EXPORT_SYMBOL_GPL vmlinux 0x80badff4 __tracepoint_block_unplug -EXPORT_SYMBOL_GPL vmlinux 0x80bf5a55 gpiod_get_from_of_node -EXPORT_SYMBOL_GPL vmlinux 0x80c3beef crypto_register_scomps -EXPORT_SYMBOL_GPL vmlinux 0x80c4c994 dma_can_mmap -EXPORT_SYMBOL_GPL vmlinux 0x80c68137 nf_log_buf_close -EXPORT_SYMBOL_GPL vmlinux 0x80c8199c security_inode_mkdir -EXPORT_SYMBOL_GPL vmlinux 0x80cd8c9c devlink_port_unregister -EXPORT_SYMBOL_GPL vmlinux 0x80d2e96b list_lru_walk_one -EXPORT_SYMBOL_GPL vmlinux 0x80d5e57a mpi_free -EXPORT_SYMBOL_GPL vmlinux 0x80e255a2 dev_pm_opp_set_sharing_cpus -EXPORT_SYMBOL_GPL vmlinux 0x80e723fc scsi_host_complete_all_commands -EXPORT_SYMBOL_GPL vmlinux 0x80f23559 of_property_read_variable_u8_array -EXPORT_SYMBOL_GPL vmlinux 0x80f96648 user_read -EXPORT_SYMBOL_GPL vmlinux 0x80fc8934 ata_bmdma_status -EXPORT_SYMBOL_GPL vmlinux 0x811dc334 usb_unregister_notify -EXPORT_SYMBOL_GPL vmlinux 0x813141a1 devres_find -EXPORT_SYMBOL_GPL vmlinux 0x8132e8c0 dma_buf_fd -EXPORT_SYMBOL_GPL vmlinux 0x81388d09 max8997_bulk_read -EXPORT_SYMBOL_GPL vmlinux 0x813cdf4a __free_iova -EXPORT_SYMBOL_GPL vmlinux 0x813fdda9 efivars_register -EXPORT_SYMBOL_GPL vmlinux 0x814e2386 kcpustat_field -EXPORT_SYMBOL_GPL vmlinux 0x815588a6 clk_enable -EXPORT_SYMBOL_GPL vmlinux 0x815792f3 i2c_root_adapter -EXPORT_SYMBOL_GPL vmlinux 0x815a055b ehci_init_driver -EXPORT_SYMBOL_GPL vmlinux 0x815d2c75 cpufreq_dbs_governor_stop -EXPORT_SYMBOL_GPL vmlinux 0x815fda83 sed_ioctl -EXPORT_SYMBOL_GPL vmlinux 0x816a41ca cpufreq_update_limits -EXPORT_SYMBOL_GPL vmlinux 0x81735507 wm831x_auxadc_read_uv -EXPORT_SYMBOL_GPL vmlinux 0x8176fac3 class_destroy -EXPORT_SYMBOL_GPL vmlinux 0x8180cede asn1_encode_sequence -EXPORT_SYMBOL_GPL vmlinux 0x819d72cb klist_iter_exit -EXPORT_SYMBOL_GPL vmlinux 0x81a352f9 of_address_to_resource -EXPORT_SYMBOL_GPL vmlinux 0x81a7f541 percpu_ref_init -EXPORT_SYMBOL_GPL vmlinux 0x81aa78d8 zynqmp_pm_aes_engine -EXPORT_SYMBOL_GPL vmlinux 0x81aad68b of_get_pci_domain_nr -EXPORT_SYMBOL_GPL vmlinux 0x81ab484a devm_regulator_bulk_get -EXPORT_SYMBOL_GPL vmlinux 0x81af6dab devm_thermal_add_hwmon_sysfs -EXPORT_SYMBOL_GPL vmlinux 0x81b03377 efivar_entry_set_safe -EXPORT_SYMBOL_GPL vmlinux 0x81cb8a89 tpm_pm_suspend -EXPORT_SYMBOL_GPL vmlinux 0x81d0fa09 pm_runtime_no_callbacks -EXPORT_SYMBOL_GPL vmlinux 0x81db15d3 __devm_of_phy_provider_register -EXPORT_SYMBOL_GPL vmlinux 0x81e2bdf4 generic_handle_irq_safe -EXPORT_SYMBOL_GPL vmlinux 0x81e539a5 mtk_pinconf_bias_disable_get -EXPORT_SYMBOL_GPL vmlinux 0x81e87e96 meson_clk_pll_ro_ops -EXPORT_SYMBOL_GPL vmlinux 0x81f372a2 unregister_ftrace_export -EXPORT_SYMBOL_GPL vmlinux 0x81f5bf9a power_supply_put -EXPORT_SYMBOL_GPL vmlinux 0x81fbfc67 pci_epc_multi_mem_init -EXPORT_SYMBOL_GPL vmlinux 0x82092899 badrange_forget -EXPORT_SYMBOL_GPL vmlinux 0x820c5153 netlink_remove_tap -EXPORT_SYMBOL_GPL vmlinux 0x8218109c skb_cow_data -EXPORT_SYMBOL_GPL vmlinux 0x8220a38e k3_ringacc_get_ring_id -EXPORT_SYMBOL_GPL vmlinux 0x8220c04c xhci_reset_bandwidth -EXPORT_SYMBOL_GPL vmlinux 0x82226c53 pinctrl_unregister_mappings -EXPORT_SYMBOL_GPL vmlinux 0x823635fa platform_device_put -EXPORT_SYMBOL_GPL vmlinux 0x823d8dc9 of_platform_depopulate -EXPORT_SYMBOL_GPL vmlinux 0x823eae06 blocking_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0x826581bc regmap_field_bulk_free -EXPORT_SYMBOL_GPL vmlinux 0x8267d710 fsl_mc_bus_dpdmux_type -EXPORT_SYMBOL_GPL vmlinux 0x826ddb83 crypto_stats_aead_encrypt -EXPORT_SYMBOL_GPL vmlinux 0x827e61f8 acpi_has_watchdog -EXPORT_SYMBOL_GPL vmlinux 0x8281bbe3 gpiochip_add_data_with_key -EXPORT_SYMBOL_GPL vmlinux 0x828e22f4 hrtimer_forward -EXPORT_SYMBOL_GPL vmlinux 0x82a7f89f scmi_protocol_unregister -EXPORT_SYMBOL_GPL vmlinux 0x82a80545 __SCK__tp_func_fdb_delete -EXPORT_SYMBOL_GPL vmlinux 0x82ac474f skcipher_walk_async -EXPORT_SYMBOL_GPL vmlinux 0x82b1cb63 bpf_verifier_log_write -EXPORT_SYMBOL_GPL vmlinux 0x82bbf30b __tracepoint_map -EXPORT_SYMBOL_GPL vmlinux 0x82becc8a edac_get_sysfs_subsys -EXPORT_SYMBOL_GPL vmlinux 0x82c5d5eb led_set_brightness -EXPORT_SYMBOL_GPL vmlinux 0x82ce6c0c da9052_request_irq -EXPORT_SYMBOL_GPL vmlinux 0x82d79b51 sysctl_vfs_cache_pressure -EXPORT_SYMBOL_GPL vmlinux 0x82ee3ec6 debugfs_rename -EXPORT_SYMBOL_GPL vmlinux 0x82f57d4c fwnode_graph_get_remote_port -EXPORT_SYMBOL_GPL vmlinux 0x82f8f167 ethnl_cable_test_finished -EXPORT_SYMBOL_GPL vmlinux 0x82ff0fea gpiochip_line_is_valid -EXPORT_SYMBOL_GPL vmlinux 0x830971f6 call_switchdev_blocking_notifiers -EXPORT_SYMBOL_GPL vmlinux 0x83202334 alloc_iova_fast -EXPORT_SYMBOL_GPL vmlinux 0x8332ed84 nvmem_cell_read_u32 -EXPORT_SYMBOL_GPL vmlinux 0x8339df73 klist_add_behind -EXPORT_SYMBOL_GPL vmlinux 0x8344b1a8 ata_scsi_port_error_handler -EXPORT_SYMBOL_GPL vmlinux 0x8349a895 nvmem_device_put -EXPORT_SYMBOL_GPL vmlinux 0x8353dfff acpi_os_get_iomem -EXPORT_SYMBOL_GPL vmlinux 0x835cdf9f ncsi_vlan_rx_add_vid -EXPORT_SYMBOL_GPL vmlinux 0x836efb6b devm_kstrdup -EXPORT_SYMBOL_GPL vmlinux 0x8376ecaa shash_ahash_update -EXPORT_SYMBOL_GPL vmlinux 0x8382df13 i2c_slave_unregister -EXPORT_SYMBOL_GPL vmlinux 0x838b5442 devm_hwspin_lock_register -EXPORT_SYMBOL_GPL vmlinux 0x838bcbc6 sysfs_remove_file_self -EXPORT_SYMBOL_GPL vmlinux 0x838c495d kstrdup_quotable_cmdline -EXPORT_SYMBOL_GPL vmlinux 0x83a3f087 blkdev_zone_mgmt -EXPORT_SYMBOL_GPL vmlinux 0x83a58008 bpf_sk_storage_diag_put -EXPORT_SYMBOL_GPL vmlinux 0x83bc43a2 ip_fib_metrics_init -EXPORT_SYMBOL_GPL vmlinux 0x83cd45de pm_genpd_init -EXPORT_SYMBOL_GPL vmlinux 0x84074c01 lwtunnel_encap_add_ops -EXPORT_SYMBOL_GPL vmlinux 0x84106f36 devlink_trap_ctx_priv -EXPORT_SYMBOL_GPL vmlinux 0x84129fd2 clk_hw_unregister_mux -EXPORT_SYMBOL_GPL vmlinux 0x841ff744 skb_zerocopy_headlen -EXPORT_SYMBOL_GPL vmlinux 0x84264ced fs_umode_to_ftype -EXPORT_SYMBOL_GPL vmlinux 0x842f046d usb_poison_anchored_urbs -EXPORT_SYMBOL_GPL vmlinux 0x84379d67 bsg_job_done -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 0x84545fcf sdio_writeb -EXPORT_SYMBOL_GPL vmlinux 0x8458649d dev_pm_qos_hide_latency_limit -EXPORT_SYMBOL_GPL vmlinux 0x845dbf3b scatterwalk_map_and_copy -EXPORT_SYMBOL_GPL vmlinux 0x8462cb62 atapi_cmd_type -EXPORT_SYMBOL_GPL vmlinux 0x847e5382 devm_request_free_mem_region -EXPORT_SYMBOL_GPL vmlinux 0x848f1fac timer_unstable_counter_workaround -EXPORT_SYMBOL_GPL vmlinux 0x84a5a2e7 fwnode_get_next_child_node -EXPORT_SYMBOL_GPL vmlinux 0x84a8d0eb of_changeset_revert -EXPORT_SYMBOL_GPL vmlinux 0x84ac4973 of_pci_dma_range_parser_init -EXPORT_SYMBOL_GPL vmlinux 0x84c018c7 nvdimm_provider_data -EXPORT_SYMBOL_GPL vmlinux 0x84c1a96c get_current_tty -EXPORT_SYMBOL_GPL vmlinux 0x84d113a3 power_supply_am_i_supplied -EXPORT_SYMBOL_GPL vmlinux 0x84d3d966 ata_host_resume -EXPORT_SYMBOL_GPL vmlinux 0x84d66f3e gpiod_get_optional -EXPORT_SYMBOL_GPL vmlinux 0x84dccc7e pin_user_pages_fast_only -EXPORT_SYMBOL_GPL vmlinux 0x84de3b6a blk_freeze_queue_start -EXPORT_SYMBOL_GPL vmlinux 0x84e9e891 dev_pm_domain_set -EXPORT_SYMBOL_GPL vmlinux 0x84ef27f5 synth_event_add_fields -EXPORT_SYMBOL_GPL vmlinux 0x84fd0a9a lwtunnel_state_alloc -EXPORT_SYMBOL_GPL vmlinux 0x850564b6 phy_configure -EXPORT_SYMBOL_GPL vmlinux 0x8506baa8 clk_unregister_gate -EXPORT_SYMBOL_GPL vmlinux 0x850bb6db devlink_health_reporter_destroy -EXPORT_SYMBOL_GPL vmlinux 0x851e6003 usb_phy_roothub_calibrate -EXPORT_SYMBOL_GPL vmlinux 0x851fe124 __SCK__tp_func_fib6_table_lookup -EXPORT_SYMBOL_GPL vmlinux 0x85350def sdio_retune_release -EXPORT_SYMBOL_GPL vmlinux 0x8541d2e6 dmaengine_desc_get_metadata_ptr -EXPORT_SYMBOL_GPL vmlinux 0x8548ce57 pinmux_generic_get_function -EXPORT_SYMBOL_GPL vmlinux 0x854c3765 devm_kmalloc -EXPORT_SYMBOL_GPL vmlinux 0x854dafcb tcp_reno_cong_avoid -EXPORT_SYMBOL_GPL vmlinux 0x85540ebc nvmem_cell_put -EXPORT_SYMBOL_GPL vmlinux 0x8557691e devlink_port_health_reporter_create -EXPORT_SYMBOL_GPL vmlinux 0x855941fc gpiochip_irq_domain_deactivate -EXPORT_SYMBOL_GPL vmlinux 0x8560da43 kthread_queue_delayed_work -EXPORT_SYMBOL_GPL vmlinux 0x856ad4c1 rockchip_pcie_get_phys -EXPORT_SYMBOL_GPL vmlinux 0x856b2181 tty_buffer_space_avail -EXPORT_SYMBOL_GPL vmlinux 0x85862277 ioasid_find -EXPORT_SYMBOL_GPL vmlinux 0x8586ed25 perf_event_sysfs_show -EXPORT_SYMBOL_GPL vmlinux 0x858e9ddc security_file_permission -EXPORT_SYMBOL_GPL vmlinux 0x85934c01 devm_blk_ksm_init -EXPORT_SYMBOL_GPL vmlinux 0x85935a61 acpi_dev_irq_flags -EXPORT_SYMBOL_GPL vmlinux 0x85a3c7bc dev_pm_opp_find_level_exact -EXPORT_SYMBOL_GPL vmlinux 0x85c54b61 efivar_validate -EXPORT_SYMBOL_GPL vmlinux 0x85e763fd clockevent_delta2ns -EXPORT_SYMBOL_GPL vmlinux 0x85eed1be iopf_queue_discard_partial -EXPORT_SYMBOL_GPL vmlinux 0x861c9787 __rio_local_read_config_8 -EXPORT_SYMBOL_GPL vmlinux 0x862258db timecounter_init -EXPORT_SYMBOL_GPL vmlinux 0x8626ea14 devm_namespace_disable -EXPORT_SYMBOL_GPL vmlinux 0x862bb17b linear_range_values_in_range_array -EXPORT_SYMBOL_GPL vmlinux 0x86384b2a scsi_build_sense -EXPORT_SYMBOL_GPL vmlinux 0x864556c2 tegra_agic_clear_pending -EXPORT_SYMBOL_GPL vmlinux 0x8646835d gpiochip_generic_request -EXPORT_SYMBOL_GPL vmlinux 0x86477c56 of_genpd_add_provider_simple -EXPORT_SYMBOL_GPL vmlinux 0x8657b17d of_dma_controller_free -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 0x86700220 acpi_get_cpuid -EXPORT_SYMBOL_GPL vmlinux 0x86705b93 device_add -EXPORT_SYMBOL_GPL vmlinux 0x86730721 crypto_alloc_akcipher -EXPORT_SYMBOL_GPL vmlinux 0x8677245d unregister_switchdev_blocking_notifier -EXPORT_SYMBOL_GPL vmlinux 0x8684b522 devm_tegra_memory_controller_get -EXPORT_SYMBOL_GPL vmlinux 0x868784cb __symbol_get -EXPORT_SYMBOL_GPL vmlinux 0x868fe87a acct_bioset_init -EXPORT_SYMBOL_GPL vmlinux 0x869553e3 iomap_page_mkwrite -EXPORT_SYMBOL_GPL vmlinux 0x869a6c0b page_cache_sync_ra -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 0x86c83023 vp_modern_set_queue_size -EXPORT_SYMBOL_GPL vmlinux 0x86c961b3 __set_dax_synchronous -EXPORT_SYMBOL_GPL vmlinux 0x86d07d27 dev_pm_opp_of_register_em -EXPORT_SYMBOL_GPL vmlinux 0x86db187c ahci_save_initial_config -EXPORT_SYMBOL_GPL vmlinux 0x86dda6ef rtm_getroute_parse_ip_proto -EXPORT_SYMBOL_GPL vmlinux 0x86e18ae4 fwnode_property_read_string_array -EXPORT_SYMBOL_GPL vmlinux 0x86e57043 pm_wakeup_dev_event -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 0x871195d4 of_i2c_get_board_info -EXPORT_SYMBOL_GPL vmlinux 0x871c997f of_clk_hw_onecell_get -EXPORT_SYMBOL_GPL vmlinux 0x872ccfd9 __inet_twsk_schedule -EXPORT_SYMBOL_GPL vmlinux 0x8741d0b4 __traceiter_rpm_return_int -EXPORT_SYMBOL_GPL vmlinux 0x874aadc3 fb_deferred_io_fsync -EXPORT_SYMBOL_GPL vmlinux 0x874cb238 skb_segment_list -EXPORT_SYMBOL_GPL vmlinux 0x874cee67 mbox_send_message -EXPORT_SYMBOL_GPL vmlinux 0x875582b7 nvmem_del_cell_table -EXPORT_SYMBOL_GPL vmlinux 0x87619447 of_phy_put -EXPORT_SYMBOL_GPL vmlinux 0x87640f36 devm_regmap_field_bulk_alloc -EXPORT_SYMBOL_GPL vmlinux 0x8772ae37 iommu_fwspec_init -EXPORT_SYMBOL_GPL vmlinux 0x877a890e iommu_get_domain_for_dev -EXPORT_SYMBOL_GPL vmlinux 0x879d6796 icmp_build_probe -EXPORT_SYMBOL_GPL vmlinux 0x879e8cde ahci_platform_disable_resources -EXPORT_SYMBOL_GPL vmlinux 0x87aed5c6 acpi_dev_add_driver_gpios -EXPORT_SYMBOL_GPL vmlinux 0x87b0404f fsl_mc_bus_dpseci_type -EXPORT_SYMBOL_GPL vmlinux 0x87ba7229 dev_coredumpsg -EXPORT_SYMBOL_GPL vmlinux 0x87c6426b restore_online_page_callback -EXPORT_SYMBOL_GPL vmlinux 0x87ce0be2 free_iova -EXPORT_SYMBOL_GPL vmlinux 0x87e588fe input_ff_erase -EXPORT_SYMBOL_GPL vmlinux 0x87e8c184 __blkg_prfill_u64 -EXPORT_SYMBOL_GPL vmlinux 0x87ecd54f usb_acpi_power_manageable -EXPORT_SYMBOL_GPL vmlinux 0x8810e36e pci_bridge_emul_conf_read -EXPORT_SYMBOL_GPL vmlinux 0x88212229 icc_sync_state -EXPORT_SYMBOL_GPL vmlinux 0x885528a6 ring_buffer_discard_commit -EXPORT_SYMBOL_GPL vmlinux 0x8874bf2f serial8250_rpm_put_tx -EXPORT_SYMBOL_GPL vmlinux 0x8889150b ahci_platform_disable_clks -EXPORT_SYMBOL_GPL vmlinux 0x88ab6fe3 kgdb_active -EXPORT_SYMBOL_GPL vmlinux 0x88b4ae92 ring_buffer_normalize_time_stamp -EXPORT_SYMBOL_GPL vmlinux 0x88b7421a tc3589x_reg_write -EXPORT_SYMBOL_GPL vmlinux 0x88c113fe gpiod_cansleep -EXPORT_SYMBOL_GPL vmlinux 0x88cd7a9a k3_ringacc_ring_get_occ -EXPORT_SYMBOL_GPL vmlinux 0x88d99e7a bpf_trace_run10 -EXPORT_SYMBOL_GPL vmlinux 0x88fe4e6a strp_process -EXPORT_SYMBOL_GPL vmlinux 0x8902d862 ata_qc_complete_multiple -EXPORT_SYMBOL_GPL vmlinux 0x890d341d pm_generic_thaw_early -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 0x8934ba88 usb_register_device_driver -EXPORT_SYMBOL_GPL vmlinux 0x893abbdd devlink_fmsg_u32_pair_put -EXPORT_SYMBOL_GPL vmlinux 0x8943ad1e tps65912_device_exit -EXPORT_SYMBOL_GPL vmlinux 0x894514a9 __xenbus_register_backend -EXPORT_SYMBOL_GPL vmlinux 0x8945ef29 vp_modern_get_features -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 0x89685ede bus_sort_breadthfirst -EXPORT_SYMBOL_GPL vmlinux 0x8975c97b power_supply_put_battery_info -EXPORT_SYMBOL_GPL vmlinux 0x899338b8 regmap_write -EXPORT_SYMBOL_GPL vmlinux 0x899938ad irq_gc_mask_clr_bit -EXPORT_SYMBOL_GPL vmlinux 0x89a4476d HYPERVISOR_multicall -EXPORT_SYMBOL_GPL vmlinux 0x89ae7aa0 rsa_parse_pub_key -EXPORT_SYMBOL_GPL vmlinux 0x89b080f3 mtk_pinconf_bias_disable_get_rev1 -EXPORT_SYMBOL_GPL vmlinux 0x89bbafc6 usb_register_notify -EXPORT_SYMBOL_GPL vmlinux 0x89c429e4 __tracepoint_mc_event -EXPORT_SYMBOL_GPL vmlinux 0x89c541ef trace_event_reg -EXPORT_SYMBOL_GPL vmlinux 0x89d1ade1 __bio_add_page -EXPORT_SYMBOL_GPL vmlinux 0x89e340cf acpi_bus_get_ejd -EXPORT_SYMBOL_GPL vmlinux 0x89e6b876 mtk_pinconf_adv_pull_set -EXPORT_SYMBOL_GPL vmlinux 0x89e7f16c of_dma_request_slave_channel -EXPORT_SYMBOL_GPL vmlinux 0x89ed4841 devlink_trap_groups_register -EXPORT_SYMBOL_GPL vmlinux 0x8a00ad3c skcipher_walk_complete -EXPORT_SYMBOL_GPL vmlinux 0x8a108cc8 bus_create_file -EXPORT_SYMBOL_GPL vmlinux 0x8a112e6e sprd_pinctrl_core_probe -EXPORT_SYMBOL_GPL vmlinux 0x8a171baf ping_common_sendmsg -EXPORT_SYMBOL_GPL vmlinux 0x8a17dc87 nvdimm_name -EXPORT_SYMBOL_GPL vmlinux 0x8a240bff __xas_next -EXPORT_SYMBOL_GPL vmlinux 0x8a25b5ed gpiochip_populate_parent_fwspec_twocell -EXPORT_SYMBOL_GPL vmlinux 0x8a3f84ba linear_range_get_selector_low -EXPORT_SYMBOL_GPL vmlinux 0x8a42fdbd ahci_handle_port_intr -EXPORT_SYMBOL_GPL vmlinux 0x8a45a555 acpi_unregister_wakeup_handler -EXPORT_SYMBOL_GPL vmlinux 0x8a554a36 mpc8xxx_spi_strmode -EXPORT_SYMBOL_GPL vmlinux 0x8a5cf7a7 dm_send_uevents -EXPORT_SYMBOL_GPL vmlinux 0x8a5d053d devm_ti_sci_get_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0x8a5d6abd dev_pm_opp_set_regulators -EXPORT_SYMBOL_GPL vmlinux 0x8a62b81b sfp_upstream_stop -EXPORT_SYMBOL_GPL vmlinux 0x8a7da0ff blk_ksm_register -EXPORT_SYMBOL_GPL vmlinux 0x8a83fb45 mpi_point_free_parts -EXPORT_SYMBOL_GPL vmlinux 0x8a8f6d79 i2c_acpi_find_bus_speed -EXPORT_SYMBOL_GPL vmlinux 0x8a99def0 wm8350_reg_unlock -EXPORT_SYMBOL_GPL vmlinux 0x8a9e0869 handle_mm_fault -EXPORT_SYMBOL_GPL vmlinux 0x8a9f049a nvmem_cell_read_variable_le_u32 -EXPORT_SYMBOL_GPL vmlinux 0x8aaf34d9 pci_epc_deinit_notify -EXPORT_SYMBOL_GPL vmlinux 0x8aaf8f17 pm_generic_suspend_late -EXPORT_SYMBOL_GPL vmlinux 0x8ab163bc find_pid_ns -EXPORT_SYMBOL_GPL vmlinux 0x8ab90787 sysfs_add_link_to_group -EXPORT_SYMBOL_GPL vmlinux 0x8ab91b2c hwspin_lock_free -EXPORT_SYMBOL_GPL vmlinux 0x8abacc47 get_max_files -EXPORT_SYMBOL_GPL vmlinux 0x8abe8e61 shmem_file_setup_with_mnt -EXPORT_SYMBOL_GPL vmlinux 0x8ac16a43 tegra_bpmp_request_mrq -EXPORT_SYMBOL_GPL vmlinux 0x8ac7f15e acpi_device_update_power -EXPORT_SYMBOL_GPL vmlinux 0x8acdf8cc hwspin_lock_get_id -EXPORT_SYMBOL_GPL vmlinux 0x8ad36b47 stmpe_set_altfunc -EXPORT_SYMBOL_GPL vmlinux 0x8addc9da crypto_shash_finup -EXPORT_SYMBOL_GPL vmlinux 0x8ade792a usb_for_each_dev -EXPORT_SYMBOL_GPL vmlinux 0x8afda06d pci_max_pasids -EXPORT_SYMBOL_GPL vmlinux 0x8b0d9956 hwmon_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0x8b0f1eb3 pci_epf_unregister_driver -EXPORT_SYMBOL_GPL vmlinux 0x8b11e268 __udp_enqueue_schedule_skb -EXPORT_SYMBOL_GPL vmlinux 0x8b149c36 clk_is_match -EXPORT_SYMBOL_GPL vmlinux 0x8b14bdc4 blk_mq_update_nr_hw_queues -EXPORT_SYMBOL_GPL vmlinux 0x8b3446b0 fscrypt_set_bio_crypt_ctx -EXPORT_SYMBOL_GPL vmlinux 0x8b3eb8cf pci_ioremap_bar -EXPORT_SYMBOL_GPL vmlinux 0x8b43876e of_reconfig_get_state_change -EXPORT_SYMBOL_GPL vmlinux 0x8b5a9e12 tegra_bpmp_put -EXPORT_SYMBOL_GPL vmlinux 0x8b5c1d80 crypto_grab_aead -EXPORT_SYMBOL_GPL vmlinux 0x8b630c76 usb_of_get_interface_node -EXPORT_SYMBOL_GPL vmlinux 0x8b650752 mtk_mutex_release -EXPORT_SYMBOL_GPL vmlinux 0x8b7a698b __tracepoint_xdp_exception -EXPORT_SYMBOL_GPL vmlinux 0x8b99c784 of_phandle_iterator_init -EXPORT_SYMBOL_GPL vmlinux 0x8ba0eb15 hv_set_vpreg -EXPORT_SYMBOL_GPL vmlinux 0x8ba5afe9 HYPERVISOR_memory_op -EXPORT_SYMBOL_GPL vmlinux 0x8bba7d85 tcp_ca_openreq_child -EXPORT_SYMBOL_GPL vmlinux 0x8bc5911a trace_event_buffer_commit -EXPORT_SYMBOL_GPL vmlinux 0x8bc8e3c6 pci_ecam_free -EXPORT_SYMBOL_GPL vmlinux 0x8bd632d6 pci_find_next_ht_capability -EXPORT_SYMBOL_GPL vmlinux 0x8bd8c768 tpm2_flush_context -EXPORT_SYMBOL_GPL vmlinux 0x8be2fc0b da9052_adc_read_temp -EXPORT_SYMBOL_GPL vmlinux 0x8beb2355 dw_pcie_host_init -EXPORT_SYMBOL_GPL vmlinux 0x8bed95e6 meson_clk_mpll_ro_ops -EXPORT_SYMBOL_GPL vmlinux 0x8bf5f379 k3_udma_glue_release_tx_chn -EXPORT_SYMBOL_GPL vmlinux 0x8bf8ae5f blkdev_nr_zones -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 0x8c20c19a of_property_read_u64_index -EXPORT_SYMBOL_GPL vmlinux 0x8c36e7dd dma_resv_wait_timeout -EXPORT_SYMBOL_GPL vmlinux 0x8c484409 gnttab_release_grant_reference -EXPORT_SYMBOL_GPL vmlinux 0x8c4e85e7 blkcg_root -EXPORT_SYMBOL_GPL vmlinux 0x8c5f8ef1 regcache_cache_bypass -EXPORT_SYMBOL_GPL vmlinux 0x8c743fb6 reset_control_status -EXPORT_SYMBOL_GPL vmlinux 0x8c74cb23 blk_mq_hctx_set_fq_lock_class -EXPORT_SYMBOL_GPL vmlinux 0x8c756633 genphy_c45_read_link -EXPORT_SYMBOL_GPL vmlinux 0x8c7e61ee genphy_c45_read_lpa -EXPORT_SYMBOL_GPL vmlinux 0x8c7f01af ata_pci_sff_init_host -EXPORT_SYMBOL_GPL vmlinux 0x8c832239 ipv6_proxy_select_ident -EXPORT_SYMBOL_GPL vmlinux 0x8c884111 irq_domain_free_irqs_parent -EXPORT_SYMBOL_GPL vmlinux 0x8c89e3b8 usb_phy_roothub_power_off -EXPORT_SYMBOL_GPL vmlinux 0x8c96bf37 fib_rules_unregister -EXPORT_SYMBOL_GPL vmlinux 0x8ca2e9a6 cgrp_dfl_root -EXPORT_SYMBOL_GPL vmlinux 0x8ca8fab7 hwspin_lock_register -EXPORT_SYMBOL_GPL vmlinux 0x8cb1ea9c to_nvdimm_bus -EXPORT_SYMBOL_GPL vmlinux 0x8cb5a38e k3_udma_glue_rx_flow_disable -EXPORT_SYMBOL_GPL vmlinux 0x8cb5b22c dev_pm_qos_expose_latency_limit -EXPORT_SYMBOL_GPL vmlinux 0x8cc8ba84 __fsnotify_parent -EXPORT_SYMBOL_GPL vmlinux 0x8ccbb033 usb_hub_find_child -EXPORT_SYMBOL_GPL vmlinux 0x8ce2d446 __tracepoint_block_rq_remap -EXPORT_SYMBOL_GPL vmlinux 0x8d05029f dev_pm_opp_get_sharing_cpus -EXPORT_SYMBOL_GPL vmlinux 0x8d0abf3a __tracepoint_io_page_fault -EXPORT_SYMBOL_GPL vmlinux 0x8d0ece5a xenbus_dev_is_online -EXPORT_SYMBOL_GPL vmlinux 0x8d10eeab pwm_put -EXPORT_SYMBOL_GPL vmlinux 0x8d1af6fa of_clk_hw_register -EXPORT_SYMBOL_GPL vmlinux 0x8d1b2bc8 transport_class_unregister -EXPORT_SYMBOL_GPL vmlinux 0x8d22bb58 iommu_group_alloc -EXPORT_SYMBOL_GPL vmlinux 0x8d3330b6 cpuacct_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x8d477dc9 rtnl_link_register -EXPORT_SYMBOL_GPL vmlinux 0x8d5c5601 pm_runtime_forbid -EXPORT_SYMBOL_GPL vmlinux 0x8d6f1373 rio_del_mport_pw_handler -EXPORT_SYMBOL_GPL vmlinux 0x8d7e3373 hwpoison_filter_dev_major -EXPORT_SYMBOL_GPL vmlinux 0x8d83a59b regmap_get_max_register -EXPORT_SYMBOL_GPL vmlinux 0x8d88ee64 sbitmap_queue_wake_up -EXPORT_SYMBOL_GPL vmlinux 0x8d8ad1ed usb_hc_died -EXPORT_SYMBOL_GPL vmlinux 0x8da1be05 kthread_cancel_work_sync -EXPORT_SYMBOL_GPL vmlinux 0x8da77bf7 devm_extcon_dev_free -EXPORT_SYMBOL_GPL vmlinux 0x8dae03a5 of_icc_get -EXPORT_SYMBOL_GPL vmlinux 0x8dafdded lwtunnel_valid_encap_type_attr -EXPORT_SYMBOL_GPL vmlinux 0x8db0978c security_path_link -EXPORT_SYMBOL_GPL vmlinux 0x8dbf7aaa privcmd_call -EXPORT_SYMBOL_GPL vmlinux 0x8dc88ef6 usb_register_driver -EXPORT_SYMBOL_GPL vmlinux 0x8dcb1331 pci_epc_add_epf -EXPORT_SYMBOL_GPL vmlinux 0x8dd1e234 key_type_encrypted -EXPORT_SYMBOL_GPL vmlinux 0x8dd218b0 icc_bulk_disable -EXPORT_SYMBOL_GPL vmlinux 0x8dddfa08 crypto_stats_get -EXPORT_SYMBOL_GPL vmlinux 0x8de6817a acpi_dev_resource_address_space -EXPORT_SYMBOL_GPL vmlinux 0x8deab222 vfs_lock_file -EXPORT_SYMBOL_GPL vmlinux 0x8e16419b trace_clock_local -EXPORT_SYMBOL_GPL vmlinux 0x8e22cf57 md_new_event -EXPORT_SYMBOL_GPL vmlinux 0x8e2bc40f fuse_dev_alloc -EXPORT_SYMBOL_GPL vmlinux 0x8e2c213a fat_dir_empty -EXPORT_SYMBOL_GPL vmlinux 0x8e3dee84 ata_cable_80wire -EXPORT_SYMBOL_GPL vmlinux 0x8e42ec54 xfrm_audit_state_replay -EXPORT_SYMBOL_GPL vmlinux 0x8e43feed xen_xenbus_fops -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 0x8e9ef47a blk_rq_prep_clone -EXPORT_SYMBOL_GPL vmlinux 0x8e9f6c0b clk_hw_unregister_divider -EXPORT_SYMBOL_GPL vmlinux 0x8e9ff950 regulator_desc_list_voltage_linear -EXPORT_SYMBOL_GPL vmlinux 0x8ea413e4 transport_remove_device -EXPORT_SYMBOL_GPL vmlinux 0x8ea64c3a tps6586x_update -EXPORT_SYMBOL_GPL vmlinux 0x8ea6dd3a __inet_lookup_established -EXPORT_SYMBOL_GPL vmlinux 0x8eacaf4c sata_link_scr_lpm -EXPORT_SYMBOL_GPL vmlinux 0x8ead800c user_free_preparse -EXPORT_SYMBOL_GPL vmlinux 0x8eb05202 badblocks_clear -EXPORT_SYMBOL_GPL vmlinux 0x8eb41916 cgroup_path_ns -EXPORT_SYMBOL_GPL vmlinux 0x8ebf361d of_genpd_add_provider_onecell -EXPORT_SYMBOL_GPL vmlinux 0x8ed055c0 ti_sci_inta_msi_get_virq -EXPORT_SYMBOL_GPL vmlinux 0x8ed41842 pci_pri_supported -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 0x8eefc11c i2c_dw_acpi_configure -EXPORT_SYMBOL_GPL vmlinux 0x8effa1ca dev_pm_opp_detach_genpd -EXPORT_SYMBOL_GPL vmlinux 0x8effb505 phy_gbit_features -EXPORT_SYMBOL_GPL vmlinux 0x8f052d9c platform_get_irq_byname -EXPORT_SYMBOL_GPL vmlinux 0x8f0748af rcu_expedite_gp -EXPORT_SYMBOL_GPL vmlinux 0x8f257b78 transport_add_device -EXPORT_SYMBOL_GPL vmlinux 0x8f25f1fd phy_put -EXPORT_SYMBOL_GPL vmlinux 0x8f2e82e3 acpi_dev_pm_attach -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 0x8f3e4d81 hypervisor_kobj -EXPORT_SYMBOL_GPL vmlinux 0x8f435a0f usb_unpoison_urb -EXPORT_SYMBOL_GPL vmlinux 0x8f46f52b iommu_unregister_device_fault_handler -EXPORT_SYMBOL_GPL vmlinux 0x8f475edb inode_dax -EXPORT_SYMBOL_GPL vmlinux 0x8f49c24e of_pm_clk_add_clk -EXPORT_SYMBOL_GPL vmlinux 0x8f51d1b7 devlink_port_type_clear -EXPORT_SYMBOL_GPL vmlinux 0x8f51ed55 dev_pm_opp_set_opp -EXPORT_SYMBOL_GPL vmlinux 0x8f5acff1 __pm_runtime_idle -EXPORT_SYMBOL_GPL vmlinux 0x8f60a2b5 __usb_create_hcd -EXPORT_SYMBOL_GPL vmlinux 0x8f6cee77 __round_jiffies_relative -EXPORT_SYMBOL_GPL vmlinux 0x8f731694 pinconf_generic_dt_free_map -EXPORT_SYMBOL_GPL vmlinux 0x8f786bee fs_umode_to_dtype -EXPORT_SYMBOL_GPL vmlinux 0x8f787582 irq_domain_create_hierarchy -EXPORT_SYMBOL_GPL vmlinux 0x8f7bc376 tegra_bpmp_mrq_return -EXPORT_SYMBOL_GPL vmlinux 0x8f7bd0a6 btree_init_mempool -EXPORT_SYMBOL_GPL vmlinux 0x8f7ddf98 i2c_generic_scl_recovery -EXPORT_SYMBOL_GPL vmlinux 0x8f81e17f mmu_notifier_get_locked -EXPORT_SYMBOL_GPL vmlinux 0x8f859a13 i2c_new_client_device -EXPORT_SYMBOL_GPL vmlinux 0x8f88ea1a dpbp_get_attributes -EXPORT_SYMBOL_GPL vmlinux 0x8f8c3a5f ata_sff_port_intr -EXPORT_SYMBOL_GPL vmlinux 0x8f97aefb devm_gpio_request -EXPORT_SYMBOL_GPL vmlinux 0x8f9af265 clk_hw_register -EXPORT_SYMBOL_GPL vmlinux 0x8fa7ff36 wm8350_block_write -EXPORT_SYMBOL_GPL vmlinux 0x8faa800d acpi_cpc_valid -EXPORT_SYMBOL_GPL vmlinux 0x8fc12788 software_node_unregister_node_group -EXPORT_SYMBOL_GPL vmlinux 0x8fc12f6c sdio_writel -EXPORT_SYMBOL_GPL vmlinux 0x8ff60436 mpi_ec_add_points -EXPORT_SYMBOL_GPL vmlinux 0x8ff791d2 cookie_tcp_reqsk_alloc -EXPORT_SYMBOL_GPL vmlinux 0x8ffd99a7 usb_phy_set_charger_current -EXPORT_SYMBOL_GPL vmlinux 0x8ffe792f tracepoint_probe_register_prio_may_exist -EXPORT_SYMBOL_GPL vmlinux 0x901439ba generic_device_group -EXPORT_SYMBOL_GPL vmlinux 0x902059cd usb_add_hcd -EXPORT_SYMBOL_GPL vmlinux 0x9032b558 blk_queue_zone_write_granularity -EXPORT_SYMBOL_GPL vmlinux 0x903b627c list_lru_isolate_move -EXPORT_SYMBOL_GPL vmlinux 0x904d82d2 gpiochip_line_is_open_source -EXPORT_SYMBOL_GPL vmlinux 0x9060152b transport_destroy_device -EXPORT_SYMBOL_GPL vmlinux 0x90672aaf cpufreq_disable_fast_switch -EXPORT_SYMBOL_GPL vmlinux 0x90688bcd devlink_info_driver_name_put -EXPORT_SYMBOL_GPL vmlinux 0x9069f3da l3mdev_link_scope_lookup -EXPORT_SYMBOL_GPL vmlinux 0x907013eb led_sysfs_enable -EXPORT_SYMBOL_GPL vmlinux 0x907a4bcf sysfs_create_mount_point -EXPORT_SYMBOL_GPL vmlinux 0x908c18a8 ata_wait_after_reset -EXPORT_SYMBOL_GPL vmlinux 0x908ddc3f find_asymmetric_key -EXPORT_SYMBOL_GPL vmlinux 0x9094949a input_ff_destroy -EXPORT_SYMBOL_GPL vmlinux 0x90a635c2 __pci_reset_function_locked -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 0x90c7b97c fscrypt_set_context -EXPORT_SYMBOL_GPL vmlinux 0x90c8498c apei_exec_write_register -EXPORT_SYMBOL_GPL vmlinux 0x90d937b4 __tracepoint_pelt_rt_tp -EXPORT_SYMBOL_GPL vmlinux 0x90e3abfa dev_forward_skb -EXPORT_SYMBOL_GPL vmlinux 0x90e9c27e subsys_find_device_by_id -EXPORT_SYMBOL_GPL vmlinux 0x90f51939 dev_pm_set_dedicated_wake_irq_reverse -EXPORT_SYMBOL_GPL vmlinux 0x90faf953 pinctrl_lookup_state -EXPORT_SYMBOL_GPL vmlinux 0x910bdf6b trace_seq_vprintf -EXPORT_SYMBOL_GPL vmlinux 0x9119c160 uart_xchar_out -EXPORT_SYMBOL_GPL vmlinux 0x9137a800 fwnode_property_get_reference_args -EXPORT_SYMBOL_GPL vmlinux 0x913a5329 fscrypt_ioctl_get_policy_ex -EXPORT_SYMBOL_GPL vmlinux 0x9140ade0 dprc_cleanup -EXPORT_SYMBOL_GPL vmlinux 0x9141cc91 crypto_unregister_rngs -EXPORT_SYMBOL_GPL vmlinux 0x91483d6f perf_event_create_kernel_counter -EXPORT_SYMBOL_GPL vmlinux 0x9152ef3a phy_pm_runtime_allow -EXPORT_SYMBOL_GPL vmlinux 0x9194e18f xenbus_mkdir -EXPORT_SYMBOL_GPL vmlinux 0x919505b9 fib_nh_common_release -EXPORT_SYMBOL_GPL vmlinux 0x91955a9f start_poll_synchronize_rcu -EXPORT_SYMBOL_GPL vmlinux 0x91ad0688 fsnotify_put_group -EXPORT_SYMBOL_GPL vmlinux 0x91b774a1 mpi_scanval -EXPORT_SYMBOL_GPL vmlinux 0x91bcc840 irq_domain_get_irq_data -EXPORT_SYMBOL_GPL vmlinux 0x91c6e5b0 pcap_to_irq -EXPORT_SYMBOL_GPL vmlinux 0x91c9313c acpi_gpio_get_io_resource -EXPORT_SYMBOL_GPL vmlinux 0x91cae331 vfs_fallocate -EXPORT_SYMBOL_GPL vmlinux 0x91d08c23 gpiod_set_array_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0x91e30809 HYPERVISOR_vm_assist -EXPORT_SYMBOL_GPL vmlinux 0x91e4fe25 do_take_over_console -EXPORT_SYMBOL_GPL vmlinux 0x91ea8726 asn1_encode_boolean -EXPORT_SYMBOL_GPL vmlinux 0x920cc389 visitorl -EXPORT_SYMBOL_GPL vmlinux 0x920dbefd dev_pm_opp_find_freq_floor -EXPORT_SYMBOL_GPL vmlinux 0x9210ba89 gpiod_direction_input -EXPORT_SYMBOL_GPL vmlinux 0x9210d9e5 shake_page -EXPORT_SYMBOL_GPL vmlinux 0x9211e3c3 dst_cache_set_ip4 -EXPORT_SYMBOL_GPL vmlinux 0x92295424 clk_register_gate -EXPORT_SYMBOL_GPL vmlinux 0x92348970 mtk_pinconf_bias_disable_set_rev1 -EXPORT_SYMBOL_GPL vmlinux 0x923e42aa sysfb_disable -EXPORT_SYMBOL_GPL vmlinux 0x923f7175 ipv6_opt_accepted -EXPORT_SYMBOL_GPL vmlinux 0x9241b358 __static_key_slow_dec_deferred -EXPORT_SYMBOL_GPL vmlinux 0x924c46f8 zs_unmap_object -EXPORT_SYMBOL_GPL vmlinux 0x924f162f ipv4_redirect -EXPORT_SYMBOL_GPL vmlinux 0x9259b8b3 xenbus_probe_devices -EXPORT_SYMBOL_GPL vmlinux 0x927487ea zynqmp_pm_read_ggs -EXPORT_SYMBOL_GPL vmlinux 0x92795da7 tty_get_icount -EXPORT_SYMBOL_GPL vmlinux 0x927b1a96 ata_dev_pair -EXPORT_SYMBOL_GPL vmlinux 0x9289a3b6 ncsi_unregister_dev -EXPORT_SYMBOL_GPL vmlinux 0x928ebcd4 register_ftrace_function -EXPORT_SYMBOL_GPL vmlinux 0x92adbf8b bus_for_each_dev -EXPORT_SYMBOL_GPL vmlinux 0x92b82aa4 meson_pmx_get_groups -EXPORT_SYMBOL_GPL vmlinux 0x92b8c78b hyperv_pcpu_output_arg -EXPORT_SYMBOL_GPL vmlinux 0x92c5a5e2 put_pid -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 0x93024d10 unix_outq_len -EXPORT_SYMBOL_GPL vmlinux 0x930ab533 k3_ringacc_request_ring -EXPORT_SYMBOL_GPL vmlinux 0x930b8793 unregister_asymmetric_key_parser -EXPORT_SYMBOL_GPL vmlinux 0x9315c7b2 raw_seq_start -EXPORT_SYMBOL_GPL vmlinux 0x9315d430 pm_generic_restore_noirq -EXPORT_SYMBOL_GPL vmlinux 0x9315e7d8 devm_regulator_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x93255b2b ring_buffer_lock_reserve -EXPORT_SYMBOL_GPL vmlinux 0x932c8d7a linear_range_get_value_array -EXPORT_SYMBOL_GPL vmlinux 0x9337bc7c __xdp_build_skb_from_frame -EXPORT_SYMBOL_GPL vmlinux 0x933c0795 of_irq_to_resource -EXPORT_SYMBOL_GPL vmlinux 0x933f75e0 usb_unlink_anchored_urbs -EXPORT_SYMBOL_GPL vmlinux 0x93556fdf efivar_entry_find -EXPORT_SYMBOL_GPL vmlinux 0x9355b6c6 fib_alias_hw_flags_set -EXPORT_SYMBOL_GPL vmlinux 0x935ec55f gpiod_direction_output_raw -EXPORT_SYMBOL_GPL vmlinux 0x9375d4c3 ip_icmp_error_rfc4884 -EXPORT_SYMBOL_GPL vmlinux 0x937860e5 inet_hash -EXPORT_SYMBOL_GPL vmlinux 0x937b45fe iommu_device_unlink -EXPORT_SYMBOL_GPL vmlinux 0x9387be89 spi_finalize_current_transfer -EXPORT_SYMBOL_GPL vmlinux 0x93993c50 dev_pm_opp_of_remove_table -EXPORT_SYMBOL_GPL vmlinux 0x939b1941 scsi_target_block -EXPORT_SYMBOL_GPL vmlinux 0x93aba6a7 devm_regulator_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x93af7f6f ata_std_prereset -EXPORT_SYMBOL_GPL vmlinux 0x93c02e46 crypto_dequeue_request -EXPORT_SYMBOL_GPL vmlinux 0x93c09c28 pci_epc_get_msix -EXPORT_SYMBOL_GPL vmlinux 0x93c7edeb usb_find_common_endpoints -EXPORT_SYMBOL_GPL vmlinux 0x93d1d424 gnttab_free_grant_references -EXPORT_SYMBOL_GPL vmlinux 0x93e3baff trace_array_printk -EXPORT_SYMBOL_GPL vmlinux 0x93e7457f synth_event_trace_array -EXPORT_SYMBOL_GPL vmlinux 0x93edef07 devlink_health_report -EXPORT_SYMBOL_GPL vmlinux 0x93f14672 usb_get_role_switch_default_mode -EXPORT_SYMBOL_GPL vmlinux 0x93f17e73 iomap_readahead -EXPORT_SYMBOL_GPL vmlinux 0x93f55fe0 power_supply_batinfo_ocv2cap -EXPORT_SYMBOL_GPL vmlinux 0x9405e7c8 trace_seq_path -EXPORT_SYMBOL_GPL vmlinux 0x9409f2b3 dma_request_chan -EXPORT_SYMBOL_GPL vmlinux 0x9418679c thermal_zone_get_temp -EXPORT_SYMBOL_GPL vmlinux 0x941f2aaa eventfd_ctx_put -EXPORT_SYMBOL_GPL vmlinux 0x94240597 pm_generic_poweroff -EXPORT_SYMBOL_GPL vmlinux 0x9425bb34 nvmem_dev_name -EXPORT_SYMBOL_GPL vmlinux 0x94270ff5 register_pernet_device -EXPORT_SYMBOL_GPL vmlinux 0x9430b198 trace_dump_stack -EXPORT_SYMBOL_GPL vmlinux 0x9436e405 memory_group_register_dynamic -EXPORT_SYMBOL_GPL vmlinux 0x9437d4f8 led_classdev_unregister -EXPORT_SYMBOL_GPL vmlinux 0x943f7ff2 nf_hook_entries_delete_raw -EXPORT_SYMBOL_GPL vmlinux 0x943fc708 xen_setup_shutdown_event -EXPORT_SYMBOL_GPL vmlinux 0x94440a35 wm831x_reg_unlock -EXPORT_SYMBOL_GPL vmlinux 0x9447b527 of_nvmem_device_get -EXPORT_SYMBOL_GPL vmlinux 0x9451dcf3 kernfs_put -EXPORT_SYMBOL_GPL vmlinux 0x945e0870 dma_async_device_channel_unregister -EXPORT_SYMBOL_GPL vmlinux 0x94673e24 to_nd_desc -EXPORT_SYMBOL_GPL vmlinux 0x9468ea70 schedule_hrtimeout_range_clock -EXPORT_SYMBOL_GPL vmlinux 0x946b4b6c irq_chip_eoi_parent -EXPORT_SYMBOL_GPL vmlinux 0x946dd559 sha224_zero_message_hash -EXPORT_SYMBOL_GPL vmlinux 0x9479ef79 acpi_subsys_suspend -EXPORT_SYMBOL_GPL vmlinux 0x949ac598 __traceiter_neigh_update -EXPORT_SYMBOL_GPL vmlinux 0x949b5176 devlink_region_snapshot_create -EXPORT_SYMBOL_GPL vmlinux 0x949f7342 __alloc_percpu -EXPORT_SYMBOL_GPL vmlinux 0x94ab328b meson_vid_pll_div_ro_ops -EXPORT_SYMBOL_GPL vmlinux 0x94bb4ab6 __mnt_is_readonly -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 0x950045de tty_put_char -EXPORT_SYMBOL_GPL vmlinux 0x9504df26 irq_wake_thread -EXPORT_SYMBOL_GPL vmlinux 0x9517f822 devm_of_clk_add_hw_provider -EXPORT_SYMBOL_GPL vmlinux 0x951a2773 crypto_has_alg -EXPORT_SYMBOL_GPL vmlinux 0x952664c5 do_exit -EXPORT_SYMBOL_GPL vmlinux 0x9530fb9b phy_modify_mmd -EXPORT_SYMBOL_GPL vmlinux 0x953e1b9e ktime_get_real_seconds -EXPORT_SYMBOL_GPL vmlinux 0x95542000 pm_generic_resume_early -EXPORT_SYMBOL_GPL vmlinux 0x95556d71 devfreq_event_get_event -EXPORT_SYMBOL_GPL vmlinux 0x955b0e2e kthread_worker_fn -EXPORT_SYMBOL_GPL vmlinux 0x955ebed9 usb_enable_autosuspend -EXPORT_SYMBOL_GPL vmlinux 0x95609b26 context_tracking_key -EXPORT_SYMBOL_GPL vmlinux 0x956ac400 ring_buffer_dropped_events_cpu -EXPORT_SYMBOL_GPL vmlinux 0x95748b77 ata_acpi_gtm -EXPORT_SYMBOL_GPL vmlinux 0x957d0d32 usb_disable_lpm -EXPORT_SYMBOL_GPL vmlinux 0x95843030 mpi_ec_init -EXPORT_SYMBOL_GPL vmlinux 0x95858481 ip6_sk_redirect -EXPORT_SYMBOL_GPL vmlinux 0x958df3ac zs_free -EXPORT_SYMBOL_GPL vmlinux 0x9593ef31 register_ftrace_export -EXPORT_SYMBOL_GPL vmlinux 0x95b4dd87 usb_mon_register -EXPORT_SYMBOL_GPL vmlinux 0x95bc9078 btree_free -EXPORT_SYMBOL_GPL vmlinux 0x95e102ab tracepoint_probe_register -EXPORT_SYMBOL_GPL vmlinux 0x95ef1ccc dmi_memdev_size -EXPORT_SYMBOL_GPL vmlinux 0x961286e0 ring_buffer_read_events_cpu -EXPORT_SYMBOL_GPL vmlinux 0x961e4b78 fib_nh_common_init -EXPORT_SYMBOL_GPL vmlinux 0x9621d738 alarm_start_relative -EXPORT_SYMBOL_GPL vmlinux 0x962c8ae1 usb_kill_anchored_urbs -EXPORT_SYMBOL_GPL vmlinux 0x9633ba21 phy_modify_changed -EXPORT_SYMBOL_GPL vmlinux 0x963be868 srcutorture_get_gp_data -EXPORT_SYMBOL_GPL vmlinux 0x96546ee2 fsl_mc_bus_dpio_type -EXPORT_SYMBOL_GPL vmlinux 0x96554810 register_keyboard_notifier -EXPORT_SYMBOL_GPL vmlinux 0x965d2712 usb_put_dev -EXPORT_SYMBOL_GPL vmlinux 0x9664b7f8 xdp_return_frame -EXPORT_SYMBOL_GPL vmlinux 0x967e03c8 __pm_runtime_set_status -EXPORT_SYMBOL_GPL vmlinux 0x968aac3b srcu_notifier_chain_unregister -EXPORT_SYMBOL_GPL vmlinux 0x968f9a23 efivar_entry_iter_begin -EXPORT_SYMBOL_GPL vmlinux 0x969190d7 rio_local_set_device_id -EXPORT_SYMBOL_GPL vmlinux 0x96994fb8 crypto_grab_ahash -EXPORT_SYMBOL_GPL vmlinux 0x96abfd64 md_rdev_init -EXPORT_SYMBOL_GPL vmlinux 0x96ace753 __fscrypt_inode_uses_inline_crypto -EXPORT_SYMBOL_GPL vmlinux 0x96bd9530 dpcon_reset -EXPORT_SYMBOL_GPL vmlinux 0x96c25669 tpm1_getcap -EXPORT_SYMBOL_GPL vmlinux 0x96c7dd4a blkg_rwstat_recursive_sum -EXPORT_SYMBOL_GPL vmlinux 0x96ca44a9 ata_pci_sff_prepare_host -EXPORT_SYMBOL_GPL vmlinux 0x96d96f61 query_asymmetric_key -EXPORT_SYMBOL_GPL vmlinux 0x96e6f0a6 usb_enable_ltm -EXPORT_SYMBOL_GPL vmlinux 0x96ece8a9 tegra_agic_irq_is_pending -EXPORT_SYMBOL_GPL vmlinux 0x96ed6e8f dev_fwnode -EXPORT_SYMBOL_GPL vmlinux 0x96f7529b dev_pm_qos_expose_flags -EXPORT_SYMBOL_GPL vmlinux 0x96f9a01b __SCK__tp_func_pelt_thermal_tp -EXPORT_SYMBOL_GPL vmlinux 0x9706bc91 mctrl_gpio_init -EXPORT_SYMBOL_GPL vmlinux 0x9714e0bb ktime_get_raw -EXPORT_SYMBOL_GPL vmlinux 0x97205639 nfs_ssc_register -EXPORT_SYMBOL_GPL vmlinux 0x9730ef3d ip_route_output_flow -EXPORT_SYMBOL_GPL vmlinux 0x97357f73 spi_bus_unlock -EXPORT_SYMBOL_GPL vmlinux 0x9737a1ab serdev_controller_add -EXPORT_SYMBOL_GPL vmlinux 0x973e2256 pci_d3cold_disable -EXPORT_SYMBOL_GPL vmlinux 0x9740cc21 perf_pmu_unregister -EXPORT_SYMBOL_GPL vmlinux 0x975519c1 asymmetric_key_id_same -EXPORT_SYMBOL_GPL vmlinux 0x9758d4dd xen_xlate_unmap_gfn_range -EXPORT_SYMBOL_GPL vmlinux 0x975e1858 dm_copy_name_and_uuid -EXPORT_SYMBOL_GPL vmlinux 0x97623558 xas_create_range -EXPORT_SYMBOL_GPL vmlinux 0x97659d54 usb_hcd_end_port_resume -EXPORT_SYMBOL_GPL vmlinux 0x9767ca51 fwnode_graph_get_remote_port_parent -EXPORT_SYMBOL_GPL vmlinux 0x977be5c7 klist_iter_init_node -EXPORT_SYMBOL_GPL vmlinux 0x978b7d04 wm831x_reg_lock -EXPORT_SYMBOL_GPL vmlinux 0x97938141 vp_modern_map_vq_notify -EXPORT_SYMBOL_GPL vmlinux 0x97950661 spi_alloc_device -EXPORT_SYMBOL_GPL vmlinux 0x97c2031e disk_update_readahead -EXPORT_SYMBOL_GPL vmlinux 0x97c61785 regmap_test_bits -EXPORT_SYMBOL_GPL vmlinux 0x97caeffe l3mdev_master_upper_ifindex_by_index_rcu -EXPORT_SYMBOL_GPL vmlinux 0x97de2b83 debug_locks_silent -EXPORT_SYMBOL_GPL vmlinux 0x97e6b3fb spi_res_add -EXPORT_SYMBOL_GPL vmlinux 0x97e9dad0 rtc_alarm_irq_enable -EXPORT_SYMBOL_GPL vmlinux 0x97f83a3a clean_acked_data_enable -EXPORT_SYMBOL_GPL vmlinux 0x9800fd81 debugfs_attr_write -EXPORT_SYMBOL_GPL vmlinux 0x98055a6f pci_rescan_bus -EXPORT_SYMBOL_GPL vmlinux 0x9805f15d bus_register -EXPORT_SYMBOL_GPL vmlinux 0x9833bc0c hvc_kick -EXPORT_SYMBOL_GPL vmlinux 0x983db3ad regulator_disable_deferred -EXPORT_SYMBOL_GPL vmlinux 0x9843f501 __cookie_v4_check -EXPORT_SYMBOL_GPL vmlinux 0x984d807d pci_dev_run_wake -EXPORT_SYMBOL_GPL vmlinux 0x98503a63 mpi_alloc -EXPORT_SYMBOL_GPL vmlinux 0x9853575b devm_platform_get_irqs_affinity -EXPORT_SYMBOL_GPL vmlinux 0x985453e1 lease_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x985d6386 fsl_mc_allocate_irqs -EXPORT_SYMBOL_GPL vmlinux 0x98684c46 usb_free_urb -EXPORT_SYMBOL_GPL vmlinux 0x9876d7ed lwtunnel_input -EXPORT_SYMBOL_GPL vmlinux 0x9879932b crypto_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x98899ab6 dev_pm_genpd_add_notifier -EXPORT_SYMBOL_GPL vmlinux 0x989074ff kmsg_dump_reason_str -EXPORT_SYMBOL_GPL vmlinux 0x98aea760 irq_of_parse_and_map -EXPORT_SYMBOL_GPL vmlinux 0x98b142fa blk_fill_rwbs -EXPORT_SYMBOL_GPL vmlinux 0x98c59274 __tracepoint_rpm_idle -EXPORT_SYMBOL_GPL vmlinux 0x98e8e11e devm_phy_optional_get -EXPORT_SYMBOL_GPL vmlinux 0x98ead9d7 wakeup_sources_walk_next -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 0x98fd63af devm_regulator_get -EXPORT_SYMBOL_GPL vmlinux 0x993c3213 kobject_create_and_add -EXPORT_SYMBOL_GPL vmlinux 0x994573c7 gov_attr_set_init -EXPORT_SYMBOL_GPL vmlinux 0x995d1071 prof_on -EXPORT_SYMBOL_GPL vmlinux 0x9960cfe6 device_find_child_by_name -EXPORT_SYMBOL_GPL vmlinux 0x9963412d gnttab_unmap_refs -EXPORT_SYMBOL_GPL vmlinux 0x99651574 pci_vfs_assigned -EXPORT_SYMBOL_GPL vmlinux 0x9966a0c6 ip4_datagram_release_cb -EXPORT_SYMBOL_GPL vmlinux 0x9968aacb __audit_log_nfcfg -EXPORT_SYMBOL_GPL vmlinux 0x996f22e8 iommu_enable_nesting -EXPORT_SYMBOL_GPL vmlinux 0x9979c876 clk_gate_restore_context -EXPORT_SYMBOL_GPL vmlinux 0x99802e7e clockevents_register_device -EXPORT_SYMBOL_GPL vmlinux 0x998bf882 iomap_is_partially_uptodate -EXPORT_SYMBOL_GPL vmlinux 0x998d79d6 x509_decode_time -EXPORT_SYMBOL_GPL vmlinux 0x998e6a2b crypto_stats_kpp_generate_public_key -EXPORT_SYMBOL_GPL vmlinux 0x9998b104 xfrm_audit_state_notfound_simple -EXPORT_SYMBOL_GPL vmlinux 0x99ac1338 sysfs_remove_groups -EXPORT_SYMBOL_GPL vmlinux 0x99b27b58 kthread_unuse_mm -EXPORT_SYMBOL_GPL vmlinux 0x99c3b3c6 pci_d3cold_enable -EXPORT_SYMBOL_GPL vmlinux 0x99d3d3e2 sysfs_unmerge_group -EXPORT_SYMBOL_GPL vmlinux 0x99d6abaa fscrypt_set_bio_crypt_ctx_bh -EXPORT_SYMBOL_GPL vmlinux 0x99dd730c page_reporting_unregister -EXPORT_SYMBOL_GPL vmlinux 0x99ebd6f1 devm_regulator_put -EXPORT_SYMBOL_GPL vmlinux 0x99f018c4 nvmem_cell_read -EXPORT_SYMBOL_GPL vmlinux 0x99f2d00a sysfs_emit_at -EXPORT_SYMBOL_GPL vmlinux 0x99f6fa90 ata_link_online -EXPORT_SYMBOL_GPL vmlinux 0x9a05d8f7 badblocks_check -EXPORT_SYMBOL_GPL vmlinux 0x9a0df80d component_master_add_with_match -EXPORT_SYMBOL_GPL vmlinux 0x9a11a0fc crypto_attr_alg_name -EXPORT_SYMBOL_GPL vmlinux 0x9a185ace tick_nohz_full_running -EXPORT_SYMBOL_GPL vmlinux 0x9a1d4b60 fuse_file_poll -EXPORT_SYMBOL_GPL vmlinux 0x9a23ea6b alarm_expires_remaining -EXPORT_SYMBOL_GPL vmlinux 0x9a301aab fuse_fill_super_common -EXPORT_SYMBOL_GPL vmlinux 0x9a32ab7e umd_cleanup_helper -EXPORT_SYMBOL_GPL vmlinux 0x9a440822 pinctrl_put -EXPORT_SYMBOL_GPL vmlinux 0x9a58dd2d trace_print_bitmask_seq -EXPORT_SYMBOL_GPL vmlinux 0x9a5dce5c rhashtable_walk_start_check -EXPORT_SYMBOL_GPL vmlinux 0x9a81f43c sdio_claim_host -EXPORT_SYMBOL_GPL vmlinux 0x9a893f92 gpiod_get_array_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0x9a91cdb8 iommu_domain_alloc -EXPORT_SYMBOL_GPL vmlinux 0x9a934df8 pci_device_group -EXPORT_SYMBOL_GPL vmlinux 0x9ac11b74 suspend_set_ops -EXPORT_SYMBOL_GPL vmlinux 0x9ad44d6b led_init_core -EXPORT_SYMBOL_GPL vmlinux 0x9ad6f228 fat_detach -EXPORT_SYMBOL_GPL vmlinux 0x9adb06e1 rtnl_delete_link -EXPORT_SYMBOL_GPL vmlinux 0x9ae0a940 devres_release_group -EXPORT_SYMBOL_GPL vmlinux 0x9aeacb87 ring_buffer_iter_empty -EXPORT_SYMBOL_GPL vmlinux 0x9af49514 icc_bulk_set_bw -EXPORT_SYMBOL_GPL vmlinux 0x9b05571f sdev_evt_send_simple -EXPORT_SYMBOL_GPL vmlinux 0x9b07d81a bpf_prog_inc_not_zero -EXPORT_SYMBOL_GPL vmlinux 0x9b0eaa52 tegra210_xusb_pll_hw_sequence_start -EXPORT_SYMBOL_GPL vmlinux 0x9b17419c access_process_vm -EXPORT_SYMBOL_GPL vmlinux 0x9b25d1c9 debugfs_attr_read -EXPORT_SYMBOL_GPL vmlinux 0x9b2e899d devm_of_pwm_get -EXPORT_SYMBOL_GPL vmlinux 0x9b436f64 virtqueue_get_buf_ctx -EXPORT_SYMBOL_GPL vmlinux 0x9b513e60 __traceiter_xdp_exception -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 0x9b713493 md_bitmap_load -EXPORT_SYMBOL_GPL vmlinux 0x9b7d15c0 devm_gpiod_unhinge -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 0x9b960d68 usb_phy_roothub_resume -EXPORT_SYMBOL_GPL vmlinux 0x9b9843c1 shash_ahash_finup -EXPORT_SYMBOL_GPL vmlinux 0x9ba2bb2b gpio_request_array -EXPORT_SYMBOL_GPL vmlinux 0x9ba74e7d pci_find_next_capability -EXPORT_SYMBOL_GPL vmlinux 0x9bc21740 create_signature -EXPORT_SYMBOL_GPL vmlinux 0x9bc6e209 tty_port_register_device_serdev -EXPORT_SYMBOL_GPL vmlinux 0x9bcee70d xenbus_unregister_driver -EXPORT_SYMBOL_GPL vmlinux 0x9bcf9f7d housekeeping_enabled -EXPORT_SYMBOL_GPL vmlinux 0x9bd51504 nvdimm_clear_poison -EXPORT_SYMBOL_GPL vmlinux 0x9bdb9ee0 stmpe_block_write -EXPORT_SYMBOL_GPL vmlinux 0x9be30d27 mhp_get_pluggable_range -EXPORT_SYMBOL_GPL vmlinux 0x9bece81b mpi_cmp_ui -EXPORT_SYMBOL_GPL vmlinux 0x9c073bcc clk_register -EXPORT_SYMBOL_GPL vmlinux 0x9c0832a4 platform_device_add_resources -EXPORT_SYMBOL_GPL vmlinux 0x9c0a74b0 of_platform_device_destroy -EXPORT_SYMBOL_GPL vmlinux 0x9c149893 ftrace_ops_set_global_filter -EXPORT_SYMBOL_GPL vmlinux 0x9c159241 clk_hw_is_prepared -EXPORT_SYMBOL_GPL vmlinux 0x9c381309 inode_congested -EXPORT_SYMBOL_GPL vmlinux 0x9c3a5513 software_node_fwnode -EXPORT_SYMBOL_GPL vmlinux 0x9c3e298b ata_dummy_port_info -EXPORT_SYMBOL_GPL vmlinux 0x9c448d8d tegra210_put_utmipll_out_iddq -EXPORT_SYMBOL_GPL vmlinux 0x9c45c0c3 trace_array_get_by_name -EXPORT_SYMBOL_GPL vmlinux 0x9c49f077 regmap_add_irq_chip_fwnode -EXPORT_SYMBOL_GPL vmlinux 0x9c5fe080 __netpoll_free -EXPORT_SYMBOL_GPL vmlinux 0x9c60613c dw_pcie_find_ext_capability -EXPORT_SYMBOL_GPL vmlinux 0x9c6febfc add_uevent_var -EXPORT_SYMBOL_GPL vmlinux 0x9c803020 usb_phy_roothub_power_on -EXPORT_SYMBOL_GPL vmlinux 0x9c8062bc fib_rule_matchall -EXPORT_SYMBOL_GPL vmlinux 0x9c8b44b8 phy_get -EXPORT_SYMBOL_GPL vmlinux 0x9ca1c8b2 tty_ldisc_flush -EXPORT_SYMBOL_GPL vmlinux 0x9cb583ab of_dma_simple_xlate -EXPORT_SYMBOL_GPL vmlinux 0x9cb5af34 disable_kprobe -EXPORT_SYMBOL_GPL vmlinux 0x9cb6b6b7 put_device -EXPORT_SYMBOL_GPL vmlinux 0x9cc4f70a register_pm_notifier -EXPORT_SYMBOL_GPL vmlinux 0x9cccfe9e bus_get_device_klist -EXPORT_SYMBOL_GPL vmlinux 0x9ccf82d5 dev_pm_opp_of_find_icc_paths -EXPORT_SYMBOL_GPL vmlinux 0x9cd7551a rhashtable_walk_stop -EXPORT_SYMBOL_GPL vmlinux 0x9cdd59f3 ata_pci_bmdma_init -EXPORT_SYMBOL_GPL vmlinux 0x9cde99b5 virtio_device_freeze -EXPORT_SYMBOL_GPL vmlinux 0x9ce69d3a mm_kobj -EXPORT_SYMBOL_GPL vmlinux 0x9cf37c44 __iowrite32_copy -EXPORT_SYMBOL_GPL vmlinux 0x9cfa55e4 fwnode_property_match_string -EXPORT_SYMBOL_GPL vmlinux 0x9d09e8ae ring_buffer_event_data -EXPORT_SYMBOL_GPL vmlinux 0x9d19a897 cgroup_get_from_fd -EXPORT_SYMBOL_GPL vmlinux 0x9d26d3a1 __hvc_resize -EXPORT_SYMBOL_GPL vmlinux 0x9d2f49ef __SCK__tp_func_pelt_se_tp -EXPORT_SYMBOL_GPL vmlinux 0x9d44d31f mtk_pinconf_bias_set -EXPORT_SYMBOL_GPL vmlinux 0x9d44ee40 pinctrl_dev_get_drvdata -EXPORT_SYMBOL_GPL vmlinux 0x9d496291 i2c_parse_fw_timings -EXPORT_SYMBOL_GPL vmlinux 0x9d4cb198 devm_gpiod_put_array -EXPORT_SYMBOL_GPL vmlinux 0x9d579abd dev_pm_domain_attach_by_name -EXPORT_SYMBOL_GPL vmlinux 0x9d5a2248 iommu_unmap -EXPORT_SYMBOL_GPL vmlinux 0x9d786938 __skb_get_hash_symmetric -EXPORT_SYMBOL_GPL vmlinux 0x9d8f7dc9 blk_trace_startstop -EXPORT_SYMBOL_GPL vmlinux 0x9d94a02f spi_mem_driver_register_with_owner -EXPORT_SYMBOL_GPL vmlinux 0x9d9aaa95 tegra_mc_write_emem_configuration -EXPORT_SYMBOL_GPL vmlinux 0x9db7b818 ata_timing_compute -EXPORT_SYMBOL_GPL vmlinux 0x9dc6cae7 blk_mq_sched_try_insert_merge -EXPORT_SYMBOL_GPL vmlinux 0x9dcae50c crypto_alloc_kpp -EXPORT_SYMBOL_GPL vmlinux 0x9dcf0c77 regulator_suspend_disable -EXPORT_SYMBOL_GPL vmlinux 0x9ddc472a devm_of_phy_get -EXPORT_SYMBOL_GPL vmlinux 0x9dee8d10 kobj_sysfs_ops -EXPORT_SYMBOL_GPL vmlinux 0x9df32f49 dma_buf_unmap_attachment -EXPORT_SYMBOL_GPL vmlinux 0x9e00301f device_property_read_u8_array -EXPORT_SYMBOL_GPL vmlinux 0x9e005e6f cppc_get_perf_caps -EXPORT_SYMBOL_GPL vmlinux 0x9e061711 divider_ro_determine_rate -EXPORT_SYMBOL_GPL vmlinux 0x9e0e8609 devm_gpiod_get_index -EXPORT_SYMBOL_GPL vmlinux 0x9e375180 pwm_request_from_chip -EXPORT_SYMBOL_GPL vmlinux 0x9e472f5f snmp_fold_field -EXPORT_SYMBOL_GPL vmlinux 0x9e4ffe3d pinctrl_force_default -EXPORT_SYMBOL_GPL vmlinux 0x9e52cd10 skcipher_walk_virt -EXPORT_SYMBOL_GPL vmlinux 0x9e5a1276 pci_common_swizzle -EXPORT_SYMBOL_GPL vmlinux 0x9e5c3c2d extcon_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x9e634093 pinctrl_generic_get_group -EXPORT_SYMBOL_GPL vmlinux 0x9e78040f ata_port_pbar_desc -EXPORT_SYMBOL_GPL vmlinux 0x9e8a8363 phy_speed_down -EXPORT_SYMBOL_GPL vmlinux 0x9e9b913d __tracepoint_arm_event -EXPORT_SYMBOL_GPL vmlinux 0x9ea90982 nvdimm_region_notify -EXPORT_SYMBOL_GPL vmlinux 0x9eae63d8 usb_put_intf -EXPORT_SYMBOL_GPL vmlinux 0x9ec3613d __devm_rtc_register_device -EXPORT_SYMBOL_GPL vmlinux 0x9ec7f0ca dev_pm_opp_get_freq -EXPORT_SYMBOL_GPL vmlinux 0x9ed554b3 unregister_keyboard_notifier -EXPORT_SYMBOL_GPL vmlinux 0x9eebdde7 mpi_point_new -EXPORT_SYMBOL_GPL vmlinux 0x9f27b512 sk_msg_memcopy_from_iter -EXPORT_SYMBOL_GPL vmlinux 0x9f4120a4 __trace_array_puts -EXPORT_SYMBOL_GPL vmlinux 0x9f4872de pm_runtime_force_suspend -EXPORT_SYMBOL_GPL vmlinux 0x9f4c4aa0 spi_delay_to_ns -EXPORT_SYMBOL_GPL vmlinux 0x9f517986 HYPERVISOR_hvm_op -EXPORT_SYMBOL_GPL vmlinux 0x9f54d1ec ata_sas_queuecmd -EXPORT_SYMBOL_GPL vmlinux 0x9f56c4b9 __SCK__tp_func_devlink_hwmsg -EXPORT_SYMBOL_GPL vmlinux 0x9f58d2c0 devlink_params_publish -EXPORT_SYMBOL_GPL vmlinux 0x9f5c6dc2 __cookie_v6_check -EXPORT_SYMBOL_GPL vmlinux 0x9f69aa10 da9052_regmap_config -EXPORT_SYMBOL_GPL vmlinux 0x9f8a9d20 xen_xlate_remap_gfn_array -EXPORT_SYMBOL_GPL vmlinux 0x9fbd34dc fwnode_get_named_gpiod -EXPORT_SYMBOL_GPL vmlinux 0x9fbeb40c led_classdev_resume -EXPORT_SYMBOL_GPL vmlinux 0x9fbfebab erst_write -EXPORT_SYMBOL_GPL vmlinux 0x9fc189be device_set_node -EXPORT_SYMBOL_GPL vmlinux 0x9fce80db fb_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0x9fd2fd63 nf_checksum_partial -EXPORT_SYMBOL_GPL vmlinux 0x9fd5e786 devm_i2c_add_adapter -EXPORT_SYMBOL_GPL vmlinux 0x9fdf9eaf ping_seq_stop -EXPORT_SYMBOL_GPL vmlinux 0x9fe4c80c edac_pci_del_device -EXPORT_SYMBOL_GPL vmlinux 0x9fe899b7 get_cpu_idle_time -EXPORT_SYMBOL_GPL vmlinux 0x9fe939e1 mpi_powm -EXPORT_SYMBOL_GPL vmlinux 0x9fe978ae cpufreq_freq_transition_begin -EXPORT_SYMBOL_GPL vmlinux 0x9fec28a3 usb_get_current_frame_number -EXPORT_SYMBOL_GPL vmlinux 0x9ff1b207 __strp_unpause -EXPORT_SYMBOL_GPL vmlinux 0x9ff49ec0 iommu_sva_free_pasid -EXPORT_SYMBOL_GPL vmlinux 0xa0000884 crypto_alloc_base -EXPORT_SYMBOL_GPL vmlinux 0xa01a8d9b nd_cmd_bus_desc -EXPORT_SYMBOL_GPL vmlinux 0xa02d5dd7 pm_generic_poweroff_noirq -EXPORT_SYMBOL_GPL vmlinux 0xa02f4a84 dax_copy_to_iter -EXPORT_SYMBOL_GPL vmlinux 0xa02fa0ff perf_pmu_register -EXPORT_SYMBOL_GPL vmlinux 0xa047bec4 of_changeset_action -EXPORT_SYMBOL_GPL vmlinux 0xa04f945a cpus_read_lock -EXPORT_SYMBOL_GPL vmlinux 0xa05e21e9 vfs_kern_mount -EXPORT_SYMBOL_GPL vmlinux 0xa06569f6 thermal_cooling_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0xa06644ea __iomap_dio_rw -EXPORT_SYMBOL_GPL vmlinux 0xa071c0cd tegra210_xusb_pll_hw_control_enable -EXPORT_SYMBOL_GPL vmlinux 0xa07d44fb mbox_client_peek_data -EXPORT_SYMBOL_GPL vmlinux 0xa080c5e5 smp_call_function_single_async -EXPORT_SYMBOL_GPL vmlinux 0xa082d8c2 crypto_register_shash -EXPORT_SYMBOL_GPL vmlinux 0xa090591e kobject_rename -EXPORT_SYMBOL_GPL vmlinux 0xa0ae768c serdev_device_write_buf -EXPORT_SYMBOL_GPL vmlinux 0xa0b6f94b usb_check_int_endpoints -EXPORT_SYMBOL_GPL vmlinux 0xa0bd0551 mbox_controller_register -EXPORT_SYMBOL_GPL vmlinux 0xa0c86aad xfrm_state_mtu -EXPORT_SYMBOL_GPL vmlinux 0xa0c9443d akcipher_register_instance -EXPORT_SYMBOL_GPL vmlinux 0xa0ca4f82 dprc_scan_container -EXPORT_SYMBOL_GPL vmlinux 0xa0d3456d nr_swap_pages -EXPORT_SYMBOL_GPL vmlinux 0xa0e9d89d zap_vma_ptes -EXPORT_SYMBOL_GPL vmlinux 0xa0fa9747 spi_mem_driver_unregister -EXPORT_SYMBOL_GPL vmlinux 0xa11216be xen_store_domain_type -EXPORT_SYMBOL_GPL vmlinux 0xa12bcbd6 fsl_mc_get_endpoint -EXPORT_SYMBOL_GPL vmlinux 0xa1431666 peernet2id_alloc -EXPORT_SYMBOL_GPL vmlinux 0xa1438cb9 usb_init_urb -EXPORT_SYMBOL_GPL vmlinux 0xa14c6df3 of_get_videomode -EXPORT_SYMBOL_GPL vmlinux 0xa156a1f2 erst_get_record_id_end -EXPORT_SYMBOL_GPL vmlinux 0xa15c635e ata_ehi_push_desc -EXPORT_SYMBOL_GPL vmlinux 0xa15cd1ea nvdimm_kobj -EXPORT_SYMBOL_GPL vmlinux 0xa1600fb5 dev_attr_ncq_prio_enable -EXPORT_SYMBOL_GPL vmlinux 0xa1691b63 xas_find_marked -EXPORT_SYMBOL_GPL vmlinux 0xa16deb13 sbitmap_resize -EXPORT_SYMBOL_GPL vmlinux 0xa16e562e synth_event_trace_end -EXPORT_SYMBOL_GPL vmlinux 0xa184ba7a __inet_lookup_listener -EXPORT_SYMBOL_GPL vmlinux 0xa18c63f0 tcp_rate_check_app_limited -EXPORT_SYMBOL_GPL vmlinux 0xa1a99504 fwnode_property_read_u8_array -EXPORT_SYMBOL_GPL vmlinux 0xa1ae26c0 bd_prepare_to_claim -EXPORT_SYMBOL_GPL vmlinux 0xa1b09e7a sock_diag_unregister -EXPORT_SYMBOL_GPL vmlinux 0xa1b7a502 icc_link_destroy -EXPORT_SYMBOL_GPL vmlinux 0xa1bb1bc7 iommu_fwspec_free -EXPORT_SYMBOL_GPL vmlinux 0xa1c7b421 add_disk_randomness -EXPORT_SYMBOL_GPL vmlinux 0xa1d8004a videomode_from_timing -EXPORT_SYMBOL_GPL vmlinux 0xa1deaa11 crypto_shoot_alg -EXPORT_SYMBOL_GPL vmlinux 0xa1dfabd9 thermal_zone_device_register -EXPORT_SYMBOL_GPL vmlinux 0xa1e41bc3 rio_request_dma -EXPORT_SYMBOL_GPL vmlinux 0xa1e6087c ti_sci_inta_msi_create_irq_domain -EXPORT_SYMBOL_GPL vmlinux 0xa1e7b513 bpf_preload_ops -EXPORT_SYMBOL_GPL vmlinux 0xa1ef1460 edac_device_handle_ce_count -EXPORT_SYMBOL_GPL vmlinux 0xa20376ef init_pid_ns -EXPORT_SYMBOL_GPL vmlinux 0xa20d01ba __trace_bprintk -EXPORT_SYMBOL_GPL vmlinux 0xa21e6bee dm_table_set_type -EXPORT_SYMBOL_GPL vmlinux 0xa229e582 inet_hash_connect -EXPORT_SYMBOL_GPL vmlinux 0xa22f9539 pci_bus_add_device -EXPORT_SYMBOL_GPL vmlinux 0xa2500ef6 __SCK__tp_func_powernv_throttle -EXPORT_SYMBOL_GPL vmlinux 0xa2625c27 mmc_crypto_prepare_req -EXPORT_SYMBOL_GPL vmlinux 0xa26d9b4f workqueue_congested -EXPORT_SYMBOL_GPL vmlinux 0xa27d09fe of_phy_get -EXPORT_SYMBOL_GPL vmlinux 0xa2818c1d dma_buf_detach -EXPORT_SYMBOL_GPL vmlinux 0xa28429d0 fsl_mc_cleanup_irq_pool -EXPORT_SYMBOL_GPL vmlinux 0xa29003f0 attribute_container_find_class_device -EXPORT_SYMBOL_GPL vmlinux 0xa2ace064 sched_trace_rq_avg_irq -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 0xa2e1b3ef trace_printk_init_buffers -EXPORT_SYMBOL_GPL vmlinux 0xa2f5cbd8 blk_crypto_evict_key -EXPORT_SYMBOL_GPL vmlinux 0xa2f7487f hv_is_hibernation_supported -EXPORT_SYMBOL_GPL vmlinux 0xa310e7b5 extcon_unregister_notifier_all -EXPORT_SYMBOL_GPL vmlinux 0xa329d83e cpufreq_freq_attr_scaling_boost_freqs -EXPORT_SYMBOL_GPL vmlinux 0xa331f869 ata_sff_pause -EXPORT_SYMBOL_GPL vmlinux 0xa3320edc cpci_hp_unregister_controller -EXPORT_SYMBOL_GPL vmlinux 0xa343fd7e devm_gpiod_get_array_optional -EXPORT_SYMBOL_GPL vmlinux 0xa34d6070 virtqueue_detach_unused_buf -EXPORT_SYMBOL_GPL vmlinux 0xa3524b4c __traceiter_neigh_event_send_done -EXPORT_SYMBOL_GPL vmlinux 0xa355c883 crypto_shash_tfm_digest -EXPORT_SYMBOL_GPL vmlinux 0xa365d55a lp8788_read_byte -EXPORT_SYMBOL_GPL vmlinux 0xa36c1bfd raw_seq_stop -EXPORT_SYMBOL_GPL vmlinux 0xa36ed910 amba_ahb_device_add_res -EXPORT_SYMBOL_GPL vmlinux 0xa36f50fb is_binary_blacklisted -EXPORT_SYMBOL_GPL vmlinux 0xa3719b69 xenbus_dev_fatal -EXPORT_SYMBOL_GPL vmlinux 0xa3766a47 dm_bio_from_per_bio_data -EXPORT_SYMBOL_GPL vmlinux 0xa37cfc33 crypto_enqueue_request_head -EXPORT_SYMBOL_GPL vmlinux 0xa3814990 tty_port_install -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 0xa38be6a5 rio_release_inb_mbox -EXPORT_SYMBOL_GPL vmlinux 0xa38c1436 cpu_bit_bitmap -EXPORT_SYMBOL_GPL vmlinux 0xa3939d40 crypto_default_rng -EXPORT_SYMBOL_GPL vmlinux 0xa39a11c5 fuse_conn_put -EXPORT_SYMBOL_GPL vmlinux 0xa3a04602 btree_geo64 -EXPORT_SYMBOL_GPL vmlinux 0xa3a1d07c __mnt_drop_write -EXPORT_SYMBOL_GPL vmlinux 0xa3b6d855 dm_bio_get_target_bio_nr -EXPORT_SYMBOL_GPL vmlinux 0xa3b958ce reset_hung_task_detector -EXPORT_SYMBOL_GPL vmlinux 0xa3bab376 sdio_readb -EXPORT_SYMBOL_GPL vmlinux 0xa3d1995b pinctrl_pm_select_default_state -EXPORT_SYMBOL_GPL vmlinux 0xa3dcb681 zynqmp_pm_fpga_load -EXPORT_SYMBOL_GPL vmlinux 0xa3e97712 ahci_ops -EXPORT_SYMBOL_GPL vmlinux 0xa3e9f261 ip6_route_lookup -EXPORT_SYMBOL_GPL vmlinux 0xa3ec5ab5 __vring_new_virtqueue -EXPORT_SYMBOL_GPL vmlinux 0xa3ece414 freezer_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0xa3f12f69 __crypto_xor -EXPORT_SYMBOL_GPL vmlinux 0xa3fabe8d blk_queue_max_zone_append_sectors -EXPORT_SYMBOL_GPL vmlinux 0xa402c077 i2c_client_type -EXPORT_SYMBOL_GPL vmlinux 0xa4031b7f sfp_parse_port -EXPORT_SYMBOL_GPL vmlinux 0xa4062043 sk_set_memalloc -EXPORT_SYMBOL_GPL vmlinux 0xa40b602d __lock_page_killable -EXPORT_SYMBOL_GPL vmlinux 0xa40c89cd wakeup_source_register -EXPORT_SYMBOL_GPL vmlinux 0xa410a295 devlink_region_destroy -EXPORT_SYMBOL_GPL vmlinux 0xa41a7622 clk_hw_round_rate -EXPORT_SYMBOL_GPL vmlinux 0xa422d598 dev_pm_opp_init_cpufreq_table -EXPORT_SYMBOL_GPL vmlinux 0xa4249a41 extcon_dev_register -EXPORT_SYMBOL_GPL vmlinux 0xa42d2b77 clk_regmap_gate_ops -EXPORT_SYMBOL_GPL vmlinux 0xa42e017d xhci_drop_endpoint -EXPORT_SYMBOL_GPL vmlinux 0xa42e2aac debugfs_create_u8 -EXPORT_SYMBOL_GPL vmlinux 0xa43e1b59 hvc_instantiate -EXPORT_SYMBOL_GPL vmlinux 0xa448afe0 firmware_kobj -EXPORT_SYMBOL_GPL vmlinux 0xa44a1307 interval_tree_iter_first -EXPORT_SYMBOL_GPL vmlinux 0xa44bca43 irq_domain_push_irq -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 0xa464cc35 pcc_mbox_request_channel -EXPORT_SYMBOL_GPL vmlinux 0xa474fe06 spi_mem_adjust_op_size -EXPORT_SYMBOL_GPL vmlinux 0xa48196c8 kdb_poll_idx -EXPORT_SYMBOL_GPL vmlinux 0xa489e886 devlink_port_param_driverinit_value_get -EXPORT_SYMBOL_GPL vmlinux 0xa48d1019 pinctrl_generic_get_group_count -EXPORT_SYMBOL_GPL vmlinux 0xa48dccee fwnode_graph_get_endpoint_by_id -EXPORT_SYMBOL_GPL vmlinux 0xa499385d mtk_eint_do_resume -EXPORT_SYMBOL_GPL vmlinux 0xa49fc4c2 iommu_iova_to_phys -EXPORT_SYMBOL_GPL vmlinux 0xa4a53a2d rio_del_device -EXPORT_SYMBOL_GPL vmlinux 0xa4ab7c1c ring_buffer_overruns -EXPORT_SYMBOL_GPL vmlinux 0xa4b07fe7 ring_buffer_change_overwrite -EXPORT_SYMBOL_GPL vmlinux 0xa4beb52b pci_bus_max_busnr -EXPORT_SYMBOL_GPL vmlinux 0xa4c00324 asn1_encode_octet_string -EXPORT_SYMBOL_GPL vmlinux 0xa4c085f8 ata_tf_from_fis -EXPORT_SYMBOL_GPL vmlinux 0xa4c7cc35 kstrdup_quotable_file -EXPORT_SYMBOL_GPL vmlinux 0xa4cc0afa nvdimm_bus_add_badrange -EXPORT_SYMBOL_GPL vmlinux 0xa4d8f212 dax_inode -EXPORT_SYMBOL_GPL vmlinux 0xa4da7b89 sched_set_fifo_low -EXPORT_SYMBOL_GPL vmlinux 0xa4e9b45d led_trigger_register -EXPORT_SYMBOL_GPL vmlinux 0xa4eb5793 sbitmap_weight -EXPORT_SYMBOL_GPL vmlinux 0xa4f196be pinconf_generic_dump_config -EXPORT_SYMBOL_GPL vmlinux 0xa4f2a2ed acpi_irq_get -EXPORT_SYMBOL_GPL vmlinux 0xa5168f8d nd_blk_region_to_dimm -EXPORT_SYMBOL_GPL vmlinux 0xa517f884 tegra210_plle_hw_sequence_is_enabled -EXPORT_SYMBOL_GPL vmlinux 0xa51e8582 ata_scsi_slave_config -EXPORT_SYMBOL_GPL vmlinux 0xa531471e clk_save_context -EXPORT_SYMBOL_GPL vmlinux 0xa53660e2 efivar_entry_size -EXPORT_SYMBOL_GPL vmlinux 0xa55cd364 devm_phy_create -EXPORT_SYMBOL_GPL vmlinux 0xa56373b2 mmc_regulator_get_supply -EXPORT_SYMBOL_GPL vmlinux 0xa564912f fuse_dev_fiq_ops -EXPORT_SYMBOL_GPL vmlinux 0xa56b670a pci_epc_set_bar -EXPORT_SYMBOL_GPL vmlinux 0xa5741559 devm_bitmap_alloc -EXPORT_SYMBOL_GPL vmlinux 0xa574b8b7 __vfs_removexattr_noperm -EXPORT_SYMBOL_GPL vmlinux 0xa57eefbb device_attach -EXPORT_SYMBOL_GPL vmlinux 0xa580c0a4 of_device_request_module -EXPORT_SYMBOL_GPL vmlinux 0xa5a10c7a tcp_reno_ssthresh -EXPORT_SYMBOL_GPL vmlinux 0xa5a28a13 mpc8xxx_spi_tx_buf_u16 -EXPORT_SYMBOL_GPL vmlinux 0xa5b2cb1f ata_sff_thaw -EXPORT_SYMBOL_GPL vmlinux 0xa5b4dc83 splice_to_pipe -EXPORT_SYMBOL_GPL vmlinux 0xa5bbd139 fsnotify_destroy_mark -EXPORT_SYMBOL_GPL vmlinux 0xa5bda8a1 efi_capsule_supported -EXPORT_SYMBOL_GPL vmlinux 0xa5c183e8 virtio_max_dma_size -EXPORT_SYMBOL_GPL vmlinux 0xa5c8876c devm_regmap_init_vexpress_config -EXPORT_SYMBOL_GPL vmlinux 0xa5c9db99 cpufreq_enable_fast_switch -EXPORT_SYMBOL_GPL vmlinux 0xa5cc25a3 rio_request_outb_dbell -EXPORT_SYMBOL_GPL vmlinux 0xa5d46484 device_for_each_child -EXPORT_SYMBOL_GPL vmlinux 0xa5d7c388 pstore_type_to_name -EXPORT_SYMBOL_GPL vmlinux 0xa5e87db6 usb_driver_set_configuration -EXPORT_SYMBOL_GPL vmlinux 0xa5efbf4c async_synchronize_full -EXPORT_SYMBOL_GPL vmlinux 0xa5f46dbf acpi_dev_get_resources -EXPORT_SYMBOL_GPL vmlinux 0xa5f6c0fc wm8350_reg_write -EXPORT_SYMBOL_GPL vmlinux 0xa5f87ae4 pm_runtime_set_autosuspend_delay -EXPORT_SYMBOL_GPL vmlinux 0xa5faf167 crypto_inst_setname -EXPORT_SYMBOL_GPL vmlinux 0xa615844a devm_serdev_device_open -EXPORT_SYMBOL_GPL vmlinux 0xa61df448 fscrypt_ioctl_remove_key_all_users -EXPORT_SYMBOL_GPL vmlinux 0xa62d3500 smpboot_unregister_percpu_thread -EXPORT_SYMBOL_GPL vmlinux 0xa6523d3f regulator_bulk_disable -EXPORT_SYMBOL_GPL vmlinux 0xa65f3c8c __tracepoint_block_bio_complete -EXPORT_SYMBOL_GPL vmlinux 0xa6626f11 device_create_managed_software_node -EXPORT_SYMBOL_GPL vmlinux 0xa66e6073 device_get_named_child_node -EXPORT_SYMBOL_GPL vmlinux 0xa66eba56 gpiod_get_array_value -EXPORT_SYMBOL_GPL vmlinux 0xa6895490 devm_clk_hw_unregister -EXPORT_SYMBOL_GPL vmlinux 0xa6a088b7 fscrypt_match_name -EXPORT_SYMBOL_GPL vmlinux 0xa6ab635f dma_map_sgtable -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 0xa6b2a21d iommu_dev_enable_feature -EXPORT_SYMBOL_GPL vmlinux 0xa6b5ee5b __SCK__tp_func_block_split -EXPORT_SYMBOL_GPL vmlinux 0xa6c7975c free_fib_info -EXPORT_SYMBOL_GPL vmlinux 0xa6dc0d97 tegra_read_ram_code -EXPORT_SYMBOL_GPL vmlinux 0xa6e1a69d kick_all_cpus_sync -EXPORT_SYMBOL_GPL vmlinux 0xa6ee15ca __tracepoint_rpm_suspend -EXPORT_SYMBOL_GPL vmlinux 0xa6f00736 fuse_direct_io -EXPORT_SYMBOL_GPL vmlinux 0xa7029135 usb_free_coherent -EXPORT_SYMBOL_GPL vmlinux 0xa708e38d dma_async_device_channel_register -EXPORT_SYMBOL_GPL vmlinux 0xa709c835 fib6_info_destroy_rcu -EXPORT_SYMBOL_GPL vmlinux 0xa70b6227 nvdimm_to_bus -EXPORT_SYMBOL_GPL vmlinux 0xa71a2009 fib6_new_table -EXPORT_SYMBOL_GPL vmlinux 0xa7248a7f blk_mq_flush_busy_ctxs -EXPORT_SYMBOL_GPL vmlinux 0xa731f387 nl_table_lock -EXPORT_SYMBOL_GPL vmlinux 0xa73bd10d sk_psock_tls_strp_read -EXPORT_SYMBOL_GPL vmlinux 0xa75227ec ehci_resume -EXPORT_SYMBOL_GPL vmlinux 0xa7586ce0 debugfs_write_file_bool -EXPORT_SYMBOL_GPL vmlinux 0xa768c005 pm_clk_create -EXPORT_SYMBOL_GPL vmlinux 0xa7856098 cpu_topology -EXPORT_SYMBOL_GPL vmlinux 0xa788700b copy_to_user_nofault -EXPORT_SYMBOL_GPL vmlinux 0xa7973d5b rio_dev_put -EXPORT_SYMBOL_GPL vmlinux 0xa7a441d0 inet6_csk_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0xa7cba284 housekeeping_any_cpu -EXPORT_SYMBOL_GPL vmlinux 0xa7dbd06a ohci_hub_control -EXPORT_SYMBOL_GPL vmlinux 0xa7e65979 put_pid_ns -EXPORT_SYMBOL_GPL vmlinux 0xa7f2f1de receive_fd -EXPORT_SYMBOL_GPL vmlinux 0xa7f4f38f __dax_driver_register -EXPORT_SYMBOL_GPL vmlinux 0xa80cccf0 ping_bind -EXPORT_SYMBOL_GPL vmlinux 0xa82dcfdd kset_create_and_add -EXPORT_SYMBOL_GPL vmlinux 0xa82dd726 ata_sff_postreset -EXPORT_SYMBOL_GPL vmlinux 0xa834fd5e of_map_id -EXPORT_SYMBOL_GPL vmlinux 0xa8352917 devm_pm_opp_attach_genpd -EXPORT_SYMBOL_GPL vmlinux 0xa851973a raw_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0xa86f093f blk_ksm_init -EXPORT_SYMBOL_GPL vmlinux 0xa870b9f2 __devm_irq_alloc_descs -EXPORT_SYMBOL_GPL vmlinux 0xa874afa4 replace_page_cache_page -EXPORT_SYMBOL_GPL vmlinux 0xa88f16e7 device_init_wakeup -EXPORT_SYMBOL_GPL vmlinux 0xa8955712 blk_add_driver_data -EXPORT_SYMBOL_GPL vmlinux 0xa8b8108e crypto_stats_akcipher_verify -EXPORT_SYMBOL_GPL vmlinux 0xa8b9dbf8 irq_alloc_generic_chip -EXPORT_SYMBOL_GPL vmlinux 0xa8bbaad9 handle_bad_irq -EXPORT_SYMBOL_GPL vmlinux 0xa8c107d9 fat_build_inode -EXPORT_SYMBOL_GPL vmlinux 0xa8c5c989 xdp_rxq_info_is_reg -EXPORT_SYMBOL_GPL vmlinux 0xa8da8d5d arm64_mm_context_put -EXPORT_SYMBOL_GPL vmlinux 0xa8db70c1 screen_glyph -EXPORT_SYMBOL_GPL vmlinux 0xa8f328fe crypto_shash_alg_has_setkey -EXPORT_SYMBOL_GPL vmlinux 0xa9026e6d do_unregister_con_driver -EXPORT_SYMBOL_GPL vmlinux 0xa905a7f6 blk_mq_rdma_map_queues -EXPORT_SYMBOL_GPL vmlinux 0xa928ef60 dm_set_target_max_io_len -EXPORT_SYMBOL_GPL vmlinux 0xa9319a4a proc_create_net_data_write -EXPORT_SYMBOL_GPL vmlinux 0xa9320d27 ktime_get_seconds -EXPORT_SYMBOL_GPL vmlinux 0xa9498e02 led_set_brightness_nopm -EXPORT_SYMBOL_GPL vmlinux 0xa956abda mtk_mmsys_ddp_connect -EXPORT_SYMBOL_GPL vmlinux 0xa967920d ata_pio_need_iordy -EXPORT_SYMBOL_GPL vmlinux 0xa96e8b4e hv_setup_vmbus_handler -EXPORT_SYMBOL_GPL vmlinux 0xa98653b8 wm8350_read_auxadc -EXPORT_SYMBOL_GPL vmlinux 0xa98820f8 perf_aux_output_begin -EXPORT_SYMBOL_GPL vmlinux 0xa99b8e70 __SCK__tp_func_xdp_exception -EXPORT_SYMBOL_GPL vmlinux 0xa99b96ea fsnotify -EXPORT_SYMBOL_GPL vmlinux 0xa99ef899 devlink_fmsg_bool_pair_put -EXPORT_SYMBOL_GPL vmlinux 0xa9a50983 iomap_readpage -EXPORT_SYMBOL_GPL vmlinux 0xa9abc9ea sysfs_create_files -EXPORT_SYMBOL_GPL vmlinux 0xa9b75d19 of_reserved_mem_device_init_by_name -EXPORT_SYMBOL_GPL vmlinux 0xa9d499e4 bio_release_pages -EXPORT_SYMBOL_GPL vmlinux 0xa9d5d7cf icc_provider_add -EXPORT_SYMBOL_GPL vmlinux 0xa9e18049 task_handoff_unregister -EXPORT_SYMBOL_GPL vmlinux 0xa9e6b74c devm_otg_ulpi_create -EXPORT_SYMBOL_GPL vmlinux 0xa9ef11ed cpufreq_unregister_driver -EXPORT_SYMBOL_GPL vmlinux 0xa9f58ad7 nvdimm_pmem_region_create -EXPORT_SYMBOL_GPL vmlinux 0xaa0146b6 tcp_twsk_destructor -EXPORT_SYMBOL_GPL vmlinux 0xaa1864f1 rdev_set_badblocks -EXPORT_SYMBOL_GPL vmlinux 0xaa230f88 perf_unregister_guest_info_callbacks -EXPORT_SYMBOL_GPL vmlinux 0xaa305c8f dma_buf_put -EXPORT_SYMBOL_GPL vmlinux 0xaa35939f debugfs_read_file_bool -EXPORT_SYMBOL_GPL vmlinux 0xaa3a498b xfrm_audit_policy_delete -EXPORT_SYMBOL_GPL vmlinux 0xaa435370 pci_hp_destroy -EXPORT_SYMBOL_GPL vmlinux 0xaa516c24 gnttab_alloc_pages -EXPORT_SYMBOL_GPL vmlinux 0xaa6a50f9 __static_key_deferred_flush -EXPORT_SYMBOL_GPL vmlinux 0xaa8b9a86 synchronize_srcu -EXPORT_SYMBOL_GPL vmlinux 0xaa8c8606 perf_event_update_userpage -EXPORT_SYMBOL_GPL vmlinux 0xaa91a44f clk_divider_ro_ops -EXPORT_SYMBOL_GPL vmlinux 0xaaa918c9 ftrace_dump -EXPORT_SYMBOL_GPL vmlinux 0xaabdf5a9 gpiod_disable_hw_timestamp_ns -EXPORT_SYMBOL_GPL vmlinux 0xaabeaaf0 cpu_subsys -EXPORT_SYMBOL_GPL vmlinux 0xaad26c69 fwnode_get_phy_node -EXPORT_SYMBOL_GPL vmlinux 0xaaee5732 dprc_reset_container -EXPORT_SYMBOL_GPL vmlinux 0xaaf6089d xfrm_audit_state_delete -EXPORT_SYMBOL_GPL vmlinux 0xab060841 zynqmp_pm_query_data -EXPORT_SYMBOL_GPL vmlinux 0xab13fc97 rio_mport_write_config_8 -EXPORT_SYMBOL_GPL vmlinux 0xab1e0e93 hv_setup_kexec_handler -EXPORT_SYMBOL_GPL vmlinux 0xab260c71 gpiochip_relres_irq -EXPORT_SYMBOL_GPL vmlinux 0xab447e30 usb_get_from_anchor -EXPORT_SYMBOL_GPL vmlinux 0xab46d44f gpiochip_populate_parent_fwspec_fourcell -EXPORT_SYMBOL_GPL vmlinux 0xab4dbf76 pinctrl_enable -EXPORT_SYMBOL_GPL vmlinux 0xab54c59c crypto_rng_reset -EXPORT_SYMBOL_GPL vmlinux 0xab5500e4 kill_pid_usb_asyncio -EXPORT_SYMBOL_GPL vmlinux 0xab5fe34c max8997_bulk_write -EXPORT_SYMBOL_GPL vmlinux 0xab66e658 devlink_health_reporter_create -EXPORT_SYMBOL_GPL vmlinux 0xab74db40 rio_unlock_device -EXPORT_SYMBOL_GPL vmlinux 0xab7f853d mtk_mutex_prepare -EXPORT_SYMBOL_GPL vmlinux 0xab8e58ee ata_sff_freeze -EXPORT_SYMBOL_GPL vmlinux 0xab9bd884 perf_register_guest_info_callbacks -EXPORT_SYMBOL_GPL vmlinux 0xabaf2f1e cgroup_get_e_css -EXPORT_SYMBOL_GPL vmlinux 0xabb1466a udp_cmsg_send -EXPORT_SYMBOL_GPL vmlinux 0xabb2d338 watchdog_init_timeout -EXPORT_SYMBOL_GPL vmlinux 0xabbb47c1 crypto_hash_walk_done -EXPORT_SYMBOL_GPL vmlinux 0xabbf27b1 usb_root_hub_lost_power -EXPORT_SYMBOL_GPL vmlinux 0xabc516e4 crypto_larval_alloc -EXPORT_SYMBOL_GPL vmlinux 0xabc640f3 list_lru_isolate -EXPORT_SYMBOL_GPL vmlinux 0xabca402d simple_attr_release -EXPORT_SYMBOL_GPL vmlinux 0xabd45848 stop_machine -EXPORT_SYMBOL_GPL vmlinux 0xabdf3f7c ahci_host_activate -EXPORT_SYMBOL_GPL vmlinux 0xabee2ee9 security_path_chmod -EXPORT_SYMBOL_GPL vmlinux 0xabf0d6be dmaengine_desc_attach_metadata -EXPORT_SYMBOL_GPL vmlinux 0xac024dbf ahci_start_fis_rx -EXPORT_SYMBOL_GPL vmlinux 0xac05bff7 pci_assign_unassigned_bridge_resources -EXPORT_SYMBOL_GPL vmlinux 0xac0a7567 aead_geniv_alloc -EXPORT_SYMBOL_GPL vmlinux 0xac1c67a2 strp_init -EXPORT_SYMBOL_GPL vmlinux 0xac548446 pci_generic_config_read -EXPORT_SYMBOL_GPL vmlinux 0xac624679 rio_mport_initialize -EXPORT_SYMBOL_GPL vmlinux 0xac7b1f81 i2c_dw_validate_speed -EXPORT_SYMBOL_GPL vmlinux 0xac7d3f5e xdp_rxq_info_unused -EXPORT_SYMBOL_GPL vmlinux 0xac7e095b __crypto_alloc_tfm -EXPORT_SYMBOL_GPL vmlinux 0xac7e452c dev_xdp_prog_count -EXPORT_SYMBOL_GPL vmlinux 0xac862bcd meson_eeclkc_probe -EXPORT_SYMBOL_GPL vmlinux 0xaca5cacc dev_pm_disable_wake_irq -EXPORT_SYMBOL_GPL vmlinux 0xaca6da8f gpiod_get_array -EXPORT_SYMBOL_GPL vmlinux 0xacac48d7 iommu_attach_group -EXPORT_SYMBOL_GPL vmlinux 0xacb0f7fc vchan_find_desc -EXPORT_SYMBOL_GPL vmlinux 0xacb3cae0 tpm_pcr_read -EXPORT_SYMBOL_GPL vmlinux 0xacb4451a k3_ringacc_ring_cfg -EXPORT_SYMBOL_GPL vmlinux 0xacb4d88c clk_rate_exclusive_put -EXPORT_SYMBOL_GPL vmlinux 0xacb91b77 crypto_register_algs -EXPORT_SYMBOL_GPL vmlinux 0xacc87f42 uprobe_unregister -EXPORT_SYMBOL_GPL vmlinux 0xacc977ac alarm_forward_now -EXPORT_SYMBOL_GPL vmlinux 0xacd113af sysfs_update_groups -EXPORT_SYMBOL_GPL vmlinux 0xacd14c19 of_find_spi_device_by_node -EXPORT_SYMBOL_GPL vmlinux 0xace3005a cpuidle_unregister_driver -EXPORT_SYMBOL_GPL vmlinux 0xaceb00e7 acpi_device_fwnode_ops -EXPORT_SYMBOL_GPL vmlinux 0xacf02fa1 of_mm_gpiochip_add_data -EXPORT_SYMBOL_GPL vmlinux 0xacf07bed of_device_modalias -EXPORT_SYMBOL_GPL vmlinux 0xacf3f438 acpi_device_fix_up_power -EXPORT_SYMBOL_GPL vmlinux 0xacf44418 of_thermal_get_ntrips -EXPORT_SYMBOL_GPL vmlinux 0xacf570fa icc_node_create -EXPORT_SYMBOL_GPL vmlinux 0xacfa8aec pm_relax -EXPORT_SYMBOL_GPL vmlinux 0xad029f1d pin_user_pages_fast -EXPORT_SYMBOL_GPL vmlinux 0xad0f2b6c unix_table_lock -EXPORT_SYMBOL_GPL vmlinux 0xad1e2967 rtnl_get_net_ns_capable -EXPORT_SYMBOL_GPL vmlinux 0xad1ed233 attribute_container_classdev_to_container -EXPORT_SYMBOL_GPL vmlinux 0xad23ea34 bus_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0xad25602f __tracepoint_sched_overutilized_tp -EXPORT_SYMBOL_GPL vmlinux 0xad395dd9 mm_account_pinned_pages -EXPORT_SYMBOL_GPL vmlinux 0xad42dff8 __SCK__tp_func_tcp_bad_csum -EXPORT_SYMBOL_GPL vmlinux 0xad475f9e dev_pm_qos_flags -EXPORT_SYMBOL_GPL vmlinux 0xad4e6259 remove_cpu -EXPORT_SYMBOL_GPL vmlinux 0xad544465 usb_free_streams -EXPORT_SYMBOL_GPL vmlinux 0xad55c523 crypto_alloc_skcipher -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 0xad7f2a9b ata_pci_remove_one -EXPORT_SYMBOL_GPL vmlinux 0xad88c35b mptcp_pm_get_subflows_max -EXPORT_SYMBOL_GPL vmlinux 0xad89a70c iommu_set_fault_handler -EXPORT_SYMBOL_GPL vmlinux 0xad9b65e5 dmaengine_unmap_put -EXPORT_SYMBOL_GPL vmlinux 0xada38766 dst_cache_destroy -EXPORT_SYMBOL_GPL vmlinux 0xada82c34 pci_epc_mem_alloc_addr -EXPORT_SYMBOL_GPL vmlinux 0xada95a49 mpc8xxx_spi_tx_buf_u32 -EXPORT_SYMBOL_GPL vmlinux 0xadab8d70 dev_attr_em_message -EXPORT_SYMBOL_GPL vmlinux 0xadac10f9 icc_enable -EXPORT_SYMBOL_GPL vmlinux 0xadb35b01 xfrm_dev_offload_ok -EXPORT_SYMBOL_GPL vmlinux 0xadbb6af5 vfs_inode_has_locks -EXPORT_SYMBOL_GPL vmlinux 0xadbc9ecd hrtimer_init_sleeper -EXPORT_SYMBOL_GPL vmlinux 0xadbe0754 ohci_resume -EXPORT_SYMBOL_GPL vmlinux 0xadd2e0cc dax_iomap_fault -EXPORT_SYMBOL_GPL vmlinux 0xadd312de regulator_get_voltage -EXPORT_SYMBOL_GPL vmlinux 0xaddeb67c of_get_required_opp_performance_state -EXPORT_SYMBOL_GPL vmlinux 0xade126eb i2c_handle_smbus_host_notify -EXPORT_SYMBOL_GPL vmlinux 0xadf8261e simple_attr_open -EXPORT_SYMBOL_GPL vmlinux 0xadf8e611 fwnode_get_next_parent -EXPORT_SYMBOL_GPL vmlinux 0xadffbf60 crypto_find_alg -EXPORT_SYMBOL_GPL vmlinux 0xae01d4d4 serial8250_update_uartclk -EXPORT_SYMBOL_GPL vmlinux 0xae0ecf40 usb_bus_idr_lock -EXPORT_SYMBOL_GPL vmlinux 0xae1051b0 net_cls_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0xae15f062 usb_driver_release_interface -EXPORT_SYMBOL_GPL vmlinux 0xae1a11ed usb_pipe_type_check -EXPORT_SYMBOL_GPL vmlinux 0xae27acb4 pinmux_generic_remove_function -EXPORT_SYMBOL_GPL vmlinux 0xae28a243 __pm_stay_awake -EXPORT_SYMBOL_GPL vmlinux 0xae3166d4 ata_host_suspend -EXPORT_SYMBOL_GPL vmlinux 0xae34ec39 dprc_get_obj -EXPORT_SYMBOL_GPL vmlinux 0xae39f80e dst_cache_init -EXPORT_SYMBOL_GPL vmlinux 0xae45579c tty_port_register_device_attr_serdev -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 0xae792dfa efivar_entry_iter -EXPORT_SYMBOL_GPL vmlinux 0xae794129 devm_devfreq_event_add_edev -EXPORT_SYMBOL_GPL vmlinux 0xae7c231d mpi_cmp -EXPORT_SYMBOL_GPL vmlinux 0xae8b5ed9 cpuidle_unregister -EXPORT_SYMBOL_GPL vmlinux 0xae9c59ce fixed_phy_register -EXPORT_SYMBOL_GPL vmlinux 0xaea561b7 gpiod_get_index_optional -EXPORT_SYMBOL_GPL vmlinux 0xaea7b568 pcie_port_find_device -EXPORT_SYMBOL_GPL vmlinux 0xaecbc664 posix_clock_unregister -EXPORT_SYMBOL_GPL vmlinux 0xaed568f0 acpi_subsys_suspend_late -EXPORT_SYMBOL_GPL vmlinux 0xaf01dd2b devlink_param_value_changed -EXPORT_SYMBOL_GPL vmlinux 0xaf076aec nd_fletcher64 -EXPORT_SYMBOL_GPL vmlinux 0xaf0a0cc1 pci_generic_config_write -EXPORT_SYMBOL_GPL vmlinux 0xaf0b6ba7 blkg_rwstat_init -EXPORT_SYMBOL_GPL vmlinux 0xaf1cace2 tps6586x_set_bits -EXPORT_SYMBOL_GPL vmlinux 0xaf1f9c23 bio_associate_blkg -EXPORT_SYMBOL_GPL vmlinux 0xaf22589e nf_queue_entry_free -EXPORT_SYMBOL_GPL vmlinux 0xaf266262 thermal_zone_bind_cooling_device -EXPORT_SYMBOL_GPL vmlinux 0xaf3228d0 vchan_init -EXPORT_SYMBOL_GPL vmlinux 0xaf3368af balloon_page_list_enqueue -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 0xaf4ae511 rockchip_clk_register_plls -EXPORT_SYMBOL_GPL vmlinux 0xaf5b72ad __irq_domain_add -EXPORT_SYMBOL_GPL vmlinux 0xaf6b1b13 sock_diag_check_cookie -EXPORT_SYMBOL_GPL vmlinux 0xaf793668 __alloc_percpu_gfp -EXPORT_SYMBOL_GPL vmlinux 0xaf852873 cpuidle_register_device -EXPORT_SYMBOL_GPL vmlinux 0xaf85cbd4 mnt_want_write_file -EXPORT_SYMBOL_GPL vmlinux 0xaf9e82a6 __fsl_mc_driver_register -EXPORT_SYMBOL_GPL vmlinux 0xafa1308a dst_blackhole_redirect -EXPORT_SYMBOL_GPL vmlinux 0xafa8e8a9 battery_hook_register -EXPORT_SYMBOL_GPL vmlinux 0xafad5ed0 __devm_regmap_init_i2c -EXPORT_SYMBOL_GPL vmlinux 0xafb07262 __pfn_to_mfn -EXPORT_SYMBOL_GPL vmlinux 0xafca7fb2 verify_signature -EXPORT_SYMBOL_GPL vmlinux 0xafd18bb1 usb_intf_get_dma_device -EXPORT_SYMBOL_GPL vmlinux 0xafddd545 ata_id_c_string -EXPORT_SYMBOL_GPL vmlinux 0xafe64eb0 iomap_fiemap -EXPORT_SYMBOL_GPL vmlinux 0xafe97c13 crypto_ahash_setkey -EXPORT_SYMBOL_GPL vmlinux 0xafeb58c1 __SCK__tp_func_io_page_fault -EXPORT_SYMBOL_GPL vmlinux 0xb0099f79 topology_clear_scale_freq_source -EXPORT_SYMBOL_GPL vmlinux 0xb0191589 __pm_runtime_suspend -EXPORT_SYMBOL_GPL vmlinux 0xb019d038 device_wakeup_enable -EXPORT_SYMBOL_GPL vmlinux 0xb01f5fe8 sysfs_remove_file_ns -EXPORT_SYMBOL_GPL vmlinux 0xb02ac411 register_xenstore_notifier -EXPORT_SYMBOL_GPL vmlinux 0xb032f188 dev_pm_opp_get_max_clock_latency -EXPORT_SYMBOL_GPL vmlinux 0xb0375652 pwm_adjust_config -EXPORT_SYMBOL_GPL vmlinux 0xb049a294 __SCK__tp_func_pelt_irq_tp -EXPORT_SYMBOL_GPL vmlinux 0xb0551224 blk_queue_set_zoned -EXPORT_SYMBOL_GPL vmlinux 0xb05927e2 nvdimm_in_overwrite -EXPORT_SYMBOL_GPL vmlinux 0xb05b68d5 zynqmp_pm_reset_get_status -EXPORT_SYMBOL_GPL vmlinux 0xb05c9385 acpi_get_and_request_gpiod -EXPORT_SYMBOL_GPL vmlinux 0xb05cd244 cpufreq_table_index_unsorted -EXPORT_SYMBOL_GPL vmlinux 0xb073f6a9 skb_zerocopy -EXPORT_SYMBOL_GPL vmlinux 0xb0747ed2 rcu_cpu_stall_suppress -EXPORT_SYMBOL_GPL vmlinux 0xb077e70a clk_unprepare -EXPORT_SYMBOL_GPL vmlinux 0xb0816686 irq_chip_request_resources_parent -EXPORT_SYMBOL_GPL vmlinux 0xb087c0bc dev_pm_opp_put_prop_name -EXPORT_SYMBOL_GPL vmlinux 0xb08a22a3 cpufreq_show_cpus -EXPORT_SYMBOL_GPL vmlinux 0xb08bfc37 usb_deregister_dev -EXPORT_SYMBOL_GPL vmlinux 0xb097d219 phy_power_on -EXPORT_SYMBOL_GPL vmlinux 0xb09832c1 usb_get_status -EXPORT_SYMBOL_GPL vmlinux 0xb09f24d0 pm_runtime_force_resume -EXPORT_SYMBOL_GPL vmlinux 0xb0b4a75c __mmdrop -EXPORT_SYMBOL_GPL vmlinux 0xb0b85f47 ring_buffer_iter_reset -EXPORT_SYMBOL_GPL vmlinux 0xb0d1656c gpio_free_array -EXPORT_SYMBOL_GPL vmlinux 0xb0d41914 crypto_drop_spawn -EXPORT_SYMBOL_GPL vmlinux 0xb0da0baa rio_register_mport -EXPORT_SYMBOL_GPL vmlinux 0xb0de0221 pci_epf_destroy -EXPORT_SYMBOL_GPL vmlinux 0xb0e8e671 xenbus_otherend_changed -EXPORT_SYMBOL_GPL vmlinux 0xb0f18020 clk_mux_ro_ops -EXPORT_SYMBOL_GPL vmlinux 0xb0f4a7ba crypto_register_alg -EXPORT_SYMBOL_GPL vmlinux 0xb0fdefae class_unregister -EXPORT_SYMBOL_GPL vmlinux 0xb1009feb sata_link_hardreset -EXPORT_SYMBOL_GPL vmlinux 0xb10d8528 led_trigger_blink -EXPORT_SYMBOL_GPL vmlinux 0xb10d964d devlink_fmsg_pair_nest_end -EXPORT_SYMBOL_GPL vmlinux 0xb11d9000 tty_dev_name_to_number -EXPORT_SYMBOL_GPL vmlinux 0xb1391078 spi_mem_supports_op -EXPORT_SYMBOL_GPL vmlinux 0xb13ec079 rtnl_af_unregister -EXPORT_SYMBOL_GPL vmlinux 0xb15baa4d imx_pinctrl_probe -EXPORT_SYMBOL_GPL vmlinux 0xb162ce54 dw8250_setup_port -EXPORT_SYMBOL_GPL vmlinux 0xb1647fc2 devlink_info_version_running_put -EXPORT_SYMBOL_GPL vmlinux 0xb16796d2 devm_hwmon_device_register_with_groups -EXPORT_SYMBOL_GPL vmlinux 0xb16d3126 led_trigger_read -EXPORT_SYMBOL_GPL vmlinux 0xb176c989 fwnode_graph_get_remote_node -EXPORT_SYMBOL_GPL vmlinux 0xb17a7ce0 regmap_mmio_attach_clk -EXPORT_SYMBOL_GPL vmlinux 0xb1804892 ata_sff_drain_fifo -EXPORT_SYMBOL_GPL vmlinux 0xb18429eb suspend_device_irqs -EXPORT_SYMBOL_GPL vmlinux 0xb19c40a0 devm_of_platform_depopulate -EXPORT_SYMBOL_GPL vmlinux 0xb1b540d5 regulator_get -EXPORT_SYMBOL_GPL vmlinux 0xb1bed25d dpm_resume_start -EXPORT_SYMBOL_GPL vmlinux 0xb1cf5606 irq_domain_free_irqs_common -EXPORT_SYMBOL_GPL vmlinux 0xb1e25684 __trace_bputs -EXPORT_SYMBOL_GPL vmlinux 0xb1f898b1 serial8250_clear_and_reinit_fifos -EXPORT_SYMBOL_GPL vmlinux 0xb1fc1782 pci_speed_string -EXPORT_SYMBOL_GPL vmlinux 0xb202f0d7 rht_bucket_nested_insert -EXPORT_SYMBOL_GPL vmlinux 0xb2193023 clk_hw_get_parent -EXPORT_SYMBOL_GPL vmlinux 0xb2210d64 reset_control_deassert -EXPORT_SYMBOL_GPL vmlinux 0xb2221ed4 device_rename -EXPORT_SYMBOL_GPL vmlinux 0xb2405efc secure_tcp_seq -EXPORT_SYMBOL_GPL vmlinux 0xb25cf893 crypto_stats_ahash_update -EXPORT_SYMBOL_GPL vmlinux 0xb25e9b5a driver_deferred_probe_check_state -EXPORT_SYMBOL_GPL vmlinux 0xb267299f efivar_entry_set_get_size -EXPORT_SYMBOL_GPL vmlinux 0xb26a1add elfcorehdr_addr -EXPORT_SYMBOL_GPL vmlinux 0xb27e3ac9 dmaengine_desc_set_metadata_len -EXPORT_SYMBOL_GPL vmlinux 0xb281256b of_css -EXPORT_SYMBOL_GPL vmlinux 0xb2892e51 devlink_port_attrs_pci_sf_set -EXPORT_SYMBOL_GPL vmlinux 0xb28dbe1e ata_qc_complete -EXPORT_SYMBOL_GPL vmlinux 0xb292a292 device_set_of_node_from_dev -EXPORT_SYMBOL_GPL vmlinux 0xb292e645 scsi_host_busy_iter -EXPORT_SYMBOL_GPL vmlinux 0xb29533ee zs_malloc -EXPORT_SYMBOL_GPL vmlinux 0xb2c1732e rcu_gp_set_torture_wait -EXPORT_SYMBOL_GPL vmlinux 0xb2d0f7c0 regulator_get_hardware_vsel_register -EXPORT_SYMBOL_GPL vmlinux 0xb2e764e8 suspend_valid_only_mem -EXPORT_SYMBOL_GPL vmlinux 0xb2e8bb58 serial8250_do_set_divisor -EXPORT_SYMBOL_GPL vmlinux 0xb307c909 devlink_fmsg_u64_pair_put -EXPORT_SYMBOL_GPL vmlinux 0xb30929ae ip6_push_pending_frames -EXPORT_SYMBOL_GPL vmlinux 0xb311db29 mtk_pinconf_drive_get -EXPORT_SYMBOL_GPL vmlinux 0xb325c1d6 crypto_unregister_aead -EXPORT_SYMBOL_GPL vmlinux 0xb33d64e0 phy_calibrate -EXPORT_SYMBOL_GPL vmlinux 0xb35b3740 kgdb_register_io_module -EXPORT_SYMBOL_GPL vmlinux 0xb363eee3 devlink_register -EXPORT_SYMBOL_GPL vmlinux 0xb366b53e crypto_register_ahashes -EXPORT_SYMBOL_GPL vmlinux 0xb39709d8 fscrypt_ioctl_add_key -EXPORT_SYMBOL_GPL vmlinux 0xb3a8947a iommu_sva_get_pasid -EXPORT_SYMBOL_GPL vmlinux 0xb3aa6572 __pm_runtime_resume -EXPORT_SYMBOL_GPL vmlinux 0xb3b4b7f4 sata_set_spd -EXPORT_SYMBOL_GPL vmlinux 0xb3c0a5aa sched_trace_rq_cpu -EXPORT_SYMBOL_GPL vmlinux 0xb3c69f28 relay_buf_full -EXPORT_SYMBOL_GPL vmlinux 0xb3fceab9 iomap_finish_ioends -EXPORT_SYMBOL_GPL vmlinux 0xb4092e48 of_irq_parse_one -EXPORT_SYMBOL_GPL vmlinux 0xb40d673e zynqmp_pm_pinctrl_request -EXPORT_SYMBOL_GPL vmlinux 0xb4231a2c misc_cg_uncharge -EXPORT_SYMBOL_GPL vmlinux 0xb423caec __srcu_read_unlock -EXPORT_SYMBOL_GPL vmlinux 0xb42e1575 iomap_seek_data -EXPORT_SYMBOL_GPL vmlinux 0xb43932bb ata_port_abort -EXPORT_SYMBOL_GPL vmlinux 0xb43f9365 ktime_get -EXPORT_SYMBOL_GPL vmlinux 0xb4429b64 acpi_dev_resource_ext_address_space -EXPORT_SYMBOL_GPL vmlinux 0xb44e18ea audit_enabled -EXPORT_SYMBOL_GPL vmlinux 0xb44fb976 debugfs_create_symlink -EXPORT_SYMBOL_GPL vmlinux 0xb452fdf4 md_bitmap_resize -EXPORT_SYMBOL_GPL vmlinux 0xb46b0654 irq_chip_set_wake_parent -EXPORT_SYMBOL_GPL vmlinux 0xb488bb53 gen10g_config_aneg -EXPORT_SYMBOL_GPL vmlinux 0xb48eafe3 ipv4_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0xb48f0638 software_node_register -EXPORT_SYMBOL_GPL vmlinux 0xb49adbe6 iommu_map_atomic -EXPORT_SYMBOL_GPL vmlinux 0xb4a6d803 sdio_align_size -EXPORT_SYMBOL_GPL vmlinux 0xb4ad39d7 blk_stat_enable_accounting -EXPORT_SYMBOL_GPL vmlinux 0xb4b19455 imx8m_clk_hw_composite_flags -EXPORT_SYMBOL_GPL vmlinux 0xb4b97c90 pvclock_gtod_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0xb4cd7d88 crypto_alloc_acomp_node -EXPORT_SYMBOL_GPL vmlinux 0xb4d19ce0 add_swap_extent -EXPORT_SYMBOL_GPL vmlinux 0xb4d96b4b cpufreq_generic_init -EXPORT_SYMBOL_GPL vmlinux 0xb4da9fe1 devlink_port_type_eth_set -EXPORT_SYMBOL_GPL vmlinux 0xb4ea7cf7 kgdb_connected -EXPORT_SYMBOL_GPL vmlinux 0xb4eda0da ring_buffer_event_length -EXPORT_SYMBOL_GPL vmlinux 0xb4f9f124 fscrypt_prepare_symlink -EXPORT_SYMBOL_GPL vmlinux 0xb501b2df nd_cmd_dimm_desc -EXPORT_SYMBOL_GPL vmlinux 0xb506366b debugfs_create_u16 -EXPORT_SYMBOL_GPL vmlinux 0xb510c250 raw_v4_hashinfo -EXPORT_SYMBOL_GPL vmlinux 0xb51f510f request_firmware_direct -EXPORT_SYMBOL_GPL vmlinux 0xb51fbd64 edac_op_state -EXPORT_SYMBOL_GPL vmlinux 0xb520eb79 btree_merge -EXPORT_SYMBOL_GPL vmlinux 0xb52c87f0 mbox_request_channel_byname -EXPORT_SYMBOL_GPL vmlinux 0xb52ce7ea md_submit_discard_bio -EXPORT_SYMBOL_GPL vmlinux 0xb53080e3 securityfs_create_symlink -EXPORT_SYMBOL_GPL vmlinux 0xb53e1eac find_get_pid -EXPORT_SYMBOL_GPL vmlinux 0xb552c7d1 ipv6_bpf_stub -EXPORT_SYMBOL_GPL vmlinux 0xb55de460 HYPERVISOR_dm_op -EXPORT_SYMBOL_GPL vmlinux 0xb56748c4 devm_hwspin_lock_unregister -EXPORT_SYMBOL_GPL vmlinux 0xb568beea regulator_set_active_discharge_regmap -EXPORT_SYMBOL_GPL vmlinux 0xb56e7691 palmas_ext_control_req_config -EXPORT_SYMBOL_GPL vmlinux 0xb57e4662 __vfs_setxattr_noperm -EXPORT_SYMBOL_GPL vmlinux 0xb599e10e security_inode_permission -EXPORT_SYMBOL_GPL vmlinux 0xb59fed51 da903x_clr_bits -EXPORT_SYMBOL_GPL vmlinux 0xb5a83e35 gnttab_setup_auto_xlat_frames -EXPORT_SYMBOL_GPL vmlinux 0xb5a8864e scsi_internal_device_block_nowait -EXPORT_SYMBOL_GPL vmlinux 0xb5a8c226 acpi_gsi_to_irq -EXPORT_SYMBOL_GPL vmlinux 0xb5b6fb04 hv_get_vpreg -EXPORT_SYMBOL_GPL vmlinux 0xb5bf434a sprd_pinctrl_remove -EXPORT_SYMBOL_GPL vmlinux 0xb5bf998c wm831x_reg_write -EXPORT_SYMBOL_GPL vmlinux 0xb5c8ec4f serial8250_em485_start_tx -EXPORT_SYMBOL_GPL vmlinux 0xb5ca542e gpiod_to_irq -EXPORT_SYMBOL_GPL vmlinux 0xb5ccd077 pwm_apply_state -EXPORT_SYMBOL_GPL vmlinux 0xb5eadf02 pm_genpd_opp_to_performance_state -EXPORT_SYMBOL_GPL vmlinux 0xb5ebba09 dev_pm_opp_find_freq_exact -EXPORT_SYMBOL_GPL vmlinux 0xb6088609 dpbp_close -EXPORT_SYMBOL_GPL vmlinux 0xb619dcf4 usb_get_intf -EXPORT_SYMBOL_GPL vmlinux 0xb61c9da2 pm_wakeup_ws_event -EXPORT_SYMBOL_GPL vmlinux 0xb6261484 register_die_notifier -EXPORT_SYMBOL_GPL vmlinux 0xb6357e53 cpuidle_enable_device -EXPORT_SYMBOL_GPL vmlinux 0xb6410433 mpi_addm -EXPORT_SYMBOL_GPL vmlinux 0xb64bb259 ata_std_error_handler -EXPORT_SYMBOL_GPL vmlinux 0xb64ce550 __traceiter_br_fdb_external_learn_add -EXPORT_SYMBOL_GPL vmlinux 0xb655f91b pci_epc_get_next_free_bar -EXPORT_SYMBOL_GPL vmlinux 0xb65aa977 devm_watchdog_register_device -EXPORT_SYMBOL_GPL vmlinux 0xb66563a6 dma_buf_begin_cpu_access -EXPORT_SYMBOL_GPL vmlinux 0xb6787346 sfp_unregister_socket -EXPORT_SYMBOL_GPL vmlinux 0xb679fae2 perf_aux_output_flag -EXPORT_SYMBOL_GPL vmlinux 0xb6950b66 fat_getattr -EXPORT_SYMBOL_GPL vmlinux 0xb69bdbf3 crypto_register_instance -EXPORT_SYMBOL_GPL vmlinux 0xb69c46f9 __clk_hw_register_mux -EXPORT_SYMBOL_GPL vmlinux 0xb6a3dc64 ipv6_dup_options -EXPORT_SYMBOL_GPL vmlinux 0xb6a7037a iomap_releasepage -EXPORT_SYMBOL_GPL vmlinux 0xb6aab3db stmpe811_adc_common_init -EXPORT_SYMBOL_GPL vmlinux 0xb6b34653 xenbus_dev_suspend -EXPORT_SYMBOL_GPL vmlinux 0xb6c127be devres_release -EXPORT_SYMBOL_GPL vmlinux 0xb6d2fe60 rio_unregister_mport -EXPORT_SYMBOL_GPL vmlinux 0xb6e5990f __fscrypt_prepare_lookup -EXPORT_SYMBOL_GPL vmlinux 0xb6e6d99d clk_disable -EXPORT_SYMBOL_GPL vmlinux 0xb6f5afa3 ahci_init_controller -EXPORT_SYMBOL_GPL vmlinux 0xb71b3cf3 soc_device_register -EXPORT_SYMBOL_GPL vmlinux 0xb723fa6e l3mdev_fib_table_by_index -EXPORT_SYMBOL_GPL vmlinux 0xb72bebc4 mmc_regulator_set_ocr -EXPORT_SYMBOL_GPL vmlinux 0xb7329c06 clk_set_phase -EXPORT_SYMBOL_GPL vmlinux 0xb73713d7 nvmem_add_cell_lookups -EXPORT_SYMBOL_GPL vmlinux 0xb7373bc8 ping_seq_next -EXPORT_SYMBOL_GPL vmlinux 0xb7376587 uhci_reset_hc -EXPORT_SYMBOL_GPL vmlinux 0xb744e017 i2c_dw_configure_master -EXPORT_SYMBOL_GPL vmlinux 0xb748e73d mctrl_gpio_free -EXPORT_SYMBOL_GPL vmlinux 0xb750639b wp_shared_mapping_range -EXPORT_SYMBOL_GPL vmlinux 0xb77b5fce rockchip_pcie_cfg_configuration_accesses -EXPORT_SYMBOL_GPL vmlinux 0xb782c1a3 hv_get_vpreg_128 -EXPORT_SYMBOL_GPL vmlinux 0xb782d244 dma_alloc_pages -EXPORT_SYMBOL_GPL vmlinux 0xb7854ec1 mbox_chan_txdone -EXPORT_SYMBOL_GPL vmlinux 0xb786455b wbc_account_cgroup_owner -EXPORT_SYMBOL_GPL vmlinux 0xb786bf75 pci_write_msi_msg -EXPORT_SYMBOL_GPL vmlinux 0xb78c0a39 pwm_get -EXPORT_SYMBOL_GPL vmlinux 0xb78e07f1 devm_acpi_dev_remove_driver_gpios -EXPORT_SYMBOL_GPL vmlinux 0xb7a387fc synchronize_rcu_tasks_rude -EXPORT_SYMBOL_GPL vmlinux 0xb7ada692 regmap_bulk_read -EXPORT_SYMBOL_GPL vmlinux 0xb7b22009 mctrl_gpio_init_noauto -EXPORT_SYMBOL_GPL vmlinux 0xb7baf800 usb_string -EXPORT_SYMBOL_GPL vmlinux 0xb7c69a63 unregister_vmap_purge_notifier -EXPORT_SYMBOL_GPL vmlinux 0xb7cc0cff __tracepoint_br_fdb_add -EXPORT_SYMBOL_GPL vmlinux 0xb7d3bd84 virtqueue_get_vring -EXPORT_SYMBOL_GPL vmlinux 0xb7d5c9d7 dev_pm_opp_get_max_transition_latency -EXPORT_SYMBOL_GPL vmlinux 0xb7d840a1 rio_route_clr_table -EXPORT_SYMBOL_GPL vmlinux 0xb7e18cff iomap_swapfile_activate -EXPORT_SYMBOL_GPL vmlinux 0xb7ea9237 fuse_simple_background -EXPORT_SYMBOL_GPL vmlinux 0xb7f73ef8 xas_init_marks -EXPORT_SYMBOL_GPL vmlinux 0xb7f990e9 rht_bucket_nested -EXPORT_SYMBOL_GPL vmlinux 0xb80222b3 wm8350_block_read -EXPORT_SYMBOL_GPL vmlinux 0xb804f550 fwnode_get_parent -EXPORT_SYMBOL_GPL vmlinux 0xb81b1057 crypto_stats_compress -EXPORT_SYMBOL_GPL vmlinux 0xb8273d0b __wake_up_sync -EXPORT_SYMBOL_GPL vmlinux 0xb846f40d ethnl_cable_test_alloc -EXPORT_SYMBOL_GPL vmlinux 0xb847585f is_hash_blacklisted -EXPORT_SYMBOL_GPL vmlinux 0xb852addb rio_release_dma -EXPORT_SYMBOL_GPL vmlinux 0xb85a2c5a thermal_zone_unbind_cooling_device -EXPORT_SYMBOL_GPL vmlinux 0xb869829d fsl_mc_bus_dprtc_type -EXPORT_SYMBOL_GPL vmlinux 0xb870337b invalidate_inode_pages2 -EXPORT_SYMBOL_GPL vmlinux 0xb87f40fe cppc_set_enable -EXPORT_SYMBOL_GPL vmlinux 0xb885e5da xhci_hub_control -EXPORT_SYMBOL_GPL vmlinux 0xb8878631 of_platform_default_populate -EXPORT_SYMBOL_GPL vmlinux 0xb88bc47e arch_apei_report_mem_error -EXPORT_SYMBOL_GPL vmlinux 0xb88dbfce irq_set_irqchip_state -EXPORT_SYMBOL_GPL vmlinux 0xb8993fac __tracepoint_remove_device_from_group -EXPORT_SYMBOL_GPL vmlinux 0xb89e69b1 jump_label_update_timeout -EXPORT_SYMBOL_GPL vmlinux 0xb8ac9b45 blk_mq_queue_inflight -EXPORT_SYMBOL_GPL vmlinux 0xb8b8c4f0 ti_sci_release_resource -EXPORT_SYMBOL_GPL vmlinux 0xb8cd3a7f nf_logger_put -EXPORT_SYMBOL_GPL vmlinux 0xb8d0eb62 spi_statistics_add_transfer_stats -EXPORT_SYMBOL_GPL vmlinux 0xb8eff323 edac_pci_release_generic_ctl -EXPORT_SYMBOL_GPL vmlinux 0xb8f11603 idr_alloc -EXPORT_SYMBOL_GPL vmlinux 0xb9028d6e devm_add_action -EXPORT_SYMBOL_GPL vmlinux 0xb912560d static_key_disable -EXPORT_SYMBOL_GPL vmlinux 0xb917b6d7 return_address -EXPORT_SYMBOL_GPL vmlinux 0xb92d3bad inet6_hash_connect -EXPORT_SYMBOL_GPL vmlinux 0xb950cb04 nexthop_select_path -EXPORT_SYMBOL_GPL vmlinux 0xb9555156 uart_get_rs485_mode -EXPORT_SYMBOL_GPL vmlinux 0xb9596382 usb_hcd_pci_remove -EXPORT_SYMBOL_GPL vmlinux 0xb95d9613 fwnode_property_read_u32_array -EXPORT_SYMBOL_GPL vmlinux 0xb9617609 crypto_unregister_templates -EXPORT_SYMBOL_GPL vmlinux 0xb9681621 xdp_do_flush -EXPORT_SYMBOL_GPL vmlinux 0xb97a6b83 meson_clk_dualdiv_ro_ops -EXPORT_SYMBOL_GPL vmlinux 0xb97bacee gpiochip_disable_irq -EXPORT_SYMBOL_GPL vmlinux 0xb9847406 tty_save_termios -EXPORT_SYMBOL_GPL vmlinux 0xb9852d11 __traceiter_mc_event -EXPORT_SYMBOL_GPL vmlinux 0xb986861f tty_ldisc_receive_buf -EXPORT_SYMBOL_GPL vmlinux 0xb98a17e8 clk_regmap_divider_ro_ops -EXPORT_SYMBOL_GPL vmlinux 0xb98bb315 phy_gbit_fibre_features -EXPORT_SYMBOL_GPL vmlinux 0xb98dca29 __platform_create_bundle -EXPORT_SYMBOL_GPL vmlinux 0xb9998fb8 crypto_stats_init -EXPORT_SYMBOL_GPL vmlinux 0xb9b9df41 usb_amd_dev_put -EXPORT_SYMBOL_GPL vmlinux 0xb9be9021 misc_cg_try_charge -EXPORT_SYMBOL_GPL vmlinux 0xb9c16f51 hv_max_vp_index -EXPORT_SYMBOL_GPL vmlinux 0xb9c425de register_syscore_ops -EXPORT_SYMBOL_GPL vmlinux 0xb9c9ee61 regcache_cache_only -EXPORT_SYMBOL_GPL vmlinux 0xb9cc02ab phy_resolve_aneg_linkmode -EXPORT_SYMBOL_GPL vmlinux 0xb9d025c9 llist_del_first -EXPORT_SYMBOL_GPL vmlinux 0xb9d74a21 dma_get_slave_channel -EXPORT_SYMBOL_GPL vmlinux 0xb9db03dc generic_handle_domain_irq -EXPORT_SYMBOL_GPL vmlinux 0xb9e656a9 dev_pm_clear_wake_irq -EXPORT_SYMBOL_GPL vmlinux 0xb9ed7826 scsi_dh_attach -EXPORT_SYMBOL_GPL vmlinux 0xb9f52a5d crypto_alloc_shash -EXPORT_SYMBOL_GPL vmlinux 0xba057786 kernel_read_file_from_path_initns -EXPORT_SYMBOL_GPL vmlinux 0xba1d430d tps65912_device_init -EXPORT_SYMBOL_GPL vmlinux 0xba220db7 __wake_up_sync_key -EXPORT_SYMBOL_GPL vmlinux 0xba24d134 ip_local_out -EXPORT_SYMBOL_GPL vmlinux 0xba2b7f64 cpufreq_generic_get -EXPORT_SYMBOL_GPL vmlinux 0xba2bd287 vfs_getxattr -EXPORT_SYMBOL_GPL vmlinux 0xba2cf3b4 pci_user_write_config_word -EXPORT_SYMBOL_GPL vmlinux 0xba357b38 devlink_reload_disable -EXPORT_SYMBOL_GPL vmlinux 0xba47db5a net_ns_get_ownership -EXPORT_SYMBOL_GPL vmlinux 0xba4ff61e devm_platform_get_and_ioremap_resource -EXPORT_SYMBOL_GPL vmlinux 0xba60e780 devlink_params_register -EXPORT_SYMBOL_GPL vmlinux 0xba64122b iommu_aux_detach_device -EXPORT_SYMBOL_GPL vmlinux 0xba65bc9d bus_for_each_drv -EXPORT_SYMBOL_GPL vmlinux 0xba701f1e bgmac_adjust_link -EXPORT_SYMBOL_GPL vmlinux 0xba81558c tty_register_device_attr -EXPORT_SYMBOL_GPL vmlinux 0xba9860b6 of_hwspin_lock_get_id_byname -EXPORT_SYMBOL_GPL vmlinux 0xbaa8a477 blkcg_deactivate_policy -EXPORT_SYMBOL_GPL vmlinux 0xbab9a9f0 maxim_charger_currents -EXPORT_SYMBOL_GPL vmlinux 0xbac04c1c fsstack_copy_inode_size -EXPORT_SYMBOL_GPL vmlinux 0xbacbcb43 __rio_local_read_config_16 -EXPORT_SYMBOL_GPL vmlinux 0xbad0545b serial8250_rpm_get_tx -EXPORT_SYMBOL_GPL vmlinux 0xbad5f334 xdp_master_redirect -EXPORT_SYMBOL_GPL vmlinux 0xbae8ea71 __netif_set_xps_queue -EXPORT_SYMBOL_GPL vmlinux 0xbaf22757 kvfree_call_rcu -EXPORT_SYMBOL_GPL vmlinux 0xbaf6850c fsnotify_wait_marks_destroyed -EXPORT_SYMBOL_GPL vmlinux 0xbaffed54 rockchip_clk_register_branches -EXPORT_SYMBOL_GPL vmlinux 0xbb04c8c1 xenbus_dev_cancel -EXPORT_SYMBOL_GPL vmlinux 0xbb0ab47b debug_locks -EXPORT_SYMBOL_GPL vmlinux 0xbb0b25d2 register_xenbus_watch -EXPORT_SYMBOL_GPL vmlinux 0xbb0b4147 device_match_of_node -EXPORT_SYMBOL_GPL vmlinux 0xbb0f67b5 of_i2c_setup_smbus_alert -EXPORT_SYMBOL_GPL vmlinux 0xbb131297 __traceiter_br_fdb_add -EXPORT_SYMBOL_GPL vmlinux 0xbb24f372 __SCK__tp_func_attach_device_to_domain -EXPORT_SYMBOL_GPL vmlinux 0xbb3f7fbb fsl_mc_bus_dpdmai_type -EXPORT_SYMBOL_GPL vmlinux 0xbb53a565 edac_mc_add_mc_with_groups -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 0xbb785cdd pci_walk_bus -EXPORT_SYMBOL_GPL vmlinux 0xbb88ea8a gpiod_get_raw_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0xbb9143b0 kill_dev_dax -EXPORT_SYMBOL_GPL vmlinux 0xbb93eec5 ioasid_alloc -EXPORT_SYMBOL_GPL vmlinux 0xbba188df crypto_mod_get -EXPORT_SYMBOL_GPL vmlinux 0xbba2bca3 tick_nohz_dep_clear_task -EXPORT_SYMBOL_GPL vmlinux 0xbbb4ab02 mtk_mutex_put -EXPORT_SYMBOL_GPL vmlinux 0xbbc605eb __traceiter_wbc_writepage -EXPORT_SYMBOL_GPL vmlinux 0xbbc76d3c l3mdev_update_flow -EXPORT_SYMBOL_GPL vmlinux 0xbbd2c4b0 irq_chip_ack_parent -EXPORT_SYMBOL_GPL vmlinux 0xbbd41492 kernfs_get -EXPORT_SYMBOL_GPL vmlinux 0xbbd49156 l3mdev_table_lookup_register -EXPORT_SYMBOL_GPL vmlinux 0xbbe56404 sprint_OID -EXPORT_SYMBOL_GPL vmlinux 0xbbe6b26b usb_reset_device -EXPORT_SYMBOL_GPL vmlinux 0xbbf288ff sock_diag_register_inet_compat -EXPORT_SYMBOL_GPL vmlinux 0xbbf4dfbe phy_basic_t1_features -EXPORT_SYMBOL_GPL vmlinux 0xbc1120e9 acomp_request_free -EXPORT_SYMBOL_GPL vmlinux 0xbc1b530a ata_std_qc_defer -EXPORT_SYMBOL_GPL vmlinux 0xbc1bbabc iommu_sva_bind_device -EXPORT_SYMBOL_GPL vmlinux 0xbc2ab0e8 skb_tstamp_tx -EXPORT_SYMBOL_GPL vmlinux 0xbc2b6eac nvdimm_bus_check_dimm_count -EXPORT_SYMBOL_GPL vmlinux 0xbc37a324 pl08x_filter_id -EXPORT_SYMBOL_GPL vmlinux 0xbc3f2cb0 timecounter_cyc2time -EXPORT_SYMBOL_GPL vmlinux 0xbc413136 mptcp_pm_get_add_addr_signal_max -EXPORT_SYMBOL_GPL vmlinux 0xbc467a69 acpi_pm_wakeup_event -EXPORT_SYMBOL_GPL vmlinux 0xbc49e13c irqchip_fwnode_ops -EXPORT_SYMBOL_GPL vmlinux 0xbc5d9dcc crypto_unregister_shashes -EXPORT_SYMBOL_GPL vmlinux 0xbc63ae85 regulator_set_load -EXPORT_SYMBOL_GPL vmlinux 0xbc6bec66 free_percpu_irq -EXPORT_SYMBOL_GPL vmlinux 0xbc853d4e pwm_capture -EXPORT_SYMBOL_GPL vmlinux 0xbc89d1eb init_user_ns -EXPORT_SYMBOL_GPL vmlinux 0xbc90576a rio_release_inb_dbell -EXPORT_SYMBOL_GPL vmlinux 0xbc9b8588 ehci_cf_port_reset_rwsem -EXPORT_SYMBOL_GPL vmlinux 0xbcbcbe27 device_match_fwnode -EXPORT_SYMBOL_GPL vmlinux 0xbcc15e75 ktime_get_coarse_with_offset -EXPORT_SYMBOL_GPL vmlinux 0xbccfd4d8 register_oldmem_pfn_is_ram -EXPORT_SYMBOL_GPL vmlinux 0xbcdd5b99 iommu_group_set_name -EXPORT_SYMBOL_GPL vmlinux 0xbcf1f0e6 zs_create_pool -EXPORT_SYMBOL_GPL vmlinux 0xbcf208a7 scsi_nl_sock -EXPORT_SYMBOL_GPL vmlinux 0xbcf46cbc regulator_list_voltage_pickable_linear_range -EXPORT_SYMBOL_GPL vmlinux 0xbcf97612 shmem_file_setup -EXPORT_SYMBOL_GPL vmlinux 0xbd100df1 crypto_register_scomp -EXPORT_SYMBOL_GPL vmlinux 0xbd11aab8 fwnode_graph_get_port_parent -EXPORT_SYMBOL_GPL vmlinux 0xbd1d78fd fsl_mc_portal_reset -EXPORT_SYMBOL_GPL vmlinux 0xbd26f0b7 gpiod_enable_hw_timestamp_ns -EXPORT_SYMBOL_GPL vmlinux 0xbd27c61c dma_resv_get_fences -EXPORT_SYMBOL_GPL vmlinux 0xbd2a917c usb_choose_configuration -EXPORT_SYMBOL_GPL vmlinux 0xbd2cb1bf of_remove_property -EXPORT_SYMBOL_GPL vmlinux 0xbd2cf75f eventfd_ctx_fileget -EXPORT_SYMBOL_GPL vmlinux 0xbd363ba1 nvmem_register -EXPORT_SYMBOL_GPL vmlinux 0xbd3fe1e3 disable_hardirq -EXPORT_SYMBOL_GPL vmlinux 0xbd41672f devm_pm_opp_set_supported_hw -EXPORT_SYMBOL_GPL vmlinux 0xbd5704ec __tracepoint_xdp_bulk_tx -EXPORT_SYMBOL_GPL vmlinux 0xbd5c7fee __udp6_lib_lookup -EXPORT_SYMBOL_GPL vmlinux 0xbd5f4def devlink_resources_unregister -EXPORT_SYMBOL_GPL vmlinux 0xbd617155 sock_diag_register -EXPORT_SYMBOL_GPL vmlinux 0xbd672aff tty_port_tty_hangup -EXPORT_SYMBOL_GPL vmlinux 0xbd7aaaee add_memory -EXPORT_SYMBOL_GPL vmlinux 0xbd8b0433 iomap_file_buffered_write -EXPORT_SYMBOL_GPL vmlinux 0xbd8df503 device_del -EXPORT_SYMBOL_GPL vmlinux 0xbd906b94 iomap_bmap -EXPORT_SYMBOL_GPL vmlinux 0xbd90a26a irq_domain_remove -EXPORT_SYMBOL_GPL vmlinux 0xbd921fd8 mtk_pinconf_bias_get -EXPORT_SYMBOL_GPL vmlinux 0xbda4b262 gpiochip_get_data -EXPORT_SYMBOL_GPL vmlinux 0xbda5fffd transport_class_register -EXPORT_SYMBOL_GPL vmlinux 0xbdaa5916 ata_std_postreset -EXPORT_SYMBOL_GPL vmlinux 0xbdb2217d hv_is_isolation_supported -EXPORT_SYMBOL_GPL vmlinux 0xbdb72342 __tracepoint_devlink_hwmsg -EXPORT_SYMBOL_GPL vmlinux 0xbdbcd2f6 watchdog_register_device -EXPORT_SYMBOL_GPL vmlinux 0xbdbd3720 vp_modern_get_num_queues -EXPORT_SYMBOL_GPL vmlinux 0xbdde9062 regmap_get_reg_stride -EXPORT_SYMBOL_GPL vmlinux 0xbde76771 ata_sas_port_suspend -EXPORT_SYMBOL_GPL vmlinux 0xbdf04a58 crypto_spawn_tfm2 -EXPORT_SYMBOL_GPL vmlinux 0xbdf82026 devlink_port_param_driverinit_value_set -EXPORT_SYMBOL_GPL vmlinux 0xbe02b1d3 page_cache_ra_unbounded -EXPORT_SYMBOL_GPL vmlinux 0xbe0e5891 dm_noflush_suspending -EXPORT_SYMBOL_GPL vmlinux 0xbe2ed70e serdev_device_remove -EXPORT_SYMBOL_GPL vmlinux 0xbe36cac6 scmi_driver_register -EXPORT_SYMBOL_GPL vmlinux 0xbe3f82b7 spi_res_alloc -EXPORT_SYMBOL_GPL vmlinux 0xbe4716d6 dw_pcie_upconfig_setup -EXPORT_SYMBOL_GPL vmlinux 0xbe58f55c i2c_new_ancillary_device -EXPORT_SYMBOL_GPL vmlinux 0xbe5c888b crypto_chain -EXPORT_SYMBOL_GPL vmlinux 0xbe5e3414 k3_udma_glue_reset_rx_chn -EXPORT_SYMBOL_GPL vmlinux 0xbe64a794 usb_remove_phy -EXPORT_SYMBOL_GPL vmlinux 0xbe687e88 wake_up_all_idle_cpus -EXPORT_SYMBOL_GPL vmlinux 0xbe6d43d7 ioasid_put -EXPORT_SYMBOL_GPL vmlinux 0xbe6f368b percpu_up_write -EXPORT_SYMBOL_GPL vmlinux 0xbe7f4dfa rockchip_pcie_init_port -EXPORT_SYMBOL_GPL vmlinux 0xbe8de2d9 component_add_typed -EXPORT_SYMBOL_GPL vmlinux 0xbe96dfd8 of_reconfig_notifier_unregister -EXPORT_SYMBOL_GPL vmlinux 0xbe97e401 balloon_page_dequeue -EXPORT_SYMBOL_GPL vmlinux 0xbe9a83d5 dw_pcie_write -EXPORT_SYMBOL_GPL vmlinux 0xbe9f569c rdev_clear_badblocks -EXPORT_SYMBOL_GPL vmlinux 0xbea5ff1e static_key_initialized -EXPORT_SYMBOL_GPL vmlinux 0xbeb93d67 debugfs_create_x16 -EXPORT_SYMBOL_GPL vmlinux 0xbec66c3a __apei_exec_run -EXPORT_SYMBOL_GPL vmlinux 0xbedc5ae4 regmap_raw_write -EXPORT_SYMBOL_GPL vmlinux 0xbedd18f9 sata_link_resume -EXPORT_SYMBOL_GPL vmlinux 0xbee98e23 ethnl_cable_test_free -EXPORT_SYMBOL_GPL vmlinux 0xbef709e8 sch_frag_xmit_hook -EXPORT_SYMBOL_GPL vmlinux 0xbef9b07b devlink_net -EXPORT_SYMBOL_GPL vmlinux 0xbf041102 register_vt_notifier -EXPORT_SYMBOL_GPL vmlinux 0xbf1032e0 usb_disable_autosuspend -EXPORT_SYMBOL_GPL vmlinux 0xbf3695b3 vchan_dma_desc_free_list -EXPORT_SYMBOL_GPL vmlinux 0xbf3d2276 ahci_start_engine -EXPORT_SYMBOL_GPL vmlinux 0xbf57c3c7 i2c_add_numbered_adapter -EXPORT_SYMBOL_GPL vmlinux 0xbf5b5dda tcp_cong_avoid_ai -EXPORT_SYMBOL_GPL vmlinux 0xbf61758b get_kernel_pages -EXPORT_SYMBOL_GPL vmlinux 0xbf6ed298 mmc_get_ext_csd -EXPORT_SYMBOL_GPL vmlinux 0xbf749ea4 ahci_reset_controller -EXPORT_SYMBOL_GPL vmlinux 0xbf817b7e acpi_subsys_poweroff -EXPORT_SYMBOL_GPL vmlinux 0xbf8522d6 pci_find_ext_capability -EXPORT_SYMBOL_GPL vmlinux 0xbf94f4c5 wait_on_page_writeback -EXPORT_SYMBOL_GPL vmlinux 0xbf9a3d75 platform_irqchip_probe -EXPORT_SYMBOL_GPL vmlinux 0xbfad18e7 pm_genpd_remove -EXPORT_SYMBOL_GPL vmlinux 0xbfb55917 fs_dax_get_by_bdev -EXPORT_SYMBOL_GPL vmlinux 0xbfb79558 of_property_read_variable_u16_array -EXPORT_SYMBOL_GPL vmlinux 0xbfbc5434 pciserial_resume_ports -EXPORT_SYMBOL_GPL vmlinux 0xbfc004b8 acpi_driver_match_device -EXPORT_SYMBOL_GPL vmlinux 0xbfd763c2 phy_validate -EXPORT_SYMBOL_GPL vmlinux 0xbfe5616d tick_broadcast_oneshot_control -EXPORT_SYMBOL_GPL vmlinux 0xbfe97ed4 spi_res_release -EXPORT_SYMBOL_GPL vmlinux 0xbfed2cd9 __wait_rcu_gp -EXPORT_SYMBOL_GPL vmlinux 0xbfef72fd qcom_smem_state_register -EXPORT_SYMBOL_GPL vmlinux 0xbffffc2c ping_unhash -EXPORT_SYMBOL_GPL vmlinux 0xc0001bc7 gnttab_map_refs -EXPORT_SYMBOL_GPL vmlinux 0xc0073712 device_find_child -EXPORT_SYMBOL_GPL vmlinux 0xc018ddd0 dw_pcie_ep_init_notify -EXPORT_SYMBOL_GPL vmlinux 0xc01bdb4c nd_cmd_in_size -EXPORT_SYMBOL_GPL vmlinux 0xc0264cf9 usb_hcd_pci_pm_ops -EXPORT_SYMBOL_GPL vmlinux 0xc04359e1 sk_clone_lock -EXPORT_SYMBOL_GPL vmlinux 0xc04f1202 __alloc_pages_bulk -EXPORT_SYMBOL_GPL vmlinux 0xc0589459 device_link_remove -EXPORT_SYMBOL_GPL vmlinux 0xc05cee80 ipi_get_hwirq -EXPORT_SYMBOL_GPL vmlinux 0xc06a51fc vring_new_virtqueue -EXPORT_SYMBOL_GPL vmlinux 0xc090c376 net_selftest_get_strings -EXPORT_SYMBOL_GPL vmlinux 0xc09baa8c pci_epc_get -EXPORT_SYMBOL_GPL vmlinux 0xc09e5d4c fscrypt_show_test_dummy_encryption -EXPORT_SYMBOL_GPL vmlinux 0xc0a3d155 k3_udma_glue_rx_get_flow_id_base -EXPORT_SYMBOL_GPL vmlinux 0xc0a63a3c pm_clk_add_notifier -EXPORT_SYMBOL_GPL vmlinux 0xc0a96e14 rcu_gp_is_expedited -EXPORT_SYMBOL_GPL vmlinux 0xc0bd736b sfp_add_phy -EXPORT_SYMBOL_GPL vmlinux 0xc0ca3285 trace_array_destroy -EXPORT_SYMBOL_GPL vmlinux 0xc0dbe842 dev_pm_opp_put_clkname -EXPORT_SYMBOL_GPL vmlinux 0xc0dcb59e edac_layer_name -EXPORT_SYMBOL_GPL vmlinux 0xc0e617a3 amba_apb_device_add_res -EXPORT_SYMBOL_GPL vmlinux 0xc0f0458a ip_tunnel_unneed_metadata -EXPORT_SYMBOL_GPL vmlinux 0xc0f8ffb7 acpi_initialize_hp_context -EXPORT_SYMBOL_GPL vmlinux 0xc102905c dev_pm_opp_attach_genpd -EXPORT_SYMBOL_GPL vmlinux 0xc1086e0c sysrq_toggle_support -EXPORT_SYMBOL_GPL vmlinux 0xc10a45fd fwnode_create_software_node -EXPORT_SYMBOL_GPL vmlinux 0xc10e806a attribute_container_unregister -EXPORT_SYMBOL_GPL vmlinux 0xc10fddb8 name_to_dev_t -EXPORT_SYMBOL_GPL vmlinux 0xc11520d8 iommu_aux_get_pasid -EXPORT_SYMBOL_GPL vmlinux 0xc11b7dd5 tty_prepare_flip_string -EXPORT_SYMBOL_GPL vmlinux 0xc1244764 __class_create -EXPORT_SYMBOL_GPL vmlinux 0xc132e089 scsi_get_vpd_page -EXPORT_SYMBOL_GPL vmlinux 0xc13a2d1d skb_splice_bits -EXPORT_SYMBOL_GPL vmlinux 0xc14873a7 regmap_raw_write_async -EXPORT_SYMBOL_GPL vmlinux 0xc14e661d devm_gpiod_put -EXPORT_SYMBOL_GPL vmlinux 0xc153608b gpiod_get -EXPORT_SYMBOL_GPL vmlinux 0xc165ca64 dpcon_get_attributes -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 0xc18080ba md_bitmap_copy_from_slot -EXPORT_SYMBOL_GPL vmlinux 0xc18a1a35 subsys_system_register -EXPORT_SYMBOL_GPL vmlinux 0xc1a8a503 __devm_reset_control_bulk_get -EXPORT_SYMBOL_GPL vmlinux 0xc1a98cc0 i2c_adapter_depth -EXPORT_SYMBOL_GPL vmlinux 0xc1b1fec9 aead_register_instance -EXPORT_SYMBOL_GPL vmlinux 0xc1dce028 k3_udma_glue_reset_tx_chn -EXPORT_SYMBOL_GPL vmlinux 0xc1f02d9a devlink_port_type_ib_set -EXPORT_SYMBOL_GPL vmlinux 0xc1f087b0 blk_lld_busy -EXPORT_SYMBOL_GPL vmlinux 0xc1fae29b md_allow_write -EXPORT_SYMBOL_GPL vmlinux 0xc1fb0154 ethnl_cable_test_fault_length -EXPORT_SYMBOL_GPL vmlinux 0xc21617e7 nf_ct_hook -EXPORT_SYMBOL_GPL vmlinux 0xc21669d4 netdev_rx_handler_register -EXPORT_SYMBOL_GPL vmlinux 0xc216922b skb_mpls_update_lse -EXPORT_SYMBOL_GPL vmlinux 0xc2207ad4 regulator_unregister -EXPORT_SYMBOL_GPL vmlinux 0xc2291825 pm_generic_suspend_noirq -EXPORT_SYMBOL_GPL vmlinux 0xc22a3091 vm_unmap_aliases -EXPORT_SYMBOL_GPL vmlinux 0xc22cfb52 led_trigger_unregister_simple -EXPORT_SYMBOL_GPL vmlinux 0xc240a9b5 nvdimm_has_cache -EXPORT_SYMBOL_GPL vmlinux 0xc2472388 tegra210_clk_emc_update_setting -EXPORT_SYMBOL_GPL vmlinux 0xc25b8971 hv_remove_crash_handler -EXPORT_SYMBOL_GPL vmlinux 0xc2692173 wakeup_sources_read_lock -EXPORT_SYMBOL_GPL vmlinux 0xc2716d9f iommu_device_sysfs_add -EXPORT_SYMBOL_GPL vmlinux 0xc27e10e0 phy_exit -EXPORT_SYMBOL_GPL vmlinux 0xc289e46d cpufreq_generic_frequency_table_verify -EXPORT_SYMBOL_GPL vmlinux 0xc29ec959 vp_modern_queue_address -EXPORT_SYMBOL_GPL vmlinux 0xc2a3e570 errata -EXPORT_SYMBOL_GPL vmlinux 0xc2a814db tcp_memory_pressure -EXPORT_SYMBOL_GPL vmlinux 0xc2afdd43 init_srcu_struct -EXPORT_SYMBOL_GPL vmlinux 0xc2b9773a __tracepoint_neigh_update_done -EXPORT_SYMBOL_GPL vmlinux 0xc2c1c427 perf_event_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0xc2de27ca hest_disable -EXPORT_SYMBOL_GPL vmlinux 0xc2ed4ba6 devm_regulator_irq_helper -EXPORT_SYMBOL_GPL vmlinux 0xc2f82fd3 ata_sas_tport_add -EXPORT_SYMBOL_GPL vmlinux 0xc31c554c stmpe_enable -EXPORT_SYMBOL_GPL vmlinux 0xc32c9ec2 lwtunnel_build_state -EXPORT_SYMBOL_GPL vmlinux 0xc32caf8b ipv4_sk_redirect -EXPORT_SYMBOL_GPL vmlinux 0xc3337aad apply_to_existing_page_range -EXPORT_SYMBOL_GPL vmlinux 0xc340e246 zynqmp_pm_request_node -EXPORT_SYMBOL_GPL vmlinux 0xc341ae6d zs_map_object -EXPORT_SYMBOL_GPL vmlinux 0xc357ea4c amba_apb_device_add -EXPORT_SYMBOL_GPL vmlinux 0xc358fc5c bpf_prog_select_runtime -EXPORT_SYMBOL_GPL vmlinux 0xc3596347 device_get_match_data -EXPORT_SYMBOL_GPL vmlinux 0xc35b2dc0 fixup_user_fault -EXPORT_SYMBOL_GPL vmlinux 0xc35d06f2 of_get_regulator_init_data -EXPORT_SYMBOL_GPL vmlinux 0xc3671b19 pwm_set_chip_data -EXPORT_SYMBOL_GPL vmlinux 0xc3708747 trace_vprintk -EXPORT_SYMBOL_GPL vmlinux 0xc3764be4 serial8250_em485_stop_tx -EXPORT_SYMBOL_GPL vmlinux 0xc3805cd1 fs_ftype_to_dtype -EXPORT_SYMBOL_GPL vmlinux 0xc3b15fee bind_interdomain_evtchn_to_irqhandler_lateeoi -EXPORT_SYMBOL_GPL vmlinux 0xc3c4c6cc hash_algo_name -EXPORT_SYMBOL_GPL vmlinux 0xc3c598fd rtnl_link_unregister -EXPORT_SYMBOL_GPL vmlinux 0xc3d7b3ce serial8250_do_set_ldisc -EXPORT_SYMBOL_GPL vmlinux 0xc3de65ff ring_buffer_bytes_cpu -EXPORT_SYMBOL_GPL vmlinux 0xc3ea5305 iommu_default_passthrough -EXPORT_SYMBOL_GPL vmlinux 0xc4041540 mmc_poll_for_busy -EXPORT_SYMBOL_GPL vmlinux 0xc4050be4 iommu_register_device_fault_handler -EXPORT_SYMBOL_GPL vmlinux 0xc40a8b00 usb_unlocked_disable_lpm -EXPORT_SYMBOL_GPL vmlinux 0xc41f4e93 bgmac_enet_resume -EXPORT_SYMBOL_GPL vmlinux 0xc428068d sata_deb_timing_long -EXPORT_SYMBOL_GPL vmlinux 0xc43e92b9 trace_seq_bprintf -EXPORT_SYMBOL_GPL vmlinux 0xc4431596 msi_desc_to_pci_sysdata -EXPORT_SYMBOL_GPL vmlinux 0xc44cc0d0 ti_sci_get_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0xc454fc7b twl_get_type -EXPORT_SYMBOL_GPL vmlinux 0xc45816e0 spi_async -EXPORT_SYMBOL_GPL vmlinux 0xc45d54fb dev_pm_opp_disable -EXPORT_SYMBOL_GPL vmlinux 0xc45e246f housekeeping_test_cpu -EXPORT_SYMBOL_GPL vmlinux 0xc4609c9e spi_sync_locked -EXPORT_SYMBOL_GPL vmlinux 0xc461cd10 ulpi_viewport_access_ops -EXPORT_SYMBOL_GPL vmlinux 0xc46324f6 dynevent_create -EXPORT_SYMBOL_GPL vmlinux 0xc46c3f8d hwmon_notify_event -EXPORT_SYMBOL_GPL vmlinux 0xc471c547 bind_interdomain_evtchn_to_irq_lateeoi -EXPORT_SYMBOL_GPL vmlinux 0xc471c67a twl4030_audio_disable_resource -EXPORT_SYMBOL_GPL vmlinux 0xc474c039 pci_epc_unmap_addr -EXPORT_SYMBOL_GPL vmlinux 0xc48b7ccf ata_mode_string -EXPORT_SYMBOL_GPL vmlinux 0xc48edb5e vfs_getxattr_alloc -EXPORT_SYMBOL_GPL vmlinux 0xc48f1fb4 ksm_madvise -EXPORT_SYMBOL_GPL vmlinux 0xc493a298 pci_epf_alloc_space -EXPORT_SYMBOL_GPL vmlinux 0xc49da4ce phy_destroy -EXPORT_SYMBOL_GPL vmlinux 0xc4a31146 rdma_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0xc4a72936 trusted_tpm_send -EXPORT_SYMBOL_GPL vmlinux 0xc4a98cfc dm_report_zones -EXPORT_SYMBOL_GPL vmlinux 0xc4b9ae16 devm_clk_get_optional_enabled -EXPORT_SYMBOL_GPL vmlinux 0xc4ba2ba2 __fscrypt_prepare_readdir -EXPORT_SYMBOL_GPL vmlinux 0xc4ba78bb of_fwnode_ops -EXPORT_SYMBOL_GPL vmlinux 0xc4c0d8f1 kthread_park -EXPORT_SYMBOL_GPL vmlinux 0xc4cec8f4 crypto_stats_skcipher_decrypt -EXPORT_SYMBOL_GPL vmlinux 0xc4db5346 phy_start_machine -EXPORT_SYMBOL_GPL vmlinux 0xc4edabbc usb_lock_device_for_reset -EXPORT_SYMBOL_GPL vmlinux 0xc4f0da12 ktime_get_with_offset -EXPORT_SYMBOL_GPL vmlinux 0xc4f9fd01 mmc_send_abort_tuning -EXPORT_SYMBOL_GPL vmlinux 0xc512a3fc clk_regmap_gate_ro_ops -EXPORT_SYMBOL_GPL vmlinux 0xc51329ea sata_sff_hardreset -EXPORT_SYMBOL_GPL vmlinux 0xc51450c6 imx_ccm_lock -EXPORT_SYMBOL_GPL vmlinux 0xc51609b0 ahci_port_resume -EXPORT_SYMBOL_GPL vmlinux 0xc51c8de0 relay_late_setup_files -EXPORT_SYMBOL_GPL vmlinux 0xc5243379 blkcg_policy_unregister -EXPORT_SYMBOL_GPL vmlinux 0xc54a2809 of_get_display_timing -EXPORT_SYMBOL_GPL vmlinux 0xc55aa4f5 pci_try_reset_function -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 0xc56c817e dev_pm_opp_set_rate -EXPORT_SYMBOL_GPL vmlinux 0xc575c737 debug_locks_off -EXPORT_SYMBOL_GPL vmlinux 0xc5777fca linear_range_get_selector_low_array -EXPORT_SYMBOL_GPL vmlinux 0xc57e052d unregister_pernet_device -EXPORT_SYMBOL_GPL vmlinux 0xc58a3ee6 icc_node_destroy -EXPORT_SYMBOL_GPL vmlinux 0xc5a1337e hwspin_lock_request -EXPORT_SYMBOL_GPL vmlinux 0xc5a5c678 uart_parse_earlycon -EXPORT_SYMBOL_GPL vmlinux 0xc5a74e6c rio_mport_get_feature -EXPORT_SYMBOL_GPL vmlinux 0xc5ae59d3 sysfs_update_group -EXPORT_SYMBOL_GPL vmlinux 0xc5ba6a13 power_supply_unregister -EXPORT_SYMBOL_GPL vmlinux 0xc5bf15ef tcp_abort -EXPORT_SYMBOL_GPL vmlinux 0xc5c3a3eb rtc_read_alarm -EXPORT_SYMBOL_GPL vmlinux 0xc5c5626e pinmux_generic_get_function_groups -EXPORT_SYMBOL_GPL vmlinux 0xc5c82b30 of_get_display_timings -EXPORT_SYMBOL_GPL vmlinux 0xc5e46040 device_property_match_string -EXPORT_SYMBOL_GPL vmlinux 0xc5e87854 ata_sff_busy_sleep -EXPORT_SYMBOL_GPL vmlinux 0xc5ec0a25 epl_get_misc_ec_err_status -EXPORT_SYMBOL_GPL vmlinux 0xc617437b blk_ksm_destroy -EXPORT_SYMBOL_GPL vmlinux 0xc617f82c unregister_oom_notifier -EXPORT_SYMBOL_GPL vmlinux 0xc61b4846 virtio_add_status -EXPORT_SYMBOL_GPL vmlinux 0xc625b7fc fwnode_get_nth_parent -EXPORT_SYMBOL_GPL vmlinux 0xc62b55aa mmc_crypto_setup_queue -EXPORT_SYMBOL_GPL vmlinux 0xc63a30e3 gpiod_set_config -EXPORT_SYMBOL_GPL vmlinux 0xc646b9ff of_prop_next_string -EXPORT_SYMBOL_GPL vmlinux 0xc64bd02d acpi_dev_suspend -EXPORT_SYMBOL_GPL vmlinux 0xc6572a90 xenbus_read_unsigned -EXPORT_SYMBOL_GPL vmlinux 0xc66019cc xen_resume_notifier_unregister -EXPORT_SYMBOL_GPL vmlinux 0xc661e300 meson_pmx_get_funcs_count -EXPORT_SYMBOL_GPL vmlinux 0xc662ecda __tracepoint_br_fdb_external_learn_add -EXPORT_SYMBOL_GPL vmlinux 0xc66b77b1 iommu_group_set_iommudata -EXPORT_SYMBOL_GPL vmlinux 0xc6779093 ring_buffer_record_enable -EXPORT_SYMBOL_GPL vmlinux 0xc68982cf regulator_set_current_limit -EXPORT_SYMBOL_GPL vmlinux 0xc68f5c9e dpbp_disable -EXPORT_SYMBOL_GPL vmlinux 0xc6906858 devm_regmap_field_free -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 0xc6d75b7d fsl_mc_populate_irq_pool -EXPORT_SYMBOL_GPL vmlinux 0xc6def34b gnttab_empty_grant_references -EXPORT_SYMBOL_GPL vmlinux 0xc6e5bcf3 linear_range_get_selector_within -EXPORT_SYMBOL_GPL vmlinux 0xc6f7a69e ping_close -EXPORT_SYMBOL_GPL vmlinux 0xc6f9d1a5 pci_epc_mem_init -EXPORT_SYMBOL_GPL vmlinux 0xc6fd6780 power_supply_powers -EXPORT_SYMBOL_GPL vmlinux 0xc7061ef3 iova_cache_put -EXPORT_SYMBOL_GPL vmlinux 0xc70f91a7 rio_register_driver -EXPORT_SYMBOL_GPL vmlinux 0xc71214c2 irq_chip_mask_parent -EXPORT_SYMBOL_GPL vmlinux 0xc71b2668 cpuidle_get_cpu_driver -EXPORT_SYMBOL_GPL vmlinux 0xc71e64a9 snmp_get_cpu_field -EXPORT_SYMBOL_GPL vmlinux 0xc733e5c1 cgroup_get_from_path -EXPORT_SYMBOL_GPL vmlinux 0xc73b9f6b crypto_spawn_tfm -EXPORT_SYMBOL_GPL vmlinux 0xc73ff4f5 xfrm_dev_resume -EXPORT_SYMBOL_GPL vmlinux 0xc74525c7 thermal_zone_device_update -EXPORT_SYMBOL_GPL vmlinux 0xc749668a imx_pinctrl_parse_pin_scu -EXPORT_SYMBOL_GPL vmlinux 0xc74a9d99 mmu_interval_notifier_insert -EXPORT_SYMBOL_GPL vmlinux 0xc75844e6 sata_scr_write_flush -EXPORT_SYMBOL_GPL vmlinux 0xc758efed crypto_register_template -EXPORT_SYMBOL_GPL vmlinux 0xc75c6d05 pinmux_generic_get_function_name -EXPORT_SYMBOL_GPL vmlinux 0xc763256c dev_pm_opp_get_level -EXPORT_SYMBOL_GPL vmlinux 0xc7684bd0 fscrypt_ioctl_remove_key -EXPORT_SYMBOL_GPL vmlinux 0xc76f8048 __sbitmap_queue_get -EXPORT_SYMBOL_GPL vmlinux 0xc775e93a devm_hwrng_unregister -EXPORT_SYMBOL_GPL vmlinux 0xc775f8f2 devm_pm_opp_of_add_table -EXPORT_SYMBOL_GPL vmlinux 0xc77bcc03 sched_trace_rq_avg_dl -EXPORT_SYMBOL_GPL vmlinux 0xc77f16ee __rio_local_write_config_8 -EXPORT_SYMBOL_GPL vmlinux 0xc7856e74 __wake_up_locked_sync_key -EXPORT_SYMBOL_GPL vmlinux 0xc78a9f4e bus_get_kset -EXPORT_SYMBOL_GPL vmlinux 0xc799fe42 usb_asmedia_modifyflowcontrol -EXPORT_SYMBOL_GPL vmlinux 0xc7a1840e llist_add_batch -EXPORT_SYMBOL_GPL vmlinux 0xc7a3387f ata_sas_port_start -EXPORT_SYMBOL_GPL vmlinux 0xc7a7e770 clk_bulk_enable -EXPORT_SYMBOL_GPL vmlinux 0xc7c23ff0 xenbus_exists -EXPORT_SYMBOL_GPL vmlinux 0xc7c5c4bc of_led_get -EXPORT_SYMBOL_GPL vmlinux 0xc7d8fc7d vp_modern_get_driver_features -EXPORT_SYMBOL_GPL vmlinux 0xc7e64fc2 asn1_encode_integer -EXPORT_SYMBOL_GPL vmlinux 0xc7e979a9 xhci_run -EXPORT_SYMBOL_GPL vmlinux 0xc7eb1f4b hwspin_lock_request_specific -EXPORT_SYMBOL_GPL vmlinux 0xc7fa19ef of_property_read_variable_u64_array -EXPORT_SYMBOL_GPL vmlinux 0xc7fa4aa9 kobj_ns_drop -EXPORT_SYMBOL_GPL vmlinux 0xc808f797 ahci_error_handler -EXPORT_SYMBOL_GPL vmlinux 0xc8176fec fl6_merge_options -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 0xc842f62c devm_irq_setup_generic_chip -EXPORT_SYMBOL_GPL vmlinux 0xc84ead25 device_change_owner -EXPORT_SYMBOL_GPL vmlinux 0xc8594d3d reset_control_acquire -EXPORT_SYMBOL_GPL vmlinux 0xc8639ff7 imx_check_clk_hws -EXPORT_SYMBOL_GPL vmlinux 0xc8698e98 sched_trace_cfs_rq_cpu -EXPORT_SYMBOL_GPL vmlinux 0xc870ddb6 param_set_uint_minmax -EXPORT_SYMBOL_GPL vmlinux 0xc8746b08 dt_init_idle_driver -EXPORT_SYMBOL_GPL vmlinux 0xc875afdd dev_pm_qos_remove_request -EXPORT_SYMBOL_GPL vmlinux 0xc87dd725 k3_udma_glue_pop_rx_chn -EXPORT_SYMBOL_GPL vmlinux 0xc87fb025 xas_get_mark -EXPORT_SYMBOL_GPL vmlinux 0xc8953551 pwmchip_remove -EXPORT_SYMBOL_GPL vmlinux 0xc8ae8cd2 gpiod_set_raw_value -EXPORT_SYMBOL_GPL vmlinux 0xc8c790d9 genphy_c45_an_disable_aneg -EXPORT_SYMBOL_GPL vmlinux 0xc8d7eab5 xenbus_alloc_evtchn -EXPORT_SYMBOL_GPL vmlinux 0xc8ddd5b5 kstrdup_quotable -EXPORT_SYMBOL_GPL vmlinux 0xc906c48f ata_std_bios_param -EXPORT_SYMBOL_GPL vmlinux 0xc915c027 iommu_group_remove_device -EXPORT_SYMBOL_GPL vmlinux 0xc9174a07 screen_glyph_unicode -EXPORT_SYMBOL_GPL vmlinux 0xc91fdf58 percpu_ref_is_zero -EXPORT_SYMBOL_GPL vmlinux 0xc928deeb __raw_v6_lookup -EXPORT_SYMBOL_GPL vmlinux 0xc9336471 pci_scan_child_bus -EXPORT_SYMBOL_GPL vmlinux 0xc9345c0f digsig_verify -EXPORT_SYMBOL_GPL vmlinux 0xc93aa5ee dm_path_uevent -EXPORT_SYMBOL_GPL vmlinux 0xc93ee1e7 usb_phy_roothub_init -EXPORT_SYMBOL_GPL vmlinux 0xc94e8414 pci_epc_mem_exit -EXPORT_SYMBOL_GPL vmlinux 0xc9537182 pcie_flr -EXPORT_SYMBOL_GPL vmlinux 0xc9561772 fb_destroy_modelist -EXPORT_SYMBOL_GPL vmlinux 0xc95cebcf regulator_bulk_free -EXPORT_SYMBOL_GPL vmlinux 0xc9641b48 visitor32 -EXPORT_SYMBOL_GPL vmlinux 0xc971d70d dma_free_pages -EXPORT_SYMBOL_GPL vmlinux 0xc9827693 __bpf_call_base -EXPORT_SYMBOL_GPL vmlinux 0xc98973c9 acpi_gpiochip_request_interrupts -EXPORT_SYMBOL_GPL vmlinux 0xc98a9365 fsnotify_put_mark -EXPORT_SYMBOL_GPL vmlinux 0xc99df81c dummy_irq_chip -EXPORT_SYMBOL_GPL vmlinux 0xc9b0fbbf nvmem_cell_get -EXPORT_SYMBOL_GPL vmlinux 0xc9b6a6a1 fuse_send_init -EXPORT_SYMBOL_GPL vmlinux 0xc9ba64f6 regulator_set_suspend_voltage -EXPORT_SYMBOL_GPL vmlinux 0xc9c49f0b espintcp_queue_out -EXPORT_SYMBOL_GPL vmlinux 0xc9ec4e21 free_percpu -EXPORT_SYMBOL_GPL vmlinux 0xc9ee3f32 irq_chip_enable_parent -EXPORT_SYMBOL_GPL vmlinux 0xc9f15de8 handle_level_irq -EXPORT_SYMBOL_GPL vmlinux 0xc9fb00f7 pl320_ipc_transmit -EXPORT_SYMBOL_GPL vmlinux 0xc9fd634a usb_role_switch_put -EXPORT_SYMBOL_GPL vmlinux 0xca156c3c gnttab_pages_set_private -EXPORT_SYMBOL_GPL vmlinux 0xca444832 blk_queue_rq_timeout -EXPORT_SYMBOL_GPL vmlinux 0xca454a34 vt_get_leds -EXPORT_SYMBOL_GPL vmlinux 0xca635dc7 pci_epc_get_msi -EXPORT_SYMBOL_GPL vmlinux 0xca69f530 serdev_device_write_wakeup -EXPORT_SYMBOL_GPL vmlinux 0xca6cf8c1 devlink_dpipe_headers_unregister -EXPORT_SYMBOL_GPL vmlinux 0xca7d8764 kthread_freezable_should_stop -EXPORT_SYMBOL_GPL vmlinux 0xca80594c set_task_ioprio -EXPORT_SYMBOL_GPL vmlinux 0xca81e0b7 auxiliary_device_init -EXPORT_SYMBOL_GPL vmlinux 0xca85a944 noop_backing_dev_info -EXPORT_SYMBOL_GPL vmlinux 0xca89a21a i2c_slave_register -EXPORT_SYMBOL_GPL vmlinux 0xca8d9dba debugfs_create_file_unsafe -EXPORT_SYMBOL_GPL vmlinux 0xca9a1d5e ring_buffer_free -EXPORT_SYMBOL_GPL vmlinux 0xcaacb649 pci_load_saved_state -EXPORT_SYMBOL_GPL vmlinux 0xcaad6934 fib6_check_nexthop -EXPORT_SYMBOL_GPL vmlinux 0xcaafb116 tpm_put_ops -EXPORT_SYMBOL_GPL vmlinux 0xcabbf99c device_match_name -EXPORT_SYMBOL_GPL vmlinux 0xcabccb59 pcie_aspm_enabled -EXPORT_SYMBOL_GPL vmlinux 0xcabe04de cpuidle_resume_and_unlock -EXPORT_SYMBOL_GPL vmlinux 0xcacc9395 gpiochip_lock_as_irq -EXPORT_SYMBOL_GPL vmlinux 0xcadc8fc1 ehci_adjust_port_wakeup_flags -EXPORT_SYMBOL_GPL vmlinux 0xcae7ce5d fsl_mc_get_version -EXPORT_SYMBOL_GPL vmlinux 0xcaf1d958 evtchn_get -EXPORT_SYMBOL_GPL vmlinux 0xcaff18d2 do_splice_from -EXPORT_SYMBOL_GPL vmlinux 0xcb0d4bc6 qcom_smem_state_get -EXPORT_SYMBOL_GPL vmlinux 0xcb15eee9 sdhci_pci_get_data -EXPORT_SYMBOL_GPL vmlinux 0xcb2bfe2b nvmem_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0xcb2df367 otg_ulpi_create -EXPORT_SYMBOL_GPL vmlinux 0xcb3104ef find_mci_by_dev -EXPORT_SYMBOL_GPL vmlinux 0xcb32f820 alloc_io_pgtable_ops -EXPORT_SYMBOL_GPL vmlinux 0xcb3abd51 evict_inodes -EXPORT_SYMBOL_GPL vmlinux 0xcb3b48ed debugfs_create_u32_array -EXPORT_SYMBOL_GPL vmlinux 0xcb441de3 inet_ehash_nolisten -EXPORT_SYMBOL_GPL vmlinux 0xcb4e7c10 gpiochip_get_desc -EXPORT_SYMBOL_GPL vmlinux 0xcb522a4a sdio_get_host_pm_caps -EXPORT_SYMBOL_GPL vmlinux 0xcb561441 mem_dump_obj -EXPORT_SYMBOL_GPL vmlinux 0xcb58d9c7 rockchip_clk_add_lookup -EXPORT_SYMBOL_GPL vmlinux 0xcb5f7da4 dma_vmap_noncontiguous -EXPORT_SYMBOL_GPL vmlinux 0xcb68480f ip6_datagram_connect_v6_only -EXPORT_SYMBOL_GPL vmlinux 0xcb73ea41 devm_ti_sci_get_handle -EXPORT_SYMBOL_GPL vmlinux 0xcb8ddc38 xenbus_probe_node -EXPORT_SYMBOL_GPL vmlinux 0xcb95f8e9 of_phy_provider_unregister -EXPORT_SYMBOL_GPL vmlinux 0xcb9ad8ef iommu_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0xcbae3901 xdp_attachment_setup -EXPORT_SYMBOL_GPL vmlinux 0xcbd5b41a pm_clk_init -EXPORT_SYMBOL_GPL vmlinux 0xcbda765d dpbp_open -EXPORT_SYMBOL_GPL vmlinux 0xcbe22959 ip6_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0xcbe56bc2 zs_get_total_pages -EXPORT_SYMBOL_GPL vmlinux 0xcbfb9d1a seg6_do_srh_inline -EXPORT_SYMBOL_GPL vmlinux 0xcc0dd684 of_irq_parse_raw -EXPORT_SYMBOL_GPL vmlinux 0xcc0fd0a7 k3_ringacc_ring_push_head -EXPORT_SYMBOL_GPL vmlinux 0xcc2dbfd8 irq_domain_check_msi_remap -EXPORT_SYMBOL_GPL vmlinux 0xcc31134b battery_hook_unregister -EXPORT_SYMBOL_GPL vmlinux 0xcc39becc acpi_match_device -EXPORT_SYMBOL_GPL vmlinux 0xcc39c03e nvmem_unregister -EXPORT_SYMBOL_GPL vmlinux 0xcc4e1d1a tun_get_socket -EXPORT_SYMBOL_GPL vmlinux 0xcc68ec0b device_phy_find_device -EXPORT_SYMBOL_GPL vmlinux 0xcc780a1b skb_to_sgvec -EXPORT_SYMBOL_GPL vmlinux 0xcc8c5116 devm_namespace_enable -EXPORT_SYMBOL_GPL vmlinux 0xcc9268fc hwpoison_filter_enable -EXPORT_SYMBOL_GPL vmlinux 0xcc935375 walk_iomem_res_desc -EXPORT_SYMBOL_GPL vmlinux 0xccc215af mtk_pinconf_adv_drive_set -EXPORT_SYMBOL_GPL vmlinux 0xccc7d61d nexthop_find_by_id -EXPORT_SYMBOL_GPL vmlinux 0xcccfb2fa sata_deb_timing_hotplug -EXPORT_SYMBOL_GPL vmlinux 0xccd86806 ata_id_string -EXPORT_SYMBOL_GPL vmlinux 0xccf52bc9 sfp_upstream_start -EXPORT_SYMBOL_GPL vmlinux 0xcd0b727d irq_set_default_host -EXPORT_SYMBOL_GPL vmlinux 0xcd11f9e6 sk_msg_return_zero -EXPORT_SYMBOL_GPL vmlinux 0xcd24e146 hash_digest_size -EXPORT_SYMBOL_GPL vmlinux 0xcd34ee57 iptunnel_xmit -EXPORT_SYMBOL_GPL vmlinux 0xcd3e5c7c acpi_release_memory -EXPORT_SYMBOL_GPL vmlinux 0xcd4fc952 console_drivers -EXPORT_SYMBOL_GPL vmlinux 0xcd55a7a9 meson_clk_mpll_ops -EXPORT_SYMBOL_GPL vmlinux 0xcd5871b2 ata_pci_device_suspend -EXPORT_SYMBOL_GPL vmlinux 0xcd6cb0fe devlink_port_attrs_pci_pf_set -EXPORT_SYMBOL_GPL vmlinux 0xcd6f2dc9 nf_log_buf_add -EXPORT_SYMBOL_GPL vmlinux 0xcd759b82 k3_ringacc_ring_reset -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 0xcd9ed6c4 crypto_alloc_tfm_node -EXPORT_SYMBOL_GPL vmlinux 0xcda2aaba k3_udma_glue_tx_dma_to_cppi5_addr -EXPORT_SYMBOL_GPL vmlinux 0xcdaa01ad devlink_dpipe_match_put -EXPORT_SYMBOL_GPL vmlinux 0xcdb24986 posix_acl_create -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 0xcdca94b7 dev_attr_unload_heads -EXPORT_SYMBOL_GPL vmlinux 0xcdd2dcdf virtqueue_notify -EXPORT_SYMBOL_GPL vmlinux 0xcde26600 cppc_get_transition_latency -EXPORT_SYMBOL_GPL vmlinux 0xcdf470fe skb_segment -EXPORT_SYMBOL_GPL vmlinux 0xcdf556dd switchdev_port_obj_del -EXPORT_SYMBOL_GPL vmlinux 0xce060566 meson_sm_get -EXPORT_SYMBOL_GPL vmlinux 0xce0a4020 xenbus_directory -EXPORT_SYMBOL_GPL vmlinux 0xce113e4d power_supply_register -EXPORT_SYMBOL_GPL vmlinux 0xce1387c8 get_net_ns_by_fd -EXPORT_SYMBOL_GPL vmlinux 0xce15f50f serial8250_rpm_put -EXPORT_SYMBOL_GPL vmlinux 0xce316d7e zynqmp_pm_set_sd_tapdelay -EXPORT_SYMBOL_GPL vmlinux 0xce37d1ee set_primary_fwnode -EXPORT_SYMBOL_GPL vmlinux 0xce3e8653 pci_hp_add_bridge -EXPORT_SYMBOL_GPL vmlinux 0xce43ea3b crypto_type_has_alg -EXPORT_SYMBOL_GPL vmlinux 0xce598ef2 unregister_kretprobe -EXPORT_SYMBOL_GPL vmlinux 0xce5d2e5f espintcp_push_skb -EXPORT_SYMBOL_GPL vmlinux 0xce61ced5 kernel_kobj -EXPORT_SYMBOL_GPL vmlinux 0xce6db656 rcu_is_watching -EXPORT_SYMBOL_GPL vmlinux 0xce75d7ea pci_enable_ats -EXPORT_SYMBOL_GPL vmlinux 0xce849fcd free_vm_area -EXPORT_SYMBOL_GPL vmlinux 0xce88abb9 tegra_bpmp_mrq_is_supported -EXPORT_SYMBOL_GPL vmlinux 0xce9396cc dev_pm_opp_put -EXPORT_SYMBOL_GPL vmlinux 0xce98c219 is_dock_device -EXPORT_SYMBOL_GPL vmlinux 0xcea26b2b __fsnotify_inode_delete -EXPORT_SYMBOL_GPL vmlinux 0xceac8674 zynqmp_pm_read_pggs -EXPORT_SYMBOL_GPL vmlinux 0xceb1f126 mpi_read_raw_data -EXPORT_SYMBOL_GPL vmlinux 0xcebc814b fuse_conn_destroy -EXPORT_SYMBOL_GPL vmlinux 0xcec16d20 regmap_field_update_bits_base -EXPORT_SYMBOL_GPL vmlinux 0xcec595e0 xhci_add_endpoint -EXPORT_SYMBOL_GPL vmlinux 0xced06c53 driver_create_file -EXPORT_SYMBOL_GPL vmlinux 0xced6227b ahci_platform_enable_resources -EXPORT_SYMBOL_GPL vmlinux 0xcee1641c kgdb_unregister_nmi_console -EXPORT_SYMBOL_GPL vmlinux 0xcee1b312 devm_acpi_dma_controller_free -EXPORT_SYMBOL_GPL vmlinux 0xcee4ebaf phy_remove_lookup -EXPORT_SYMBOL_GPL vmlinux 0xcee88e7a of_overlay_fdt_apply -EXPORT_SYMBOL_GPL vmlinux 0xcee895cc lochnagar_update_config -EXPORT_SYMBOL_GPL vmlinux 0xceed8c16 __set_phys_to_machine -EXPORT_SYMBOL_GPL vmlinux 0xceffda45 crypto_stats_akcipher_encrypt -EXPORT_SYMBOL_GPL vmlinux 0xcf078561 regmap_field_free -EXPORT_SYMBOL_GPL vmlinux 0xcf087a35 root_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0xcf1bb570 ata_scsi_ioctl -EXPORT_SYMBOL_GPL vmlinux 0xcf1d2af4 devm_of_icc_get -EXPORT_SYMBOL_GPL vmlinux 0xcf1f837a pwm_get_chip_data -EXPORT_SYMBOL_GPL vmlinux 0xcf1ffcd3 rio_unregister_scan -EXPORT_SYMBOL_GPL vmlinux 0xcf38295b dax_iomap_rw -EXPORT_SYMBOL_GPL vmlinux 0xcf5a5bc6 vp_modern_queue_vector -EXPORT_SYMBOL_GPL vmlinux 0xcf7f66f9 imx_dev_clk_hw_pll14xx -EXPORT_SYMBOL_GPL vmlinux 0xcf94ff06 dev_coredumpm -EXPORT_SYMBOL_GPL vmlinux 0xcfc5108a devlink_fmsg_u8_pair_put -EXPORT_SYMBOL_GPL vmlinux 0xcfc7b4e4 rcu_barrier_tasks_trace -EXPORT_SYMBOL_GPL vmlinux 0xcfd00815 devm_ti_sci_get_resource -EXPORT_SYMBOL_GPL vmlinux 0xcfd30d71 acpi_os_map_memory -EXPORT_SYMBOL_GPL vmlinux 0xcfe43811 fib4_rule_default -EXPORT_SYMBOL_GPL vmlinux 0xcffaec01 irq_domain_disconnect_hierarchy -EXPORT_SYMBOL_GPL vmlinux 0xcffd793e hyperv_report_panic -EXPORT_SYMBOL_GPL vmlinux 0xd002c05f blk_clear_pm_only -EXPORT_SYMBOL_GPL vmlinux 0xd003bf38 acpi_get_pci_dev -EXPORT_SYMBOL_GPL vmlinux 0xd01ba72e devm_rtc_device_register -EXPORT_SYMBOL_GPL vmlinux 0xd01d50c8 serial8250_rx_chars -EXPORT_SYMBOL_GPL vmlinux 0xd026110d clk_fixed_rate_ops -EXPORT_SYMBOL_GPL vmlinux 0xd026d518 HYPERVISOR_vcpu_op -EXPORT_SYMBOL_GPL vmlinux 0xd030d41a pci_device_is_present -EXPORT_SYMBOL_GPL vmlinux 0xd03cba86 vp_modern_set_queue_enable -EXPORT_SYMBOL_GPL vmlinux 0xd03eaf4c schedule_hrtimeout_range -EXPORT_SYMBOL_GPL vmlinux 0xd0458ccb xenbus_strstate -EXPORT_SYMBOL_GPL vmlinux 0xd04a7b88 tpm_chip_start -EXPORT_SYMBOL_GPL vmlinux 0xd04aedfd __SCK__tp_func_arm_event -EXPORT_SYMBOL_GPL vmlinux 0xd05b3fef tps6586x_write -EXPORT_SYMBOL_GPL vmlinux 0xd06524ba raw_notifier_chain_unregister -EXPORT_SYMBOL_GPL vmlinux 0xd067d3c5 system_freezable_power_efficient_wq -EXPORT_SYMBOL_GPL vmlinux 0xd0790812 xhci_ext_cap_init -EXPORT_SYMBOL_GPL vmlinux 0xd080330b gpiochip_add_pingroup_range -EXPORT_SYMBOL_GPL vmlinux 0xd0809fb7 irq_chip_get_parent_state -EXPORT_SYMBOL_GPL vmlinux 0xd08f28b1 scsi_free_sgtables -EXPORT_SYMBOL_GPL vmlinux 0xd0912b06 ata_sff_queue_pio_task -EXPORT_SYMBOL_GPL vmlinux 0xd09911a6 acpi_dev_get_irq_type -EXPORT_SYMBOL_GPL vmlinux 0xd0abd6af acpi_subsys_suspend_noirq -EXPORT_SYMBOL_GPL vmlinux 0xd0bbefdc acpi_kobj -EXPORT_SYMBOL_GPL vmlinux 0xd0c05159 emergency_restart -EXPORT_SYMBOL_GPL vmlinux 0xd0c09436 vchan_tx_desc_free -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 0xd0e0bdbb elv_rqhash_add -EXPORT_SYMBOL_GPL vmlinux 0xd0e18130 security_inode_create -EXPORT_SYMBOL_GPL vmlinux 0xd1057878 umd_unload_blob -EXPORT_SYMBOL_GPL vmlinux 0xd1168288 phy_speed_up -EXPORT_SYMBOL_GPL vmlinux 0xd11dcfa7 strp_check_rcv -EXPORT_SYMBOL_GPL vmlinux 0xd1386738 x509_cert_parse -EXPORT_SYMBOL_GPL vmlinux 0xd13e3707 handle_fasteoi_ack_irq -EXPORT_SYMBOL_GPL vmlinux 0xd144d15f of_property_read_string -EXPORT_SYMBOL_GPL vmlinux 0xd1481de7 mpi_clear -EXPORT_SYMBOL_GPL vmlinux 0xd14d173d fsnotify_alloc_user_group -EXPORT_SYMBOL_GPL vmlinux 0xd14e63a5 subsys_virtual_register -EXPORT_SYMBOL_GPL vmlinux 0xd159586c net_prio_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0xd1612fe3 gpiod_get_direction -EXPORT_SYMBOL_GPL vmlinux 0xd16a8cef __tracepoint_add_device_to_group -EXPORT_SYMBOL_GPL vmlinux 0xd16cdfa6 power_supply_get_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0xd178210e br_fdb_test_addr_hook -EXPORT_SYMBOL_GPL vmlinux 0xd17d2a22 phy_basic_features -EXPORT_SYMBOL_GPL vmlinux 0xd181fd31 int_active_memcg -EXPORT_SYMBOL_GPL vmlinux 0xd19861ee of_dma_xlate_by_chan_id -EXPORT_SYMBOL_GPL vmlinux 0xd19a2788 devm_regmap_field_bulk_free -EXPORT_SYMBOL_GPL vmlinux 0xd1a9ca15 __SCK__tp_func_neigh_update -EXPORT_SYMBOL_GPL vmlinux 0xd1c4da76 ohci_init_driver -EXPORT_SYMBOL_GPL vmlinux 0xd1cbc23c add_timer_on -EXPORT_SYMBOL_GPL vmlinux 0xd1d84b7a fwnode_get_named_child_node -EXPORT_SYMBOL_GPL vmlinux 0xd1db2f0e devm_bitmap_zalloc -EXPORT_SYMBOL_GPL vmlinux 0xd1f2eee2 nf_logger_find_get -EXPORT_SYMBOL_GPL vmlinux 0xd1f90a95 __traceiter_neigh_update_done -EXPORT_SYMBOL_GPL vmlinux 0xd1fd99db acpi_processor_get_performance_info -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 0xd227dcf5 input_ff_upload -EXPORT_SYMBOL_GPL vmlinux 0xd22bc71b tcp_sendmsg_locked -EXPORT_SYMBOL_GPL vmlinux 0xd232793d power_supply_class -EXPORT_SYMBOL_GPL vmlinux 0xd2356c2b __traceiter_pelt_thermal_tp -EXPORT_SYMBOL_GPL vmlinux 0xd2423f76 i2c_acpi_get_i2c_resource -EXPORT_SYMBOL_GPL vmlinux 0xd246bd6d to_nd_blk_region -EXPORT_SYMBOL_GPL vmlinux 0xd24e9e8c klist_init -EXPORT_SYMBOL_GPL vmlinux 0xd259d364 ata_pci_bmdma_prepare_host -EXPORT_SYMBOL_GPL vmlinux 0xd25abd37 tty_port_link_device -EXPORT_SYMBOL_GPL vmlinux 0xd25d2779 spi_controller_dma_map_mem_op_data -EXPORT_SYMBOL_GPL vmlinux 0xd25ebb33 bsg_job_get -EXPORT_SYMBOL_GPL vmlinux 0xd260af0d ring_buffer_write -EXPORT_SYMBOL_GPL vmlinux 0xd2691c61 da903x_read -EXPORT_SYMBOL_GPL vmlinux 0xd26d99ad udp6_lib_lookup -EXPORT_SYMBOL_GPL vmlinux 0xd270e977 pci_bridge_emul_conf_write -EXPORT_SYMBOL_GPL vmlinux 0xd273b1b1 __round_jiffies_up_relative -EXPORT_SYMBOL_GPL vmlinux 0xd27755c8 led_trigger_set_default -EXPORT_SYMBOL_GPL vmlinux 0xd27f215d gnttab_alloc_grant_references -EXPORT_SYMBOL_GPL vmlinux 0xd2846c52 pci_create_slot -EXPORT_SYMBOL_GPL vmlinux 0xd293297a ohci_suspend -EXPORT_SYMBOL_GPL vmlinux 0xd29461de __udp_gso_segment -EXPORT_SYMBOL_GPL vmlinux 0xd2b10a05 ata_timing_find_mode -EXPORT_SYMBOL_GPL vmlinux 0xd2c59b91 spi_slave_abort -EXPORT_SYMBOL_GPL vmlinux 0xd2c74c28 netdev_walk_all_upper_dev_rcu -EXPORT_SYMBOL_GPL vmlinux 0xd2cacf4c add_page_wait_queue -EXPORT_SYMBOL_GPL vmlinux 0xd2f7fa0a ahci_platform_enable_regulators -EXPORT_SYMBOL_GPL vmlinux 0xd2feca5b __iptunnel_pull_header -EXPORT_SYMBOL_GPL vmlinux 0xd301da1e acpi_pci_check_ejectable -EXPORT_SYMBOL_GPL vmlinux 0xd319b57a generic_fsdax_supported -EXPORT_SYMBOL_GPL vmlinux 0xd31a2ac5 ring_buffer_oldest_event_ts -EXPORT_SYMBOL_GPL vmlinux 0xd320ebaf pci_epc_get_first_free_bar -EXPORT_SYMBOL_GPL vmlinux 0xd33ada8b cci_probed -EXPORT_SYMBOL_GPL vmlinux 0xd35547e3 unix_inq_len -EXPORT_SYMBOL_GPL vmlinux 0xd35c9c4f pinctrl_add_gpio_ranges -EXPORT_SYMBOL_GPL vmlinux 0xd36760ef __usb_get_extra_descriptor -EXPORT_SYMBOL_GPL vmlinux 0xd3752c27 atomic_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0xd377478d mtk_is_virt_gpio -EXPORT_SYMBOL_GPL vmlinux 0xd3817fa7 bpf_trace_run7 -EXPORT_SYMBOL_GPL vmlinux 0xd385a0be udp_abort -EXPORT_SYMBOL_GPL vmlinux 0xd3913117 blk_revalidate_disk_zones -EXPORT_SYMBOL_GPL vmlinux 0xd39b0377 elv_rqhash_del -EXPORT_SYMBOL_GPL vmlinux 0xd39b8a04 pci_epf_create -EXPORT_SYMBOL_GPL vmlinux 0xd39e9848 put_itimerspec64 -EXPORT_SYMBOL_GPL vmlinux 0xd3aa8f61 scsi_dh_attached_handler_name -EXPORT_SYMBOL_GPL vmlinux 0xd3b0a2b7 synchronize_srcu_expedited -EXPORT_SYMBOL_GPL vmlinux 0xd3c0d2d6 trace_event_ignore_this_pid -EXPORT_SYMBOL_GPL vmlinux 0xd3c18abe crypto_alloc_ahash -EXPORT_SYMBOL_GPL vmlinux 0xd3d32ace ti_sci_get_handle -EXPORT_SYMBOL_GPL vmlinux 0xd3d7f532 of_property_read_string_helper -EXPORT_SYMBOL_GPL vmlinux 0xd3ec851c __traceiter_unmap -EXPORT_SYMBOL_GPL vmlinux 0xd3f0cd42 misc_cg_res_total_usage -EXPORT_SYMBOL_GPL vmlinux 0xd3faab50 msg_zerocopy_callback -EXPORT_SYMBOL_GPL vmlinux 0xd3fabc30 pci_disable_pasid -EXPORT_SYMBOL_GPL vmlinux 0xd3fb0f27 dev_pm_opp_remove_table -EXPORT_SYMBOL_GPL vmlinux 0xd4034828 system_freezable_wq -EXPORT_SYMBOL_GPL vmlinux 0xd426dbc4 erst_get_record_count -EXPORT_SYMBOL_GPL vmlinux 0xd42f1d4e show_rcu_tasks_rude_gp_kthread -EXPORT_SYMBOL_GPL vmlinux 0xd4384de0 cdrom_read_tocentry -EXPORT_SYMBOL_GPL vmlinux 0xd43ab89e gpiod_get_index -EXPORT_SYMBOL_GPL vmlinux 0xd4430b76 ahci_platform_suspend -EXPORT_SYMBOL_GPL vmlinux 0xd44a5eac kgdb_register_nmi_console -EXPORT_SYMBOL_GPL vmlinux 0xd465ef7f pci_remove_root_bus -EXPORT_SYMBOL_GPL vmlinux 0xd46af5ef cppc_get_perf_ctrs -EXPORT_SYMBOL_GPL vmlinux 0xd46c9e4a switchdev_handle_port_attr_set -EXPORT_SYMBOL_GPL vmlinux 0xd4819517 blk_ksm_reprogram_all_keys -EXPORT_SYMBOL_GPL vmlinux 0xd4935851 __SCK__tp_func_suspend_resume -EXPORT_SYMBOL_GPL vmlinux 0xd4962841 to_nd_region -EXPORT_SYMBOL_GPL vmlinux 0xd49aa8f9 __efivar_entry_delete -EXPORT_SYMBOL_GPL vmlinux 0xd4a74148 fsverity_ioctl_read_metadata -EXPORT_SYMBOL_GPL vmlinux 0xd4b11b30 devm_hwrng_register -EXPORT_SYMBOL_GPL vmlinux 0xd4b6157e devlink_health_reporter_recovery_done -EXPORT_SYMBOL_GPL vmlinux 0xd4b9a616 reset_control_bulk_put -EXPORT_SYMBOL_GPL vmlinux 0xd4bac899 crypto_unregister_scomp -EXPORT_SYMBOL_GPL vmlinux 0xd4c14632 system_unbound_wq -EXPORT_SYMBOL_GPL vmlinux 0xd4cbdbe3 __SCK__tp_func_devlink_trap_report -EXPORT_SYMBOL_GPL vmlinux 0xd4d6024d irq_chip_set_parent_state -EXPORT_SYMBOL_GPL vmlinux 0xd4def00a pci_epc_put -EXPORT_SYMBOL_GPL vmlinux 0xd4e6d7e0 linear_range_get_value -EXPORT_SYMBOL_GPL vmlinux 0xd4e8b433 alloc_dax -EXPORT_SYMBOL_GPL vmlinux 0xd4f5bfa5 iommu_queue_iopf -EXPORT_SYMBOL_GPL vmlinux 0xd4fb5b87 __clk_mux_determine_rate -EXPORT_SYMBOL_GPL vmlinux 0xd4ffadd1 gov_attr_set_get -EXPORT_SYMBOL_GPL vmlinux 0xd50cb0e4 syscon_node_to_regmap -EXPORT_SYMBOL_GPL vmlinux 0xd514c2ac pinctrl_generic_add_group -EXPORT_SYMBOL_GPL vmlinux 0xd5151b0d i2c_dw_probe_master -EXPORT_SYMBOL_GPL vmlinux 0xd5156794 tpm_calc_ordinal_duration -EXPORT_SYMBOL_GPL vmlinux 0xd51a81de ptp_classify_raw -EXPORT_SYMBOL_GPL vmlinux 0xd527e477 regulator_disable_regmap -EXPORT_SYMBOL_GPL vmlinux 0xd52b8911 sk_msg_free -EXPORT_SYMBOL_GPL vmlinux 0xd5301b2c linear_range_get_max_value -EXPORT_SYMBOL_GPL vmlinux 0xd536f997 ahci_platform_enable_clks -EXPORT_SYMBOL_GPL vmlinux 0xd53ac5d0 led_trigger_blink_oneshot -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 0xd566d1be dev_pm_opp_find_freq_ceil_by_volt -EXPORT_SYMBOL_GPL vmlinux 0xd5710c47 bgpio_init -EXPORT_SYMBOL_GPL vmlinux 0xd57c8835 acpi_debugfs_dir -EXPORT_SYMBOL_GPL vmlinux 0xd57fbd31 hwrng_unregister -EXPORT_SYMBOL_GPL vmlinux 0xd5807af3 k3_ringacc_ring_pop -EXPORT_SYMBOL_GPL vmlinux 0xd58a4dd8 dev_pm_genpd_remove_notifier -EXPORT_SYMBOL_GPL vmlinux 0xd5987e30 ipv4_sk_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0xd59a1587 linkmode_resolve_pause -EXPORT_SYMBOL_GPL vmlinux 0xd59eeff0 dev_pm_qos_hide_flags -EXPORT_SYMBOL_GPL vmlinux 0xd5a33073 pfn_to_online_page -EXPORT_SYMBOL_GPL vmlinux 0xd5a9a40d platform_device_add -EXPORT_SYMBOL_GPL vmlinux 0xd5c23ba3 crypto_unregister_algs -EXPORT_SYMBOL_GPL vmlinux 0xd5c6c835 amba_device_alloc -EXPORT_SYMBOL_GPL vmlinux 0xd5d1c199 ahci_stop_engine -EXPORT_SYMBOL_GPL vmlinux 0xd5df7033 vfs_setxattr -EXPORT_SYMBOL_GPL vmlinux 0xd5f8401b dma_request_chan_by_mask -EXPORT_SYMBOL_GPL vmlinux 0xd5f923b2 xhci_init_driver -EXPORT_SYMBOL_GPL vmlinux 0xd6087e10 regmap_get_device -EXPORT_SYMBOL_GPL vmlinux 0xd6156014 gpiod_direction_output -EXPORT_SYMBOL_GPL vmlinux 0xd624fb0c blk_mq_debugfs_rq_show -EXPORT_SYMBOL_GPL vmlinux 0xd62e96d9 devm_led_classdev_register_ext -EXPORT_SYMBOL_GPL vmlinux 0xd63be100 irq_domain_alloc_irqs_parent -EXPORT_SYMBOL_GPL vmlinux 0xd64ed259 __memcat_p -EXPORT_SYMBOL_GPL vmlinux 0xd650ff46 get_user_pages_fast -EXPORT_SYMBOL_GPL vmlinux 0xd6532fe7 dev_attr_ncq_prio_supported -EXPORT_SYMBOL_GPL vmlinux 0xd6729ddb inet_ctl_sock_create -EXPORT_SYMBOL_GPL vmlinux 0xd67364f7 eventfd_ctx_fdget -EXPORT_SYMBOL_GPL vmlinux 0xd674f882 of_clk_add_hw_provider -EXPORT_SYMBOL_GPL vmlinux 0xd6784514 rio_map_inb_region -EXPORT_SYMBOL_GPL vmlinux 0xd681a1b2 regulator_map_voltage_linear -EXPORT_SYMBOL_GPL vmlinux 0xd6925b86 phy_led_triggers_register -EXPORT_SYMBOL_GPL vmlinux 0xd6944765 devm_usb_get_phy -EXPORT_SYMBOL_GPL vmlinux 0xd695f0c3 regulator_set_voltage_sel_pickable_regmap -EXPORT_SYMBOL_GPL vmlinux 0xd6b46c2f crypto_comp_decompress -EXPORT_SYMBOL_GPL vmlinux 0xd6bd6d83 devm_regmap_add_irq_chip -EXPORT_SYMBOL_GPL vmlinux 0xd6bff2b4 fsnotify_find_mark -EXPORT_SYMBOL_GPL vmlinux 0xd6d6980b cpufreq_cpu_get_raw -EXPORT_SYMBOL_GPL vmlinux 0xd6d8f6b3 topology_set_scale_freq_source -EXPORT_SYMBOL_GPL vmlinux 0xd6dcc086 usb_hcd_is_primary_hcd -EXPORT_SYMBOL_GPL vmlinux 0xd6e5ba09 devm_hwmon_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0xd6e7f544 spi_add_device -EXPORT_SYMBOL_GPL vmlinux 0xd6f60ee9 pci_intx -EXPORT_SYMBOL_GPL vmlinux 0xd70fd40c blk_steal_bios -EXPORT_SYMBOL_GPL vmlinux 0xd71823f6 __percpu_down_read -EXPORT_SYMBOL_GPL vmlinux 0xd7219c9c set_cpus_allowed_ptr -EXPORT_SYMBOL_GPL vmlinux 0xd7269c64 osc_sb_native_usb4_control -EXPORT_SYMBOL_GPL vmlinux 0xd7293ffc percpu_ref_reinit -EXPORT_SYMBOL_GPL vmlinux 0xd72edc66 acpi_irq_create_hierarchy -EXPORT_SYMBOL_GPL vmlinux 0xd72feba2 xenbus_read_driver_state -EXPORT_SYMBOL_GPL vmlinux 0xd7377795 fib_info_nh_uses_dev -EXPORT_SYMBOL_GPL vmlinux 0xd7399d2a efivar_entry_iter_end -EXPORT_SYMBOL_GPL vmlinux 0xd7484b63 fuse_do_ioctl -EXPORT_SYMBOL_GPL vmlinux 0xd75b20aa rsa_parse_priv_key -EXPORT_SYMBOL_GPL vmlinux 0xd768e985 regulator_has_full_constraints -EXPORT_SYMBOL_GPL vmlinux 0xd774957d mpi_write_to_sgl -EXPORT_SYMBOL_GPL vmlinux 0xd7add05a crypto_hash_walk_first -EXPORT_SYMBOL_GPL vmlinux 0xd7b5dfee xas_split -EXPORT_SYMBOL_GPL vmlinux 0xd7b7fb80 pkcs7_validate_trust -EXPORT_SYMBOL_GPL vmlinux 0xd7c91b63 tegra210_sata_pll_hw_control_enable -EXPORT_SYMBOL_GPL vmlinux 0xd7cea889 edac_mod_work -EXPORT_SYMBOL_GPL vmlinux 0xd7d674f6 __reset_control_bulk_get -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 0xd7f36950 of_clk_hw_simple_get -EXPORT_SYMBOL_GPL vmlinux 0xd7fb35bd wbc_attach_and_unlock_inode -EXPORT_SYMBOL_GPL vmlinux 0xd80a1e67 crypto_stats_rng_generate -EXPORT_SYMBOL_GPL vmlinux 0xd81a17ba of_pci_address_to_resource -EXPORT_SYMBOL_GPL vmlinux 0xd8271cc4 iommu_dev_disable_feature -EXPORT_SYMBOL_GPL vmlinux 0xd82a24de regulator_get_drvdata -EXPORT_SYMBOL_GPL vmlinux 0xd8348d70 nfnl_ct_hook -EXPORT_SYMBOL_GPL vmlinux 0xd838542d skb_copy_ubufs -EXPORT_SYMBOL_GPL vmlinux 0xd83f09fb blk_update_request -EXPORT_SYMBOL_GPL vmlinux 0xd84d35bd dax_read_lock -EXPORT_SYMBOL_GPL vmlinux 0xd8572355 virtqueue_get_avail_addr -EXPORT_SYMBOL_GPL vmlinux 0xd85f33c8 dev_pm_domain_attach_by_id -EXPORT_SYMBOL_GPL vmlinux 0xd864e0bc fat_update_time -EXPORT_SYMBOL_GPL vmlinux 0xd87fc0a0 usb_amd_prefetch_quirk -EXPORT_SYMBOL_GPL vmlinux 0xd8835a9a srcu_batches_completed -EXPORT_SYMBOL_GPL vmlinux 0xd8a53418 init_uts_ns -EXPORT_SYMBOL_GPL vmlinux 0xd8ac29b8 skb_clone_tx_timestamp -EXPORT_SYMBOL_GPL vmlinux 0xd8b34397 store_sampling_rate -EXPORT_SYMBOL_GPL vmlinux 0xd8c3adc1 icc_nodes_remove -EXPORT_SYMBOL_GPL vmlinux 0xd8ce19c2 __spi_alloc_controller -EXPORT_SYMBOL_GPL vmlinux 0xd8d68ab1 dmi_memdev_type -EXPORT_SYMBOL_GPL vmlinux 0xd8dbfa16 devm_request_pci_bus_resources -EXPORT_SYMBOL_GPL vmlinux 0xd8edd51b subsys_dev_iter_init -EXPORT_SYMBOL_GPL vmlinux 0xd8f5d28f pm_generic_restore -EXPORT_SYMBOL_GPL vmlinux 0xd8fbb14d net_cls_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0xd8fc1f98 housekeeping_affine -EXPORT_SYMBOL_GPL vmlinux 0xd9043ffe pci_sriov_set_totalvfs -EXPORT_SYMBOL_GPL vmlinux 0xd905b82d ata_port_desc -EXPORT_SYMBOL_GPL vmlinux 0xd90a93a7 k3_udma_glue_rx_get_irq -EXPORT_SYMBOL_GPL vmlinux 0xd914a475 shmem_zero_setup -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 0xd93a5cb1 efivar_variable_is_removable -EXPORT_SYMBOL_GPL vmlinux 0xd9455b1c max8997_write_reg -EXPORT_SYMBOL_GPL vmlinux 0xd94c08fa bsg_setup_queue -EXPORT_SYMBOL_GPL vmlinux 0xd965a975 bpf_trace_run4 -EXPORT_SYMBOL_GPL vmlinux 0xd96babb4 interval_tree_iter_next -EXPORT_SYMBOL_GPL vmlinux 0xd978646e alloc_page_buffers -EXPORT_SYMBOL_GPL vmlinux 0xd9802119 device_pm_wait_for_dev -EXPORT_SYMBOL_GPL vmlinux 0xd989ecba irq_domain_update_bus_token -EXPORT_SYMBOL_GPL vmlinux 0xd98c5967 mpc8xxx_spi_rx_buf_u32 -EXPORT_SYMBOL_GPL vmlinux 0xd98f80a3 regulator_set_bypass_regmap -EXPORT_SYMBOL_GPL vmlinux 0xd9916c3a idr_alloc_u32 -EXPORT_SYMBOL_GPL vmlinux 0xd9a76d79 regulator_is_enabled_regmap -EXPORT_SYMBOL_GPL vmlinux 0xd9b4fbbb cpufreq_cooling_register -EXPORT_SYMBOL_GPL vmlinux 0xd9b61332 tracing_snapshot_cond -EXPORT_SYMBOL_GPL vmlinux 0xd9b89564 inet6_lookup_listener -EXPORT_SYMBOL_GPL vmlinux 0xd9c13e57 devlink_port_params_register -EXPORT_SYMBOL_GPL vmlinux 0xd9d0257b vchan_tx_submit -EXPORT_SYMBOL_GPL vmlinux 0xd9e24457 ring_buffer_peek -EXPORT_SYMBOL_GPL vmlinux 0xd9ed4944 sock_map_close -EXPORT_SYMBOL_GPL vmlinux 0xd9f893e3 ahci_platform_suspend_host -EXPORT_SYMBOL_GPL vmlinux 0xd9faa7a5 zynqmp_pm_set_pll_frac_mode -EXPORT_SYMBOL_GPL vmlinux 0xd9ff2172 ezx_pcap_write -EXPORT_SYMBOL_GPL vmlinux 0xda06cbf8 hwmon_device_register -EXPORT_SYMBOL_GPL vmlinux 0xda0947de kmsg_dump_unregister -EXPORT_SYMBOL_GPL vmlinux 0xda262476 task_active_pid_ns -EXPORT_SYMBOL_GPL vmlinux 0xda2e80a5 clk_hw_unregister_gate -EXPORT_SYMBOL_GPL vmlinux 0xda320d31 sfp_module_start -EXPORT_SYMBOL_GPL vmlinux 0xda3233be crypto_unregister_shash -EXPORT_SYMBOL_GPL vmlinux 0xda3639d7 rio_mport_class -EXPORT_SYMBOL_GPL vmlinux 0xda494e4e acomp_request_alloc -EXPORT_SYMBOL_GPL vmlinux 0xda5f652b dpcon_open -EXPORT_SYMBOL_GPL vmlinux 0xda69b882 encrypt_blob -EXPORT_SYMBOL_GPL vmlinux 0xda7912d4 freq_qos_add_request -EXPORT_SYMBOL_GPL vmlinux 0xda8825c0 __clk_determine_rate -EXPORT_SYMBOL_GPL vmlinux 0xda8e1302 software_node_find_by_name -EXPORT_SYMBOL_GPL vmlinux 0xda92f2ec of_devfreq_cooling_register -EXPORT_SYMBOL_GPL vmlinux 0xdaa06dc1 acpi_lpat_raw_to_temp -EXPORT_SYMBOL_GPL vmlinux 0xdab5a1eb interval_tree_insert -EXPORT_SYMBOL_GPL vmlinux 0xdade5585 usb_register_dev -EXPORT_SYMBOL_GPL vmlinux 0xdae009c6 ata_do_dev_read_id -EXPORT_SYMBOL_GPL vmlinux 0xdae417d6 kern_mount -EXPORT_SYMBOL_GPL vmlinux 0xdaf4dfb3 fb_mode_option -EXPORT_SYMBOL_GPL vmlinux 0xdb1b6f79 register_trace_event -EXPORT_SYMBOL_GPL vmlinux 0xdb2220b7 kthread_queue_work -EXPORT_SYMBOL_GPL vmlinux 0xdb26b21b gpiod_export_link -EXPORT_SYMBOL_GPL vmlinux 0xdb29cb0d hrtimer_sleeper_start_expires -EXPORT_SYMBOL_GPL vmlinux 0xdb37758e blk_ksm_update_capabilities -EXPORT_SYMBOL_GPL vmlinux 0xdb440bfe crypto_register_skcipher -EXPORT_SYMBOL_GPL vmlinux 0xdb5aa553 hisi_clk_init -EXPORT_SYMBOL_GPL vmlinux 0xdb63a944 acpi_lpat_get_conversion_table -EXPORT_SYMBOL_GPL vmlinux 0xdb63ef10 bpf_trace_run12 -EXPORT_SYMBOL_GPL vmlinux 0xdb6b3882 led_trigger_remove -EXPORT_SYMBOL_GPL vmlinux 0xdb6c1338 ata_dummy_port_ops -EXPORT_SYMBOL_GPL vmlinux 0xdb711607 devlink_remote_reload_actions_performed -EXPORT_SYMBOL_GPL vmlinux 0xdb7cd835 __xenbus_register_frontend -EXPORT_SYMBOL_GPL vmlinux 0xdb82f71f sbitmap_init_node -EXPORT_SYMBOL_GPL vmlinux 0xdb8734d5 devlink_resource_occ_get_register -EXPORT_SYMBOL_GPL vmlinux 0xdb8a1b3f usermodehelper_read_trylock -EXPORT_SYMBOL_GPL vmlinux 0xdb916ce2 balloon_aops -EXPORT_SYMBOL_GPL vmlinux 0xdb92d781 acpi_pci_find_root -EXPORT_SYMBOL_GPL vmlinux 0xdb98050e to_of_pinfo -EXPORT_SYMBOL_GPL vmlinux 0xdbaa3ada devm_gpiochip_add_data_with_key -EXPORT_SYMBOL_GPL vmlinux 0xdbc1a1be ahci_platform_ops -EXPORT_SYMBOL_GPL vmlinux 0xdbc74c22 blk_mq_start_stopped_hw_queue -EXPORT_SYMBOL_GPL vmlinux 0xdbd098b7 extcon_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0xdbdb0e8b request_any_context_irq -EXPORT_SYMBOL_GPL vmlinux 0xdbe8d8a0 __SCK__tp_func_cpu_frequency -EXPORT_SYMBOL_GPL vmlinux 0xdbe976e5 proc_create_net_data -EXPORT_SYMBOL_GPL vmlinux 0xdbeeece6 tracepoint_probe_unregister -EXPORT_SYMBOL_GPL vmlinux 0xdbefc785 dprc_close -EXPORT_SYMBOL_GPL vmlinux 0xdbf7cb70 mpi_get_nbits -EXPORT_SYMBOL_GPL vmlinux 0xdbf89529 tpm_chip_register -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 0xdc2f22ac phy_reset -EXPORT_SYMBOL_GPL vmlinux 0xdc43bdc6 pci_vpd_find_ro_info_keyword -EXPORT_SYMBOL_GPL vmlinux 0xdc45a5db edac_stop_work -EXPORT_SYMBOL_GPL vmlinux 0xdc5063e9 dma_max_mapping_size -EXPORT_SYMBOL_GPL vmlinux 0xdc60d3eb cpufreq_driver_resolve_freq -EXPORT_SYMBOL_GPL vmlinux 0xdc6596fa irq_set_parent -EXPORT_SYMBOL_GPL vmlinux 0xdc6699cb acpi_dev_free_resource_list -EXPORT_SYMBOL_GPL vmlinux 0xdc74bfcf class_interface_unregister -EXPORT_SYMBOL_GPL vmlinux 0xdc790fc1 dw_pcie_ep_exit -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 0xdc857d68 reset_controller_register -EXPORT_SYMBOL_GPL vmlinux 0xdc97af2e syscore_suspend -EXPORT_SYMBOL_GPL vmlinux 0xdc9fa232 raw_notifier_chain_register -EXPORT_SYMBOL_GPL vmlinux 0xdcaaf220 sdio_writeb_readb -EXPORT_SYMBOL_GPL vmlinux 0xdcac953b mmu_interval_notifier_remove -EXPORT_SYMBOL_GPL vmlinux 0xdcb4e29d kthread_flush_worker -EXPORT_SYMBOL_GPL vmlinux 0xdcbb1ad5 proc_create_net_single_write -EXPORT_SYMBOL_GPL vmlinux 0xdcc45817 ahci_dev_classify -EXPORT_SYMBOL_GPL vmlinux 0xdccf19e0 uhci_check_and_reset_hc -EXPORT_SYMBOL_GPL vmlinux 0xdccf509b thermal_zone_device_enable -EXPORT_SYMBOL_GPL vmlinux 0xdcd27068 acpi_bus_trim -EXPORT_SYMBOL_GPL vmlinux 0xdcf42509 devlink_free -EXPORT_SYMBOL_GPL vmlinux 0xdcf54d1b blkdev_report_zones -EXPORT_SYMBOL_GPL vmlinux 0xdd0762df set_worker_desc -EXPORT_SYMBOL_GPL vmlinux 0xdd0a9b2c device_unregister -EXPORT_SYMBOL_GPL vmlinux 0xdd0c12e4 dev_pm_genpd_set_performance_state -EXPORT_SYMBOL_GPL vmlinux 0xdd15d837 sysfs_file_change_owner -EXPORT_SYMBOL_GPL vmlinux 0xdd1d58b7 dev_pm_domain_start -EXPORT_SYMBOL_GPL vmlinux 0xdd231db0 validate_xmit_xfrm -EXPORT_SYMBOL_GPL vmlinux 0xdd391eff profile_event_unregister -EXPORT_SYMBOL_GPL vmlinux 0xdd3bbe8f dev_pm_opp_adjust_voltage -EXPORT_SYMBOL_GPL vmlinux 0xdd626ee3 fuse_len_args -EXPORT_SYMBOL_GPL vmlinux 0xdd6ddcec __traceiter_error_report_end -EXPORT_SYMBOL_GPL vmlinux 0xdd6ff19e icc_set_bw -EXPORT_SYMBOL_GPL vmlinux 0xdd81d8f6 __SCK__tp_func_block_bio_complete -EXPORT_SYMBOL_GPL vmlinux 0xdd83937e blkcg_policy_register -EXPORT_SYMBOL_GPL vmlinux 0xdd90b084 extcon_sync -EXPORT_SYMBOL_GPL vmlinux 0xdd9deb4c iommu_set_pgtable_quirks -EXPORT_SYMBOL_GPL vmlinux 0xddac7338 __traceiter_fdb_delete -EXPORT_SYMBOL_GPL vmlinux 0xddb20d58 mtk_pinconf_adv_drive_set_raw -EXPORT_SYMBOL_GPL vmlinux 0xddbeeecc pci_lock_rescan_remove -EXPORT_SYMBOL_GPL vmlinux 0xddbfefd9 class_dev_iter_init -EXPORT_SYMBOL_GPL vmlinux 0xddc53d42 cpci_hp_unregister_bus -EXPORT_SYMBOL_GPL vmlinux 0xddd57e40 of_usb_update_otg_caps -EXPORT_SYMBOL_GPL vmlinux 0xddd960e9 pm_runtime_allow -EXPORT_SYMBOL_GPL vmlinux 0xdde23784 ip6_route_input_lookup -EXPORT_SYMBOL_GPL vmlinux 0xddf32520 __tracepoint_powernv_throttle -EXPORT_SYMBOL_GPL vmlinux 0xde01afe0 screen_pos -EXPORT_SYMBOL_GPL vmlinux 0xde09a94d xas_find -EXPORT_SYMBOL_GPL vmlinux 0xde34aa26 devm_led_classdev_unregister -EXPORT_SYMBOL_GPL vmlinux 0xde37fe2b sched_trace_rd_span -EXPORT_SYMBOL_GPL vmlinux 0xde57aabe crypto_alloc_rng -EXPORT_SYMBOL_GPL vmlinux 0xde618bd3 synth_event_trace_start -EXPORT_SYMBOL_GPL vmlinux 0xde6ddbae mtk_pinconf_drive_get_rev1 -EXPORT_SYMBOL_GPL vmlinux 0xde6f1851 TSS_checkhmac1 -EXPORT_SYMBOL_GPL vmlinux 0xde79f1d2 of_clk_get_parent_name -EXPORT_SYMBOL_GPL vmlinux 0xde862236 alloc_dax_region -EXPORT_SYMBOL_GPL vmlinux 0xde8983da __reset_control_get -EXPORT_SYMBOL_GPL vmlinux 0xde8e6f3f fscrypt_prepare_new_inode -EXPORT_SYMBOL_GPL vmlinux 0xde9ab8c7 xenbus_rm -EXPORT_SYMBOL_GPL vmlinux 0xdea19630 inet_csk_listen_start -EXPORT_SYMBOL_GPL vmlinux 0xdeb4e5d0 tegra_xusb_padctl_legacy_remove -EXPORT_SYMBOL_GPL vmlinux 0xded028df iomap_seek_hole -EXPORT_SYMBOL_GPL vmlinux 0xded6a800 unregister_wide_hw_breakpoint -EXPORT_SYMBOL_GPL vmlinux 0xdee2cc5f clkdev_hw_create -EXPORT_SYMBOL_GPL vmlinux 0xdee65b82 regmap_async_complete -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 0xdf2738bb cpu_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0xdf33e185 regmap_get_raw_read_max -EXPORT_SYMBOL_GPL vmlinux 0xdf3ba5cf page_mkclean -EXPORT_SYMBOL_GPL vmlinux 0xdf448d1c fanout_mutex -EXPORT_SYMBOL_GPL vmlinux 0xdf582692 k3_udma_glue_request_tx_chn -EXPORT_SYMBOL_GPL vmlinux 0xdf5a7cd6 regulator_enable -EXPORT_SYMBOL_GPL vmlinux 0xdf72ea8b gpiochip_irq_domain_activate -EXPORT_SYMBOL_GPL vmlinux 0xdfa40046 spi_bus_type -EXPORT_SYMBOL_GPL vmlinux 0xdfb5ac28 power_supply_get_battery_info -EXPORT_SYMBOL_GPL vmlinux 0xdfba110b irq_gc_ack_set_bit -EXPORT_SYMBOL_GPL vmlinux 0xdfc42868 ahci_do_softreset -EXPORT_SYMBOL_GPL vmlinux 0xdfc54cec percpu_down_write -EXPORT_SYMBOL_GPL vmlinux 0xdfcb6c90 mctrl_gpio_set -EXPORT_SYMBOL_GPL vmlinux 0xdfda295e devres_destroy -EXPORT_SYMBOL_GPL vmlinux 0xdff4d5a7 phy_select_page -EXPORT_SYMBOL_GPL vmlinux 0xdffbe11f ip6_pol_route -EXPORT_SYMBOL_GPL vmlinux 0xe019493a key_type_asymmetric -EXPORT_SYMBOL_GPL vmlinux 0xe01c5118 dev_pm_opp_find_level_ceil -EXPORT_SYMBOL_GPL vmlinux 0xe01f4cb0 irq_force_affinity -EXPORT_SYMBOL_GPL vmlinux 0xe02b321d clk_mux_val_to_index -EXPORT_SYMBOL_GPL vmlinux 0xe0313d71 rhashtable_insert_slow -EXPORT_SYMBOL_GPL vmlinux 0xe03b53eb of_reserved_mem_device_release -EXPORT_SYMBOL_GPL vmlinux 0xe0485184 ti_sci_inta_msi_domain_alloc_irqs -EXPORT_SYMBOL_GPL vmlinux 0xe05be544 regulator_set_voltage_rdev -EXPORT_SYMBOL_GPL vmlinux 0xe05e2f85 nexthop_free_rcu -EXPORT_SYMBOL_GPL vmlinux 0xe061bb01 sched_setattr_nocheck -EXPORT_SYMBOL_GPL vmlinux 0xe07b7dea user_update -EXPORT_SYMBOL_GPL vmlinux 0xe07bfe72 extcon_get_edev_name -EXPORT_SYMBOL_GPL vmlinux 0xe07ddf44 of_detach_node -EXPORT_SYMBOL_GPL vmlinux 0xe08a7232 pm_runtime_suspended_time -EXPORT_SYMBOL_GPL vmlinux 0xe096e863 devm_ioremap_uc -EXPORT_SYMBOL_GPL vmlinux 0xe0aa6567 xenbus_read_otherend_details -EXPORT_SYMBOL_GPL vmlinux 0xe0b1c103 clk_set_max_rate -EXPORT_SYMBOL_GPL vmlinux 0xe0b69af7 spi_mem_dtr_supports_op -EXPORT_SYMBOL_GPL vmlinux 0xe0bad1a1 clk_hw_get_parent_index -EXPORT_SYMBOL_GPL vmlinux 0xe0c4ee3d pm_generic_suspend -EXPORT_SYMBOL_GPL vmlinux 0xe0e30734 scsi_dh_set_params -EXPORT_SYMBOL_GPL vmlinux 0xe0e3147c HYPERVISOR_sched_op -EXPORT_SYMBOL_GPL vmlinux 0xe0eab201 pcie_port_bus_type -EXPORT_SYMBOL_GPL vmlinux 0xe0f0bebc virtio_config_changed -EXPORT_SYMBOL_GPL vmlinux 0xe0fb2a46 icc_get_name -EXPORT_SYMBOL_GPL vmlinux 0xe0fe73ce clean_record_shared_mapping_range -EXPORT_SYMBOL_GPL vmlinux 0xe10cd6ad erst_get_record_id_begin -EXPORT_SYMBOL_GPL vmlinux 0xe1330605 pm_runtime_set_memalloc_noio -EXPORT_SYMBOL_GPL vmlinux 0xe13a43b8 of_add_property -EXPORT_SYMBOL_GPL vmlinux 0xe13a5fa0 perf_aux_output_skip -EXPORT_SYMBOL_GPL vmlinux 0xe13cd718 of_icc_xlate_onecell -EXPORT_SYMBOL_GPL vmlinux 0xe158ae09 mtk_pinconf_adv_pull_get -EXPORT_SYMBOL_GPL vmlinux 0xe15c827b tpm_tis_resume -EXPORT_SYMBOL_GPL vmlinux 0xe165362c cpuidle_get_driver -EXPORT_SYMBOL_GPL vmlinux 0xe16ab6db clk_register_fractional_divider -EXPORT_SYMBOL_GPL vmlinux 0xe1775ee7 dm_get_reserved_bio_based_ios -EXPORT_SYMBOL_GPL vmlinux 0xe17b1ad6 synth_event_trace -EXPORT_SYMBOL_GPL vmlinux 0xe17c00ad __fscrypt_encrypt_symlink -EXPORT_SYMBOL_GPL vmlinux 0xe18fcbb9 mdio_mux_init -EXPORT_SYMBOL_GPL vmlinux 0xe1a3ab7b dev_pm_get_subsys_data -EXPORT_SYMBOL_GPL vmlinux 0xe1a83ee8 mtk_pinconf_drive_set -EXPORT_SYMBOL_GPL vmlinux 0xe1a8d7c9 net_rwsem -EXPORT_SYMBOL_GPL vmlinux 0xe1ac773e tick_nohz_full_mask -EXPORT_SYMBOL_GPL vmlinux 0xe1b47f14 i2c_mux_alloc -EXPORT_SYMBOL_GPL vmlinux 0xe1b64948 acpi_dma_request_slave_chan_by_name -EXPORT_SYMBOL_GPL vmlinux 0xe1bd6c99 rio_init_mports -EXPORT_SYMBOL_GPL vmlinux 0xe1c63523 blk_ksm_get_slot_idx -EXPORT_SYMBOL_GPL vmlinux 0xe1cd144a sysfs_group_change_owner -EXPORT_SYMBOL_GPL vmlinux 0xe1cfbe4a driver_attach -EXPORT_SYMBOL_GPL vmlinux 0xe1d3d432 __sock_recv_ts_and_drops -EXPORT_SYMBOL_GPL vmlinux 0xe1d7cece thermal_zone_get_offset -EXPORT_SYMBOL_GPL vmlinux 0xe1d90eff gpiod_get_value -EXPORT_SYMBOL_GPL vmlinux 0xe1df630b meson_axg_pmx_ops -EXPORT_SYMBOL_GPL vmlinux 0xe1e5622d of_fdt_unflatten_tree -EXPORT_SYMBOL_GPL vmlinux 0xe1e5fb28 gnttab_page_cache_put -EXPORT_SYMBOL_GPL vmlinux 0xe1f2ffdc usb_clear_halt -EXPORT_SYMBOL_GPL vmlinux 0xe20cdd10 gpiod_is_active_low -EXPORT_SYMBOL_GPL vmlinux 0xe213ad5f i2c_detect_slave_mode -EXPORT_SYMBOL_GPL vmlinux 0xe215dcde md_find_rdev_rcu -EXPORT_SYMBOL_GPL vmlinux 0xe2310a76 gpiod_get_raw_array_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0xe233762a input_event_from_user -EXPORT_SYMBOL_GPL vmlinux 0xe23d4da3 tick_nohz_dep_set_task -EXPORT_SYMBOL_GPL vmlinux 0xe2441edd dax_driver_unregister -EXPORT_SYMBOL_GPL vmlinux 0xe25d23f3 blocking_notifier_call_chain_robust -EXPORT_SYMBOL_GPL vmlinux 0xe269e458 pci_test_config_bits -EXPORT_SYMBOL_GPL vmlinux 0xe26dba70 tty_port_tty_wakeup -EXPORT_SYMBOL_GPL vmlinux 0xe26ea728 wait_for_stable_page -EXPORT_SYMBOL_GPL vmlinux 0xe28204be validate_xmit_skb_list -EXPORT_SYMBOL_GPL vmlinux 0xe2923b10 divider_round_rate_parent -EXPORT_SYMBOL_GPL vmlinux 0xe29a8d18 rtc_update_irq -EXPORT_SYMBOL_GPL vmlinux 0xe2a12d74 __traceiter_napi_poll -EXPORT_SYMBOL_GPL vmlinux 0xe2a8a5c9 dm_get_queue_limits -EXPORT_SYMBOL_GPL vmlinux 0xe2b3207a unregister_switchdev_notifier -EXPORT_SYMBOL_GPL vmlinux 0xe2b7a4de pinconf_generic_parse_dt_config -EXPORT_SYMBOL_GPL vmlinux 0xe2c5335f sock_map_unhash -EXPORT_SYMBOL_GPL vmlinux 0xe2ce2b4d evm_set_key -EXPORT_SYMBOL_GPL vmlinux 0xe2dcca3d ata_platform_remove_one -EXPORT_SYMBOL_GPL vmlinux 0xe2dd1a5d thermal_zone_device_disable -EXPORT_SYMBOL_GPL vmlinux 0xe2ea36ff bpf_map_inc_not_zero -EXPORT_SYMBOL_GPL vmlinux 0xe30078c0 spi_async_locked -EXPORT_SYMBOL_GPL vmlinux 0xe31315a4 spi_delay_exec -EXPORT_SYMBOL_GPL vmlinux 0xe3279235 fat_time_fat2unix -EXPORT_SYMBOL_GPL vmlinux 0xe33756b2 spi_unregister_device -EXPORT_SYMBOL_GPL vmlinux 0xe338c5ac inet_hashinfo2_init_mod -EXPORT_SYMBOL_GPL vmlinux 0xe3768e73 cpufreq_unregister_governor -EXPORT_SYMBOL_GPL vmlinux 0xe3840e18 secure_ipv4_port_ephemeral -EXPORT_SYMBOL_GPL vmlinux 0xe390a080 of_device_uevent_modalias -EXPORT_SYMBOL_GPL vmlinux 0xe392136f ip6_route_output_flags -EXPORT_SYMBOL_GPL vmlinux 0xe3939021 ip_build_and_send_pkt -EXPORT_SYMBOL_GPL vmlinux 0xe397caf5 seq_buf_printf -EXPORT_SYMBOL_GPL vmlinux 0xe39d0794 usb_phy_roothub_exit -EXPORT_SYMBOL_GPL vmlinux 0xe3a4c52d ata_sff_exec_command -EXPORT_SYMBOL_GPL vmlinux 0xe3b022c1 __traceiter_rpm_resume -EXPORT_SYMBOL_GPL vmlinux 0xe3b09712 kprobe_event_delete -EXPORT_SYMBOL_GPL vmlinux 0xe3b34186 rt_mutex_unlock -EXPORT_SYMBOL_GPL vmlinux 0xe3bda093 pci_epc_stop -EXPORT_SYMBOL_GPL vmlinux 0xe3be1fc5 vp_modern_generation -EXPORT_SYMBOL_GPL vmlinux 0xe3c0b882 dm_get_md -EXPORT_SYMBOL_GPL vmlinux 0xe3c979a6 __traceiter_rpm_idle -EXPORT_SYMBOL_GPL vmlinux 0xe3cd5fae klist_iter_init -EXPORT_SYMBOL_GPL vmlinux 0xe3e5574d spi_split_transfers_maxsize -EXPORT_SYMBOL_GPL vmlinux 0xe3e6ad98 xen_dbgp_reset_prep -EXPORT_SYMBOL_GPL vmlinux 0xe4016139 __scsi_init_queue -EXPORT_SYMBOL_GPL vmlinux 0xe409f49f devm_regmap_del_irq_chip -EXPORT_SYMBOL_GPL vmlinux 0xe40bb23e devlink_health_reporter_priv -EXPORT_SYMBOL_GPL vmlinux 0xe40bcb43 mtk_build_eint -EXPORT_SYMBOL_GPL vmlinux 0xe4200c91 iopf_queue_remove_device -EXPORT_SYMBOL_GPL vmlinux 0xe421c075 anon_inode_getfd_secure -EXPORT_SYMBOL_GPL vmlinux 0xe4248980 cper_estatus_print -EXPORT_SYMBOL_GPL vmlinux 0xe4306a5b rt_mutex_lock -EXPORT_SYMBOL_GPL vmlinux 0xe4309905 syscore_resume -EXPORT_SYMBOL_GPL vmlinux 0xe43304a3 sysfs_remove_link_from_group -EXPORT_SYMBOL_GPL vmlinux 0xe43edc4b iommu_group_add_device -EXPORT_SYMBOL_GPL vmlinux 0xe449cb12 __pci_hp_register -EXPORT_SYMBOL_GPL vmlinux 0xe454bfd2 yield_to -EXPORT_SYMBOL_GPL vmlinux 0xe454ff8e md_account_bio -EXPORT_SYMBOL_GPL vmlinux 0xe464e8d0 virtqueue_enable_cb_prepare -EXPORT_SYMBOL_GPL vmlinux 0xe46bd167 badblocks_show -EXPORT_SYMBOL_GPL vmlinux 0xe475a8cb spi_mem_default_supports_op -EXPORT_SYMBOL_GPL vmlinux 0xe491e700 unregister_kprobes -EXPORT_SYMBOL_GPL vmlinux 0xe494e5a5 tcp_twsk_unique -EXPORT_SYMBOL_GPL vmlinux 0xe496e772 iomap_truncate_page -EXPORT_SYMBOL_GPL vmlinux 0xe4971ade tracing_alloc_snapshot -EXPORT_SYMBOL_GPL vmlinux 0xe4980b95 bio_end_io_acct_remapped -EXPORT_SYMBOL_GPL vmlinux 0xe4aaa88a da903x_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0xe4add080 do_unbind_con_driver -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 0xe4c31bdc usb_put_hcd -EXPORT_SYMBOL_GPL vmlinux 0xe4dc802f pm_clk_add_clk -EXPORT_SYMBOL_GPL vmlinux 0xe4dcf935 phy_set_mode_ext -EXPORT_SYMBOL_GPL vmlinux 0xe4e48b12 swphy_validate_state -EXPORT_SYMBOL_GPL vmlinux 0xe4fae502 debugfs_create_size_t -EXPORT_SYMBOL_GPL vmlinux 0xe51239f9 sdio_readl -EXPORT_SYMBOL_GPL vmlinux 0xe523dcfa iomap_writepages -EXPORT_SYMBOL_GPL vmlinux 0xe54094e5 fsnotify_add_mark -EXPORT_SYMBOL_GPL vmlinux 0xe5516728 k3_udma_glue_tx_get_irq -EXPORT_SYMBOL_GPL vmlinux 0xe5729959 serdev_device_alloc -EXPORT_SYMBOL_GPL vmlinux 0xe573e650 __traceiter_tcp_bad_csum -EXPORT_SYMBOL_GPL vmlinux 0xe57bdcce devm_power_supply_register_no_ws -EXPORT_SYMBOL_GPL vmlinux 0xe5874220 pm_genpd_remove_subdomain -EXPORT_SYMBOL_GPL vmlinux 0xe5883bd9 class_compat_unregister -EXPORT_SYMBOL_GPL vmlinux 0xe589125a mtk_mmsys_ddp_disconnect -EXPORT_SYMBOL_GPL vmlinux 0xe5a12485 securityfs_create_file -EXPORT_SYMBOL_GPL vmlinux 0xe5a3dc6b __devm_regmap_init_mmio_clk -EXPORT_SYMBOL_GPL vmlinux 0xe5a925d3 zynqmp_pm_init_finalize -EXPORT_SYMBOL_GPL vmlinux 0xe5af1336 register_net_sysctl -EXPORT_SYMBOL_GPL vmlinux 0xe5c02b64 freq_qos_remove_request -EXPORT_SYMBOL_GPL vmlinux 0xe5c0ef00 pci_pr3_present -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 0xe5ea9003 usb_hub_claim_port -EXPORT_SYMBOL_GPL vmlinux 0xe5eb40bc mtk_pinconf_bias_get_combo -EXPORT_SYMBOL_GPL vmlinux 0xe5f77e01 is_software_node -EXPORT_SYMBOL_GPL vmlinux 0xe600bc46 __traceiter_pelt_cfs_tp -EXPORT_SYMBOL_GPL vmlinux 0xe601573a xhci_update_hub_device -EXPORT_SYMBOL_GPL vmlinux 0xe60632a9 edac_queue_work -EXPORT_SYMBOL_GPL vmlinux 0xe6063907 skcipher_alloc_instance_simple -EXPORT_SYMBOL_GPL vmlinux 0xe60a5e8d pids_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0xe60afef6 scsi_host_unblock -EXPORT_SYMBOL_GPL vmlinux 0xe60cf36e platform_add_devices -EXPORT_SYMBOL_GPL vmlinux 0xe61109fe pci_store_saved_state -EXPORT_SYMBOL_GPL vmlinux 0xe628bb9f phy_fibre_port_array -EXPORT_SYMBOL_GPL vmlinux 0xe62a599d of_get_phy_mode -EXPORT_SYMBOL_GPL vmlinux 0xe630e76c acpi_set_modalias -EXPORT_SYMBOL_GPL vmlinux 0xe641885b fsverity_ioctl_enable -EXPORT_SYMBOL_GPL vmlinux 0xe64d8685 crypto_stats_decompress -EXPORT_SYMBOL_GPL vmlinux 0xe6533351 irq_domain_xlate_twocell -EXPORT_SYMBOL_GPL vmlinux 0xe6637716 bpf_event_output -EXPORT_SYMBOL_GPL vmlinux 0xe672c15c rio_get_comptag -EXPORT_SYMBOL_GPL vmlinux 0xe68d99a7 rtc_set_time -EXPORT_SYMBOL_GPL vmlinux 0xe68e3966 devlink_port_register -EXPORT_SYMBOL_GPL vmlinux 0xe6ae0813 spi_bus_lock -EXPORT_SYMBOL_GPL vmlinux 0xe6b6f625 sdio_memcpy_toio -EXPORT_SYMBOL_GPL vmlinux 0xe6c9a2fb tpm_tis_remove -EXPORT_SYMBOL_GPL vmlinux 0xe6cd1063 ehci_hub_control -EXPORT_SYMBOL_GPL vmlinux 0xe6e40502 rcu_get_gp_seq -EXPORT_SYMBOL_GPL vmlinux 0xe6e55ded dev_pm_put_subsys_data -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 0xe700d767 reset_control_bulk_deassert -EXPORT_SYMBOL_GPL vmlinux 0xe70b2b43 tty_wakeup -EXPORT_SYMBOL_GPL vmlinux 0xe7151356 fixed_phy_register_with_gpiod -EXPORT_SYMBOL_GPL vmlinux 0xe71bb6bc sfp_bus_find_fwnode -EXPORT_SYMBOL_GPL vmlinux 0xe71cc1a0 pingv6_ops -EXPORT_SYMBOL_GPL vmlinux 0xe733b592 tcp_get_info -EXPORT_SYMBOL_GPL vmlinux 0xe7362edc fsl_mc_bus_dpaiop_type -EXPORT_SYMBOL_GPL vmlinux 0xe73e07ef vp_modern_remove -EXPORT_SYMBOL_GPL vmlinux 0xe74fd671 rockchip_pcie_deinit_phys -EXPORT_SYMBOL_GPL vmlinux 0xe753b68d devlink_fmsg_arr_pair_nest_end -EXPORT_SYMBOL_GPL vmlinux 0xe75d1cc6 usb_alloc_streams -EXPORT_SYMBOL_GPL vmlinux 0xe75e6e82 dax_copy_from_iter -EXPORT_SYMBOL_GPL vmlinux 0xe769232e sprint_symbol_no_offset -EXPORT_SYMBOL_GPL vmlinux 0xe783e261 sysfs_emit -EXPORT_SYMBOL_GPL vmlinux 0xe7916c73 dev_pm_opp_get_suspend_opp_freq -EXPORT_SYMBOL_GPL vmlinux 0xe791df1f rcu_nocb_cpu_deoffload -EXPORT_SYMBOL_GPL vmlinux 0xe7936243 zynqmp_pm_clock_getstate -EXPORT_SYMBOL_GPL vmlinux 0xe7cd9c12 br_ip6_fragment -EXPORT_SYMBOL_GPL vmlinux 0xe7cdea1e gpiod_put -EXPORT_SYMBOL_GPL vmlinux 0xe7d6d2d4 filter_match_preds -EXPORT_SYMBOL_GPL vmlinux 0xe7dbaacf md_do_sync -EXPORT_SYMBOL_GPL vmlinux 0xe7e81dc5 fscrypt_ioctl_get_key_status -EXPORT_SYMBOL_GPL vmlinux 0xe7fe4254 init_dummy_netdev -EXPORT_SYMBOL_GPL vmlinux 0xe8130a95 pm_runtime_autosuspend_expiration -EXPORT_SYMBOL_GPL vmlinux 0xe818b32b ata_bmdma_interrupt -EXPORT_SYMBOL_GPL vmlinux 0xe8194d21 usb_role_switch_get -EXPORT_SYMBOL_GPL vmlinux 0xe8199ff8 sbitmap_del_wait_queue -EXPORT_SYMBOL_GPL vmlinux 0xe81dd7b5 regulator_set_mode -EXPORT_SYMBOL_GPL vmlinux 0xe83877ee anon_transport_class_register -EXPORT_SYMBOL_GPL vmlinux 0xe83b03ae PageHuge -EXPORT_SYMBOL_GPL vmlinux 0xe83b5f55 mdiobus_modify -EXPORT_SYMBOL_GPL vmlinux 0xe83c902e device_register -EXPORT_SYMBOL_GPL vmlinux 0xe83f4298 devm_regmap_field_alloc -EXPORT_SYMBOL_GPL vmlinux 0xe842644d sk_msg_free_nocharge -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 0xe8605f9b irq_domain_pop_irq -EXPORT_SYMBOL_GPL vmlinux 0xe862c4b7 dpm_suspend_start -EXPORT_SYMBOL_GPL vmlinux 0xe86aa41d shash_register_instance -EXPORT_SYMBOL_GPL vmlinux 0xe87021b1 bio_iov_iter_get_pages -EXPORT_SYMBOL_GPL vmlinux 0xe8738645 serdev_device_set_flow_control -EXPORT_SYMBOL_GPL vmlinux 0xe8891d55 devm_fwnode_gpiod_get_index -EXPORT_SYMBOL_GPL vmlinux 0xe8a58e0b mptcp_token_get_sock -EXPORT_SYMBOL_GPL vmlinux 0xe8aa3da8 thermal_zone_get_slope -EXPORT_SYMBOL_GPL vmlinux 0xe8c0065d memory_group_register_static -EXPORT_SYMBOL_GPL vmlinux 0xe8c63beb acpi_dev_clear_dependencies -EXPORT_SYMBOL_GPL vmlinux 0xe8d52cb4 nvdimm_volatile_region_create -EXPORT_SYMBOL_GPL vmlinux 0xe90c7659 k3_udma_glue_rx_dma_to_cppi5_addr -EXPORT_SYMBOL_GPL vmlinux 0xe90cf809 sock_prot_inuse_add -EXPORT_SYMBOL_GPL vmlinux 0xe90e71bb devm_get_free_pages -EXPORT_SYMBOL_GPL vmlinux 0xe91055f3 posix_acl_default_xattr_handler -EXPORT_SYMBOL_GPL vmlinux 0xe911d853 usb_store_new_id -EXPORT_SYMBOL_GPL vmlinux 0xe911df29 eventfd_ctx_do_read -EXPORT_SYMBOL_GPL vmlinux 0xe9167d52 phy_restart_aneg -EXPORT_SYMBOL_GPL vmlinux 0xe929f31b trace_output_call -EXPORT_SYMBOL_GPL vmlinux 0xe932478b of_dma_controller_register -EXPORT_SYMBOL_GPL vmlinux 0xe933a517 synth_event_create -EXPORT_SYMBOL_GPL vmlinux 0xe93c1845 of_phy_simple_xlate -EXPORT_SYMBOL_GPL vmlinux 0xe93e49c3 devres_free -EXPORT_SYMBOL_GPL vmlinux 0xe94563ca device_reprobe -EXPORT_SYMBOL_GPL vmlinux 0xe94f0eb3 rio_request_mport_dma -EXPORT_SYMBOL_GPL vmlinux 0xe9548cf6 pinctrl_pm_select_idle_state -EXPORT_SYMBOL_GPL vmlinux 0xe956a75c pl320_ipc_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0xe96208fe dma_get_required_mask -EXPORT_SYMBOL_GPL vmlinux 0xe963b479 of_clk_add_provider -EXPORT_SYMBOL_GPL vmlinux 0xe967119c cros_ec_check_features -EXPORT_SYMBOL_GPL vmlinux 0xe972544f __page_file_mapping -EXPORT_SYMBOL_GPL vmlinux 0xe9824286 cgroup_get_from_id -EXPORT_SYMBOL_GPL vmlinux 0xe98f55f2 arm_smccc_get_version -EXPORT_SYMBOL_GPL vmlinux 0xe99ba224 genphy_c45_loopback -EXPORT_SYMBOL_GPL vmlinux 0xe9aaaecd dev_pm_opp_of_add_table -EXPORT_SYMBOL_GPL vmlinux 0xe9bd8713 devres_remove_group -EXPORT_SYMBOL_GPL vmlinux 0xe9d1b7cf irq_to_pcap -EXPORT_SYMBOL_GPL vmlinux 0xe9d63a0d k3_udma_glue_enable_tx_chn -EXPORT_SYMBOL_GPL vmlinux 0xe9f65475 __bio_try_merge_page -EXPORT_SYMBOL_GPL vmlinux 0xe9f819f0 virtqueue_get_buf -EXPORT_SYMBOL_GPL vmlinux 0xe9f91765 kthread_unpark -EXPORT_SYMBOL_GPL vmlinux 0xea018bbb mpi_test_bit -EXPORT_SYMBOL_GPL vmlinux 0xea0844d6 security_kernel_post_read_file -EXPORT_SYMBOL_GPL vmlinux 0xea124bd1 gcd -EXPORT_SYMBOL_GPL vmlinux 0xea1fc96e usb_interrupt_msg -EXPORT_SYMBOL_GPL vmlinux 0xea38036f ring_buffer_entries -EXPORT_SYMBOL_GPL vmlinux 0xea3a23f3 public_key_free -EXPORT_SYMBOL_GPL vmlinux 0xea458bab bpf_map_put -EXPORT_SYMBOL_GPL vmlinux 0xea50dad3 ahci_ignore_sss -EXPORT_SYMBOL_GPL vmlinux 0xea5c4464 task_user_regset_view -EXPORT_SYMBOL_GPL vmlinux 0xea67dcfa tpmm_chip_alloc -EXPORT_SYMBOL_GPL vmlinux 0xea775a54 dax_finish_sync_fault -EXPORT_SYMBOL_GPL vmlinux 0xea8ff7a9 mtk_hw_get_value -EXPORT_SYMBOL_GPL vmlinux 0xea9a91ab gpiochip_generic_config -EXPORT_SYMBOL_GPL vmlinux 0xea9ad5ac devlink_dpipe_entry_ctx_append -EXPORT_SYMBOL_GPL vmlinux 0xeaa6c32f dev_pm_opp_of_add_table_indexed -EXPORT_SYMBOL_GPL vmlinux 0xeaa8c7ad irq_domain_translate_twocell -EXPORT_SYMBOL_GPL vmlinux 0xeabcdd54 crypto_hash_alg_has_setkey -EXPORT_SYMBOL_GPL vmlinux 0xeac4d1e1 acpi_find_child_device -EXPORT_SYMBOL_GPL vmlinux 0xeac53931 tegra_xusb_padctl_legacy_probe -EXPORT_SYMBOL_GPL vmlinux 0xead035ee __tracepoint_fib6_table_lookup -EXPORT_SYMBOL_GPL vmlinux 0xead056b5 pci_set_cacheline_size -EXPORT_SYMBOL_GPL vmlinux 0xead130d8 raw_unhash_sk -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 0xeadf4687 fuse_abort_conn -EXPORT_SYMBOL_GPL vmlinux 0xeae0f496 clean_acked_data_flush -EXPORT_SYMBOL_GPL vmlinux 0xeae7d83d ata_msleep -EXPORT_SYMBOL_GPL vmlinux 0xeaf0a57c look_up_OID -EXPORT_SYMBOL_GPL vmlinux 0xeaf79c81 debugfs_attr_write_signed -EXPORT_SYMBOL_GPL vmlinux 0xeaf8469d hv_do_fast_hypercall8 -EXPORT_SYMBOL_GPL vmlinux 0xeafb02fa crypto_register_ahash -EXPORT_SYMBOL_GPL vmlinux 0xeb1004ea da903x_reads -EXPORT_SYMBOL_GPL vmlinux 0xeb2d4f89 of_pwm_xlate_with_flags -EXPORT_SYMBOL_GPL vmlinux 0xeb3c67cd raw_seq_next -EXPORT_SYMBOL_GPL vmlinux 0xeb4221e4 trace_clock -EXPORT_SYMBOL_GPL vmlinux 0xeb4624bf rq_flush_dcache_pages -EXPORT_SYMBOL_GPL vmlinux 0xeb49e31a unmap_mapping_pages -EXPORT_SYMBOL_GPL vmlinux 0xeb58b15c fsl_mc_bus_dpmcp_type -EXPORT_SYMBOL_GPL vmlinux 0xeb5e36d4 spi_take_timestamp_pre -EXPORT_SYMBOL_GPL vmlinux 0xeb6596f0 fwnode_property_read_u64_array -EXPORT_SYMBOL_GPL vmlinux 0xeb78b1ed unregister_kprobe -EXPORT_SYMBOL_GPL vmlinux 0xeb8b160a meson_aoclkc_probe -EXPORT_SYMBOL_GPL vmlinux 0xeb8bd333 pstore_register -EXPORT_SYMBOL_GPL vmlinux 0xeb9a6e69 __kernel_write -EXPORT_SYMBOL_GPL vmlinux 0xeba529a0 pci_user_read_config_dword -EXPORT_SYMBOL_GPL vmlinux 0xebacafe5 cpufreq_register_driver -EXPORT_SYMBOL_GPL vmlinux 0xebc2af3a pciserial_init_ports -EXPORT_SYMBOL_GPL vmlinux 0xebc81cbe lwtunnel_get_encap_size -EXPORT_SYMBOL_GPL vmlinux 0xebc84d8d rockchip_pcie_enable_clocks -EXPORT_SYMBOL_GPL vmlinux 0xebc9a09f lock_system_sleep -EXPORT_SYMBOL_GPL vmlinux 0xebce2ec2 blk_mq_alloc_sq_tag_set -EXPORT_SYMBOL_GPL vmlinux 0xebd4cc11 mctrl_gpio_enable_ms -EXPORT_SYMBOL_GPL vmlinux 0xebdc8f49 dev_pm_enable_wake_irq -EXPORT_SYMBOL_GPL vmlinux 0xebe25d8a ata_sff_qc_fill_rtf -EXPORT_SYMBOL_GPL vmlinux 0xebee85f7 do_tcp_sendpages -EXPORT_SYMBOL_GPL vmlinux 0xec0de1e4 srcu_barrier -EXPORT_SYMBOL_GPL vmlinux 0xec1122c8 platform_device_del -EXPORT_SYMBOL_GPL vmlinux 0xec3a28ce iomap_ioend_try_merge -EXPORT_SYMBOL_GPL vmlinux 0xec434577 device_create_file -EXPORT_SYMBOL_GPL vmlinux 0xec519607 clk_hw_unregister_fixed_factor -EXPORT_SYMBOL_GPL vmlinux 0xec538038 of_irq_to_resource_table -EXPORT_SYMBOL_GPL vmlinux 0xec5668f6 dax_zero_page_range -EXPORT_SYMBOL_GPL vmlinux 0xec5ad73b trace_seq_bitmask -EXPORT_SYMBOL_GPL vmlinux 0xec66d688 devlink_flash_update_timeout_notify -EXPORT_SYMBOL_GPL vmlinux 0xec67a9bc sdio_writew -EXPORT_SYMBOL_GPL vmlinux 0xec68fa1c sdio_readw -EXPORT_SYMBOL_GPL vmlinux 0xec76bc5f gnttab_free_pages -EXPORT_SYMBOL_GPL vmlinux 0xec774acb cpufreq_frequency_table_verify -EXPORT_SYMBOL_GPL vmlinux 0xec8083b5 genphy_c45_aneg_done -EXPORT_SYMBOL_GPL vmlinux 0xec90c1c5 i2c_mux_add_adapter -EXPORT_SYMBOL_GPL vmlinux 0xec932e7c devm_init_badblocks -EXPORT_SYMBOL_GPL vmlinux 0xeca737f8 is_virtio_device -EXPORT_SYMBOL_GPL vmlinux 0xeca8e8f6 rio_mport_get_physefb -EXPORT_SYMBOL_GPL vmlinux 0xecb671fc tegra210_sata_pll_hw_sequence_start -EXPORT_SYMBOL_GPL vmlinux 0xecb71f63 scsi_host_block -EXPORT_SYMBOL_GPL vmlinux 0xecb950b0 edac_device_del_device -EXPORT_SYMBOL_GPL vmlinux 0xecba68e3 gnttab_batch_map -EXPORT_SYMBOL_GPL vmlinux 0xecc78957 alloc_skb_for_msg -EXPORT_SYMBOL_GPL vmlinux 0xecd4c6bd fwnode_connection_find_match -EXPORT_SYMBOL_GPL vmlinux 0xecd8f23d xenbus_read -EXPORT_SYMBOL_GPL vmlinux 0xecdcbe90 vp_modern_set_status -EXPORT_SYMBOL_GPL vmlinux 0xecfd902a bpf_prog_put -EXPORT_SYMBOL_GPL vmlinux 0xed006b34 __irq_domain_alloc_fwnode -EXPORT_SYMBOL_GPL vmlinux 0xed0b11d7 ata_cable_sata -EXPORT_SYMBOL_GPL vmlinux 0xed1cde26 sdio_memcpy_fromio -EXPORT_SYMBOL_GPL vmlinux 0xed21343f uart_console_write -EXPORT_SYMBOL_GPL vmlinux 0xed244262 pci_epc_remove_epf -EXPORT_SYMBOL_GPL vmlinux 0xed30c0d0 gpiod_set_raw_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0xed39b7b8 parse_OID -EXPORT_SYMBOL_GPL vmlinux 0xed3f0434 get_net_ns -EXPORT_SYMBOL_GPL vmlinux 0xed3fb65e devres_open_group -EXPORT_SYMBOL_GPL vmlinux 0xed469504 sbitmap_queue_show -EXPORT_SYMBOL_GPL vmlinux 0xed4c3391 mtk_mutex_get -EXPORT_SYMBOL_GPL vmlinux 0xed6b47c6 clk_hw_set_rate_range -EXPORT_SYMBOL_GPL vmlinux 0xed764bbd i2c_new_dummy_device -EXPORT_SYMBOL_GPL vmlinux 0xed7a03d0 ata_slave_link_init -EXPORT_SYMBOL_GPL vmlinux 0xed7c7b91 raw_v6_hashinfo -EXPORT_SYMBOL_GPL vmlinux 0xed812a4d vga_default_device -EXPORT_SYMBOL_GPL vmlinux 0xed827eae debugfs_lookup -EXPORT_SYMBOL_GPL vmlinux 0xed863fad synth_event_add_val -EXPORT_SYMBOL_GPL vmlinux 0xed8ee9cb nvmem_device_get -EXPORT_SYMBOL_GPL vmlinux 0xed92df84 tpm_default_chip -EXPORT_SYMBOL_GPL vmlinux 0xedaf550d dpm_for_each_dev -EXPORT_SYMBOL_GPL vmlinux 0xedc18501 usb_hcd_unmap_urb_setup_for_dma -EXPORT_SYMBOL_GPL vmlinux 0xedc21e62 regulator_set_soft_start_regmap -EXPORT_SYMBOL_GPL vmlinux 0xedd092d5 power_supply_notifier -EXPORT_SYMBOL_GPL vmlinux 0xedd1d58d fuse_do_open -EXPORT_SYMBOL_GPL vmlinux 0xedd8bf82 pci_slots_kset -EXPORT_SYMBOL_GPL vmlinux 0xede9a09a btree_lookup -EXPORT_SYMBOL_GPL vmlinux 0xee00e808 irq_get_irq_data -EXPORT_SYMBOL_GPL vmlinux 0xee04d1ff ima_inode_hash -EXPORT_SYMBOL_GPL vmlinux 0xee0a1e2f security_path_rmdir -EXPORT_SYMBOL_GPL vmlinux 0xee1ab6c5 usb_hcd_pci_probe -EXPORT_SYMBOL_GPL vmlinux 0xee1f5126 __tracepoint_neigh_timer_handler -EXPORT_SYMBOL_GPL vmlinux 0xee250850 fib6_get_table -EXPORT_SYMBOL_GPL vmlinux 0xee2f36ea bus_rescan_devices -EXPORT_SYMBOL_GPL vmlinux 0xee34aec3 ata_port_freeze -EXPORT_SYMBOL_GPL vmlinux 0xee38ef57 register_switchdev_blocking_notifier -EXPORT_SYMBOL_GPL vmlinux 0xee3e0d00 cpuidle_register -EXPORT_SYMBOL_GPL vmlinux 0xee518148 kmsg_dump_get_buffer -EXPORT_SYMBOL_GPL vmlinux 0xee68940a generic_fh_to_dentry -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 0xee713e30 spi_unregister_controller -EXPORT_SYMBOL_GPL vmlinux 0xee76b04b sdio_disable_func -EXPORT_SYMBOL_GPL vmlinux 0xee902bd9 rio_unmap_inb_region -EXPORT_SYMBOL_GPL vmlinux 0xee95dadc blkg_prfill_rwstat -EXPORT_SYMBOL_GPL vmlinux 0xeeba237c do_splice_to -EXPORT_SYMBOL_GPL vmlinux 0xeebad1ef pcie_reset_flr -EXPORT_SYMBOL_GPL vmlinux 0xeece70fa phy_package_join -EXPORT_SYMBOL_GPL vmlinux 0xeed0cea4 kernel_read_file_from_fd -EXPORT_SYMBOL_GPL vmlinux 0xeed37847 sbitmap_bitmap_show -EXPORT_SYMBOL_GPL vmlinux 0xeedc0763 acpi_dev_gpio_irq_get_by -EXPORT_SYMBOL_GPL vmlinux 0xeedd987e phy_10gbit_features_array -EXPORT_SYMBOL_GPL vmlinux 0xeedfcec3 task_work_run -EXPORT_SYMBOL_GPL vmlinux 0xeef5cba3 trace_array_put -EXPORT_SYMBOL_GPL vmlinux 0xeef5e663 sysfs_break_active_protection -EXPORT_SYMBOL_GPL vmlinux 0xef0e9be4 bgmac_phy_connect_direct -EXPORT_SYMBOL_GPL vmlinux 0xef10179a rio_request_inb_mbox -EXPORT_SYMBOL_GPL vmlinux 0xef1f6e23 apei_resources_request -EXPORT_SYMBOL_GPL vmlinux 0xef22918a crypto_register_skciphers -EXPORT_SYMBOL_GPL vmlinux 0xef29fcdd clk_bulk_put -EXPORT_SYMBOL_GPL vmlinux 0xef3190ea kernfs_find_and_get_ns -EXPORT_SYMBOL_GPL vmlinux 0xef34bf3e hrtimer_active -EXPORT_SYMBOL_GPL vmlinux 0xef457ad5 __traceiter_br_fdb_update -EXPORT_SYMBOL_GPL vmlinux 0xef464c28 getboottime64 -EXPORT_SYMBOL_GPL vmlinux 0xef478091 nvmem_cell_read_u16 -EXPORT_SYMBOL_GPL vmlinux 0xef554b4c pci_epc_destroy -EXPORT_SYMBOL_GPL vmlinux 0xef560634 crypto_comp_compress -EXPORT_SYMBOL_GPL vmlinux 0xef5db66d regulator_get_init_drvdata -EXPORT_SYMBOL_GPL vmlinux 0xef62ea12 usb_set_configuration -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 0xef8486c9 bgmac_enet_remove -EXPORT_SYMBOL_GPL vmlinux 0xef921426 dev_pm_opp_get_opp_table -EXPORT_SYMBOL_GPL vmlinux 0xef926e04 class_compat_remove_link -EXPORT_SYMBOL_GPL vmlinux 0xef92ef33 btree_last -EXPORT_SYMBOL_GPL vmlinux 0xef95adca sdio_readsb -EXPORT_SYMBOL_GPL vmlinux 0xefa2c27d register_tracepoint_module_notifier -EXPORT_SYMBOL_GPL vmlinux 0xefad00e5 crypto_register_shashes -EXPORT_SYMBOL_GPL vmlinux 0xefaf6648 alarmtimer_get_rtcdev -EXPORT_SYMBOL_GPL vmlinux 0xefb07d99 devm_hwmon_device_register_with_info -EXPORT_SYMBOL_GPL vmlinux 0xefce74cf dev_pm_qos_expose_latency_tolerance -EXPORT_SYMBOL_GPL vmlinux 0xefd03787 dma_buf_vmap -EXPORT_SYMBOL_GPL vmlinux 0xefeafcf1 edac_has_mcs -EXPORT_SYMBOL_GPL vmlinux 0xeff1f22f dw_pcie_find_capability -EXPORT_SYMBOL_GPL vmlinux 0xefff0172 of_cpufreq_cooling_register -EXPORT_SYMBOL_GPL vmlinux 0xefffc596 sysfs_remove_link -EXPORT_SYMBOL_GPL vmlinux 0xf007fbfb device_create -EXPORT_SYMBOL_GPL vmlinux 0xf00fd1b9 tty_get_pgrp -EXPORT_SYMBOL_GPL vmlinux 0xf02dc677 devm_spi_mem_dirmap_create -EXPORT_SYMBOL_GPL vmlinux 0xf0355298 umd_load_blob -EXPORT_SYMBOL_GPL vmlinux 0xf0368f4d component_bind_all -EXPORT_SYMBOL_GPL vmlinux 0xf037cd0f rio_mport_send_doorbell -EXPORT_SYMBOL_GPL vmlinux 0xf03b0410 ftrace_set_filter -EXPORT_SYMBOL_GPL vmlinux 0xf04429b4 acpi_bus_get_status_handle -EXPORT_SYMBOL_GPL vmlinux 0xf0456f14 fuse_sync_release -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 0xf086557b pci_find_next_ext_capability -EXPORT_SYMBOL_GPL vmlinux 0xf08bfeec crypto_stats_kpp_compute_shared_secret -EXPORT_SYMBOL_GPL vmlinux 0xf0910075 sfp_bus_del_upstream -EXPORT_SYMBOL_GPL vmlinux 0xf09c54ee scsi_check_sense -EXPORT_SYMBOL_GPL vmlinux 0xf0a0c69d init_iova_domain -EXPORT_SYMBOL_GPL vmlinux 0xf0b65ca1 irq_find_matching_fwspec -EXPORT_SYMBOL_GPL vmlinux 0xf0ca326b od_register_powersave_bias_handler -EXPORT_SYMBOL_GPL vmlinux 0xf0cc5f24 dm_post_suspending -EXPORT_SYMBOL_GPL vmlinux 0xf0d478c7 list_lru_add -EXPORT_SYMBOL_GPL vmlinux 0xf0e2e453 ima_file_check -EXPORT_SYMBOL_GPL vmlinux 0xf0e87b84 dev_pm_opp_free_cpufreq_table -EXPORT_SYMBOL_GPL vmlinux 0xf0ee5695 pci_probe_reset_bus -EXPORT_SYMBOL_GPL vmlinux 0xf0fe01f5 bpf_prog_add -EXPORT_SYMBOL_GPL vmlinux 0xf10a1757 device_link_add -EXPORT_SYMBOL_GPL vmlinux 0xf10b2ca1 udp_destruct_common -EXPORT_SYMBOL_GPL vmlinux 0xf116a0ac led_put -EXPORT_SYMBOL_GPL vmlinux 0xf12180fd imx_1443x_dram_pll -EXPORT_SYMBOL_GPL vmlinux 0xf12688c2 __fscrypt_prepare_setattr -EXPORT_SYMBOL_GPL vmlinux 0xf1326760 ip6_datagram_release_cb -EXPORT_SYMBOL_GPL vmlinux 0xf136b582 usb_wakeup_enabled_descendants -EXPORT_SYMBOL_GPL vmlinux 0xf1502561 __ata_ehi_push_desc -EXPORT_SYMBOL_GPL vmlinux 0xf159c045 wakeup_source_create -EXPORT_SYMBOL_GPL vmlinux 0xf15a72d6 usb_hcd_map_urb_for_dma -EXPORT_SYMBOL_GPL vmlinux 0xf184d189 kernel_power_off -EXPORT_SYMBOL_GPL vmlinux 0xf188a662 rhashtable_walk_exit -EXPORT_SYMBOL_GPL vmlinux 0xf1acc281 dprc_set_obj_irq -EXPORT_SYMBOL_GPL vmlinux 0xf1b1e338 usb_hcd_amd_remote_wakeup_quirk -EXPORT_SYMBOL_GPL vmlinux 0xf1bb5880 inverse_translate -EXPORT_SYMBOL_GPL vmlinux 0xf1d43c27 efivar_entry_get -EXPORT_SYMBOL_GPL vmlinux 0xf1e5ab22 sysfs_rename_link_ns -EXPORT_SYMBOL_GPL vmlinux 0xf1f4f644 mptcp_get_reset_option -EXPORT_SYMBOL_GPL vmlinux 0xf1f7465b security_path_chown -EXPORT_SYMBOL_GPL vmlinux 0xf20950be platform_bus_type -EXPORT_SYMBOL_GPL vmlinux 0xf213e7af wm831x_reg_read -EXPORT_SYMBOL_GPL vmlinux 0xf2157b5c skb_complete_wifi_ack -EXPORT_SYMBOL_GPL vmlinux 0xf21e1f9b disable_percpu_irq -EXPORT_SYMBOL_GPL vmlinux 0xf23f6bed rtc_update_irq_enable -EXPORT_SYMBOL_GPL vmlinux 0xf241e46f topology_set_thermal_pressure -EXPORT_SYMBOL_GPL vmlinux 0xf2444e5f proc_mkdir_data -EXPORT_SYMBOL_GPL vmlinux 0xf2569591 __pci_epf_register_driver -EXPORT_SYMBOL_GPL vmlinux 0xf25e5971 device_wakeup_disable -EXPORT_SYMBOL_GPL vmlinux 0xf27d0a7b gnttab_grant_foreign_access_ref -EXPORT_SYMBOL_GPL vmlinux 0xf290b274 devm_mbox_controller_unregister -EXPORT_SYMBOL_GPL vmlinux 0xf295de58 kobject_uevent -EXPORT_SYMBOL_GPL vmlinux 0xf2967796 ring_buffer_record_on -EXPORT_SYMBOL_GPL vmlinux 0xf298a746 xfrm_audit_state_notfound -EXPORT_SYMBOL_GPL vmlinux 0xf299f0bf ahci_set_em_messages -EXPORT_SYMBOL_GPL vmlinux 0xf2a4da40 dpcon_set_notification -EXPORT_SYMBOL_GPL vmlinux 0xf2a75f32 elv_unregister -EXPORT_SYMBOL_GPL vmlinux 0xf2a883d8 acpiphp_register_attention -EXPORT_SYMBOL_GPL vmlinux 0xf2b33cb7 memory_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0xf2c1a7ea perf_event_read_value -EXPORT_SYMBOL_GPL vmlinux 0xf2da9641 devm_kmemdup -EXPORT_SYMBOL_GPL vmlinux 0xf2ef6251 __traceiter_pelt_rt_tp -EXPORT_SYMBOL_GPL vmlinux 0xf2f23dff clk_hw_set_parent -EXPORT_SYMBOL_GPL vmlinux 0xf2fb61bd vprintk_default -EXPORT_SYMBOL_GPL vmlinux 0xf302a9ff edac_device_add_device -EXPORT_SYMBOL_GPL vmlinux 0xf30700bf ping_seq_start -EXPORT_SYMBOL_GPL vmlinux 0xf30a5502 cpufreq_enable_boost_support -EXPORT_SYMBOL_GPL vmlinux 0xf310ab73 ata_sff_check_status -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 0xf3253849 tpm1_do_selftest -EXPORT_SYMBOL_GPL vmlinux 0xf32bdc5d unregister_xenstore_notifier -EXPORT_SYMBOL_GPL vmlinux 0xf32c8d3e blkcg_root_css -EXPORT_SYMBOL_GPL vmlinux 0xf331236f btree_geo32 -EXPORT_SYMBOL_GPL vmlinux 0xf3356be0 amba_device_add -EXPORT_SYMBOL_GPL vmlinux 0xf33a127d ata_ehi_clear_desc -EXPORT_SYMBOL_GPL vmlinux 0xf349b0e5 vp_modern_config_vector -EXPORT_SYMBOL_GPL vmlinux 0xf352023f memory_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0xf353967a ata_bmdma32_port_ops -EXPORT_SYMBOL_GPL vmlinux 0xf3564f1b devfreq_event_get_edev_count -EXPORT_SYMBOL_GPL vmlinux 0xf36fae75 sysfs_create_group -EXPORT_SYMBOL_GPL vmlinux 0xf3767f3f xenbus_dev_groups -EXPORT_SYMBOL_GPL vmlinux 0xf3797506 mpi_ec_deinit -EXPORT_SYMBOL_GPL vmlinux 0xf3808cb1 get_state_synchronize_rcu -EXPORT_SYMBOL_GPL vmlinux 0xf382e31d make_device_exclusive_range -EXPORT_SYMBOL_GPL vmlinux 0xf386bbb4 housekeeping_cpumask -EXPORT_SYMBOL_GPL vmlinux 0xf3910247 devm_platform_ioremap_resource -EXPORT_SYMBOL_GPL vmlinux 0xf39f5f04 get_dev_pagemap -EXPORT_SYMBOL_GPL vmlinux 0xf3b451ca kdb_poll_funcs -EXPORT_SYMBOL_GPL vmlinux 0xf3b95d79 btree_remove -EXPORT_SYMBOL_GPL vmlinux 0xf3c9c05c devm_release_action -EXPORT_SYMBOL_GPL vmlinux 0xf3e3925d rdev_get_id -EXPORT_SYMBOL_GPL vmlinux 0xf3e3eb68 udp_tunnel_nic_ops -EXPORT_SYMBOL_GPL vmlinux 0xf3e67452 serial8250_em485_destroy -EXPORT_SYMBOL_GPL vmlinux 0xf3ec4925 dev_pm_opp_get_voltage -EXPORT_SYMBOL_GPL vmlinux 0xf3fa2abd __clk_mux_determine_rate_closest -EXPORT_SYMBOL_GPL vmlinux 0xf40cb182 crypto_remove_spawns -EXPORT_SYMBOL_GPL vmlinux 0xf40e62b4 of_usb_get_dr_mode_by_phy -EXPORT_SYMBOL_GPL vmlinux 0xf4196b2f tcp_enter_memory_pressure -EXPORT_SYMBOL_GPL vmlinux 0xf4237056 kthread_cancel_delayed_work_sync -EXPORT_SYMBOL_GPL vmlinux 0xf4267830 regulator_list_voltage -EXPORT_SYMBOL_GPL vmlinux 0xf429d7ee gpiod_get_raw_array_value -EXPORT_SYMBOL_GPL vmlinux 0xf436c3a2 __traceiter_xdp_bulk_tx -EXPORT_SYMBOL_GPL vmlinux 0xf43879e2 badblocks_init -EXPORT_SYMBOL_GPL vmlinux 0xf4422bf3 ata_sas_port_stop -EXPORT_SYMBOL_GPL vmlinux 0xf449d108 wakeup_source_destroy -EXPORT_SYMBOL_GPL vmlinux 0xf4666f79 irq_chip_set_affinity_parent -EXPORT_SYMBOL_GPL vmlinux 0xf4689d50 linkmode_set_pause -EXPORT_SYMBOL_GPL vmlinux 0xf47654df irq_check_status_bit -EXPORT_SYMBOL_GPL vmlinux 0xf485a724 dma_wait_for_async_tx -EXPORT_SYMBOL_GPL vmlinux 0xf48848d5 iomap_file_unshare -EXPORT_SYMBOL_GPL vmlinux 0xf491d1aa device_create_bin_file -EXPORT_SYMBOL_GPL vmlinux 0xf498bdb4 __devm_regmap_init -EXPORT_SYMBOL_GPL vmlinux 0xf4a00349 __tracepoint_block_rq_insert -EXPORT_SYMBOL_GPL vmlinux 0xf4aa2780 pinctrl_dev_get_name -EXPORT_SYMBOL_GPL vmlinux 0xf4af35c2 rcu_gp_is_normal -EXPORT_SYMBOL_GPL vmlinux 0xf4b34071 iommu_detach_group -EXPORT_SYMBOL_GPL vmlinux 0xf4c497cc __traceiter_neigh_cleanup_and_release -EXPORT_SYMBOL_GPL vmlinux 0xf4c52e06 device_store_int -EXPORT_SYMBOL_GPL vmlinux 0xf4cd9f8f reset_control_bulk_release -EXPORT_SYMBOL_GPL vmlinux 0xf4d1929f sysfs_remove_mount_point -EXPORT_SYMBOL_GPL vmlinux 0xf4dc2999 d_walk -EXPORT_SYMBOL_GPL vmlinux 0xf4e23d99 pci_enable_rom -EXPORT_SYMBOL_GPL vmlinux 0xf4e35e28 sbitmap_prepare_to_wait -EXPORT_SYMBOL_GPL vmlinux 0xf4ef080f devlink_resource_size_get -EXPORT_SYMBOL_GPL vmlinux 0xf4f3983b devm_usb_get_phy_by_node -EXPORT_SYMBOL_GPL vmlinux 0xf4fd5736 mmc_cmdq_disable -EXPORT_SYMBOL_GPL vmlinux 0xf504dcc4 of_pinctrl_get -EXPORT_SYMBOL_GPL vmlinux 0xf509ff61 crypto_ahash_finup -EXPORT_SYMBOL_GPL vmlinux 0xf51ad0be usb_get_maximum_ssp_rate -EXPORT_SYMBOL_GPL vmlinux 0xf5255447 perf_tp_event -EXPORT_SYMBOL_GPL vmlinux 0xf5429dc4 xenbus_frontend_closed -EXPORT_SYMBOL_GPL vmlinux 0xf5488c27 hvc_poll -EXPORT_SYMBOL_GPL vmlinux 0xf548988d put_iova_domain -EXPORT_SYMBOL_GPL vmlinux 0xf54aa6bb msg_zerocopy_realloc -EXPORT_SYMBOL_GPL vmlinux 0xf54bd49b lcm -EXPORT_SYMBOL_GPL vmlinux 0xf54c1b5d of_mm_gpiochip_remove -EXPORT_SYMBOL_GPL vmlinux 0xf55065db __class_register -EXPORT_SYMBOL_GPL vmlinux 0xf553318d cpuidle_pause_and_lock -EXPORT_SYMBOL_GPL vmlinux 0xf5576b16 dax_attribute_group -EXPORT_SYMBOL_GPL vmlinux 0xf56a3a20 regulator_register_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0xf56ad214 led_sysfs_disable -EXPORT_SYMBOL_GPL vmlinux 0xf56c9932 of_clk_parent_fill -EXPORT_SYMBOL_GPL vmlinux 0xf58fc493 iomap_dio_rw -EXPORT_SYMBOL_GPL vmlinux 0xf59308a2 pci_sriov_get_totalvfs -EXPORT_SYMBOL_GPL vmlinux 0xf59a1b2a i2c_bus_type -EXPORT_SYMBOL_GPL vmlinux 0xf5a22d64 ata_pci_device_resume -EXPORT_SYMBOL_GPL vmlinux 0xf5a3ba99 linear_range_values_in_range -EXPORT_SYMBOL_GPL vmlinux 0xf5a691cd invalidate_bh_lrus -EXPORT_SYMBOL_GPL vmlinux 0xf5a844f5 devlink_port_attrs_set -EXPORT_SYMBOL_GPL vmlinux 0xf5b58c94 da903x_write -EXPORT_SYMBOL_GPL vmlinux 0xf5cfcf7c i2c_recover_bus -EXPORT_SYMBOL_GPL vmlinux 0xf5dae979 irq_domain_associate -EXPORT_SYMBOL_GPL vmlinux 0xf5de692b powercap_register_zone -EXPORT_SYMBOL_GPL vmlinux 0xf5e1cf14 extcon_get_state -EXPORT_SYMBOL_GPL vmlinux 0xf5f1b3ad udp4_lib_lookup -EXPORT_SYMBOL_GPL vmlinux 0xf5f27c9c __pci_epc_create -EXPORT_SYMBOL_GPL vmlinux 0xf5f370e0 async_schedule_node -EXPORT_SYMBOL_GPL vmlinux 0xf5f78053 inet6_csk_addr2sockaddr -EXPORT_SYMBOL_GPL vmlinux 0xf5fa87c4 regulator_bulk_unregister_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0xf6058e4f devm_device_remove_group -EXPORT_SYMBOL_GPL vmlinux 0xf605ad88 spi_mem_exec_op -EXPORT_SYMBOL_GPL vmlinux 0xf60f44bb devlink_sb_unregister -EXPORT_SYMBOL_GPL vmlinux 0xf612a9b7 irq_domain_create_simple -EXPORT_SYMBOL_GPL vmlinux 0xf6193df1 fat_get_dotdot_entry -EXPORT_SYMBOL_GPL vmlinux 0xf61b1c96 fuse_dax_cancel_work -EXPORT_SYMBOL_GPL vmlinux 0xf61c6b74 hv_do_hypercall -EXPORT_SYMBOL_GPL vmlinux 0xf62dd0b2 imx_pinconf_get_scu -EXPORT_SYMBOL_GPL vmlinux 0xf64aaa25 alarm_init -EXPORT_SYMBOL_GPL vmlinux 0xf64ef955 adp5520_set_bits -EXPORT_SYMBOL_GPL vmlinux 0xf66070c8 sock_diag_destroy -EXPORT_SYMBOL_GPL vmlinux 0xf663ee2f pcap_adc_sync -EXPORT_SYMBOL_GPL vmlinux 0xf66b4847 kobject_move -EXPORT_SYMBOL_GPL vmlinux 0xf67944b9 virtqueue_enable_cb_delayed -EXPORT_SYMBOL_GPL vmlinux 0xf68f924a fixed_phy_set_link_update -EXPORT_SYMBOL_GPL vmlinux 0xf693b595 of_genpd_remove_last -EXPORT_SYMBOL_GPL vmlinux 0xf6a28554 region_intersects -EXPORT_SYMBOL_GPL vmlinux 0xf6b1e732 nf_route -EXPORT_SYMBOL_GPL vmlinux 0xf6b86296 compat_only_sysfs_link_entry_to_kobj -EXPORT_SYMBOL_GPL vmlinux 0xf6ba68df __traceiter_pelt_irq_tp -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 0xf6d5c51e k3_ringacc_dmarings_init -EXPORT_SYMBOL_GPL vmlinux 0xf6e874f5 ata_timing_merge -EXPORT_SYMBOL_GPL vmlinux 0xf6ea8f51 __clocksource_register_scale -EXPORT_SYMBOL_GPL vmlinux 0xf6f92301 sysfs_create_bin_file -EXPORT_SYMBOL_GPL vmlinux 0xf6fd5bd5 pwmchip_add -EXPORT_SYMBOL_GPL vmlinux 0xf6ff2acc sdio_claim_irq -EXPORT_SYMBOL_GPL vmlinux 0xf710e1a2 ip6_dst_lookup -EXPORT_SYMBOL_GPL vmlinux 0xf71ec4c8 dma_buf_unpin -EXPORT_SYMBOL_GPL vmlinux 0xf724152d fsverity_file_open -EXPORT_SYMBOL_GPL vmlinux 0xf724261c scsi_dh_activate -EXPORT_SYMBOL_GPL vmlinux 0xf72a65ea tty_get_char_size -EXPORT_SYMBOL_GPL vmlinux 0xf72e0d6e switchdev_bridge_port_offload -EXPORT_SYMBOL_GPL vmlinux 0xf730fb4a qcom_smem_state_update_bits -EXPORT_SYMBOL_GPL vmlinux 0xf7414672 spi_controller_dma_unmap_mem_op_data -EXPORT_SYMBOL_GPL vmlinux 0xf7455c16 input_event_to_user -EXPORT_SYMBOL_GPL vmlinux 0xf749debc md5_zero_message_hash -EXPORT_SYMBOL_GPL vmlinux 0xf74bb274 mod_delayed_work_on -EXPORT_SYMBOL_GPL vmlinux 0xf74e7c93 jump_label_rate_limit -EXPORT_SYMBOL_GPL vmlinux 0xf75cf0f5 pm_generic_freeze_noirq -EXPORT_SYMBOL_GPL vmlinux 0xf75ec885 ping_err -EXPORT_SYMBOL_GPL vmlinux 0xf75f445f edac_mc_del_mc -EXPORT_SYMBOL_GPL vmlinux 0xf774423b mddev_resume -EXPORT_SYMBOL_GPL vmlinux 0xf782fb07 percpu_ref_switch_to_atomic_sync -EXPORT_SYMBOL_GPL vmlinux 0xf7834ab3 dev_pm_opp_get_opp_count -EXPORT_SYMBOL_GPL vmlinux 0xf7866b4f bind_evtchn_to_irqhandler_lateeoi -EXPORT_SYMBOL_GPL vmlinux 0xf7afb369 btree_init -EXPORT_SYMBOL_GPL vmlinux 0xf7b51297 xfrm_local_error -EXPORT_SYMBOL_GPL vmlinux 0xf7b7aad3 fsl_mc_bus_dpdcei_type -EXPORT_SYMBOL_GPL vmlinux 0xf7bc95b0 devlink_fmsg_pair_nest_start -EXPORT_SYMBOL_GPL vmlinux 0xf7c3f273 xen_resume_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0xf7d961d8 clk_hw_unregister_composite -EXPORT_SYMBOL_GPL vmlinux 0xf7e1ba36 gpiochip_irq_unmap -EXPORT_SYMBOL_GPL vmlinux 0xf7e2b402 dev_pm_opp_of_get_sharing_cpus -EXPORT_SYMBOL_GPL vmlinux 0xf7efe839 lwtunnel_fill_encap -EXPORT_SYMBOL_GPL vmlinux 0xf802289e blkcg_activate_policy -EXPORT_SYMBOL_GPL vmlinux 0xf804ce33 usb_match_id -EXPORT_SYMBOL_GPL vmlinux 0xf8083c6f virtqueue_get_desc_addr -EXPORT_SYMBOL_GPL vmlinux 0xf80b62f5 find_vpid -EXPORT_SYMBOL_GPL vmlinux 0xf81949c3 dma_get_any_slave_channel -EXPORT_SYMBOL_GPL vmlinux 0xf827123a dst_cache_get_ip6 -EXPORT_SYMBOL_GPL vmlinux 0xf82b5f64 em_dev_unregister_perf_domain -EXPORT_SYMBOL_GPL vmlinux 0xf82b9229 __mmc_send_status -EXPORT_SYMBOL_GPL vmlinux 0xf82f3657 work_on_cpu -EXPORT_SYMBOL_GPL vmlinux 0xf83524cb device_node_to_regmap -EXPORT_SYMBOL_GPL vmlinux 0xf840d739 of_console_check -EXPORT_SYMBOL_GPL vmlinux 0xf8467c46 regulator_get_voltage_rdev -EXPORT_SYMBOL_GPL vmlinux 0xf84a62cf fwnode_get_phy_mode -EXPORT_SYMBOL_GPL vmlinux 0xf852d746 __tracepoint_tcp_send_reset -EXPORT_SYMBOL_GPL vmlinux 0xf85ee5ae i2c_dw_adjust_bus_speed -EXPORT_SYMBOL_GPL vmlinux 0xf861bd31 rockchip_clk_register_ddrclk -EXPORT_SYMBOL_GPL vmlinux 0xf8789230 acpi_dev_resume -EXPORT_SYMBOL_GPL vmlinux 0xf895d852 ohci_hub_status_data -EXPORT_SYMBOL_GPL vmlinux 0xf8ab7d75 of_phandle_iterator_next -EXPORT_SYMBOL_GPL vmlinux 0xf8c17a58 irq_chip_retrigger_hierarchy -EXPORT_SYMBOL_GPL vmlinux 0xf8c83d2f modify_user_hw_breakpoint -EXPORT_SYMBOL_GPL vmlinux 0xf8c84c41 pinctrl_select_state -EXPORT_SYMBOL_GPL vmlinux 0xf8e338b6 class_find_device -EXPORT_SYMBOL_GPL vmlinux 0xf8e673d6 fib_rules_dump -EXPORT_SYMBOL_GPL vmlinux 0xf8f1e4e1 phy_pm_runtime_get_sync -EXPORT_SYMBOL_GPL vmlinux 0xf8f3a0fb ata_ratelimit -EXPORT_SYMBOL_GPL vmlinux 0xf8f69337 dev_pm_opp_get_of_node -EXPORT_SYMBOL_GPL vmlinux 0xf8f6dc4f irq_setup_alt_chip -EXPORT_SYMBOL_GPL vmlinux 0xf8f9effa dm_suspended -EXPORT_SYMBOL_GPL vmlinux 0xf900c77d zynqmp_pm_clock_disable -EXPORT_SYMBOL_GPL vmlinux 0xf902010b skcipher_walk_done -EXPORT_SYMBOL_GPL vmlinux 0xf9083a4e sdio_unregister_driver -EXPORT_SYMBOL_GPL vmlinux 0xf9085773 key_type_user -EXPORT_SYMBOL_GPL vmlinux 0xf9093f5b __tracepoint_cpu_frequency -EXPORT_SYMBOL_GPL vmlinux 0xf90ded5c ip_route_output_key_hash -EXPORT_SYMBOL_GPL vmlinux 0xf911d56d tcp_set_keepalive -EXPORT_SYMBOL_GPL vmlinux 0xf930ee80 tcp_unregister_congestion_control -EXPORT_SYMBOL_GPL vmlinux 0xf9387dd6 pci_epc_map_addr -EXPORT_SYMBOL_GPL vmlinux 0xf94a4d2b acpi_dev_get_property -EXPORT_SYMBOL_GPL vmlinux 0xf94d56e0 spi_take_timestamp_post -EXPORT_SYMBOL_GPL vmlinux 0xf95322f4 kthread_parkme -EXPORT_SYMBOL_GPL vmlinux 0xf955e9c5 bprintf -EXPORT_SYMBOL_GPL vmlinux 0xf966a83c dma_buf_get -EXPORT_SYMBOL_GPL vmlinux 0xf967422b HYPERVISOR_xen_version -EXPORT_SYMBOL_GPL vmlinux 0xf96795a0 pwm_request -EXPORT_SYMBOL_GPL vmlinux 0xf96fcbf5 __traceiter_add_device_to_group -EXPORT_SYMBOL_GPL vmlinux 0xf97ea9f0 regmap_write_async -EXPORT_SYMBOL_GPL vmlinux 0xf99dce82 usb_of_has_combined_node -EXPORT_SYMBOL_GPL vmlinux 0xf9a054b5 __round_jiffies -EXPORT_SYMBOL_GPL vmlinux 0xf9a13898 extcon_set_property -EXPORT_SYMBOL_GPL vmlinux 0xf9a3c5dc zynqmp_pm_load_pdi -EXPORT_SYMBOL_GPL vmlinux 0xf9a52342 fsl_mc_object_free -EXPORT_SYMBOL_GPL vmlinux 0xf9b34a0b iopf_queue_free -EXPORT_SYMBOL_GPL vmlinux 0xf9b87234 xdp_convert_zc_to_xdp_frame -EXPORT_SYMBOL_GPL vmlinux 0xf9be32d2 handle_irq_desc -EXPORT_SYMBOL_GPL vmlinux 0xf9bfd1c9 fsnotify_init_mark -EXPORT_SYMBOL_GPL vmlinux 0xf9e6f4c4 sysfs_remove_bin_file -EXPORT_SYMBOL_GPL vmlinux 0xf9ebe553 pci_bridge_emul_init -EXPORT_SYMBOL_GPL vmlinux 0xf9f46a3f usb_hcd_unlink_urb_from_ep -EXPORT_SYMBOL_GPL vmlinux 0xf9f6c487 crypto_register_akcipher -EXPORT_SYMBOL_GPL vmlinux 0xf9f6d142 rio_set_port_lockout -EXPORT_SYMBOL_GPL vmlinux 0xfa1eb910 unregister_syscore_ops -EXPORT_SYMBOL_GPL vmlinux 0xfa300c92 fb_bl_default_curve -EXPORT_SYMBOL_GPL vmlinux 0xfa349688 aer_recover_queue -EXPORT_SYMBOL_GPL vmlinux 0xfa3b8cdb usb_unlocked_enable_lpm -EXPORT_SYMBOL_GPL vmlinux 0xfa40a979 kthread_data -EXPORT_SYMBOL_GPL vmlinux 0xfa4dffbe fib_new_table -EXPORT_SYMBOL_GPL vmlinux 0xfa666974 queue_work_node -EXPORT_SYMBOL_GPL vmlinux 0xfa690589 netdev_cmd_to_name -EXPORT_SYMBOL_GPL vmlinux 0xfa75e70b xhci_check_bandwidth -EXPORT_SYMBOL_GPL vmlinux 0xfa7aa52c sock_map_destroy -EXPORT_SYMBOL_GPL vmlinux 0xfa99467e xdp_rxq_info_reg -EXPORT_SYMBOL_GPL vmlinux 0xfab30dc0 mdio_bus_exit -EXPORT_SYMBOL_GPL vmlinux 0xfab53ed9 pinctrl_gpio_can_use_line -EXPORT_SYMBOL_GPL vmlinux 0xfab64ba5 blk_queue_required_elevator_features -EXPORT_SYMBOL_GPL vmlinux 0xfad019c2 skb_morph -EXPORT_SYMBOL_GPL vmlinux 0xfad9c827 kill_dax -EXPORT_SYMBOL_GPL vmlinux 0xfaea5921 ata_pci_sff_init_one -EXPORT_SYMBOL_GPL vmlinux 0xfb16ff71 devm_regulator_get_exclusive -EXPORT_SYMBOL_GPL vmlinux 0xfb17bef1 switchdev_handle_port_obj_del -EXPORT_SYMBOL_GPL vmlinux 0xfb1f4871 pci_disable_sriov -EXPORT_SYMBOL_GPL vmlinux 0xfb23b406 i2c_probe_func_quick_read -EXPORT_SYMBOL_GPL vmlinux 0xfb243664 ata_scsi_change_queue_depth -EXPORT_SYMBOL_GPL vmlinux 0xfb32b30f ring_buffer_read_prepare_sync -EXPORT_SYMBOL_GPL vmlinux 0xfb37af05 led_classdev_suspend -EXPORT_SYMBOL_GPL vmlinux 0xfb489dd0 bus_set_iommu -EXPORT_SYMBOL_GPL vmlinux 0xfb4ba28d exportfs_encode_fh -EXPORT_SYMBOL_GPL vmlinux 0xfb58941a ata_eh_analyze_ncq_error -EXPORT_SYMBOL_GPL vmlinux 0xfb58d6fa dev_err_probe -EXPORT_SYMBOL_GPL vmlinux 0xfb6eedf9 power_group_name -EXPORT_SYMBOL_GPL vmlinux 0xfb75c866 bpf_prog_create -EXPORT_SYMBOL_GPL vmlinux 0xfb85357d usb_bulk_msg -EXPORT_SYMBOL_GPL vmlinux 0xfb90bd85 rtc_initialize_alarm -EXPORT_SYMBOL_GPL vmlinux 0xfb91e8c3 lwtunnel_xmit -EXPORT_SYMBOL_GPL vmlinux 0xfba13579 tty_ldisc_deref -EXPORT_SYMBOL_GPL vmlinux 0xfba1efc1 of_irq_get_byname -EXPORT_SYMBOL_GPL vmlinux 0xfba64326 thermal_zone_of_get_sensor_id -EXPORT_SYMBOL_GPL vmlinux 0xfbbd41ca no_action -EXPORT_SYMBOL_GPL vmlinux 0xfbce0894 __traceiter_tcp_send_reset -EXPORT_SYMBOL_GPL vmlinux 0xfbda5de9 tpm_get_random -EXPORT_SYMBOL_GPL vmlinux 0xfbe6aec4 gpiod_get_raw_value -EXPORT_SYMBOL_GPL vmlinux 0xfbeb8c2e ahci_shost_attrs -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 0xfc09d98f regulator_bulk_force_disable -EXPORT_SYMBOL_GPL vmlinux 0xfc14bb2e dm_get_dev_t -EXPORT_SYMBOL_GPL vmlinux 0xfc19bc45 crypto_dh_encode_key -EXPORT_SYMBOL_GPL vmlinux 0xfc1c10fa sata_pmp_qc_defer_cmd_switch -EXPORT_SYMBOL_GPL vmlinux 0xfc1d8acf set_secondary_fwnode -EXPORT_SYMBOL_GPL vmlinux 0xfc201b66 sprint_oid -EXPORT_SYMBOL_GPL vmlinux 0xfc254d15 gnttab_free_auto_xlat_frames -EXPORT_SYMBOL_GPL vmlinux 0xfc2e68c1 thermal_zone_get_zone_by_name -EXPORT_SYMBOL_GPL vmlinux 0xfc38701b ip6_dst_lookup_tunnel -EXPORT_SYMBOL_GPL vmlinux 0xfc3b4246 acpi_bus_update_power -EXPORT_SYMBOL_GPL vmlinux 0xfc6769db dev_pm_opp_is_turbo -EXPORT_SYMBOL_GPL vmlinux 0xfc746b3c gnttab_page_cache_shrink -EXPORT_SYMBOL_GPL vmlinux 0xfc9477b5 zynqmp_pm_set_pll_frac_data -EXPORT_SYMBOL_GPL vmlinux 0xfc9ef5e6 devm_kfree -EXPORT_SYMBOL_GPL vmlinux 0xfcbfec70 add_memory_driver_managed -EXPORT_SYMBOL_GPL vmlinux 0xfcc1edd3 memory_block_size_bytes -EXPORT_SYMBOL_GPL vmlinux 0xfcc39d58 xfrm_audit_state_icvfail -EXPORT_SYMBOL_GPL vmlinux 0xfccebfd2 spi_mem_get_name -EXPORT_SYMBOL_GPL vmlinux 0xfcdbbf3b gpiochip_remove -EXPORT_SYMBOL_GPL vmlinux 0xfceffa63 xdp_rxq_info_reg_mem_model -EXPORT_SYMBOL_GPL vmlinux 0xfcf9ef73 hw_protection_shutdown -EXPORT_SYMBOL_GPL vmlinux 0xfcff176d mpc8xxx_spi_rx_buf_u8 -EXPORT_SYMBOL_GPL vmlinux 0xfcff400f devm_phy_get -EXPORT_SYMBOL_GPL vmlinux 0xfd068326 register_kretprobes -EXPORT_SYMBOL_GPL vmlinux 0xfd0ae30e fuse_free_conn -EXPORT_SYMBOL_GPL vmlinux 0xfd195774 k3_udma_glue_disable_tx_chn -EXPORT_SYMBOL_GPL vmlinux 0xfd1e87e7 iommu_group_get -EXPORT_SYMBOL_GPL vmlinux 0xfd5ca49f firmware_request_cache -EXPORT_SYMBOL_GPL vmlinux 0xfd70ff6c pci_enable_sriov -EXPORT_SYMBOL_GPL vmlinux 0xfd7174ca xenbus_watch_pathfmt -EXPORT_SYMBOL_GPL vmlinux 0xfd7243c7 erst_disable -EXPORT_SYMBOL_GPL vmlinux 0xfd73fc18 dev_pm_domain_attach -EXPORT_SYMBOL_GPL vmlinux 0xfd8a0578 vtime_guest_enter -EXPORT_SYMBOL_GPL vmlinux 0xfd8ba7f9 spi_get_next_queued_message -EXPORT_SYMBOL_GPL vmlinux 0xfd9e1ad0 gnttab_page_cache_get -EXPORT_SYMBOL_GPL vmlinux 0xfd9e2370 mmu_notifier_put -EXPORT_SYMBOL_GPL vmlinux 0xfda02bd3 dev_pm_qos_add_request -EXPORT_SYMBOL_GPL vmlinux 0xfdb881f9 of_thermal_is_trip_valid -EXPORT_SYMBOL_GPL vmlinux 0xfdbd7a17 crypto_get_attr_type -EXPORT_SYMBOL_GPL vmlinux 0xfdc20bc1 fat_alloc_new_dir -EXPORT_SYMBOL_GPL vmlinux 0xfdc80a43 devm_ti_sci_get_of_resource -EXPORT_SYMBOL_GPL vmlinux 0xfdd9ed41 sdio_retune_crc_enable -EXPORT_SYMBOL_GPL vmlinux 0xfdea2d04 alarm_cancel -EXPORT_SYMBOL_GPL vmlinux 0xfded65f4 dev_pm_opp_set_supported_hw -EXPORT_SYMBOL_GPL vmlinux 0xfdfb36da dev_pm_opp_sync_regulators -EXPORT_SYMBOL_GPL vmlinux 0xfe0e7cd3 apei_exec_post_unmap_gars -EXPORT_SYMBOL_GPL vmlinux 0xfe1312ca usb_phy_roothub_suspend -EXPORT_SYMBOL_GPL vmlinux 0xfe13ebc1 clockevents_unbind_device -EXPORT_SYMBOL_GPL vmlinux 0xfe155d70 irq_setup_generic_chip -EXPORT_SYMBOL_GPL vmlinux 0xfe1a7a7b mpi_point_release -EXPORT_SYMBOL_GPL vmlinux 0xfe3a6de3 alarm_try_to_cancel -EXPORT_SYMBOL_GPL vmlinux 0xfe3bb92d devm_regulator_bulk_register_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0xfe43e999 __traceiter_attach_device_to_domain -EXPORT_SYMBOL_GPL vmlinux 0xfe445d9f hwspin_lock_unregister -EXPORT_SYMBOL_GPL vmlinux 0xfe476039 ktime_get_resolution_ns -EXPORT_SYMBOL_GPL vmlinux 0xfe789608 pci_find_host_bridge -EXPORT_SYMBOL_GPL vmlinux 0xfe8125dd of_irq_get -EXPORT_SYMBOL_GPL vmlinux 0xfe89499c perf_event_enable -EXPORT_SYMBOL_GPL vmlinux 0xfe8cdb84 ring_buffer_alloc_read_page -EXPORT_SYMBOL_GPL vmlinux 0xfe8f8543 gpiochip_is_requested -EXPORT_SYMBOL_GPL vmlinux 0xfe990052 gpio_free -EXPORT_SYMBOL_GPL vmlinux 0xfea20f94 ata_port_schedule_eh -EXPORT_SYMBOL_GPL vmlinux 0xfea5aa6e mmc_sanitize -EXPORT_SYMBOL_GPL vmlinux 0xfec22a7f icc_put -EXPORT_SYMBOL_GPL vmlinux 0xfec3bf84 icst_clk_setup -EXPORT_SYMBOL_GPL vmlinux 0xfed11ed1 usb_mon_deregister -EXPORT_SYMBOL_GPL vmlinux 0xfede9222 __tracepoint_suspend_resume -EXPORT_SYMBOL_GPL vmlinux 0xfeeecd05 apei_read -EXPORT_SYMBOL_GPL vmlinux 0xfef8c92d fsl_mc_device_group -EXPORT_SYMBOL_GPL vmlinux 0xff05fa13 vring_interrupt -EXPORT_SYMBOL_GPL vmlinux 0xff1666f3 reset_control_bulk_assert -EXPORT_SYMBOL_GPL vmlinux 0xff16aea2 netlink_add_tap -EXPORT_SYMBOL_GPL vmlinux 0xff2591b7 edac_mc_handle_error -EXPORT_SYMBOL_GPL vmlinux 0xff291ecf clk_unregister_divider -EXPORT_SYMBOL_GPL vmlinux 0xff36d254 crypto_ahash_final -EXPORT_SYMBOL_GPL vmlinux 0xff3e577a irq_generic_chip_ops -EXPORT_SYMBOL_GPL vmlinux 0xff4152c1 fsl_mc_bus_dpni_type -EXPORT_SYMBOL_GPL vmlinux 0xff42c374 usb_role_switch_get_role -EXPORT_SYMBOL_GPL vmlinux 0xff462722 security_path_symlink -EXPORT_SYMBOL_GPL vmlinux 0xff4b3072 fsl_mc_bus_dpmac_type -EXPORT_SYMBOL_GPL vmlinux 0xff4f0cdd device_remove_groups -EXPORT_SYMBOL_GPL vmlinux 0xff5b1a1d phy_set_media -EXPORT_SYMBOL_GPL vmlinux 0xff7d2979 nd_blk_memremap_flags -EXPORT_SYMBOL_GPL vmlinux 0xff7e33bf mpi_sub_ui -EXPORT_SYMBOL_GPL vmlinux 0xff804803 dev_nit_active -EXPORT_SYMBOL_GPL vmlinux 0xff81487d gpiod_remove_lookup_table -EXPORT_SYMBOL_GPL vmlinux 0xff855e30 genphy_c45_restart_aneg -EXPORT_SYMBOL_GPL vmlinux 0xff8e3edc ehci_suspend -EXPORT_SYMBOL_GPL vmlinux 0xff96ab80 pci_add_dynid -EXPORT_SYMBOL_GPL vmlinux 0xff9e23d1 hugetlb_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0xffa6eb5a sysfs_notify -EXPORT_SYMBOL_GPL vmlinux 0xffac7b6e tty_kopen_exclusive -EXPORT_SYMBOL_GPL vmlinux 0xffae8e8b nsecs_to_jiffies -EXPORT_SYMBOL_GPL vmlinux 0xffaf3cbc pci_generic_config_read32 -EXPORT_SYMBOL_GPL vmlinux 0xffb363d7 blk_next_bio -EXPORT_SYMBOL_GPL vmlinux 0xffca8693 dev_fill_metadata_dst -EXPORT_SYMBOL_GPL vmlinux 0xffd2f45d handle_untracked_irq -EXPORT_SYMBOL_GPL vmlinux 0xffda72ba usb_get_dr_mode -EXPORT_SYMBOL_GPL vmlinux 0xfff9329c dax_layout_busy_page -FIRMWARE_LOADER_PRIVATE EXPORT_SYMBOL_GPL 0xd3ae7756 fw_fallback_config vmlinux -IIO_ADISLIB EXPORT_SYMBOL 0x84fc9fd7 __adis_enable_irq drivers/iio/imu/adis_lib -IIO_ADISLIB EXPORT_SYMBOL 0x913c0beb adis_debugfs_reg_access drivers/iio/imu/adis_lib -IIO_ADISLIB EXPORT_SYMBOL_GPL 0x16dbcc68 __adis_initial_startup drivers/iio/imu/adis_lib -IIO_ADISLIB EXPORT_SYMBOL_GPL 0x33a29a99 __adis_write_reg drivers/iio/imu/adis_lib -IIO_ADISLIB EXPORT_SYMBOL_GPL 0x342da807 devm_adis_setup_buffer_and_trigger drivers/iio/imu/adis_lib -IIO_ADISLIB EXPORT_SYMBOL_GPL 0x7e48d814 __adis_update_bits_base drivers/iio/imu/adis_lib -IIO_ADISLIB EXPORT_SYMBOL_GPL 0x87236988 devm_adis_probe_trigger drivers/iio/imu/adis_lib -IIO_ADISLIB EXPORT_SYMBOL_GPL 0x8c3ff106 adis_single_conversion drivers/iio/imu/adis_lib -IIO_ADISLIB EXPORT_SYMBOL_GPL 0x91e12e8e adis_init drivers/iio/imu/adis_lib -IIO_ADISLIB EXPORT_SYMBOL_GPL 0x9a35b558 adis_update_scan_mode drivers/iio/imu/adis_lib -IIO_ADISLIB EXPORT_SYMBOL_GPL 0xb3179a1c __adis_check_status drivers/iio/imu/adis_lib -IIO_ADISLIB EXPORT_SYMBOL_GPL 0xbd504158 __adis_read_reg drivers/iio/imu/adis_lib -IIO_ADIS_LIB EXPORT_SYMBOL_GPL 0x1657cc77 __adis_reset drivers/iio/imu/adis_lib -IIO_HID EXPORT_SYMBOL 0x3eb8903c 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 0x833a9e2d hid_sensor_write_raw_hyst_value drivers/iio/common/hid-sensors/hid-sensor-iio-common -IIO_HID EXPORT_SYMBOL 0x933f7492 hid_sensor_pm_ops drivers/iio/common/hid-sensors/hid-sensor-trigger -IIO_HID EXPORT_SYMBOL 0xa001acad hid_sensor_setup_trigger drivers/iio/common/hid-sensors/hid-sensor-trigger -IIO_HID EXPORT_SYMBOL 0xa8cba3eb hid_sensor_read_raw_hyst_value drivers/iio/common/hid-sensors/hid-sensor-iio-common -IIO_HID EXPORT_SYMBOL 0xb5b36017 hid_sensor_power_state drivers/iio/common/hid-sensors/hid-sensor-trigger -IIO_HID EXPORT_SYMBOL 0xcb35c417 hid_sensor_write_samp_freq_value drivers/iio/common/hid-sensors/hid-sensor-iio-common -IIO_HID EXPORT_SYMBOL 0xcda13e43 hid_sensor_read_samp_freq_value drivers/iio/common/hid-sensors/hid-sensor-iio-common -IIO_HID EXPORT_SYMBOL 0xd5140e7e hid_sensor_remove_trigger drivers/iio/common/hid-sensors/hid-sensor-trigger -IIO_HID EXPORT_SYMBOL 0xd546f18c hid_sensor_parse_common_attributes drivers/iio/common/hid-sensors/hid-sensor-iio-common -IIO_HID EXPORT_SYMBOL 0xecb539cc hid_sensor_read_raw_hyst_rel_value drivers/iio/common/hid-sensors/hid-sensor-iio-common -IIO_HID EXPORT_SYMBOL 0xf6973340 hid_sensor_convert_timestamp drivers/iio/common/hid-sensors/hid-sensor-iio-common -IIO_HID_ATTRIBUTES EXPORT_SYMBOL 0x26ecc861 hid_sensor_read_poll_value drivers/iio/common/hid-sensors/hid-sensor-iio-common -IIO_HID_ATTRIBUTES EXPORT_SYMBOL 0x72d01672 hid_sensor_batch_mode_supported drivers/iio/common/hid-sensors/hid-sensor-iio-common -IIO_HID_ATTRIBUTES EXPORT_SYMBOL 0x7c69792d hid_sensor_set_report_latency drivers/iio/common/hid-sensors/hid-sensor-iio-common -IIO_HID_ATTRIBUTES EXPORT_SYMBOL 0xea380e43 hid_sensor_get_report_latency drivers/iio/common/hid-sensors/hid-sensor-iio-common -LTC2497 EXPORT_SYMBOL 0x969d277d ltc2497core_remove drivers/iio/adc/ltc2497-core -LTC2497 EXPORT_SYMBOL 0xa1b8b19a ltc2497core_probe drivers/iio/adc/ltc2497-core -MCB EXPORT_SYMBOL_GPL 0x12e82b21 mcb_get_irq drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0x330836fc mcb_release_bus drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0x6d9465dd mcb_free_dev drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0x835e1c99 mcb_bus_add_devices drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0x9729fa84 mcb_alloc_dev drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0x9a7dc3cc chameleon_parse_cells drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0x9d30469e mcb_bus_get drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0xaf868f31 mcb_unregister_driver drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0xc2835b36 mcb_alloc_bus drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0xcafb0288 mcb_device_register drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0xe05bdf7a __mcb_register_driver drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0xeb2c8905 mcb_release_mem drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0xee592eeb mcb_request_mem drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0xef05b9fc mcb_bus_put drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0xf661419b mcb_get_resource drivers/mcb/mcb -NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x3b5ba6c5 nvme_ctrl_from_file drivers/nvme/host/nvme-core -NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x58659cb4 nvme_put_ns drivers/nvme/host/nvme-core -NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0xa23b2447 nvme_command_effects drivers/nvme/host/nvme-core -NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0xd9d0db05 nvme_find_get_ns drivers/nvme/host/nvme-core -NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0xde910de7 nvme_execute_passthru_rq drivers/nvme/host/nvme-core -PMBUS EXPORT_SYMBOL_GPL 0x030df936 pmbus_get_driver_info drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0x20fedfc5 pmbus_check_word_register drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0x24e242ad pmbus_write_word_data drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0x29c80a23 pmbus_read_word_data drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0x302d1abe pmbus_check_byte_register drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0x6aa550e3 pmbus_clear_cache drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0x75b3defd pmbus_regulator_ops drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0x766849dc pmbus_update_fan drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0x7b99c0df pmbus_set_page drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0x86568034 pmbus_write_byte drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0xb47d4480 pmbus_write_byte_data drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0xbdf8f534 pmbus_get_debugfs_dir drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0xbe7fef18 pmbus_update_byte_data drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0xd65e415c pmbus_clear_faults drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0xd7505632 pmbus_read_byte_data drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0xe0673fdc pmbus_get_fan_rate_device drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0xeec3bf57 pmbus_set_update drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0xf4b334d2 pmbus_get_fan_rate_cached drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0xf84d115b pmbus_do_probe drivers/hwmon/pmbus/pmbus_core -SND_HDA_SCODEC_CS35L41 EXPORT_SYMBOL_GPL 0x8bd92acf cs35l41_hda_remove sound/pci/hda/snd-hda-scodec-cs35l41 -SND_HDA_SCODEC_CS35L41 EXPORT_SYMBOL_GPL 0x9dace6fc 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 0x25f45945 sof_xtensa_arch_ops sound/soc/sof/xtensa/snd-sof-xtensa-dsp -SOUNDWIRE_INTEL_INIT EXPORT_SYMBOL 0x4dfedb09 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 0x5b976ccf sdw_intel_probe drivers/soundwire/soundwire-intel -SOUNDWIRE_INTEL_INIT EXPORT_SYMBOL 0x65fdfdd3 sdw_intel_process_wakeen_event drivers/soundwire/soundwire-intel -SOUNDWIRE_INTEL_INIT EXPORT_SYMBOL 0x793b89d7 sdw_intel_exit drivers/soundwire/soundwire-intel -SOUNDWIRE_INTEL_INIT EXPORT_SYMBOL 0xaa52eba1 sdw_intel_thread drivers/soundwire/soundwire-intel -USB_STORAGE EXPORT_SYMBOL_GPL 0x02a0e2f3 usb_stor_control_msg drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x0f539cfd usb_stor_CB_reset drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x1295fcc0 usb_stor_post_reset drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x1561b04f usb_stor_bulk_transfer_buf drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x17e042a6 usb_stor_Bulk_transport drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x1bc3edc2 usb_stor_sense_invalidCDB drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x2883fe48 usb_stor_CB_transport drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x2ee3e885 usb_stor_set_xfer_buf drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x4f6b4a35 usb_stor_probe2 drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x52e27b3e usb_stor_bulk_transfer_sg drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x5811ae8b fill_inquiry_response drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x637d295a usb_stor_suspend drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x789e5110 usb_stor_resume drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x7f7cf581 usb_stor_bulk_srb drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x84c811fd usb_stor_reset_resume drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x9d5b899b usb_stor_Bulk_reset drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0xa2d05b84 usb_stor_adjust_quirks drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0xbed68f74 usb_stor_host_template_init drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0xc406aab9 usb_stor_access_xfer_buf drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0xd9534a3e usb_stor_ctrl_transfer drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0xdd0c878b usb_stor_transparent_scsi_command drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0xe0662236 usb_stor_probe1 drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0xe7c642fe usb_stor_disconnect drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0xeb21ba60 usb_stor_clear_halt drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0xff07d4b3 usb_stor_pre_reset drivers/usb/storage/usb-storage reverted: --- linux-nvidia-tegra-5.15.0/debian.nvidia-tegra/abi/arm64/nvidia-tegra-rt +++ linux-nvidia-tegra-5.15.0.orig/debian.nvidia-tegra/abi/arm64/nvidia-tegra-rt @@ -1,26450 +0,0 @@ -CRYPTO_INTERNAL EXPORT_SYMBOL_GPL 0x98766157 crypto_cipher_decrypt_one vmlinux -CRYPTO_INTERNAL EXPORT_SYMBOL_GPL 0xbf3f8e91 crypto_cipher_encrypt_one vmlinux -CRYPTO_INTERNAL EXPORT_SYMBOL_GPL 0xdade293a crypto_cipher_setkey vmlinux -CXL EXPORT_SYMBOL_GPL 0x0a97b4d5 devm_cxl_add_decoder drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x171e6063 is_cxl_nvdimm drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x1e0c3bdb devm_cxl_add_memdev drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x291a0dc9 devm_cxl_add_port drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x3e250c11 devm_cxl_add_nvdimm_bridge drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x48181fbc to_cxl_nvdimm drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x4aa97c01 cxl_driver_unregister drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x4f59c1d5 cxl_probe_device_regs drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x550d6150 devm_cxl_add_nvdimm drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x575754d3 __cxl_driver_register drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x57899bbc to_cxl_decoder drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x755dee9e cxl_map_component_regs drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x81f63b88 cxl_map_device_regs drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xa61158fe cxl_bus_type drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xc4f067a8 cxl_add_dport drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xcfe471b9 cxl_probe_component_regs drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xda064d18 to_cxl_nvdimm_bridge drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xf5ae0748 is_root_decoder drivers/cxl/core/cxl_core -EXPORT_SYMBOL arch/arm64/crypto/aes-ce-cipher 0x68f275ad ce_aes_expandkey -EXPORT_SYMBOL arch/arm64/crypto/aes-ce-cipher 0xd145ba28 ce_aes_setkey -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 0x41f406f5 crypto_nhpoly1305_final -EXPORT_SYMBOL crypto/nhpoly1305 0x563648f7 crypto_nhpoly1305_final_helper -EXPORT_SYMBOL crypto/nhpoly1305 0x5adb83ac crypto_nhpoly1305_init -EXPORT_SYMBOL crypto/nhpoly1305 0x982557ba crypto_nhpoly1305_update_helper -EXPORT_SYMBOL crypto/nhpoly1305 0xa5c52016 crypto_nhpoly1305_update -EXPORT_SYMBOL crypto/nhpoly1305 0xf22f328c crypto_nhpoly1305_setkey -EXPORT_SYMBOL crypto/sha3_generic 0x10d41e10 crypto_sha3_final -EXPORT_SYMBOL crypto/sha3_generic 0x1e323bf6 crypto_sha3_update -EXPORT_SYMBOL crypto/sha3_generic 0x537545cc crypto_sha3_init -EXPORT_SYMBOL crypto/sm2_generic 0x1e2fdaeb sm2_compute_z_digest -EXPORT_SYMBOL crypto/sm3_generic 0x2bb2261e crypto_sm3_finup -EXPORT_SYMBOL crypto/sm3_generic 0xd11db46a crypto_sm3_update -EXPORT_SYMBOL crypto/sm3_generic 0xf756eaa7 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 0x16fd2f56 suni_init -EXPORT_SYMBOL drivers/bcma/bcma 0x38c9199f bcma_core_dma_translation -EXPORT_SYMBOL drivers/bcma/bcma 0xd2076817 bcma_core_irq -EXPORT_SYMBOL drivers/block/drbd/drbd 0x127a5901 drbd_set_st_err_str -EXPORT_SYMBOL drivers/block/drbd/drbd 0x35131b36 drbd_role_str -EXPORT_SYMBOL drivers/block/drbd/drbd 0x7730f22d drbd_conn_str -EXPORT_SYMBOL drivers/block/drbd/drbd 0xaf27bebf drbd_disk_str -EXPORT_SYMBOL drivers/bluetooth/btbcm 0xa7eba982 btbcm_patchram -EXPORT_SYMBOL drivers/bluetooth/btrsi 0x47729c97 rsi_bt_ops -EXPORT_SYMBOL drivers/bus/mhi/host/mhi 0x4278ff81 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 0x0d8e0d79 ipmi_add_smi -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x11b6b99f ipmi_get_smi_info -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 0xb51acf3d ipmi_smi_watcher_unregister -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xd54a5050 ipmi_unregister_for_cmd -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xe4330a39 ipmi_unregister_smi -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xe4f4665b ipmi_validate_addr -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xe75fd5fd ipmi_smi_watcher_register -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 0x4ca9e14a st33zp24_pm_suspend -EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x5670d71d st33zp24_remove -EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0xb7d83a00 st33zp24_pm_resume -EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0xba759e51 st33zp24_probe -EXPORT_SYMBOL drivers/char/xillybus/xillybus_class 0x7be51197 xillybus_cleanup_chrdev -EXPORT_SYMBOL drivers/char/xillybus/xillybus_class 0x7f123947 xillybus_find_inode -EXPORT_SYMBOL drivers/char/xillybus/xillybus_class 0x9a1e196f xillybus_init_chrdev -EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x25978d50 xillybus_isr -EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x8bd1c2e8 xillybus_endpoint_remove -EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0xa09028c1 xillybus_init_endpoint -EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0xf42c275b 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 0x07588105 atmel_i2c_enqueue -EXPORT_SYMBOL drivers/crypto/atmel-i2c 0x80a11b1d atmel_i2c_init_read_cmd -EXPORT_SYMBOL drivers/crypto/atmel-i2c 0x9b835654 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/atmel-i2c 0xfaea99ce atmel_i2c_probe -EXPORT_SYMBOL drivers/crypto/caam/caam 0x17572340 caam_congested -EXPORT_SYMBOL drivers/crypto/caam/caam 0x37734e06 caam_dpaa2 -EXPORT_SYMBOL drivers/crypto/caam/caam 0x3e4bacdb caam_drv_ctx_update -EXPORT_SYMBOL drivers/crypto/caam/caam 0x44ae4bc4 qi_cache_free -EXPORT_SYMBOL drivers/crypto/caam/caam 0x87e7743f caam_drv_ctx_rel -EXPORT_SYMBOL drivers/crypto/caam/caam 0xc0eaa792 qi_cache_alloc -EXPORT_SYMBOL drivers/crypto/caam/caam 0xc1d293f8 caam_qi_enqueue -EXPORT_SYMBOL drivers/crypto/caam/caam 0xeb7c5127 caam_drv_ctx_init -EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0x31f2e923 split_key_done -EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0x3cd4d96f gen_split_key -EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0x61ee5c81 caam_jr_enqueue -EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0x9dd530be caam_jr_free -EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0xd3ac5679 caam_jr_alloc -EXPORT_SYMBOL drivers/crypto/caam/caamalg_desc 0x2e152bb7 cnstr_shdsc_xts_skcipher_encap -EXPORT_SYMBOL drivers/crypto/caam/caamalg_desc 0x3b54a9ad cnstr_shdsc_aead_decap -EXPORT_SYMBOL drivers/crypto/caam/caamalg_desc 0x76a68e3e cnstr_shdsc_chachapoly -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 0x5ccf7f77 dpaa2_caam_enqueue -EXPORT_SYMBOL drivers/crypto/caam/error 0x53d0fc97 caam_ptr_sz -EXPORT_SYMBOL drivers/crypto/caam/error 0xa51f16c7 caam_little_end -EXPORT_SYMBOL drivers/crypto/caam/error 0xbd67c092 caam_imx -EXPORT_SYMBOL drivers/crypto/caam/error 0xd25da602 caam_dump_sg -EXPORT_SYMBOL drivers/crypto/caam/error 0xeb3974e8 caam_strstatus -EXPORT_SYMBOL drivers/dma/xilinx/xilinx_dma 0x70fbc97b xilinx_vdma_channel_set_config -EXPORT_SYMBOL drivers/firewire/firewire-core 0x00c4cf43 fw_core_handle_bus_reset -EXPORT_SYMBOL drivers/firewire/firewire-core 0x0bc6094c fw_core_remove_descriptor -EXPORT_SYMBOL drivers/firewire/firewire-core 0x14d2c1e0 fw_device_enable_phys_dma -EXPORT_SYMBOL drivers/firewire/firewire-core 0x2885fec5 fw_get_request_speed -EXPORT_SYMBOL drivers/firewire/firewire-core 0x34c4adb0 fw_core_handle_request -EXPORT_SYMBOL drivers/firewire/firewire-core 0x3a590872 fw_card_add -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 0x45fefeeb fw_iso_context_destroy -EXPORT_SYMBOL drivers/firewire/firewire-core 0x4840df85 fw_fill_response -EXPORT_SYMBOL drivers/firewire/firewire-core 0x52c89f01 fw_core_remove_card -EXPORT_SYMBOL drivers/firewire/firewire-core 0x62dff317 fw_bus_type -EXPORT_SYMBOL drivers/firewire/firewire-core 0x64d019b8 fw_schedule_bus_reset -EXPORT_SYMBOL drivers/firewire/firewire-core 0x6dc50487 fw_csr_string -EXPORT_SYMBOL drivers/firewire/firewire-core 0x790f5a19 fw_card_initialize -EXPORT_SYMBOL drivers/firewire/firewire-core 0x7918f011 fw_iso_buffer_destroy -EXPORT_SYMBOL drivers/firewire/firewire-core 0x7a11ec84 fw_cancel_transaction -EXPORT_SYMBOL drivers/firewire/firewire-core 0x7ddcb00b fw_iso_resource_manage -EXPORT_SYMBOL drivers/firewire/firewire-core 0x800d61aa fw_iso_context_flush_completions -EXPORT_SYMBOL drivers/firewire/firewire-core 0x86468d44 fw_rcode_string -EXPORT_SYMBOL drivers/firewire/firewire-core 0x9569596d fw_core_handle_response -EXPORT_SYMBOL drivers/firewire/firewire-core 0x9950b4ab fw_iso_context_queue_flush -EXPORT_SYMBOL drivers/firewire/firewire-core 0x9d0e2ea5 fw_send_request -EXPORT_SYMBOL drivers/firewire/firewire-core 0xaedf84ce fw_high_memory_region -EXPORT_SYMBOL drivers/firewire/firewire-core 0xb6467f33 fw_run_transaction -EXPORT_SYMBOL drivers/firewire/firewire-core 0xc8277fb9 fw_iso_context_stop -EXPORT_SYMBOL drivers/firewire/firewire-core 0xdf7c5e16 fw_core_remove_address_handler -EXPORT_SYMBOL drivers/firewire/firewire-core 0xe3fde125 fw_csr_iterator_next -EXPORT_SYMBOL drivers/firewire/firewire-core 0xe7ea2aa2 fw_send_response -EXPORT_SYMBOL drivers/firewire/firewire-core 0xe80e5087 fw_csr_iterator_init -EXPORT_SYMBOL drivers/firewire/firewire-core 0xf2a07d54 fw_iso_context_queue -EXPORT_SYMBOL drivers/firewire/firewire-core 0xf346c8af fw_iso_buffer_init -EXPORT_SYMBOL drivers/firewire/firewire-core 0xf40cbf32 fw_core_add_address_handler -EXPORT_SYMBOL drivers/firewire/firewire-core 0xf5664428 fw_iso_context_start -EXPORT_SYMBOL drivers/firewire/firewire-core 0xf6be74a6 fw_iso_context_create -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 0x71743122 imx_dsp_request_channel -EXPORT_SYMBOL drivers/firmware/imx/imx-dsp 0x99a8b7d4 imx_dsp_ring_doorbell -EXPORT_SYMBOL drivers/firmware/imx/imx-dsp 0xeea8a521 imx_dsp_free_channel -EXPORT_SYMBOL drivers/fpga/dfl 0x4b7873b1 dfl_driver_unregister -EXPORT_SYMBOL drivers/fpga/dfl 0x5c13a4d9 __dfl_driver_register -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0035eb52 drm_panel_of_backlight -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0191d926 drm_connector_attach_content_protection_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x02294d67 drm_gem_unlock_reservations -EXPORT_SYMBOL drivers/gpu/drm/drm 0x025193b6 drm_add_modes_noedid -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0280d328 drm_wait_one_vblank -EXPORT_SYMBOL drivers/gpu/drm/drm 0x03306416 drm_poll -EXPORT_SYMBOL drivers/gpu/drm/drm 0x03a785b1 drm_client_modeset_check -EXPORT_SYMBOL drivers/gpu/drm/drm 0x03c63897 __drm_get_edid_firmware_path -EXPORT_SYMBOL drivers/gpu/drm/drm 0x03d8bc74 drm_gem_shmem_print_info -EXPORT_SYMBOL drivers/gpu/drm/drm 0x048be0c5 drm_mode_create_content_type_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x04dfa32f drm_mode_object_find -EXPORT_SYMBOL drivers/gpu/drm/drm 0x05752f02 drm_connector_list_iter_next -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0589137a drm_mode_plane_set_obj_prop -EXPORT_SYMBOL drivers/gpu/drm/drm 0x05dafa9c __drmm_add_action -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0691a7f2 drm_set_preferred_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0x070b28aa drm_ht_remove_item -EXPORT_SYMBOL drivers/gpu/drm/drm 0x081f2c93 drm_syncobj_replace_fence -EXPORT_SYMBOL drivers/gpu/drm/drm 0x08613f55 drm_crtc_vblank_restore -EXPORT_SYMBOL drivers/gpu/drm/drm 0x09105789 drm_mode_set_config_internal -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0a099e1e drm_connector_attach_tv_margin_properties -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0a56759f drm_client_modeset_dpms -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0a72f765 drm_clflush_virt_range -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0a80610c drm_plane_get_damage_clips -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0aa00870 drm_framebuffer_remove -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0d432861 drm_vma_offset_add -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0d7aefb1 drm_client_rotation -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0d9b4753 drm_mode_equal -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0eae89cf drm_dev_put -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0f1805e8 drmm_mode_config_init -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 0x103e1327 drm_vma_node_is_allowed -EXPORT_SYMBOL drivers/gpu/drm/drm 0x107742a9 drm_get_subpixel_order_name -EXPORT_SYMBOL drivers/gpu/drm/drm 0x10bf76ff drm_prime_sg_to_page_array -EXPORT_SYMBOL drivers/gpu/drm/drm 0x10f22c1a drm_property_add_enum -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1104f734 drm_gem_shmem_vmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1282908e drm_edid_to_speaker_allocation -EXPORT_SYMBOL drivers/gpu/drm/drm 0x136571e7 drm_plane_create_blend_mode_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x145a8a57 drm_atomic_get_connector_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0x14b53049 drm_atomic_bridge_chain_pre_enable -EXPORT_SYMBOL drivers/gpu/drm/drm 0x16211730 drm_modeset_unlock -EXPORT_SYMBOL drivers/gpu/drm/drm 0x169a3700 drm_connector_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1777edc5 drm_panel_get_modes -EXPORT_SYMBOL drivers/gpu/drm/drm 0x17a52df1 drm_modeset_acquire_fini -EXPORT_SYMBOL drivers/gpu/drm/drm 0x17fd352d drm_cvt_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0x189eba46 drm_i2c_encoder_dpms -EXPORT_SYMBOL drivers/gpu/drm/drm 0x191010bb drm_display_info_set_bus_formats -EXPORT_SYMBOL drivers/gpu/drm/drm 0x191568f2 drm_gem_prime_export -EXPORT_SYMBOL drivers/gpu/drm/drm 0x19e822cb drm_master_internal_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1a22ee87 drm_atomic_get_old_bridge_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1a411479 drm_syncobj_free -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1bdf3c90 drm_writeback_cleanup_job -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1c640ffd drm_connector_set_panel_orientation -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1ce6fe46 drm_gem_map_dma_buf -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1cf50558 drm_dev_alloc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1d656e7d drm_read -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1d79ea13 drm_gem_dmabuf_mmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1e2050ff drm_gem_mmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1f19ee81 drm_connector_attach_edid_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1f5660f8 drm_gem_get_pages -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1f60ddb6 drm_atomic_nonblocking_commit -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1fa690b6 drm_client_framebuffer_delete -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1faf1b76 drm_file_get_master -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2157626f drm_gtf_mode_complex -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2183c08c drm_mm_scan_add_block -EXPORT_SYMBOL drivers/gpu/drm/drm 0x21c246fa drm_atomic_commit -EXPORT_SYMBOL drivers/gpu/drm/drm 0x21f2ecc2 drm_object_property_set_value -EXPORT_SYMBOL drivers/gpu/drm/drm 0x22303b75 drm_mode_validate_driver -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 0x24a1e343 drm_plane_create_scaling_filter_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x24d124ac drm_mode_equal_no_clocks_no_stereo -EXPORT_SYMBOL drivers/gpu/drm/drm 0x25a2f3d9 drm_connector_attach_scaling_mode_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x25daad93 __drm_mm_interval_first -EXPORT_SYMBOL drivers/gpu/drm/drm 0x27057c07 drm_client_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2712d03a drm_mode_validate_ycbcr420 -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2754dad8 drm_mm_reserve_node -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2758bfcf drm_atomic_private_obj_fini -EXPORT_SYMBOL drivers/gpu/drm/drm 0x28779e52 drm_printf -EXPORT_SYMBOL drivers/gpu/drm/drm 0x295ceddc drm_connector_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2999c5f1 drm_warn_on_modeset_not_all_locked -EXPORT_SYMBOL drivers/gpu/drm/drm 0x29ba351a drm_plane_get_damage_clips_count -EXPORT_SYMBOL drivers/gpu/drm/drm 0x29f078d1 drm_mode_legacy_fb_format -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2a51ea28 drm_gem_prime_import -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2a962499 drm_mm_scan_init_with_range -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2a962d9b drm_gem_vm_close -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2b9c529a drm_bridge_attach -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2bf6b288 drm_gem_dmabuf_vunmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2c6b601f drm_encoder_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2cf23249 drm_client_modeset_commit -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2d04648a drm_send_event_timestamp_locked -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2d50570f drm_rect_calc_hscale -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2d7472e2 drm_client_register -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2dbfe29c drm_crtc_check_viewport -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2dcaa63d drm_framebuffer_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2ed3c600 drm_mode_debug_printmodeline -EXPORT_SYMBOL drivers/gpu/drm/drm 0x30d1a221 drm_atomic_add_affected_connectors -EXPORT_SYMBOL drivers/gpu/drm/drm 0x313f9847 drm_gem_object_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x319708eb drm_i2c_encoder_save -EXPORT_SYMBOL drivers/gpu/drm/drm 0x31b8a5e3 __drm_set_edid_firmware_path -EXPORT_SYMBOL drivers/gpu/drm/drm 0x31f7ccd3 drm_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0x329feb23 drm_dev_dbg -EXPORT_SYMBOL drivers/gpu/drm/drm 0x32a0cc37 drm_print_bits -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3300b8f1 drm_gem_shmem_put_pages -EXPORT_SYMBOL drivers/gpu/drm/drm 0x332ce4fb drm_mode_find_dmt -EXPORT_SYMBOL drivers/gpu/drm/drm 0x333fe04d drm_crtc_vblank_count_and_time -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3347317d drm_modeset_lock_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x338b85ca drm_mode_create_tile_group -EXPORT_SYMBOL drivers/gpu/drm/drm 0x33b3467f drm_crtc_handle_vblank -EXPORT_SYMBOL drivers/gpu/drm/drm 0x33dbfe3f drm_connector_list_iter_begin -EXPORT_SYMBOL drivers/gpu/drm/drm 0x34f311c5 drm_property_create_bool -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3691d123 drm_modeset_lock -EXPORT_SYMBOL drivers/gpu/drm/drm 0x36c75a52 drm_open -EXPORT_SYMBOL drivers/gpu/drm/drm 0x36e88724 drm_gem_create_mmap_offset_size -EXPORT_SYMBOL drivers/gpu/drm/drm 0x38e319be drm_framebuffer_plane_height -EXPORT_SYMBOL drivers/gpu/drm/drm 0x390ac0c4 drm_modeset_acquire_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x39aade83 drm_flip_work_commit -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3a1dcea5 drm_atomic_state_alloc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3a2d9e28 drm_state_dump -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3ab87110 drm_mode_equal_no_clocks -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3abe8704 drm_hdmi_avi_infoframe_quant_range -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 0x3c6c391c drm_mode_object_get -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3d09e996 drm_hdmi_infoframe_set_hdr_metadata -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3d97c290 drm_syncobj_find_fence -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3def6a68 drm_gem_shmem_purge -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3e62ff9b drm_object_attach_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3f405489 __drm_printfn_err -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3fc133a0 drm_atomic_set_crtc_for_connector -EXPORT_SYMBOL drivers/gpu/drm/drm 0x40448801 drm_client_framebuffer_create -EXPORT_SYMBOL drivers/gpu/drm/drm 0x41b37e98 __drmm_encoder_alloc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x43a19c4f drm_gem_map_detach -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 0x44fb3805 drm_connector_attach_hdr_output_metadata_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x454fc7ab drm_panel_prepare -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4575a0ca drm_mode_set_crtcinfo -EXPORT_SYMBOL drivers/gpu/drm/drm 0x475c6a9f drm_crtc_from_index -EXPORT_SYMBOL drivers/gpu/drm/drm 0x477c8fa9 drm_ioctl_kernel -EXPORT_SYMBOL drivers/gpu/drm/drm 0x47d1b9e0 drm_crtc_wait_one_vblank -EXPORT_SYMBOL drivers/gpu/drm/drm 0x484d6d9c drm_property_create_signed_range -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4888685c drm_i2c_encoder_detect -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4971e4d6 drm_syncobj_get_fd -EXPORT_SYMBOL drivers/gpu/drm/drm 0x49a0042e drm_mode_crtc_set_gamma_size -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4a35d30d drm_mode_set_name -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4a7cf550 drm_panel_enable -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4aef2dda drm_connector_atomic_hdr_metadata_equal -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4b7ebf95 drm_mm_remove_node -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4bfc2280 drm_hdmi_avi_infoframe_colorspace -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4d02e2be drm_gem_prime_handle_to_fd -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4d2f3bc0 drm_get_format_info -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4de97383 drm_mode_parse_command_line_for_connector -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4e70a16e drm_atomic_bridge_chain_enable -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4f18a150 __drm_debug -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4fa62bf1 drm_dev_enter -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4ff89786 drm_aperture_remove_conflicting_pci_framebuffers -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 0x51426d0a drm_crtc_vblank_waitqueue -EXPORT_SYMBOL drivers/gpu/drm/drm 0x516feb30 drm_writeback_get_out_fence -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5181311e drm_bridge_chain_pre_enable -EXPORT_SYMBOL drivers/gpu/drm/drm 0x521ad6d0 drm_puts -EXPORT_SYMBOL drivers/gpu/drm/drm 0x52ac50a9 drm_event_reserve_init_locked -EXPORT_SYMBOL drivers/gpu/drm/drm 0x52ddb999 drm_sysfs_hotplug_event -EXPORT_SYMBOL drivers/gpu/drm/drm 0x540dab7f drm_crtc_send_vblank_event -EXPORT_SYMBOL drivers/gpu/drm/drm 0x54514347 drm_gem_put_pages -EXPORT_SYMBOL drivers/gpu/drm/drm 0x549e2142 drm_av_sync_delay -EXPORT_SYMBOL drivers/gpu/drm/drm 0x54a62877 drm_vma_node_revoke -EXPORT_SYMBOL drivers/gpu/drm/drm 0x551bc55f drm_client_dev_hotplug -EXPORT_SYMBOL drivers/gpu/drm/drm 0x56ca1306 drm_gem_shmem_unpin -EXPORT_SYMBOL drivers/gpu/drm/drm 0x57211854 drm_ioctl -EXPORT_SYMBOL drivers/gpu/drm/drm 0x57698a50 drm_mm_takedown -EXPORT_SYMBOL drivers/gpu/drm/drm 0x577f0253 drm_crtc_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x57b6efe3 drm_ioctl_flags -EXPORT_SYMBOL drivers/gpu/drm/drm 0x57d7a908 drm_debugfs_remove_files -EXPORT_SYMBOL drivers/gpu/drm/drm 0x58b62275 drm_gem_object_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0x59056243 drm_mm_replace_node -EXPORT_SYMBOL drivers/gpu/drm/drm 0x59146371 drm_prime_gem_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm 0x59ffe8e9 drm_object_property_get_value -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5a1dacd0 __devm_drm_dev_alloc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5b387522 drm_bridge_chain_post_disable -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5bd98813 __drm_atomic_helper_disable_plane -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5c890a49 drm_atomic_state_default_clear -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5cd8b3cb drm_mode_is_420_also -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5ce4d4e9 drm_mode_create -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5ddf3f88 drm_hdmi_avi_infoframe_bars -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5f7985a5 drm_mm_scan_remove_block -EXPORT_SYMBOL drivers/gpu/drm/drm 0x60992a78 drm_crtc_vblank_count -EXPORT_SYMBOL drivers/gpu/drm/drm 0x61754765 drm_property_create_object -EXPORT_SYMBOL drivers/gpu/drm/drm 0x62e54e8e drm_gem_map_attach -EXPORT_SYMBOL drivers/gpu/drm/drm 0x64647ca5 drm_gem_fence_array_add_implicit -EXPORT_SYMBOL drivers/gpu/drm/drm 0x649216fa drm_gem_private_object_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x65702bd6 drm_default_rgb_quant_range -EXPORT_SYMBOL drivers/gpu/drm/drm 0x665c87d0 drm_gem_prime_mmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0x670768d0 drm_atomic_add_affected_planes -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6719e95c drm_plane_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x68143c0d drm_atomic_set_fb_for_plane -EXPORT_SYMBOL drivers/gpu/drm/drm 0x687c1011 drm_atomic_bridge_chain_disable -EXPORT_SYMBOL drivers/gpu/drm/drm 0x68d33c16 drm_panel_add -EXPORT_SYMBOL drivers/gpu/drm/drm 0x68f983b7 drm_invalid_op -EXPORT_SYMBOL drivers/gpu/drm/drm 0x691bd063 drm_dev_printk -EXPORT_SYMBOL drivers/gpu/drm/drm 0x69477922 __drmm_add_action_or_reset -EXPORT_SYMBOL drivers/gpu/drm/drm 0x69f52e38 __drmm_universal_plane_alloc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x69fbe33a drm_prime_pages_to_sg -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6b6c06e9 drm_vblank_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6bdc65a7 drm_gem_cma_prime_import_sg_table_vmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6d08a2bf drm_of_component_probe -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6d8d00a5 drmm_kmalloc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6dc76210 drm_get_edid -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6df9aada drm_atomic_get_private_obj_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6dfb4b02 drm_connector_init_with_ddc -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 0x70f3eb1b drm_mode_create_dvi_i_properties -EXPORT_SYMBOL drivers/gpu/drm/drm 0x725ea91b drm_master_put -EXPORT_SYMBOL drivers/gpu/drm/drm 0x72c912de drm_bridge_chain_enable -EXPORT_SYMBOL drivers/gpu/drm/drm 0x72f10783 drm_connector_attach_colorspace_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x732d308b drm_crtc_vblank_get -EXPORT_SYMBOL drivers/gpu/drm/drm 0x73abc05d drm_atomic_normalize_zpos -EXPORT_SYMBOL drivers/gpu/drm/drm 0x744fb81a drm_atomic_set_mode_prop_for_crtc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x74701069 drm_ioctl_permit -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7489c68d drm_writeback_queue_job -EXPORT_SYMBOL drivers/gpu/drm/drm 0x74e703ee drm_atomic_set_crtc_for_plane -EXPORT_SYMBOL drivers/gpu/drm/drm 0x765d15df drm_i2c_encoder_prepare -EXPORT_SYMBOL drivers/gpu/drm/drm 0x785deebe drm_plane_create_color_properties -EXPORT_SYMBOL drivers/gpu/drm/drm 0x79579ccf drm_framebuffer_unregister_private -EXPORT_SYMBOL drivers/gpu/drm/drm 0x79ea2f38 drm_probe_ddc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7abf7a90 drm_gem_fence_array_add -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7ad37106 drm_client_modeset_probe -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7b298364 drm_noop -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7b632682 drm_gem_cma_print_info -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7d0e9d2b drm_connector_attach_dp_subconnector_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7da90de9 drm_bridge_remove -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7e792137 drm_compat_ioctl -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7edf470b drm_edid_duplicate -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7efe7fdb drm_property_lookup_blob -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7f640ebb drm_modeset_unlock_all -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7f8dff33 drm_mode_create_dp_colorspace_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x80d5a160 drm_connector_set_link_status_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x81022d7d drm_property_blob_put -EXPORT_SYMBOL drivers/gpu/drm/drm 0x81992424 drm_edid_header_is_valid -EXPORT_SYMBOL drivers/gpu/drm/drm 0x822a3534 drm_gem_vmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0x829599de drm_gem_dmabuf_export -EXPORT_SYMBOL drivers/gpu/drm/drm 0x829f746e __drm_atomic_helper_set_config -EXPORT_SYMBOL drivers/gpu/drm/drm 0x82a82e4b drm_vma_offset_lookup_locked -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8362d6e3 drm_gem_objects_lookup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x842ca95e drm_connector_set_tile_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x849949ad drm_crtc_set_max_vblank_count -EXPORT_SYMBOL drivers/gpu/drm/drm 0x851469a1 drm_syncobj_find -EXPORT_SYMBOL drivers/gpu/drm/drm 0x851eb889 drm_color_lut_check -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8563a554 drm_ht_remove -EXPORT_SYMBOL drivers/gpu/drm/drm 0x85825e72 drm_dev_unplug -EXPORT_SYMBOL drivers/gpu/drm/drm 0x86e78698 drm_modeset_lock_all_ctx -EXPORT_SYMBOL drivers/gpu/drm/drm 0x871ab41a drm_rect_intersect -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8759c1e8 drm_master_internal_acquire -EXPORT_SYMBOL drivers/gpu/drm/drm 0x877c4865 drm_panel_unprepare -EXPORT_SYMBOL drivers/gpu/drm/drm 0x87c0b1b4 drm_event_reserve_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x88283dc4 drm_connector_attach_max_bpc_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x88bcdc41 drm_gem_dmabuf_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0x89d2b1a5 drm_property_create_range -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8ac5de55 drm_plane_enable_fb_damage_clips -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8bcba74d drm_encoder_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8bdf425f drm_add_edid_modes -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8c205cf5 drm_gem_shmem_pin -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8c94db38 drm_vblank_work_schedule -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8d72789e drm_edid_is_valid -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8eb17363 drm_driver_legacy_fb_format -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9053e287 drm_gem_handle_create -EXPORT_SYMBOL drivers/gpu/drm/drm 0x90cf8ee1 drm_event_cancel_free -EXPORT_SYMBOL drivers/gpu/drm/drm 0x918f826a drm_vblank_work_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x91d94986 drm_atomic_bridge_chain_check -EXPORT_SYMBOL drivers/gpu/drm/drm 0x91fec1cc drm_rect_calc_vscale -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9249170b drm_vblank_work_flush -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9337c2ad drm_dev_unregister -EXPORT_SYMBOL drivers/gpu/drm/drm 0x93669390 drm_mode_is_420_only -EXPORT_SYMBOL drivers/gpu/drm/drm 0x94a6991a drm_mode_put_tile_group -EXPORT_SYMBOL drivers/gpu/drm/drm 0x95dbc76d drm_ht_create -EXPORT_SYMBOL drivers/gpu/drm/drm 0x95deea8d drm_hdmi_vendor_infoframe_from_display_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0x97ce7a18 drm_panel_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x97d77fc1 drm_client_buffer_vmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9804846e of_drm_get_panel_orientation -EXPORT_SYMBOL drivers/gpu/drm/drm 0x995595e1 drm_crtc_vblank_off -EXPORT_SYMBOL drivers/gpu/drm/drm 0x99ad5f45 drm_property_destroy -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 0x9b6997e3 drm_property_blob_get -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9b711f83 drm_atomic_print_new_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9b8a53f5 drm_ht_just_insert_please -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9b95c885 drm_mode_match -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9ba95fcf drm_modeset_lock_all -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9c1efa86 drm_put_dev -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9c56efa1 drm_mode_object_put -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9ce050be drm_mode_copy -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9d0a0ecd drm_mode_create_scaling_mode_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9d0fabc3 drm_client_buffer_vunmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9dbae568 drm_crtc_create_scaling_filter_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9dc4f7b3 drm_plane_force_disable -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9ebba417 drm_detect_monitor_audio -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9f2fe01b drm_property_replace_blob -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9f567f88 drm_mode_create_tv_properties -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9fa29024 drm_panel_remove -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa0713087 drm_ht_find_item -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa16b863c drm_crtc_enable_color_mgmt -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa18c93da drm_connector_list_update -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa38c4c94 drm_memcpy_from_wc -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa3c9681a drm_writeback_prepare_job -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa40dcf38 drm_gem_shmem_purge_locked -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa47c1696 drm_mode_config_reset -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa519b262 drm_mode_prune_invalid -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa59f5d51 drm_gem_vm_open -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa5bf29cc drm_gem_handle_delete -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa5e71785 drm_writeback_signal_completion -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa6592a8d drm_connector_register -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa666eecf drm_atomic_get_plane_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa66ba3ac drm_gem_prime_fd_to_handle -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa6a78da5 drm_mode_create_tv_margin_properties -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa6eeb49f drm_of_find_possible_crtcs -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa73f80d9 drm_framebuffer_plane_width -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa7e556ef drm_gem_shmem_vunmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa85ff6e5 drm_property_replace_global_blob -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa95201dc drm_any_plane_has_format -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa9787827 drm_connector_set_panel_orientation_with_quirk -EXPORT_SYMBOL drivers/gpu/drm/drm 0xaa183e82 devm_aperture_acquire_from_firmware -EXPORT_SYMBOL drivers/gpu/drm/drm 0xaacbd6b7 drm_dev_get -EXPORT_SYMBOL drivers/gpu/drm/drm 0xace6cecf drm_client_release -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 0xaf23a1bb drm_mode_create_aspect_ratio_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xafa4e4be drm_crtc_vblank_put -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb00121b2 drm_mode_create_from_cmdline_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb0312949 drm_mode_probed_add -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb053adda drm_rect_rotate -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb0ab6734 drm_connector_attach_encoder -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb0b05ff5 drm_clflush_sg -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb0ecec20 drm_client_modeset_commit_locked -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb11ac7a7 __drm_err -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb122380e drm_plane_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb1fc7cc7 drm_property_create -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb229dfc1 drm_crtc_vblank_on -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb22dfd68 drm_format_info_min_pitch -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb3414fef drm_connector_attach_content_type_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb36fd7f4 drm_send_event_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 0xb4914572 drm_sysfs_connector_status_event -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb6127243 drm_need_swiotlb -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb6691bf9 drm_atomic_state_default_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb6adcb6c drm_modeset_lock_single_interruptible -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb87641f1 drm_connector_list_iter_end -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb8cd7f46 drm_client_framebuffer_flush -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb8fd8a8d drm_writeback_connector_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb90ebca6 drm_syncobj_get_handle -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb95cd00f drm_plane_from_index -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb9bbc44b drm_gem_vunmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb9c2c387 drm_plane_create_zpos_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb9cad492 __drm_atomic_state_free -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbaa58340 drm_gem_dma_resv_wait -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbac1aae6 drm_crtc_vblank_reset -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbb725c01 drm_plane_create_zpos_immutable_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbbc1db9c drm_connector_update_edid_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbdd6d9f3 drm_flip_work_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbe04b33e drm_connector_unregister -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbfc45258 drm_property_create_bitmask -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc0452817 drm_i2c_encoder_commit -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc084852f drm_atomic_get_new_bridge_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc0f2ae7a drm_crtc_vblank_helper_get_vblank_timestamp_internal -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc11e79c0 drm_gem_unmap_dma_buf -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc16ebd77 drm_aperture_remove_conflicting_framebuffers -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc174297e drm_master_get -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc18b64d3 drm_modeset_drop_locks -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc1b3a25c drm_plane_create_rotation_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc2918237 drm_release_noglobal -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc2fd4843 drm_i2c_encoder_mode_fixup -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc3cf1dba drm_atomic_state_clear -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc3d4e9b5 drm_atomic_get_old_private_obj_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc4fc0ee9 drm_atomic_get_new_private_obj_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc6a220ea drm_crtc_vblank_helper_get_vblank_timestamp -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc6d876db drm_handle_vblank -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc747e6b8 drm_crtc_commit_wait -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc79ebb2e drm_atomic_get_crtc_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc7a9652c drm_universal_plane_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc8961b22 drm_mode_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc896d4d7 drm_atomic_private_obj_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc8d53e3b drm_property_create_blob -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc8e6a79f drm_connector_has_possible_encoder -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc8f7ecce drm_display_mode_from_cea_vic -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc96be03c drm_flip_work_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc997afa7 drm_add_override_edid_modes -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc9a3abdf drm_calc_timestamping_constants -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc9f7c76a drm_dev_set_unique -EXPORT_SYMBOL drivers/gpu/drm/drm 0xca190085 drm_format_info_block_height -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcaecfdd7 drm_mode_create_suggested_offset_properties -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcb2340b8 drm_rect_debug_print -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcc882f45 drmm_kfree -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcc995eab drm_crtc_arm_vblank_event -EXPORT_SYMBOL drivers/gpu/drm/drm 0xccc59759 drm_format_info_block_width -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcd7781be drm_gem_object_lookup -EXPORT_SYMBOL drivers/gpu/drm/drm 0xce806ddb drm_panel_disable -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 0xd13f9985 drm_edid_block_valid -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd162fb7a drm_gem_dmabuf_vmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd1f49aa0 drm_is_current_master -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd262ffb6 drm_i2c_encoder_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd2d31012 drm_format_info_bpp -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd35e5df2 drm_of_crtc_port_mask -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd39ace0f drm_send_event -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd3e6a773 drm_connector_set_path_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd5197001 drm_i2c_encoder_restore -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd52853ff drm_gem_shmem_madvise -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd58757d0 of_drm_find_bridge -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd5a654af drm_atomic_state_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd680a377 drm_gem_object_free -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd684f4f4 __drmm_crtc_alloc_with_planes -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd7059681 drm_debugfs_create_files -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd7a9cf42 drm_mode_validate_size -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd7f0b981 drm_gem_shmem_get_pages -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd9e5c5b2 drm_syncobj_add_point -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdaf3aaad drm_connector_set_vrr_capable_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdc387118 drm_syncobj_create -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdd4ea71f drm_bridge_chain_mode_set -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdd671fc8 drm_detect_hdmi_monitor -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdd800c30 drm_vma_offset_manager_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm 0xde2484dc drm_hdmi_avi_infoframe_content_type -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 0xdf6faa89 drm_atomic_check_only -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe07de9d7 drm_print_regset32 -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe12c942d drm_atomic_bridge_chain_post_disable -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe2deb190 drm_gem_prime_import_dev -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe317082a __drm_printfn_info -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe3ddc9bc drm_framebuffer_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe4e2f896 of_drm_find_panel -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe6daea12 drm_gem_lock_reservations -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe6f11be6 drm_gem_mmap_obj -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe7c026bd drm_vma_node_allow -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe85f1636 drm_mode_duplicate -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe8a034df drm_dev_exit -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe954058a drm_atomic_get_bridge_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0xea00fe81 __drm_printfn_coredump -EXPORT_SYMBOL drivers/gpu/drm/drm 0xeac1849c drm_gtf_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0xeb0f8ac0 drm_atomic_add_encoder_bridges -EXPORT_SYMBOL drivers/gpu/drm/drm 0xeba09423 drm_crtc_accurate_vblank_count -EXPORT_SYMBOL drivers/gpu/drm/drm 0xeba5fbbc drm_vma_offset_manager_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xebac5395 drm_atomic_get_old_connector_for_encoder -EXPORT_SYMBOL drivers/gpu/drm/drm 0xec12af74 __drm_dbg -EXPORT_SYMBOL drivers/gpu/drm/drm 0xec84b4c9 drm_atomic_get_new_connector_for_encoder -EXPORT_SYMBOL drivers/gpu/drm/drm 0xed4e67f2 drm_mode_is_420 -EXPORT_SYMBOL drivers/gpu/drm/drm 0xed85b1f8 drm_dev_register -EXPORT_SYMBOL drivers/gpu/drm/drm 0xeeccad12 drm_bridge_add -EXPORT_SYMBOL drivers/gpu/drm/drm 0xef38f3e9 drm_gem_free_mmap_offset -EXPORT_SYMBOL drivers/gpu/drm/drm 0xef892d94 drm_atomic_set_fence_for_plane -EXPORT_SYMBOL drivers/gpu/drm/drm 0xefc7ad5e drm_bridge_chain_mode_valid -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf0517d7a drm_mm_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf09ecbfb drm_i2c_encoder_mode_set -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf1421d13 drm_mode_sort -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf16c4383 drm_dev_has_vblank -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf1b5340a drm_mode_vrefresh -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf1db4b26 drm_mode_config_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf1eb0ac2 drm_hdmi_avi_infoframe_from_display_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf2ad0424 drm_gem_create_mmap_offset -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf2c71a09 drm_connector_attach_vrr_capable_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf3ed85b3 drm_get_edid_switcheroo -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf406e46a drm_get_connector_type_name -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf4873c68 drm_mode_create_hdmi_colorspace_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf4fd4e83 drm_modeset_backoff -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf60ca8a5 drm_atomic_set_mode_for_crtc -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf661d4cc drm_clflush_pages -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf76573c9 drm_crtc_init_with_planes -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf76bcad5 drm_plane_create_alpha_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf7ae6328 drm_vblank_work_cancel_sync -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf7ae932c drm_mode_get_tile_group -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf824c7db __drm_printfn_debug -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfa6816be drm_property_create_enum -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfa734fa0 drm_i2c_encoder_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfb4ad52c drm_bridge_chain_mode_fixup -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfc9a00e9 drm_bridge_chain_disable -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfd547924 drm_hdcp_update_content_protection -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfd7ff384 drm_framebuffer_lookup -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfdc9324f drm_vma_offset_remove -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfe978f9c drm_flip_work_queue -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfeb953b1 __drm_printfn_seq_file -EXPORT_SYMBOL drivers/gpu/drm/drm 0xff039d88 drm_flip_work_queue_task -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x01c4bba9 drm_dp_lttpr_max_link_rate -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x01ce900a __drm_gem_duplicate_shadow_plane_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x02c0f4d6 drm_dp_pcon_frl_enable -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x02fd4e52 drm_atomic_helper_set_config -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0328d28f drm_atomic_helper_dirtyfb -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x03be5c4d drm_dp_lttpr_link_train_channel_eq_delay -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x05313ddb drm_dp_mst_get_edid -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0607610b drm_atomic_helper_async_commit -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x065ca578 drm_fb_helper_sys_fillrect -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x08b7e705 drm_atomic_helper_swap_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0943dce6 drm_atomic_helper_page_flip -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0be59cae drm_dp_pcon_reset_frl_config -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0e933faf __drm_atomic_helper_crtc_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0eff4064 drm_atomic_helper_commit_hw_done -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0f03aae2 __drm_atomic_helper_plane_state_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0f491e27 drm_dp_cec_set_edid -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1000ed8c __drm_atomic_helper_bridge_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x11b9fb72 drm_fb_helper_ioctl -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x129b8f4d drm_atomic_helper_wait_for_flip_done -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1491b92d drm_scdc_write -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x14c379bd drm_dp_check_act_status -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x14e3de6c drm_dp_downstream_debug -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x14edc60b drm_fb_helper_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1605d0ed drm_dp_lttpr_max_lane_count -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x16c33811 drm_dp_get_phy_test_pattern -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 0x17c9014c drm_atomic_helper_commit_tail -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x17dce32c drm_dp_cec_register_connector -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1a09a810 drm_simple_display_pipe_attach_bridge -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1a245303 drm_fb_helper_alloc_fbi -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1a363b3f 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 0x1af71f18 __drm_atomic_helper_plane_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1b0a1fdc drm_dp_lttpr_voltage_swing_level_3_supported -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1ccbd9eb drm_fb_helper_sys_read -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1dea7cb4 drm_dp_dual_mode_read -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1e43a4d6 drm_atomic_helper_connector_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1ea89910 drm_dp_dual_mode_set_tmds_output -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1f18d997 drm_dp_mst_allocate_vcpi -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x212a15c8 drm_gem_fb_create_handle -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x21a6d8db drm_helper_resume_force_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2267dee8 drm_fb_helper_cfb_imageblit -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x23961837 drm_dp_downstream_max_bpc -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x241cd8e8 drm_dp_mst_topology_mgr_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2504286e drm_dp_set_subconnector_property -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x25fd63dc drm_atomic_helper_update_plane -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x26766217 drm_dp_pcon_frl_prepare -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x26815dbc drm_dp_link_rate_to_bw_code -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2797c593 drm_scdc_get_scrambling_status -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x27c7cca6 drm_dp_pcon_pps_override_param -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x28a3bfc8 drm_dp_read_mst_cap -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x295b383d drm_atomic_helper_crtc_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2c466780 drm_atomic_helper_wait_for_vblanks -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2d1c34e7 drm_panel_bridge_remove -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2d3d0148 drm_atomic_helper_shutdown -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2e410693 drm_dp_atomic_find_vcpi_slots -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2ecb932b drm_dp_read_downstream_info -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2f4fb324 drm_dp_update_payload_part2 -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2fa94ef2 drm_dp_downstream_444_to_420_conversion -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x31ff162d drm_helper_move_panel_connectors_to_head -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3277a2c1 drm_dp_pcon_hdmi_frl_link_error_count -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x32935ae3 drm_dp_mst_topology_mgr_set_mst -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x32a944bc __drm_gem_destroy_shadow_plane_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x335834be drm_helper_probe_single_connector_modes -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x33f8125f drm_dp_atomic_release_vcpi_slots -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x345a96c2 drm_kms_helper_poll_fini -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x375538d6 drm_scdc_read -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x381024bb drm_dp_mst_topology_mgr_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x392a838b drm_dp_downstream_max_dotclock -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3970a183 drm_atomic_helper_plane_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x39d8e95d drm_atomic_helper_check_crtc_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3b30ecae drm_dp_mst_dump_topology -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3b505e91 drm_dp_pcon_frl_configure_2 -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3c339d74 drm_gem_fb_vunmap -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3dd5fef1 drm_atomic_helper_disable_planes_on_crtc -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3ee43899 drm_helper_mode_fill_fb_struct -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3eec64c0 drm_fb_helper_blank -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3fd1c069 __drm_atomic_helper_connector_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4032c5a9 drm_mode_config_helper_suspend -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x419679f2 drm_dp_mst_add_affected_dsc_crtcs -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x42e4d58a drm_dp_dpcd_read -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x43d6697a drm_fb_helper_fini -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x448385a2 drm_fb_helper_unregister_fbi -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4603c416 drm_dp_pcon_dsc_bpp_incr -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x468bbdb7 drm_dp_read_dpcd_caps -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x46b62471 drm_atomic_helper_cleanup_planes -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4732c6db drm_crtc_helper_set_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4775e757 drm_atomic_helper_check_planes -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4777b8ac drm_dp_mst_connector_early_unregister -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x47928e4d drm_atomic_helper_plane_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x48d7fb3c drm_edp_backlight_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4af0fe28 drm_dp_mst_topology_mgr_suspend -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4ce46772 drm_gem_fb_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4cfe47cb drm_fb_helper_prepare -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4d370efa drm_fbdev_generic_setup -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4db855a9 drm_dp_dpcd_write -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4dc186d9 drm_gem_duplicate_shadow_plane_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4e64157f drm_atomic_helper_commit_modeset_enables -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4e79c60a drm_scdc_set_scrambling -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x52ad88b4 drm_crtc_helper_set_config -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x52dc02c1 drm_atomic_helper_damage_merged -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x531af635 drm_dp_cec_unset_edid -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5407ae9e drm_dp_get_dual_mode_type_name -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x55bee6bd drm_dp_mst_detect_port -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x563371cf drm_gem_simple_kms_destroy_shadow_plane_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x56a663e9 drm_dp_dsc_sink_line_buf_depth -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x57757f2b drm_self_refresh_helper_alter_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x582f248e drm_dp_get_adjust_request_pre_emphasis -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x58d8fcaa drm_dsc_pps_payload_pack -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x592f420d drm_dp_read_sink_count -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 0x5a26cc13 drm_dp_aux_unregister -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5a4734d1 drm_kms_helper_is_poll_worker -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5a709fb7 drm_fb_swab -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5bcf919e drm_dp_aux_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5d21e94e drm_fb_xrgb8888_to_xrgb2101010_toio -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5d4bcd49 drm_dp_mst_hpd_irq -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5d50890f drm_atomic_helper_commit_tail_rpm -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5ea216f0 drm_dp_dpcd_read_link_status -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5eff7864 drm_atomic_helper_connector_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x61a50006 drm_gem_simple_display_pipe_prepare_fb -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 0x64995414 drm_fb_helper_deferred_io -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x65b96e19 drm_fb_helper_cfb_fillrect -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x65de4775 drm_dp_start_crc -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6626f2e7 drm_panel_bridge_connector -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x665aa236 drm_atomic_helper_bridge_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x67a7c66a drm_fb_helper_set_suspend -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x67c4c228 drm_dp_send_power_updown_phy -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x67cd0c27 drm_self_refresh_helper_update_avg_times -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x680fdf7d drm_dp_pcon_hdmi_link_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x68d8dce7 drm_dp_downstream_is_tmds -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x695890e0 __drm_atomic_helper_plane_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x69e23165 drm_dp_mst_connector_late_register -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6a85b82a drm_gem_fb_begin_cpu_access -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6adcefc1 drm_atomic_helper_check_modeset -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 0x6becee0e drm_fb_helper_debug_leave -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6e66cff1 drm_fb_xrgb8888_to_rgb565_toio -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6ee32534 drm_dp_mst_reset_vcpi_slots -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6f845c95 drm_panel_dp_aux_backlight -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7053fa72 drm_dp_get_pcon_max_frl_bw -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x70fb59d1 drm_atomic_helper_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7145583a drm_fb_memcpy_toio -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x716ff231 drm_dp_dpcd_read_phy_link_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 0x7394e413 drm_atomic_helper_update_legacy_modeset_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x73c4bab6 __drm_gem_reset_shadow_plane -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x73d8e765 drm_helper_encoder_in_use -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x745e8d4b devm_drm_of_get_bridge -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x746ead41 drm_fb_helper_lastclose -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7494cff2 drm_dp_mst_dsc_aux_for_port -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7516fd1d drm_dp_remote_aux_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x760398c6 drm_dp_mst_put_port_malloc -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7658d3ed drm_atomic_helper_commit_modeset_disables -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 0x77575617 drm_kms_helper_poll_enable -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x79c5d190 drm_atomic_helper_disable_plane -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7ae0acac devm_drm_panel_bridge_add_typed -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7af69ccf drm_atomic_helper_plane_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7d277a29 drm_helper_probe_detect -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7ddadf3c drm_helper_connector_dpms -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7e37bcc7 drm_atomic_helper_commit -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7f676a30 drm_dp_mst_topology_mgr_resume -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x819de76e drm_gem_fb_vmap -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x81c711b0 drm_atomic_helper_prepare_planes -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x81ef4e66 drm_atomic_helper_wait_for_fences -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x829b6048 drm_dp_dsc_sink_max_slice_count -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8342a414 drm_fb_build_fourcc_list -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x83a567d8 drm_kms_helper_poll_disable -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8464ba57 drm_dp_pcon_is_frl_ready -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x87352862 drm_panel_bridge_add_typed -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x894b1f57 drm_dp_get_adjust_request_post_cursor -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8c1622cb drm_fb_helper_check_var -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8c72e31b drm_self_refresh_helper_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8c883694 drm_dp_mst_atomic_enable_dsc -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 0x8e1f4c89 drm_gem_simple_kms_duplicate_shadow_plane_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x92167098 __drm_atomic_helper_connector_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x94960768 drm_dp_set_phy_test_pattern -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x95d16f9b drm_atomic_helper_check -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x96a9e4e1 drm_dp_pcon_pps_override_buf -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x96b9c485 drm_dp_mst_get_vcpi_slots -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x98a27ea1 drm_dp_link_train_clock_recovery_delay -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9b8dfe5e drm_dp_dual_mode_detect -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9cd8fb91 drm_helper_hpd_irq_event -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9d0f3fed drm_fb_helper_output_poll_changed -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9d922c8c drm_dp_send_query_stream_enc_status -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa12a7158 drm_dp_pcon_hdmi_link_active -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa17a78cc drm_atomic_get_mst_topology_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa1fefe6a drm_dp_psr_setup_time -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa26278dc drm_dp_downstream_id -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa38953ae drm_atomic_helper_setup_commit -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa537df21 drm_atomic_helper_async_check -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa70d24d8 drm_mode_config_helper_resume -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa75c1454 drm_gem_prepare_shadow_fb -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa843606e drm_dp_dsc_sink_supported_input_bpcs -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa8549f9c drm_dp_read_lttpr_phy_caps -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa92741fe drm_atomic_helper_disable_all -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa96e2cd2 drm_dp_aux_register -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa97b8c47 drm_fb_helper_restore_fbdev_mode_unlocked -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xabda9412 __drmm_simple_encoder_alloc -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xac337b8a drm_primary_helper_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xae51f17d drm_atomic_helper_suspend -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xaf267620 drm_dp_lttpr_count -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb2f7f5b3 drm_dp_dual_mode_max_tmds_clock -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb308100e drm_gem_reset_shadow_plane -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb4519282 drm_atomic_helper_connector_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb5295b02 drm_dp_stop_crc -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb52c7cc5 drm_atomic_helper_check_plane_damage -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb5c3da93 __drm_atomic_helper_connector_state_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb73600f6 drm_fb_helper_fill_info -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb77965cd drm_atomic_helper_damage_iter_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb79c82b8 drm_lspcon_set_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb8098deb drm_fb_helper_cfb_copyarea -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb85683b4 drm_fb_helper_hotplug_event -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb99802e8 devm_drm_panel_bridge_add -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xba9fb471 drm_fb_xrgb8888_to_rgb565 -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbab1371c drm_dp_pcon_pps_default -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbb95e7aa drm_gem_simple_kms_reset_shadow_plane -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbbac9451 drm_atomic_helper_bridge_propagate_bus_fmt -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbbba521b drm_fb_helper_initial_config -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbd51b917 drm_simple_encoder_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbd73a805 drm_atomic_helper_crtc_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbe057a75 drm_dp_read_desc -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbe0a9b91 drm_simple_display_pipe_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbec34b8e __drm_atomic_helper_crtc_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbf74c7c0 drm_dp_update_payload_part1 -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc020c0c1 drm_dp_pcon_dsc_max_slice_width -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc06e80a5 drm_atomic_helper_commit_planes_on_crtc -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc1086b0b drm_dp_find_vcpi_slots -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc1697c04 drm_dp_dual_mode_write -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc27ae1ab drm_gem_cleanup_shadow_fb -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc307669e drm_fb_xrgb8888_to_rgb888_toio -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc3e18c26 drm_dp_mst_topology_state_funcs -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc4713d38 drm_gem_simple_kms_cleanup_shadow_fb -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc478a59a drm_atomic_helper_resume -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc5c99a79 drm_dp_get_adjust_request_voltage -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc67fd2a4 __drm_atomic_helper_bridge_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc68787df drm_primary_helper_funcs -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc68e800f drm_lspcon_get_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc6f96dc4 drm_atomic_helper_commit_duplicated_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc79ecffb drm_dp_downstream_is_type -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc8e1335e drm_fb_blit -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcbb2bf9d drm_dp_read_lttpr_common_caps -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcc5ce800 drm_fb_memcpy -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcd1dcd78 drm_atomic_helper_wait_for_dependencies -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcdd7f27e drm_fb_helper_debug_enter -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xce6f3cef drm_atomic_helper_calc_timestamping_constants -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcebacebe drm_atomic_helper_page_flip_target -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcf7b1bc4 drm_gem_fb_end_cpu_access -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd0d50b10 drm_atomic_helper_fake_vblank -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd1274f5c drm_helper_disable_unused_functions -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd18fcc1a drm_dp_pcon_convert_rgb_to_ycbcr -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd1975c0e drm_atomic_helper_crtc_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd1c426ca __drm_atomic_helper_private_obj_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd1e4633e drm_edp_backlight_set_level -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd20f901e drm_fb_xrgb8888_to_mono -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd2a7a2eb drm_dp_pcon_frl_configure_1 -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd2d0fd7f drm_kms_helper_hotplug_event -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd3347043 drm_helper_crtc_in_use -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd3ccdc09 drm_dp_cec_unregister_connector -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd42a1981 drm_fb_helper_set_par -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd44efc32 drm_dp_get_vc_payload_bw -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd4630b54 __drm_atomic_helper_crtc_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd68aa173 drm_fb_helper_pan_display -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd98d859a drm_panel_bridge_add -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd9f4783c drm_scdc_set_high_tmds_clock_ratio -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdbec468a drm_fb_helper_sys_copyarea -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdcc8326b drm_dp_dual_mode_get_tmds_output -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xddc68d37 drm_gem_simple_kms_prepare_shadow_fb -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdeb8d386 __drm_atomic_helper_connector_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdfca32dd drm_dp_downstream_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe30522ea drm_crtc_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe335ba62 drm_dp_send_real_edid_checksum -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe371a438 drm_dp_read_sink_count_cap -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe4686f50 drm_dp_mst_deallocate_vcpi -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe4c4ed6f drm_edp_backlight_disable -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe5360b84 drm_dp_pcon_dsc_max_slices -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe6d4d160 drm_fb_helper_sys_imageblit -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe74ad235 drm_fb_xrgb8888_to_gray8 -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe78faee8 __drm_atomic_helper_crtc_state_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xeae25c27 drm_fb_helper_set_suspend_unlocked -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xed2ca80f drm_gem_destroy_shadow_plane_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xed8b7aa1 drm_edp_backlight_enable -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xedcf81ce drm_dp_channel_eq_ok -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xee7050bc drm_helper_force_disable_all -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf0c64f31 drm_fb_xrgb8888_to_rgb332 -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf0d49ac6 drm_atomic_helper_bridge_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf1967835 drm_atomic_helper_check_plane_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf1ca3857 drm_dp_mst_get_port_malloc -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf30db916 drm_fb_clip_offset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf363d9f3 drm_atomic_helper_commit_cleanup_done -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf37d4447 __drm_atomic_helper_plane_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf470e51a drm_atomic_helper_bridge_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf5e401df drm_dp_vsc_sdp_log -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 0xf77a18f5 drm_dp_link_train_channel_eq_delay -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf9101fc1 drm_fb_helper_setcmap -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfb1a7a5a drm_dp_downstream_rgb_to_ycbcr_conversion -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfc08b38e drm_atomic_helper_connector_tv_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfc0aa87d drm_dp_cec_irq -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfc5788ba drm_fb_xrgb8888_to_rgb888 -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfd459809 drm_kms_helper_poll_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfe12bcb9 drm_dsc_compute_rc_parameters -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfee0a151 drm_self_refresh_helper_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xff6c1236 drm_dp_mst_atomic_check -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xff9c14a1 drm_fb_helper_sys_write -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x0711e9f3 mipi_dbi_command_stackbuf -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x4864b72d mipi_dbi_poweron_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x4eec1511 mipi_dbi_poweron_conditional_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x5660552c mipi_dbi_buf_copy -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x79edaf67 mipi_dbi_debugfs_init -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x9a6159f4 mipi_dbi_dev_init_with_formats -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x9c35c73d mipi_dbi_display_is_on -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x9f7fd2a4 mipi_dbi_command_read -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xa1cbc099 mipi_dbi_spi_init -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xab1d31be mipi_dbi_hw_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xaeac12c6 mipi_dbi_pipe_disable -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xb27a1696 mipi_dbi_spi_cmd_max_speed -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xb50e6bc4 mipi_dbi_command_buf -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xbe2877bc mipi_dbi_enable_flush -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xc1f2a6bd mipi_dbi_spi_transfer -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xc9bd4fab mipi_dbi_pipe_update -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xe3b51915 mipi_dbi_dev_init -EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0x1ec82968 drm_gem_ttm_vunmap -EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0x616a3f5f drm_gem_ttm_vmap -EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0x8ab35def drm_gem_ttm_dumb_map_offset -EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0xb60393fe drm_gem_ttm_mmap -EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0xde77cb9c drm_gem_ttm_print_info -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x15068b1a drm_vram_mm_debugfs_init -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x1befed3e drm_gem_vram_simple_display_pipe_cleanup_fb -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x2980099f drm_gem_vram_plane_helper_prepare_fb -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x422548b7 drm_gem_vram_driver_dumb_create -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x4c3474ed drm_gem_vram_pin -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x5da7b638 drm_gem_vram_vmap -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x66a2ab44 drm_gem_vram_put -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x854da4d5 drm_gem_vram_simple_display_pipe_prepare_fb -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x87a2ba50 drmm_vram_helper_init -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xb31d5d71 drm_gem_vram_create -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xe0f62565 drm_gem_vram_plane_helper_cleanup_fb -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xe27b5265 drm_gem_vram_fill_create_dumb -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xe64c6e39 drm_gem_vram_offset -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xf22d6c9d drm_vram_helper_mode_valid -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xf55c083b drm_gem_vram_unpin -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xfbc96cd1 drm_gem_vram_vunmap -EXPORT_SYMBOL drivers/gpu/drm/rockchip/rockchipdrm 0x3969bc66 rockchip_drm_wait_vact_end -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x0ede706b drm_sched_resume_timeout -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x35835efa drm_sched_init -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x3a33f15a drm_sched_job_cleanup -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x3ce6e59d drm_sched_dependency_optimized -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x48bb5576 drm_sched_suspend_timeout -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x48fa5976 drm_sched_job_init -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x648bd72d drm_sched_start -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x6c89a27b drm_sched_entity_init -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x7cc5e34f drm_sched_entity_push_job -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x81b3a4a6 to_drm_sched_fence -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x85b4f651 drm_sched_stop -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x87fbb547 drm_sched_entity_flush -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x8c294649 drm_sched_entity_fini -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x91125c0d drm_sched_increase_karma -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xa463aa42 drm_sched_increase_karma_ext -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xb7a9bfd8 drm_sched_fault -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xbb999826 drm_sched_entity_destroy -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xbde12f84 drm_sched_reset_karma -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xcdcfe9da drm_sched_resubmit_jobs -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xd5ebd975 drm_sched_entity_modify_sched -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xd774667f drm_sched_pick_best -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xd93322a6 drm_sched_entity_set_priority -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xe6b089a3 drm_sched_resubmit_jobs_ext -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xe9058d2d drm_sched_fini -EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-frontend 0x0ec3963a sun4i_frontend_update_coord -EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-frontend 0x83a1b0c2 sun4i_frontend_update_formats -EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-frontend 0x96413fdb sunxi_bt601_yuv2rgb_coef -EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-frontend 0xa631b179 sun4i_frontend_format_is_supported -EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-frontend 0xe13164ef sun4i_frontend_of_table -EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-frontend 0xe8918021 sun4i_frontend_update_buffer -EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-frontend 0xe97f3451 sun4i_frontend_init -EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-frontend 0xee129bb5 sun4i_frontend_enable -EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-frontend 0xef2a793b sun4i_frontend_exit -EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-tcon 0x0d6f878a sun4i_dclk_free -EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-tcon 0x18ac5bf7 sun4i_lvds_init -EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-tcon 0x5c83f97f sun4i_dclk_create -EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-tcon 0x6c10c7a7 sun4i_tcon_of_table -EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-tcon 0x8286689e sun4i_rgb_init -EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-tcon 0xae2d5ae7 sun4i_tcon_mode_set -EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-tcon 0xea75b833 sun4i_tcon_enable_vblank -EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun8i_tcon_top 0x350e5dcd sun8i_tcon_top_of_table -EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun8i_tcon_top 0x363b7b25 sun8i_tcon_top_set_hdmi_src -EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun8i_tcon_top 0xcb24e29b sun8i_tcon_top_de_config -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x0145eb39 ttm_bo_vmap -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x09866424 ttm_bo_vunmap -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x0b9bb48c ttm_bo_validate -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x0d2b2d78 ttm_pool_free -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x0ddd7745 ttm_bo_kunmap -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x0fda3392 ttm_bo_put -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1276c5f1 ttm_bo_lock_delayed_workqueue -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x14aa9a1a ttm_tt_populate -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1beca195 ttm_bo_vm_access -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1dc23a47 ttm_bo_vm_dummy_page -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1ebcf047 ttm_bo_move_to_lru_tail -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x38829ed6 ttm_glob -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4aefee8f ttm_tt_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4cd72bd8 ttm_bo_unmap_virtual -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5b822eba ttm_bo_kmap -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5c502b9a ttm_device_fini -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x60ea09da ttm_pool_debugfs -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x628e2cea ttm_sg_tt_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x62ec60eb ttm_kmap_iter_iomap_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6d1d16b5 ttm_bo_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6eaae7ae ttm_eu_backoff_reservation -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x711f04cc ttm_range_man_fini -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x774ae623 ttm_bo_wait -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7e8f8ea8 ttm_eu_reserve_buffers -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7efd45ef ttm_bo_vm_open -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x81196c26 ttm_bo_mmap_obj -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8e51cd3b ttm_bo_mem_space -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8eb41515 ttm_bo_vm_reserve -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x9dad05a4 ttm_resource_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa34d4eca ttm_device_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa7c64131 ttm_bo_eviction_valuable -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa801f4a2 ttm_resource_free -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa9457649 ttm_eu_fence_buffer_objects -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xaf284aec ttm_resource_manager_evict_all -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb2d4a56a ttm_io_prot -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb51e185e ttm_global_swapout -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb628c7ba ttm_bo_vm_close -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb753ca08 ttm_bo_mem_compat -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb8d50244 ttm_kmap_iter_tt_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc53faf32 ttm_bo_init_reserved -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc8420f40 ttm_pool_alloc -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc9afd1ce ttm_tt_destroy_common -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xcabfeafc ttm_bo_unlock_delayed_workqueue -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xcf044dda ttm_bo_vm_fault_reserved -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd04f4862 ttm_resource_manager_debug -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd6621364 ttm_move_memcpy -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd908bb1c ttm_range_man_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe06d17c4 ttm_bo_bulk_move_lru_tail -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf1b4c220 ttm_bo_move_memcpy -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf3b25234 ttm_bo_vm_fault -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf7d37035 ttm_device_swapout -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf811c1c3 ttm_resource_manager_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xfadef18f ttm_tt_fini -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xffedb951 ttm_bo_move_accel_cleanup -EXPORT_SYMBOL drivers/gpu/drm/vmwgfx/vmwgfx 0x446c961c ttm_base_object_noref_lookup -EXPORT_SYMBOL drivers/gpu/drm/vmwgfx/vmwgfx 0x59a060d2 ttm_mem_glob -EXPORT_SYMBOL drivers/gpu/drm/vmwgfx/vmwgfx 0x6052860c ttm_round_pot -EXPORT_SYMBOL drivers/gpu/drm/vmwgfx/vmwgfx 0x7d3caa13 ttm_mem_global_alloc -EXPORT_SYMBOL drivers/gpu/drm/vmwgfx/vmwgfx 0xeebc086a ttm_mem_global_free -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x0fb336a5 host1x_channel_get -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x0ffa437e host1x_client_exit -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x14661d4c host1x_syncpt_put -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x18b373f7 host1x_job_get -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x2a8b1b6a host1x_fence_create -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x2d12d732 host1x_syncpt_get_base -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x2da23356 host1x_syncpt_incr_max -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x2fb94bfb host1x_syncpt_release_vblank_reservation -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x36738b59 host1x_syncpt_id -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x3f5e1da5 host1x_get_dma_mask -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x4586ca5b host1x_device_init -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x51de13ce host1x_syncpt_base_id -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x538425dc host1x_job_alloc -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x5d94c08c host1x_syncpt_get -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x609d2539 host1x_job_put -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x65e11e09 host1x_client_resume -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x6aa17031 __host1x_client_init -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x72e78e54 tegra_mipi_start_calibration -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x7d1cd2b0 host1x_job_unpin -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x7e5b90fb host1x_syncpt_read -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x8455389d host1x_driver_register_full -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x8c055403 host1x_driver_unregister -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x8f98a97b host1x_channel_put -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x9451a33e tegra_mipi_free -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x9917d711 host1x_syncpt_read_max -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xa691e874 host1x_device_exit -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xa733ff60 tegra_mipi_disable -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xad327cdf host1x_job_add_gather -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xb50b020a host1x_client_suspend -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xb67f813c host1x_syncpt_read_min -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xbcbe65a0 tegra_mipi_finish_calibration -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xbe8161cf host1x_syncpt_get_by_id -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xc16074fc host1x_channel_request -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xca329489 host1x_syncpt_wait -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xcbee8f37 host1x_job_submit -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xcf09b881 host1x_syncpt_request -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xd330c5b4 host1x_job_pin -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xd3983b8c host1x_syncpt_incr -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xd6094b26 tegra_mipi_request -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xde30f010 host1x_job_add_wait -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xe00410be host1x_syncpt_alloc -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xe6296400 __host1x_client_register -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xe7693f64 host1x_syncpt_get_by_id_noref -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xf1960dfa host1x_client_unregister -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xf8a79b19 tegra_mipi_enable -EXPORT_SYMBOL drivers/hid/hid 0x9a97b331 hid_bus_type -EXPORT_SYMBOL drivers/hv/hv_vmbus 0x6efb8c22 vmbus_sendpacket -EXPORT_SYMBOL drivers/hv/hv_vmbus 0x712b78fb 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 0x51dd8bfb 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 0x580211c1 i2c_bit_add_bus -EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0x82e76fce i2c_bit_add_numbered_bus -EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0x8b41e130 i2c_bit_algo -EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-pca 0x784f723d i2c_pca_add_numbered_bus -EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-pca 0x90a355a0 i2c_pca_add_bus -EXPORT_SYMBOL drivers/i2c/busses/i2c-amd756 0x1013d0b6 amd756_smbus -EXPORT_SYMBOL drivers/iio/accel/bma400_core 0x6c9e136e bma400_probe -EXPORT_SYMBOL drivers/iio/accel/bma400_core 0x7f64db9e bma400_remove -EXPORT_SYMBOL drivers/iio/accel/bma400_core 0xf050b2ee bma400_regmap_config -EXPORT_SYMBOL drivers/iio/accel/kxsd9 0x7a3dd261 kxsd9_common_remove -EXPORT_SYMBOL drivers/iio/accel/kxsd9 0xc60e90f4 kxsd9_dev_pm_ops -EXPORT_SYMBOL drivers/iio/accel/kxsd9 0xe55e42ee kxsd9_common_probe -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x01497f1c mma9551_read_accel_chan -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x0e6f0922 mma9551_read_config_word -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x0eb9b6f1 mma9551_write_config_word -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x165a25a0 mma9551_set_device_state -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x315fa16c mma9551_set_power_state -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x345fbce0 mma9551_read_config_words -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x41ef446c mma9551_read_accel_scale -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x45615616 mma9551_read_version -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x652f45d8 mma9551_write_config_byte -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x7b18e473 mma9551_gpio_config -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x80ba4f9f mma9551_read_config_byte -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xa08750a5 mma9551_read_status_word -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xa0d76b5f mma9551_app_reset -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xb9898277 mma9551_read_status_byte -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xbcd7fe96 mma9551_sleep -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xc2c42c87 mma9551_read_status_words -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xd4033e1b mma9551_update_config_bits -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xfe32a749 mma9551_write_config_words -EXPORT_SYMBOL drivers/iio/accel/st_accel 0x35d6b29f st_accel_common_remove -EXPORT_SYMBOL drivers/iio/accel/st_accel 0x3eb32a1f st_accel_common_probe -EXPORT_SYMBOL drivers/iio/accel/st_accel 0xfbd9d2c8 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 0x4141c62c iio_triggered_buffer_setup_ext -EXPORT_SYMBOL drivers/iio/buffer/industrialio-triggered-buffer 0x88565d62 iio_triggered_buffer_cleanup -EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0x2add7eb8 iio_kfifo_allocate -EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0x814b904f iio_kfifo_free -EXPORT_SYMBOL drivers/iio/chemical/bme680_core 0x1621011e bme680_regmap_config -EXPORT_SYMBOL drivers/iio/chemical/scd30_core 0x05807a21 scd30_resume -EXPORT_SYMBOL drivers/iio/chemical/scd30_core 0x590115f4 scd30_probe -EXPORT_SYMBOL drivers/iio/chemical/scd30_core 0xb44b64e4 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 0x125768a9 ms_sensors_ht_read_humidity -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x13cc4afa ms_sensors_read_serial -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x1b175675 ms_sensors_show_battery_low -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 0x5aa19f86 ms_sensors_show_heater -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x7732fe07 ms_sensors_tp_read_prom -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x79c9a882 ms_sensors_write_heater -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xa452806b ms_sensors_write_resolution -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xcce2cb4e ms_sensors_ht_read_temperature -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xf955acf2 ms_sensors_read_temp_and_pressure -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x1461dec2 ssp_get_sensor_delay -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x14bfc30f ssp_enable_sensor -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x35552808 ssp_register_consumer -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x9557fb9b ssp_change_delay -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0xbeafcdae ssp_disable_sensor -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/ssp_iio 0x52c49b8b ssp_common_process_data -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/ssp_iio 0xc750c21b ssp_common_buffer_postdisable -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/ssp_iio 0xdd03ab5d 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 0x0fe283c6 st_sensors_sysfs_sampling_frequency_avail -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x231906a5 st_sensors_sysfs_scale_avail -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x2d8c08c0 st_sensors_set_enable -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x2fe56ad1 st_sensors_allocate_trigger -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x3aa1a79f st_sensors_power_disable -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x6b4ded2f st_sensors_debugfs_reg_access -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x82030b90 st_sensors_read_info_raw -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x9400c7eb st_sensors_init_sensor -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xa5792fb5 st_sensors_power_enable -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xa57cf938 st_sensors_verify_id -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xb10e235d st_sensors_set_axis_enable -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xc0f679f9 st_sensors_set_odr -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xc661a146 st_sensors_set_dataready_irq -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xdbbb9752 st_sensors_dev_name_probe -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xdcacf1e3 st_sensors_get_settings_index -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xdf881626 st_sensors_deallocate_trigger -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xeadb785e st_sensors_validate_device -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xef7eb389 st_sensors_set_fullscale_by_gain -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors_i2c 0x0bf836e2 st_sensors_i2c_configure -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors_spi 0x49e7ec07 st_sensors_spi_configure -EXPORT_SYMBOL drivers/iio/gyro/mpu3050 0x04c911cd mpu3050_common_probe -EXPORT_SYMBOL drivers/iio/gyro/mpu3050 0xad904656 mpu3050_dev_pm_ops -EXPORT_SYMBOL drivers/iio/gyro/mpu3050 0xcbcba1d7 mpu3050_common_remove -EXPORT_SYMBOL drivers/iio/gyro/st_gyro 0x297ed4c5 st_gyro_common_remove -EXPORT_SYMBOL drivers/iio/gyro/st_gyro 0xc6095cb9 st_gyro_common_probe -EXPORT_SYMBOL drivers/iio/gyro/st_gyro 0xc84b2ff1 st_gyro_get_settings -EXPORT_SYMBOL drivers/iio/humidity/hts221 0x080b2509 hts221_probe -EXPORT_SYMBOL drivers/iio/humidity/hts221 0x6075ab24 hts221_pm_ops -EXPORT_SYMBOL drivers/iio/imu/bmi160/bmi160_core 0xca19cfae bmi160_enable_irq -EXPORT_SYMBOL drivers/iio/imu/bmi160/bmi160_core 0xf784e2f0 bmi160_regmap_config -EXPORT_SYMBOL drivers/iio/imu/fxos8700_core 0xffecdcfe fxos8700_regmap_config -EXPORT_SYMBOL drivers/iio/imu/st_lsm6dsx/st_lsm6dsx 0x30be2707 st_lsm6dsx_pm_ops -EXPORT_SYMBOL drivers/iio/imu/st_lsm6dsx/st_lsm6dsx 0xe251a792 st_lsm6dsx_probe -EXPORT_SYMBOL drivers/iio/industrialio 0x085680dd __iio_trigger_register -EXPORT_SYMBOL drivers/iio/industrialio 0x1e672e3f iio_device_unregister -EXPORT_SYMBOL drivers/iio/industrialio 0x22d0c00b iio_trigger_poll_chained -EXPORT_SYMBOL drivers/iio/industrialio 0x2d6bcdcb iio_trigger_generic_data_rdy_poll -EXPORT_SYMBOL drivers/iio/industrialio 0x3036f4be iio_trigger_alloc -EXPORT_SYMBOL drivers/iio/industrialio 0x33a2e7d2 iio_trigger_set_immutable -EXPORT_SYMBOL drivers/iio/industrialio 0x370d4765 __iio_device_register -EXPORT_SYMBOL drivers/iio/industrialio 0x3e9f0875 iio_get_time_res -EXPORT_SYMBOL drivers/iio/industrialio 0x4b4ba76f iio_get_time_ns -EXPORT_SYMBOL drivers/iio/industrialio 0x4f029f54 iio_trigger_notify_done -EXPORT_SYMBOL drivers/iio/industrialio 0x5272bc50 iio_device_free -EXPORT_SYMBOL drivers/iio/industrialio 0x5453d28f iio_bus_type -EXPORT_SYMBOL drivers/iio/industrialio 0x723fb987 iio_trigger_using_own -EXPORT_SYMBOL drivers/iio/industrialio 0x72a1606b iio_push_event -EXPORT_SYMBOL drivers/iio/industrialio 0x74cafee9 iio_trigger_poll -EXPORT_SYMBOL drivers/iio/industrialio 0x7b91e3a5 iio_read_const_attr -EXPORT_SYMBOL drivers/iio/industrialio 0x8abd8d63 iio_trigger_free -EXPORT_SYMBOL drivers/iio/industrialio 0xa9d3cf94 iio_trigger_unregister -EXPORT_SYMBOL drivers/iio/industrialio 0xb0cb6868 iio_device_set_clock -EXPORT_SYMBOL drivers/iio/industrialio 0xb8611c14 iio_read_mount_matrix -EXPORT_SYMBOL drivers/iio/industrialio 0xd84d659c iio_device_get_clock -EXPORT_SYMBOL drivers/iio/industrialio 0xdf76bbeb iio_pollfunc_store_time -EXPORT_SYMBOL drivers/iio/industrialio 0xf69193a0 iio_buffer_init -EXPORT_SYMBOL drivers/iio/industrialio 0xfb4ec99d iio_trigger_validate_own_device -EXPORT_SYMBOL drivers/iio/industrialio 0xfc70909f iio_device_alloc -EXPORT_SYMBOL drivers/iio/industrialio-configfs 0xdba0efa0 iio_configfs_subsys -EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0x0edd1706 iio_sw_device_destroy -EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0x81e886a1 iio_unregister_sw_device_type -EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0xb32ff3c1 iio_sw_device_create -EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0xb7d5567f iio_register_sw_device_type -EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0x0a692686 iio_sw_trigger_destroy -EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0x6a4fed39 iio_unregister_sw_trigger_type -EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0x79a82652 iio_register_sw_trigger_type -EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0xe3e82aa8 iio_sw_trigger_create -EXPORT_SYMBOL drivers/iio/industrialio-triggered-event 0x1effd863 iio_triggered_event_setup -EXPORT_SYMBOL drivers/iio/industrialio-triggered-event 0x2820d7d3 iio_triggered_event_cleanup -EXPORT_SYMBOL drivers/iio/light/st_uvis25_core 0x516078f6 st_uvis25_pm_ops -EXPORT_SYMBOL drivers/iio/light/st_uvis25_core 0xd9bdfb87 st_uvis25_probe -EXPORT_SYMBOL drivers/iio/magnetometer/bmc150_magn 0x00cda37d bmc150_magn_pm_ops -EXPORT_SYMBOL drivers/iio/magnetometer/bmc150_magn 0xa00de778 bmc150_magn_regmap_config -EXPORT_SYMBOL drivers/iio/magnetometer/bmc150_magn 0xa11e6b75 bmc150_magn_remove -EXPORT_SYMBOL drivers/iio/magnetometer/bmc150_magn 0xae0c4076 bmc150_magn_probe -EXPORT_SYMBOL drivers/iio/magnetometer/hmc5843_core 0x1a6199b0 hmc5843_common_probe -EXPORT_SYMBOL drivers/iio/magnetometer/hmc5843_core 0x3403c6c5 hmc5843_common_suspend -EXPORT_SYMBOL drivers/iio/magnetometer/hmc5843_core 0xbcdc87a9 hmc5843_common_resume -EXPORT_SYMBOL drivers/iio/magnetometer/hmc5843_core 0xe73e0bb7 hmc5843_common_remove -EXPORT_SYMBOL drivers/iio/magnetometer/st_magn 0x59bfe450 st_magn_get_settings -EXPORT_SYMBOL drivers/iio/magnetometer/st_magn 0x60bd56a4 st_magn_common_remove -EXPORT_SYMBOL drivers/iio/magnetometer/st_magn 0x6ccc705f st_magn_common_probe -EXPORT_SYMBOL drivers/iio/pressure/bmp280 0x417ecb3f bmp180_regmap_config -EXPORT_SYMBOL drivers/iio/pressure/bmp280 0x487fcd98 bmp280_common_probe -EXPORT_SYMBOL drivers/iio/pressure/bmp280 0x6a39d7e9 bmp280_dev_pm_ops -EXPORT_SYMBOL drivers/iio/pressure/bmp280 0xabf8165d bmp280_regmap_config -EXPORT_SYMBOL drivers/iio/pressure/ms5611_core 0x467d502c ms5611_remove -EXPORT_SYMBOL drivers/iio/pressure/ms5611_core 0x709b4182 ms5611_probe -EXPORT_SYMBOL drivers/iio/pressure/st_pressure 0x87a4412d st_press_common_probe -EXPORT_SYMBOL drivers/iio/pressure/st_pressure 0xfdb8f474 st_press_common_remove -EXPORT_SYMBOL drivers/iio/pressure/st_pressure 0xfdbdf886 st_press_get_settings -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x0464ca80 ib_send_cm_drep -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x224d7696 ib_send_cm_rej -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x35af7540 ib_send_cm_sidr_req -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x41233684 ib_cm_init_qp_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x5d53b872 ib_destroy_cm_id -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x69824a14 ibcm_reject_msg -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x6a051f64 ib_cm_notify -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x72c09902 ib_send_cm_sidr_rep -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x827ead69 ib_create_cm_id -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x902f532b ib_send_cm_mra -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x9a6a7c9e ib_cm_listen -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x9e25a34a ib_send_cm_dreq -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xc64bb83c ib_send_cm_rep -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xdc9b191e ib_cm_insert_listen -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xf98f9329 ib_send_cm_rtu -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xfe3b9ada ib_send_cm_req -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x00caa6aa rdma_nl_unicast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x00cd25ea ib_get_rdma_header_version -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0342c42e ib_modify_srq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x048eade2 rdma_set_cq_moderation -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x054713ec ib_free_send_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x05f3992d rdma_nl_multicast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0702e6aa ib_register_client -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x09dd6690 rdma_restrack_count -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0a3d7c3b ib_post_send_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0b08ff68 ib_init_ah_from_mcmember -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0b66785f ib_attach_mcast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0c32f900 ib_get_device_fw_str -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0c790930 __ib_alloc_cq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0c86f5cb ib_sa_register_client -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0dd15769 ib_rdmacg_try_charge -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1181fd21 ib_get_cached_port_state -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x127b8aa4 ib_detach_mcast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x13048cb2 ib_get_net_dev_by_params -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x134ef3d4 ib_modify_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1462711d ib_advise_mr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x14ea23f3 rdma_create_user_ah -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1588e73c ib_set_client_data -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x18143c69 rdma_nl_put_driver_u64_hex -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x187621d9 rdma_restrack_get -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1ace83c0 ib_free_recv_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1b037462 __rdma_block_iter_start -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1eaef9fb rdma_init_netdev -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1efc6a37 ib_modify_qp_with_udata -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x21d20b9e ib_create_ah_from_wc -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x22f3cf93 ib_pack -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x25ac648f rdma_rw_ctx_destroy -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x27928012 ib_get_cached_subnet_prefix -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x279391dc rdma_roce_rescan_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2875bd62 ib_map_mr_sg_pi -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x28cb182f ib_device_get_by_name -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2a5d44b9 rdma_rw_ctx_init -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2ae75fad ib_cq_pool_get -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2aebe7c5 ib_get_vf_config -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2cc2fd71 rdma_modify_ah -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2ead77fb ibdev_info -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x305e5701 rdma_addr_size_kss -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x32e16859 ib_get_cached_lmc -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x337f9992 ib_register_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3427fffe rdma_link_register -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x37a5115e rdma_user_mmap_entry_remove -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x38592b28 roce_gid_type_mask_support -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x39da5dd7 ib_get_vf_stats -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x39e9eaed ib_alloc_mr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3aa9d787 rdma_read_gid_l2_fields -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3c52adf7 ib_mad_kernel_rmpp_agent -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3d366395 ib_alloc_mr_integrity -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3eb9afc6 ib_unregister_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3fc2387c ib_ud_header_unpack -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x40c793cc rdma_copy_src_l2_addr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x41e33477 rdma_query_gid_table -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x41eeb98f ib_query_srq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x423e1920 rdma_rw_ctx_signature_init -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x427b1ee5 ib_unregister_client -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 0x45126224 ib_create_send_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x45fb8985 rdma_nl_chk_listeners -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x469d4e7e rdma_nl_put_driver_u32 -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4c35a5c1 ib_init_ah_attr_from_wc -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4c82403e ib_dealloc_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4d8d5011 rdma_translate_ip -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4e076878 ib_drain_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4e155af0 ib_response_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4e90435c ib_sa_free_multicast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4eb76d1d ib_port_sysfs_get_ibdev_kobj -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4f1b504d rdma_nl_unicast_wait -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4fe73e8c ib_find_cached_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x52660687 ib_query_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x52b31d1f rdma_user_mmap_entry_put -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x52cc4354 rdma_user_mmap_io -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 0x5aba3aa6 rdma_replace_ah_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5c33c78b rdma_rw_ctx_destroy_signature -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5d4d463f ib_modify_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5f4514c6 rdma_destroy_ah_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x613b1e2e ib_is_mad_class_rmpp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x61a3a6a6 ibdev_printk -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x61d24c52 ib_rate_to_mbps -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x620eb044 rdma_nl_put_driver_u32_hex -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x63ae9b21 rdma_get_gid_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x64baf472 ib_register_mad_agent -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6530cf6a rdma_restrack_new -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x67433738 rdma_restrack_set_name -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6749b02f ib_destroy_srq_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x67e2a81d rdma_user_mmap_entry_get_pgoff -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x686b7e3a ib_unregister_device_queued -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x68965a3a rdma_user_mmap_entry_get -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x68b017ab ib_get_eth_speed -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x693dd0d8 ib_port_unregister_client_groups -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6941fa98 __ib_alloc_cq_any -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x69a3d26f ib_set_vf_guid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6b958320 ib_ud_ip4_csum -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6be3f855 ibnl_put_msg -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6be8c734 ib_set_vf_link_state -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6c0eaeef ib_drain_rq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6d1f9f60 rdma_query_ah -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6edd81e8 rdma_link_unregister -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6f3614b6 rdma_is_zero_gid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6fbd5cc8 ib_device_get_by_netdev -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7061b976 rdma_nl_stat_hwcounter_entry -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x70d29601 rdma_dev_access_netns -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7385752f ib_sa_get_mcmember_rec -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x73baf9a2 ib_modify_qp_is_ok -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x74c10749 ib_set_device_ops -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 0x7cbcc90f ib_query_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x80f4045f ib_get_rmpp_segment -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x830a6a12 ibdev_warn -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x83c2f548 ib_map_mr_sg -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x85c05cc5 ib_resize_cq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x86cef180 rdma_addr_size -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x87429506 ib_free_cq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8b60c620 ib_open_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8c526757 ib_check_mr_status -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8d6f5914 __ib_alloc_pd -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8db78911 ib_destroy_wq_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8e7528da __rdma_block_iter_next -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x90e807c7 ib_cache_gid_parse_type_str -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x91fdef2d ib_rdmacg_uncharge -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x92b10a5b ib_alloc_xrcd_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x965418fd ib_port_immutable_read -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x97764416 ib_get_cached_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x983961fd rdma_restrack_del -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x98d71472 ib_create_srq_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x995cd257 ib_modify_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9b5a97f0 ibdev_emerg -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9c291b12 ib_destroy_cq_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9d20a59f ib_device_set_netdev -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9d22ab36 ib_mr_pool_destroy -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9ea62070 rdma_destroy_ah_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa014e755 ib_reg_user_mr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa03cb4cc rdma_put_gid_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa29f0ae4 ib_unregister_device_and_put -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa40236fc ibdev_err -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa432baf6 ib_unpack -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa66e61fb rdma_rw_ctx_wrs -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa751bc37 rdma_resolve_ip -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa9f062c4 ib_find_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa9fb7b0b rdma_query_gid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xaa590d56 rdma_umap_priv_init -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xaa7d41ce rdma_nl_put_driver_string -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xaaedeebc ib_port_register_client_groups -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xad154c4b ib_dealloc_xrcd_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xadf53002 rdma_restrack_parent_name -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xae3277c8 ib_destroy_qp_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xae6691c9 ib_drain_sq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xae956dce ib_rate_to_mult -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb1d247e1 rdma_read_gid_hw_context -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb36e4148 ib_sa_pack_path -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb36e6f2f ib_dispatch_event -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb3bafbd0 ib_unregister_mad_agent -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb3ecdc69 rdma_read_gid_attr_ndev_rcu -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb4dc39d0 rdma_restrack_put -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb7852a05 ib_ud_header_init -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb936dff0 ib_sa_guid_info_rec_query -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbb317faa ib_get_vf_guid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbc21f0c1 rdma_user_mmap_entry_insert_range -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbc44e9a2 rdma_move_grh_sgid_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbde07652 ib_modify_port -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbe234c37 rdma_nl_register -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbeda16b9 ib_cq_pool_put -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbef24457 ib_close_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbf1d8622 ib_process_cq_direct -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc41ea2f5 ib_dealloc_pd_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc59fab5a ib_find_gid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc69684c4 rdma_user_mmap_entry_insert -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc718f385 rdma_port_get_link_layer -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc771195c ib_dereg_mr_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc8adf1f9 rdma_addr_cancel -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc8f8b8b6 rdma_move_ah_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc9e41e81 __ib_create_cq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc9fc19ce ib_query_port -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xca414411 ib_mr_pool_init -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xca753b72 ib_unregister_event_handler -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcb5cb94c ib_qp_usecnt_inc -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcf57103c ib_mr_pool_put -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcf7970ed ib_dma_virt_map_sg -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcfbc053b ib_unregister_driver -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd518b189 ib_create_qp_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd63f8bbd ib_sa_path_rec_get -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd6636ca6 rdma_addr_size_in6 -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd6b427cc ib_sg_to_pages -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd7e55285 rdma_restrack_add -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd99a9b24 ib_init_ah_attr_from_path -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd9f77ca5 rdma_find_gid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xda0d50ec ib_sa_cancel_query -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xde63f6bc rdma_restrack_get_byid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe1156e99 rdma_rw_mr_factor -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe19c42d4 ib_create_qp_security -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe41d1474 ibnl_put_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe4e95ca8 ib_register_event_handler -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe51aaaf6 ib_sa_join_multicast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe5840ec6 ib_wc_status_msg -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe5a78c1e ib_sa_unpack_path -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe6aa5a6a ibdev_notice -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe7b52e5f mult_to_ib_rate -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe95aeb27 ibdev_crit -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe9e799fc ib_ud_header_pack -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe9f52985 ib_create_wq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xea4788e3 ib_find_exact_cached_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xebdd98c5 rdma_nl_put_driver_u64 -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xeca10c8c ib_device_put -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xed840dc0 rdma_copy_ah_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xee2a6cea _ib_alloc_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xee814d14 rdma_find_gid_by_port -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf15730a6 ib_mr_pool_get -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf2858c38 rdma_rw_ctx_post -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf3294b38 ib_create_qp_kernel -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf4f91ce8 ibdev_alert -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf5dedb30 rdma_node_get_transport -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf6c0bec1 rdma_create_ah -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf6ed3334 ib_event_msg -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf93647eb rdma_hold_gid_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfcb93f0f ib_qp_usecnt_dec -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xffae4d97 rdma_alloc_netdev -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x024c55f2 ib_umem_get -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x02f2b63e ib_register_peer_memory_client -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x0c3d02c2 ib_umem_odp_alloc_child -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x0c6a5359 uverbs_uobject_fd_release -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x0d07d1cd ib_uverbs_flow_resources_free -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x112965a1 uverbs_destroy_def_handler -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x1b54bd5d ib_copy_path_rec_from_user -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x26a87523 uverbs_copy_to_struct_or_zero -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x2855a78f uverbs_copy_to -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x4b5b29d9 flow_resources_add -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x4f7b5ac1 ib_umem_get_peer -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x5f201c08 ib_umem_odp_get -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x5febd5eb uverbs_idr_class -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x63057f4b ib_copy_path_rec_to_user -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x645cef48 ib_umem_find_best_pgsz -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x65ef93c9 ib_umem_odp_map_dma_and_lock -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x67bb6d77 flow_resources_alloc -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x7ea6fb38 uverbs_fd_class -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x7f86dc4f ib_copy_ah_attr_to_user -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x8b40fc1d ib_umem_odp_alloc_implicit -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x9275477d ib_copy_qp_attr_to_user -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xa6502dff ib_umem_stop_invalidation_notifier -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xab1e88df ib_umem_dmabuf_unmap_pages -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xb7973eca _uverbs_get_const_signed -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xb9052bcf ib_uverbs_get_ucontext_file -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xbde5c050 ib_unregister_peer_memory_client -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xc3be9370 _uverbs_alloc -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xc72192a0 _uverbs_get_const_unsigned -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xcb3b7c74 uverbs_finalize_uobj_create -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xcb6d607b uverbs_get_flags64 -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xcd4a0b4d ib_umem_dmabuf_map_pages -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xd243d4d7 uverbs_get_flags32 -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xd3028f5b ib_umem_dmabuf_get -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xdaf8f094 ib_umem_odp_unmap_dma_pages -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xdcc87c75 ib_umem_activate_invalidation_notifier -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xe311348c ib_umem_release -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xeeb7f17c uverbs_uobject_put -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xf3074f98 ib_umem_copy_from -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xffd38012 ib_umem_odp_release -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x0ce11bd5 iw_cm_accept -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x313c6fd1 iw_cm_disconnect -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x49c8c3c5 iw_cm_connect -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x7ccdfbc9 iw_create_cm_id -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x8e5c81fe iw_cm_listen -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x90a5c0c4 iw_cm_reject -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x95f25419 iw_cm_init_qp_attr -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x9a8815ab iw_destroy_cm_id -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xf3df871f iwcm_reject_msg -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x00dd44a9 rdma_set_afonly -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x0125cd72 rdma_reject_msg -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x016c43ca rdma_accept -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x0872161b rdma_notify -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x0c11ae03 rdma_set_ib_path -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x10633cfa rdma_read_gids -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x12dfb2c6 rdma_set_reuseaddr -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x1d5e82fa rdma_connect_ece -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x1e8efa8f rdma_bind_addr -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x34f09022 rdma_create_user_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x3b3633ec rdma_listen -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x3f1c23ad rdma_iw_cm_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x45e27155 rdma_accept_ece -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x59f18622 __rdma_create_kernel_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x63064d1f rdma_set_ack_timeout -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x6c541549 rdma_disconnect -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x6edecc88 rdma_res_to_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x715a7799 rdma_leave_multicast -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x77589328 rdma_consumer_reject_data -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x907df803 rdma_event_msg -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x9235b481 rdma_lock_handler -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x96a6e05f rdma_join_multicast -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x9c3619ff rdma_destroy_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xacc8f0ef rdma_set_service_type -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xadb76819 rdma_resolve_addr -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xb7545e2e rdma_destroy_qp -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xb9ea6cf9 rdma_reject -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xba1761dc rdma_init_qp_attr -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xd870fe58 rdma_connect_locked -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xd8c9c1b3 rdma_set_min_rnr_timer -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xdc2af37a rdma_create_qp -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xdd860ce4 rdma_resolve_route -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xf0c18377 rdma_unlock_handler -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xfb953a95 rdma_get_service_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xfe72c517 rdma_connect -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x3dafea2c rtrs_clt_request -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x559202b1 rtrs_clt_get_permit -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x5c551f1b rtrs_clt_put_permit -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x921b68da rtrs_clt_close -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0xa2f3c8a4 rtrs_clt_open -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0xc52b9044 rtrs_clt_query -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0xf44cd87f rtrs_clt_rdma_cq_direct -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x242a8646 rtrs_addr_to_str -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x57b91bd0 rtrs_rdma_dev_pd_init -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x5b01e41d sockaddr_to_str -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x658e0676 rtrs_ib_dev_put -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x71dd81b3 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 0x8ce659e1 rtrs_ib_dev_find_or_add -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x043f13ec rtrs_srv_resp_rdma -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x051dfb96 rtrs_srv_set_sess_priv -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x14ce06ab rtrs_srv_get_queue_depth -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x2916b3e8 rtrs_srv_get_path_name -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x565ab242 rtrs_srv_open -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0xe970f062 rtrs_srv_close -EXPORT_SYMBOL drivers/input/gameport/gameport 0x29895c33 gameport_unregister_driver -EXPORT_SYMBOL drivers/input/gameport/gameport 0x44be2dc6 gameport_unregister_port -EXPORT_SYMBOL drivers/input/gameport/gameport 0x65433c93 gameport_open -EXPORT_SYMBOL drivers/input/gameport/gameport 0x827a529e __gameport_register_port -EXPORT_SYMBOL drivers/input/gameport/gameport 0x8b607438 gameport_close -EXPORT_SYMBOL drivers/input/gameport/gameport 0xad2571fa __gameport_register_driver -EXPORT_SYMBOL drivers/input/gameport/gameport 0xd2f08a9e gameport_start_polling -EXPORT_SYMBOL drivers/input/gameport/gameport 0xf20da40f gameport_set_phys -EXPORT_SYMBOL drivers/input/gameport/gameport 0xf453f986 gameport_stop_polling -EXPORT_SYMBOL drivers/input/joystick/iforce/iforce 0x73061fe6 iforce_process_packet -EXPORT_SYMBOL drivers/input/joystick/iforce/iforce 0xb8a8fbdf iforce_send_packet -EXPORT_SYMBOL drivers/input/joystick/iforce/iforce 0xbfb41654 iforce_init_device -EXPORT_SYMBOL drivers/input/matrix-keymap 0x24ace50f matrix_keypad_build_keymap -EXPORT_SYMBOL drivers/input/misc/ad714x 0x5c72ad04 ad714x_disable -EXPORT_SYMBOL drivers/input/misc/ad714x 0x6e037574 ad714x_probe -EXPORT_SYMBOL drivers/input/misc/ad714x 0xf405f63a 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 0xca3f100a cma3000_suspend -EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0xd1938cb8 cma3000_init -EXPORT_SYMBOL drivers/input/rmi4/rmi_core 0x6f5e58f1 rmi_unregister_transport_device -EXPORT_SYMBOL drivers/input/sparse-keymap 0x27a77425 sparse_keymap_entry_from_scancode -EXPORT_SYMBOL drivers/input/sparse-keymap 0x2ac22fbe sparse_keymap_report_event -EXPORT_SYMBOL drivers/input/sparse-keymap 0x68a4d258 sparse_keymap_entry_from_keycode -EXPORT_SYMBOL drivers/input/sparse-keymap 0x91acf37e sparse_keymap_report_entry -EXPORT_SYMBOL drivers/input/sparse-keymap 0xefd54ba2 sparse_keymap_setup -EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0x0e9a31c5 ad7879_probe -EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0x38588401 ad7879_pm_ops -EXPORT_SYMBOL drivers/interconnect/qcom/icc-smd-rpm 0x3f382ae5 qnoc_remove -EXPORT_SYMBOL drivers/interconnect/qcom/icc-smd-rpm 0xda8e6812 qnoc_probe -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x1a9ff531 capi_ctr_down -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x585385ab capi_ctr_handle_message -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xa8f38182 detach_capi_ctr -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xab7d94b4 attach_capi_ctr -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xae14668d 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 0x0c5967d4 mISDNipac_init -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x4962b4c4 mISDNisac_init -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x6c564b2a mISDNisac_irq -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x9ebdb168 mISDNipac_irq -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNisar 0x19ff7637 mISDNisar_init -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNisar 0x89866bf7 mISDNisar_irq -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x03a68066 mISDN_FsmRestartTimer -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x04d73aaa mISDN_unregister_device -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x19ad0653 mISDN_freebchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x1ac49f0e queue_ch_frame -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x2348cc3c mISDN_FsmFree -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x26236de8 mISDN_clock_update -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x29e96a7a create_l1 -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x2e4e2598 mISDN_initbchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x30d25b0d mISDN_FsmDelTimer -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x313b1fde mISDN_FsmAddTimer -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x39e0130e mISDN_unregister_Bprotocol -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x4880ba53 dchannel_senddata -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x4eef6717 mISDN_initdchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x50c2230c mISDN_FsmChangeState -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x56c9af4f bchannel_get_rxbuf -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x58712e04 recv_Bchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x588886a6 l1_event -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x5bc2366e bchannel_senddata -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x6047df40 mISDN_FsmInitTimer -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x79b79002 recv_Dchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x7ef01d33 mISDNDevName4ch -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x8f7f8c14 mISDN_register_Bprotocol -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x9c928457 mISDN_FsmNew -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xa527e24d recv_Echannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xac888204 mISDN_ctrl_bchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xbecc843d get_next_bframe -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xc3401729 mISDN_register_clock -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xc5b71579 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 0xd82a92f4 recv_Dchannel_skb -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xe3d335d9 mISDN_freedchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xe8f617eb mISDN_unregister_clock -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xec712440 get_next_dframe -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xf59b984d mISDN_register_device -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xf8df21b7 mISDN_clear_bchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0x01087af0 mISDN_dsp_element_unregister -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0x93df9e4b dsp_audio_law_to_s32 -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0xb07a21b8 dsp_audio_s16_to_law -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 0x7bc763a0 ti_lmu_common_get_brt_res -EXPORT_SYMBOL drivers/leds/leds-ti-lmu-common 0xa34a7c02 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 0x6f76650d cmdq_get_shift_pa -EXPORT_SYMBOL drivers/mailbox/omap-mailbox 0x4773c5c5 omap_mbox_disable_irq -EXPORT_SYMBOL drivers/mailbox/omap-mailbox 0xd13590fe omap_mbox_enable_irq -EXPORT_SYMBOL drivers/mailbox/omap-mailbox 0xde39446c omap_mbox_request_channel -EXPORT_SYMBOL drivers/md/dm-log 0x29278582 dm_dirty_log_create -EXPORT_SYMBOL drivers/md/dm-log 0x2dc0c8e5 dm_dirty_log_type_unregister -EXPORT_SYMBOL drivers/md/dm-log 0x47085644 dm_dirty_log_destroy -EXPORT_SYMBOL drivers/md/dm-log 0x8a93cd60 dm_dirty_log_type_register -EXPORT_SYMBOL drivers/md/dm-snapshot 0x010e6665 dm_exception_store_type_register -EXPORT_SYMBOL drivers/md/dm-snapshot 0x28d739d9 dm_exception_store_destroy -EXPORT_SYMBOL drivers/md/dm-snapshot 0x6a9ed627 dm_exception_store_create -EXPORT_SYMBOL drivers/md/dm-snapshot 0x93f741f5 dm_snap_origin -EXPORT_SYMBOL drivers/md/dm-snapshot 0xb4f040f5 dm_exception_store_type_unregister -EXPORT_SYMBOL drivers/md/dm-snapshot 0xc883d73b dm_snap_cow -EXPORT_SYMBOL drivers/md/raid456 0x8dc9fc39 r5c_journal_mode_set -EXPORT_SYMBOL drivers/md/raid456 0xefe6d290 raid5_set_cache_size -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x12eecd8e flexcop_wan_set_speed -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x2db8e928 flexcop_device_initialize -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x32b58568 flexcop_pass_dmx_data -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x4d6b634a flexcop_pid_feed_control -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x4f6f7659 flexcop_eeprom_check_mac_addr -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x51237f1a flexcop_sram_ctrl -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x5fdded94 flexcop_dump_reg -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x7a460356 flexcop_pass_dmx_packets -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xa18d1197 flexcop_device_exit -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xb034a415 flexcop_device_kfree -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xb6cae345 flexcop_i2c_request -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xc59a95c6 flexcop_device_kmalloc -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xec2e84aa 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 0x29ad30ec 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 0xa1123839 cx2341x_handler_set_50hz -EXPORT_SYMBOL drivers/media/common/cx2341x 0xb2b9efb7 cx2341x_ext_ctrls -EXPORT_SYMBOL drivers/media/common/cx2341x 0xca8589c4 cx2341x_handler_init -EXPORT_SYMBOL drivers/media/common/cx2341x 0xd16142e6 cx2341x_handler_set_busy -EXPORT_SYMBOL drivers/media/common/cx2341x 0xdbc5583a cx2341x_update -EXPORT_SYMBOL drivers/media/common/cx2341x 0xe1fe1432 cx2341x_log_status -EXPORT_SYMBOL drivers/media/common/cypress_firmware 0x9d2e8bda cypress_load_firmware -EXPORT_SYMBOL drivers/media/common/ttpci-eeprom 0x693e74ba ttpci_eeprom_decode_mac -EXPORT_SYMBOL drivers/media/common/ttpci-eeprom 0x7fd0ba57 ttpci_eeprom_parse_mac -EXPORT_SYMBOL drivers/media/common/tveeprom 0x0dbf0296 tveeprom_hauppauge_analog -EXPORT_SYMBOL drivers/media/common/tveeprom 0x76475527 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 0x28396661 vb2_buffer_in_use -EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-common 0xa776c657 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 0x0a3e9f8c vb2_dvb_alloc_frontend -EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0x3bd80fc2 vb2_dvb_unregister_bus -EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0x53ac6dde vb2_dvb_dealloc_frontends -EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0xdde6db48 vb2_dvb_register_bus -EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0xef905929 vb2_dvb_get_frontend -EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0xfc78f771 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 0xa37482d3 vb2_querybuf -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x08733236 intlog10 -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x098901df dvb_unregister_frontend -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x121b2891 dvb_dmxdev_release -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x195a686e dvb_ringbuffer_read -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x1a10cb83 dvb_dmx_swfilter_packets -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x26fcdc8e dvb_net_release -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x28f2a47e dvb_dmx_init -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x2cbba22e dvb_register_device -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x2eef9521 dvb_ringbuffer_write -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x306a8aac dvb_dmx_swfilter_raw -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x37dfa1d3 dvb_generic_open -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x3b93d71a dvb_frontend_sleep_until -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x4ede2c92 dvb_ca_en50221_release -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x501b230d dvb_unregister_device -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x542ece6b dvb_ringbuffer_free -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x5dbc0586 dvb_register_adapter -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x5f2b1d95 intlog2 -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x5f51bccb dvb_ringbuffer_flush_spinlock_wakeup -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x64587f49 dvb_ca_en50221_camchange_irq -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x72d5da80 dvb_ringbuffer_init -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x7a2d7c74 dvb_ringbuffer_read_user -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x8097c867 dvb_ringbuffer_avail -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x886b3899 dvb_ringbuffer_empty -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x8f1abae2 dvb_dmx_swfilter -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x970a039a dvb_ca_en50221_frda_irq -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xa68f19b0 dvb_ringbuffer_flush -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xb7463515 dvb_dmx_swfilter_204 -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xb7c9de65 dvb_ringbuffer_write_user -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xbffed809 dvb_dmxdev_init -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xc34decb6 dvb_unregister_adapter -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xc4287420 dvb_device_get -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xcba25cb2 dvb_ca_en50221_init -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xd11087a4 dvb_net_init -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xd5bc4906 dvb_remove_device -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xd92620cc dvb_frontend_detach -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xdb3cdf40 dvb_ca_en50221_camready_irq -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xe7e75a0a dvb_dmx_release -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xe837528d dvb_generic_ioctl -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xe8c38072 dvb_frontend_resume -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xeb61fdb4 dvb_register_frontend -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xefdfc59e dvb_frontend_suspend -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xf1f7805e dvb_generic_release -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xf9cd9966 dvb_frontend_reinitialise -EXPORT_SYMBOL drivers/media/dvb-frontends/ascot2e 0x693c42a2 ascot2e_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/atbm8830 0x61d901cf atbm8830_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x0331efbb au8522_get_state -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x09329437 au8522_analog_i2c_gate_ctrl -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x41220aca au8522_led_ctrl -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x4931ec87 au8522_init -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x690f1a35 au8522_writereg -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x887159c4 au8522_readreg -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xa22a154e au8522_sleep -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xf484e6ab au8522_i2c_gate_ctrl -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xf7f22781 au8522_release_state -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_dig 0xdabe1b02 au8522_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/bcm3510 0x91701d9d bcm3510_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx22700 0x51585268 cx22700_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx22702 0x2c5784d7 cx22702_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24110 0x5d392b10 cx24110_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24113 0x14b80bed cx24113_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24113 0x765f7405 cx24113_agc_callback -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24116 0xe0fabd30 cx24116_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24120 0x7262a726 cx24120_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24123 0x2f3c80d1 cx24123_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24123 0xdb9a866e cx24123_get_tuner_i2c_adapter -EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2820r 0xb62d0a67 cxd2820r_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2841er 0x8f22a175 cxd2841er_attach_t_c -EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2841er 0x96ed988f cxd2841er_attach_s -EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2880/cxd2880 0x487b8d43 cxd2880_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x0506519c dib0070_wbd_offset -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x1c1193db dib0070_set_rf_output -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x286bdf5a dib0070_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x338e0a40 dib0070_ctrl_agc_filter -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0xd60fc057 dib0070_get_rf_output -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x057d85ed dib0090_set_tune_state -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x0f4ce652 dib0090_set_dc_servo -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x20520909 dib0090_dcc_freq -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x7b964648 dib0090_get_current_gain -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x864dae8b dib0090_get_wbd_target -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x973693ad dib0090_get_wbd_offset -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x981ece4b dib0090_set_switch -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xa2cceeeb dib0090_pwm_gain_reset -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xb0513f1e dib0090_register -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xbfe875d8 dib0090_fw_register -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xd171719f dib0090_set_vga -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xd32388ca dib0090_gain_control -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xe60394d4 dib0090_update_rframp_7090 -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xeebb5e34 dib0090_get_tune_state -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xf8160965 dib0090_update_tuning_table_7090 -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mb 0xc26a55e3 dib3000mb_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x09f6a6a5 dib3000mc_i2c_enumeration -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x4067a19d dib3000mc_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x5340563d dib3000mc_get_tuner_i2c_master -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x68740e61 dib3000mc_pid_control -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0xa006318d dib3000mc_set_config -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0xacf8ff63 dib3000mc_pid_parse -EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x6fa6eef6 dib7000m_get_i2c_master -EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0xae3d54c1 dib7000m_pid_filter -EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0xe116e8c9 dib7000m_pid_filter_ctrl -EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0xea885499 dib7000m_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000p 0x0e237423 dib7000p_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dib8000 0x04e94057 dib8000_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x0d2d5880 dib9000_firmware_post_pll_init -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x199a712d dib9000_get_slave_frontend -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x1c4fe27f dib9000_get_component_bus_interface -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x1e42e831 dib9000_fw_set_component_bus_speed -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x32d290ef dib9000_get_i2c_master -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x3df2fd51 dib9000_fw_pid_filter -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x4c8aa6ed dib9000_set_gpio -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x928feb8b dib9000_fw_pid_filter_ctrl -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x9a08390b dib9000_i2c_enumeration -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x9a90e8b4 dib9000_get_tuner_interface -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xc81887c8 dib9000_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xd693085c dib9000_set_slave_frontend -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xdeb10e76 dib9000_set_i2c_adapter -EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x0451e42d dibx000_reset_i2c_master -EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x0a0d7fc2 dibx000_exit_i2c_master -EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x151832f5 dibx000_init_i2c_master -EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x265729a2 dibx000_i2c_set_speed -EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x36a68756 dibx000_get_i2c_adapter -EXPORT_SYMBOL drivers/media/dvb-frontends/drx39xyj/drx39xyj 0x634eb2c5 drx39xxj_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/drxd 0x520f1976 drxd_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/drxk 0xd3509608 drxk_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/ds3000 0x41f41665 ds3000_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dvb-pll 0x59a13b5f dvb_pll_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dvb_dummy_fe 0x180e0f35 dvb_dummy_fe_ofdm_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dvb_dummy_fe 0xb3c02b5d dvb_dummy_fe_qpsk_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dvb_dummy_fe 0xf3899e40 dvb_dummy_fe_qam_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/ec100 0x86e4b433 ec100_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/helene 0xb74a9c19 helene_attach_s -EXPORT_SYMBOL drivers/media/dvb-frontends/helene 0xd60d1757 helene_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/horus3a 0xe2e2bf4d horus3a_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/isl6405 0xd5693457 isl6405_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/isl6421 0xce7261d7 isl6421_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/isl6423 0xd695c9d1 isl6423_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/itd1000 0x68081f34 itd1000_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/ix2505v 0xb07c8ee9 ix2505v_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/l64781 0x018709cc l64781_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lg2160 0x5cf641c2 lg2160_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt3305 0x7006cee2 lgdt3305_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt3306a 0x6bacd19d lgdt3306a_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt330x 0x14835da1 lgdt330x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lgs8gl5 0x90575aaa lgs8gl5_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lgs8gxx 0x35ea87fe lgs8gxx_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lnbh25 0x24c4c9f9 lnbh25_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lnbh29 0x63932cc1 lnbh29_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp21 0x1ee9c2f1 lnbp21_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp21 0x344ff0f1 lnbh24_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp22 0x2a9f696c lnbp22_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/m88ds3103 0xc5857641 m88ds3103_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/m88ds3103 0xdfb46d53 m88ds3103_get_agc_pwm -EXPORT_SYMBOL drivers/media/dvb-frontends/m88rs2000 0xccf4db71 m88rs2000_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/mb86a16 0xc4b283c2 mb86a16_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/mb86a20s 0x763c0f57 mb86a20s_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/mt312 0x165ba2f7 mt312_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/mt352 0x6fa3a217 mt352_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/nxt200x 0x891e4e9d nxt200x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/nxt6000 0xae484475 nxt6000_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/or51132 0xef99f4e0 or51132_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/or51211 0x3d351035 or51211_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1409 0x2a36b22b s5h1409_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1411 0xdc1ffef3 s5h1411_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1420 0x3baa1380 s5h1420_get_tuner_i2c_adapter -EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1420 0xe86ed5d2 s5h1420_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1432 0x0550d3e9 s5h1432_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/s921 0x45816e23 s921_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/si21xx 0x675127c6 si21xx_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/sp887x 0xd809fe2a sp887x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stb0899 0xf4b6f028 stb0899_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stb6000 0x4949126a stb6000_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stb6100 0xc97961e5 stb6100_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv0288 0x586d283b stv0288_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv0297 0x6bc2e3cd stv0297_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv0299 0xf2e31a8a stv0299_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv0367 0x5207d81e stv0367cab_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv0367 0x8daaf74f stv0367ter_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv0367 0x903e5762 stv0367ddb_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv0900 0x10b24f1f stv0900_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv090x 0x5de89281 stv090x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv6110 0x3e2a8cec stv6110_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv6110x 0xe493fb4e stv6110x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda10021 0x545d4539 tda10021_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda10023 0xc629945b tda10023_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda10048 0xbf1cbeb1 tda10048_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda1004x 0x260100dc tda10046_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda1004x 0x5db0c521 tda10045_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda10086 0xb909c746 tda10086_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda665x 0x9975ed19 tda665x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda8083 0x78af8396 tda8083_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda8261 0xf0f36262 tda8261_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda826x 0x971d8703 tda826x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/ts2020 0xc89fcdf6 ts2020_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tua6100 0x805d9f73 tua6100_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/ves1820 0x904f9c71 ves1820_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/ves1x93 0xab2316d7 ves1x93_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/zd1301_demod 0x367f0843 zd1301_demod_get_dvb_frontend -EXPORT_SYMBOL drivers/media/dvb-frontends/zd1301_demod 0x4dd159dc zd1301_demod_get_i2c_adapter -EXPORT_SYMBOL drivers/media/dvb-frontends/zl10036 0x45b95053 zl10036_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/zl10039 0x22bc5494 zl10039_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/zl10353 0x9b22b3fd zl10353_attach -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x0d4187f6 flexcop_dma_allocate -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x46ea38a7 flexcop_dma_control_size_irq -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x88c549ef flexcop_dma_config_timer -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xaa04d57b flexcop_dma_config -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xab338d8a flexcop_dma_xfer_control -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xc4487fa5 flexcop_dma_control_timer_irq -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xf271f919 flexcop_dma_free -EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x2fef8e30 bt878 -EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x606b7473 bt878_stop -EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x87b15b04 bt878_start -EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x9c8e52df 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 0x2e26ee3c bttv_sub_register -EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x8ecf4acc bttv_write_gpio -EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x92864ffc bttv_sub_unregister -EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0xbcf2d2fb bttv_read_gpio -EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0xeacd19ac bttv_get_pcidev -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x125b9881 write_dst -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x1edad61f dst_wait_dst_ready -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x20f6dd1c rdc_reset_state -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x3455db4b dst_attach -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x43a983fd dst_check_sum -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x82f80361 dst_comm_init -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x85029689 read_dst -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x9129cead dst_error_recovery -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xa233ee33 dst_pio_disable -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xe60514bd dst_error_bailout -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst_ca 0xcb6d825c dst_ca_attach -EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x088deb0f cx18_claim_stream -EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x0ec87b5c cx18_ext_init -EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x0fc400e2 cx18_release_stream -EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x284cd7f5 cx18_start_v4l2_encode_stream -EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x2cdea06d cx18_reset_ir_gpio -EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x79db555e 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 0x81a58cb0 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 0x0015e661 cx25821_sram_channel_dump_audio -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x39bf4e08 cx25821_set_gpiopin_direction -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x4415f97f cx25821_risc_databuffer_audio -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x44b517f5 cx25821_print_irqbits -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x9563d3e9 cx25821_dev_get -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xb953f0a6 cx25821_dev_unregister -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xbb8a1adb cx25821_riscmem_alloc -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xe9050411 cx25821_sram_channels -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xf8054170 cx25821_sram_channel_setup_audio -EXPORT_SYMBOL drivers/media/pci/cx88/cx88-vp3054-i2c 0x7cc9b0bc vp3054_i2c_remove -EXPORT_SYMBOL drivers/media/pci/cx88/cx88-vp3054-i2c 0x9564df37 vp3054_i2c_probe -EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x6c6156fb cx88_enum_input -EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x7f96237f cx88_querycap -EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x86f33510 cx88_set_freq -EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0xeabfe6ec cx88_video_mux -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x6d02cbd5 cx8802_buf_queue -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x76e2b4c5 cx8802_get_driver -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x88a84d0e cx8802_start_dma -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xa23a6fbe cx8802_unregister_driver -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xa8e71c83 cx8802_cancel_buffers -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xd84ea436 cx8802_buf_prepare -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xfcb58c96 cx8802_register_driver -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x03ff7523 cx88_set_scale -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x13db9a3d cx88_reset -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x1dfce06e cx88_get_stereo -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x2638c7e9 cx88_set_stereo -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x280bbba2 cx88_core_put -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x2a0a65f0 cx88_set_tvnorm -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x304a4178 cx88_core_get -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x31c66ea0 cx88_ir_stop -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x4a37c58f cx88_risc_buffer -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x5194835c cx88_sram_channel_dump -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 0x626fc397 cx88_core_irq -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x6d46250e cx88_set_tvaudio -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x8d019fd5 cx88_vdev_init -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x8d88137a cx88_sram_channels -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x904b8696 cx88_audio_thread -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xada5b23b cx88_wakeup -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xb77c7b0b cx88_ir_start -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xc6e0fce3 cx88_dsp_detect_stereo_sap -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xde11b505 cx88_risc_databuffer -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xed4b8ba5 cx88_shutdown -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xf0f35e22 cx88_newstation -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xf98441fa cx88_sram_channel_setup -EXPORT_SYMBOL drivers/media/pci/ddbridge/ddbridge-dummy-fe 0xc3c5dcca ddbridge_dummy_fe_qam_attach -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x008e7972 ivtv_clear_irq_mask -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x14f67530 ivtv_debug -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x32ca863a ivtv_reset_ir_gpio -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x3cbc6715 ivtv_claim_stream -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x6058e76d ivtv_udma_setup -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x66a5397c ivtv_udma_alloc -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x6ae5d493 ivtv_udma_unmap -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x6efd2631 ivtv_set_irq_mask -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x731fff17 ivtv_udma_prepare -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x77f797e7 ivtv_vapi -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x852f70bd ivtv_ext_init -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x903e543f ivtv_release_stream -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x968ddf46 ivtv_vapi_result -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x9ac3f52d ivtv_firmware_check -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xb2cb23c5 ivtv_stop_v4l2_encode_stream -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xde92ae5c ivtv_init_on_first_open -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xdede8a2c ivtv_start_v4l2_encode_stream -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xf414436d ivtv_api -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x03c89f00 saa7134_pgtable_alloc -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x04e83446 saa7134_tuner_callback -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x0d6f4547 saa7134_dmasound_init -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x1211df5d saa7134_devlist -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x18947b38 saa7134_devlist_lock -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x31dc497b saa7134_ts_register -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x644aa3dc saa7134_pgtable_build -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x6b896e24 saa7134_ts_unregister -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x6d14847e saa7134_pgtable_free -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x730c4be3 saa7134_boards -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x7d61281f saa7134_dmasound_exit -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xa0cd4285 saa7134_tvaudio_setmute -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xc468eb07 saa7134_set_gpio -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xdd19dd00 saa7134_set_dmabits -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xf2f93a15 saa_dsp_writel -EXPORT_SYMBOL drivers/media/platform/allegro-dvt/allegro 0x2c79d0f2 msg_type_name -EXPORT_SYMBOL drivers/media/radio/tea575x 0x2c92870c snd_tea575x_g_tuner -EXPORT_SYMBOL drivers/media/radio/tea575x 0x57b7bad5 snd_tea575x_s_hw_freq_seek -EXPORT_SYMBOL drivers/media/radio/tea575x 0x73d8c26b snd_tea575x_set_freq -EXPORT_SYMBOL drivers/media/radio/tea575x 0xb09e08bd snd_tea575x_init -EXPORT_SYMBOL drivers/media/radio/tea575x 0xb9715fa8 snd_tea575x_enum_freq_bands -EXPORT_SYMBOL drivers/media/radio/tea575x 0xd7bfeaec snd_tea575x_hw_init -EXPORT_SYMBOL drivers/media/radio/tea575x 0xf0a8b142 snd_tea575x_exit -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 0x9e12e343 ir_raw_gen_pd -EXPORT_SYMBOL drivers/media/rc/rc-core 0xb5516017 ir_raw_encode_carrier -EXPORT_SYMBOL drivers/media/rc/rc-core 0xc9dd2d68 ir_raw_handler_register -EXPORT_SYMBOL drivers/media/rc/rc-core 0xcdffecdd ir_raw_handler_unregister -EXPORT_SYMBOL drivers/media/rc/rc-core 0xf446074f ir_raw_encode_scancode -EXPORT_SYMBOL drivers/media/tuners/fc0011 0xbb796d42 fc0011_attach -EXPORT_SYMBOL drivers/media/tuners/fc0012 0xb8aeb524 fc0012_attach -EXPORT_SYMBOL drivers/media/tuners/fc0013 0x1d9c58a9 fc0013_rc_cal_reset -EXPORT_SYMBOL drivers/media/tuners/fc0013 0x9b3adec1 fc0013_rc_cal_add -EXPORT_SYMBOL drivers/media/tuners/fc0013 0xe8d5a22e fc0013_attach -EXPORT_SYMBOL drivers/media/tuners/max2165 0x5d72026a max2165_attach -EXPORT_SYMBOL drivers/media/tuners/mc44s803 0xd4e39a00 mc44s803_attach -EXPORT_SYMBOL drivers/media/tuners/mt2060 0x8acb31b7 mt2060_attach -EXPORT_SYMBOL drivers/media/tuners/mt2131 0xec5cb2b5 mt2131_attach -EXPORT_SYMBOL drivers/media/tuners/mt2266 0xf049259d mt2266_attach -EXPORT_SYMBOL drivers/media/tuners/mxl5005s 0x4823e81a mxl5005s_attach -EXPORT_SYMBOL drivers/media/tuners/qt1010 0x0bdee27f qt1010_attach -EXPORT_SYMBOL drivers/media/tuners/tda18218 0xc68917f9 tda18218_attach -EXPORT_SYMBOL drivers/media/tuners/tuner-types 0x4c48939e tuners -EXPORT_SYMBOL drivers/media/tuners/tuner-types 0xc2821775 tuner_count -EXPORT_SYMBOL drivers/media/tuners/tuner-xc2028 0x153d7961 xc2028_attach -EXPORT_SYMBOL drivers/media/tuners/xc4000 0x02d9b92d xc4000_attach -EXPORT_SYMBOL drivers/media/tuners/xc5000 0x12870de7 xc5000_attach -EXPORT_SYMBOL drivers/media/usb/cx231xx/cx231xx 0x9d3d4a8e cx231xx_unregister_extension -EXPORT_SYMBOL drivers/media/usb/cx231xx/cx231xx 0xc591298b cx231xx_register_extension -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x0d85a261 dvb_usbv2_reset_resume -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x3e9ec75c dvb_usbv2_suspend -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x584fdec8 dvb_usbv2_probe -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x71de67f5 dvb_usbv2_generic_write_locked -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x81f2f7a4 dvb_usbv2_resume -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xa4e3fa5e dvb_usbv2_generic_rw -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xc18ed39e dvb_usbv2_generic_rw_locked -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xc2d0a213 dvb_usbv2_disconnect -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xdb71791a dvb_usbv2_generic_write -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x01ed2a6f dvb_usb_generic_write -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x1dbd54c8 dvb_usb_nec_rc_key_to_event -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x35d7f108 dvb_usb_device_exit -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x7f98fbaf dvb_usb_device_init -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x80f75720 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 0xaa79bee2 dvb_usb_generic_rw -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-af9005-remote 0x341530cb rc_map_af9005_table -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-af9005-remote 0xd4e288db rc_map_af9005_table_size -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-af9005-remote 0xe7b1a3e1 af9005_rc_decode -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x0baac0ef dibusb_power_ctrl -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x2a27b390 dibusb2_0_streaming_ctrl -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x3f43557c dibusb_read_eeprom_byte -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x572976a3 dibusb_streaming_ctrl -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x5c4ef987 dibusb_rc_query -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x7479e428 dibusb_pid_filter_ctrl -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x8ceb847b 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 0x9dbb7346 dibusb_i2c_algo -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xb2f6e5b0 dibusb2_0_power_ctrl -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-mc-common 0x5dca3224 dibusb_dib3000mc_tuner_attach -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-mc-common 0x8c265a22 dibusb_dib3000mc_frontend_attach -EXPORT_SYMBOL drivers/media/usb/em28xx/em28xx 0x6221c9fa em28xx_register_extension -EXPORT_SYMBOL drivers/media/usb/em28xx/em28xx 0x75940151 em28xx_unregister_extension -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x029fa7ac go7007_snd_remove -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x08dfc85a go7007_boot_encoder -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x1ad31ee4 go7007_register_encoder -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x4c117678 go7007_parse_video_stream -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x6b006c8e go7007_update_board -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x94f961a7 go7007_alloc -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xd294d983 go7007_read_addr -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xebeeeb01 go7007_snd_init -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xf0895262 go7007_read_interrupt -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x192d38e1 gspca_suspend -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x4ccb383a gspca_dev_probe -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x93247d12 gspca_coarse_grained_expo_autogain -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x9670af2c gspca_debug -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x989480e6 gspca_disconnect -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xb6c49e05 gspca_resume -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xc5af8939 gspca_expo_autogain -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xd643fb3a gspca_dev_probe2 -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xe9d0c07f gspca_frame_add -EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0x5b80b227 tm6000_init_digital_mode -EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0xc003653a tm6000_register_extension -EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0xf409989e tm6000_unregister_extension -EXPORT_SYMBOL drivers/media/usb/ttusb-dec/ttusbdecfe 0x824ba7b5 ttusbdecfe_dvbt_attach -EXPORT_SYMBOL drivers/media/usb/ttusb-dec/ttusbdecfe 0xa98ca67f ttusbdecfe_dvbs_attach -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0x1788a731 v4l2_async_subdev_notifier_register -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0x728ee416 v4l2_async_notifier_init -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0xafd0276c v4l2_async_register_subdev -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0xbea4e219 v4l2_async_notifier_register -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0xcd56203d v4l2_async_notifier_unregister -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0xe80940f0 v4l2_async_unregister_subdev -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x335a351c v4l2_m2m_mmap -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x3c01cc27 v4l2_m2m_get_vq -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x459e133f v4l2_m2m_get_curr_priv -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x5352d022 v4l2_m2m_resume -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x559451bc v4l2_m2m_buf_done_and_job_finish -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0xe98737ab v4l2_m2m_job_finish -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0xf626dd03 v4l2_m2m_suspend -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x02ed5147 v4l2_ctrl_subscribe_event -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x03722000 video_ioctl2 -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0614dd5a v4l2_video_std_frame_period -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x06e47f12 v4l2_queryctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x082737e8 v4l2_ctrl_merge -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x08ecef33 v4l2_ctrl_request_complete -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0afcbb30 v4l2_ctrl_poll -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0f0e74ef v4l2_ctrl_add_handler -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x123959a1 v4l2_type_names -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x127fea41 v4l2_ctrl_activate -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x12fb62e6 v4l2_ctrl_new_std -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x13e371bc v4l2_ctrl_cluster -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x153cba2f v4l2_ctrl_new_std_menu_items -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x16244fe5 v4l2_prio_check -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1a51bfc8 v4l2_ctrl_handler_free -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1d210899 __v4l2_ctrl_modify_range -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 0x30b7a848 video_devdata -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 0x34a6373d v4l2_query_ext_ctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3adbd595 v4l2_field_names -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3bdd0f94 v4l2_prio_change -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3d15c887 __v4l2_ctrl_s_ctrl_compound -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x409aaed9 video_unregister_device -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4264946b v4l2_g_ext_ctrls -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x456e2a30 v4l2_ctrl_subdev_subscribe_event -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4cccafcc v4l2_subdev_call_wrappers -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4ec94ae8 v4l2_g_ctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x5385e90b __v4l2_ctrl_s_ctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x5f997ac1 v4l2_try_ext_ctrls -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x60dcdec6 __v4l2_ctrl_s_ctrl_string -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x67bf06b6 v4l2_ctrl_handler_log_status -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x68728a51 v4l2_ctrl_auto_cluster -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8106095a v4l2_prio_max -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x819ad971 v4l2_ctrl_find -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x81aa7fad v4l2_ctrl_radio_filter -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8333339c v4l2_ctrl_sub_ev_ops -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x87b3b838 v4l2_ctrl_handler_setup -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x89966a61 v4l2_ctrl_new_std_compound -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x89e3897d v4l2_ctrl_query_fill -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8b02eb4b v4l2_ctrl_log_status -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x99951b0d v4l2_subdev_init -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb380ba9a v4l2_ctrl_new_fwnode_properties -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb77b0159 v4l2_prio_init -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xbbaedc4e v4l2_ctrl_subdev_log_status -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xbc5671dc v4l_printk_ioctl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xbd84c08b v4l2_s_ctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc483a5ed v4l2_ctrl_new_int_menu -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc4b22c78 v4l2_ctrl_g_ctrl_int64 -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc63dd2ad __video_register_device -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc73bb928 __v4l2_ctrl_grab -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xcba4d9d4 video_device_release_empty -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 0xd9500be2 v4l2_ctrl_g_ctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xdb5d4f5a __v4l2_ctrl_s_ctrl_int64 -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 0xe2fbb3f8 v4l2_querymenu -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe5a2b2a5 video_device_alloc -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe66f3413 v4l2_ctrl_handler_init_class -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe98250d3 video_device_release -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe9ddc04c v4l2_ctrl_request_setup -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf132c0b2 v4l2_ctrl_notify -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 0xf65be125 v4l2_ctrl_new_std_menu -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xfe28c9f3 v4l2_ctrl_new_custom -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xff601b4e v4l2_s_ext_ctrls -EXPORT_SYMBOL drivers/memory/renesas-rpc-if 0x0f5d5191 rpcif_hw_init -EXPORT_SYMBOL drivers/memory/renesas-rpc-if 0x5d9b4f29 rpcif_manual_xfer -EXPORT_SYMBOL drivers/memory/renesas-rpc-if 0x961c5d08 rpcif_dirmap_read -EXPORT_SYMBOL drivers/memory/renesas-rpc-if 0xb406c825 rpcif_prepare -EXPORT_SYMBOL drivers/memory/renesas-rpc-if 0xba4cde7f rpcif_sw_init -EXPORT_SYMBOL drivers/memstick/core/memstick 0x06a89186 memstick_free_host -EXPORT_SYMBOL drivers/memstick/core/memstick 0x0f796cc3 memstick_alloc_host -EXPORT_SYMBOL drivers/memstick/core/memstick 0x1f417a35 memstick_next_req -EXPORT_SYMBOL drivers/memstick/core/memstick 0x36f77686 memstick_unregister_driver -EXPORT_SYMBOL drivers/memstick/core/memstick 0x4a4e5778 memstick_init_req_sg -EXPORT_SYMBOL drivers/memstick/core/memstick 0x664a194e memstick_new_req -EXPORT_SYMBOL drivers/memstick/core/memstick 0x78460d70 memstick_set_rw_addr -EXPORT_SYMBOL drivers/memstick/core/memstick 0x8302ffe3 memstick_register_driver -EXPORT_SYMBOL drivers/memstick/core/memstick 0x8dc7cd88 memstick_resume_host -EXPORT_SYMBOL drivers/memstick/core/memstick 0xac1617c7 memstick_suspend_host -EXPORT_SYMBOL drivers/memstick/core/memstick 0xae50437c memstick_init_req -EXPORT_SYMBOL drivers/memstick/core/memstick 0xdde8a15f memstick_add_host -EXPORT_SYMBOL drivers/memstick/core/memstick 0xee3ac1cf memstick_detect_change -EXPORT_SYMBOL drivers/memstick/core/memstick 0xf3c4bc02 memstick_remove_host -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x0e9e6c70 mpt_GetIocState -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x19df42e3 mpt_event_register -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x2190f7d5 mpt_config -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x3471e07c mpt_device_driver_register -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x4195b6ed mpt_suspend -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x484f7bc2 mpt_clear_taskmgmt_in_progress_flag -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x4c15da2a mpt_verify_adapter -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x4c95da5b mpt_register -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x4ffb52e8 mpt_free_fw_memory -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x502108d0 mpt_fwfault_debug -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x5bfd1c89 mpt_send_handshake_request -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x610b257e mpt_reset_deregister -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x6a827370 mpt_alloc_fw_memory -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x6e3dd131 mpt_halt_firmware -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x707d2e94 mpt_raid_phys_disk_get_num_paths -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x73ba64f5 mpt_put_msg_frame_hi_pri -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x73cdf92b mptbase_sas_persist_operation -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x7424e8f4 mpt_raid_phys_disk_pg0 -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x74a0134a mpt_device_driver_deregister -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x75c47100 mpt_attach -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x81e37fae mpt_reset_register -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x89093a69 mpt_get_msg_frame -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x897a3394 mpt_Soft_Hard_ResetHandler -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x907a1825 mpt_raid_phys_disk_pg1 -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x981efe92 mpt_deregister -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x9948aa84 mpt_print_ioc_summary -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xa2ffbe42 mpt_set_taskmgmt_in_progress_flag -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xab32c3ce mpt_HardResetHandler -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xbd02f42e mpt_put_msg_frame -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xd31f743d mpt_resume -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xd8c5f7df mpt_detach -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 0xe87e258d mpt_free_msg_frame -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xeb49d0c6 mpt_findImVolumes -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x064ab1d8 mptscsih_io_done -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x0bb15dd0 mptscsih_is_phys_disk -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x146c883d mptscsih_slave_configure -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x266085a7 mptscsih_info -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x2eb59239 mptscsih_event_process -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x3787cfe7 mptscsih_taskmgmt_response_code -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x42a28e60 mptscsih_host_attrs -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x4311a366 mptscsih_resume -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x52e060a3 mptscsih_taskmgmt_complete -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x57fe98ea mptscsih_suspend -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x5869ba9d mptscsih_scandv_complete -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x5a6871b6 mptscsih_get_scsi_lookup -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x667af577 mptscsih_shutdown -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x6dab58cb mptscsih_flush_running_cmds -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x74251bc4 mptscsih_raid_id_to_num -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x83f5e5e0 mptscsih_qcmd -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x87d26ae8 mptscsih_dev_reset -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x909aedde mptscsih_change_queue_depth -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xb6b2e19f mptscsih_slave_destroy -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xbf0ddf11 mptscsih_remove -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xcc7828c2 mptscsih_host_reset -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xcf061cb2 mptscsih_bios_param -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xd28e515a mptscsih_show_info -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xe742244e mptscsih_abort -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xe79f2bcb mptscsih_IssueTaskMgmt -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xea15e4ac mptscsih_bus_reset -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xfc0a3e1d mptscsih_ioc_reset -EXPORT_SYMBOL drivers/mfd/axp20x 0x10586e3b axp20x_match_device -EXPORT_SYMBOL drivers/mfd/axp20x 0x4679c1c2 axp20x_device_probe -EXPORT_SYMBOL drivers/mfd/axp20x 0xdc614ee3 axp20x_device_remove -EXPORT_SYMBOL drivers/mfd/dln2 0x029b4c22 dln2_register_event_cb -EXPORT_SYMBOL drivers/mfd/dln2 0x4259723f dln2_transfer -EXPORT_SYMBOL drivers/mfd/dln2 0x93c174ef dln2_unregister_event_cb -EXPORT_SYMBOL drivers/mfd/htc-pasic3 0xa1a096ad pasic3_write_register -EXPORT_SYMBOL drivers/mfd/htc-pasic3 0xe6f09319 pasic3_read_register -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x31a99663 mc13xxx_lock -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x49796c09 mc13xxx_irq_request -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x4cce39b8 mc13xxx_reg_read -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x52d911c5 mc13xxx_irq_free -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x54976510 mc13xxx_irq_status -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x6355380d mc13xxx_reg_rmw -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x64405f02 mc13xxx_get_flags -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x8a21ac92 mc13xxx_reg_write -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x9ce7a9b2 mc13xxx_irq_unmask -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xcedbdfc3 mc13xxx_irq_mask -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xde81cbf2 mc13xxx_unlock -EXPORT_SYMBOL drivers/mfd/qcom_rpm 0xd520f912 qcom_rpm_write -EXPORT_SYMBOL drivers/mfd/tps65010 0x02d4ad0f tps65013_set_low_pwr -EXPORT_SYMBOL drivers/mfd/tps65010 0x0c6ad2cf tps65010_config_vdcdc2 -EXPORT_SYMBOL drivers/mfd/tps65010 0x28485130 tps65010_config_vregs1 -EXPORT_SYMBOL drivers/mfd/tps65010 0x33739de7 tps65010_set_vib -EXPORT_SYMBOL drivers/mfd/tps65010 0x9fd44c69 tps65010_set_led -EXPORT_SYMBOL drivers/mfd/tps65010 0xb14080cc tps65010_set_low_pwr -EXPORT_SYMBOL drivers/mfd/tps65010 0xd5bb106d tps65010_set_vbus_draw -EXPORT_SYMBOL drivers/mfd/tps65010 0xe99b3f36 tps65010_set_gpio_out_value -EXPORT_SYMBOL drivers/mfd/wm8994 0x0a9a6b6e wm8994_base_regmap_config -EXPORT_SYMBOL drivers/mfd/wm8994 0x0af57eaa wm8994_irq_init -EXPORT_SYMBOL drivers/mfd/wm8994 0x240d02da wm1811_regmap_config -EXPORT_SYMBOL drivers/mfd/wm8994 0x6e915b18 wm8994_irq_exit -EXPORT_SYMBOL drivers/mfd/wm8994 0x8955bb6e wm8994_regmap_config -EXPORT_SYMBOL drivers/mfd/wm8994 0xbb6f00f7 wm8958_regmap_config -EXPORT_SYMBOL drivers/misc/ad525x_dpot 0x2a1a6c92 ad_dpot_remove -EXPORT_SYMBOL drivers/misc/ad525x_dpot 0x90de5ed0 ad_dpot_probe -EXPORT_SYMBOL drivers/misc/altera-stapl/altera-stapl 0x5bafa76e altera_init -EXPORT_SYMBOL drivers/misc/c2port/core 0x037a28f5 c2port_device_register -EXPORT_SYMBOL drivers/misc/c2port/core 0x955c33bd c2port_device_unregister -EXPORT_SYMBOL drivers/misc/tifm_core 0x0c452162 tifm_unregister_driver -EXPORT_SYMBOL drivers/misc/tifm_core 0x0ffb277f tifm_queue_work -EXPORT_SYMBOL drivers/misc/tifm_core 0x112d1a0c tifm_map_sg -EXPORT_SYMBOL drivers/misc/tifm_core 0x30a5031f tifm_free_adapter -EXPORT_SYMBOL drivers/misc/tifm_core 0x350be88a tifm_eject -EXPORT_SYMBOL drivers/misc/tifm_core 0x5bee3dd2 tifm_has_ms_pif -EXPORT_SYMBOL drivers/misc/tifm_core 0x63389f1a tifm_add_adapter -EXPORT_SYMBOL drivers/misc/tifm_core 0x707168c2 tifm_unmap_sg -EXPORT_SYMBOL drivers/misc/tifm_core 0x8069cef9 tifm_alloc_device -EXPORT_SYMBOL drivers/misc/tifm_core 0x84b9c059 tifm_register_driver -EXPORT_SYMBOL drivers/misc/tifm_core 0x9a59ae3c tifm_alloc_adapter -EXPORT_SYMBOL drivers/misc/tifm_core 0xdb227091 tifm_free_device -EXPORT_SYMBOL drivers/misc/tifm_core 0xdf46ead4 tifm_remove_adapter -EXPORT_SYMBOL drivers/mmc/host/cqhci 0x2278eb88 cqhci_pltfm_init -EXPORT_SYMBOL drivers/mmc/host/cqhci 0x2a9f6e60 cqhci_deactivate -EXPORT_SYMBOL drivers/mmc/host/cqhci 0xac3ae5b5 cqhci_resume -EXPORT_SYMBOL drivers/mmc/host/cqhci 0xc3d4b586 cqhci_init -EXPORT_SYMBOL drivers/mmc/host/cqhci 0xd37255aa cqhci_irq -EXPORT_SYMBOL drivers/mmc/host/dw_mmc 0x148db84b dw_mci_runtime_resume -EXPORT_SYMBOL drivers/mmc/host/dw_mmc 0x44855236 dw_mci_probe -EXPORT_SYMBOL drivers/mmc/host/dw_mmc 0xd5e506d1 dw_mci_runtime_suspend -EXPORT_SYMBOL drivers/mmc/host/dw_mmc 0xe8e1a4fc dw_mci_remove -EXPORT_SYMBOL drivers/mmc/host/of_mmc_spi 0x09714f4a mmc_spi_get_pdata -EXPORT_SYMBOL drivers/mmc/host/of_mmc_spi 0xd1f690f1 mmc_spi_put_pdata -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x09738611 cfi_send_gen_cmd -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x3fbde769 cfi_merge_status -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x86f81f15 cfi_build_cmd_addr -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x91b85231 cfi_fixup -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xb3e6cf83 cfi_read_pri -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xc11ba585 cfi_varsize_frob -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xf65864b9 cfi_build_cmd -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xff9fa623 cfi_udelay -EXPORT_SYMBOL drivers/mtd/chips/chipreg 0x63fc6c25 map_destroy -EXPORT_SYMBOL drivers/mtd/chips/chipreg 0x978ecacf unregister_mtd_chip_driver -EXPORT_SYMBOL drivers/mtd/chips/chipreg 0xa031a595 register_mtd_chip_driver -EXPORT_SYMBOL drivers/mtd/chips/chipreg 0xb864bd5b do_map_probe -EXPORT_SYMBOL drivers/mtd/chips/gen_probe 0x510b0970 mtd_do_chip_probe -EXPORT_SYMBOL drivers/mtd/lpddr/lpddr_cmds 0x96e1281c lpddr_cmdset -EXPORT_SYMBOL drivers/mtd/maps/map_funcs 0xb033f9b9 simple_map_init -EXPORT_SYMBOL drivers/mtd/mtd 0x101195ba mtd_concat_destroy -EXPORT_SYMBOL drivers/mtd/mtd 0xc0b6c4b6 mtd_concat_create -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x29000fdc nand_ecc_cleanup_ctx -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x4662e51e nand_ecc_is_strong_enough -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x49ec96cb nand_ecc_sw_hamming_get_engine -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x4e4b4568 nand_ecc_sw_bch_calculate -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x50565125 nand_ecc_sw_bch_cleanup_ctx -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x59b3d02c nand_ecc_sw_bch_correct -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x681f067c nand_ecc_sw_hamming_cleanup_ctx -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x77f70180 nand_ecc_get_sw_engine -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x7fc17955 nand_ecc_prepare_io_req -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x7ffd1168 nand_ecc_finish_io_req -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xa3ec72d3 nand_ecc_sw_hamming_calculate -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xa418f48b of_get_nand_ecc_user_config -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xa70a24bb nand_ecc_sw_hamming_correct -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xa926e282 nand_ecc_sw_bch_init_ctx -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xb573eaf5 nand_ecc_sw_bch_get_engine -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xc140f9bb nand_ecc_get_on_die_hw_engine -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xc6b30399 nand_ecc_init_ctx -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xd28a7123 nand_ecc_sw_hamming_init_ctx -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xe6db989b ecc_sw_hamming_correct -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xff4351b0 ecc_sw_hamming_calculate -EXPORT_SYMBOL drivers/mtd/nand/onenand/onenand 0x17c320b3 flexonenand_region -EXPORT_SYMBOL drivers/mtd/nand/onenand/onenand 0xfee33370 onenand_addr -EXPORT_SYMBOL drivers/mtd/nand/raw/denali 0x27cf9397 denali_remove -EXPORT_SYMBOL drivers/mtd/nand/raw/denali 0x30db096f denali_calc_ecc_bytes -EXPORT_SYMBOL drivers/mtd/nand/raw/denali 0x4a72d724 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 0xd3d11e16 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 0x15fa0eb6 rawnand_sw_bch_init -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x19b62254 nand_read_oob_std -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x1a21d6d2 nand_monolithic_write_page_raw -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x35eb427f nand_write_oob_std -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x4fa6f61d nand_monolithic_read_page_raw -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x520b8f44 rawnand_sw_hamming_calculate -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x5525b3ca nand_read_page_raw -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x647e962f rawnand_sw_bch_cleanup -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x88d9b0ad rawnand_sw_hamming_cleanup -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x8c42ef33 rawnand_sw_hamming_correct -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x8ecbb3b8 nand_check_erased_ecc_chunk -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x986e7db7 nand_scan_with_ids -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xa1a99b10 rawnand_sw_hamming_init -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xb6f1b10f nand_get_set_features_notsupp -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xdb462156 rawnand_sw_bch_correct -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xe2320d7f nand_write_page_raw -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xe7272334 rawnand_dt_parse_gpio_cs -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xfd5244e5 nand_create_bbt -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x076978f3 arcnet_timeout -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x0b56f439 arcnet_unregister_proto -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x1e967bc2 arcnet_close -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x6534792a arcnet_debug -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x674c519a arc_proto_map -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x892875ab arcnet_send_packet -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x8f2753b9 free_arcdev -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xa5164575 arc_raw_proto -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xb5b435a4 alloc_arcdev -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xdc2d66c2 arcnet_open -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xe08f555d arc_proto_default -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xea7899e4 arc_bcast_proto -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xecb730b0 arcnet_interrupt -EXPORT_SYMBOL drivers/net/arcnet/com20020 0x91d09f6e com20020_netdev_ops -EXPORT_SYMBOL drivers/net/arcnet/com20020 0x9b77ab14 com20020_check -EXPORT_SYMBOL drivers/net/arcnet/com20020 0xd9f0919e com20020_found -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x00e4d70e b53_disable_port -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x03071a7d b53_fdb_del -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x041ba7b8 b53_br_fast_age -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x16bde24b b53_imp_vlan_setup -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x1785dbae b53_mdb_add -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x19fafd88 b53_br_set_stp_state -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x1d08f4e6 b53_mirror_del -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x1df01b1f b53_port_event -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x1ee592fe b53_br_flags_pre -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x211759b2 b53_configure_vlan -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x25ecddfb b53_vlan_del -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x29f97acb b53_mdb_del -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x3303bdd5 b53_phylink_mac_link_down -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x34ae4d09 b53_phylink_mac_link_state -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x379c1aec b53_set_mac_eee -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x4c550b44 b53_vlan_add -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x5e0b2f20 b53_setup_devlink_resources -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x61834a48 b53_get_ethtool_stats -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x6220d795 b53_get_tag_protocol -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x649e2254 b53_get_strings -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x71439820 b53_phylink_mac_an_restart -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x76111ff5 b53_eee_init -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x7e67c0a4 b53_br_join -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x8b77a243 b53_enable_port -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xaa14e08e b53_brcm_hdr_setup -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xab3e235a b53_eee_enable_set -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xacbb11f6 b53_get_mac_eee -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xbf58eb0d b53_vlan_filtering -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xc32ac39c b53_phylink_mac_link_up -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xcbf8ca72 b53_mirror_add -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xd08ef6dc b53_br_flags -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xd71841ad b53_phylink_mac_config -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xdcccd7ba b53_switch_detect -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xdfcfbb03 b53_br_leave -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xe74f8920 b53_get_ethtool_phy_stats -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xeeeed39f b53_fdb_dump -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xeef41432 b53_switch_register -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xefea1bf5 b53_fdb_add -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xf6171b5c b53_switch_alloc -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xf633f473 b53_phylink_validate -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xfff0501e b53_get_sset_count -EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x238d9c5d b53_serdes_link_set -EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x5a96fc65 b53_serdes_link_state -EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0xb1fb4800 b53_serdes_an_restart -EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0xcffd1de3 b53_serdes_phylink_validate -EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0xdd66ce0b b53_serdes_init -EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0xf137413a b53_serdes_config -EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0x0642d98f lan9303_remove -EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0x13231261 lan9303_shutdown -EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0xaac8a14d lan9303_probe -EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0xada83f40 lan9303_register_set -EXPORT_SYMBOL drivers/net/dsa/microchip/ksz8795 0x561d3d7b ksz8_switch_register -EXPORT_SYMBOL drivers/net/dsa/microchip/ksz9477 0x73ee7018 ksz9477_switch_register -EXPORT_SYMBOL drivers/net/dsa/microchip/ksz_common 0x0914b89e ksz_switch_alloc -EXPORT_SYMBOL drivers/net/dsa/microchip/ksz_common 0xb975cb7b ksz_switch_register -EXPORT_SYMBOL drivers/net/dsa/microchip/ksz_common 0xd91af7dd ksz_switch_remove -EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0x12dccb1b vsc73xx_shutdown -EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0x94a8a6d9 vsc73xx_probe -EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0x96c79faf vsc73xx_remove -EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0x99d242fe vsc73xx_is_addr_valid -EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0x2e1e01ad xrs700x_switch_register -EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0x441798e8 xrs700x_switch_alloc -EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0x755c657e xrs700x_switch_shutdown -EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0x83b7b667 xrs7003f_info -EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0x8972bf7e xrs7004f_info -EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0xb25facfa xrs7003e_info -EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0xb89aa5e3 xrs7004e_info -EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0xf99059ca xrs700x_switch_remove -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x119721ac ei_interrupt -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x259b926c ei_netdev_ops -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x3ab13b2c ei_open -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x7f8e9ac7 ei_close -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xa5c0d9ab ei_get_stats -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xc2d14395 ei_tx_timeout -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xca985cf8 ei_set_multicast_list -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xd91200dd ei_start_xmit -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xe1e76704 NS8390_init -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xe96bed6f ei_poll -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xf50dda79 __alloc_ei_netdev -EXPORT_SYMBOL drivers/net/ethernet/broadcom/bnxt/bnxt_en 0x5e3d0835 bnxt_ulp_probe -EXPORT_SYMBOL drivers/net/ethernet/broadcom/cnic 0x0ea2ce4f cnic_register_driver -EXPORT_SYMBOL drivers/net/ethernet/broadcom/cnic 0x636af174 cnic_unregister_driver -EXPORT_SYMBOL drivers/net/ethernet/cavium/common/cavium_ptp 0x0da713bd cavium_ptp_get -EXPORT_SYMBOL drivers/net/ethernet/cavium/common/cavium_ptp 0x3fe59c83 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 0x0c924334 cxgb3_remove_tid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x138860dd dev2t3cdev -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x2423d20d t3_l2t_send_slow -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x3a491635 t3_l2t_get -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x4063c0d7 cxgb3_alloc_atid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x62615f7e cxgb3_insert_tid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x691a9a1c cxgb3_free_stid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x7158a6e6 cxgb3_register_client -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x73bd90ac cxgb3_free_atid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x7cfb68a3 t3_l2t_send_event -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x9720e600 cxgb3_alloc_stid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xb9fe4f39 cxgb3_unregister_client -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xca3b0b49 cxgb3_queue_tid_release -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xebdeacfd cxgb3_ofld_send -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xf5b1e03b t3_register_cpl_handler -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xfd2f77cb t3_l2e_free -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x064fd59c cxgb4_remove_tid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x0dce2ee0 cxgb4_update_root_dev_clip -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x0e06a768 cxgb4_smt_alloc_switching -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x0e5622be cxgb4_sync_txq_pidx -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x0f1a5528 cxgb4_unregister_uld -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x108ec161 cxgb4_get_srq_entry -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x10b5391c cxgb4_create_server_filter -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x11ce9024 cxgb4_create_server -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x15f8434a cxgb4_map_skb -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x17e6de39 cxgb4_free_atid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x195b6c4e cxgb4_get_tcp_stats -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x1d581201 cxgb4_clip_get -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x1ffe309e cxgb4_remove_server_filter -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x234f3c47 cxgb4_read_sge_timestamp -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x3ae18959 cxgb4_clip_release -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x3f2b88d7 cxgb4_write_sgl -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x4096de68 cxgb4_alloc_atid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x44b8cd20 cxgb4_free_stid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x44fc240e cxgb4_check_l2t_valid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x45ef21d0 cxgb4_remove_server -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x4893a6c4 cxgb4_alloc_stid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x50ee5c07 cxgb4_best_aligned_mtu -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x5f547f4a cxgb4_read_tpte -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x67d1cceb t4_cleanup_clip_tbl -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x6a110917 cxgb4_port_idx -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x71622a65 cxgb4_bar2_sge_qregs -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x762431da cxgb4_smt_release -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x80c53833 cxgb4_l2t_get -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x856d89fe cxgb4_l2t_send -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x8b288c0d cxgb4_pktgl_to_skb -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x8ec20ba1 cxgb4_alloc_sftid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x91d9a551 cxgb4_inline_tx_skb -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x943f82bf cxgb4_reclaim_completed_tx -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa043717e cxgb4_port_chan -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa2a2b04a cxgb4_immdata_send -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa65b9e3d cxgb4_flush_eq_cache -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xafaafc33 cxgb4_dbfifo_count -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xb1faf90d cxgb4_l2t_alloc_switching -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xb8633c15 cxgb4_select_ntuple -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xbf75f0be cxgb4_write_partial_sgl -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xc1591166 cxgb4_ring_tx_db -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd3022ff2 cxgb4_port_e2cchan -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd5aac383 cxgb4_iscsi_init -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd69a0294 cxgb4_best_mtu -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xe3d42f94 cxgb4_crypto_send -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xf019e708 cxgb4_register_uld -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xf04740fd cxgb4_create_server6 -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xf93f2fd3 cxgb4_ofld_send -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xfb4f130e cxgb4_port_viid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xfc4ce658 cxgb4_l2t_release -EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x1bdaafe1 cxgbi_tagmask_set -EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x23b9e691 cxgb_find_route -EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x255ab30f cxgb_get_4tuple -EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x473c17fb cxgbi_ppm_release -EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x54c48c68 cxgbi_ppm_ppods_reserve -EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x8bb9772e cxgbi_ppm_make_ppod_hdr -EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x8d89c4fd cxgbi_ppm_init -EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0xb7e0dccc cxgbi_ppm_ppod_release -EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0xe6a7df70 cxgb_find_route6 -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x19fee9b8 vnic_dev_get_res_count -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x3e1f70a7 enic_api_devcmd_proxy_by_index -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x791e4892 vnic_dev_get_res -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xc4887281 vnic_dev_unregister -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xc86c6513 vnic_dev_register -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xfa99b638 vnic_dev_get_pdev -EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0x05fb084d 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 0xc5aacb88 be_roce_register_driver -EXPORT_SYMBOL drivers/net/ethernet/freescale/dpaa2/fsl-dpaa2-eth 0x4412391e dpaa2_phc_index -EXPORT_SYMBOL drivers/net/ethernet/freescale/dpaa2/fsl-dpaa2-eth 0xfa28113e dpaa2_ptp -EXPORT_SYMBOL drivers/net/ethernet/freescale/enetc/fsl-enetc-ierb 0xd47c0154 enetc_ierb_register_pf -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0x6fe482ca hnae_get_handle -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0x7c328bb3 hnae_put_handle -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0x9130af37 hnae_reinit_handle -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0x9904d69e 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/hnae 0xe28ed26b hnae_ae_register -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hns_dsaf 0x777d6373 hns_dsaf_roce_reset -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0x239cd734 hnae3_set_client_init_flag -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0x3641296b hnae3_unregister_ae_algo -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0x4086126d hnae3_register_ae_algo -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0x4e65710b hnae3_register_ae_dev -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0x573d199f hnae3_unregister_client -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0x6b2d4e84 hnae3_register_client -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0x72752610 hnae3_unregister_ae_dev -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0xffd06519 hnae3_unregister_ae_algo_prepare -EXPORT_SYMBOL drivers/net/ethernet/intel/iavf/iavf 0x74a0ad6a iavf_unregister_client -EXPORT_SYMBOL drivers/net/ethernet/intel/iavf/iavf 0x8e34eab9 iavf_register_client -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x1c8ba3e9 __traceiter_otx2_msg_alloc -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x20afdd92 __traceiter_otx2_msg_interrupt -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x2b4374b2 otx2_mbox_nonempty -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x3381e820 otx2_mbox_destroy -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x351d3f0c otx2_mbox_busy_poll_for_rsp -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x364e8761 __SCK__tp_func_otx2_msg_interrupt -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x3ceafe9d otx2_mbox_alloc_msg_rsp -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x3ec32069 otx2_reply_invalid_msg -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x49286d3c __tracepoint_otx2_msg_alloc -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x4d90631b __tracepoint_otx2_msg_interrupt -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x5544c614 __traceiter_otx2_msg_process -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x621044f3 otx2_mbox_check_rsp_msgs -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x6365a74f __SCK__tp_func_otx2_msg_alloc -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x7013da34 otx2_mbox_get_rsp -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x70746dc7 otx2_mbox_msg_send -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x8f772a3f otx2_mbox_id2name -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x9fba1f45 otx2_mbox_regions_init -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0xa2d9bb8b otx2_mbox_reset -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0xad15079d otx2_mbox_init -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0xb150b38c __tracepoint_otx2_msg_process -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0xcef3985a __SCK__tp_func_otx2_msg_process -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0xe64c789e otx2_mbox_wait_for_rsp -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0xfade5ffd __otx2_mbox_reset -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x04bb1012 mbox_handler_nix_bp_enable -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x0923277e otx2_get_mac_from_af -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x136bf8c0 otx2_get_stats64 -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x20e7805d mbox_handler_msix_offset -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x210e25c4 otx2vf_set_ethtool_ops -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x29900609 otx2vf_mcam_flow_init -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x339368e0 otx2_sq_append_skb -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x3afbee59 otx2_detach_resources -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x434cde6f otx2_tx_timeout -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x4990dbf4 mbox_handler_npa_lf_alloc -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x4e5e71fd otx2_mbox_up_handler_cgx_link_event -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x5b24914b otx2_open -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x5bcff7d8 otx2_set_mac_address -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x5f69b2b5 otx2_attach_npa_nix -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x64384109 otx2_stop -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x6c153afd mbox_handler_nix_lf_alloc -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x7df3c23f otx2_mcam_flow_del -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xaae0130e otx2_set_real_num_queues -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xba993af6 otx2_alloc_mcam_entries -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xbbfed198 otx2_tc_alloc_ent_bitmap -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xd57c1887 cn10k_lmtst_init -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xe1cf15a7 otx2_get_max_mtu -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xe20f916c mbox_handler_nix_txsch_alloc -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xeffd130b otx2_get_maxflows -EXPORT_SYMBOL drivers/net/ethernet/marvell/prestera/prestera 0x17eb8985 prestera_device_unregister -EXPORT_SYMBOL drivers/net/ethernet/marvell/prestera/prestera 0xdc705fb7 prestera_device_register -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x06ffcac8 mlx4_is_eq_shared -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x08044ddc mlx4_get_cpu_rmap -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x08610fcc mlx4_is_slave_active -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x17799545 mlx4_get_eqs_per_port -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1ceffaa9 mlx4_tunnel_steer_add -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x25b9631b set_and_calc_slave_port_state -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2be5b942 mlx4_get_roce_gid_from_slave -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2fc1ccd1 mlx4_SET_VPORT_QOS_get -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2fc5d2d5 mlx4_max_tc -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x364b456a mlx4_sync_pkey_table -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3a58a9e9 mlx4_SET_VPORT_QOS_set -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4656ad40 mlx4_assign_eq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4a8d7947 mlx4_ALLOCATE_VPP_set -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4ce5eae7 mlx4_get_is_vlan_offload_disabled -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x50905f07 mlx4_get_slave_from_roce_gid -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5166d21b mlx4_SET_PORT_user_mac -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5544cd9b mlx4_gen_port_state_change_eqe -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5bf1c694 mlx4_get_module_info -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x672e2b42 mlx4_SET_MCAST_FLTR -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x68bbf248 mlx4_ALLOCATE_VPP_get -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6f531542 mlx4_SET_PORT_SCHEDULER -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x76b04d3c 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 0x80f78dc0 mlx4_gen_guid_change_eqe -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x819d4eea mlx4_SET_PORT_qpn_calc -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x829c73bd mlx4_test_interrupt -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8a29f4a6 mlx4_SET_PORT_fcs_check -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8ab48cc3 mlx4_release_eq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x91c5e623 mlx4_SET_PORT_user_mtu -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9bf66e0a get_phv_bit -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa113ef35 mlx4_eq_get_irq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xae674c0d mlx4_SET_PORT_BEACON -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb1f533f8 mlx4_get_slave_node_guid -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbb144dfa mlx4_SET_PORT_VXLAN -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc89680e0 mlx4_put_slave_node_guid -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xca1c4e42 mlx4_test_async -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcc238d62 mlx4_get_parav_qkey -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd8111272 mlx4_SET_PORT_PRIO2TC -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xde2f7fd6 mlx4_get_slave_port_state -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe4d2dc56 mlx4_is_eq_vector_valid -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe6246507 mlx4_query_diag_counters -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe6c9c21d mlx4_SET_PORT_general -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf90f21a5 set_phv_bit -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfaf31995 mlx4_get_slave_pkey_gid_tbl_len -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfbf8e0de mlx4_gen_slaves_port_mgt_ev -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x01d6de85 mlx5_comp_vectors_count -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x04a8e008 mlx5_cmd_exec_cb -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x04f18b89 mlx5_eq_update_ci -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x05299527 mlx5_rsc_dump_cmd_create -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x08005d3a mlx5_lag_get_slave_port -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0923a93a mlx5_core_modify_rq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0ca4342f mlx5_packet_reformat_dealloc -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0f2649b2 mlx5_eq_destroy_generic -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x12fcc6c7 mlx5_core_create_rqt -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x13be2520 mlx5_core_destroy_cq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x16f9de36 mlx5_core_detach_mcg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x187abfe2 mlx5_core_query_sq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x18e3304e __traceiter_mlx5_fs_del_ft -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1c516488 mlx5_packet_reformat_alloc -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1d264430 mlx5_nic_vport_disable_roce -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1d51a086 mlx5_rl_remove_rate_raw -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1e2fce0d mlx5_fpga_sbu_conn_sendmsg -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 0x1e96d809 __traceiter_mlx5_fs_del_fte -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x22bce683 __tracepoint_mlx5_fs_del_fte -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x243955fa mlx5_core_destroy_rqt -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x24a5e441 mlx5_destroy_flow_group -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x25757ae6 mlx5_put_uars_page -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x27a3426c mlx5_rdma_rn_get_params -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x27cc5110 mlx5_core_destroy_tir -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x29a26477 mlx5_core_create_psv -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2a858bef mlx5_add_flow_rules -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2c6d040d mlx5_rl_add_rate -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2d68d4ed mlx5_core_create_mkey -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2e656848 mlx5_fpga_get_sbu_caps -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2f5cef9b mlx5_eq_notifier_register -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2f791ee7 mlx5_eswitch_get_vport_metadata_for_match -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x30533a8c mlx5_core_destroy_mkey -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x32622608 mlx5_fs_add_rx_underlay_qpn -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x32fc77d1 __tracepoint_mlx5_fs_del_rule -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3475821f __SCK__tp_func_mlx5_fs_add_ft -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3820c155 mlx5_lag_is_master -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x397b8849 mlx5_modify_header_dealloc -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x406b8a26 mlx5_mpfs_del_mac -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x40977160 mlx5_core_query_mkey -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x44c15f26 mlx5_eq_create_generic -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4729e57c __traceiter_mlx5_fw -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x48838c92 mlx5_eswitch_register_vport_reps -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x48918087 mlx5_eswitch_get_core_dev -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4d55d982 mlx5_fc_query -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4d5f5c07 __SCK__tp_func_mlx5_fs_del_rule -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4d6f96e8 mlx5_core_destroy_rq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4e797d82 mlx5_cmd_alloc_uar -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4ec528da mlx5_cmd_free_uar -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 0x577141b6 mlx5_qp_debugfs_init -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x57dd1937 mlx5_cmd_exec_polling -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5a9ec4a4 mlx5_cmd_init_async_ctx -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5b1014db mlx5_eswitch_vport_match_metadata_enabled -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5baf296a mlx5_core_create_rq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5c2790c5 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 0x61981db0 mlx5_alloc_bfreg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x62f44906 mlx5_core_create_tis -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x638ea75f mlx5_create_flow_group -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x649dd084 mlx5_core_modify_cq_moderation -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6877f887 __traceiter_mlx5_fs_add_ft -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6b221a6f __traceiter_mlx5_fs_del_rule -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6d69d7b8 mlx5_notifier_register -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6f1bef79 mlx5_core_destroy_tis -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6f7203d0 mlx5_notifier_unregister -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x711c6234 mlx5_debugfs_root -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 0x731e9a61 mlx5_fc_create -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x753de618 mlx5_lag_is_sriov -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x789ec75e mlx5_core_roce_gid_set -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x79b13c0d mlx5_cmd_destroy_vport_lag -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x79d96690 mlx5_eq_disable -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7a85d19c mlx5_get_uars_page -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7b359a09 __SCK__tp_func_mlx5_fw -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7f9a4f11 mlx5_eswitch_get_proto_dev -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7fd709fe __tracepoint_mlx5_fs_add_fg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x80c6f23d mlx5_fpga_mem_write -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8127dc29 mlx5_core_alloc_transport_domain -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x83f9fbf1 mlx5_lag_get_peer_mdev -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x84d14f74 __traceiter_mlx5_fs_add_rule -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x853731fc mlx5_rl_add_rate_raw -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x85ac3eeb mlx5_fc_destroy -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x86295243 mlx5_modify_header_alloc -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x86732717 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 0x876c9bf7 mlx5_core_alloc_pd -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x89f61457 mlx5_comp_irq_get_affinity_mask -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8c669b00 mlx5_core_dealloc_transport_domain -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8f5d407b mlx5_eswitch_unregister_vport_reps -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8f869224 mlx5_eq_enable -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8fe840bc mlx5_fpga_sbu_conn_destroy -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9159d89a mlx5_core_modify_cq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x92127dfd mlx5_mpfs_add_mac -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9341d226 mlx5_core_query_vendor_id -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x96eb2c99 mlx5_fc_id -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9780e53c mlx5_eswitch_reg_c1_loopback_enabled -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x97e3a0cd mlx5_rsc_dump_next -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9d41f038 mlx5_cmd_create_vport_lag -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 0xa4fac1cc mlx5_eswitch_get_encap_mode -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa6a9f942 mlx5_core_query_rq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xab930698 mlx5_destroy_flow_table -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xac75b19e mlx5_del_flow_rules -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 0xae351563 mlx5_core_attach_mcg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xaead7fb5 mlx5_qp_debugfs_cleanup -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb04575f2 mlx5_fs_remove_rx_underlay_qpn -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb0d8787c mlx5_lag_query_cong_counters -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb1c3aee7 mlx5_core_query_cq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb3e34587 mlx5_lag_get_roce_netdev -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb40f0c23 mlx5_get_flow_namespace -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb4527b74 mlx5_debug_qp_remove -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb49c39a8 mlx5_core_create_tir -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb70fc28d mlx5_free_bfreg -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 0xb7f0ef9a mlx5_core_modify_sq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbb33eee1 mlx5_core_destroy_psv -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 0xbd757c6b __traceiter_mlx5_fs_del_fg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc367e0b7 mlx5_create_flow_table -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc67bbe2b mlx5_lag_is_shared_fdb -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc836e106 mlx5_rl_remove_rate -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc96c367b mlx5_eq_notifier_unregister -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xca8d473a mlx5_query_ib_port_oper -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcd693998 __traceiter_mlx5_fs_add_fg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcec97292 mlx5_core_create_cq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd18290a1 mlx5_create_auto_grouped_flow_table -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd25730b8 mlx5_core_dealloc_pd -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd64c2afd mlx5_rl_is_in_range -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 0xdcde581e mlx5_vector2eqn -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdd337889 mlx5_create_lag_demux_flow_table -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xddcf2511 mlx5_lag_is_active -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe4185dd2 __traceiter_mlx5_fs_set_fte -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe4cfa057 mlx5_cmd_cleanup_async_ctx -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe4e09c2b __tracepoint_mlx5_fw -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe5e032a3 mlx5_eq_get_eqe -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe61629de mlx5_buf_alloc -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe6ce22f9 mlx5_eswitch_get_vport_metadata_for_set -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 0xef30f1f2 mlx5_core_modify_tis -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xefb69c33 mlx5_lag_is_roce -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf00b30eb mlx5_fpga_mem_read -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf78da11b mlx5_eswitch_vport_rep -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 0xfa9c61bc mlx5_fpga_sbu_conn_create -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfab7315d mlx5_debug_qp_add -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 0xfd581e78 mlx5_get_fdb_sub_ns -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfebf1743 mlx5_eswitch_add_send_to_vport_rule -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxfw/mlxfw 0x773b68aa 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 0x0d8ca652 mlxsw_core_bus_device_register -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 0x2a73e89a mlxsw_core_skb_receive -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x2c68ced3 mlxsw_core_read_frc_h -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 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 0x3a608b0a 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 0x49c54273 mlxsw_core_port_devlink_port_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 0x4c1efab3 mlxsw_core_port_eth_set -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x57e4d246 mlxsw_core_trap_unregister -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x5a099407 mlxsw_afa_block_append_qos_dscp -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x5cf3dd79 mlxsw_core_bus_device_unregister -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x5ff17b5c mlxsw_afa_block_destroy -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x618a30ab mlxsw_afa_block_commit -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x61ea9293 mlxsw_core_event_listener_register -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x63874d4c mlxsw_core_port_driver_priv -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x65e16da4 mlxsw_afk_key_info_get -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x666a124a mlxsw_env_get_module_eeprom -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x692ac04e mlxsw_afk_create -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x713b606d mlxsw_core_driver_unregister -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x71e1d813 mlxsw_core_port_clear -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x749556a2 mlxsw_afk_key_info_subset -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x74eb7c9e mlxsw_core_res_valid -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x75fca4ca mlxsw_core_driver_register -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x77768221 mlxsw_core_module_max_width -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x77d83398 mlxsw_core_read_frc_l -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x7f659d4c mlxsw_afa_block_append_vlan_modify -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 0x9408f60f mlxsw_afa_create -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x97035a9c mlxsw_afa_block_append_fid_set -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x97cf0ab9 mlxsw_core_port_is_xm -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x996c5d6d mlxsw_reg_trans_bulk_wait -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x9cbf026d mlxsw_afa_destroy -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x9e41f494 mlxsw_afk_encode -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xa4b92de6 mlxsw_core_trap_state_set -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xa7765e88 mlxsw_reg_query -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xb51d3024 mlxsw_core_trap_register -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xb5e762fa mlxsw_afk_values_add_buf -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xb6517b2e mlxsw_afa_block_append_trap_and_forward -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xb9f797a9 mlxsw_env_module_overheat_counter_get -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xba05b3b0 mlxsw_core_emad_string_tlv_enable -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 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 0xbc5ce590 mlxsw_core_skb_transmit -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xbe82d6cc mlxsw_env_get_module_info -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xbfb7df3c mlxsw_core_driver_priv -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xbfd01f33 mlxsw_core_port_ib_set -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xc9c2e4cc mlxsw_core_lag_mapping_clear -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xca257489 mlxsw_afa_block_append_fwd -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xcbab836f mlxsw_core_fw_rev_minor_subminor_validate -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xd1a82f0b mlxsw_core_lag_mapping_get -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xd252e62d mlxsw_core_skb_transmit_busy -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xd28256cf mlxsw_afa_block_append_allocated_counter -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xd4874014 mlxsw_core_resources_query -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xd71566b9 mlxsw_core_schedule_work -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xd84eb6b0 mlxsw_afa_block_append_drop -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xd9f711ae mlxsw_afa_block_append_mcrouter -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xdc31781e mlxsw_reg_trans_write -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xdc415cf1 mlxsw_afa_block_continue -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xde4e211f mlxsw_afa_block_append_l4port -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xdeb1dc2e mlxsw_afa_block_first_kvdl_index -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xe16986dd mlxsw_afa_block_activity_get -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xecab212a mlxsw_afa_cookie_lookup -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xefb41697 mlxsw_core_rx_listener_unregister -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xefcbd647 mlxsw_core_ptp_transmitted -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 0xfe861254 mlxsw_core_rx_listener_register -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xff007c25 mlxsw_core_cpu_port_fini -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_i2c 0x7b7c9e7a mlxsw_i2c_driver_unregister -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_i2c 0xd21a24f8 mlxsw_i2c_driver_register -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_pci 0x00466e0c mlxsw_pci_driver_unregister -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_pci 0x903991ea mlxsw_pci_driver_register -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x00b3d422 ocelot_apply_bridge_fwd_mask -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x00d11099 ocelot_port_inject_frame -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x09d0b506 ocelot_devlink_sb_register -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x0f94ccb9 ocelot_sb_port_pool_set -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x10fee154 ocelot_drain_cpu_queue -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x130a599d ocelot_get_txtstamp -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x1b8e332e ocelot_port_bridge_flags -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x1dad3e50 ocelot_sb_tc_pool_bind_set -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x1e8be674 ocelot_sb_occ_tc_port_bind_get -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x23137327 ocelot_ptp_gettime64 -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x2442eef9 ocelot_xtr_poll_frame -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 0x288116e6 ocelot_port_policer_add -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x2c90684e ocelot_devlink_sb_unregister -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x331ce248 ocelot_port_pre_bridge_flags -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x341c44bf ocelot_deinit -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x3938058f ocelot_sb_port_pool_get -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x39946e06 ocelot_port_mdb_add -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x3dc27bb7 ocelot_init_port -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x4305a0bf ocelot_port_bridge_join -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x4320a913 ocelot_deinit_timestamp -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x46c13641 ocelot_mact_forget -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x48c4bc90 ocelot_sb_occ_max_clear -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x4f66c0e1 ocelot_sb_tc_pool_bind_get -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x501fc5fa ocelot_port_mdb_del -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x50afccbe ocelot_vcap_filter_del -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x52ee6a67 ocelot_fdb_dump -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x53b46539 ocelot_vlan_del -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x59fb7d32 ocelot_port_set_maxlen -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x663b6f2e ocelot_get_ethtool_stats -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x678e8836 ocelot_vlan_prepare -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x6b97f925 ocelot_ptp_adjfine -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x6d979286 ocelot_port_lag_leave -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x6db45063 ocelot_port_bridge_leave -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x6fb74f95 ocelot_get_sset_count -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x715dbd6d ocelot_port_policer_del -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x76cc3bdc ocelot_sb_pool_set -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x76fdc72a ocelot_mrp_del_ring_role -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x77daffdc ocelot_port_vlan_filtering -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7ab9966b ocelot_port_lag_change -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7c7b8b9c ocelot_bridge_stp_state_set -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7ca17b6e ocelot_vcap_filter_add -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x88a42423 ocelot_mrp_add_ring_role -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x8a85c6a8 ocelot_vcap_block_find_filter_by_id -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x8b19f95a ocelot_get_ts_info -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x8b57414a ocelot_fdb_add -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x8cabe6e8 ocelot_get_strings -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x8dbe7ed4 ocelot_vlan_add -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x94683ccc ocelot_hwstamp_get -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x953b0964 ocelot_ptp_enable -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x9a1ccba6 ocelot_port_txtstamp_request -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x9d7d8743 ocelot_mact_learn -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x9f7ab2bc ocelot_ptp_adjtime -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xa050047e ocelot_sb_pool_get -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xa63db28b ocelot_sb_occ_snapshot -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xa8574a2e ocelot_deinit_port -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb29af985 ocelot_mrp_add -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb484aed6 ocelot_mrp_del -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xd10f2e49 ocelot_fdb_del -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xd30a28e9 ocelot_port_lag_join -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xd3f4bc8f ocelot_can_inject -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xd63571d1 ocelot_hwstamp_set -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xd9750600 ocelot_set_ageing_time -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xd9c991fc ocelot_init_timestamp -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xf0041114 ocelot_get_max_mtu -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xf8d34eba ocelot_ptp_settime64 -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xf91385b7 ocelot_ptp_verify -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xfc1c377f ocelot_init -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xff2ea1dc ocelot_sb_occ_port_pool_get -EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x0b11babe qed_get_fcoe_ops -EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x44d3970f 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 0x5d410e89 qed_get_iscsi_ops -EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x6fd63f12 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/qede/qede 0x048433e2 qede_rdma_register_driver -EXPORT_SYMBOL drivers/net/ethernet/qlogic/qede/qede 0x32a07328 qede_rdma_unregister_driver -EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x58fdd269 hdlcdrv_register -EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x5ed828cb hdlcdrv_receiver -EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0xd92e6e20 hdlcdrv_unregister -EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0xee724465 hdlcdrv_arbitrate -EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0xfd7a29bb 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-cavium 0x693f46b3 cavium_mdiobus_read -EXPORT_SYMBOL drivers/net/mdio/mdio-cavium 0xf786e41c cavium_mdiobus_write -EXPORT_SYMBOL drivers/net/mdio/mdio-xgene 0x08b3e2f3 xgene_mdio_rgmii_read -EXPORT_SYMBOL drivers/net/mdio/mdio-xgene 0x654ec877 xgene_mdio_rgmii_write -EXPORT_SYMBOL drivers/net/mdio/mdio-xgene 0x7cdbfd2f xgene_mdio_wr_mac -EXPORT_SYMBOL drivers/net/mdio/mdio-xgene 0xa660a75b xgene_enet_phy_register -EXPORT_SYMBOL drivers/net/mdio/mdio-xgene 0xa9180841 xgene_mdio_rd_mac -EXPORT_SYMBOL drivers/net/pcs/pcs-lynx 0x69ef4133 lynx_pcs_create -EXPORT_SYMBOL drivers/net/pcs/pcs-lynx 0xd554ec19 lynx_pcs_destroy -EXPORT_SYMBOL drivers/net/phy/bcm-phy-lib 0x4f3dce25 bcm54xx_auxctl_write -EXPORT_SYMBOL drivers/net/ppp/pppox 0x2e71b382 register_pppox_proto -EXPORT_SYMBOL drivers/net/ppp/pppox 0x42eeae2f pppox_unbind_sock -EXPORT_SYMBOL drivers/net/ppp/pppox 0x56e39e3e pppox_ioctl -EXPORT_SYMBOL drivers/net/ppp/pppox 0xcebf7d6f pppox_compat_ioctl -EXPORT_SYMBOL drivers/net/ppp/pppox 0xe0ff7a18 unregister_pppox_proto -EXPORT_SYMBOL drivers/net/sungem_phy 0xd1d60b9d sungem_phy_probe -EXPORT_SYMBOL drivers/net/team/team 0x20682f46 team_modeop_port_enter -EXPORT_SYMBOL drivers/net/team/team 0x33692947 team_mode_unregister -EXPORT_SYMBOL drivers/net/team/team 0x71af6872 team_mode_register -EXPORT_SYMBOL drivers/net/team/team 0x8888de2a team_modeop_port_change_dev_addr -EXPORT_SYMBOL drivers/net/team/team 0x89de2880 team_options_register -EXPORT_SYMBOL drivers/net/team/team 0x9153cae7 team_option_inst_set_change -EXPORT_SYMBOL drivers/net/team/team 0x9572a565 team_options_unregister -EXPORT_SYMBOL drivers/net/team/team 0xd0eac9be team_options_change_check -EXPORT_SYMBOL drivers/net/usb/usbnet 0x0c032284 usbnet_manage_power -EXPORT_SYMBOL drivers/net/usb/usbnet 0x194571b5 usbnet_device_suggests_idle -EXPORT_SYMBOL drivers/net/usb/usbnet 0x8599f645 usbnet_link_change -EXPORT_SYMBOL drivers/net/wan/hdlc 0x003093b4 hdlc_start_xmit -EXPORT_SYMBOL drivers/net/wan/hdlc 0x040314d0 detach_hdlc_protocol -EXPORT_SYMBOL drivers/net/wan/hdlc 0x36b070e6 unregister_hdlc_protocol -EXPORT_SYMBOL drivers/net/wan/hdlc 0xb47e99c4 unregister_hdlc_device -EXPORT_SYMBOL drivers/net/wan/hdlc 0xbe256854 hdlc_open -EXPORT_SYMBOL drivers/net/wan/hdlc 0xcc44fb3a alloc_hdlcdev -EXPORT_SYMBOL drivers/net/wan/hdlc 0xe40202a5 hdlc_close -EXPORT_SYMBOL drivers/net/wan/hdlc 0xf26f2315 hdlc_ioctl -EXPORT_SYMBOL drivers/net/wan/hdlc 0xf4d98195 register_hdlc_protocol -EXPORT_SYMBOL drivers/net/wan/hdlc 0xfdc9366d attach_hdlc_protocol -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x015ca136 ath_hw_keysetmac -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x108b188f ath_is_49ghz_allowed -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x1639ed8a ath_hw_get_listen_time -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x283eaa9b ath_printk -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x448b2ac7 ath_hw_keyreset -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x4571aea8 ath_is_world_regd -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x5f59ec32 ath_rxbuf_alloc -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x65a38cab ath_is_mybeacon -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x6f52addb ath_key_config -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x86be8d71 ath_key_delete -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x8f0eb625 ath_regd_init -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xa10635f6 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 0xe5e1ee78 dfs_pattern_detector_init -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xe7b05b2c ath_reg_notifier_apply -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xee114561 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 0x029b82b2 ath10k_ce_send_nolock -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x02ad8121 ath10k_ce_free_pipe -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x02da4ab9 ath10k_core_start -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x04029b90 ath10k_ce_enable_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x04b68389 ath10k_ce_per_engine_service -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x07dfadb1 ath10k_ce_completed_send_next -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x0f2f3cf9 ath10k_core_check_dt -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x1881d723 ath10k_mac_tx_push_pending -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x1c013b9d __ath10k_ce_rx_num_free_bufs -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x1f4903c2 ath10k_ce_rx_post_buf -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x294be1a6 ath10k_htc_rx_completion_handler -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x2e3e9936 ath10k_info -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x3681d886 ath10k_htt_hif_tx_complete -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x3b557d6b ath10k_htc_process_trailer -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x419882e7 ath10k_core_napi_sync_disable -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x42b05071 ath10k_ce_revoke_recv_next -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x46b3c445 ath10k_htt_txrx_compl_task -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x47adea60 ath10k_ce_free_rri -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x4c239f74 ath10k_ce_init_pipe -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x4cbf153b ath10k_ce_per_engine_service_any -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x4e1280f1 ath10k_ce_disable_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x546ff009 ath10k_htt_t2h_msg_handler -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x5583d2d0 ath10k_core_create -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x5c2da40d ath10k_ce_dump_registers -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x613701cd ath10k_core_stop -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x62e872f7 ath10k_ce_completed_recv_next -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x65796748 ath10k_htc_tx_completion_handler -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x69f06f9a ath10k_bmi_read_memory -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x72620e57 ath10k_ce_deinit_pipe -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x7a11b3cd ath10k_htt_rx_hl_indication -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x8192dae8 ath10k_ce_disable_interrupt -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x82078fef ath10k_err -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x843fc539 ath10k_bmi_start -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x859bebfd __ath10k_ce_send_revert -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x87f981f1 ath10k_coredump_new -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x9526913f ath10k_core_napi_enable -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x967f5ea1 ath10k_ce_send -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x976aab8c ath10k_core_unregister -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x977dbf63 ath10k_ce_num_free_src_entries -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x97bbec97 ath10k_core_start_recovery -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x9ae9bc49 ath10k_core_free_board_files -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xa1e4849a __tracepoint_ath10k_log_dbg -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xadc25534 ath10k_core_register -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xb3832945 ath10k_ce_rx_update_write_idx -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xb4685074 ath10k_ce_enable_interrupt -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xc15ddcfc ath10k_core_fetch_board_file -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xc1d89f98 ath10k_ce_alloc_pipe -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xc553c732 ath10k_core_destroy -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xccf1db43 ath10k_htt_rx_pktlog_completion_handler -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xceb5e038 ath10k_ce_completed_send_next_nolock -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xd439fc16 ath10k_warn -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xdc9814ec ath10k_ce_alloc_rri -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xdf68bcca ath10k_print_driver_info -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xe619b46f ath10k_coredump_get_mem_layout -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xe9e4b706 ath10k_ce_cancel_send_next -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xf0cae678 ath10k_ce_completed_recv_next_nolock -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xf145e939 ath10k_htc_notify_tx_completion -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x0065532c ath11k_warn -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x15df681f ath11k_qmi_deinit_service -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x1685241b ath11k_err -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x2dadcc79 ath11k_ce_per_engine_service -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x363aa857 ath11k_core_init -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x3dfe5672 ath11k_ce_get_shadow_config -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x54d99c0b ath11k_core_pre_init -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x67db8ef9 ath11k_ce_free_pipes -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x6eb10db6 ath11k_core_resume -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x80037525 ath11k_debugfs_soc_destroy -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x8de8f012 ath11k_ce_rx_post_buf -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x96fdc0ae ath11k_core_free -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x98c3ebb4 ath11k_core_alloc -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x9c51bcc4 ath11k_debug_mask -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x9d82d778 ath11k_dp_service_srng -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x9e654a44 ath11k_core_deinit -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xb9648331 ath11k_ce_get_attr_flags -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xc8e429db ath11k_core_suspend -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xd5fa3279 ath11k_hal_srng_init -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xe128e161 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 0xfca325d8 ath11k_info -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xfed2f3f0 ath11k_hal_srng_deinit -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xfffb6d8c ath11k_ce_cleanup_pipes -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x03d66022 ath6kl_core_create -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x08d28399 ath6kl_cfg80211_suspend -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x1354043d ath6kl_warn -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x16564376 ath6kl_core_rx_complete -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x28bdbe7d ath6kl_cfg80211_resume -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x3502feef ath6kl_info -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x3fb272cc ath6kl_hif_intr_bh_handler -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x492128eb 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 0x9585b1f6 ath6kl_core_tx_complete -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x96c928b4 ath6kl_read_tgt_stats -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xa5fda9f5 ath6kl_core_cleanup -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xb881b1a9 ath6kl_printk -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xb9a689dd ath6kl_err -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xe1e07497 ath6kl_stop_txrx -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xf0f23741 ath6kl_core_destroy -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x0ad6e175 ath9k_cmn_debug_base_eeprom -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x15d2dbc9 ath9k_cmn_debug_modal_eeprom -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x1e708a32 ath9k_cmn_debug_recv -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x1f0da922 ath9k_cmn_beacon_config_ap -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x3d6e2a5b ath9k_cmn_beacon_config_sta -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x4dd48b9a ath_cmn_process_fft -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x50c5d091 ath9k_cmn_process_rate -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x75c7d749 ath9k_cmn_get_hw_crypto_keytype -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x8abadcce ath9k_cmn_spectral_scan_trigger -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x9184e777 ath9k_cmn_init_crypto -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x9545197e ath9k_cmn_beacon_config_adhoc -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xa6dd1e8b ath9k_cmn_rx_skb_postprocess -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xb40304fd ath9k_cmn_update_txpow -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xb76fccc7 ath9k_cmn_debug_stat_rx -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xbc70bc26 ath9k_cmn_init_channels_rates -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xcfc73462 ath9k_cmn_rx_accept -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xd2981357 ath9k_cmn_count_streams -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xd867e657 ath9k_cmn_reload_chainmask -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xda3bb817 ath9k_cmn_spectral_scan_config -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xe523ba7a ath9k_cmn_setup_ht_cap -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xe74b65cd ath9k_cmn_debug_phy_err -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xeebb6267 ath9k_cmn_spectral_deinit_debug -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xeffc4a31 ath9k_cmn_process_rssi -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xf75496b0 ath9k_cmn_get_channel -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xfaaf1344 ath9k_cmn_spectral_init_debug -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0309eeb1 ath9k_hw_abort_tx_dma -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x094da9d3 ath9k_hw_setuprxdesc -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0f77dafc ath9k_hw_get_tsf_offset -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1043442c ath9k_hw_btcoex_disable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x18e3e3bf ar9003_paprd_is_done -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1b123615 ath9k_hw_init -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2019b1a7 ath9k_hw_startpcureceive -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x24a203b0 ath9k_hw_set_txpowerlimit -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2aa706bc ath9k_hw_deinit -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2b256ad7 ar9003_paprd_setup_gain_table -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2c5a2579 ath9k_hw_set_tx_filter -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2dad465d ar9003_hw_bb_watchdog_check -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2e65e36b ath_gen_timer_isr -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2f5de93c ath9k_hw_gpio_free -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2fded6bc ar9003_mci_send_message -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x336cc929 ath9k_hw_set_tsfadjust -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x34e96a12 ath9k_hw_set_sta_beacon_timers -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x358d2983 ath9k_hw_set_gpio -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x38d3219d ar9003_is_paprd_enabled -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3aa72023 ath9k_hw_beaconq_setup -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3dd054ec ath9k_hw_puttxbuf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3e2f8123 ath9k_hw_set_rx_bufsize -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3fd7e6c7 ath_gen_timer_free -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x41021199 ath9k_hw_btcoex_init_mci -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x45207ff3 ath9k_hw_btcoex_set_weight -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4bbaa272 ath9k_hw_ani_monitor -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x507bda74 ar9003_paprd_populate_single_table -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x50b3e050 ath9k_hw_btcoex_enable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5426de84 ath9k_hw_btcoex_deinit -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x55a35be8 ath9k_hw_name -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5a343ef0 ath9k_hw_write_associd -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5b111607 ath9k_hw_releasetxqueue -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5d4ca53e ath9k_hw_btcoex_bt_stomp -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5f2964e8 ath9k_hw_btcoex_init_scheme -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x615b85a9 ath9k_hw_putrxbuf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x62d98d23 ath9k_hw_gen_timer_start -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x67f199e9 ath9k_hw_stopdmarecv -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6ce1d207 ath9k_hw_gettsf64 -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6d96d68e ath9k_hw_disable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6db7a9f3 ath9k_hw_check_nav -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x70a508e8 ath9k_hw_addrxbuf_edma -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x77284726 ar9003_get_pll_sqsum_dvc -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x77a4cc85 ath9k_hw_init_global_settings -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x79cda5f0 ath9k_hw_resume_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7af7df27 ath9k_hw_getchan_noise -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7c53657c ath9k_hw_enable_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7fd8b6c4 ath9k_hw_wow_apply_pattern -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x80900c39 ath9k_hw_updatetxtriglevel -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8562427f ar9003_hw_bb_watchdog_dbg_info -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x860635cf ath9k_hw_set_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x86874fba ath9k_hw_reset_tsf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8836d85c ath9k_hw_disable_mib_counters -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x885f625f ath9k_hw_setmcastfilter -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8b362ea9 ath9k_hw_kill_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8eba5803 ath9k_hw_phy_disable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8f255480 ath9k_hw_setup_statusring -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9197bc47 ar9003_mci_cleanup -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x976f0212 ath9k_hw_gen_timer_stop -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x99bdfa41 ar9003_mci_state -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9a5e9e4e ath9k_hw_setantenna -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9c47d1e8 ath9k_hw_setpower -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9dcb4cfe ath9k_hw_beaconinit -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9e73c723 ath9k_hw_stop_dma_queue -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa03078ba ath9k_hw_setuptxqueue -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa1c1de8c ath9k_hw_set_txq_props -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa226be33 ath9k_hw_gpio_request_in -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa4a869b0 ath9k_hw_setrxabort -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa6c0a140 ath9k_hw_loadnf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa755337e ath_gen_timer_alloc -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa912ef52 ath9k_hw_setrxfilter -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xab5794a4 ar9003_paprd_enable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xab959da7 ath9k_hw_bstuck_nfcal -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xad617841 ath9k_hw_setopmode -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb01f580d ath9k_hw_wow_wakeup -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb3202cbc ath9k_hw_gpio_request_out -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb4600319 ath9k_hw_gpio_get -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb70d80e8 ath9k_hw_resettxqueue -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb74c3fd4 ath9k_hw_txstart -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb8dc0384 ar9003_paprd_create_curve -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xba9d905f ath9k_hw_getrxfilter -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbb34f033 ath9k_hw_init_btcoex_hw -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc3780c80 ar9003_paprd_init_table -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc3992a52 ath9k_hw_intrpend -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc585f843 ar9003_mci_set_bt_version -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc827474f ath9k_hw_abortpcurecv -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xce01ad2f ar9003_mci_send_wlan_channels -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xcf875d8d ath9k_hw_wait -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xcfeb0dc1 ath9k_hw_disable_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd06363c4 ar9003_mci_setup -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd1c175b4 ath9k_hw_rxprocdesc -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd520e3fe ath9k_hw_btcoex_init_2wire -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd699e4e4 ar9003_mci_get_next_gpm_offset -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd94da6f6 ath9k_hw_getnf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe0f4c053 ath9k_hw_wow_enable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe6ecaf55 ath9k_hw_btcoex_init_3wire -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe7c1aefb ath9k_hw_gettsf32 -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xef1f443a ath9k_hw_gettxbuf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xef370015 ath9k_hw_numtxpending -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf117c133 ath9k_hw_get_txq_props -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf1458555 ath9k_hw_btcoex_set_concur_txprio -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf3b8d413 ar9003_mci_get_interrupt -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf8393aea ath9k_hw_reset -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf875d2db ath9k_hw_settsf64 -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf8b3fd7f ath9k_hw_process_rxdesc_edma -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf9859a70 ath9k_hw_computetxtime -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf98d7048 ar9003_hw_disable_phy_restart -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xfbd9f45b ath9k_hw_check_alive -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xfdb41896 ath9k_hw_reset_calvalid -EXPORT_SYMBOL drivers/net/wireless/atmel/atmel 0x207768c7 atmel_open -EXPORT_SYMBOL drivers/net/wireless/atmel/atmel 0xc94158db stop_atmel_card -EXPORT_SYMBOL drivers/net/wireless/atmel/atmel 0xfa0acc53 init_atmel_card -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x0835a962 brcmu_pktq_mlen -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x1906648e brcmu_boardrev_str -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x2560dc7a brcmu_pktq_mdeq -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x2b0df8ae brcmu_pktq_flush -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x3e5695c5 brcmu_pktq_pdeq_match -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x3fe675fb brcmu_pktq_pdeq_tail -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x49177305 brcmu_pkt_buf_free_skb -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x4ef8e5fb brcmu_pktq_pflush -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x6e442e82 brcmu_pktq_peek_tail -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x9fae0cb7 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 0xa60567f7 brcmu_pktq_penq -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xc9c24cf4 brcmu_pktq_init -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xccaf674f brcmu_pktq_pdeq -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xcdd22907 brcmu_pkt_buf_get_skb -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xd6217d91 brcmu_d11_attach -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x0faaeaaf alloc_libipw -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x175d89f8 libipw_get_channel -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x23978e77 libipw_wx_set_encodeext -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x424c53a9 libipw_wx_get_encodeext -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x433f8f3a libipw_channel_to_index -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x471ab332 libipw_networks_age -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x5b3be5ad libipw_is_valid_channel -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x6f344d53 libipw_wx_set_encode -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x79687c1e libipw_wx_get_scan -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x7e5d040f libipw_xmit -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x847a0ecb libipw_get_geo -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x98c87900 libipw_wx_get_encode -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xa6389a68 free_libipw -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xaf8cc600 libipw_set_geo -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xbc4b958f libipw_txb_free -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xbe246db1 libipw_rx -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xda6fd6f4 libipw_freq_to_channel -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xdb9b8f69 libipw_get_channel_flags -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xeef908db libipw_rx_mgt -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xfeb4c1fe libipw_channel_to_freq -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x01656c0b il_rx_queue_space -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x056bb168 il_eeprom_init -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x056bf142 il_tx_queue_init -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x10c8f258 il_mac_flush -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x133ea7a0 il_send_cmd_pdu -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x14c56261 il_free_geos -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x15816a96 il_connection_init_rx_config -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x207b0c27 il_apm_stop -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2090da67 il_send_add_sta -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x21a98196 il_pm_ops -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x21c9b931 il_setup_rx_scan_handlers -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x265df3ce il_tx_queue_free -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2933f6b3 _il_apm_stop -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2a4b822c il_get_active_dwell_time -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2b2fbb17 il_mac_reset_tsf -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2bce0715 il_apm_init -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2bf7eea6 il_queue_space -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2e48a040 il_write_targ_mem -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3482de2f il_init_channel_map -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x355d72a9 il_mac_change_interface -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x357cc284 il_scan_cancel_timeout -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x36ac7a5c il_mac_sta_remove -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3989b8e9 il_power_update_mode -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3bece331 il_mac_remove_interface -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3d5f6eb8 il_wr_prph -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x405a9cdb il_poll_bit -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x416bd26a il_debug_level -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x47a1a3c1 il_fill_probe_req -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x49d82a30 il_clear_ucode_stations -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x4af7f14d il_set_rxon_hwcrypto -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x4b56570b il_send_cmd_sync -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x4cb323a1 il_hdl_pm_sleep -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x4d067b4c il_mac_bss_info_changed -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x4eeab846 il_set_rxon_ht -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x5053893d il_get_lowest_plcp -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x51f0d89f _il_poll_bit -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x526e55a1 il_setup_scan_deferred_work -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x55524cf9 il_add_beacon_time -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x573844e2 il_get_passive_dwell_time -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x5958ebd9 il_mac_add_interface -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x5b0070f6 il_tx_queue_reset -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x5df797aa il_init_geos -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x610f59fa il_set_bit -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x65921e83 il_force_reset -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x66924aff il_is_ht40_tx_allowed -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x697eacda il_eeprom_query_addr -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6c1d1b50 il_leds_init -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6e136db3 il_power_initialize -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6fe3662f il_set_flags_for_band -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x723e2f44 il_tx_queue_unmap -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7296f8d4 il_dbgfs_unregister -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x72bb664c il_eeprom_query16 -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x75a9356d il_free_txq_mem -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7b27974e il_send_stats_request -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7c8294a6 il_hdl_pm_debug_stats -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7cabea40 il_hdl_csa -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x823a61a5 il_free_channel_map -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x82e83c5a il_send_lq_cmd -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x83eabcb5 il_mac_config -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x844d32d0 il_set_decrypted_flag -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x890f1e3d il_clear_bit -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x89fa6436 il_send_rxon_timing -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x8a284c86 il_set_rxon_channel -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x8c0b9dc4 il_irq_handle_error -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x91d6b123 il_usecs_to_beacons -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x951153e7 il_tx_cmd_protection -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9647d574 il_hdl_error -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x981526f8 il_tx_cmd_complete -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9cc714af il_bg_watchdog -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9e49a236 il_send_cmd -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa3511856 il_cmd_queue_free -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa790da98 il_get_single_channel_number -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xaaa9844c il_chswitch_done -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xab19c5ed il_set_tx_power -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xab4e82a4 il_scan_cancel -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xacfbacb8 il_leds_exit -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb318d40a il_cmd_queue_unmap -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb45e45cd il_init_scan_params -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb4aefdc1 il_set_rate -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb5cdad62 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 0xb7bd33ff il_isr -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb99d1725 il_read_targ_mem -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xbc0da968 il_full_rxon_required -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc1310d18 il_dbgfs_register -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc1e7f11f il_update_stats -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc387217f il_cancel_scan_deferred_work -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc7480ddf il_rx_queue_alloc -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc8411d3d il_send_bt_config -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xcd847f82 il_add_station_common -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xce624e3f il_mac_hw_scan -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xcee57916 il_txq_update_write_ptr -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd04c753f il_mac_conf_tx -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd4b70f8a il_get_channel_info -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd69711f1 il_send_cmd_pdu_async -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd79f2c69 il_alloc_txq_mem -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xda8c4b7a il_rd_prph -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xdf402966 il_hdl_spectrum_measurement -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe0156168 il_rx_queue_update_write_ptr -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe38b8e8e il_eeprom_free -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe9f1d035 il_restore_stations -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf4a32809 il_get_free_ucode_key_idx -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf70a693b il_bcast_addr -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf82cf117 il_setup_watchdog -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 0x59ab4b94 __traceiter_iwlwifi_dev_ucode_cont_event -EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x970bf4ef __SCK__tp_func_iwlwifi_dev_ucode_event -EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xaaafbd3e __tracepoint_iwlwifi_dev_ucode_cont_event -EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xd1e69877 __SCK__tp_func_iwlwifi_dev_ucode_cont_event -EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xf10b9710 __traceiter_iwlwifi_dev_ucode_event -EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xf3b59270 __traceiter_iwlwifi_dev_ucode_wrap_event -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x0d29f585 hostap_init_data -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x0d8cffc4 hostap_80211_ops -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x13abdd5a hostap_dump_tx_header -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x17713f9b hostap_master_start_xmit -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x1cccbf16 hostap_set_word -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x231a0c92 hostap_init_ap_proc -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x282b2e5b hostap_setup_dev -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x43cc2761 hostap_remove_interface -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x531b691a hostap_handle_sta_tx_exc -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x5e1f4dcd hostap_free_data -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x63da5e42 hostap_set_antsel -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x68c42ec5 hostap_remove_proc -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x6a85cd51 hostap_set_encryption -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x70629cb1 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 0x7af64027 hostap_80211_rx -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x7fb75891 hostap_dump_rx_header -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x8af2057e hostap_set_auth_algs -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x956f17b9 hostap_set_hostapd_sta -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x98a6fef5 hostap_get_porttype -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x9f6c36e7 hostap_info_init -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xac774087 hostap_info_process -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xb4b77c8b hostap_80211_get_hdrlen -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xb4f3d029 hostap_init_proc -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xb71b321a hostap_add_interface -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xb7eaccc4 hostap_check_sta_fw_version -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xc4e1b5e3 hostap_set_roaming -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xc764f38f hostap_set_string -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xfe04314c hostap_set_hostapd -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x052e138f orinoco_tx_timeout -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x1e248f89 __orinoco_ev_rx -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x251595a1 orinoco_up -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x464dbb06 alloc_orinocodev -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x480e87cf orinoco_if_del -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x4ca9bda3 orinoco_change_mtu -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x5bf6f02d orinoco_down -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x5f5ae072 orinoco_open -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x6783a120 orinoco_process_xmit_skb -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x69a31892 orinoco_stop -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x70f72c4d orinoco_if_add -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xa0bd344f orinoco_init -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xa62f73b6 hermes_struct_init -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xb3b62438 orinoco_set_multicast_list -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xe3cf3518 free_orinocodev -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xe83091b5 __orinoco_ev_info -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xffe27bca orinoco_interrupt -EXPORT_SYMBOL drivers/net/wireless/mediatek/mt76/mt76 0x88fd7088 mt76_wcid_key_setup -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/btcoexist/btcoexist 0x68361bb2 rtl_btc_get_ops_pointer -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x00f8f43d rtl92c_dm_bt_coexist -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x05f8af85 rtl92c_phy_query_bb_reg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x08df1763 rtl92c_phy_ap_calibrate -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x15b079a9 rtl92c_bt_rssi_state_change -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x18944cd2 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 0x247a71ae rtl92c_phy_update_txpower_dbm -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x24cce4ff rtl92c_phy_sw_chnl_callback -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x283ff3e4 _rtl92c_phy_rf_serial_write -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x2b432fda rtl92c_phy_set_io -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x2b6e0c6c _rtl92c_phy_fw_rf_serial_read -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x36003fad rtl92c_fill_h2c_cmd -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x39e74786 _rtl92c_phy_rf_serial_read -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x3ccaea4a rtl92c_dm_write_dig -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x40e21292 rtl92c_dm_rf_saving -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x4188fef1 _rtl92c_phy_set_rf_sleep -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x4879a34d rtl92c_phy_set_rfpath_switch -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x4fd310b8 _rtl92c_phy_bb8192c_config_parafile -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x518fb231 rtl92c_phy_set_io_cmd -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x5f77ff9d _rtl92c_store_pwrindex_diffrate_offset -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x60dae3c6 rtl92c_dm_init_rate_adaptive_mask -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x69025d45 rtl92c_dm_check_txpower_tracking -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x6d324749 rtl92c_dm_watchdog -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x7891d163 _rtl92c_phy_init_bb_rf_register_definition -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x7a7f3087 rtl92c_phy_rf_config -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x808e8462 rtl8192_phy_check_is_legal_rfpath -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x8757bf2d rtl92c_dm_init_edca_turbo -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x8aee7ce9 rtl92c_dm_init -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xa1832c43 rtl92c_set_fw_rsvdpagepkt -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xaf5c3c1d rtl92c_firmware_selfreset -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xb48cec7d rtl92c_download_fw -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xba7c997d rtl92c_phy_sw_chnl -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xbfa8a1ab rtl92c_set_fw_joinbss_report_cmd -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xc1815eeb rtl92c_phy_iq_calibrate -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xc1d5a14c rtl92ce_phy_set_rf_on -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xcc9138e6 rtl92c_set_fw_pwrmode_cmd -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xcda1f771 rtl92c_phy_set_bw_mode -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xcdbc1d24 _rtl92c_phy_txpwr_idx_to_dbm -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xe6cbe10c rtl92c_phy_set_bb_reg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xeb9c11d3 _rtl92c_phy_fw_rf_serial_write -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xed0e811a _rtl92c_phy_dbm_to_txpwr_idx -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xffe8ca8c rtl92c_phy_set_txpower_level -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x0ab3718d rtl_pci_probe -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x468f6a12 rtl_pci_suspend -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x91a88574 rtl_pci_resume -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0xd9c4e776 rtl_pci_disconnect -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x003f4703 rtl_usb_disconnect -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x83d21f22 rtl_usb_resume -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x9b2f1b53 rtl_usb_suspend -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0xf8c443b3 rtl_usb_probe -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x034aff1c rtl_cam_mark_invalid -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0578b951 rtl_bb_delay -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x076f381d rtl_c2hcmd_enqueue -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0b038e24 channel5g_80m -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0d07af5d rtl_send_smps_action -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x10c25253 rtl_signal_scale_mapping -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x1621c263 rtl_ps_disable_nic -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x177abc89 rtl_cam_add_one_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x1b945315 rtl_addr_delay -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x29d06600 rtl_hal_pwrseqcmdparsing -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x30a956d7 rtl_query_rxpwrpercentage -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x30e01bbe rtl_init_rfkill -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x322a8668 rtl_rfreg_delay -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x3a0cc1fb rtl_cam_empty_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x3c8248a8 rtl_cam_reset_all_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x42ec520c efuse_shadow_read -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x4836696a rtl_cam_del_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x5092da6a rtl_get_tcb_desc -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x54824f58 channel5g -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x61793e61 rtlwifi_rate_mapping -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x68d43ab7 rtl_efuse_shadow_map_update -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7007dd9d rtl_cmd_send_packet -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7c64d473 rtl_phy_scan_operation_backup -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x818e79fb rtl_rx_ampdu_apply -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x823b8a27 rtl_ps_enable_nic -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x8af95c27 rtl_collect_scan_list -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x8ea60059 rtl_fw_cb -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa0c502d0 rtl_cam_get_free_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa1ca96d5 efuse_one_byte_read -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa1db8e35 efuse_read_1byte -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xb8bfda43 rtl_dm_diginit -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xbb62869e rtl_mrate_idx_to_arfr_id -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xdec7fce2 rtl_cam_delete_one_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xe2f13cac rtl_process_phyinfo -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xebedfe5f rtl_wowlan_fw_cb -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xed7c8cf2 rtl_evm_db_to_percentage -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf25de946 efuse_power_switch -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8723d 0xab8fe2b6 rtw8723d_hw_spec -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8821c 0x364f953b rtw8821c_hw_spec -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8822b 0x406f9804 rtw8822b_hw_spec -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8822c 0xafadf33a rtw8822c_hw_spec -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x07c1c67b rtw_tx_report_enqueue -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x0845f551 rtw_core_init -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x085d47f0 rtw_phy_pwrtrack_need_iqk -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x08693ce7 rtw_coex_read_indirect_reg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x0d4cada6 rtw_phy_set_tx_power_level -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x114ccabb rtw_phy_pwrtrack_get_pwridx -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x11ab8cb5 rtw_power_mode_change -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x1c11c9e6 rtw_parse_tbl_txpwr_lmt -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x1f1c717b rtw_ops -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x2244a385 rtw_bf_phy_init -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x2e740d4f rtw_dump_fw -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x32d7c8e4 rtw_phy_parsing_cfo -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x33b3f3c0 rtw_debug_mask -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x362ac424 rtw_bf_enable_bfee_su -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x36c5bfca rtw_disable_lps_deep_mode -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x3b5ee27d rtw_phy_cfg_mac -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x3ba62a57 rtw_parse_tbl_bb_pg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x43e6e0b1 rtw_core_deinit -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 0x48b8a9ec rtw_phy_init -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x4b0b0909 rtw_chip_info_setup -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x4be6c4a0 rtw_bf_remove_bfee_su -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x4fe06aca rtw_phy_cfg_rf -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x519c8ba9 rtw_rate_size -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x58210e60 rtw_rate_section -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x5f5044ce rtw_phy_read_rf_sipi -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x629d9fe7 rtw_set_channel_mac -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x6ab76b7a rtw_phy_read_rf -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x6c3ffa05 rtw_phy_pwrtrack_get_delta -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x73e40cc9 rtw_fw_c2h_cmd_isr -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x74d55d09 rtw_phy_write_rf_reg_sipi -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x75f328c2 rtw_fw_do_iqk -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x7c0e0f43 rtw_bf_remove_bfee_mu -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x80abb696 __rtw_dbg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x861f9df3 check_hw_ready -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x8700e0b2 rtw_fw_inform_rfk_status -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x8cd568b0 rtw_phy_write_rf_reg_mix -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x8d2b0791 rtw_bf_set_gid_table -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x9eccfc0a rtw_bf_cfg_csi_rate -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xa547c3ea rtw_dump_reg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xa8219a19 rtw_rx_stats -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xaa6d183b rtw_phy_load_tables -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xaa7c833b rtw_tx_write_data_rsvd_page_get -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xab7972cf rtw_register_hw -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xae488b80 rtw_bf_enable_bfee_mu -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xb89f0a6f rtw_phy_cfg_agc -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xbc4f1b18 rtw_coex_write_scbd -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xbec1efe7 rtw_parse_tbl_phy_cond -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xc6a9e90c rtw_fw_c2h_cmd_rx_irqsafe -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xcaac37cf rtw_coex_write_indirect_reg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xcfad37d4 rtw_phy_pwrtrack_avg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xd0decd81 rtw_phy_config_swing_table -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xd249fc96 rtw_restore_reg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xd3d92de9 rtw_phy_get_tx_power_index -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xdfce1c67 rtw_tx_write_data_h2c_get -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xe13a148d rtw_phy_pwrtrack_thermal_changed -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xe5da9d0b rtw_unregister_hw -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xe6815500 rtw_phy_cfg_bb -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xe73e8823 rtw_tx_fill_tx_desc -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xf1c4369e rtw_rx_fill_rx_status -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xf4f13be5 rtw_read8_physical_efuse -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xfcb8e82d rtw_phy_pwrtrack_need_lck -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_pci 0x25c0964e rtw_pm_ops -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_pci 0x62922e48 rtw_pci_shutdown -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_pci 0xaabd64b6 rtw_pci_probe -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_pci 0xba70f354 rtw_pci_remove -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x09de56e3 rtw89_core_napi_stop -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x0c9d0351 rtw8852a_chip_info -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x0dcbfbcd rtw89_phy_read_rf -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x16985576 rtw89_core_register -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x3448014a rtw89_ops -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x46545b00 rtw89_ser_notify -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x6988d2af rtw89_core_napi_start -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x6affcbab rtw89_core_fill_txdesc -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x805d81cf rtw89_core_napi_init -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x82992728 rtw89_core_init -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x921db073 rtw89_mac_get_err_status -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xa58ebe6a rtw89_core_unregister -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xa8e7f53e rtw89_chip_info_setup -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xa9e03c6e rtw89_core_query_rxdesc -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xac71ceda rtw89_mac_set_err_status -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xd03253f4 rtw89_phy_write_rf -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xd4e85aea rtw89_core_rx -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xe3f57b04 rtw89_debug_mask -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xe5d0ed65 rtw89_core_napi_deinit -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xe6db816e __rtw89_debug -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xea8fa853 rtw89_core_deinit -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0xce0e0151 rtw89_pm_ops -EXPORT_SYMBOL drivers/net/wireless/rsi/rsi_91x 0x1963d680 rsi_config_wowlan -EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x12c45801 wl12xx_is_dummy_packet -EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x4a1fb943 wl1271_free_tx_id -EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0xcd16dddc wlcore_tx_complete -EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0xfeebe4d5 wlcore_calc_packet_alignment -EXPORT_SYMBOL drivers/nfc/fdp/fdp 0x8d1ddfba fdp_nci_probe -EXPORT_SYMBOL drivers/nfc/fdp/fdp 0xdef5174e fdp_nci_remove -EXPORT_SYMBOL drivers/nfc/microread/microread 0x870825d1 microread_remove -EXPORT_SYMBOL drivers/nfc/microread/microread 0x94e136ea microread_probe -EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0x50d67e81 nxp_nci_fw_recv_frame -EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0x6101ac7f nxp_nci_remove -EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0xa65af9f7 nxp_nci_probe -EXPORT_SYMBOL drivers/nfc/pn533/pn533 0xa226736a pn533_recv_frame -EXPORT_SYMBOL drivers/nfc/pn544/pn544 0xb6794206 pn544_hci_remove -EXPORT_SYMBOL drivers/nfc/pn544/pn544 0xd8115752 pn544_hci_probe -EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x2e022f2d s3fwrn5_recv_frame -EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x2ed6d731 s3fwrn5_remove -EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x774203fc s3fwrn5_phy_set_wake -EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x7b5b587f s3fwrn5_probe -EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0xb11bb732 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 0x0646999c ndlc_probe -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x2d3a34c4 st_nci_se_deinit -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x38b398d1 ndlc_send -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x4013db58 ndlc_recv -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x7ddd09a9 st_nci_vendor_cmds_init -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x89d3868d ndlc_close -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xcff85ea9 ndlc_open -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xe675b494 st_nci_se_io -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xee338773 ndlc_remove -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xf507c08b st_nci_se_init -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x08dc034c st21nfca_dep_init -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x0a1d7fab st21nfca_se_deinit -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x12b57faa st21nfca_hci_discover_se -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x1867dcd5 st21nfca_im_send_atr_req -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x2e571e42 st21nfca_im_send_dep_req -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x42c9e5ad st21nfca_hci_probe -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x43d2e352 st21nfca_hci_disable_se -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x4e09d0b2 st21nfca_hci_remove -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x4e7976a6 st21nfca_hci_loopback_event_received -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x5ec700dc st21nfca_dep_deinit -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x73312dee st21nfca_hci_enable_se -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x80ea13ab st21nfca_dep_event_received -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x9c83767e st21nfca_connectivity_event_received -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xbb04cba4 st21nfca_apdu_reader_event_received -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xd5b5a358 st21nfca_tm_send_dep_res -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xe26a0147 st21nfca_vendor_cmds_init -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xeccb1bf4 st21nfca_hci_se_io -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xfba4e0ca st21nfca_se_init -EXPORT_SYMBOL drivers/ntb/ntb 0x1d657415 ntb_set_ctx -EXPORT_SYMBOL drivers/ntb/ntb 0x3f17c490 ntb_default_port_number -EXPORT_SYMBOL drivers/ntb/ntb 0x3f52a16a ntb_db_event -EXPORT_SYMBOL drivers/ntb/ntb 0x45e35f9f ntb_msg_event -EXPORT_SYMBOL drivers/ntb/ntb 0x60506c95 ntb_unregister_device -EXPORT_SYMBOL drivers/ntb/ntb 0x70398f70 ntb_unregister_client -EXPORT_SYMBOL drivers/ntb/ntb 0x74a9779e ntb_link_event -EXPORT_SYMBOL drivers/ntb/ntb 0x88006d69 ntb_msi_setup_mws -EXPORT_SYMBOL drivers/ntb/ntb 0x9241a092 ntb_clear_ctx -EXPORT_SYMBOL drivers/ntb/ntb 0x93f5d51d ntb_default_peer_port_idx -EXPORT_SYMBOL drivers/ntb/ntb 0x992fceb8 ntbm_msi_free_irq -EXPORT_SYMBOL drivers/ntb/ntb 0x9f3cb198 ntbm_msi_request_threaded_irq -EXPORT_SYMBOL drivers/ntb/ntb 0xa5eed643 ntb_register_device -EXPORT_SYMBOL drivers/ntb/ntb 0xa9a86c01 ntb_msi_init -EXPORT_SYMBOL drivers/ntb/ntb 0xb4fe8b25 __ntb_register_client -EXPORT_SYMBOL drivers/ntb/ntb 0xc5f28330 ntb_msi_peer_trigger -EXPORT_SYMBOL drivers/ntb/ntb 0xc98d545d ntb_msi_peer_addr -EXPORT_SYMBOL drivers/ntb/ntb 0xcf97ae20 ntb_default_peer_port_number -EXPORT_SYMBOL drivers/ntb/ntb 0xfaa70ec1 ntb_msi_clear_mws -EXPORT_SYMBOL drivers/ntb/ntb 0xffdc979b ntb_default_peer_port_count -EXPORT_SYMBOL drivers/nvdimm/nd_btt 0x35f3022e nvdimm_namespace_attach_btt -EXPORT_SYMBOL drivers/nvdimm/nd_btt 0xdb26a40a nvdimm_namespace_detach_btt -EXPORT_SYMBOL drivers/parport/parport 0x086bfe7b parport_read -EXPORT_SYMBOL drivers/parport/parport 0x0da93e19 parport_ieee1284_ecp_write_data -EXPORT_SYMBOL drivers/parport/parport 0x1622dd35 parport_set_timeout -EXPORT_SYMBOL drivers/parport/parport 0x34229639 parport_write -EXPORT_SYMBOL drivers/parport/parport 0x4d2a941b parport_ieee1284_interrupt -EXPORT_SYMBOL drivers/parport/parport 0x5372d1f4 parport_ieee1284_epp_read_data -EXPORT_SYMBOL drivers/parport/parport 0x5383a989 __parport_register_driver -EXPORT_SYMBOL drivers/parport/parport 0x5418cc7f parport_ieee1284_ecp_read_data -EXPORT_SYMBOL drivers/parport/parport 0x551c43ff parport_negotiate -EXPORT_SYMBOL drivers/parport/parport 0x5cdce770 parport_ieee1284_read_byte -EXPORT_SYMBOL drivers/parport/parport 0x5e3a3912 parport_irq_handler -EXPORT_SYMBOL drivers/parport/parport 0x64e84d21 parport_ieee1284_epp_read_addr -EXPORT_SYMBOL drivers/parport/parport 0x6cd117f9 parport_del_port -EXPORT_SYMBOL drivers/parport/parport 0x6e8b595c parport_find_base -EXPORT_SYMBOL drivers/parport/parport 0x7073a2d9 parport_unregister_driver -EXPORT_SYMBOL drivers/parport/parport 0x76a5c601 parport_ieee1284_epp_write_data -EXPORT_SYMBOL drivers/parport/parport 0x80010157 parport_ieee1284_read_nibble -EXPORT_SYMBOL drivers/parport/parport 0x83eab991 parport_claim -EXPORT_SYMBOL drivers/parport/parport 0x9215b7da parport_announce_port -EXPORT_SYMBOL drivers/parport/parport 0x94d460e1 parport_put_port -EXPORT_SYMBOL drivers/parport/parport 0x98b409c8 parport_wait_event -EXPORT_SYMBOL drivers/parport/parport 0x9d39bbb2 parport_register_port -EXPORT_SYMBOL drivers/parport/parport 0x9e071171 parport_claim_or_block -EXPORT_SYMBOL drivers/parport/parport 0xa8758b41 parport_ieee1284_ecp_write_addr -EXPORT_SYMBOL drivers/parport/parport 0xaa312623 parport_find_number -EXPORT_SYMBOL drivers/parport/parport 0xaa7f1f67 parport_ieee1284_write_compat -EXPORT_SYMBOL drivers/parport/parport 0xac9674f2 parport_remove_port -EXPORT_SYMBOL drivers/parport/parport 0xae5e928f parport_register_dev_model -EXPORT_SYMBOL drivers/parport/parport 0xb378cbea parport_release -EXPORT_SYMBOL drivers/parport/parport 0xbdfb2d46 parport_get_port -EXPORT_SYMBOL drivers/parport/parport 0xd3797359 parport_ieee1284_epp_write_addr -EXPORT_SYMBOL drivers/parport/parport 0xdbd2cc31 parport_wait_peripheral -EXPORT_SYMBOL drivers/parport/parport 0xe8de187e parport_unregister_device -EXPORT_SYMBOL drivers/pci/controller/pcie-iproc 0x3dd68326 iproc_pcie_setup -EXPORT_SYMBOL drivers/pci/controller/pcie-iproc 0x9d763f1e iproc_pcie_remove -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x212db8d2 pcmcia_socket_list -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x3190eee6 pcmcia_get_socket -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x49013146 pcmcia_socket_class -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x54e88bb5 pcmcia_register_socket -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x7d8b1d44 pccard_register_pcmcia -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x88f8c96e pcmcia_get_socket_by_nr -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x9a876b7d pcmcia_socket_list_rwsem -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xa322142d pcmcia_unregister_socket -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xa987e250 pcmcia_reset_card -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xc2c66d46 pcmcia_put_socket -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xcf97f3bd dead_socket -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xfc2f7455 pcmcia_parse_events -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xfeeb7357 pcmcia_parse_uevents -EXPORT_SYMBOL drivers/pcmcia/pcmcia_rsrc 0x3e9e5adf pccard_static_ops -EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0x701187a8 cros_ec_register -EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0x8262453d cros_ec_unregister -EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0xdab3c577 cros_ec_suspend -EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0xe4cfa396 cros_ec_resume -EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0xf25aacf5 cros_ec_irq_thread -EXPORT_SYMBOL drivers/regulator/rohm-regulator 0x6f9a271c rohm_regulator_set_dvs_levels -EXPORT_SYMBOL drivers/rpmsg/qcom_smd 0x3330a1c8 qcom_smd_unregister_edge -EXPORT_SYMBOL drivers/rpmsg/qcom_smd 0xf54ffb68 qcom_smd_register_edge -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x02ff8f92 rpmsg_find_device -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x42350ea9 rpmsg_sendto -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x49d556a9 rpmsg_create_channel -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x66a637f3 unregister_rpmsg_driver -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x6da212e8 rpmsg_trysend_offchannel -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x924b592f rpmsg_poll -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xa06a13cb rpmsg_trysendto -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xa89a3715 rpmsg_send -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xb136a801 rpmsg_trysend -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xc2d59c43 rpmsg_register_device -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xc62d253d rpmsg_create_ept -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xd97b57e0 rpmsg_unregister_device -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xdc06d59e rpmsg_send_offchannel -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xdf0bcfbf rpmsg_destroy_ept -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xebba4ded __register_rpmsg_driver -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xffc437ff rpmsg_release_channel -EXPORT_SYMBOL drivers/rpmsg/rpmsg_ns 0x7dc0bd6e rpmsg_ns_register_device -EXPORT_SYMBOL drivers/scsi/esp_scsi 0x4a29ab38 scsi_esp_intr -EXPORT_SYMBOL drivers/scsi/esp_scsi 0x4e7f5092 scsi_esp_cmd -EXPORT_SYMBOL drivers/scsi/esp_scsi 0x57d128cd scsi_esp_template -EXPORT_SYMBOL drivers/scsi/esp_scsi 0x850a7076 scsi_esp_unregister -EXPORT_SYMBOL drivers/scsi/esp_scsi 0xe610adf1 scsi_esp_register -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x0475ef95 fcoe_ctlr_recv -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x35ca29cc fcoe_ctlr_recv_flogi -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x402999e2 fcoe_fcf_get_selected -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x5c442b2a fcoe_ctlr_destroy -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x5e96a66f fcoe_ctlr_link_up -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x9258f390 fcoe_transport_attach -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xaddfdbc0 fcoe_ctlr_link_down -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xb5dfdbe1 fcoe_ctlr_init -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xcdc3f33a fcoe_ctlr_els_send -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xdba78acf fcoe_ctlr_set_fip_mode -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xe81c1860 fcoe_transport_detach -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x0fef9ad6 fc_vport_id_lookup -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x103fee9a fc_disc_config -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x10761be0 fc_rport_login -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x13eeff69 fc_seq_set_resp -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x166cc6a3 fc_exch_mgr_reset -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x16cd95ad fc_exch_init -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x195ec3f9 fc_rport_logoff -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x20dc1fe5 fc_get_host_port_state -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 0x256a2cee fc_linkdown -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x2e0593f2 fc_seq_send -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x339e67c5 fc_disc_init -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x379cdef9 fc_fcp_init -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x40bc91e7 fc_lport_set_local_id -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x41964ca6 fc_fc4_register_provider -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x469de585 fc_fcp_destroy -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x523f1dc3 fc_rport_lookup -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x53183e9a fc_lport_destroy -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x54a0d411 fc_rport_recv_req -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x54d36acc fc_fabric_logoff -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x5a95f968 fc_rport_create -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x5e072dba fc_get_host_speed -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x604c0ee2 fc_exch_mgr_alloc -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x61d4285e fc_lport_reset -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x694f2aeb fc_eh_device_reset -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x70aef953 fc_exch_update_stats -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7375d3a6 libfc_vport_create -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x76d4e505 fc_frame_crc_check -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x79f00d14 fc_exch_seq_send -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7a2af422 fc_lport_recv -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 0x82aa97cf fc_rport_terminate_io -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8692f68f fc_linkup -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x87250204 fc_eh_host_reset -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8e76d224 fc_lport_config -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 0xa4028cf3 fc_exch_recv -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa9f380b8 fc_get_host_stats -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb0ddd5a1 fc_rport_flush_queue -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb85cbba6 fc_set_rport_loss_tmo -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xbc9a7105 fc_vport_setlink -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xca0eb586 fc_elsct_send -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xca40bc69 fc_lport_iterate -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xca81018f _fc_frame_alloc -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd43def52 fc_seq_assign -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd511522a fc_exch_mgr_list_clone -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xdbbad3ce fc_exch_mgr_add -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xdef59993 fc_eh_abort -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xdf74af7c fc_exch_mgr_free -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xdfef631a fc_elsct_init -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe26981ed fc_fill_hdr -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe93a450b fc_lport_init -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf0ecc35e fc_queuecommand -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf2ef259b fc_lport_flogi_resp -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf73bdec8 fc_set_mfs -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf939f304 fc_lport_notifier_head -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xfa4667d1 fc_seq_release -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xfa7ac5bb fc_lport_bsg_request -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xfbe5f8c2 fc_fabric_login -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xfc0a6790 fc_fc4_deregister_provider -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xfc19bc24 fc_slave_alloc -EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x4a8e3d34 try_test_sas_gpio_gp_bit -EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x93debe48 sas_resume_ha -EXPORT_SYMBOL drivers/scsi/libsas/libsas 0xf5979061 sas_prep_resume_ha -EXPORT_SYMBOL drivers/scsi/libsas/libsas 0xf7a80482 sas_suspend_ha -EXPORT_SYMBOL drivers/scsi/megaraid/megaraid_mm 0x814971bb 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 0x058aed53 qlt_lport_deregister -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x1ad916eb qlt_enable_vha -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x4732e0a2 qlt_free_cmd -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x547f6b9c qlt_lport_register -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xa1c612a3 qlt_xmit_tm_rsp -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xa3a5ccea qlt_stop_phase2 -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xa3eb65d1 qlt_unreg_sess -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xd4308418 qlt_free_mcmd -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xe67c390a qlt_xmit_response -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xe6f045ba qlt_rdy_to_xfer -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xe96eebfd qlt_stop_phase1 -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xe974b4a0 qlt_abort_cmd -EXPORT_SYMBOL drivers/scsi/raid_class 0x59bd9d62 raid_class_attach -EXPORT_SYMBOL drivers/scsi/raid_class 0xe13ac74b raid_class_release -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x0fbf5c3c fc_remove_host -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x1171d056 fc_host_fpin_rcv -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x1a55e8e4 fc_vport_create -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x1e67989c fc_vport_terminate -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x2ef9c83a fc_remote_port_rolechg -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x375f8bbd fc_get_event_number -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x743ebfd6 fc_remote_port_add -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x7ff3ef60 fc_host_post_vendor_event -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xa5292c2c fc_attach_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xb1147c8d scsi_is_fc_rport -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xc918a10f fc_find_rport_by_wwpn -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xcdf8cd96 fc_release_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xcec63c99 fc_host_post_event -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xcfeacd2e fc_remote_port_delete -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xe51a4e8c fc_block_scsi_eh -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xedf4227b fc_host_post_fc_event -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xf01bf877 fc_eh_timed_out -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xf8cd2998 fc_block_rport -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x0874a132 sas_rphy_add -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x1b8020d0 sas_rphy_unlink -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x2fe46865 sas_rphy_delete -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x3d88abd6 sas_port_delete -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x4777780e sas_port_get_phy -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x4a0268b6 scsi_is_sas_port -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x4b4ee407 sas_release_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x52860780 sas_rphy_remove -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x59dc4c66 sas_remove_host -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x63df9f0e sas_port_alloc_num -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x657ec9e7 sas_expander_alloc -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x66e5a31f scsi_is_sas_rphy -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x68f4ad63 sas_attach_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x6f98b371 sas_rphy_free -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x7a769651 sas_port_add -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x8e914d8f sas_phy_alloc -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x9590e510 scsi_is_sas_phy -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x9f4169e8 sas_end_device_alloc -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xa18877e0 sas_read_port_mode_page -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xae823f93 sas_get_address -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xaeb7b1ab sas_port_mark_backlink -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xafdc0da9 sas_port_free -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xc2f452e6 sas_port_add_phy -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xe2f36a65 sas_port_alloc -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xebcbc416 sas_remove_children -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xecb79093 sas_port_delete_phy -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xf05bfcc2 sas_phy_delete -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xf4dc34c4 sas_phy_free -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xf911d2eb sas_phy_add -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x3686ea09 spi_print_msg -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x412906a9 spi_schedule_dv_device -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x4f330198 spi_dv_device -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x64a4cff1 spi_release_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x804bce52 spi_display_xfer_agreement -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xad3b0cf3 spi_attach_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x0d25c5bf srp_rport_get -EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x405b6e05 srp_parse_tmo -EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x58bcd590 srp_timed_out -EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x5f35d117 srp_rport_put -EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x79350a30 srp_reconnect_rport -EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x839343fd srp_start_tl_fail_timers -EXPORT_SYMBOL drivers/scsi/ufs/tc-dwc-g210 0x30b81ac0 tc_dwc_g210_config_40_bit -EXPORT_SYMBOL drivers/scsi/ufs/tc-dwc-g210 0xd92d9774 tc_dwc_g210_config_20_bit -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0x0c03a84c ufshcd_system_suspend -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0x15438efb ufshcd_system_resume -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0x289832d3 ufshcd_runtime_resume -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0x33c7e766 ufshcd_shutdown -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0x398bdb0a ufshcd_runtime_suspend -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0x3f7f83a7 ufshcd_map_desc_id_to_length -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0x675f7c3a ufshcd_get_local_unipro_ver -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0x69816375 ufshcd_alloc_host -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-dwc 0x43da0772 ufshcd_dwc_dme_set_attrs -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-dwc 0xc2bceefd 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 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 0x948899c1 cmdq_pkt_create -EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0xa644a9a6 cmdq_pkt_write -EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0xd10b38dc cmdq_mbox_create -EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0xe5094cb8 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 0xf81674fb cmdq_dev_get_client_reg -EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0xfb55916e cmdq_pkt_write_mask -EXPORT_SYMBOL drivers/soc/qcom/ocmem 0xc53d76b1 ocmem_allocate -EXPORT_SYMBOL drivers/soc/qcom/ocmem 0xd8c9c08d of_get_ocmem -EXPORT_SYMBOL drivers/soc/qcom/ocmem 0xf9b05967 ocmem_free -EXPORT_SYMBOL drivers/soc/qcom/pdr_interface 0x1c76ea4d pdr_restart_pd -EXPORT_SYMBOL drivers/soc/qcom/pdr_interface 0x432975e6 pdr_add_lookup -EXPORT_SYMBOL drivers/soc/qcom/pdr_interface 0x47b2ed49 pdr_handle_alloc -EXPORT_SYMBOL drivers/soc/qcom/pdr_interface 0xf618ca5b pdr_handle_release -EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x091d2717 geni_se_config_packing -EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x2aa79bc4 geni_se_get_qup_hw_version -EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x3151fbe5 geni_se_resources_on -EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x3337b39e geni_se_rx_dma_unprep -EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x409a472c geni_icc_set_bw -EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x467c0dad geni_se_clk_freq_match -EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x4e21c452 geni_se_rx_dma_prep -EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x5b7c1ada geni_icc_disable -EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x612a5aae geni_se_resources_off -EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x6b84da3e geni_se_tx_dma_unprep -EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x89ec4d48 geni_icc_get -EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x94612289 geni_se_tx_dma_prep -EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0xafb1b15a geni_icc_enable -EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0xd75d2184 geni_icc_set_tag -EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0xd76c819f geni_se_select_mode -EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0xdc60893c geni_se_init -EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0xed747b2d geni_se_clk_tbl_get -EXPORT_SYMBOL drivers/soc/qcom/qcom_aoss 0x04effc9c qmp_get -EXPORT_SYMBOL drivers/soc/qcom/qcom_aoss 0x2333aed6 qmp_put -EXPORT_SYMBOL drivers/soc/qcom/qcom_aoss 0x9e2aa1df qmp_send -EXPORT_SYMBOL drivers/soc/qcom/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 0x4eca2fe6 qmi_txn_init -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x68772745 qmi_decode_message -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x88cc3426 qmi_send_request -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x8eada0d6 qmi_txn_cancel -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xaf69c1de qmi_txn_wait -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xb0059477 qmi_send_response -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xb010ce04 qmi_handle_release -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xbf3fa4a5 qmi_send_indication -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xd76d5424 qmi_add_lookup -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xda310d0f qmi_add_server -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xee679240 qmi_handle_init -EXPORT_SYMBOL drivers/soc/qcom/smd-rpm 0x3abef80b qcom_rpm_smd_write -EXPORT_SYMBOL drivers/soc/qcom/smem 0x34b57571 qcom_smem_alloc -EXPORT_SYMBOL drivers/soc/qcom/smem 0x5a710273 qcom_smem_get_free_space -EXPORT_SYMBOL drivers/soc/qcom/smem 0x9979b76e qcom_smem_virt_to_phys -EXPORT_SYMBOL drivers/soc/qcom/smem 0xeeffa750 qcom_smem_get -EXPORT_SYMBOL drivers/soc/qcom/wcnss_ctrl 0xd5f14172 qcom_wcnss_open_channel -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x0477a089 sdw_bus_prep_clk_stop -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x0bdcc099 sdw_bus_master_delete -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x0d479b57 sdw_write -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 0x21c5c584 sdw_write_no_pm -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x27b3858d sdw_slave_add -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x2b00dbd7 sdw_stream_remove_master -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x31f9d503 sdw_extract_slave_id -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x32b544fa sdw_bus_master_add -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x335f675a sdw_bwrite_no_pm_unlocked -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x33f0f0b3 sdw_nwrite -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x37e1ee74 sdw_stream_remove_slave -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x39637ace sdw_stream_add_slave -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x3b0a8582 sdw_startup_stream -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x406721f9 sdw_slave_read_prop -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x41c0faac sdw_read_no_pm -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x42d6d516 sdw_read -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x4843e882 sdw_handle_slave_status -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x4cde88bf sdw_disable_stream -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x58af6449 sdw_clear_slave_status -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x60e31fbb sdw_find_col_index -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x6d9579b3 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 0x76bc0fc6 sdw_bread_no_pm_unlocked -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x76d58b77 sdw_update_no_pm -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x80c53a54 sdw_compare_devid -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x9e122d79 sdw_alloc_stream -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xb2dd8041 sdw_master_read_prop -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xb3a0b7fa sdw_nread -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 0xc1140bdf sdw_bus_clk_stop -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xd0e6a618 sdw_update -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xda19d18f sdw_stream_add_master -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xda5bce09 sdw_release_stream -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xf53ba0b8 sdw_rows -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x34712074 sdw_cdns_irq -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x363212c0 sdw_cdns_is_clock_stop -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x397d4114 sdw_cdns_check_self_clearing_bits -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x6027b72e cdns_set_sdw_stream -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x6124dcbe cdns_reset_page_addr -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x6703b13e sdw_cdns_enable_interrupt -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x69f88089 cdns_xfer_msg_defer -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x75e07d62 sdw_cdns_probe -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x7b7992fa sdw_cdns_config_stream -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x8ec3ce9a sdw_cdns_alloc_pdi -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x9928d13d cdns_xfer_msg -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x9cc39b9b sdw_cdns_exit_reset -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xb31dd7ca sdw_cdns_clock_stop -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xc01dedeb sdw_cdns_clock_restart -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xc6965c9c cdns_bus_conf -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xdce80a27 sdw_cdns_init -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xe90894e3 sdw_cdns_pdi_init -EXPORT_SYMBOL drivers/soundwire/soundwire-generic-allocation 0xb3673697 sdw_compute_params -EXPORT_SYMBOL drivers/ssb/ssb 0x012b14c5 ssb_pcihost_register -EXPORT_SYMBOL drivers/ssb/ssb 0x0d4912bd ssb_chipco_gpio_control -EXPORT_SYMBOL drivers/ssb/ssb 0x20f16538 ssb_dma_translation -EXPORT_SYMBOL drivers/ssb/ssb 0x3d521c23 __ssb_driver_register -EXPORT_SYMBOL drivers/ssb/ssb 0x4e444bdd ssb_bus_may_powerdown -EXPORT_SYMBOL drivers/ssb/ssb 0x5330150f ssb_bus_sdiobus_register -EXPORT_SYMBOL drivers/ssb/ssb 0x7d87179e ssb_commit_settings -EXPORT_SYMBOL drivers/ssb/ssb 0x7e5fb53d ssb_device_is_enabled -EXPORT_SYMBOL drivers/ssb/ssb 0x82d8337d ssb_bus_unregister -EXPORT_SYMBOL drivers/ssb/ssb 0x963c7834 ssb_device_enable -EXPORT_SYMBOL drivers/ssb/ssb 0x99cb4cc9 ssb_bus_suspend -EXPORT_SYMBOL drivers/ssb/ssb 0x9da890cf ssb_clockspeed -EXPORT_SYMBOL drivers/ssb/ssb 0xa0662c4b ssb_bus_resume -EXPORT_SYMBOL drivers/ssb/ssb 0xae903645 ssb_device_disable -EXPORT_SYMBOL drivers/ssb/ssb 0xaf9664d6 ssb_pmu_set_ldo_voltage -EXPORT_SYMBOL drivers/ssb/ssb 0xb9c2f866 ssb_pcicore_dev_irqvecs_enable -EXPORT_SYMBOL drivers/ssb/ssb 0xc0e6a845 ssb_pmu_set_ldo_paref -EXPORT_SYMBOL drivers/ssb/ssb 0xc473f51b ssb_bus_powerup -EXPORT_SYMBOL drivers/ssb/ssb 0xcb17f1cb ssb_admatch_base -EXPORT_SYMBOL drivers/ssb/ssb 0xdc1e135f ssb_set_devtypedata -EXPORT_SYMBOL drivers/ssb/ssb 0xdfc7c6ef ssb_admatch_size -EXPORT_SYMBOL drivers/ssb/ssb 0xf6a900c2 ssb_driver_unregister -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x033690da fbtft_write_reg16_bus8 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x1323de4a fbtft_probe_common -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x342fca23 fbtft_write_reg8_bus9 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x3bdf31a2 fbtft_write_gpio8_wr -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x4a4404b5 fbtft_register_backlight -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x5717b367 fbtft_write_gpio16_wr -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x67e8ba13 fbtft_framebuffer_alloc -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x6cbc7b53 fbtft_remove_common -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x703f3b97 fbtft_write_buf_dc -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x7f0c23c4 fbtft_write_vmem16_bus16 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x914d0a58 fbtft_write_spi -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x92c25630 fbtft_write_reg8_bus8 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x94f2b34d fbtft_write_vmem8_bus8 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xa04f6f1b fbtft_dbg_hex -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xa81f6bb0 fbtft_write_gpio16_wr_latched -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xb1b0c993 fbtft_write_vmem16_bus8 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xcf66fda8 fbtft_read_spi -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xd206db83 fbtft_register_framebuffer -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xd461656b fbtft_write_spi_emulate_9 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xd9e4cb80 fbtft_write_vmem16_bus9 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xda45b21f fbtft_init_display -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xe3e3f4e5 fbtft_unregister_framebuffer -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xecd18aff fbtft_framebuffer_release -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xf354bdfd fbtft_unregister_backlight -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xf4a1e1e3 fbtft_write_reg16_bus16 -EXPORT_SYMBOL drivers/staging/greybus/gb-audio-codec 0x329c2bbf gbaudio_unregister_module -EXPORT_SYMBOL drivers/staging/greybus/gb-audio-codec 0x71a9d54d gbaudio_module_update -EXPORT_SYMBOL drivers/staging/greybus/gb-audio-codec 0xb5e84514 gbaudio_register_module -EXPORT_SYMBOL drivers/staging/iio/addac/adt7316 0xc7d5d102 adt7316_probe -EXPORT_SYMBOL drivers/staging/iio/meter/ade7854 0xdd32f098 ade7854_probe -EXPORT_SYMBOL drivers/staging/media/av7110/sp8870 0x5b7d6765 sp8870_attach -EXPORT_SYMBOL drivers/staging/media/zoran/videocodec 0x25cfcb60 videocodec_detach -EXPORT_SYMBOL drivers/staging/media/zoran/videocodec 0x323aa404 videocodec_attach -EXPORT_SYMBOL drivers/staging/media/zoran/videocodec 0x343947b3 videocodec_unregister -EXPORT_SYMBOL drivers/staging/media/zoran/videocodec 0xce439001 videocodec_register -EXPORT_SYMBOL drivers/staging/nvec/nvec 0x158837a1 nvec_write_sync -EXPORT_SYMBOL drivers/staging/nvec/nvec 0x4a2a05f2 nvec_write_async -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x008e6673 rtllib_wx_get_scan -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x111a0768 rtllib_stop_scan -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x1625e35d rtllib_start_scan_syncro -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x19849795 rtllib_ps_tx_ack -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x1baf800d rtllib_wx_set_rate -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x22166084 rt_global_debug_component -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x2301ea40 rtllib_act_scanning -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x2590a44d rtllib_wx_get_power -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x312ffa47 rtllib_wx_set_mlme -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x39a62017 rtllib_reset_queue -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x39fd6a7a rtllib_DisableIntelPromiscuousMode -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x3d875d38 rtllib_softmac_stop_protocol -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x41ae0a25 HT_update_self_and_peer_setting -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x46f17133 RemovePeerTS -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x47fb3321 rtllib_wx_get_essid -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x57f763aa dot11d_channel_map -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x5fa28c6d rtllib_wx_set_wap -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x66646049 rtllib_softmac_start_protocol -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x6684df3a rtllib_wx_get_rate -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x67f88a4d rtllib_MgntDisconnect -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x69593105 rtllib_get_beacon -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x718ec809 rtllib_xmit -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x73630ae2 rtllib_wx_get_wap -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x7da53944 rtllib_wx_set_scan -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x858ae862 notify_wx_assoc_event -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x8961d9a6 rtllib_stop_scan_syncro -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x8f32cb86 rtllib_EnableIntelPromiscuousMode -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x91c475d8 rtllib_start_send_beacons -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x97059ca0 alloc_rtllib -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x9d502a1d rtllib_wx_set_power -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x9d84a925 rtllib_wx_get_rts -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x9dab89c7 rtllib_wx_get_encode -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x9ed3cde8 rtllib_sta_ps_send_null_frame -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xa7fb27f9 rtllib_legal_channel -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xac9238f2 dot11d_init -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xb1452faa rtllib_wx_set_rts -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xb2fd436e free_rtllib -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xb5020e82 rtllib_wx_set_freq -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xb5bb2ad6 rtllib_wx_get_mode -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xbc5a7639 rtllib_stop_send_beacons -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xc82951b5 rtllib_wx_get_freq -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xc89075e1 rtllib_wx_set_mode -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xdf78f620 rtllib_wlan_frequencies -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xe2a18083 rtllib_wx_get_name -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xe64698fe rtllib_rx -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xf55f2bdb rtllib_wx_set_encode_ext -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xf67818bd rtllib_wx_set_encode -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xfc270c04 rtllib_wx_set_rawtx -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xfe16d705 rtllib_wx_set_auth -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xfe38826e rtllib_wx_set_gen_ie -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xff3bbd71 rtllib_wx_set_essid -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x031387b9 ieee80211_wx_set_rts_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x03146761 ieee80211_wake_queue_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x11acf6a0 rtl8192u_dot11d_init -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x155661b3 SendDisassociation_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x181765d9 ieee80211_wx_get_essid_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x1d66a0ff ieee80211_is_shortslot_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x2225f5bd ieee80211_softmac_stop_protocol_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x26ec429b dot11d_scan_complete -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x33bfe338 ieee80211_wx_set_freq_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x370ff1b1 dot11d_get_max_tx_pwr_in_dbm -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x40c6a4b1 ieee80211_wx_get_encode_ext_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x43425c3f ieee80211_start_scan_syncro_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x44586a2d ieee80211_rx_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x45afd027 ieee80211_wx_set_scan_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x4a205558 ieee80211_wx_get_encode_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x4d2b6a26 is_legal_channel -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x4d921530 to_legal_channel -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x548d4947 ieee80211_stop_queue_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x55df1bba ieee80211_txb_free_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x5b7037ad ieee80211_rx_mgt_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x6587a6ba ieee80211_wx_set_essid_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x6a171d2d ieee80211_wx_get_wap_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x6e0181bc dot11d_reset -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x728ae06d ieee80211_reset_queue_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x729936da ieee80211_ps_tx_ack_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7381601a ieee80211_wx_set_rate_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7616163c ieee80211_get_beacon_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7ca268f6 ieee80211_wx_get_mode_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x889901fe ieee80211_wx_set_auth_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x88f588b4 ieee80211_wx_get_name_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x8c1880b2 ieee80211_wx_get_rts_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x9609d5c8 ieee80211_softmac_xmit_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x98a69052 ieee80211_wx_set_mlme_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x9d2e578f ieee80211_wx_set_encode_ext_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x9ee6f579 ieee80211_wx_set_encode_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa4e231b7 ieee80211_wx_get_freq_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa67291d0 ieee80211_wx_set_rawtx_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb1535665 dot11d_update_country_ie -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xbf75e32f ieee80211_softmac_start_protocol_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xbfeaafa9 ieee80211_wx_set_power_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc27a6cca ieee80211_wx_get_power_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc370a43e ieee80211_wlan_frequencies_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd11bec47 notify_wx_assoc_event_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd2f202a8 ieee80211_wx_get_scan_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd4f5d41f ieee80211_stop_send_beacons_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe11de49b ieee80211_disassociate_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe2deb838 ieee80211_start_send_beacons_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe34f8760 ieee80211_wpa_supplicant_ioctl_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe39f0efd ieee80211_softmac_scan_syncro_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe4dcb295 ieee80211_wx_get_rate_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe51c1a26 ieee80211_wx_set_wap_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe524fc5a ieee80211_stop_scan_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe8592b65 HTUpdateSelfAndPeerSetting -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xebffba79 ieee80211_wx_set_mode_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xecc5fb1b ieee80211_is_54g_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xed5f933d ieee80211_wx_set_gen_ie_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 0x3b81df7e vchiq_connect -EXPORT_SYMBOL drivers/staging/vc04_services/vchiq 0x429a73e1 vchiq_initialise -EXPORT_SYMBOL drivers/staging/vc04_services/vchiq 0x42af7a1d vchiq_open_service -EXPORT_SYMBOL drivers/staging/vc04_services/vchiq 0x582ed8ca vchiq_bulk_receive -EXPORT_SYMBOL drivers/staging/vc04_services/vchiq 0x6d5ef163 vchiq_release_message -EXPORT_SYMBOL drivers/staging/vc04_services/vchiq 0x8ff6c2b1 vchiq_get_peer_version -EXPORT_SYMBOL drivers/staging/vc04_services/vchiq 0x92b2feb4 vchiq_bulk_transmit -EXPORT_SYMBOL drivers/staging/vc04_services/vchiq 0x9d6478fe vchiq_use_service -EXPORT_SYMBOL drivers/staging/vc04_services/vchiq 0xa22e9df3 vchiq_add_connected_callback -EXPORT_SYMBOL drivers/staging/vc04_services/vchiq 0xb05b02ae vchiq_release_service -EXPORT_SYMBOL drivers/staging/vc04_services/vchiq 0xc407cff0 vchiq_msg_queue_push -EXPORT_SYMBOL drivers/staging/vc04_services/vchiq 0xe95e0941 vchiq_close_service -EXPORT_SYMBOL drivers/staging/vc04_services/vchiq 0xf8ed8325 vchiq_shutdown -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x01c5dd91 iscsit_find_cmd_from_itt -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x0d893eca iscsit_immediate_queue -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x10281712 iscsit_cause_connection_reinstatement -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x14dc3810 iscsit_add_reject -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x153e9629 iscsit_aborted_task -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x22e9684d iscsit_allocate_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x24098025 iscsit_release_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x26eab463 iscsit_sequence_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x2f44d303 iscsit_setup_text_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x3529249d iscsit_handle_task_mgt_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x3a562b20 iscsit_queue_rsp -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x41b119f8 iscsit_setup_nop_out -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x46e63ad8 iscsit_build_reject -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x48b5a7fe iscsit_build_task_mgt_rsp -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x5a7b7131 iscsit_setup_scsi_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x5afc965c iscsit_get_datain_values -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x5b6ecff8 iscsit_reject_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x6991763a iscsit_build_nopin_rsp -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x72f83fdb iscsit_process_scsi_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x73ab0594 iscsit_add_cmd_to_immediate_queue -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x77fc13f6 iscsit_build_logout_rsp -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x7b135169 iscsit_stop_dataout_timer -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x7b3bc798 iscsit_set_unsolicited_dataout -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x7e0f05e5 iscsit_free_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x8ab7dbd9 iscsit_increment_maxcmdsn -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x8da491e2 iscsi_target_check_login_request -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x8e4eb796 iscsit_unregister_transport -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x92471b83 iscsit_tmr_post_handler -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x931eb75a iscsit_check_dataout_hdr -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x952b8e65 iscsit_find_cmd_from_itt_or_dump -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x9aa3b964 iscsit_response_queue -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xaade0792 iscsit_register_transport -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xb08495ad iscsit_build_text_rsp -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xb258ec82 iscsit_logout_post_handler -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xb25b1cdd iscsit_process_nop_out -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xb2e59ef4 iscsit_check_dataout_payload -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xbaa2f431 iscsit_build_datain_pdu -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xbeda6cb7 iscsit_handle_snack -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xd1c2820b iscsit_build_rsp_pdu -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xde06503f iscsit_build_r2ts_for_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xe13d0c0f iscsit_handle_logout_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xe80320d1 __iscsit_check_dataout_hdr -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xe836a05b iscsit_process_text_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xf34332f0 iscsi_find_param_from_key -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xf9103514 iscsi_change_param_sprintf -EXPORT_SYMBOL drivers/target/target_core_mod 0x059132c6 transport_kunmap_data_sg -EXPORT_SYMBOL drivers/target/target_core_mod 0x071be4b4 passthrough_pr_attrib_attrs -EXPORT_SYMBOL drivers/target/target_core_mod 0x08089c4b transport_copy_sense_to_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x0871ffd6 transport_set_vpd_ident -EXPORT_SYMBOL drivers/target/target_core_mod 0x0c331734 spc_emulate_inquiry_std -EXPORT_SYMBOL drivers/target/target_core_mod 0x0cacd158 core_tpg_set_initiator_node_queue_depth -EXPORT_SYMBOL drivers/target/target_core_mod 0x1048e4e4 sbc_get_write_same_sectors -EXPORT_SYMBOL drivers/target/target_core_mod 0x12bdd1b2 transport_alloc_session_tags -EXPORT_SYMBOL drivers/target/target_core_mod 0x142072c0 transport_set_vpd_assoc -EXPORT_SYMBOL drivers/target/target_core_mod 0x17f50f12 core_alua_check_nonop_delay -EXPORT_SYMBOL drivers/target/target_core_mod 0x18436315 target_nacl_find_deve -EXPORT_SYMBOL drivers/target/target_core_mod 0x18ca8b2d target_show_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x1af857d3 core_tpg_set_initiator_node_tag -EXPORT_SYMBOL drivers/target/target_core_mod 0x1ddcadeb core_tpg_check_initiator_node_acl -EXPORT_SYMBOL drivers/target/target_core_mod 0x1eb99da6 transport_generic_free_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x24226b26 transport_generic_request_failure -EXPORT_SYMBOL drivers/target/target_core_mod 0x263d991a transport_register_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x2879969a core_tpg_register -EXPORT_SYMBOL drivers/target/target_core_mod 0x2cab9675 transport_init_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x30cb5b4e target_remove_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x33e116bf target_to_linux_sector -EXPORT_SYMBOL drivers/target/target_core_mod 0x37f5e5b7 target_set_cmd_data_length -EXPORT_SYMBOL drivers/target/target_core_mod 0x3a20a9d7 transport_set_vpd_ident_type -EXPORT_SYMBOL drivers/target/target_core_mod 0x40683fb0 transport_generic_handle_tmr -EXPORT_SYMBOL drivers/target/target_core_mod 0x42bb05fb target_cmd_init_cdb -EXPORT_SYMBOL drivers/target/target_core_mod 0x493cb76a transport_kmap_data_sg -EXPORT_SYMBOL drivers/target/target_core_mod 0x512c35e0 __target_init_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x5136a709 transport_alloc_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x52954a2d target_put_sess_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x535a35b2 sbc_dif_copy_prot -EXPORT_SYMBOL drivers/target/target_core_mod 0x5889df34 __transport_register_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x5ac40b55 spc_emulate_evpd_83 -EXPORT_SYMBOL drivers/target/target_core_mod 0x5ac410fb transport_backend_register -EXPORT_SYMBOL drivers/target/target_core_mod 0x5b294f88 target_complete_cmd_with_length -EXPORT_SYMBOL drivers/target/target_core_mod 0x624a9613 transport_lookup_cmd_lun -EXPORT_SYMBOL drivers/target/target_core_mod 0x638bffb7 target_free_sgl -EXPORT_SYMBOL drivers/target/target_core_mod 0x653116e5 sbc_attrib_attrs -EXPORT_SYMBOL drivers/target/target_core_mod 0x673c1ae0 core_tmr_alloc_req -EXPORT_SYMBOL drivers/target/target_core_mod 0x67fb5a99 target_complete_cmd_with_sense -EXPORT_SYMBOL drivers/target/target_core_mod 0x6a634b29 target_submit_tmr -EXPORT_SYMBOL drivers/target/target_core_mod 0x6fab4b8b transport_wait_for_tasks -EXPORT_SYMBOL drivers/target/target_core_mod 0x7254b4a1 target_send_busy -EXPORT_SYMBOL drivers/target/target_core_mod 0x7459ffff passthrough_parse_cdb -EXPORT_SYMBOL drivers/target/target_core_mod 0x74987e48 transport_send_check_condition_and_sense -EXPORT_SYMBOL drivers/target/target_core_mod 0x75feb290 target_tpg_has_node_acl -EXPORT_SYMBOL drivers/target/target_core_mod 0x7a1d0d3c target_alloc_sgl -EXPORT_SYMBOL drivers/target/target_core_mod 0x7b1d9250 target_wait_for_sess_cmds -EXPORT_SYMBOL drivers/target/target_core_mod 0x7ce07ff6 core_tpg_get_initiator_node_acl -EXPORT_SYMBOL drivers/target/target_core_mod 0x7e0700ff target_execute_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x805cbc55 target_cmd_parse_cdb -EXPORT_SYMBOL drivers/target/target_core_mod 0x874b7a85 target_get_sess_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x8aec747c target_backend_unregister -EXPORT_SYMBOL drivers/target/target_core_mod 0x8cb3da59 sbc_parse_cdb -EXPORT_SYMBOL drivers/target/target_core_mod 0x90b1a07d target_undepend_item -EXPORT_SYMBOL drivers/target/target_core_mod 0x93d42b38 target_submit_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0xa06bbe73 transport_free_session -EXPORT_SYMBOL drivers/target/target_core_mod 0xa08393d6 spc_parse_cdb -EXPORT_SYMBOL drivers/target/target_core_mod 0xa3986228 target_configure_unmap_from_queue -EXPORT_SYMBOL drivers/target/target_core_mod 0xa54e33e1 target_put_nacl -EXPORT_SYMBOL drivers/target/target_core_mod 0xae27ae22 target_register_template -EXPORT_SYMBOL drivers/target/target_core_mod 0xb04481f7 target_stop_session -EXPORT_SYMBOL drivers/target/target_core_mod 0xb3ad4ebb transport_deregister_session -EXPORT_SYMBOL drivers/target/target_core_mod 0xc329d5aa core_tpg_deregister -EXPORT_SYMBOL drivers/target/target_core_mod 0xc63c0a70 transport_generic_new_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0xc7dfa104 target_depend_item -EXPORT_SYMBOL drivers/target/target_core_mod 0xcc99bfee sbc_dif_verify -EXPORT_SYMBOL drivers/target/target_core_mod 0xcd9efb5a target_show_dynamic_sessions -EXPORT_SYMBOL drivers/target/target_core_mod 0xda4fe967 transport_deregister_session_configfs -EXPORT_SYMBOL drivers/target/target_core_mod 0xdb584bdd passthrough_attrib_attrs -EXPORT_SYMBOL drivers/target/target_core_mod 0xde516ede sbc_get_device_type -EXPORT_SYMBOL drivers/target/target_core_mod 0xdeb67d11 transport_handle_cdb_direct -EXPORT_SYMBOL drivers/target/target_core_mod 0xe0e465c0 transport_lookup_tmr_lun -EXPORT_SYMBOL drivers/target/target_core_mod 0xe6a9797e target_unregister_template -EXPORT_SYMBOL drivers/target/target_core_mod 0xe703817e target_lun_is_rdonly -EXPORT_SYMBOL drivers/target/target_core_mod 0xe8e1f850 spc_emulate_report_luns -EXPORT_SYMBOL drivers/target/target_core_mod 0xecb2e0c6 target_complete_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0xf18ec095 core_allocate_nexus_loss_ua -EXPORT_SYMBOL drivers/target/target_core_mod 0xf3c2dfe0 transport_set_vpd_proto_id -EXPORT_SYMBOL drivers/target/target_core_mod 0xf8775354 target_setup_session -EXPORT_SYMBOL drivers/usb/class/cdc-wdm 0x1108b725 usb_cdc_wdm_register -EXPORT_SYMBOL drivers/usb/gadget/libcomposite 0x25221260 usb_os_desc_prepare_interf_dir -EXPORT_SYMBOL drivers/usb/host/sl811-hcd 0x92a55b2d sl811h_driver -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x021195da usb_wwan_suspend -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x08a09ca5 usb_wwan_port_remove -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x0dd68ce7 usb_wwan_close -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x0ea36993 usb_wwan_chars_in_buffer -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x34055102 usb_wwan_write -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x49b42deb usb_wwan_dtr_rts -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x4d38c372 usb_wwan_write_room -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x4da04fa3 usb_wwan_tiocmget -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x584b6bc2 usb_wwan_open -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x5f6d380b usb_wwan_resume -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xc4099d33 usb_wwan_tiocmset -EXPORT_SYMBOL drivers/usb/serial/usbserial 0x1767574f usb_serial_resume -EXPORT_SYMBOL drivers/usb/serial/usbserial 0xa9173957 usb_serial_suspend -EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x11a9a0b1 mdev_register_driver -EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x6474862c mtype_get_type_group_id -EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x7895ef26 mdev_unregister_device -EXPORT_SYMBOL drivers/vfio/mdev/mdev 0xab0f8a50 mdev_unregister_driver -EXPORT_SYMBOL drivers/vfio/mdev/mdev 0xc2c63229 mdev_get_type_group_id -EXPORT_SYMBOL drivers/vfio/mdev/mdev 0xe6d00ac3 mdev_parent_dev -EXPORT_SYMBOL drivers/vfio/mdev/mdev 0xf3590717 mtype_get_parent_dev -EXPORT_SYMBOL drivers/vfio/mdev/mdev 0xfc5ba032 mdev_register_device -EXPORT_SYMBOL drivers/vfio/vfio 0x19567d06 vfio_info_cap_shift -EXPORT_SYMBOL drivers/vfio/vfio 0x1aa9fba0 vfio_dma_rw -EXPORT_SYMBOL drivers/vfio/vfio 0x4023b011 vfio_register_notifier -EXPORT_SYMBOL drivers/vfio/vfio 0x48a81d7e vfio_group_pin_pages -EXPORT_SYMBOL drivers/vfio/vfio 0x6c28be5a vfio_info_add_capability -EXPORT_SYMBOL drivers/vfio/vfio 0x7834defd vfio_group_unpin_pages -EXPORT_SYMBOL drivers/vfio/vfio 0x9bd0eba3 vfio_unregister_notifier -EXPORT_SYMBOL drivers/vfio/vfio 0xadc044b7 vfio_set_irqs_validate_and_prepare -EXPORT_SYMBOL drivers/vfio/vfio 0xca059fe6 vfio_pin_pages -EXPORT_SYMBOL drivers/vfio/vfio 0xf4d2ba75 vfio_unpin_pages -EXPORT_SYMBOL drivers/vhost/vhost 0x312dc361 vhost_chr_poll -EXPORT_SYMBOL drivers/vhost/vhost 0x947970f2 vhost_chr_write_iter -EXPORT_SYMBOL drivers/vhost/vringh 0x10e20ce2 vringh_notify_disable_iotlb -EXPORT_SYMBOL drivers/vhost/vringh 0x1264ea7d vringh_need_notify_user -EXPORT_SYMBOL drivers/vhost/vringh 0x2e30f118 vringh_complete_multi_user -EXPORT_SYMBOL drivers/vhost/vringh 0x3732a4d3 vringh_notify_enable_kern -EXPORT_SYMBOL drivers/vhost/vringh 0x3b304ebb vringh_iov_push_user -EXPORT_SYMBOL drivers/vhost/vringh 0x4311cd91 vringh_iov_pull_user -EXPORT_SYMBOL drivers/vhost/vringh 0x45174599 vringh_abandon_user -EXPORT_SYMBOL drivers/vhost/vringh 0x4ad3f306 vringh_init_user -EXPORT_SYMBOL drivers/vhost/vringh 0x660779c8 vringh_kiov_advance -EXPORT_SYMBOL drivers/vhost/vringh 0x712d6ea1 vringh_notify_enable_user -EXPORT_SYMBOL drivers/vhost/vringh 0x7eacee2e vringh_need_notify_kern -EXPORT_SYMBOL drivers/vhost/vringh 0x833e57e1 vringh_getdesc_kern -EXPORT_SYMBOL drivers/vhost/vringh 0x84ce6a5c vringh_complete_iotlb -EXPORT_SYMBOL drivers/vhost/vringh 0x84d53190 vringh_abandon_iotlb -EXPORT_SYMBOL drivers/vhost/vringh 0x8b87e7a3 vringh_iov_pull_iotlb -EXPORT_SYMBOL drivers/vhost/vringh 0x932ac4db vringh_notify_enable_iotlb -EXPORT_SYMBOL drivers/vhost/vringh 0x97fa07e9 vringh_iov_push_kern -EXPORT_SYMBOL drivers/vhost/vringh 0xa0122a6b vringh_set_iotlb -EXPORT_SYMBOL drivers/vhost/vringh 0xa9e30291 vringh_abandon_kern -EXPORT_SYMBOL drivers/vhost/vringh 0xaa8c5297 vringh_need_notify_iotlb -EXPORT_SYMBOL drivers/vhost/vringh 0xac0c9a89 vringh_notify_disable_user -EXPORT_SYMBOL drivers/vhost/vringh 0xc0c49eda vringh_notify_disable_kern -EXPORT_SYMBOL drivers/vhost/vringh 0xd67ab39a vringh_complete_user -EXPORT_SYMBOL drivers/vhost/vringh 0xd73744c3 vringh_init_kern -EXPORT_SYMBOL drivers/vhost/vringh 0xde804bb9 vringh_iov_pull_kern -EXPORT_SYMBOL drivers/vhost/vringh 0xdef1df46 vringh_getdesc_iotlb -EXPORT_SYMBOL drivers/vhost/vringh 0xe4227942 vringh_getdesc_user -EXPORT_SYMBOL drivers/vhost/vringh 0xf48453c6 vringh_iov_push_iotlb -EXPORT_SYMBOL drivers/vhost/vringh 0xfaa9b5fd vringh_init_iotlb -EXPORT_SYMBOL drivers/vhost/vringh 0xfc797401 vringh_complete_kern -EXPORT_SYMBOL drivers/video/backlight/lcd 0x62c5e64d devm_lcd_device_unregister -EXPORT_SYMBOL drivers/video/backlight/lcd 0x74e555a7 lcd_device_unregister -EXPORT_SYMBOL drivers/video/backlight/lcd 0x824ad69b devm_lcd_device_register -EXPORT_SYMBOL drivers/video/backlight/lcd 0xcdc1c8dd lcd_device_register -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x08701681 svga_tileblit -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x0e75a188 svga_tilecursor -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x17f3f471 svga_set_default_seq_regs -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x1be6dc30 svga_set_textmode_vga_regs -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x1e4710e9 svga_tilefill -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x4ab38ef2 svga_set_default_crt_regs -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x803558ca 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 0xaf192270 svga_get_tilemax -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xb0ab2b2e svga_check_timings -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xbd23e97f svga_get_caps -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xcf1f183a 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/syscopyarea 0x33d4fc11 sys_copyarea -EXPORT_SYMBOL drivers/video/fbdev/core/sysfillrect 0xee641fe3 sys_fillrect -EXPORT_SYMBOL drivers/video/fbdev/core/sysimgblt 0xed1b5df5 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 0x9445b13b cyber2000fb_attach -EXPORT_SYMBOL drivers/video/fbdev/cyber2000fb 0xb39f68d1 cyber2000fb_enable_extregs -EXPORT_SYMBOL drivers/video/fbdev/macmodes 0x157d7b35 mac_find_mode -EXPORT_SYMBOL drivers/video/fbdev/macmodes 0x233917d1 mac_vmode_to_var -EXPORT_SYMBOL drivers/video/fbdev/macmodes 0xe2304303 mac_map_monitor_sense -EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0x020ae40f g450_mnp2f -EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0x3c0f86ad matroxfb_g450_setclk -EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0xda6f57b8 matroxfb_g450_setpll_cond -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x03b2f12b DAC1064_global_restore -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x6d231ca6 matrox_mystique -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0xc33de2c6 DAC1064_global_init -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0xe92939eb matrox_G100 -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_Ti3026 0xbf800442 matrox_millennium -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_accel 0xf6377adb matrox_cfbX_init -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x48d171c1 matroxfb_wait_for_sync -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x881ec1de matroxfb_register_driver -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0xce2ccffa matroxfb_unregister_driver -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0xf7d0aa5a matroxfb_enable_irq -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_g450 0xedae5bf2 matroxfb_g450_shutdown -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_g450 0xf87ad4ed matroxfb_g450_connect -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x25cf8049 matroxfb_PLL_calcclock -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x38e4a6cf matroxfb_vgaHWinit -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x90db3420 matroxfb_vgaHWrestore -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x942ceac9 matroxfb_DAC_out -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xc60ef9f1 matroxfb_DAC_in -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xcdc90c64 matroxfb_var2my -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xf1456856 matroxfb_read_pins -EXPORT_SYMBOL drivers/video/fbdev/sis/sisfb 0x3037658e sis_malloc -EXPORT_SYMBOL drivers/video/fbdev/sis/sisfb 0xfe963115 sis_free -EXPORT_SYMBOL drivers/video/vgastate 0x686de290 restore_vga -EXPORT_SYMBOL drivers/video/vgastate 0xe7a2620e save_vga -EXPORT_SYMBOL drivers/virtio/virtio_dma_buf 0x2321cfc8 virtio_dma_buf_export -EXPORT_SYMBOL drivers/virtio/virtio_dma_buf 0x28c7c85c virtio_dma_buf_get_uuid -EXPORT_SYMBOL drivers/virtio/virtio_dma_buf 0x91080183 is_virtio_dma_buf -EXPORT_SYMBOL drivers/virtio/virtio_dma_buf 0xe1339afb virtio_dma_buf_attach -EXPORT_SYMBOL drivers/w1/slaves/w1_ds2780 0x007c9d0a w1_ds2780_io -EXPORT_SYMBOL drivers/w1/slaves/w1_ds2780 0x5f8d6c87 w1_ds2780_eeprom_cmd -EXPORT_SYMBOL drivers/w1/slaves/w1_ds2781 0x7b14e273 w1_ds2781_io -EXPORT_SYMBOL drivers/w1/slaves/w1_ds2781 0x97909c0f w1_ds2781_eeprom_cmd -EXPORT_SYMBOL drivers/w1/wire 0x17f2f0f3 w1_unregister_family -EXPORT_SYMBOL drivers/w1/wire 0x31132e89 w1_add_master_device -EXPORT_SYMBOL drivers/w1/wire 0x7118af29 w1_remove_master_device -EXPORT_SYMBOL drivers/w1/wire 0xf745a27f w1_register_family -EXPORT_SYMBOL fs/fscache/fscache 0x02eb4027 fscache_cache_cleared_wq -EXPORT_SYMBOL fs/fscache/fscache 0x05136f20 __fscache_alloc_page -EXPORT_SYMBOL fs/fscache/fscache 0x052ed7a2 __fscache_update_cookie -EXPORT_SYMBOL fs/fscache/fscache 0x07a93ece fscache_object_lookup_negative -EXPORT_SYMBOL fs/fscache/fscache 0x0ffc5b26 __fscache_begin_read_operation -EXPORT_SYMBOL fs/fscache/fscache 0x10173240 fscache_object_init -EXPORT_SYMBOL fs/fscache/fscache 0x29f8908f __fscache_enable_cookie -EXPORT_SYMBOL fs/fscache/fscache 0x2c945295 __fscache_invalidate -EXPORT_SYMBOL fs/fscache/fscache 0x2f5e2944 fscache_object_mark_killed -EXPORT_SYMBOL fs/fscache/fscache 0x30fbecd9 fscache_enqueue_operation -EXPORT_SYMBOL fs/fscache/fscache 0x31d62f3d __fscache_acquire_cookie -EXPORT_SYMBOL fs/fscache/fscache 0x3c7da6bf __fscache_uncache_page -EXPORT_SYMBOL fs/fscache/fscache 0x405cbc64 fscache_io_error -EXPORT_SYMBOL fs/fscache/fscache 0x44114220 __fscache_maybe_release_page -EXPORT_SYMBOL fs/fscache/fscache 0x48b6b8a6 __fscache_wait_on_invalidate -EXPORT_SYMBOL fs/fscache/fscache 0x57a34035 __fscache_disable_cookie -EXPORT_SYMBOL fs/fscache/fscache 0x5d7fd8ea fscache_object_destroy -EXPORT_SYMBOL fs/fscache/fscache 0x6168061a __fscache_attr_changed -EXPORT_SYMBOL fs/fscache/fscache 0x621c7ef0 fscache_mark_pages_cached -EXPORT_SYMBOL fs/fscache/fscache 0x648d4f01 __fscache_check_page_write -EXPORT_SYMBOL fs/fscache/fscache 0x6bcab3c2 fscache_add_cache -EXPORT_SYMBOL fs/fscache/fscache 0x6e9d2d4c __fscache_unregister_netfs -EXPORT_SYMBOL fs/fscache/fscache 0x74530ecd fscache_op_debug_id -EXPORT_SYMBOL fs/fscache/fscache 0x775896ad fscache_fsdef_index -EXPORT_SYMBOL fs/fscache/fscache 0x7d6eccc3 fscache_obtained_object -EXPORT_SYMBOL fs/fscache/fscache 0x8b19648f __fscache_wait_on_page_write -EXPORT_SYMBOL fs/fscache/fscache 0x940b4033 fscache_operation_init -EXPORT_SYMBOL fs/fscache/fscache 0xa4927cf6 __fscache_check_consistency -EXPORT_SYMBOL fs/fscache/fscache 0xbae64354 fscache_init_cache -EXPORT_SYMBOL fs/fscache/fscache 0xcb93a147 __fscache_register_netfs -EXPORT_SYMBOL fs/fscache/fscache 0xcc437fbf fscache_put_operation -EXPORT_SYMBOL fs/fscache/fscache 0xccce4e61 fscache_mark_page_cached -EXPORT_SYMBOL fs/fscache/fscache 0xd9cbc5ff fscache_object_retrying_stale -EXPORT_SYMBOL fs/fscache/fscache 0xdf017dd9 fscache_withdraw_cache -EXPORT_SYMBOL fs/fscache/fscache 0xe04bb952 __fscache_read_or_alloc_pages -EXPORT_SYMBOL fs/fscache/fscache 0xe3610198 fscache_op_complete -EXPORT_SYMBOL fs/fscache/fscache 0xe3735980 __fscache_write_page -EXPORT_SYMBOL fs/fscache/fscache 0xe80cd862 __fscache_uncache_all_inode_pages -EXPORT_SYMBOL fs/fscache/fscache 0xe9cf86fd __fscache_readpages_cancel -EXPORT_SYMBOL fs/fscache/fscache 0xeb5c4c8b fscache_check_aux -EXPORT_SYMBOL fs/fscache/fscache 0xf556f331 __fscache_read_or_alloc_page -EXPORT_SYMBOL fs/fscache/fscache 0xf9c5961b __fscache_relinquish_cookie -EXPORT_SYMBOL fs/netfs/netfs 0x3493c6f7 netfs_readahead -EXPORT_SYMBOL fs/netfs/netfs 0x3719aaa6 netfs_stats_show -EXPORT_SYMBOL fs/netfs/netfs 0xd6066c15 netfs_subreq_terminated -EXPORT_SYMBOL fs/netfs/netfs 0xd78d477d netfs_write_begin -EXPORT_SYMBOL fs/netfs/netfs 0xd93f066e netfs_readpage -EXPORT_SYMBOL fs/ocfs2/cluster/ocfs2_nodemanager 0xbfd7d7a2 o2hb_global_heartbeat_active -EXPORT_SYMBOL fs/quota/quota_tree 0x146c884c qtree_delete_dquot -EXPORT_SYMBOL fs/quota/quota_tree 0x1b31013a qtree_release_dquot -EXPORT_SYMBOL fs/quota/quota_tree 0x39d8f9a6 qtree_write_dquot -EXPORT_SYMBOL fs/quota/quota_tree 0x3b87fb08 qtree_get_next_id -EXPORT_SYMBOL fs/quota/quota_tree 0x4e05c3db qtree_entry_unused -EXPORT_SYMBOL fs/quota/quota_tree 0x994e0932 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 0x1e0afed5 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 0xe063ff91 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 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 0x3914cd21 lowpan_register_netdev -EXPORT_SYMBOL net/6lowpan/6lowpan 0x4731f254 lowpan_register_netdevice -EXPORT_SYMBOL net/6lowpan/6lowpan 0x57863277 lowpan_unregister_netdev -EXPORT_SYMBOL net/6lowpan/6lowpan 0xd06dd72b lowpan_nhc_add -EXPORT_SYMBOL net/6lowpan/6lowpan 0xf659b221 lowpan_unregister_netdevice -EXPORT_SYMBOL net/6lowpan/6lowpan 0xffe0576c lowpan_nhc_del -EXPORT_SYMBOL net/802/p8022 0x807f4ce0 register_8022_client -EXPORT_SYMBOL net/802/p8022 0x99312c93 unregister_8022_client -EXPORT_SYMBOL net/802/psnap 0x89976803 register_snap_client -EXPORT_SYMBOL net/802/psnap 0xbb0cf73c unregister_snap_client -EXPORT_SYMBOL net/9p/9pnet 0x00cdedd3 p9_client_getlock_dotl -EXPORT_SYMBOL net/9p/9pnet 0x038edc51 p9_client_rename -EXPORT_SYMBOL net/9p/9pnet 0x0e62f9f0 p9_client_lock_dotl -EXPORT_SYMBOL net/9p/9pnet 0x1395af52 p9_client_getattr_dotl -EXPORT_SYMBOL net/9p/9pnet 0x161e0817 p9_client_unlinkat -EXPORT_SYMBOL net/9p/9pnet 0x1e69dcaf v9fs_unregister_trans -EXPORT_SYMBOL net/9p/9pnet 0x25c42953 p9_client_mkdir_dotl -EXPORT_SYMBOL net/9p/9pnet 0x2c9ad55a p9_release_pages -EXPORT_SYMBOL net/9p/9pnet 0x38332d8e p9dirent_read -EXPORT_SYMBOL net/9p/9pnet 0x3a7b785b p9_client_cb -EXPORT_SYMBOL net/9p/9pnet 0x3d73a797 p9_errstr2errno -EXPORT_SYMBOL net/9p/9pnet 0x3ed2a643 v9fs_register_trans -EXPORT_SYMBOL net/9p/9pnet 0x42dbdca3 p9_client_readlink -EXPORT_SYMBOL net/9p/9pnet 0x4543438e p9_client_renameat -EXPORT_SYMBOL net/9p/9pnet 0x47684345 p9_client_destroy -EXPORT_SYMBOL net/9p/9pnet 0x56659ea2 v9fs_get_trans_by_name -EXPORT_SYMBOL net/9p/9pnet 0x5ea160bb p9_client_fsync -EXPORT_SYMBOL net/9p/9pnet 0x6633d988 p9_client_symlink -EXPORT_SYMBOL net/9p/9pnet 0x72e25852 p9_client_mknod_dotl -EXPORT_SYMBOL net/9p/9pnet 0x748c01f5 p9_client_create_dotl -EXPORT_SYMBOL net/9p/9pnet 0x76260598 p9_client_clunk -EXPORT_SYMBOL net/9p/9pnet 0x7cb36ae4 p9_client_link -EXPORT_SYMBOL net/9p/9pnet 0x7f3a88dd p9_client_begin_disconnect -EXPORT_SYMBOL net/9p/9pnet 0x808cb3bd p9_show_client_options -EXPORT_SYMBOL net/9p/9pnet 0x83087009 p9_client_disconnect -EXPORT_SYMBOL net/9p/9pnet 0x92c42b83 p9_client_walk -EXPORT_SYMBOL net/9p/9pnet 0x984c5e73 p9_fcall_fini -EXPORT_SYMBOL net/9p/9pnet 0x9cb6d50f p9_client_statfs -EXPORT_SYMBOL net/9p/9pnet 0xacc31248 p9_client_stat -EXPORT_SYMBOL net/9p/9pnet 0xacf6efae v9fs_get_default_trans -EXPORT_SYMBOL net/9p/9pnet 0xae828f33 p9_req_put -EXPORT_SYMBOL net/9p/9pnet 0xb64981c2 p9_is_proto_dotu -EXPORT_SYMBOL net/9p/9pnet 0xb79f25fd p9_parse_header -EXPORT_SYMBOL net/9p/9pnet 0xbe35f2db p9_client_read_once -EXPORT_SYMBOL net/9p/9pnet 0xc50364e5 p9_is_proto_dotl -EXPORT_SYMBOL net/9p/9pnet 0xc7d81478 p9_client_open -EXPORT_SYMBOL net/9p/9pnet 0xc9c2001b p9stat_read -EXPORT_SYMBOL net/9p/9pnet 0xc9f99be5 p9_client_attach -EXPORT_SYMBOL net/9p/9pnet 0xd1dee36a p9_client_remove -EXPORT_SYMBOL net/9p/9pnet 0xd384c683 p9stat_free -EXPORT_SYMBOL net/9p/9pnet 0xda3d605e p9_client_write -EXPORT_SYMBOL net/9p/9pnet 0xe42b162b p9_client_create -EXPORT_SYMBOL net/9p/9pnet 0xe58a3360 p9_error_init -EXPORT_SYMBOL net/9p/9pnet 0xeca82a63 p9_client_setattr -EXPORT_SYMBOL net/9p/9pnet 0xedc8d2df p9_tag_lookup -EXPORT_SYMBOL net/9p/9pnet 0xee4c50ef p9_client_wstat -EXPORT_SYMBOL net/9p/9pnet 0xefc4c78d p9_client_fcreate -EXPORT_SYMBOL net/9p/9pnet 0xf530d25f p9_client_readdir -EXPORT_SYMBOL net/9p/9pnet 0xfce3dcd5 p9_client_read -EXPORT_SYMBOL net/appletalk/appletalk 0x36ead570 alloc_ltalkdev -EXPORT_SYMBOL net/appletalk/appletalk 0x76aff7b3 atalk_find_dev_addr -EXPORT_SYMBOL net/appletalk/appletalk 0x7b76d86b aarp_send_ddp -EXPORT_SYMBOL net/appletalk/appletalk 0x93d2b227 atrtr_get_dev -EXPORT_SYMBOL net/atm/atm 0x1a77ac10 vcc_sklist_lock -EXPORT_SYMBOL net/atm/atm 0x2cc2d52d vcc_hash -EXPORT_SYMBOL net/atm/atm 0x3e984573 vcc_insert_socket -EXPORT_SYMBOL net/atm/atm 0x4443d399 atm_proc_root -EXPORT_SYMBOL net/atm/atm 0x49e828bb atm_alloc_charge -EXPORT_SYMBOL net/atm/atm 0x4c92c21a atm_dev_signal_change -EXPORT_SYMBOL net/atm/atm 0x510f7d87 atm_dev_deregister -EXPORT_SYMBOL net/atm/atm 0x6a266732 atm_dev_register -EXPORT_SYMBOL net/atm/atm 0x709cc9b4 vcc_process_recv_queue -EXPORT_SYMBOL net/atm/atm 0x7494cbb4 vcc_release_async -EXPORT_SYMBOL net/atm/atm 0x9370e5fe atm_dev_release_vccs -EXPORT_SYMBOL net/atm/atm 0x964bcd53 register_atm_ioctl -EXPORT_SYMBOL net/atm/atm 0x9feaf287 sonet_subtract_stats -EXPORT_SYMBOL net/atm/atm 0xa0c16ebe deregister_atm_ioctl -EXPORT_SYMBOL net/atm/atm 0xaa024146 sonet_copy_stats -EXPORT_SYMBOL net/atm/atm 0xcef9ab43 atm_charge -EXPORT_SYMBOL net/atm/atm 0xdc4538fd atm_dev_lookup -EXPORT_SYMBOL net/atm/atm 0xf49bc67a atm_pcr_goal -EXPORT_SYMBOL net/atm/atm 0xfe7c271e atm_init_aal5 -EXPORT_SYMBOL net/ax25/ax25 0x14cecd59 ax25_display_timer -EXPORT_SYMBOL net/ax25/ax25 0x1db9c9c6 ax25_ip_xmit -EXPORT_SYMBOL net/ax25/ax25 0x242852b9 ax25_uid_policy -EXPORT_SYMBOL net/ax25/ax25 0x32252004 ax25_find_cb -EXPORT_SYMBOL net/ax25/ax25 0x3a77bb84 ax25_listen_release -EXPORT_SYMBOL net/ax25/ax25 0x4502c65a asc2ax -EXPORT_SYMBOL net/ax25/ax25 0x53dea1ff ax2asc -EXPORT_SYMBOL net/ax25/ax25 0x8c20b17a ax25_linkfail_release -EXPORT_SYMBOL net/ax25/ax25 0x8ede9e26 ax25_protocol_release -EXPORT_SYMBOL net/ax25/ax25 0x9592f0c0 ax25_send_frame -EXPORT_SYMBOL net/ax25/ax25 0xa8ea0bc9 ax25_listen_register -EXPORT_SYMBOL net/ax25/ax25 0xb391a34d ax25_header_ops -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 0xf37cb408 ax25_linkfail_register -EXPORT_SYMBOL net/bluetooth/bluetooth 0x030c4ead bt_sock_unlink -EXPORT_SYMBOL net/bluetooth/bluetooth 0x0718b8b7 bt_info -EXPORT_SYMBOL net/bluetooth/bluetooth 0x105da456 bt_sock_stream_recvmsg -EXPORT_SYMBOL net/bluetooth/bluetooth 0x110ab048 hci_free_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0x16561ef8 l2cap_unregister_user -EXPORT_SYMBOL net/bluetooth/bluetooth 0x19ffb7ad hci_unregister_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0x1c11b206 bt_procfs_init -EXPORT_SYMBOL net/bluetooth/bluetooth 0x214e4265 bt_warn -EXPORT_SYMBOL net/bluetooth/bluetooth 0x2160d4ec bt_sock_poll -EXPORT_SYMBOL net/bluetooth/bluetooth 0x227dc05f bt_accept_dequeue -EXPORT_SYMBOL net/bluetooth/bluetooth 0x28c3b449 hci_mgmt_chan_unregister -EXPORT_SYMBOL net/bluetooth/bluetooth 0x2f12fe79 bt_sock_ioctl -EXPORT_SYMBOL net/bluetooth/bluetooth 0x35b8b9b3 bt_sock_wait_state -EXPORT_SYMBOL net/bluetooth/bluetooth 0x36607fd7 bt_accept_enqueue -EXPORT_SYMBOL net/bluetooth/bluetooth 0x3968f8c2 bt_sock_reclassify_lock -EXPORT_SYMBOL net/bluetooth/bluetooth 0x3b96b426 bt_sock_register -EXPORT_SYMBOL net/bluetooth/bluetooth 0x44bbf16d l2cap_register_user -EXPORT_SYMBOL net/bluetooth/bluetooth 0x4e014aef l2cap_conn_put -EXPORT_SYMBOL net/bluetooth/bluetooth 0x4e615549 hci_conn_switch_role -EXPORT_SYMBOL net/bluetooth/bluetooth 0x533bac15 __hci_cmd_send -EXPORT_SYMBOL net/bluetooth/bluetooth 0x5c3e7ad9 hci_suspend_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0x5cc5f35a l2cap_is_socket -EXPORT_SYMBOL net/bluetooth/bluetooth 0x5e0aa156 __hci_cmd_sync -EXPORT_SYMBOL net/bluetooth/bluetooth 0x5e76e6e1 hci_register_cb -EXPORT_SYMBOL net/bluetooth/bluetooth 0x60000066 bt_sock_recvmsg -EXPORT_SYMBOL net/bluetooth/bluetooth 0x6a88b1e7 bt_accept_unlink -EXPORT_SYMBOL net/bluetooth/bluetooth 0x6b8d7023 l2cap_chan_close -EXPORT_SYMBOL net/bluetooth/bluetooth 0x6f59e8c8 hci_recv_diag -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 0x7e962fce hci_release_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0x838a79f5 hci_reset_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0x8efde612 hci_conn_security -EXPORT_SYMBOL net/bluetooth/bluetooth 0x8fea24bd bt_sock_unregister -EXPORT_SYMBOL net/bluetooth/bluetooth 0xa16f7497 hci_set_hw_info -EXPORT_SYMBOL net/bluetooth/bluetooth 0xab9e8c89 hci_get_route -EXPORT_SYMBOL net/bluetooth/bluetooth 0xb1983d9c hci_mgmt_chan_register -EXPORT_SYMBOL net/bluetooth/bluetooth 0xc410c306 bt_sock_wait_ready -EXPORT_SYMBOL net/bluetooth/bluetooth 0xc4f3086f hci_resume_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0xc58f1bac hci_register_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0xccf5f875 bt_sock_link -EXPORT_SYMBOL net/bluetooth/bluetooth 0xd0bee1f7 hci_recv_frame -EXPORT_SYMBOL net/bluetooth/bluetooth 0xd7613212 bt_err_ratelimited -EXPORT_SYMBOL net/bluetooth/bluetooth 0xda5905cd __hci_cmd_sync_ev -EXPORT_SYMBOL net/bluetooth/bluetooth 0xdc6a9cd6 hci_conn_check_secure -EXPORT_SYMBOL net/bluetooth/bluetooth 0xddacccf6 bt_warn_ratelimited -EXPORT_SYMBOL net/bluetooth/bluetooth 0xe3f4abd4 l2cap_conn_get -EXPORT_SYMBOL net/bluetooth/bluetooth 0xee07649d hci_cmd_sync -EXPORT_SYMBOL net/bluetooth/bluetooth 0xee8c9e0a hci_unregister_cb -EXPORT_SYMBOL net/bluetooth/bluetooth 0xf30871db bt_procfs_cleanup -EXPORT_SYMBOL net/bluetooth/bluetooth 0xf9481f06 hci_alloc_dev_priv -EXPORT_SYMBOL net/bluetooth/bluetooth 0xfd924d7b hci_set_fw_info -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x0d88053e ebt_unregister_table -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x101b7984 ebt_do_table -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x52d28700 ebt_unregister_table_pre_exit -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x5cd684f7 ebt_register_template -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x8b418cd0 ebt_unregister_template -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x947b8ec5 ebt_register_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 0x38caf502 caif_connect_client -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 0x5dfb30d4 cfcnfg_add_phy_layer -EXPORT_SYMBOL net/caif/caif 0x7a97b602 caif_enroll_dev -EXPORT_SYMBOL net/caif/caif 0x839ddb7b cfcnfg_set_phy_state -EXPORT_SYMBOL net/caif/caif 0x9e3e305d cfpkt_set_prio -EXPORT_SYMBOL net/caif/caif 0xb41cadc2 get_cfcnfg -EXPORT_SYMBOL net/caif/caif 0xb7b6874e caif_free_client -EXPORT_SYMBOL net/caif/caif 0xfde99e89 caif_disconnect_client -EXPORT_SYMBOL net/can/can 0x0a556161 can_rx_unregister -EXPORT_SYMBOL net/can/can 0x591e2484 can_rx_register -EXPORT_SYMBOL net/can/can 0x7398a5a4 can_proto_register -EXPORT_SYMBOL net/can/can 0x7b671f07 can_sock_destruct -EXPORT_SYMBOL net/can/can 0xa36fe714 can_proto_unregister -EXPORT_SYMBOL net/can/can 0xfc3c32cf can_send -EXPORT_SYMBOL net/ceph/libceph 0x0206b116 ceph_msg_new -EXPORT_SYMBOL net/ceph/libceph 0x06e1892e ceph_osdc_new_request -EXPORT_SYMBOL net/ceph/libceph 0x08276fb6 ceph_monc_validate_auth -EXPORT_SYMBOL net/ceph/libceph 0x0fe95ea0 ceph_client_addr -EXPORT_SYMBOL net/ceph/libceph 0x11ab5965 ceph_msg_data_add_pages -EXPORT_SYMBOL net/ceph/libceph 0x12a906b4 ceph_auth_verify_authorizer_reply -EXPORT_SYMBOL net/ceph/libceph 0x14c19299 osd_req_op_raw_data_in_pages -EXPORT_SYMBOL net/ceph/libceph 0x15f61d5e ceph_cls_assert_locked -EXPORT_SYMBOL net/ceph/libceph 0x165b1948 ceph_pagelist_free_reserve -EXPORT_SYMBOL net/ceph/libceph 0x166afe03 ceph_msg_new2 -EXPORT_SYMBOL net/ceph/libceph 0x16a90a45 ceph_pg_to_acting_primary -EXPORT_SYMBOL net/ceph/libceph 0x16aa98cd ceph_reset_client_addr -EXPORT_SYMBOL net/ceph/libceph 0x175693fd ceph_monc_get_version_async -EXPORT_SYMBOL net/ceph/libceph 0x1773555f ceph_copy_to_page_vector -EXPORT_SYMBOL net/ceph/libceph 0x1aefef37 __ceph_open_session -EXPORT_SYMBOL net/ceph/libceph 0x1d8dc8e9 ceph_alloc_page_vector -EXPORT_SYMBOL net/ceph/libceph 0x2087719e ceph_oid_copy -EXPORT_SYMBOL net/ceph/libceph 0x2101cbc9 ceph_oid_destroy -EXPORT_SYMBOL net/ceph/libceph 0x22976bfb ceph_cls_lock -EXPORT_SYMBOL net/ceph/libceph 0x2465d544 ceph_osdc_call -EXPORT_SYMBOL net/ceph/libceph 0x2529da3b osd_req_op_xattr_init -EXPORT_SYMBOL net/ceph/libceph 0x25404782 ceph_parse_mon_ips -EXPORT_SYMBOL net/ceph/libceph 0x25afff00 ceph_osdc_update_epoch_barrier -EXPORT_SYMBOL net/ceph/libceph 0x2a42f4b5 ceph_osdc_clear_abort_err -EXPORT_SYMBOL net/ceph/libceph 0x2a983d26 ceph_pagelist_release -EXPORT_SYMBOL net/ceph/libceph 0x2be9c1c3 ceph_osdc_unwatch -EXPORT_SYMBOL net/ceph/libceph 0x2ffe1eb8 osd_req_op_extent_init -EXPORT_SYMBOL net/ceph/libceph 0x30db6793 __ceph_auth_get_authorizer -EXPORT_SYMBOL net/ceph/libceph 0x31a81325 ceph_auth_add_authorizer_challenge -EXPORT_SYMBOL net/ceph/libceph 0x331527d7 osd_req_op_alloc_hint_init -EXPORT_SYMBOL net/ceph/libceph 0x335a5eaa ceph_print_client_options -EXPORT_SYMBOL net/ceph/libceph 0x34eb99db ceph_auth_handle_svc_reply_more -EXPORT_SYMBOL net/ceph/libceph 0x386aad9f ceph_check_fsid -EXPORT_SYMBOL net/ceph/libceph 0x38f2d94e ceph_file_to_extents -EXPORT_SYMBOL net/ceph/libceph 0x3a5590c6 ceph_con_keepalive -EXPORT_SYMBOL net/ceph/libceph 0x3c8d7111 ceph_get_num_objects -EXPORT_SYMBOL net/ceph/libceph 0x417a9131 ceph_oloc_destroy -EXPORT_SYMBOL net/ceph/libceph 0x43b34d18 osd_req_op_extent_osd_data_pagelist -EXPORT_SYMBOL net/ceph/libceph 0x466b85b8 libceph_compatible -EXPORT_SYMBOL net/ceph/libceph 0x4a183ac1 ceph_con_close -EXPORT_SYMBOL net/ceph/libceph 0x4ba07e55 ceph_monc_want_map -EXPORT_SYMBOL net/ceph/libceph 0x4c57f4c5 ceph_osdc_wait_request -EXPORT_SYMBOL net/ceph/libceph 0x4c92a94c ceph_auth_is_authenticated -EXPORT_SYMBOL net/ceph/libceph 0x4ebe62e4 ceph_client_gid -EXPORT_SYMBOL net/ceph/libceph 0x50603ce3 ceph_decode_entity_addrvec -EXPORT_SYMBOL net/ceph/libceph 0x53f9bec9 ceph_compare_options -EXPORT_SYMBOL net/ceph/libceph 0x56b0908c osd_req_op_extent_osd_data_pages -EXPORT_SYMBOL net/ceph/libceph 0x57baf885 ceph_str_hash -EXPORT_SYMBOL net/ceph/libceph 0x5aeeee62 ceph_oid_aprintf -EXPORT_SYMBOL net/ceph/libceph 0x5ef44006 ceph_pg_poolid_by_name -EXPORT_SYMBOL net/ceph/libceph 0x5ff044f6 ceph_pg_pool_name_by_id -EXPORT_SYMBOL net/ceph/libceph 0x6022b92b ceph_osdc_maybe_request_map -EXPORT_SYMBOL net/ceph/libceph 0x626dc250 ceph_cls_unlock -EXPORT_SYMBOL net/ceph/libceph 0x63758856 ceph_str_hash_name -EXPORT_SYMBOL net/ceph/libceph 0x63ade95d ceph_osdc_sync -EXPORT_SYMBOL net/ceph/libceph 0x649077e5 ceph_monc_wait_osdmap -EXPORT_SYMBOL net/ceph/libceph 0x678701ec ceph_osdc_notify -EXPORT_SYMBOL net/ceph/libceph 0x69aa0bf6 ceph_con_open -EXPORT_SYMBOL net/ceph/libceph 0x6a40250e ceph_open_session -EXPORT_SYMBOL net/ceph/libceph 0x6a7a38a0 ceph_pr_addr -EXPORT_SYMBOL net/ceph/libceph 0x6cf730f9 ceph_parse_param -EXPORT_SYMBOL net/ceph/libceph 0x6d787a96 ceph_osdc_copy_from -EXPORT_SYMBOL net/ceph/libceph 0x6e27613b ceph_copy_from_page_vector -EXPORT_SYMBOL net/ceph/libceph 0x707551ae ceph_zero_page_vector_range -EXPORT_SYMBOL net/ceph/libceph 0x71c8c976 ceph_put_page_vector -EXPORT_SYMBOL net/ceph/libceph 0x72c451f8 ceph_monc_blocklist_add -EXPORT_SYMBOL net/ceph/libceph 0x77dabec7 ceph_msg_dump -EXPORT_SYMBOL net/ceph/libceph 0x7943383d osd_req_op_extent_dup_last -EXPORT_SYMBOL net/ceph/libceph 0x7cd06619 ceph_auth_handle_bad_authorizer -EXPORT_SYMBOL net/ceph/libceph 0x86fca7e4 ceph_put_snap_context -EXPORT_SYMBOL net/ceph/libceph 0x872c36e9 ceph_osdc_alloc_request -EXPORT_SYMBOL net/ceph/libceph 0x8deed95d ceph_osdc_cancel_request -EXPORT_SYMBOL net/ceph/libceph 0x8f34c208 ceph_msg_get -EXPORT_SYMBOL net/ceph/libceph 0x914c94d5 ceph_monc_renew_subs -EXPORT_SYMBOL net/ceph/libceph 0x94243cf7 ceph_wait_for_latest_osdmap -EXPORT_SYMBOL net/ceph/libceph 0x987d3968 ceph_alloc_options -EXPORT_SYMBOL net/ceph/libceph 0x987fd0c0 ceph_cls_lock_info -EXPORT_SYMBOL net/ceph/libceph 0x9a28e475 osd_req_op_extent_osd_data_bvecs -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 0x9e9c5da4 ceph_auth_handle_svc_reply_done -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 0xa084f1a6 ceph_auth_invalidate_authorizer -EXPORT_SYMBOL net/ceph/libceph 0xa18d8b94 ceph_copy_user_to_page_vector -EXPORT_SYMBOL net/ceph/libceph 0xa1f281e6 ceph_osdc_alloc_messages -EXPORT_SYMBOL net/ceph/libceph 0xa4fb0279 osd_req_op_cls_init -EXPORT_SYMBOL net/ceph/libceph 0xa598bf9b ceph_osdc_start_request -EXPORT_SYMBOL net/ceph/libceph 0xa698f998 ceph_free_lockers -EXPORT_SYMBOL net/ceph/libceph 0xa71e39f9 ceph_msg_data_add_bio -EXPORT_SYMBOL net/ceph/libceph 0xa7f68d79 ceph_osdc_put_request -EXPORT_SYMBOL net/ceph/libceph 0xa9c0cee4 ceph_release_page_vector -EXPORT_SYMBOL net/ceph/libceph 0xab62c4c2 osd_req_op_extent_update -EXPORT_SYMBOL net/ceph/libceph 0xad703657 ceph_auth_destroy_authorizer -EXPORT_SYMBOL net/ceph/libceph 0xaf6ef80d ceph_osdc_notify_ack -EXPORT_SYMBOL net/ceph/libceph 0xafab9bd9 osd_req_op_cls_request_data_bvecs -EXPORT_SYMBOL net/ceph/libceph 0xafb8a407 ceph_msgr_flush -EXPORT_SYMBOL net/ceph/libceph 0xb19219dc osd_req_op_init -EXPORT_SYMBOL net/ceph/libceph 0xb31e6ecd ceph_cls_break_lock -EXPORT_SYMBOL net/ceph/libceph 0xb54676fa ceph_msg_type_name -EXPORT_SYMBOL net/ceph/libceph 0xb72c162e ceph_buffer_release -EXPORT_SYMBOL net/ceph/libceph 0xb8248e86 osd_req_op_extent_osd_data_bvec_pos -EXPORT_SYMBOL net/ceph/libceph 0xb8dc5b20 ceph_monc_get_version -EXPORT_SYMBOL net/ceph/libceph 0xba4d41e5 ceph_osdc_abort_requests -EXPORT_SYMBOL net/ceph/libceph 0xbd2f79ae ceph_oloc_copy -EXPORT_SYMBOL net/ceph/libceph 0xbe3879aa ceph_get_snap_context -EXPORT_SYMBOL net/ceph/libceph 0xc05633ac ceph_monc_stop -EXPORT_SYMBOL net/ceph/libceph 0xc1ffdb28 ceph_osdc_get_request -EXPORT_SYMBOL net/ceph/libceph 0xc366bfa1 ceph_pagelist_truncate -EXPORT_SYMBOL net/ceph/libceph 0xc3f63430 ceph_destroy_client -EXPORT_SYMBOL net/ceph/libceph 0xc4d7f882 osd_req_op_cls_response_data_pages -EXPORT_SYMBOL net/ceph/libceph 0xc614d6c8 ceph_monc_open_session -EXPORT_SYMBOL net/ceph/libceph 0xc772c1e3 ceph_pg_pool_flags -EXPORT_SYMBOL net/ceph/libceph 0xca80437b ceph_extent_to_file -EXPORT_SYMBOL net/ceph/libceph 0xcc6afefc ceph_monc_do_statfs -EXPORT_SYMBOL net/ceph/libceph 0xccc58c7f ceph_monc_got_map -EXPORT_SYMBOL net/ceph/libceph 0xcdd10f51 ceph_osdc_flush_notifies -EXPORT_SYMBOL net/ceph/libceph 0xd4d736db ceph_destroy_options -EXPORT_SYMBOL net/ceph/libceph 0xd4eb7735 ceph_decode_entity_addr -EXPORT_SYMBOL net/ceph/libceph 0xd5bd61d0 ceph_monc_init -EXPORT_SYMBOL net/ceph/libceph 0xd5d2ca85 ceph_auth_get_authorizer -EXPORT_SYMBOL net/ceph/libceph 0xd72c91b7 ceph_con_send -EXPORT_SYMBOL net/ceph/libceph 0xd95c8558 ceph_msg_data_add_bvecs -EXPORT_SYMBOL net/ceph/libceph 0xdf6ef4a1 ceph_oid_printf -EXPORT_SYMBOL net/ceph/libceph 0xdfc091f9 ceph_entity_type_name -EXPORT_SYMBOL net/ceph/libceph 0xe220cb6e ceph_object_locator_to_pg -EXPORT_SYMBOL net/ceph/libceph 0xe277753d ceph_cls_set_cookie -EXPORT_SYMBOL net/ceph/libceph 0xe3f4c9a7 ceph_osdc_list_watchers -EXPORT_SYMBOL net/ceph/libceph 0xe45d057b osd_req_op_cls_request_data_pagelist -EXPORT_SYMBOL net/ceph/libceph 0xe76e7226 ceph_pagelist_alloc -EXPORT_SYMBOL net/ceph/libceph 0xe91943f2 osd_req_op_cls_request_data_pages -EXPORT_SYMBOL net/ceph/libceph 0xec654631 osd_req_op_extent_osd_data_bio -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 0xf0fd074d ceph_msg_put -EXPORT_SYMBOL net/ceph/libceph 0xf0fd48af osd_req_op_extent_osd_data -EXPORT_SYMBOL net/ceph/libceph 0xf254297e ceph_addr_is_blank -EXPORT_SYMBOL net/ceph/libceph 0xf7de80a3 ceph_con_init -EXPORT_SYMBOL net/ceph/libceph 0xfc114e86 ceph_create_client -EXPORT_SYMBOL net/ceph/libceph 0xfc496212 ceph_msg_data_add_pagelist -EXPORT_SYMBOL net/ceph/libceph 0xfeba725f ceph_osdc_watch -EXPORT_SYMBOL net/dccp/dccp_ipv4 0x08f26237 dccp_syn_ack_timeout -EXPORT_SYMBOL net/dccp/dccp_ipv4 0xaebfe6a3 dccp_req_err -EXPORT_SYMBOL net/hsr/hsr 0x4b30ad44 hsr_get_version -EXPORT_SYMBOL net/hsr/hsr 0x6210a796 is_hsr_master -EXPORT_SYMBOL net/ieee802154/ieee802154 0x18b9b85c wpan_phy_free -EXPORT_SYMBOL net/ieee802154/ieee802154 0x1a47451c wpan_phy_find -EXPORT_SYMBOL net/ieee802154/ieee802154 0x39c79023 wpan_phy_for_each -EXPORT_SYMBOL net/ieee802154/ieee802154 0x4e0796fb wpan_phy_register -EXPORT_SYMBOL net/ieee802154/ieee802154 0x7f9a74e2 wpan_phy_unregister -EXPORT_SYMBOL net/ieee802154/ieee802154 0xfb062da9 wpan_phy_new -EXPORT_SYMBOL net/ipv4/fou 0x1757d1a4 fou_encap_hlen -EXPORT_SYMBOL net/ipv4/fou 0xbeffcd1e __gue_build_header -EXPORT_SYMBOL net/ipv4/fou 0xdcf56cd2 __fou_build_header -EXPORT_SYMBOL net/ipv4/fou 0xf13914b3 gue_encap_hlen -EXPORT_SYMBOL net/ipv4/gre 0x1fb9ed57 gre_parse_header -EXPORT_SYMBOL net/ipv4/ip_tunnel 0x1e61368e ip_tunnel_get_iflink -EXPORT_SYMBOL net/ipv4/ip_tunnel 0x5a52d0c8 ip_tunnel_encap_del_ops -EXPORT_SYMBOL net/ipv4/ip_tunnel 0x73c3af0c ip_tunnel_encap_add_ops -EXPORT_SYMBOL net/ipv4/ip_tunnel 0xa08b50a1 ip_tunnel_get_link_net -EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x11a62d81 arpt_unregister_table -EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0xc7436f70 arpt_do_table -EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0xf53ae776 arpt_register_table -EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0xf71d6065 arpt_unregister_table_pre_exit -EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x08a02feb ipt_unregister_table_pre_exit -EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x48203e6c ipt_register_table -EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x52648350 ipt_do_table -EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0xa4264fc1 ipt_unregister_table_exit -EXPORT_SYMBOL net/ipv4/tunnel4 0x08133eb5 xfrm4_tunnel_deregister -EXPORT_SYMBOL net/ipv4/tunnel4 0x23d3996f xfrm4_tunnel_register -EXPORT_SYMBOL net/ipv4/udp_tunnel 0x323c8ab1 udp_sock_create4 -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x0f249836 ip6_tnl_encap_add_ops -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x1761dad1 ip6_tnl_get_cap -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x4ea0ab51 ip6_tnl_xmit -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x594ac046 ip6_tnl_rcv -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x67ea0331 ip6_tnl_encap_del_ops -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x6e41cf91 ip6_tnl_parse_tlv_enc_lim -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xa81d099f ip6_tnl_get_link_net -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xd4d8b129 ip6_tnl_get_iflink -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xdb2a89a7 ip6_tnl_change_mtu -EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x5bf0296e ip6t_unregister_table_exit -EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x7eeb16ea ip6t_do_table -EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0xcd710abf ip6t_register_table -EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0xeac22765 ip6t_unregister_table_pre_exit -EXPORT_SYMBOL net/ipv6/tunnel6 0x026909cf xfrm6_tunnel_register -EXPORT_SYMBOL net/ipv6/tunnel6 0x57b901c8 xfrm6_tunnel_deregister -EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0xdba32421 xfrm6_tunnel_spi_lookup -EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0xfd6aac0f xfrm6_tunnel_alloc_spi -EXPORT_SYMBOL net/lapb/lapb 0x031c8b3e lapb_register -EXPORT_SYMBOL net/lapb/lapb 0x0cd3280e lapb_connect_request -EXPORT_SYMBOL net/lapb/lapb 0x0ed97762 lapb_disconnect_request -EXPORT_SYMBOL net/lapb/lapb 0x2c3ae04c lapb_getparms -EXPORT_SYMBOL net/lapb/lapb 0x534061a1 lapb_setparms -EXPORT_SYMBOL net/lapb/lapb 0x67468497 lapb_unregister -EXPORT_SYMBOL net/lapb/lapb 0x955bfd7f lapb_data_received -EXPORT_SYMBOL net/lapb/lapb 0xfc33d3b5 lapb_data_request -EXPORT_SYMBOL net/llc/llc 0x2bd006ad llc_build_and_send_ui_pkt -EXPORT_SYMBOL net/llc/llc 0x3197d2d2 llc_sap_find -EXPORT_SYMBOL net/llc/llc 0x387c5ca9 llc_sap_open -EXPORT_SYMBOL net/llc/llc 0x38b92846 llc_remove_pack -EXPORT_SYMBOL net/llc/llc 0x410296a3 llc_mac_hdr_init -EXPORT_SYMBOL net/llc/llc 0x52d7b2fd llc_sap_list -EXPORT_SYMBOL net/llc/llc 0xb33a85af llc_set_station_handler -EXPORT_SYMBOL net/llc/llc 0xef4c97cc llc_sap_close -EXPORT_SYMBOL net/llc/llc 0xf900bba5 llc_add_pack -EXPORT_SYMBOL net/mac80211/mac80211 0x0083d0ff wiphy_to_ieee80211_hw -EXPORT_SYMBOL net/mac80211/mac80211 0x011bbe3a ieee80211_sta_block_awake -EXPORT_SYMBOL net/mac80211/mac80211 0x0136919f ieee80211_beacon_set_cntdwn -EXPORT_SYMBOL net/mac80211/mac80211 0x01c8e55b ieee80211_next_txq -EXPORT_SYMBOL net/mac80211/mac80211 0x063f5308 ieee80211_get_tkip_p1k_iv -EXPORT_SYMBOL net/mac80211/mac80211 0x0c765dec ieee80211_radar_detected -EXPORT_SYMBOL net/mac80211/mac80211 0x0c848ff0 ieee80211_send_eosp_nullfunc -EXPORT_SYMBOL net/mac80211/mac80211 0x144aecfc ieee80211_ap_probereq_get -EXPORT_SYMBOL net/mac80211/mac80211 0x15325b40 ieee80211_sta_uapsd_trigger -EXPORT_SYMBOL net/mac80211/mac80211 0x179fcb3a ieee80211_report_low_ack -EXPORT_SYMBOL net/mac80211/mac80211 0x183dcd3b ieee80211_get_key_rx_seq -EXPORT_SYMBOL net/mac80211/mac80211 0x199fa374 ieee80211_txq_airtime_check -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 0x1c752e66 ieee80211_txq_schedule_start -EXPORT_SYMBOL net/mac80211/mac80211 0x1ef15d80 ieee80211_rx_list -EXPORT_SYMBOL net/mac80211/mac80211 0x1f7d0667 ieee80211_ctstoself_duration -EXPORT_SYMBOL net/mac80211/mac80211 0x29252f7d ieee80211_start_tx_ba_session -EXPORT_SYMBOL net/mac80211/mac80211 0x2c88d7b5 ieee80211_restart_hw -EXPORT_SYMBOL net/mac80211/mac80211 0x34278c4f ieee80211_rts_get -EXPORT_SYMBOL net/mac80211/mac80211 0x34ea160c ieee80211_get_fils_discovery_tmpl -EXPORT_SYMBOL net/mac80211/mac80211 0x37be297f ieee80211_txq_get_depth -EXPORT_SYMBOL net/mac80211/mac80211 0x38c4a69d ieee80211_nullfunc_get -EXPORT_SYMBOL net/mac80211/mac80211 0x38d6ad5d ieee80211_nan_func_match -EXPORT_SYMBOL net/mac80211/mac80211 0x3a07af6b ieee80211_tx_prepare_skb -EXPORT_SYMBOL net/mac80211/mac80211 0x3b663a29 ieee80211_sta_ps_transition -EXPORT_SYMBOL net/mac80211/mac80211 0x3cfd4485 ieee80211_stop_tx_ba_cb_irqsafe -EXPORT_SYMBOL net/mac80211/mac80211 0x460d01ac ieee80211_get_tx_rates -EXPORT_SYMBOL net/mac80211/mac80211 0x474baf66 ieee80211_wake_queues -EXPORT_SYMBOL net/mac80211/mac80211 0x482f7dec ieee80211_proberesp_get -EXPORT_SYMBOL net/mac80211/mac80211 0x4ce39cbf ieee80211_pspoll_get -EXPORT_SYMBOL net/mac80211/mac80211 0x4e27c6d3 ieee80211_ctstoself_get -EXPORT_SYMBOL net/mac80211/mac80211 0x52ba8247 ieee80211_beacon_get_tim -EXPORT_SYMBOL net/mac80211/mac80211 0x594e269b ieee80211_rate_control_unregister -EXPORT_SYMBOL net/mac80211/mac80211 0x5f6456b9 ieee80211_stop_queues -EXPORT_SYMBOL net/mac80211/mac80211 0x650df7c7 ieee80211_schedule_txq -EXPORT_SYMBOL net/mac80211/mac80211 0x65a8acb1 ieee80211_unreserve_tid -EXPORT_SYMBOL net/mac80211/mac80211 0x68104cd1 ieee80211_sta_eosp -EXPORT_SYMBOL net/mac80211/mac80211 0x69801127 __ieee80211_get_assoc_led_name -EXPORT_SYMBOL net/mac80211/mac80211 0x6ba30b10 ieee80211_alloc_hw_nm -EXPORT_SYMBOL net/mac80211/mac80211 0x6ba83128 ieee80211_tx_status_ext -EXPORT_SYMBOL net/mac80211/mac80211 0x6e41125d ieee80211_tdls_oper_request -EXPORT_SYMBOL net/mac80211/mac80211 0x6e9de07c ieee80211_get_unsol_bcast_probe_resp_tmpl -EXPORT_SYMBOL net/mac80211/mac80211 0x710b1d88 ieee80211_cqm_beacon_loss_notify -EXPORT_SYMBOL net/mac80211/mac80211 0x75cac1d2 ieee80211_chswitch_done -EXPORT_SYMBOL net/mac80211/mac80211 0x77893210 __ieee80211_get_tx_led_name -EXPORT_SYMBOL net/mac80211/mac80211 0x77cb483d ieee80211_manage_rx_ba_offl -EXPORT_SYMBOL net/mac80211/mac80211 0x7804d78e ieee80211_reserve_tid -EXPORT_SYMBOL net/mac80211/mac80211 0x7b1aa37d ieee80211_txq_may_transmit -EXPORT_SYMBOL net/mac80211/mac80211 0x7b5ec8dd ieee80211_rts_duration -EXPORT_SYMBOL net/mac80211/mac80211 0x81262e61 __ieee80211_create_tpt_led_trigger -EXPORT_SYMBOL net/mac80211/mac80211 0x813b6289 ieee80211_rx_napi -EXPORT_SYMBOL net/mac80211/mac80211 0x8255b366 ieee80211_scan_completed -EXPORT_SYMBOL net/mac80211/mac80211 0x828ef1f7 ieee80211_free_txskb -EXPORT_SYMBOL net/mac80211/mac80211 0x87166176 ieee80211_beacon_get_template -EXPORT_SYMBOL net/mac80211/mac80211 0x87688576 ieee80211_find_sta -EXPORT_SYMBOL net/mac80211/mac80211 0x8c2a9412 ieee80211_beacon_loss -EXPORT_SYMBOL net/mac80211/mac80211 0x8ccd4363 ieee80211_tx_rate_update -EXPORT_SYMBOL net/mac80211/mac80211 0x8debe27b ieee80211_tx_dequeue -EXPORT_SYMBOL net/mac80211/mac80211 0x91d7cbff ieee80211_iter_keys_rcu -EXPORT_SYMBOL net/mac80211/mac80211 0x9219a4f8 ieee80211_stop_rx_ba_session -EXPORT_SYMBOL net/mac80211/mac80211 0x92913868 ieee80211_queue_delayed_work -EXPORT_SYMBOL net/mac80211/mac80211 0x940dfb58 ieee80211_report_wowlan_wakeup -EXPORT_SYMBOL net/mac80211/mac80211 0x94bfd76f ieee80211_return_txq -EXPORT_SYMBOL net/mac80211/mac80211 0x991a0ca0 ieee80211_parse_p2p_noa -EXPORT_SYMBOL net/mac80211/mac80211 0x9d6fb611 ieee80211_generic_frame_duration -EXPORT_SYMBOL net/mac80211/mac80211 0xa19d6422 ieee80211_sta_pspoll -EXPORT_SYMBOL net/mac80211/mac80211 0xa2215af8 __ieee80211_get_rx_led_name -EXPORT_SYMBOL net/mac80211/mac80211 0xa589c5a2 ieee80211_rx_ba_timer_expired -EXPORT_SYMBOL net/mac80211/mac80211 0xafd5f223 ieee80211_register_hw -EXPORT_SYMBOL net/mac80211/mac80211 0xb053bf70 ieee80211_send_bar -EXPORT_SYMBOL net/mac80211/mac80211 0xb31a0d7d ieee80211_disable_rssi_reports -EXPORT_SYMBOL net/mac80211/mac80211 0xb8921424 ieee80211_beacon_cntdwn_is_complete -EXPORT_SYMBOL net/mac80211/mac80211 0xb9c9883b ieee80211_wake_queue -EXPORT_SYMBOL net/mac80211/mac80211 0xba3b8119 ieee80211_tx_status_irqsafe -EXPORT_SYMBOL net/mac80211/mac80211 0xbbfe4584 ieee80211_rate_control_register -EXPORT_SYMBOL net/mac80211/mac80211 0xbc5c2d0c ieee80211_unregister_hw -EXPORT_SYMBOL net/mac80211/mac80211 0xc0b7b3fb __ieee80211_get_radio_led_name -EXPORT_SYMBOL net/mac80211/mac80211 0xc0f4d6d7 ieee80211_free_hw -EXPORT_SYMBOL net/mac80211/mac80211 0xc3e6ad41 ieee80211_disconnect -EXPORT_SYMBOL net/mac80211/mac80211 0xc88b4c66 ieee80211_queue_stopped -EXPORT_SYMBOL net/mac80211/mac80211 0xcb9baa84 ieee80211_cqm_rssi_notify -EXPORT_SYMBOL net/mac80211/mac80211 0xcbd2d53c ieee80211_sta_set_buffered -EXPORT_SYMBOL net/mac80211/mac80211 0xd575e47b ieee80211_tx_status_8023 -EXPORT_SYMBOL net/mac80211/mac80211 0xd58744ca ieee80211_iter_keys -EXPORT_SYMBOL net/mac80211/mac80211 0xd62972bb ieee80211_get_buffered_bc -EXPORT_SYMBOL net/mac80211/mac80211 0xd6752f30 ieee80211_mark_rx_ba_filtered_frames -EXPORT_SYMBOL net/mac80211/mac80211 0xd6ad234a ieee80211_sta_register_airtime -EXPORT_SYMBOL net/mac80211/mac80211 0xd74c60cb ieee80211_sched_scan_results -EXPORT_SYMBOL net/mac80211/mac80211 0xd98bc32c ieee80211_get_tkip_p2k -EXPORT_SYMBOL net/mac80211/mac80211 0xdd72de95 ieee80211_rx_irqsafe -EXPORT_SYMBOL net/mac80211/mac80211 0xde7d2692 ieee80211_probereq_get -EXPORT_SYMBOL net/mac80211/mac80211 0xe1d429b3 rate_control_set_rates -EXPORT_SYMBOL net/mac80211/mac80211 0xe50bd595 ieee80211_nan_func_terminated -EXPORT_SYMBOL net/mac80211/mac80211 0xe5752af3 ieee80211_get_bssid -EXPORT_SYMBOL net/mac80211/mac80211 0xe57cdb37 ieee80211_sched_scan_stopped -EXPORT_SYMBOL net/mac80211/mac80211 0xe6c2e490 ieee80211_beacon_update_cntdwn -EXPORT_SYMBOL net/mac80211/mac80211 0xec308b8b ieee80211_stop_tx_ba_session -EXPORT_SYMBOL net/mac80211/mac80211 0xefd876ff ieee80211_csa_finish -EXPORT_SYMBOL net/mac80211/mac80211 0xf076bf92 ieee80211_enable_rssi_reports -EXPORT_SYMBOL net/mac80211/mac80211 0xf0c40760 ieee80211_start_tx_ba_cb_irqsafe -EXPORT_SYMBOL net/mac80211/mac80211 0xf38bf7ce ieee80211_tx_status -EXPORT_SYMBOL net/mac80211/mac80211 0xf5b4afa6 ieee80211_queue_work -EXPORT_SYMBOL net/mac80211/mac80211 0xf808a01a ieee80211_stop_queue -EXPORT_SYMBOL net/mac80211/mac80211 0xfa0eec4a ieee80211_connection_loss -EXPORT_SYMBOL net/mac802154/mac802154 0x0cc036e0 ieee802154_stop_queue -EXPORT_SYMBOL net/mac802154/mac802154 0x294059d2 ieee802154_free_hw -EXPORT_SYMBOL net/mac802154/mac802154 0x4345eaa9 ieee802154_register_hw -EXPORT_SYMBOL net/mac802154/mac802154 0xa2c2d15f ieee802154_rx_irqsafe -EXPORT_SYMBOL net/mac802154/mac802154 0xb4192abb ieee802154_xmit_complete -EXPORT_SYMBOL net/mac802154/mac802154 0xc617e8e0 ieee802154_unregister_hw -EXPORT_SYMBOL net/mac802154/mac802154 0xcfe3fada ieee802154_alloc_hw -EXPORT_SYMBOL net/mac802154/mac802154 0xfcb717ef ieee802154_wake_queue -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x0d13a528 unregister_ip_vs_scheduler -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x47457957 ip_vs_conn_new -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x8c0fd56b ip_vs_conn_in_get -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x94e2a242 ip_vs_tcp_conn_listen -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xa3083715 register_ip_vs_scheduler -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xa7620c12 ip_vs_proto_data_get -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xba04cb17 ip_vs_proto_get -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xc13b47e4 register_ip_vs_app -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xd831a1a2 ip_vs_proto_name -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xd883de5a ip_vs_nfct_expect_related -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xdd46babf ip_vs_new_conn_out -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xf67613a9 ip_vs_scheduler_err -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xf8bbcc33 register_ip_vs_app_inc -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xf8eb887e unregister_ip_vs_app -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xfa4a7bcf ip_vs_conn_out_get -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xfc8add08 ip_vs_conn_put -EXPORT_SYMBOL net/netfilter/nf_conntrack 0x3b08a8f0 nf_ct_destroy -EXPORT_SYMBOL net/netfilter/nf_conntrack 0x422e3de1 nf_ct_ext_add -EXPORT_SYMBOL net/netfilter/nf_conntrack_pptp 0xf2a36612 pptp_msg_name -EXPORT_SYMBOL net/netfilter/nf_nat 0x0654f125 nf_nat_mangle_udp_packet -EXPORT_SYMBOL net/netfilter/nf_nat 0x3c5baf95 __nf_nat_mangle_tcp_packet -EXPORT_SYMBOL net/netfilter/nf_nat 0x514f1ba5 nf_nat_setup_info -EXPORT_SYMBOL net/netfilter/nf_nat 0xb4d74881 nf_nat_follow_master -EXPORT_SYMBOL net/netfilter/nft_fib 0xb3c36947 nft_fib_policy -EXPORT_SYMBOL net/netfilter/x_tables 0x06b2f186 xt_register_target -EXPORT_SYMBOL net/netfilter/x_tables 0x0d7f5fcd xt_alloc_entry_offsets -EXPORT_SYMBOL net/netfilter/x_tables 0x36af3c0a xt_register_matches -EXPORT_SYMBOL net/netfilter/x_tables 0x3bf9d084 xt_check_table_hooks -EXPORT_SYMBOL net/netfilter/x_tables 0x48012e28 xt_check_proc_name -EXPORT_SYMBOL net/netfilter/x_tables 0x50873741 xt_compat_init_offsets -EXPORT_SYMBOL net/netfilter/x_tables 0x8a22a3b0 xt_unregister_matches -EXPORT_SYMBOL net/netfilter/x_tables 0x8ca2f961 xt_find_match -EXPORT_SYMBOL net/netfilter/x_tables 0x977fd4bf xt_alloc_table_info -EXPORT_SYMBOL net/netfilter/x_tables 0x97d00bc9 xt_unregister_target -EXPORT_SYMBOL net/netfilter/x_tables 0xa25fc115 xt_compat_check_entry_offsets -EXPORT_SYMBOL net/netfilter/x_tables 0xc7fa71d4 xt_register_targets -EXPORT_SYMBOL net/netfilter/x_tables 0xca608a48 xt_unregister_match -EXPORT_SYMBOL net/netfilter/x_tables 0xcb3e91cc xt_counters_alloc -EXPORT_SYMBOL net/netfilter/x_tables 0xd87ae60d xt_check_entry_offsets -EXPORT_SYMBOL net/netfilter/x_tables 0xe204e042 xt_free_table_info -EXPORT_SYMBOL net/netfilter/x_tables 0xe43b0184 xt_find_table -EXPORT_SYMBOL net/netfilter/x_tables 0xea0ddb0d xt_register_match -EXPORT_SYMBOL net/netfilter/x_tables 0xecf2a6d9 xt_unregister_targets -EXPORT_SYMBOL net/netfilter/x_tables 0xfef779fa xt_find_jump_offset -EXPORT_SYMBOL net/nfc/hci/hci 0x04a9ee94 nfc_hci_unregister_device -EXPORT_SYMBOL net/nfc/hci/hci 0x09aba565 nfc_hci_disconnect_all_gates -EXPORT_SYMBOL net/nfc/hci/hci 0x1243e4a8 nfc_llc_stop -EXPORT_SYMBOL net/nfc/hci/hci 0x257ad43f nfc_hci_target_discovered -EXPORT_SYMBOL net/nfc/hci/hci 0x4bc4a931 nfc_hci_recv_frame -EXPORT_SYMBOL net/nfc/hci/hci 0x59615e04 nfc_llc_start -EXPORT_SYMBOL net/nfc/hci/hci 0x67981621 nfc_hci_get_clientdata -EXPORT_SYMBOL net/nfc/hci/hci 0x72efb006 nfc_hci_connect_gate -EXPORT_SYMBOL net/nfc/hci/hci 0x74fe3670 nfc_hci_result_to_errno -EXPORT_SYMBOL net/nfc/hci/hci 0x76e23730 nfc_hci_free_device -EXPORT_SYMBOL net/nfc/hci/hci 0x87e9c6d8 nfc_hci_get_param -EXPORT_SYMBOL net/nfc/hci/hci 0x8f1b9a85 nfc_hci_reset_pipes -EXPORT_SYMBOL net/nfc/hci/hci 0x90e5bd12 nfc_hci_send_event -EXPORT_SYMBOL net/nfc/hci/hci 0x9324d387 nfc_hci_set_clientdata -EXPORT_SYMBOL net/nfc/hci/hci 0xa568e970 nfc_hci_send_cmd -EXPORT_SYMBOL net/nfc/hci/hci 0xa8a0b5e7 nfc_hci_reset_pipes_per_host -EXPORT_SYMBOL net/nfc/hci/hci 0xac66476f nfc_hci_send_cmd_async -EXPORT_SYMBOL net/nfc/hci/hci 0xacaf6d89 nfc_hci_register_device -EXPORT_SYMBOL net/nfc/hci/hci 0xbf19c5e8 nfc_hci_driver_failure -EXPORT_SYMBOL net/nfc/hci/hci 0xdd231c55 nfc_hci_sak_to_protocol -EXPORT_SYMBOL net/nfc/hci/hci 0xe812b0fc nfc_hci_set_param -EXPORT_SYMBOL net/nfc/hci/hci 0xf9e654bb nfc_hci_allocate_device -EXPORT_SYMBOL net/nfc/hci/hci 0xfb308b36 nfc_hci_disconnect_gate -EXPORT_SYMBOL net/nfc/nci/nci 0x03211391 nci_conn_max_data_pkt_payload_size -EXPORT_SYMBOL net/nfc/nci/nci 0x033d39e5 nci_allocate_device -EXPORT_SYMBOL net/nfc/nci/nci 0x06465982 nci_core_init -EXPORT_SYMBOL net/nfc/nci/nci 0x096687b1 nci_send_frame -EXPORT_SYMBOL net/nfc/nci/nci 0x12627575 nci_prop_cmd -EXPORT_SYMBOL net/nfc/nci/nci 0x144d8789 nci_get_conn_info_by_dest_type_params -EXPORT_SYMBOL net/nfc/nci/nci 0x1fd539cf nci_hci_set_param -EXPORT_SYMBOL net/nfc/nci/nci 0x222ccd41 nci_send_data -EXPORT_SYMBOL net/nfc/nci/nci 0x37fb8a3a nci_core_cmd -EXPORT_SYMBOL net/nfc/nci/nci 0x38e8106b nci_hci_dev_session_init -EXPORT_SYMBOL net/nfc/nci/nci 0x3b4393cd nci_recv_frame -EXPORT_SYMBOL net/nfc/nci/nci 0x4303259c nci_hci_get_param -EXPORT_SYMBOL net/nfc/nci/nci 0x808ae92e nci_free_device -EXPORT_SYMBOL net/nfc/nci/nci 0x8a355dde nci_send_cmd -EXPORT_SYMBOL net/nfc/nci/nci 0x91b59848 nci_register_device -EXPORT_SYMBOL net/nfc/nci/nci 0xaca72aeb nci_set_config -EXPORT_SYMBOL net/nfc/nci/nci 0xacd645ce nci_unregister_device -EXPORT_SYMBOL net/nfc/nci/nci 0xaef891c9 nci_hci_clear_all_pipes -EXPORT_SYMBOL net/nfc/nci/nci 0xb99442aa nci_nfcee_mode_set -EXPORT_SYMBOL net/nfc/nci/nci 0xba490602 nci_to_errno -EXPORT_SYMBOL net/nfc/nci/nci 0xbac88ea1 nci_hci_connect_gate -EXPORT_SYMBOL net/nfc/nci/nci 0xbc59b03a nci_hci_send_cmd -EXPORT_SYMBOL net/nfc/nci/nci 0xcbe57a93 nci_nfcee_discover -EXPORT_SYMBOL net/nfc/nci/nci 0xcc4bce11 nci_core_reset -EXPORT_SYMBOL net/nfc/nci/nci 0xda66642e nci_hci_open_pipe -EXPORT_SYMBOL net/nfc/nci/nci 0xdef5d410 nci_req_complete -EXPORT_SYMBOL net/nfc/nci/nci 0xdf911146 nci_core_conn_close -EXPORT_SYMBOL net/nfc/nci/nci 0xe0b15968 nci_hci_send_event -EXPORT_SYMBOL net/nfc/nci/nci 0xf03c4523 nci_nfcc_loopback -EXPORT_SYMBOL net/nfc/nci/nci 0xfb5f9512 nci_core_conn_create -EXPORT_SYMBOL net/nfc/nfc 0x08261aec nfc_proto_unregister -EXPORT_SYMBOL net/nfc/nfc 0x0ef0c53b nfc_proto_register -EXPORT_SYMBOL net/nfc/nfc 0x1ea8df01 nfc_remove_se -EXPORT_SYMBOL net/nfc/nfc 0x2a22451d nfc_get_local_general_bytes -EXPORT_SYMBOL net/nfc/nfc 0x2d35acb7 nfc_tm_deactivated -EXPORT_SYMBOL net/nfc/nfc 0x3e057fe7 nfc_register_device -EXPORT_SYMBOL net/nfc/nfc 0x4746dfca nfc_set_remote_general_bytes -EXPORT_SYMBOL net/nfc/nfc 0x63e60f72 __nfc_alloc_vendor_cmd_reply_skb -EXPORT_SYMBOL net/nfc/nfc 0x6686f022 nfc_targets_found -EXPORT_SYMBOL net/nfc/nfc 0x78958dbf nfc_allocate_device -EXPORT_SYMBOL net/nfc/nfc 0x9a989f98 nfc_target_lost -EXPORT_SYMBOL net/nfc/nfc 0xabeeeace nfc_fw_download_done -EXPORT_SYMBOL net/nfc/nfc 0xae7430c1 nfc_vendor_cmd_reply -EXPORT_SYMBOL net/nfc/nfc 0xb9a9222c nfc_find_se -EXPORT_SYMBOL net/nfc/nfc 0xba0c039b nfc_se_connectivity -EXPORT_SYMBOL net/nfc/nfc 0xc08a2369 nfc_driver_failure -EXPORT_SYMBOL net/nfc/nfc 0xc0f9aa10 nfc_tm_data_received -EXPORT_SYMBOL net/nfc/nfc 0xc4247c01 nfc_alloc_recv_skb -EXPORT_SYMBOL net/nfc/nfc 0xc7cbe0c7 nfc_tm_activated -EXPORT_SYMBOL net/nfc/nfc 0xc8e36970 nfc_class -EXPORT_SYMBOL net/nfc/nfc 0xc9fc0e7b nfc_send_to_raw_sock -EXPORT_SYMBOL net/nfc/nfc 0xec41246b nfc_add_se -EXPORT_SYMBOL net/nfc/nfc 0xee451c28 nfc_unregister_device -EXPORT_SYMBOL net/nfc/nfc 0xf799be57 nfc_dep_link_is_up -EXPORT_SYMBOL net/nfc/nfc 0xfd929ffa nfc_se_transaction -EXPORT_SYMBOL net/nfc/nfc_digital 0x31b9e833 nfc_digital_register_device -EXPORT_SYMBOL net/nfc/nfc_digital 0x3b9cf815 nfc_digital_unregister_device -EXPORT_SYMBOL net/nfc/nfc_digital 0x48f1b1f4 nfc_digital_allocate_device -EXPORT_SYMBOL net/nfc/nfc_digital 0xff4a552c nfc_digital_free_device -EXPORT_SYMBOL net/phonet/phonet 0x22199a29 pn_sock_hash -EXPORT_SYMBOL net/phonet/phonet 0x2d4945fd phonet_proto_register -EXPORT_SYMBOL net/phonet/phonet 0x48085e91 pn_sock_unhash -EXPORT_SYMBOL net/phonet/phonet 0x78e0bc9f pn_skb_send -EXPORT_SYMBOL net/phonet/phonet 0xa5bb123d phonet_proto_unregister -EXPORT_SYMBOL net/phonet/phonet 0xc3661e51 phonet_stream_ops -EXPORT_SYMBOL net/phonet/phonet 0xc50ef418 pn_sock_get_port -EXPORT_SYMBOL net/phonet/phonet 0xf09ca0d3 phonet_header_ops -EXPORT_SYMBOL net/rxrpc/rxrpc 0x1002a415 rxrpc_kernel_end_call -EXPORT_SYMBOL net/rxrpc/rxrpc 0x15e87c13 rxrpc_kernel_get_peer -EXPORT_SYMBOL net/rxrpc/rxrpc 0x184ec67d rxrpc_kernel_get_reply_time -EXPORT_SYMBOL net/rxrpc/rxrpc 0x23f92e89 rxrpc_sock_set_min_security_level -EXPORT_SYMBOL net/rxrpc/rxrpc 0x2481fe7a rxrpc_kernel_get_epoch -EXPORT_SYMBOL net/rxrpc/rxrpc 0x296c19a6 rxrpc_kernel_abort_call -EXPORT_SYMBOL net/rxrpc/rxrpc 0x31bf3ca3 rxrpc_debug_id -EXPORT_SYMBOL net/rxrpc/rxrpc 0x5d38150d rxrpc_kernel_recv_data -EXPORT_SYMBOL net/rxrpc/rxrpc 0x5d7e0385 rxrpc_kernel_set_tx_length -EXPORT_SYMBOL net/rxrpc/rxrpc 0x62427959 rxrpc_kernel_check_life -EXPORT_SYMBOL net/rxrpc/rxrpc 0x71715285 rxrpc_kernel_get_srtt -EXPORT_SYMBOL net/rxrpc/rxrpc 0x82270efc rxrpc_get_server_data_key -EXPORT_SYMBOL net/rxrpc/rxrpc 0x8ed6a032 rxrpc_kernel_new_call_notification -EXPORT_SYMBOL net/rxrpc/rxrpc 0x9a2e0192 rxrpc_get_null_key -EXPORT_SYMBOL net/rxrpc/rxrpc 0xaa3aa567 rxrpc_kernel_send_data -EXPORT_SYMBOL net/rxrpc/rxrpc 0xb121dad4 rxrpc_kernel_set_max_life -EXPORT_SYMBOL net/rxrpc/rxrpc 0xb4dc43ee key_type_rxrpc -EXPORT_SYMBOL net/rxrpc/rxrpc 0xf4f09a16 rxrpc_kernel_charge_accept -EXPORT_SYMBOL net/rxrpc/rxrpc 0xfb0584b9 rxrpc_kernel_begin_call -EXPORT_SYMBOL net/sctp/sctp 0x1e5841b8 sctp_do_peeloff -EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x30d624c0 gss_mech_get -EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x31b7fec1 gss_pseudoflavor_to_service -EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x9e2303c3 gss_mech_put -EXPORT_SYMBOL net/sunrpc/sunrpc 0x719b8415 get_srcport -EXPORT_SYMBOL net/sunrpc/sunrpc 0x7e564980 xdr_truncate_encode -EXPORT_SYMBOL net/sunrpc/sunrpc 0xbb1b3ca7 xdr_restrict_buflen -EXPORT_SYMBOL net/sunrpc/sunrpc 0xda63c574 svc_pool_stats_open -EXPORT_SYMBOL net/tipc/tipc 0x2681dbc2 tipc_sk_fill_sock_diag -EXPORT_SYMBOL net/tipc/tipc 0x3b42d4af tipc_dump_start -EXPORT_SYMBOL net/tipc/tipc 0x8fb9b542 tipc_nl_sk_walk -EXPORT_SYMBOL net/tipc/tipc 0xdf5a933a tipc_dump_done -EXPORT_SYMBOL net/tls/tls 0x96b1c68c tls_get_record -EXPORT_SYMBOL net/wireless/cfg80211 0x00ad1657 cfg80211_rx_spurious_frame -EXPORT_SYMBOL net/wireless/cfg80211 0x077b6405 ieee80211_get_hdrlen_from_skb -EXPORT_SYMBOL net/wireless/cfg80211 0x0883c537 cfg80211_get_station -EXPORT_SYMBOL net/wireless/cfg80211 0x0c3f624b cfg80211_sta_opmode_change_notify -EXPORT_SYMBOL net/wireless/cfg80211 0x10888310 cfg80211_any_usable_channels -EXPORT_SYMBOL net/wireless/cfg80211 0x117aca91 cfg80211_merge_profile -EXPORT_SYMBOL net/wireless/cfg80211 0x13677276 cfg80211_send_layer2_update -EXPORT_SYMBOL net/wireless/cfg80211 0x143977a8 cfg80211_scan_done -EXPORT_SYMBOL net/wireless/cfg80211 0x15a37cf3 cfg80211_calculate_bitrate -EXPORT_SYMBOL net/wireless/cfg80211 0x15ce8f2e cfg80211_unregister_wdev -EXPORT_SYMBOL net/wireless/cfg80211 0x1714a7cf regulatory_set_wiphy_regd -EXPORT_SYMBOL net/wireless/cfg80211 0x1879fcbd bridge_tunnel_header -EXPORT_SYMBOL net/wireless/cfg80211 0x18fc687e cfg80211_del_sta_sinfo -EXPORT_SYMBOL net/wireless/cfg80211 0x1bf8026b wiphy_register -EXPORT_SYMBOL net/wireless/cfg80211 0x1ce2497f reg_query_regdb_wmm -EXPORT_SYMBOL net/wireless/cfg80211 0x1f6081c8 cfg80211_nan_match -EXPORT_SYMBOL net/wireless/cfg80211 0x2310adee ieee80211_bss_get_elem -EXPORT_SYMBOL net/wireless/cfg80211 0x23d535b7 cfg80211_get_drvinfo -EXPORT_SYMBOL net/wireless/cfg80211 0x25e51eba cfg80211_bss_color_notify -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 0x2e301e79 cfg80211_report_obss_beacon_khz -EXPORT_SYMBOL net/wireless/cfg80211 0x2e59672c cfg80211_auth_timeout -EXPORT_SYMBOL net/wireless/cfg80211 0x2e5d7b68 cfg80211_register_netdevice -EXPORT_SYMBOL net/wireless/cfg80211 0x2fdc5f10 cfg80211_iter_combinations -EXPORT_SYMBOL net/wireless/cfg80211 0x304a80b9 cfg80211_put_bss -EXPORT_SYMBOL net/wireless/cfg80211 0x33efc372 cfg80211_ch_switch_started_notify -EXPORT_SYMBOL net/wireless/cfg80211 0x36a510d6 cfg80211_check_combinations -EXPORT_SYMBOL net/wireless/cfg80211 0x3baf4b3e cfg80211_sched_scan_stopped -EXPORT_SYMBOL net/wireless/cfg80211 0x3d8e5894 cfg80211_chandef_compatible -EXPORT_SYMBOL net/wireless/cfg80211 0x41dae942 cfg80211_stop_iface -EXPORT_SYMBOL net/wireless/cfg80211 0x42dc6bb0 wiphy_rfkill_set_hw_state_reason -EXPORT_SYMBOL net/wireless/cfg80211 0x43afadee ieee80211_radiotap_iterator_init -EXPORT_SYMBOL net/wireless/cfg80211 0x47247528 cfg80211_assoc_timeout -EXPORT_SYMBOL net/wireless/cfg80211 0x47b7785d cfg80211_nan_func_terminated -EXPORT_SYMBOL net/wireless/cfg80211 0x4b59614b freq_reg_info -EXPORT_SYMBOL net/wireless/cfg80211 0x4b5ce7ca ieee80211_data_to_8023_exthdr -EXPORT_SYMBOL net/wireless/cfg80211 0x4c332dfa cfg80211_gtk_rekey_notify -EXPORT_SYMBOL net/wireless/cfg80211 0x4cd0b62d cfg80211_abandon_assoc -EXPORT_SYMBOL net/wireless/cfg80211 0x5006aea3 cfg80211_sched_scan_stopped_locked -EXPORT_SYMBOL net/wireless/cfg80211 0x586e0395 cfg80211_rx_assoc_resp -EXPORT_SYMBOL net/wireless/cfg80211 0x5a86d2ea cfg80211_chandef_usable -EXPORT_SYMBOL net/wireless/cfg80211 0x5aaa04c4 cfg80211_check_station_change -EXPORT_SYMBOL net/wireless/cfg80211 0x5c526038 cfg80211_cqm_rssi_notify -EXPORT_SYMBOL net/wireless/cfg80211 0x5ca418ba cfg80211_bss_iter -EXPORT_SYMBOL net/wireless/cfg80211 0x61e8adb2 cfg80211_cac_event -EXPORT_SYMBOL net/wireless/cfg80211 0x64c31804 cfg80211_ready_on_channel -EXPORT_SYMBOL net/wireless/cfg80211 0x652aeedf ieee80211_mandatory_rates -EXPORT_SYMBOL net/wireless/cfg80211 0x65c3aa38 __cfg80211_alloc_event_skb -EXPORT_SYMBOL net/wireless/cfg80211 0x675da9fb cfg80211_iftype_allowed -EXPORT_SYMBOL net/wireless/cfg80211 0x69b18f43 rfc1042_header -EXPORT_SYMBOL net/wireless/cfg80211 0x6bedf402 ieee80211_freq_khz_to_channel -EXPORT_SYMBOL net/wireless/cfg80211 0x6c3a7837 wiphy_unregister -EXPORT_SYMBOL net/wireless/cfg80211 0x714de182 cfg80211_michael_mic_failure -EXPORT_SYMBOL net/wireless/cfg80211 0x73fb5f6d cfg80211_chandef_dfs_required -EXPORT_SYMBOL net/wireless/cfg80211 0x79b82a71 cfg80211_find_vendor_elem -EXPORT_SYMBOL net/wireless/cfg80211 0x7a7f5c77 cfg80211_disconnected -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 0x7f90c97a cfg80211_remain_on_channel_expired -EXPORT_SYMBOL net/wireless/cfg80211 0x806b4178 cfg80211_probe_status -EXPORT_SYMBOL net/wireless/cfg80211 0x81874735 ieee80211_get_response_rate -EXPORT_SYMBOL net/wireless/cfg80211 0x81b7e8dd cfg80211_rx_control_port -EXPORT_SYMBOL net/wireless/cfg80211 0x823069ed cfg80211_new_sta -EXPORT_SYMBOL net/wireless/cfg80211 0x830c1829 cfg80211_tdls_oper_request -EXPORT_SYMBOL net/wireless/cfg80211 0x846263ca wiphy_rfkill_start_polling -EXPORT_SYMBOL net/wireless/cfg80211 0x8986fe3d cfg80211_roamed -EXPORT_SYMBOL net/wireless/cfg80211 0x8fa02936 cfg80211_free_nan_func -EXPORT_SYMBOL net/wireless/cfg80211 0x917d6585 cfg80211_rx_unprot_mlme_mgmt -EXPORT_SYMBOL net/wireless/cfg80211 0x926b88d7 wiphy_read_of_freq_limits -EXPORT_SYMBOL net/wireless/cfg80211 0x9514fd3e cfg80211_ft_event -EXPORT_SYMBOL net/wireless/cfg80211 0x9d6cba30 cfg80211_find_elem_match -EXPORT_SYMBOL net/wireless/cfg80211 0xa1d6f742 cfg80211_radar_event -EXPORT_SYMBOL net/wireless/cfg80211 0xa2ab3555 cfg80211_notify_new_peer_candidate -EXPORT_SYMBOL net/wireless/cfg80211 0xa41eaafe cfg80211_sched_scan_results -EXPORT_SYMBOL net/wireless/cfg80211 0xa5985f50 ieee80211_get_num_supported_channels -EXPORT_SYMBOL net/wireless/cfg80211 0xac582267 cfg80211_cqm_txe_notify -EXPORT_SYMBOL net/wireless/cfg80211 0xaece5672 cfg80211_tx_mlme_mgmt -EXPORT_SYMBOL net/wireless/cfg80211 0xaedb2d50 cfg80211_reg_can_beacon -EXPORT_SYMBOL net/wireless/cfg80211 0xb0e320b7 ieee80211_get_channel_khz -EXPORT_SYMBOL net/wireless/cfg80211 0xb302ecb3 cfg80211_report_wowlan_wakeup -EXPORT_SYMBOL net/wireless/cfg80211 0xb73aafb1 ieee80211_chandef_to_operating_class -EXPORT_SYMBOL net/wireless/cfg80211 0xb73be2e0 wiphy_free -EXPORT_SYMBOL net/wireless/cfg80211 0xbfec5737 cfg80211_tx_mgmt_expired -EXPORT_SYMBOL net/wireless/cfg80211 0xc17da1c5 wiphy_apply_custom_regulatory -EXPORT_SYMBOL net/wireless/cfg80211 0xc1b99792 ieee80211_channel_to_freq_khz -EXPORT_SYMBOL net/wireless/cfg80211 0xc5dcacef ieee80211_operating_class_to_band -EXPORT_SYMBOL net/wireless/cfg80211 0xc86378d7 cfg80211_ch_switch_notify -EXPORT_SYMBOL net/wireless/cfg80211 0xc889ed8c cfg80211_inform_bss_frame_data -EXPORT_SYMBOL net/wireless/cfg80211 0xc9057cea cfg80211_ibss_joined -EXPORT_SYMBOL net/wireless/cfg80211 0xcc1a7c48 cfg80211_is_element_inherited -EXPORT_SYMBOL net/wireless/cfg80211 0xcd73164a cfg80211_pmksa_candidate_notify -EXPORT_SYMBOL net/wireless/cfg80211 0xcdff3fcb cfg80211_rx_mlme_mgmt -EXPORT_SYMBOL net/wireless/cfg80211 0xce39a949 cfg80211_reg_can_beacon_relax -EXPORT_SYMBOL net/wireless/cfg80211 0xcea924af ieee80211_amsdu_to_8023s -EXPORT_SYMBOL net/wireless/cfg80211 0xd0f2a658 cfg80211_classify8021d -EXPORT_SYMBOL net/wireless/cfg80211 0xd15fb0b9 cfg80211_rx_mgmt_khz -EXPORT_SYMBOL net/wireless/cfg80211 0xd3c8f3ed regulatory_hint -EXPORT_SYMBOL net/wireless/cfg80211 0xd3ca87b0 __cfg80211_alloc_reply_skb -EXPORT_SYMBOL net/wireless/cfg80211 0xd3e8484e __cfg80211_send_event_skb -EXPORT_SYMBOL net/wireless/cfg80211 0xd56d55f3 ieee80211_get_mesh_hdrlen -EXPORT_SYMBOL net/wireless/cfg80211 0xd5e95c53 cfg80211_get_bss -EXPORT_SYMBOL net/wireless/cfg80211 0xd6f69365 cfg80211_unlink_bss -EXPORT_SYMBOL net/wireless/cfg80211 0xd89a8878 cfg80211_mgmt_tx_status -EXPORT_SYMBOL net/wireless/cfg80211 0xdba126c1 reg_initiator_name -EXPORT_SYMBOL net/wireless/cfg80211 0xde70f400 cfg80211_connect_done -EXPORT_SYMBOL net/wireless/cfg80211 0xdf9805ec cfg80211_conn_failed -EXPORT_SYMBOL net/wireless/cfg80211 0xdfd45e54 cfg80211_cqm_beacon_loss_notify -EXPORT_SYMBOL net/wireless/cfg80211 0xe033f24a cfg80211_bss_flush -EXPORT_SYMBOL net/wireless/cfg80211 0xe0829e09 cfg80211_inform_bss_data -EXPORT_SYMBOL net/wireless/cfg80211 0xe0d7374d get_wiphy_regdom -EXPORT_SYMBOL net/wireless/cfg80211 0xe196256c cfg80211_update_owe_info_event -EXPORT_SYMBOL net/wireless/cfg80211 0xe25b57b3 cfg80211_control_port_tx_status -EXPORT_SYMBOL net/wireless/cfg80211 0xe334e6df cfg80211_sinfo_alloc_tid_stats -EXPORT_SYMBOL net/wireless/cfg80211 0xe4a33fa5 cfg80211_rx_unexpected_4addr_frame -EXPORT_SYMBOL net/wireless/cfg80211 0xe55cf67e cfg80211_ref_bss -EXPORT_SYMBOL net/wireless/cfg80211 0xe6f64302 regulatory_pre_cac_allowed -EXPORT_SYMBOL net/wireless/cfg80211 0xed9c2c0f cfg80211_port_authorized -EXPORT_SYMBOL net/wireless/cfg80211 0xef265f27 cfg80211_chandef_create -EXPORT_SYMBOL net/wireless/cfg80211 0xf5596d89 cfg80211_get_p2p_attr -EXPORT_SYMBOL net/wireless/cfg80211 0xf5eb68eb cfg80211_external_auth_request -EXPORT_SYMBOL net/wireless/cfg80211 0xf9adaf15 regulatory_set_wiphy_regd_sync -EXPORT_SYMBOL net/wireless/cfg80211 0xfb63f3ba cfg80211_cqm_pktloss_notify -EXPORT_SYMBOL net/wireless/cfg80211 0xfe520117 wiphy_new_nm -EXPORT_SYMBOL net/wireless/cfg80211 0xff7d3bef cfg80211_crit_proto_stopped -EXPORT_SYMBOL net/wireless/lib80211 0x124c66e2 lib80211_crypt_info_free -EXPORT_SYMBOL net/wireless/lib80211 0x1925b0e4 lib80211_crypt_info_init -EXPORT_SYMBOL net/wireless/lib80211 0x8a0f9d53 lib80211_get_crypto_ops -EXPORT_SYMBOL net/wireless/lib80211 0x99960eb2 lib80211_unregister_crypto_ops -EXPORT_SYMBOL net/wireless/lib80211 0xc2b25085 lib80211_crypt_delayed_deinit -EXPORT_SYMBOL net/wireless/lib80211 0xcfe24cb0 lib80211_register_crypto_ops -EXPORT_SYMBOL sound/ac97_bus 0x6b81a6f4 ac97_bus_type -EXPORT_SYMBOL sound/core/oss/snd-mixer-oss 0x6737564f snd_mixer_oss_ioctl_card -EXPORT_SYMBOL sound/core/seq/snd-seq 0x0e66ec3c snd_seq_event_port_attach -EXPORT_SYMBOL sound/core/seq/snd-seq 0x1a724fcc snd_seq_kernel_client_ctl -EXPORT_SYMBOL sound/core/seq/snd-seq 0x2c3e5fd5 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 0x6e0af152 snd_seq_kernel_client_enqueue -EXPORT_SYMBOL sound/core/seq/snd-seq 0x7ac2f329 snd_seq_expand_var_event -EXPORT_SYMBOL sound/core/seq/snd-seq 0x7b8699eb snd_seq_event_port_detach -EXPORT_SYMBOL sound/core/seq/snd-seq 0xb308ee09 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-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 0x0128d29f snd_midi_event_new -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x2076b5c1 snd_midi_event_reset_decode -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x5e0f1c4b snd_midi_event_decode -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x9f5b3920 snd_midi_event_free -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0xbaa87189 snd_midi_event_reset_encode -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0xc33c3531 snd_midi_event_no_status -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0xfed2a4a5 snd_midi_event_encode_byte -EXPORT_SYMBOL sound/core/seq/snd-seq-virmidi 0x0ff728b2 snd_virmidi_new -EXPORT_SYMBOL sound/core/snd 0x07257063 snd_ctl_unregister_ioctl -EXPORT_SYMBOL sound/core/snd 0x12c15c91 snd_ctl_register_ioctl_compat -EXPORT_SYMBOL sound/core/snd 0x12f33f6c snd_jack_report -EXPORT_SYMBOL sound/core/snd 0x149482dd snd_card_new -EXPORT_SYMBOL sound/core/snd 0x16618498 snd_ctl_register_ioctl -EXPORT_SYMBOL sound/core/snd 0x18b7ad9b snd_ctl_new1 -EXPORT_SYMBOL sound/core/snd 0x198788b4 snd_lookup_oss_minor_data -EXPORT_SYMBOL sound/core/snd 0x230e3556 snd_unregister_oss_device -EXPORT_SYMBOL sound/core/snd 0x23505a7b snd_jack_set_key -EXPORT_SYMBOL sound/core/snd 0x24a94b26 snd_info_get_line -EXPORT_SYMBOL sound/core/snd 0x25f6e520 snd_info_create_module_entry -EXPORT_SYMBOL sound/core/snd 0x2a5309c6 snd_ctl_notify -EXPORT_SYMBOL sound/core/snd 0x2aef7d4b snd_card_set_id -EXPORT_SYMBOL sound/core/snd 0x342a2354 copy_to_user_fromio -EXPORT_SYMBOL sound/core/snd 0x35eab52b _snd_ctl_add_follower -EXPORT_SYMBOL sound/core/snd 0x3971b4df snd_ecards_limit -EXPORT_SYMBOL sound/core/snd 0x3aad6575 snd_ctl_free_one -EXPORT_SYMBOL sound/core/snd 0x3bf798d2 snd_register_oss_device -EXPORT_SYMBOL sound/core/snd 0x3cf79a58 snd_device_new -EXPORT_SYMBOL sound/core/snd 0x450fba98 snd_unregister_device -EXPORT_SYMBOL sound/core/snd 0x479350c6 snd_card_free_when_closed -EXPORT_SYMBOL sound/core/snd 0x49d6a03c snd_card_file_add -EXPORT_SYMBOL sound/core/snd 0x4a3ea5c0 snd_request_card -EXPORT_SYMBOL sound/core/snd 0x4ef86e34 snd_ctl_notify_one -EXPORT_SYMBOL sound/core/snd 0x52db2671 snd_ctl_remove -EXPORT_SYMBOL sound/core/snd 0x5836b369 snd_ctl_remove_id -EXPORT_SYMBOL sound/core/snd 0x5a8d21ed snd_device_free -EXPORT_SYMBOL sound/core/snd 0x5ed1ae48 snd_info_register -EXPORT_SYMBOL sound/core/snd 0x63ae0e3e snd_ctl_replace -EXPORT_SYMBOL sound/core/snd 0x6c10b0d4 snd_card_file_remove -EXPORT_SYMBOL sound/core/snd 0x73076315 snd_pci_quirk_lookup_id -EXPORT_SYMBOL sound/core/snd 0x73b2f601 snd_pci_quirk_lookup -EXPORT_SYMBOL sound/core/snd 0x7606d2c0 snd_ctl_find_numid -EXPORT_SYMBOL sound/core/snd 0x79d28d78 snd_ctl_rename_id -EXPORT_SYMBOL sound/core/snd 0x7e31329b snd_ctl_make_virtual_master -EXPORT_SYMBOL sound/core/snd 0x7e371c8d snd_mixer_oss_notify_callback -EXPORT_SYMBOL sound/core/snd 0x84a2ddf9 snd_jack_new -EXPORT_SYMBOL sound/core/snd 0x857afebd snd_ctl_add -EXPORT_SYMBOL sound/core/snd 0x87e0104c snd_card_disconnect -EXPORT_SYMBOL sound/core/snd 0x891e06be snd_card_free -EXPORT_SYMBOL sound/core/snd 0x8ae4a934 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 0x8ff6269c snd_info_create_card_entry -EXPORT_SYMBOL sound/core/snd 0x99d0324b snd_ctl_boolean_mono_info -EXPORT_SYMBOL sound/core/snd 0x9b30e697 snd_component_add -EXPORT_SYMBOL sound/core/snd 0x9e6d79f8 snd_info_get_str -EXPORT_SYMBOL sound/core/snd 0xa3827a29 snd_ctl_boolean_stereo_info -EXPORT_SYMBOL sound/core/snd 0xadd380ef snd_power_wait -EXPORT_SYMBOL sound/core/snd 0xb2e5ae4a snd_lookup_minor_data -EXPORT_SYMBOL sound/core/snd 0xbf6da7ce snd_ctl_unregister_ioctl_compat -EXPORT_SYMBOL sound/core/snd 0xc0089208 snd_device_register -EXPORT_SYMBOL sound/core/snd 0xc5a6d10b release_and_free_resource -EXPORT_SYMBOL sound/core/snd 0xc8ac088a snd_register_device -EXPORT_SYMBOL sound/core/snd 0xcc6a729f snd_ctl_enum_info -EXPORT_SYMBOL sound/core/snd 0xd48a6339 snd_jack_set_parent -EXPORT_SYMBOL sound/core/snd 0xda747b06 snd_info_free_entry -EXPORT_SYMBOL sound/core/snd 0xe52efd97 snd_seq_root -EXPORT_SYMBOL sound/core/snd 0xed17601f snd_jack_add_new_kctl -EXPORT_SYMBOL sound/core/snd 0xf5440c92 snd_card_register -EXPORT_SYMBOL sound/core/snd 0xfffd89db copy_from_user_toio -EXPORT_SYMBOL sound/core/snd-compress 0x217b8502 snd_compr_malloc_pages -EXPORT_SYMBOL sound/core/snd-compress 0x9cca3cef snd_compr_free_pages -EXPORT_SYMBOL sound/core/snd-hwdep 0xaeb50af6 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 0x11eba48e snd_pcm_create_iec958_consumer_hw_params -EXPORT_SYMBOL sound/core/snd-pcm 0x1724ec1e snd_pcm_lib_preallocate_free_for_all -EXPORT_SYMBOL sound/core/snd-pcm 0x1b1b0799 snd_pcm_create_iec958_consumer -EXPORT_SYMBOL sound/core/snd-pcm 0x1d027e4b snd_pcm_format_signed -EXPORT_SYMBOL sound/core/snd-pcm 0x20911e26 snd_pcm_hw_constraint_minmax -EXPORT_SYMBOL sound/core/snd-pcm 0x27d3d900 snd_pcm_lib_free_vmalloc_buffer -EXPORT_SYMBOL sound/core/snd-pcm 0x282852e8 snd_pcm_hw_param_last -EXPORT_SYMBOL sound/core/snd-pcm 0x2a54edd2 snd_pcm_hw_param_first -EXPORT_SYMBOL sound/core/snd-pcm 0x2c04a861 __snd_pcm_lib_xfer -EXPORT_SYMBOL sound/core/snd-pcm 0x2f702dfe snd_pcm_stop -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 0x3c653c8b snd_pcm_lib_ioctl -EXPORT_SYMBOL sound/core/snd-pcm 0x464ec814 snd_pcm_hw_rule_noresample -EXPORT_SYMBOL sound/core/snd-pcm 0x4f157847 snd_pcm_lib_preallocate_pages -EXPORT_SYMBOL sound/core/snd-pcm 0x4f816e9b snd_pcm_format_big_endian -EXPORT_SYMBOL sound/core/snd-pcm 0x503bd137 snd_interval_ranges -EXPORT_SYMBOL sound/core/snd-pcm 0x52e3e4a5 snd_pcm_hw_param_value -EXPORT_SYMBOL sound/core/snd-pcm 0x5e2b0a32 snd_pcm_set_sync -EXPORT_SYMBOL sound/core/snd-pcm 0x5e7f4920 snd_pcm_format_set_silence -EXPORT_SYMBOL sound/core/snd-pcm 0x6467ba48 snd_dma_buffer_mmap -EXPORT_SYMBOL sound/core/snd-pcm 0x650f8603 snd_pcm_format_silence_64 -EXPORT_SYMBOL sound/core/snd-pcm 0x651440db snd_pcm_new -EXPORT_SYMBOL sound/core/snd-pcm 0x689e5437 snd_pcm_lib_free_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 0x6b69782e snd_pcm_release_substream -EXPORT_SYMBOL sound/core/snd-pcm 0x6ef8fcd8 snd_pcm_format_linear -EXPORT_SYMBOL sound/core/snd-pcm 0x6f385207 snd_pcm_hw_constraint_msbits -EXPORT_SYMBOL sound/core/snd-pcm 0x7131a4f3 snd_sgbuf_get_page -EXPORT_SYMBOL sound/core/snd-pcm 0x7357a881 snd_sgbuf_get_chunk_size -EXPORT_SYMBOL sound/core/snd-pcm 0x73a0f1b6 snd_pcm_lib_preallocate_pages_for_all -EXPORT_SYMBOL sound/core/snd-pcm 0x7f59f44c snd_pcm_hw_constraint_mask64 -EXPORT_SYMBOL sound/core/snd-pcm 0x834db7e9 snd_pcm_set_ops -EXPORT_SYMBOL sound/core/snd-pcm 0x834dc955 snd_pcm_format_size -EXPORT_SYMBOL sound/core/snd-pcm 0x87b3cccd snd_pcm_hw_constraint_ranges -EXPORT_SYMBOL sound/core/snd-pcm 0x8a10c0da snd_pcm_hw_rule_add -EXPORT_SYMBOL sound/core/snd-pcm 0x8fd44b6a snd_pcm_hw_constraint_ratnums -EXPORT_SYMBOL sound/core/snd-pcm 0x932d8572 snd_pcm_period_elapsed -EXPORT_SYMBOL sound/core/snd-pcm 0x94098ff8 snd_interval_list -EXPORT_SYMBOL sound/core/snd-pcm 0x9bc85825 snd_pcm_kernel_ioctl -EXPORT_SYMBOL sound/core/snd-pcm 0x9d9a3fa1 snd_pcm_hw_constraint_step -EXPORT_SYMBOL sound/core/snd-pcm 0xa099746f snd_pcm_set_managed_buffer_all -EXPORT_SYMBOL sound/core/snd-pcm 0xa4c466d5 snd_pcm_mmap_data -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 0xb19b92ce snd_dma_free_pages -EXPORT_SYMBOL sound/core/snd-pcm 0xb9638db4 snd_pcm_rate_to_rate_bit -EXPORT_SYMBOL sound/core/snd-pcm 0xbbfdbca0 snd_pcm_lib_malloc_pages -EXPORT_SYMBOL sound/core/snd-pcm 0xc08b9920 _snd_pcm_lib_alloc_vmalloc_buffer -EXPORT_SYMBOL sound/core/snd-pcm 0xc1eb09bd snd_sgbuf_get_addr -EXPORT_SYMBOL sound/core/snd-pcm 0xc406ed4d snd_pcm_lib_get_vmalloc_page -EXPORT_SYMBOL sound/core/snd-pcm 0xc5fc161b snd_pcm_new_stream -EXPORT_SYMBOL sound/core/snd-pcm 0xccd7ec05 snd_pcm_set_managed_buffer -EXPORT_SYMBOL sound/core/snd-pcm 0xcdac64c0 snd_pcm_open_substream -EXPORT_SYMBOL sound/core/snd-pcm 0xcfd22a09 snd_pcm_period_elapsed_under_stream_lock -EXPORT_SYMBOL sound/core/snd-pcm 0xd46e1b7e snd_pcm_suspend_all -EXPORT_SYMBOL sound/core/snd-pcm 0xd77aeccf snd_pcm_hw_constraint_list -EXPORT_SYMBOL sound/core/snd-pcm 0xd8d3e995 snd_pcm_hw_constraint_pow2 -EXPORT_SYMBOL sound/core/snd-pcm 0xdbb84be3 snd_pcm_hw_constraint_integer -EXPORT_SYMBOL sound/core/snd-pcm 0xdc4fff62 snd_pcm_new_internal -EXPORT_SYMBOL sound/core/snd-pcm 0xe164ba14 snd_dma_alloc_pages -EXPORT_SYMBOL sound/core/snd-pcm 0xe1a56ca0 snd_dma_alloc_pages_fallback -EXPORT_SYMBOL sound/core/snd-pcm 0xe56a9336 snd_pcm_format_width -EXPORT_SYMBOL sound/core/snd-pcm 0xf06591bf snd_pcm_hw_refine -EXPORT_SYMBOL sound/core/snd-pcm 0xf5870987 snd_pcm_hw_constraint_ratdens -EXPORT_SYMBOL sound/core/snd-pcm 0xff6104d0 snd_pcm_rate_bit_to_rate -EXPORT_SYMBOL sound/core/snd-rawmidi 0x03e862e5 snd_rawmidi_info_select -EXPORT_SYMBOL sound/core/snd-rawmidi 0x0d6c3efe snd_rawmidi_output_params -EXPORT_SYMBOL sound/core/snd-rawmidi 0x2b3a8bd3 snd_rawmidi_transmit_ack -EXPORT_SYMBOL sound/core/snd-rawmidi 0x3e1932ee snd_rawmidi_new -EXPORT_SYMBOL sound/core/snd-rawmidi 0x54eb5fed snd_rawmidi_receive -EXPORT_SYMBOL sound/core/snd-rawmidi 0x68df8b32 __snd_rawmidi_transmit_ack -EXPORT_SYMBOL sound/core/snd-rawmidi 0x6b118e51 __snd_rawmidi_transmit_peek -EXPORT_SYMBOL sound/core/snd-rawmidi 0x6d36b891 snd_rawmidi_transmit -EXPORT_SYMBOL sound/core/snd-rawmidi 0x709861a5 snd_rawmidi_proceed -EXPORT_SYMBOL sound/core/snd-rawmidi 0x771f7e07 snd_rawmidi_transmit_peek -EXPORT_SYMBOL sound/core/snd-rawmidi 0x9790159e snd_rawmidi_kernel_open -EXPORT_SYMBOL sound/core/snd-rawmidi 0xa174096c snd_rawmidi_input_params -EXPORT_SYMBOL sound/core/snd-rawmidi 0xac7088da snd_rawmidi_kernel_release -EXPORT_SYMBOL sound/core/snd-rawmidi 0xae77c31c snd_rawmidi_transmit_empty -EXPORT_SYMBOL sound/core/snd-rawmidi 0xbc7209f1 snd_rawmidi_set_ops -EXPORT_SYMBOL sound/core/snd-rawmidi 0xc0dc4b42 snd_rawmidi_kernel_write -EXPORT_SYMBOL sound/core/snd-rawmidi 0xc133d95f snd_rawmidi_drop_output -EXPORT_SYMBOL sound/core/snd-rawmidi 0xde376eca snd_rawmidi_drain_input -EXPORT_SYMBOL sound/core/snd-rawmidi 0xe1183dd9 snd_rawmidi_drain_output -EXPORT_SYMBOL sound/core/snd-rawmidi 0xed1fd387 snd_rawmidi_kernel_read -EXPORT_SYMBOL sound/core/snd-seq-device 0x091def1c snd_seq_autoload_exit -EXPORT_SYMBOL sound/core/snd-seq-device 0x3333184d 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 0x0049f547 snd_timer_interrupt -EXPORT_SYMBOL sound/core/snd-timer 0x0e55b4ea snd_timer_global_new -EXPORT_SYMBOL sound/core/snd-timer 0x3c5f456d snd_timer_pause -EXPORT_SYMBOL sound/core/snd-timer 0x5df105af snd_timer_new -EXPORT_SYMBOL sound/core/snd-timer 0x6aceed20 snd_timer_global_free -EXPORT_SYMBOL sound/core/snd-timer 0x6c616d56 snd_timer_start -EXPORT_SYMBOL sound/core/snd-timer 0x83a14d6a snd_timer_continue -EXPORT_SYMBOL sound/core/snd-timer 0x865b41c9 snd_timer_stop -EXPORT_SYMBOL sound/core/snd-timer 0x86eec95a snd_timer_close -EXPORT_SYMBOL sound/core/snd-timer 0x8cc6ec4f snd_timer_instance_free -EXPORT_SYMBOL sound/core/snd-timer 0xaf68defd snd_timer_notify -EXPORT_SYMBOL sound/core/snd-timer 0xc7cfa601 snd_timer_global_register -EXPORT_SYMBOL sound/core/snd-timer 0xcf259b4a snd_timer_open -EXPORT_SYMBOL sound/core/snd-timer 0xd1d19fec snd_timer_instance_new -EXPORT_SYMBOL sound/core/snd-timer 0xf6e1c5d0 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 0xc0fec227 snd_mpu401_uart_interrupt -EXPORT_SYMBOL sound/drivers/mpu401/snd-mpu401-uart 0xdd9bdf6c snd_mpu401_uart_new -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x05060a19 snd_opl3_regmap -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x14fd9454 snd_opl3_new -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x222d02cf snd_opl3_interrupt -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x6ba2830f snd_opl3_reset -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x7e3caca7 snd_opl3_create -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x8ea74c05 snd_opl3_init -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xaee4c368 snd_opl3_hwdep_new -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xb887daff snd_opl3_find_patch -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xe457f046 snd_opl3_timer_new -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xfbd50f0b snd_opl3_load_patch -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x0885868e snd_vx_suspend -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x226138b0 snd_vx_threaded_irq_handler -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x2326337d snd_vx_create -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x3a644802 snd_vx_setup_firmware -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x67998f6d snd_vx_resume -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x6c49aa6a snd_vx_dsp_boot -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xbcd7843e snd_vx_dsp_load -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xc0d03e12 snd_vx_free_firmware -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xc8944733 snd_vx_check_reg_bit -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xdcf1f237 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 0x07abcb91 cmp_connection_establish -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x1066df0e fcp_avc_transaction -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x10f32798 amdtp_stream_set_parameters -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x138c0702 amdtp_stream_get_max_payload -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x1616882a fw_iso_resources_free -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x1f7d7466 amdtp_stream_add_pcm_hw_constraints -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x20254e45 amdtp_syt_intervals -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x2699ce14 fw_iso_resources_update -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x2cf2313f avc_general_set_sig_fmt -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x2f936277 iso_packets_buffer_destroy -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x3590b68b cmp_connection_init -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x38530c2e cmp_connection_release -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x48940fd1 amdtp_stream_destroy -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x53ca18e8 amdtp_rate_table -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x6297e12b fw_iso_resources_destroy -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x6a19d02d fw_iso_resources_allocate -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x7ef86919 iso_packets_buffer_init -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x9336f523 cmp_connection_check_used -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x97e083bd cmp_connection_reserve -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xa6f30505 amdtp_stream_update -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xab2045cb amdtp_stream_init -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xaf06824e avc_general_get_plug_info -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xb8d0dca1 avc_general_get_sig_fmt -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xb93f4a4d fw_iso_resources_init -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xcdbbb315 cmp_connection_update -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xdaeaf976 amdtp_stream_pcm_abort -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xde446cf2 snd_fw_transaction -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xe930d00c fcp_bus_reset -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xe93bf44c cmp_connection_break -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xf2528bd6 amdtp_stream_pcm_prepare -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xf630cf72 cmp_connection_destroy -EXPORT_SYMBOL sound/i2c/other/snd-ak4113 0x300eaf2a snd_ak4113_suspend -EXPORT_SYMBOL sound/i2c/other/snd-ak4113 0xee7d9d99 snd_ak4113_resume -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x3c7ead76 snd_ak4114_create -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x62ca7bc5 snd_ak4114_check_rate_and_errors -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x8ec256e9 snd_ak4114_build -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x8fd30c2b snd_ak4114_reinit -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xdf5e00aa snd_ak4114_resume -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xead0b83c snd_ak4114_external_rate -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xeef3a12e snd_ak4114_reg_write -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xf1c0e61e snd_ak4114_suspend -EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x4d4e9268 snd_akm4xxx_write -EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x5a859d59 snd_akm4xxx_reset -EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0xa8d2eb17 snd_akm4xxx_init -EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0xb989172b snd_akm4xxx_build_controls -EXPORT_SYMBOL sound/i2c/other/snd-pt2258 0x15669620 snd_pt2258_build_controls -EXPORT_SYMBOL sound/i2c/other/snd-pt2258 0x824e18a6 snd_pt2258_reset -EXPORT_SYMBOL sound/i2c/snd-cs8427 0x61140dd0 snd_cs8427_create -EXPORT_SYMBOL sound/i2c/snd-cs8427 0x7a54f8e5 snd_cs8427_iec958_pcm -EXPORT_SYMBOL sound/i2c/snd-cs8427 0xaea653fd snd_cs8427_iec958_build -EXPORT_SYMBOL sound/i2c/snd-cs8427 0xdd402818 snd_cs8427_reg_write -EXPORT_SYMBOL sound/i2c/snd-cs8427 0xeb0f0cb5 snd_cs8427_init -EXPORT_SYMBOL sound/i2c/snd-cs8427 0xfaca70b4 snd_cs8427_iec958_active -EXPORT_SYMBOL sound/i2c/snd-i2c 0x3bd270b5 snd_i2c_bus_create -EXPORT_SYMBOL sound/i2c/snd-i2c 0x54414cf7 snd_i2c_sendbytes -EXPORT_SYMBOL sound/i2c/snd-i2c 0xc34c49ca snd_i2c_probeaddr -EXPORT_SYMBOL sound/i2c/snd-i2c 0xc6cee420 snd_i2c_readbytes -EXPORT_SYMBOL sound/i2c/snd-i2c 0xd066f663 snd_i2c_device_create -EXPORT_SYMBOL sound/i2c/snd-i2c 0xe3545962 snd_i2c_device_free -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x0a2809b8 snd_ac97_write_cache -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x175020b3 snd_ac97_set_rate -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x1f1fcd63 snd_ac97_write -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x24d78ff9 snd_ac97_update -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x337d38f9 snd_ac97_pcm_assign -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x4831354a snd_ac97_read -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x495e53e6 snd_ac97_pcm_open -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x6829bb7d snd_ac97_update_power -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x688ee743 snd_ac97_pcm_double_rate_rules -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x7fb4568c snd_ac97_suspend -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x9dd493ec snd_ac97_bus -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xaf645efb snd_ac97_tune_hardware -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xb1d81389 snd_ac97_get_short_name -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xb38d51c1 snd_ac97_mixer -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xba059060 snd_ac97_resume -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xc1d75373 snd_ac97_pcm_close -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xce650f2c snd_ac97_update_bits -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x296b811b snd_emu10k1_synth_free -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x42412ba2 snd_emu10k1_memblk_map -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x43de7476 snd_emu10k1_synth_alloc -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x5f45412f snd_emu10k1_voice_alloc -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x6c2e587c snd_emu10k1_voice_free -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x6e2dce77 snd_emu10k1_ptr_write -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xad2c1db8 snd_emu10k1_synth_copy_from_user -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xae836314 snd_emu10k1_synth_bzero -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xe0684370 snd_emu10k1_ptr_read -EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0x7efdfda4 snd_ice1712_akm4xxx_build_controls -EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0x8702a311 snd_ice1712_akm4xxx_init -EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0xb4500ba4 snd_ice1712_akm4xxx_free -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x01f18159 oxygen_read8 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x16003ef2 oxygen_update_dac_routing -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x28666db0 oxygen_read16 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x2a96e3d4 oxygen_write_spi -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x381c1a61 oxygen_pci_pm -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x3a039ed3 oxygen_write_uart -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x44f30107 oxygen_write32_masked -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x4820b4c6 oxygen_write8 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x561ae44e oxygen_read_ac97 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x669988a4 oxygen_pci_probe -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x82804582 oxygen_write_ac97 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x88091443 oxygen_write_ac97_masked -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x897fbad8 oxygen_write16_masked -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x8d41be0f oxygen_write8_masked -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x99adaf1c oxygen_reset_uart -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xaa3a968e oxygen_write32 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xc0b3444c oxygen_write_i2c -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xc187c1b7 oxygen_read32 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xdce63bfd oxygen_write16 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xef364e51 oxygen_pci_shutdown -EXPORT_SYMBOL sound/pci/trident/snd-trident 0x14e27da9 snd_trident_write_voice_regs -EXPORT_SYMBOL sound/pci/trident/snd-trident 0x4a2fd4a6 snd_trident_start_voice -EXPORT_SYMBOL sound/pci/trident/snd-trident 0x9b9ba0b8 snd_trident_alloc_voice -EXPORT_SYMBOL sound/pci/trident/snd-trident 0xbfdb5cad snd_trident_stop_voice -EXPORT_SYMBOL sound/pci/trident/snd-trident 0xf7409ee3 snd_trident_free_voice -EXPORT_SYMBOL sound/soc/amd/acp_audio_dma 0xea74f232 bt_uart_enable -EXPORT_SYMBOL sound/soc/codecs/snd-soc-adau1372 0x4c32742d adau1372_probe -EXPORT_SYMBOL sound/soc/codecs/snd-soc-lpass-wsa-macro 0x0ba96f30 wsa_macro_set_spkr_mode -EXPORT_SYMBOL sound/soc/codecs/snd-soc-pcm3060 0x2538f350 pcm3060_probe -EXPORT_SYMBOL sound/soc/codecs/snd-soc-pcm3060 0x4945e997 pcm3060_regmap -EXPORT_SYMBOL sound/soc/codecs/snd-soc-rt715 0xed2acb24 hda_to_sdw -EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic23 0x407e8815 tlv320aic23_regmap -EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic23 0x7af803e0 tlv320aic23_probe -EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic32x4 0x662dafcc aic32x4_remove -EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic32x4 0x90a2c188 aic32x4_probe -EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic32x4 0xb45b155d aic32x4_regmap_config -EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic3x 0x085ba1e1 aic3x_probe -EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic3x 0x12b0b5ad 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 0x9f714d63 wcd_mbhc_init -EXPORT_SYMBOL sound/soc/codecs/snd-soc-wcd-mbhc 0xa5758a49 wcd_mbhc_get_hph_type -EXPORT_SYMBOL sound/soc/codecs/snd-soc-wcd-mbhc 0xd094df47 wcd_mbhc_deinit -EXPORT_SYMBOL sound/soc/codecs/snd-soc-wcd-mbhc 0xe2beca26 wcd_mbhc_stop -EXPORT_SYMBOL sound/soc/codecs/snd-soc-wcd-mbhc 0xfafb02bf wcd_mbhc_start -EXPORT_SYMBOL sound/soc/codecs/snd-soc-wcd-mbhc 0xff9a498f wcd_dt_parse_mbhc_data -EXPORT_SYMBOL sound/soc/mediatek/mt8192/snd-soc-mt8192-afe 0x4d8bfae5 mt8192_afe_gpio_request -EXPORT_SYMBOL sound/soc/mediatek/mt8192/snd-soc-mt8192-afe 0x5ecf2be8 mt8192_afe_gpio_init -EXPORT_SYMBOL sound/soc/qcom/qdsp6/q6afe 0xcd92446e q6afe_unvote_lpass_core_hw -EXPORT_SYMBOL sound/soc/qcom/qdsp6/q6afe 0xdec464ef q6afe_vote_lpass_core_hw -EXPORT_SYMBOL sound/soc/qcom/snd-soc-qcom-common 0x663d066e qcom_snd_parse_of -EXPORT_SYMBOL sound/soc/snd-soc-core 0x8d0e6464 snd_soc_alloc_ac97_component -EXPORT_SYMBOL sound/soc/sof/imx/imx-common 0x03fe7b32 imx8_dump -EXPORT_SYMBOL sound/soc/sof/imx/snd-sof-imx8 0x5dd99e76 sof_imx8_ops -EXPORT_SYMBOL sound/soc/sof/imx/snd-sof-imx8 0x7075b8dd sof_imx8x_ops -EXPORT_SYMBOL sound/soc/sof/imx/snd-sof-imx8m 0x9ebe23be sof_imx8m_ops -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x0296026a snd_sof_parse_module_memcpy -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x0750f045 snd_sof_pci_update_bits -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x077722b1 snd_sof_runtime_resume -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x0879e37a snd_sof_trace_notify_for_error -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x0b5b7f17 sof_dai_get_mclk -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x0da4ff9a snd_sof_pcm_period_elapsed -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x0fe69f78 snd_sof_ipc_init -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x169200d7 sof_io_read -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x1a1da97a snd_sof_complete -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x1d22a5ea sof_ipc_tx_message_no_pm -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x20443a2e sof_mailbox_read -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x224cc46c snd_sof_dsp_only_d0i3_compatible_stream_active -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x22c0ea71 snd_sof_dsp_update_bits64 -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x23789218 snd_sof_load_firmware_memcpy -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x245217f4 sof_dai_get_bclk -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x26194a15 snd_sof_ipc_free -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x294d954f snd_sof_init_trace -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x37bdd284 snd_sof_dsp_update_bits -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x39978fdc sof_fw_ready -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x415b0762 snd_sof_free_trace -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x520fd090 sof_machine_check -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x58a10ba3 sof_io_write64 -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x5b8fdf5e sof_pcm_dai_link_fixup -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x600f1845 sof_machine_unregister -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x60a9c4e9 sof_block_read -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x60dfce64 sof_block_write -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x6372a938 snd_sof_resume -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x6a8727cd sof_machine_register -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x6aac86e2 sof_mailbox_write -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x6c0cd434 snd_sof_prepare -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x719039ab snd_sof_release_trace -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x7e166213 snd_sof_run_firmware -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x7e71ed4f snd_sof_suspend -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x852849da snd_sof_fw_parse_ext_data -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x8730e2f5 snd_sof_ipc_reply -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x91c3c207 snd_sof_load_topology -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x92a6b528 snd_sof_dsp_mailbox_init -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x936a764d snd_sof_load_firmware_raw -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x9edd02df snd_sof_device_remove -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xa143ed6e snd_sof_ipc_valid -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xa9206f41 snd_sof_dsp_panic -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xac118177 snd_sof_ipc_stream_posn -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xb034287c snd_sof_runtime_idle -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xb2961d29 snd_sof_fw_unload -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xb6b4f85a sof_io_write -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xba800092 snd_sof_dsp_update_bits_unlocked -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xbc4fc6b5 snd_sof_device_probe -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xc0e592ac snd_sof_get_status -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xc119cb6d snd_sof_device_shutdown -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xc835afa9 sof_io_read64 -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xc90df49c snd_sof_ipc_msgs_rx -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xca3c2f62 snd_sof_handle_fw_exception -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xcfdc5f98 sof_ipc_tx_message -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xd0b95f39 snd_sof_create_page_table -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xd3dfc219 snd_sof_load_firmware -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xd6a33ff9 snd_sof_device_probe_completed -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xe75b4726 snd_sof_ipc_set_get_comp_data -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xea71d340 snd_sof_runtime_suspend -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xedbf8a59 snd_sof_dsp_update_bits64_unlocked -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xf28f2134 snd_sof_dsp_update_bits_forced -EXPORT_SYMBOL sound/soundcore 0x3030672f register_sound_special_device -EXPORT_SYMBOL sound/soundcore 0x7003ae0f sound_class -EXPORT_SYMBOL sound/soundcore 0x7afc9d8a unregister_sound_mixer -EXPORT_SYMBOL sound/soundcore 0x99620b7c register_sound_mixer -EXPORT_SYMBOL sound/soundcore 0x99c95fa5 unregister_sound_special -EXPORT_SYMBOL sound/soundcore 0xcd083b10 unregister_sound_dsp -EXPORT_SYMBOL sound/soundcore 0xdc3b0b45 register_sound_special -EXPORT_SYMBOL sound/soundcore 0xde2c451e register_sound_dsp -EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x09b18904 snd_emux_register -EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x1ce6a403 snd_emux_unlock_voice -EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x5a102efa 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 0xafb36a10 snd_emux_free -EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0xb1db8946 snd_emux_terminate_all -EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0xf78d65e7 snd_emux_lock_voice -EXPORT_SYMBOL sound/synth/snd-util-mem 0x026111ef __snd_util_mem_alloc -EXPORT_SYMBOL sound/synth/snd-util-mem 0x2705a2e5 snd_util_mem_alloc -EXPORT_SYMBOL sound/synth/snd-util-mem 0x37f8218a snd_util_memhdr_new -EXPORT_SYMBOL sound/synth/snd-util-mem 0x38d7e185 __snd_util_mem_free -EXPORT_SYMBOL sound/synth/snd-util-mem 0x7c7f361c __snd_util_memblk_new -EXPORT_SYMBOL sound/synth/snd-util-mem 0x86321144 snd_util_mem_avail -EXPORT_SYMBOL sound/synth/snd-util-mem 0x9f5bad38 snd_util_memhdr_free -EXPORT_SYMBOL sound/synth/snd-util-mem 0xcf38f9c6 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 0x92ee144c __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 0x00111e54 flow_rule_match_ip -EXPORT_SYMBOL vmlinux 0x00148653 vsnprintf -EXPORT_SYMBOL vmlinux 0x0017dab8 sk_stream_wait_connect -EXPORT_SYMBOL vmlinux 0x001c5054 skb_kill_datagram -EXPORT_SYMBOL vmlinux 0x002f4c08 skb_coalesce_rx_frag -EXPORT_SYMBOL vmlinux 0x0043c699 kernel_listen -EXPORT_SYMBOL vmlinux 0x00718094 __generic_file_write_iter -EXPORT_SYMBOL vmlinux 0x00a202c6 mmc_start_request -EXPORT_SYMBOL vmlinux 0x00a5707b of_graph_get_next_endpoint -EXPORT_SYMBOL vmlinux 0x00aa8f43 tcp_v4_conn_request -EXPORT_SYMBOL vmlinux 0x00ae13b1 radix_tree_iter_resume -EXPORT_SYMBOL vmlinux 0x00b4795c free_inode_nonrcu -EXPORT_SYMBOL vmlinux 0x00b4e615 posix_acl_equiv_mode -EXPORT_SYMBOL vmlinux 0x00c484d6 tcf_generic_walker -EXPORT_SYMBOL vmlinux 0x00d793b3 fs_context_for_reconfigure -EXPORT_SYMBOL vmlinux 0x00d7993d get_user_pages_unlocked -EXPORT_SYMBOL vmlinux 0x00d7e722 vme_lm_count -EXPORT_SYMBOL vmlinux 0x00d87531 xa_find -EXPORT_SYMBOL vmlinux 0x00ee83c7 device_get_mac_address -EXPORT_SYMBOL vmlinux 0x00effd59 scsi_host_lookup -EXPORT_SYMBOL vmlinux 0x00fb5c80 blk_post_runtime_suspend -EXPORT_SYMBOL vmlinux 0x01000e51 schedule -EXPORT_SYMBOL vmlinux 0x0100d40e rproc_get_by_child -EXPORT_SYMBOL vmlinux 0x010b7aea generic_pipe_buf_try_steal -EXPORT_SYMBOL vmlinux 0x011038a0 jbd2_journal_extend -EXPORT_SYMBOL vmlinux 0x01153a1c dquot_quotactl_sysfile_ops -EXPORT_SYMBOL vmlinux 0x011de037 mipi_dsi_turn_on_peripheral -EXPORT_SYMBOL vmlinux 0x012467be sget_fc -EXPORT_SYMBOL vmlinux 0x0129c4f8 par_io_data_set -EXPORT_SYMBOL vmlinux 0x012de2ea xudma_rchanrt_read -EXPORT_SYMBOL vmlinux 0x0144d952 blk_set_runtime_active -EXPORT_SYMBOL vmlinux 0x0145275d vga_client_register -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 0x015e2e8a phy_driver_unregister -EXPORT_SYMBOL vmlinux 0x0163a73a netdev_change_features -EXPORT_SYMBOL vmlinux 0x016cd595 __traceiter_dma_fence_signaled -EXPORT_SYMBOL vmlinux 0x01757935 rdmacg_register_device -EXPORT_SYMBOL vmlinux 0x017a085e pci_claim_resource -EXPORT_SYMBOL vmlinux 0x017b0412 mntput -EXPORT_SYMBOL vmlinux 0x017c75ac pci_scan_bus -EXPORT_SYMBOL vmlinux 0x017de3d5 nr_cpu_ids -EXPORT_SYMBOL vmlinux 0x017e4877 xfrm_state_alloc -EXPORT_SYMBOL vmlinux 0x018574a1 mb_cache_entry_delete -EXPORT_SYMBOL vmlinux 0x0188cd88 vme_alloc_consistent -EXPORT_SYMBOL vmlinux 0x019236c0 security_socket_socketpair -EXPORT_SYMBOL vmlinux 0x0192f01d fb_validate_mode -EXPORT_SYMBOL vmlinux 0x01957bd4 fscrypt_decrypt_block_inplace -EXPORT_SYMBOL vmlinux 0x0199c3bd ethtool_intersect_link_masks -EXPORT_SYMBOL vmlinux 0x019bbc5d mdio_device_create -EXPORT_SYMBOL vmlinux 0x01bf55fc paddr_vmcoreinfo_note -EXPORT_SYMBOL vmlinux 0x01c7356e tegra_dfll_unregister -EXPORT_SYMBOL vmlinux 0x01c851d6 lockref_mark_dead -EXPORT_SYMBOL vmlinux 0x01d33779 set_anon_super_fc -EXPORT_SYMBOL vmlinux 0x01da3f81 vm_map_pages_zero -EXPORT_SYMBOL vmlinux 0x01e95533 ppp_register_net_channel -EXPORT_SYMBOL vmlinux 0x01ec3e2a dquot_get_dqblk -EXPORT_SYMBOL vmlinux 0x0209f3a7 secure_ipv6_port_ephemeral -EXPORT_SYMBOL vmlinux 0x020dbf27 bitmap_alloc -EXPORT_SYMBOL vmlinux 0x0219063d generic_iommu_put_resv_regions -EXPORT_SYMBOL vmlinux 0x0224826d fget -EXPORT_SYMBOL vmlinux 0x02367cd8 crypto_sha512_update -EXPORT_SYMBOL vmlinux 0x0248efd3 kstrtobool_from_user -EXPORT_SYMBOL vmlinux 0x02672b53 sunxi_sram_claim -EXPORT_SYMBOL vmlinux 0x0271e429 inet_select_addr -EXPORT_SYMBOL vmlinux 0x0274dc2b netif_get_num_default_rss_queues -EXPORT_SYMBOL vmlinux 0x0279fd5a jbd2_fc_end_commit -EXPORT_SYMBOL vmlinux 0x02906dfd generic_set_encrypted_ci_d_ops -EXPORT_SYMBOL vmlinux 0x0296695f refcount_warn_saturate -EXPORT_SYMBOL vmlinux 0x029ea07a i2c_verify_client -EXPORT_SYMBOL vmlinux 0x02a37df3 sock_rfree -EXPORT_SYMBOL vmlinux 0x02b8ab42 sg_copy_to_buffer -EXPORT_SYMBOL vmlinux 0x02bf0014 ns_capable_noaudit -EXPORT_SYMBOL vmlinux 0x02c065f8 ucc_set_qe_mux_mii_mng -EXPORT_SYMBOL vmlinux 0x02c15257 jbd2__journal_restart -EXPORT_SYMBOL vmlinux 0x02d8c592 __xfrm_init_state -EXPORT_SYMBOL vmlinux 0x02e5b9ce load_nls -EXPORT_SYMBOL vmlinux 0x02eab328 inet_listen -EXPORT_SYMBOL vmlinux 0x02f4ef61 mdiobus_unregister -EXPORT_SYMBOL vmlinux 0x02f58d52 devfreq_update_target -EXPORT_SYMBOL vmlinux 0x0300661f __ip_queue_xmit -EXPORT_SYMBOL vmlinux 0x0300a115 param_ops_hexint -EXPORT_SYMBOL vmlinux 0x03169970 kernel_sendpage -EXPORT_SYMBOL vmlinux 0x0334795d icst307_s2div -EXPORT_SYMBOL vmlinux 0x0334da4e scsi_command_size_tbl -EXPORT_SYMBOL vmlinux 0x0345fb15 mmc_register_driver -EXPORT_SYMBOL vmlinux 0x0349726f tegra194_miscreg_mask_serror -EXPORT_SYMBOL vmlinux 0x0360d67f make_flow_keys_digest -EXPORT_SYMBOL vmlinux 0x0366307a console_suspend_enabled -EXPORT_SYMBOL vmlinux 0x037a0cba kfree -EXPORT_SYMBOL vmlinux 0x03815f35 ledtrig_disk_activity -EXPORT_SYMBOL vmlinux 0x0392eda3 pci_msix_vec_count -EXPORT_SYMBOL vmlinux 0x0397edd5 fb_edid_to_monspecs -EXPORT_SYMBOL vmlinux 0x03994ce7 __sk_mem_raise_allocated -EXPORT_SYMBOL vmlinux 0x03b14641 skb_udp_tunnel_segment -EXPORT_SYMBOL vmlinux 0x03b2c9e3 kmem_cache_alloc -EXPORT_SYMBOL vmlinux 0x03b88f24 lookup_positive_unlocked -EXPORT_SYMBOL vmlinux 0x03bf0e5a acpi_walk_resource_buffer -EXPORT_SYMBOL vmlinux 0x03c67805 mmc_wait_for_cmd -EXPORT_SYMBOL vmlinux 0x03e4ff61 sock_i_uid -EXPORT_SYMBOL vmlinux 0x03fd2571 vm_unmap_ram -EXPORT_SYMBOL vmlinux 0x04366da2 setup_new_exec -EXPORT_SYMBOL vmlinux 0x043ef0c7 remove_wait_queue -EXPORT_SYMBOL vmlinux 0x04482cdb __refrigerator -EXPORT_SYMBOL vmlinux 0x044cc9a4 ip_tunnel_header_ops -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 0x047a9157 pagevec_lookup_range_tag -EXPORT_SYMBOL vmlinux 0x0484c6c4 acpi_enter_sleep_state_prep -EXPORT_SYMBOL vmlinux 0x04863e28 hdmi_audio_infoframe_pack_only -EXPORT_SYMBOL vmlinux 0x049607fe pcim_iomap -EXPORT_SYMBOL vmlinux 0x049a29c8 inet_csk_destroy_sock -EXPORT_SYMBOL vmlinux 0x04a45135 rproc_resource_cleanup -EXPORT_SYMBOL vmlinux 0x04af7355 fman_reset_mac -EXPORT_SYMBOL vmlinux 0x04ba4187 genphy_write_mmd_unsupported -EXPORT_SYMBOL vmlinux 0x04d9bf4e blk_set_stacking_limits -EXPORT_SYMBOL vmlinux 0x04e17124 __skb_get_hash -EXPORT_SYMBOL vmlinux 0x04ea5d10 ksize -EXPORT_SYMBOL vmlinux 0x04fd9980 dma_fence_signal -EXPORT_SYMBOL vmlinux 0x050877b9 dmi_first_match -EXPORT_SYMBOL vmlinux 0x050f3375 vfs_getattr -EXPORT_SYMBOL vmlinux 0x0517e49f key_put -EXPORT_SYMBOL vmlinux 0x05240ee7 percpu_counter_batch -EXPORT_SYMBOL vmlinux 0x053a0e76 xfrm_policy_insert -EXPORT_SYMBOL vmlinux 0x053ea923 scsi_host_alloc -EXPORT_SYMBOL vmlinux 0x05421767 backlight_device_set_brightness -EXPORT_SYMBOL vmlinux 0x054496b4 schedule_timeout_interruptible -EXPORT_SYMBOL vmlinux 0x054b54f5 tcp_filter -EXPORT_SYMBOL vmlinux 0x055279ba fscrypt_free_bounce_page -EXPORT_SYMBOL vmlinux 0x055e77e8 jiffies_64 -EXPORT_SYMBOL vmlinux 0x05606056 dma_mmap_attrs -EXPORT_SYMBOL vmlinux 0x05694074 __xfrm_policy_check -EXPORT_SYMBOL vmlinux 0x05866c3b tcf_idr_cleanup -EXPORT_SYMBOL vmlinux 0x05895bd5 to_ndd -EXPORT_SYMBOL vmlinux 0x058f61f1 phy_support_sym_pause -EXPORT_SYMBOL vmlinux 0x05a6cb28 rtnl_create_link -EXPORT_SYMBOL vmlinux 0x05b01364 dquot_disable -EXPORT_SYMBOL vmlinux 0x05c7cc33 ww_mutex_lock -EXPORT_SYMBOL vmlinux 0x05db5777 of_mdiobus_phy_device_register -EXPORT_SYMBOL vmlinux 0x05de47a9 jbd2_journal_update_sb_errno -EXPORT_SYMBOL vmlinux 0x05e65fd2 proc_mkdir_mode -EXPORT_SYMBOL vmlinux 0x06011a18 jbd2_journal_get_create_access -EXPORT_SYMBOL vmlinux 0x060ae42e mr_rtm_dumproute -EXPORT_SYMBOL vmlinux 0x061651be strcat -EXPORT_SYMBOL vmlinux 0x061a63c8 inet_ioctl -EXPORT_SYMBOL vmlinux 0x0634100a bitmap_parselist_user -EXPORT_SYMBOL vmlinux 0x063ff6a1 is_bad_inode -EXPORT_SYMBOL vmlinux 0x0643d4c9 dev_change_flags -EXPORT_SYMBOL vmlinux 0x06485d95 blk_post_runtime_resume -EXPORT_SYMBOL vmlinux 0x064b4553 ppp_register_channel -EXPORT_SYMBOL vmlinux 0x06672494 inet_offloads -EXPORT_SYMBOL vmlinux 0x0668b595 _kstrtoul -EXPORT_SYMBOL vmlinux 0x066954c0 genphy_suspend -EXPORT_SYMBOL vmlinux 0x0698bbe9 sock_set_rcvbuf -EXPORT_SYMBOL vmlinux 0x06bd88b5 ucs2_strnlen -EXPORT_SYMBOL vmlinux 0x06cb0b3e __sock_i_ino -EXPORT_SYMBOL vmlinux 0x06e1f12f acpi_notifier_call_chain -EXPORT_SYMBOL vmlinux 0x06f6f262 seq_putc -EXPORT_SYMBOL vmlinux 0x0711edc8 xudma_dev_get_tisci_rm -EXPORT_SYMBOL vmlinux 0x072f901c vme_master_rmw -EXPORT_SYMBOL vmlinux 0x073f16e4 jbd2_journal_errno -EXPORT_SYMBOL vmlinux 0x07464ac4 sock_no_sendpage_locked -EXPORT_SYMBOL vmlinux 0x075c1fc2 tcp_simple_retransmit -EXPORT_SYMBOL vmlinux 0x0767522b locks_copy_lock -EXPORT_SYMBOL vmlinux 0x077170cc dev_pm_opp_register_notifier -EXPORT_SYMBOL vmlinux 0x07768f7f phy_attached_info_irq -EXPORT_SYMBOL vmlinux 0x0781ec97 logic_insl -EXPORT_SYMBOL vmlinux 0x0795a474 sock_set_reuseport -EXPORT_SYMBOL vmlinux 0x07a890c8 fb_alloc_cmap -EXPORT_SYMBOL vmlinux 0x07b86a20 sk_wait_data -EXPORT_SYMBOL vmlinux 0x07c28388 netdev_has_any_upper_dev -EXPORT_SYMBOL vmlinux 0x07c5dab9 tcf_classify -EXPORT_SYMBOL vmlinux 0x07cba58f crypto_sha256_finup -EXPORT_SYMBOL vmlinux 0x07cc4a5d printk_timed_ratelimit -EXPORT_SYMBOL vmlinux 0x07ce40a7 ps2_drain -EXPORT_SYMBOL vmlinux 0x07da3dd5 inode_io_list_del -EXPORT_SYMBOL vmlinux 0x07db17be qman_create_fq -EXPORT_SYMBOL vmlinux 0x07f01e6b kernel_sock_shutdown -EXPORT_SYMBOL vmlinux 0x07f57478 pci_unmap_iospace -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 0x08356f32 fman_sp_set_buf_pools_in_asc_order_of_buf_sizes -EXPORT_SYMBOL vmlinux 0x083eb21c rfkill_unregister -EXPORT_SYMBOL vmlinux 0x084c0ece inet_csk_reqsk_queue_add -EXPORT_SYMBOL vmlinux 0x0871c4c1 imx_scu_enable_general_irq_channel -EXPORT_SYMBOL vmlinux 0x087a2ab7 __mmap_lock_do_trace_released -EXPORT_SYMBOL vmlinux 0x087e20a1 of_get_next_available_child -EXPORT_SYMBOL vmlinux 0x0882a449 security_xfrm_policy_alloc -EXPORT_SYMBOL vmlinux 0x088d7725 iter_file_splice_write -EXPORT_SYMBOL vmlinux 0x08933e8e netdev_state_change -EXPORT_SYMBOL vmlinux 0x08a449e7 dma_fence_array_ops -EXPORT_SYMBOL vmlinux 0x08bae46f inet_addr_type_dev_table -EXPORT_SYMBOL vmlinux 0x08c56334 bioset_init_from_src -EXPORT_SYMBOL vmlinux 0x08e39398 cmd_db_read_addr -EXPORT_SYMBOL vmlinux 0x08eaea1a km_state_expired -EXPORT_SYMBOL vmlinux 0x08ecff65 neigh_parms_alloc -EXPORT_SYMBOL vmlinux 0x0904d9df unregister_nls -EXPORT_SYMBOL vmlinux 0x092e26bf acpi_remove_address_space_handler -EXPORT_SYMBOL vmlinux 0x093712e5 acpi_purge_cached_objects -EXPORT_SYMBOL vmlinux 0x094bfb39 __traceiter_dma_fence_emit -EXPORT_SYMBOL vmlinux 0x095c9a75 iov_iter_zero -EXPORT_SYMBOL vmlinux 0x0968bfb1 create_empty_buffers -EXPORT_SYMBOL vmlinux 0x09714e64 seg6_push_hmac -EXPORT_SYMBOL vmlinux 0x0973e9df prepare_kernel_cred -EXPORT_SYMBOL vmlinux 0x09769037 dmt_modes -EXPORT_SYMBOL vmlinux 0x097b3e1b skb_copy_header -EXPORT_SYMBOL vmlinux 0x098b71c6 fb_dealloc_cmap -EXPORT_SYMBOL vmlinux 0x09965e98 ip6mr_rule_default -EXPORT_SYMBOL vmlinux 0x0998cc3c hdmi_infoframe_unpack -EXPORT_SYMBOL vmlinux 0x099a396f clkdev_drop -EXPORT_SYMBOL vmlinux 0x09aed512 ip_mc_check_igmp -EXPORT_SYMBOL vmlinux 0x09b8908d xfrm_policy_walk_done -EXPORT_SYMBOL vmlinux 0x09bf5037 dev_change_proto_down -EXPORT_SYMBOL vmlinux 0x09d44df9 in_lock_functions -EXPORT_SYMBOL vmlinux 0x09e0efa4 ipv6_dev_find -EXPORT_SYMBOL vmlinux 0x09f9b261 xudma_rchan_put -EXPORT_SYMBOL vmlinux 0x09ffae12 genl_register_family -EXPORT_SYMBOL vmlinux 0x0a012f73 mb_cache_entry_touch -EXPORT_SYMBOL vmlinux 0x0a0fad39 alloc_fcdev -EXPORT_SYMBOL vmlinux 0x0a15b914 phy_get_c45_ids -EXPORT_SYMBOL vmlinux 0x0a1dbc76 tcp_rx_skb_cache_key -EXPORT_SYMBOL vmlinux 0x0a1df485 ip_mc_inc_group -EXPORT_SYMBOL vmlinux 0x0a29ec5c dev_uc_sync -EXPORT_SYMBOL vmlinux 0x0a2e46e9 phy_start_cable_test_tdr -EXPORT_SYMBOL vmlinux 0x0a3c5ee6 _dev_warn -EXPORT_SYMBOL vmlinux 0x0a580de2 xfrm_state_walk_done -EXPORT_SYMBOL vmlinux 0x0a770832 register_memory_notifier -EXPORT_SYMBOL vmlinux 0x0a7d3c84 mfd_cell_disable -EXPORT_SYMBOL vmlinux 0x0a8acd73 generic_write_checks -EXPORT_SYMBOL vmlinux 0x0a8bdf2b pci_release_regions -EXPORT_SYMBOL vmlinux 0x0a92a804 dcache_dir_open -EXPORT_SYMBOL vmlinux 0x0aa309cf synchronize_hardirq -EXPORT_SYMBOL vmlinux 0x0aaccc92 pci_remap_iospace -EXPORT_SYMBOL vmlinux 0x0ab76f2a genphy_setup_forced -EXPORT_SYMBOL vmlinux 0x0acf7679 dma_issue_pending_all -EXPORT_SYMBOL vmlinux 0x0af0eca6 tty_unregister_ldisc -EXPORT_SYMBOL vmlinux 0x0afe02fb xfrm_find_acq -EXPORT_SYMBOL vmlinux 0x0affd99d dm_kcopyd_copy -EXPORT_SYMBOL vmlinux 0x0b1beb31 vmalloc_32_user -EXPORT_SYMBOL vmlinux 0x0b1dbd0d skb_copy_and_csum_datagram_msg -EXPORT_SYMBOL vmlinux 0x0b26b8c8 acpi_run_osc -EXPORT_SYMBOL vmlinux 0x0b383ce4 fman_bind -EXPORT_SYMBOL vmlinux 0x0b4165c6 phy_ethtool_get_sset_count -EXPORT_SYMBOL vmlinux 0x0b50d35f md_flush_request -EXPORT_SYMBOL vmlinux 0x0b742fd7 simple_strtol -EXPORT_SYMBOL vmlinux 0x0b75e6b2 sync_filesystem -EXPORT_SYMBOL vmlinux 0x0b760e99 mmc_cqe_recovery -EXPORT_SYMBOL vmlinux 0x0b78bdf8 tcp_create_openreq_child -EXPORT_SYMBOL vmlinux 0x0b92a607 jbd2_journal_init_jbd_inode -EXPORT_SYMBOL vmlinux 0x0b9bd02e __xa_set_mark -EXPORT_SYMBOL vmlinux 0x0b9fbee5 clocksource_unregister -EXPORT_SYMBOL vmlinux 0x0ba0b938 vm_brk -EXPORT_SYMBOL vmlinux 0x0bb22a46 mipi_dsi_compression_mode -EXPORT_SYMBOL vmlinux 0x0bc24e9f get_vm_area -EXPORT_SYMBOL vmlinux 0x0bc477a2 irq_set_irq_type -EXPORT_SYMBOL vmlinux 0x0bca4b65 blk_queue_max_segments -EXPORT_SYMBOL vmlinux 0x0bcbf57c of_find_node_by_type -EXPORT_SYMBOL vmlinux 0x0bd1d22e __cgroup_bpf_run_filter_sock_ops -EXPORT_SYMBOL vmlinux 0x0bd430b4 uart_unregister_driver -EXPORT_SYMBOL vmlinux 0x0be25956 vc_cons -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 0x0c1f4e21 flow_rule_match_ct -EXPORT_SYMBOL vmlinux 0x0c25ec48 secure_tcpv6_seq -EXPORT_SYMBOL vmlinux 0x0c2eb466 skb_clone_sk -EXPORT_SYMBOL vmlinux 0x0c3690fc _raw_spin_lock_bh -EXPORT_SYMBOL vmlinux 0x0c370a0f tty_hung_up_p -EXPORT_SYMBOL vmlinux 0x0c426b63 scsi_dma_unmap -EXPORT_SYMBOL vmlinux 0x0c4758b6 dev_mc_add_global -EXPORT_SYMBOL vmlinux 0x0c4a57da configfs_unregister_default_group -EXPORT_SYMBOL vmlinux 0x0c695f74 init_pseudo -EXPORT_SYMBOL vmlinux 0x0c69e15a block_write_begin -EXPORT_SYMBOL vmlinux 0x0c6bdc3f vme_master_read -EXPORT_SYMBOL vmlinux 0x0c85178c mmc_set_data_timeout -EXPORT_SYMBOL vmlinux 0x0ca479a6 block_is_partially_uptodate -EXPORT_SYMBOL vmlinux 0x0ca6960d blk_queue_dma_alignment -EXPORT_SYMBOL vmlinux 0x0cb11bc7 __SCK__tp_func_dma_fence_enable_signal -EXPORT_SYMBOL vmlinux 0x0cbfdc73 dma_fence_chain_init -EXPORT_SYMBOL vmlinux 0x0cc4b4b6 crc_ccitt_false -EXPORT_SYMBOL vmlinux 0x0cd5835b ipv6_flowlabel_exclusive -EXPORT_SYMBOL vmlinux 0x0cd7fbda generic_copy_file_range -EXPORT_SYMBOL vmlinux 0x0cdce87c rfkill_set_hw_state_reason -EXPORT_SYMBOL vmlinux 0x0ce36e6d pps_register_source -EXPORT_SYMBOL vmlinux 0x0d05e4ca xsk_get_pool_from_qid -EXPORT_SYMBOL vmlinux 0x0d07f543 get_anon_bdev -EXPORT_SYMBOL vmlinux 0x0d09d889 inet_csk_accept -EXPORT_SYMBOL vmlinux 0x0d0c0756 arp_xmit -EXPORT_SYMBOL vmlinux 0x0d1855f7 iov_iter_alignment -EXPORT_SYMBOL vmlinux 0x0d2ca20f ucc_fast_get_qe_cr_subblock -EXPORT_SYMBOL vmlinux 0x0d3f5c1a fman_get_max_frm -EXPORT_SYMBOL vmlinux 0x0d435b6a tcp_seq_next -EXPORT_SYMBOL vmlinux 0x0d542439 __ipv6_addr_type -EXPORT_SYMBOL vmlinux 0x0d56fed3 tcp_enter_quickack_mode -EXPORT_SYMBOL vmlinux 0x0d61eeee __bitmap_subset -EXPORT_SYMBOL vmlinux 0x0d62f2f3 prepare_to_swait_exclusive -EXPORT_SYMBOL vmlinux 0x0d818ead balance_dirty_pages_ratelimited -EXPORT_SYMBOL vmlinux 0x0d8a6d15 is_nvdimm_bus_locked -EXPORT_SYMBOL vmlinux 0x0d9056d2 tcp_md5_do_add -EXPORT_SYMBOL vmlinux 0x0da627e3 copy_page_from_iter_atomic -EXPORT_SYMBOL vmlinux 0x0da812a4 ipmi_platform_add -EXPORT_SYMBOL vmlinux 0x0da9360c dev_get_mac_address -EXPORT_SYMBOL vmlinux 0x0da98035 input_register_handler -EXPORT_SYMBOL vmlinux 0x0daa3c99 sg_miter_start -EXPORT_SYMBOL vmlinux 0x0dc9d588 seq_escape_mem -EXPORT_SYMBOL vmlinux 0x0e05ef3f blk_mq_alloc_tag_set -EXPORT_SYMBOL vmlinux 0x0e17678a siphash_4u64 -EXPORT_SYMBOL vmlinux 0x0e20144a scsi_print_command -EXPORT_SYMBOL vmlinux 0x0e21721f xfrm_policy_unregister_afinfo -EXPORT_SYMBOL vmlinux 0x0e3338be tcp_mtup_init -EXPORT_SYMBOL vmlinux 0x0e4262c6 __siphash_unaligned -EXPORT_SYMBOL vmlinux 0x0e5cf0a8 unlock_buffer -EXPORT_SYMBOL vmlinux 0x0e64e563 mmc_is_req_done -EXPORT_SYMBOL vmlinux 0x0e74ad2d utf8ncursor -EXPORT_SYMBOL vmlinux 0x0e88e12f tcf_block_put -EXPORT_SYMBOL vmlinux 0x0e94dcde blk_mq_init_queue -EXPORT_SYMBOL vmlinux 0x0ea257bf bdi_put -EXPORT_SYMBOL vmlinux 0x0ea3c74e tasklet_kill -EXPORT_SYMBOL vmlinux 0x0ea593f6 hdmi_drm_infoframe_init -EXPORT_SYMBOL vmlinux 0x0eb6eb87 add_taint -EXPORT_SYMBOL vmlinux 0x0ec4cb42 mipi_dsi_driver_unregister -EXPORT_SYMBOL vmlinux 0x0ec5babe vme_dma_free -EXPORT_SYMBOL vmlinux 0x0ed034b9 scsi_scan_host -EXPORT_SYMBOL vmlinux 0x0edbf41c tty_driver_kref_put -EXPORT_SYMBOL vmlinux 0x0ef6dc9d vlan_filter_push_vids -EXPORT_SYMBOL vmlinux 0x0f0209d2 blk_cleanup_queue -EXPORT_SYMBOL vmlinux 0x0f09cc34 schedule_timeout_killable -EXPORT_SYMBOL vmlinux 0x0f0eadc7 tcf_idr_create_from_flags -EXPORT_SYMBOL vmlinux 0x0f125264 registered_fb -EXPORT_SYMBOL vmlinux 0x0f1ad8e2 seq_list_start_rcu -EXPORT_SYMBOL vmlinux 0x0f6b0f6b fs_param_is_s32 -EXPORT_SYMBOL vmlinux 0x0f75557a tcp_mmap -EXPORT_SYMBOL vmlinux 0x0f80f53e __breadahead -EXPORT_SYMBOL vmlinux 0x0f86f560 kthread_delayed_work_timer_fn -EXPORT_SYMBOL vmlinux 0x0f9cb342 dec_zone_page_state -EXPORT_SYMBOL vmlinux 0x0fab1ab0 hdmi_spd_infoframe_pack -EXPORT_SYMBOL vmlinux 0x0fb2f8a4 mktime64 -EXPORT_SYMBOL vmlinux 0x0fb5205c input_mt_get_slot_by_key -EXPORT_SYMBOL vmlinux 0x0fd902db mb_cache_entry_create -EXPORT_SYMBOL vmlinux 0x0fd9315a netlink_ns_capable -EXPORT_SYMBOL vmlinux 0x0fe56c02 genphy_config_eee_advert -EXPORT_SYMBOL vmlinux 0x0fff5afc time64_to_tm -EXPORT_SYMBOL vmlinux 0x10056e04 crypto_sha1_update -EXPORT_SYMBOL vmlinux 0x10071d52 ipv6_chk_custom_prefix -EXPORT_SYMBOL vmlinux 0x1025009a cpm_muram_alloc_fixed -EXPORT_SYMBOL vmlinux 0x102936ec qe_clock_source -EXPORT_SYMBOL vmlinux 0x102f1f73 simple_lookup -EXPORT_SYMBOL vmlinux 0x1035c7c2 __release_region -EXPORT_SYMBOL vmlinux 0x103e5481 udp_skb_destructor -EXPORT_SYMBOL vmlinux 0x103e7f6c devm_backlight_device_unregister -EXPORT_SYMBOL vmlinux 0x10574d0a hsierrrpt_reg_cb -EXPORT_SYMBOL vmlinux 0x1057a279 bsearch -EXPORT_SYMBOL vmlinux 0x1068004b gf128mul_bbe -EXPORT_SYMBOL vmlinux 0x107b4234 devm_request_threaded_irq -EXPORT_SYMBOL vmlinux 0x107be0b0 percpu_counter_sync -EXPORT_SYMBOL vmlinux 0x107e5878 zlib_inflateEnd -EXPORT_SYMBOL vmlinux 0x107fed2b sk_stop_timer_sync -EXPORT_SYMBOL vmlinux 0x10800e12 param_get_byte -EXPORT_SYMBOL vmlinux 0x108b34d9 udp_set_csum -EXPORT_SYMBOL vmlinux 0x108fe45f ipv6_chk_addr -EXPORT_SYMBOL vmlinux 0x10b9b4ff gen_pool_dma_alloc -EXPORT_SYMBOL vmlinux 0x10c00c1e param_ops_int -EXPORT_SYMBOL vmlinux 0x10d9f885 scsi_sense_desc_find -EXPORT_SYMBOL vmlinux 0x10e6f74a free_contig_range -EXPORT_SYMBOL vmlinux 0x10f7e612 fman_register_intr -EXPORT_SYMBOL vmlinux 0x1100c149 inet6_bind -EXPORT_SYMBOL vmlinux 0x11089ac7 _ctype -EXPORT_SYMBOL vmlinux 0x111103f2 kset_unregister -EXPORT_SYMBOL vmlinux 0x11175177 timestamp_truncate -EXPORT_SYMBOL vmlinux 0x111c7d67 xfrm_input_register_afinfo -EXPORT_SYMBOL vmlinux 0x111d0689 eth_platform_get_mac_address -EXPORT_SYMBOL vmlinux 0x113248f7 ptp_clock_register -EXPORT_SYMBOL vmlinux 0x113cf955 seq_open_private -EXPORT_SYMBOL vmlinux 0x1149fbe9 fqdir_exit -EXPORT_SYMBOL vmlinux 0x115c2cb2 close_fd_get_file -EXPORT_SYMBOL vmlinux 0x116bbda3 audit_log_start -EXPORT_SYMBOL vmlinux 0x116e04f1 logfc -EXPORT_SYMBOL vmlinux 0x117093be qdisc_class_hash_init -EXPORT_SYMBOL vmlinux 0x1173c184 d_set_fallthru -EXPORT_SYMBOL vmlinux 0x117688ad __scm_destroy -EXPORT_SYMBOL vmlinux 0x11a7500f fput -EXPORT_SYMBOL vmlinux 0x11c85b97 thread_group_exited -EXPORT_SYMBOL vmlinux 0x11cc8fb4 textsearch_destroy -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 0x11e5e19f tegra_ivc_read_get_next_frame -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 0x124bad4d kstrtobool -EXPORT_SYMBOL vmlinux 0x1250d17d dev_load -EXPORT_SYMBOL vmlinux 0x125123f2 unregister_md_personality -EXPORT_SYMBOL vmlinux 0x12520e06 sock_create_lite -EXPORT_SYMBOL vmlinux 0x1256504c dget_parent -EXPORT_SYMBOL vmlinux 0x126b8b24 vfs_create_mount -EXPORT_SYMBOL vmlinux 0x127828c1 vm_insert_page -EXPORT_SYMBOL vmlinux 0x12a4e128 __arch_copy_from_user -EXPORT_SYMBOL vmlinux 0x12b7f2f8 touch_atime -EXPORT_SYMBOL vmlinux 0x12c7d930 pci_write_config_byte -EXPORT_SYMBOL vmlinux 0x12c93d4f pnp_stop_dev -EXPORT_SYMBOL vmlinux 0x12cabc89 siphash_2u64 -EXPORT_SYMBOL vmlinux 0x12ce3e78 pid_task -EXPORT_SYMBOL vmlinux 0x12d51ac1 mfd_remove_devices_late -EXPORT_SYMBOL vmlinux 0x12d5bd70 rproc_shutdown -EXPORT_SYMBOL vmlinux 0x12dcef04 devfreq_recommended_opp -EXPORT_SYMBOL vmlinux 0x12e9eac6 __ethtool_get_link_ksettings -EXPORT_SYMBOL vmlinux 0x12eff1c2 configfs_unregister_group -EXPORT_SYMBOL vmlinux 0x12f6f69c fb_videomode_to_var -EXPORT_SYMBOL vmlinux 0x1306881c scsi_add_host_with_dma -EXPORT_SYMBOL vmlinux 0x130afd75 acpi_get_sleep_type_data -EXPORT_SYMBOL vmlinux 0x1310c4da pci_save_state -EXPORT_SYMBOL vmlinux 0x13110126 request_resource -EXPORT_SYMBOL vmlinux 0x13225e48 iov_iter_discard -EXPORT_SYMBOL vmlinux 0x13243d4b wl1251_get_platform_data -EXPORT_SYMBOL vmlinux 0x1337296e sock_diag_put_filterinfo -EXPORT_SYMBOL vmlinux 0x133e85e1 starget_for_each_device -EXPORT_SYMBOL vmlinux 0x13474adf del_gendisk -EXPORT_SYMBOL vmlinux 0x134776c5 mipi_dsi_dcs_set_tear_scanline -EXPORT_SYMBOL vmlinux 0x134cdd34 inet_frag_rbtree_purge -EXPORT_SYMBOL vmlinux 0x134effa7 xfrm_register_type_offload -EXPORT_SYMBOL vmlinux 0x135b5dd1 proc_set_size -EXPORT_SYMBOL vmlinux 0x1360e892 __hw_addr_unsync_dev -EXPORT_SYMBOL vmlinux 0x136a7985 rproc_elf_load_rsc_table -EXPORT_SYMBOL vmlinux 0x1388a0fd hmm_range_fault -EXPORT_SYMBOL vmlinux 0x138bdd96 cpumask_next -EXPORT_SYMBOL vmlinux 0x139882cb devm_of_find_backlight -EXPORT_SYMBOL vmlinux 0x139dd40e security_task_getsecid_subj -EXPORT_SYMBOL vmlinux 0x139f2189 __kfifo_alloc -EXPORT_SYMBOL vmlinux 0x139f2205 config_group_find_item -EXPORT_SYMBOL vmlinux 0x13c65f65 sg_alloc_table_from_pages_segment -EXPORT_SYMBOL vmlinux 0x13cead77 __SCK__tp_func_kmem_cache_alloc_node -EXPORT_SYMBOL vmlinux 0x13d0adf7 __kfifo_out -EXPORT_SYMBOL vmlinux 0x13d1702e block_read_full_page -EXPORT_SYMBOL vmlinux 0x13d928f5 __SCK__tp_func_kmem_cache_alloc -EXPORT_SYMBOL vmlinux 0x13da9390 dma_sync_single_for_device -EXPORT_SYMBOL vmlinux 0x13e4ad3f mutex_trylock -EXPORT_SYMBOL vmlinux 0x1405f4e6 sock_set_reuseaddr -EXPORT_SYMBOL vmlinux 0x141271bf acpi_dev_found -EXPORT_SYMBOL vmlinux 0x143504c5 inet_csk_init_xmit_timers -EXPORT_SYMBOL vmlinux 0x1435c5ce __SCK__tp_func_kmalloc_node -EXPORT_SYMBOL vmlinux 0x143b031a iget_failed -EXPORT_SYMBOL vmlinux 0x144935d8 __acpi_mdiobus_register -EXPORT_SYMBOL vmlinux 0x144d2a76 tc_setup_cb_call -EXPORT_SYMBOL vmlinux 0x144e977f kill_pgrp -EXPORT_SYMBOL vmlinux 0x145569b7 bio_clone_fast -EXPORT_SYMBOL vmlinux 0x14605535 dma_fence_context_alloc -EXPORT_SYMBOL vmlinux 0x146289b7 crc16_table -EXPORT_SYMBOL vmlinux 0x14667f46 vfs_rmdir -EXPORT_SYMBOL vmlinux 0x14b89635 arm64_const_caps_ready -EXPORT_SYMBOL vmlinux 0x14b8c9b1 phy_get_pause -EXPORT_SYMBOL vmlinux 0x14c67e3e tcp_tx_delay_enabled -EXPORT_SYMBOL vmlinux 0x14c80f5d call_fib_notifiers -EXPORT_SYMBOL vmlinux 0x14ced76e nla_reserve_nohdr -EXPORT_SYMBOL vmlinux 0x14d98957 security_dentry_create_files_as -EXPORT_SYMBOL vmlinux 0x14ef89d4 neigh_seq_next -EXPORT_SYMBOL vmlinux 0x14f45fcc bman_free_pool -EXPORT_SYMBOL vmlinux 0x14fabb8b inet_proto_csum_replace_by_diff -EXPORT_SYMBOL vmlinux 0x150426bf mmc_put_card -EXPORT_SYMBOL vmlinux 0x150b2326 sk_stop_timer -EXPORT_SYMBOL vmlinux 0x1512e0ea ida_destroy -EXPORT_SYMBOL vmlinux 0x151f4898 schedule_timeout_uninterruptible -EXPORT_SYMBOL vmlinux 0x1526b301 unix_tot_inflight -EXPORT_SYMBOL vmlinux 0x1535b4e5 xa_find_after -EXPORT_SYMBOL vmlinux 0x154c6338 dm_kcopyd_client_destroy -EXPORT_SYMBOL vmlinux 0x1587a0d9 scsi_free_host_dev -EXPORT_SYMBOL vmlinux 0x15921d84 flow_rule_match_enc_ipv4_addrs -EXPORT_SYMBOL vmlinux 0x15b8eadb of_get_cpu_state_node -EXPORT_SYMBOL vmlinux 0x15ba50a6 jiffies -EXPORT_SYMBOL vmlinux 0x15bafe29 unregister_md_cluster_operations -EXPORT_SYMBOL vmlinux 0x15bed7a5 LZ4_decompress_safe_partial -EXPORT_SYMBOL vmlinux 0x15c63129 pci_clear_master -EXPORT_SYMBOL vmlinux 0x15d42212 __var_waitqueue -EXPORT_SYMBOL vmlinux 0x15da0b3b scsi_is_target_device -EXPORT_SYMBOL vmlinux 0x15f90688 slhc_init -EXPORT_SYMBOL vmlinux 0x1606ea30 pci_bus_type -EXPORT_SYMBOL vmlinux 0x1609267f watchdog_register_governor -EXPORT_SYMBOL vmlinux 0x160a753b fb_class -EXPORT_SYMBOL vmlinux 0x160e91fe md_integrity_add_rdev -EXPORT_SYMBOL vmlinux 0x16224637 devm_pci_remap_cfgspace -EXPORT_SYMBOL vmlinux 0x162893fd hashlen_string -EXPORT_SYMBOL vmlinux 0x162f2e46 rproc_get_by_phandle -EXPORT_SYMBOL vmlinux 0x16316a10 ZSTD_getFrameContentSize -EXPORT_SYMBOL vmlinux 0x1632bc21 kvasprintf_const -EXPORT_SYMBOL vmlinux 0x163aeab4 udp_poll -EXPORT_SYMBOL vmlinux 0x163af107 scsi_host_get -EXPORT_SYMBOL vmlinux 0x163d2417 tegra_io_rail_power_off -EXPORT_SYMBOL vmlinux 0x1647fd6a __ps2_command -EXPORT_SYMBOL vmlinux 0x167c5967 print_hex_dump -EXPORT_SYMBOL vmlinux 0x169938c1 __sysfs_match_string -EXPORT_SYMBOL vmlinux 0x16a8151a blk_mq_rq_cpu -EXPORT_SYMBOL vmlinux 0x16b28dbd tty_port_carrier_raised -EXPORT_SYMBOL vmlinux 0x16cdc340 acpi_get_table -EXPORT_SYMBOL vmlinux 0x16e297c3 bit_wait -EXPORT_SYMBOL vmlinux 0x16e33fb1 block_truncate_page -EXPORT_SYMBOL vmlinux 0x16e7e2cb cpu_all_bits -EXPORT_SYMBOL vmlinux 0x16e98f99 pci_add_new_bus -EXPORT_SYMBOL vmlinux 0x16ee62ee eth_header_parse_protocol -EXPORT_SYMBOL vmlinux 0x170137cc xattr_full_name -EXPORT_SYMBOL vmlinux 0x170bf27e security_sctp_bind_connect -EXPORT_SYMBOL vmlinux 0x170ddf79 acpi_install_notify_handler -EXPORT_SYMBOL vmlinux 0x1724dcc0 ipv6_dev_mc_dec -EXPORT_SYMBOL vmlinux 0x172b55c5 t10_pi_type1_ip -EXPORT_SYMBOL vmlinux 0x17328b38 md_check_no_bitmap -EXPORT_SYMBOL vmlinux 0x17441034 idr_get_next_ul -EXPORT_SYMBOL vmlinux 0x1745844d fscrypt_setup_filename -EXPORT_SYMBOL vmlinux 0x175021ba mdiobus_write_nested -EXPORT_SYMBOL vmlinux 0x17547075 ipv6_push_frag_opts -EXPORT_SYMBOL vmlinux 0x1755463c amba_request_regions -EXPORT_SYMBOL vmlinux 0x1771f09b scsi_device_get -EXPORT_SYMBOL vmlinux 0x1772978e jbd2_journal_start_commit -EXPORT_SYMBOL vmlinux 0x17748550 abort_creds -EXPORT_SYMBOL vmlinux 0x17825d3f xudma_rchan_get -EXPORT_SYMBOL vmlinux 0x1789c6e0 reuseport_detach_sock -EXPORT_SYMBOL vmlinux 0x178c4894 qe_upload_firmware -EXPORT_SYMBOL vmlinux 0x179f6560 revert_creds -EXPORT_SYMBOL vmlinux 0x17b15f79 __of_get_address -EXPORT_SYMBOL vmlinux 0x17b9ca0a eth_validate_addr -EXPORT_SYMBOL vmlinux 0x17c6143e send_sig -EXPORT_SYMBOL vmlinux 0x17ddf16b build_skb_around -EXPORT_SYMBOL vmlinux 0x17fd7cfc dev_pick_tx_zero -EXPORT_SYMBOL vmlinux 0x182b7592 of_phy_get_and_connect -EXPORT_SYMBOL vmlinux 0x18345b8e __bitmap_replace -EXPORT_SYMBOL vmlinux 0x184e8239 pci_get_device -EXPORT_SYMBOL vmlinux 0x186ccdf8 blk_mq_delay_run_hw_queues -EXPORT_SYMBOL vmlinux 0x1870d6bc dev_getfirstbyhwtype -EXPORT_SYMBOL vmlinux 0x187884a8 cpm_muram_free -EXPORT_SYMBOL vmlinux 0x188ea314 jiffies_to_timespec64 -EXPORT_SYMBOL vmlinux 0x189164a2 down_read_killable -EXPORT_SYMBOL vmlinux 0x18b48e28 __memset_io -EXPORT_SYMBOL vmlinux 0x18b8a3a9 of_phy_find_device -EXPORT_SYMBOL vmlinux 0x18e38947 proc_dointvec_userhz_jiffies -EXPORT_SYMBOL vmlinux 0x18e60984 __do_once_start -EXPORT_SYMBOL vmlinux 0x1903d7be max8998_update_reg -EXPORT_SYMBOL vmlinux 0x1907b922 sock_bind_add -EXPORT_SYMBOL vmlinux 0x190a48a9 efi -EXPORT_SYMBOL vmlinux 0x191031c6 bio_advance -EXPORT_SYMBOL vmlinux 0x1911dab9 of_graph_get_remote_endpoint -EXPORT_SYMBOL vmlinux 0x1912176b fs_param_is_string -EXPORT_SYMBOL vmlinux 0x191a5ee3 devfreq_resume_device -EXPORT_SYMBOL vmlinux 0x1944a87d __cpuhp_setup_state -EXPORT_SYMBOL vmlinux 0x1958fffe pci_get_slot -EXPORT_SYMBOL vmlinux 0x1965c33b __skb_checksum -EXPORT_SYMBOL vmlinux 0x1969355f serio_unregister_port -EXPORT_SYMBOL vmlinux 0x19782200 from_kuid_munged -EXPORT_SYMBOL vmlinux 0x197b0f8f fs_param_is_blockdev -EXPORT_SYMBOL vmlinux 0x1984d421 out_of_line_wait_on_bit -EXPORT_SYMBOL vmlinux 0x198620d7 security_add_mnt_opt -EXPORT_SYMBOL vmlinux 0x198828d2 fget_raw -EXPORT_SYMBOL vmlinux 0x198c84da fb_show_logo -EXPORT_SYMBOL vmlinux 0x199ed0cd net_disable_timestamp -EXPORT_SYMBOL vmlinux 0x19a3d3ca __blk_mq_end_request -EXPORT_SYMBOL vmlinux 0x19a401b2 file_update_time -EXPORT_SYMBOL vmlinux 0x19b08166 proto_register -EXPORT_SYMBOL vmlinux 0x19b4d78d of_translate_dma_region -EXPORT_SYMBOL vmlinux 0x19b6dde4 ip6_dst_alloc -EXPORT_SYMBOL vmlinux 0x19bd383b security_secmark_refcount_dec -EXPORT_SYMBOL vmlinux 0x19c02d26 i2c_smbus_read_word_data -EXPORT_SYMBOL vmlinux 0x19c06434 sock_create -EXPORT_SYMBOL vmlinux 0x19ff5dd5 mutex_lock_killable -EXPORT_SYMBOL vmlinux 0x1a013224 devm_tegra_prod_get -EXPORT_SYMBOL vmlinux 0x1a037f5e mmc_command_done -EXPORT_SYMBOL vmlinux 0x1a0a3fa9 mdiobus_unregister_device -EXPORT_SYMBOL vmlinux 0x1a188302 ilookup5_nowait -EXPORT_SYMBOL vmlinux 0x1a1bac9c ZSTD_decompressDCtx -EXPORT_SYMBOL vmlinux 0x1a45cb6c acpi_disabled -EXPORT_SYMBOL vmlinux 0x1a523060 inet6_ioctl -EXPORT_SYMBOL vmlinux 0x1a59470e udp_sk_rx_dst_set -EXPORT_SYMBOL vmlinux 0x1a80cd5f mdiobus_free -EXPORT_SYMBOL vmlinux 0x1a90315a commit_creds -EXPORT_SYMBOL vmlinux 0x1a9a433c prandom_u32_state -EXPORT_SYMBOL vmlinux 0x1ab12b2d page_pool_return_skb_page -EXPORT_SYMBOL vmlinux 0x1ab6ccc2 input_match_device_id -EXPORT_SYMBOL vmlinux 0x1ac5d3cb strcspn -EXPORT_SYMBOL vmlinux 0x1adb7ef3 gro_find_receive_by_type -EXPORT_SYMBOL vmlinux 0x1ae0e707 dqput -EXPORT_SYMBOL vmlinux 0x1af08dfa ip_options_compile -EXPORT_SYMBOL vmlinux 0x1af7ba33 dev_set_threaded -EXPORT_SYMBOL vmlinux 0x1b015d25 bitmap_parselist -EXPORT_SYMBOL vmlinux 0x1b06be63 rtnl_unicast -EXPORT_SYMBOL vmlinux 0x1b17ff02 gen_new_estimator -EXPORT_SYMBOL vmlinux 0x1b2331ac configfs_register_default_group -EXPORT_SYMBOL vmlinux 0x1b26958a bio_chain -EXPORT_SYMBOL vmlinux 0x1b468d4a of_iomap -EXPORT_SYMBOL vmlinux 0x1b4c9b72 km_policy_expired -EXPORT_SYMBOL vmlinux 0x1b5196fc xudma_tchan_put -EXPORT_SYMBOL vmlinux 0x1b597b7a swake_up_all -EXPORT_SYMBOL vmlinux 0x1b5ee20e dm_table_get_md -EXPORT_SYMBOL vmlinux 0x1b6314fd in_aton -EXPORT_SYMBOL vmlinux 0x1b65a3d2 notify_change -EXPORT_SYMBOL vmlinux 0x1b66e814 devm_memremap -EXPORT_SYMBOL vmlinux 0x1b7330c9 i2c_add_adapter -EXPORT_SYMBOL vmlinux 0x1b777357 rdmacg_unregister_device -EXPORT_SYMBOL vmlinux 0x1b902de6 phy_write_paged -EXPORT_SYMBOL vmlinux 0x1b969f3d dquot_set_dqblk -EXPORT_SYMBOL vmlinux 0x1ba59527 __kmalloc_node -EXPORT_SYMBOL vmlinux 0x1bb51249 tcp_have_smc -EXPORT_SYMBOL vmlinux 0x1bb86b9a xen_start_info -EXPORT_SYMBOL vmlinux 0x1bcf1ba6 PageMovable -EXPORT_SYMBOL vmlinux 0x1bd59dbe vme_free_consistent -EXPORT_SYMBOL vmlinux 0x1bd7e136 udp_push_pending_frames -EXPORT_SYMBOL vmlinux 0x1bd9ba9d netlink_rcv_skb -EXPORT_SYMBOL vmlinux 0x1bf61ae8 __nd_driver_register -EXPORT_SYMBOL vmlinux 0x1c008c93 iov_iter_revert -EXPORT_SYMBOL vmlinux 0x1c05a2ad twl6040_get_sysclk -EXPORT_SYMBOL vmlinux 0x1c412bf5 inet_sk_set_state -EXPORT_SYMBOL vmlinux 0x1c58427f acpi_remove_notify_handler -EXPORT_SYMBOL vmlinux 0x1c5e3878 icst525_idx2s -EXPORT_SYMBOL vmlinux 0x1c6a38e4 rt_spin_trylock_bh -EXPORT_SYMBOL vmlinux 0x1c7241e3 simple_transaction_set -EXPORT_SYMBOL vmlinux 0x1c77273c kernel_param_lock -EXPORT_SYMBOL vmlinux 0x1c8e0a4a inode_add_bytes -EXPORT_SYMBOL vmlinux 0x1c998750 invalidate_inode_buffers -EXPORT_SYMBOL vmlinux 0x1cb1726e rt_write_trylock -EXPORT_SYMBOL vmlinux 0x1cb46f1a unix_get_socket -EXPORT_SYMBOL vmlinux 0x1cc11154 __SCK__tp_func_mmap_lock_start_locking -EXPORT_SYMBOL vmlinux 0x1cc4593a kill_block_super -EXPORT_SYMBOL vmlinux 0x1cd8438b pxm_to_node -EXPORT_SYMBOL vmlinux 0x1cdd39ba logic_outsl -EXPORT_SYMBOL vmlinux 0x1ce182bd netdev_reset_tc -EXPORT_SYMBOL vmlinux 0x1cf5efa6 xudma_rflow_get_id -EXPORT_SYMBOL vmlinux 0x1cfa2e66 kmalloc_caches -EXPORT_SYMBOL vmlinux 0x1cfcd41d sock_set_keepalive -EXPORT_SYMBOL vmlinux 0x1d07e365 memdup_user_nul -EXPORT_SYMBOL vmlinux 0x1d096a54 __mod_lruvec_page_state -EXPORT_SYMBOL vmlinux 0x1d1abdf0 acpi_get_physical_device_location -EXPORT_SYMBOL vmlinux 0x1d24c881 ___ratelimit -EXPORT_SYMBOL vmlinux 0x1d2b15f1 rproc_elf_sanity_check -EXPORT_SYMBOL vmlinux 0x1d2b2270 dma_fence_chain_walk -EXPORT_SYMBOL vmlinux 0x1d2d6d15 wait_iff_congested -EXPORT_SYMBOL vmlinux 0x1d347bb5 dev_mc_sync -EXPORT_SYMBOL vmlinux 0x1d48d4ec param_get_hexint -EXPORT_SYMBOL vmlinux 0x1d532405 inode_init_owner -EXPORT_SYMBOL vmlinux 0x1d5cedae __tracepoint_kfree -EXPORT_SYMBOL vmlinux 0x1d82b78a __quota_error -EXPORT_SYMBOL vmlinux 0x1d848163 security_inode_setsecctx -EXPORT_SYMBOL vmlinux 0x1d98b761 genlmsg_put -EXPORT_SYMBOL vmlinux 0x1da3245e mipi_dsi_dcs_set_display_brightness_large -EXPORT_SYMBOL vmlinux 0x1dad298b __frontswap_load -EXPORT_SYMBOL vmlinux 0x1dbd1bd5 free_task -EXPORT_SYMBOL vmlinux 0x1dc6c93b lookup_user_key -EXPORT_SYMBOL vmlinux 0x1dd571e6 fb_copy_cmap -EXPORT_SYMBOL vmlinux 0x1dd62be8 __scsi_add_device -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 0x1df22de5 mii_check_media -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 0x1e119b8c __do_once_slow_done -EXPORT_SYMBOL vmlinux 0x1e1e140e ns_to_timespec64 -EXPORT_SYMBOL vmlinux 0x1e439865 devm_extcon_register_notifier -EXPORT_SYMBOL vmlinux 0x1e4817dc skb_add_rx_frag -EXPORT_SYMBOL vmlinux 0x1e540746 xudma_get_device -EXPORT_SYMBOL vmlinux 0x1e57262a pagevec_lookup_range -EXPORT_SYMBOL vmlinux 0x1e5c5868 freeze_super -EXPORT_SYMBOL vmlinux 0x1e5dd50b inet_del_protocol -EXPORT_SYMBOL vmlinux 0x1e6adaa0 bitmap_print_bitmask_to_buf -EXPORT_SYMBOL vmlinux 0x1e6d26a8 strstr -EXPORT_SYMBOL vmlinux 0x1e749318 tcf_get_next_chain -EXPORT_SYMBOL vmlinux 0x1e8308a9 blk_mq_start_request -EXPORT_SYMBOL vmlinux 0x1e9edfb7 seq_hlist_start_head_rcu -EXPORT_SYMBOL vmlinux 0x1ea66ac7 fman_get_qman_channel_id -EXPORT_SYMBOL vmlinux 0x1eb46165 param_set_long -EXPORT_SYMBOL vmlinux 0x1eb93331 blk_mq_kick_requeue_list -EXPORT_SYMBOL vmlinux 0x1ecb1da3 pm860x_page_bulk_read -EXPORT_SYMBOL vmlinux 0x1ed637a0 mpage_writepage -EXPORT_SYMBOL vmlinux 0x1ed7eb60 __sg_free_table -EXPORT_SYMBOL vmlinux 0x1edb69d6 ktime_get_raw_ts64 -EXPORT_SYMBOL vmlinux 0x1ee1a799 blk_integrity_register -EXPORT_SYMBOL vmlinux 0x1efd824d security_tun_dev_attach -EXPORT_SYMBOL vmlinux 0x1efff800 dev_change_proto_down_reason -EXPORT_SYMBOL vmlinux 0x1f079850 genphy_read_abilities -EXPORT_SYMBOL vmlinux 0x1f220002 blk_dump_rq_flags -EXPORT_SYMBOL vmlinux 0x1f28461f dev_trans_start -EXPORT_SYMBOL vmlinux 0x1f2cff42 __alloc_disk_node -EXPORT_SYMBOL vmlinux 0x1f419fcd vc_resize -EXPORT_SYMBOL vmlinux 0x1f479633 netdev_info -EXPORT_SYMBOL vmlinux 0x1f4fe015 mark_buffer_async_write -EXPORT_SYMBOL vmlinux 0x1f5bbeb2 sockfd_lookup -EXPORT_SYMBOL vmlinux 0x1f830bb7 pci_pme_capable -EXPORT_SYMBOL vmlinux 0x1fb2415e dev_set_allmulti -EXPORT_SYMBOL vmlinux 0x1fbd16da ip_tos2prio -EXPORT_SYMBOL vmlinux 0x1fbf52fd skb_dequeue -EXPORT_SYMBOL vmlinux 0x1fd07fff kdb_grepping_flag -EXPORT_SYMBOL vmlinux 0x1fd793a5 __ip4_datagram_connect -EXPORT_SYMBOL vmlinux 0x1fd7f829 qdisc_watchdog_init -EXPORT_SYMBOL vmlinux 0x1fd84fbd of_n_addr_cells -EXPORT_SYMBOL vmlinux 0x1ffd7d86 mr_vif_seq_next -EXPORT_SYMBOL vmlinux 0x20000329 simple_strtoul -EXPORT_SYMBOL vmlinux 0x2008d469 i2c_smbus_write_i2c_block_data -EXPORT_SYMBOL vmlinux 0x200b2041 in6addr_any -EXPORT_SYMBOL vmlinux 0x20286572 vme_slave_request -EXPORT_SYMBOL vmlinux 0x20324db6 pm_vt_switch_unregister -EXPORT_SYMBOL vmlinux 0x2045c4ca nvdimm_bus_lock -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 0x2056ff04 netdev_port_same_parent_id -EXPORT_SYMBOL vmlinux 0x209236a2 posix_acl_to_xattr -EXPORT_SYMBOL vmlinux 0x2096236c xfrm_policy_register_afinfo -EXPORT_SYMBOL vmlinux 0x209e99ed flow_rule_match_control -EXPORT_SYMBOL vmlinux 0x20a789ac irq_set_chip_data -EXPORT_SYMBOL vmlinux 0x20c7aafc bio_init -EXPORT_SYMBOL vmlinux 0x20cbb30a __percpu_counter_init -EXPORT_SYMBOL vmlinux 0x20d65e40 fb_find_nearest_mode -EXPORT_SYMBOL vmlinux 0x20eadeb6 ip_compute_csum -EXPORT_SYMBOL vmlinux 0x20fff6ec ZSTD_DStreamInSize -EXPORT_SYMBOL vmlinux 0x21059cd7 audit_log_task_context -EXPORT_SYMBOL vmlinux 0x210a44c6 __page_frag_cache_drain -EXPORT_SYMBOL vmlinux 0x2112cfb5 __vlan_find_dev_deep_rcu -EXPORT_SYMBOL vmlinux 0x211606a4 blk_pm_runtime_init -EXPORT_SYMBOL vmlinux 0x2126a131 of_find_mipi_dsi_host_by_node -EXPORT_SYMBOL vmlinux 0x212897a4 __getblk_gfp -EXPORT_SYMBOL vmlinux 0x213a738d memregion_alloc -EXPORT_SYMBOL vmlinux 0x213e4965 ps2_is_keyboard_id -EXPORT_SYMBOL vmlinux 0x21640204 netif_receive_skb_core -EXPORT_SYMBOL vmlinux 0x218c4c50 input_set_min_poll_interval -EXPORT_SYMBOL vmlinux 0x218e600b pci_add_resource_offset -EXPORT_SYMBOL vmlinux 0x218e6801 __cond_resched_rwlock_write -EXPORT_SYMBOL vmlinux 0x218ebcdd pci_release_selected_regions -EXPORT_SYMBOL vmlinux 0x2196c612 param_get_charp -EXPORT_SYMBOL vmlinux 0x21a2af3f super_setup_bdi -EXPORT_SYMBOL vmlinux 0x21bdb523 errseq_check_and_advance -EXPORT_SYMBOL vmlinux 0x21be37e1 hdmi_avi_infoframe_check -EXPORT_SYMBOL vmlinux 0x21ccb054 acpi_device_set_power -EXPORT_SYMBOL vmlinux 0x21d19ab0 fb_set_var -EXPORT_SYMBOL vmlinux 0x21d42ce9 nla_append -EXPORT_SYMBOL vmlinux 0x21d57bb6 __skb_checksum_complete -EXPORT_SYMBOL vmlinux 0x21deab9e bio_integrity_prep -EXPORT_SYMBOL vmlinux 0x21e13cb3 inet_peer_xrlim_allow -EXPORT_SYMBOL vmlinux 0x21e75548 tcp_sendpage -EXPORT_SYMBOL vmlinux 0x21ef374c try_wait_for_completion -EXPORT_SYMBOL vmlinux 0x21f12eb3 inode_nohighmem -EXPORT_SYMBOL vmlinux 0x22046df8 scsi_test_unit_ready -EXPORT_SYMBOL vmlinux 0x221fd130 tegra_ivc_write_advance -EXPORT_SYMBOL vmlinux 0x222e7ce2 sysfs_streq -EXPORT_SYMBOL vmlinux 0x2234ca51 acpi_match_platform_list -EXPORT_SYMBOL vmlinux 0x2240913f netdev_upper_dev_unlink -EXPORT_SYMBOL vmlinux 0x22482daa radix_tree_delete -EXPORT_SYMBOL vmlinux 0x224ce651 xudma_free_gp_rflow_range -EXPORT_SYMBOL vmlinux 0x2251404c tcp_md5_hash_key -EXPORT_SYMBOL vmlinux 0x2257b417 fqdir_init -EXPORT_SYMBOL vmlinux 0x22789d3a rtc_add_group -EXPORT_SYMBOL vmlinux 0x227fc029 tcp_getsockopt -EXPORT_SYMBOL vmlinux 0x228683c0 is_acpi_device_node -EXPORT_SYMBOL vmlinux 0x228bd9b2 __frontswap_test -EXPORT_SYMBOL vmlinux 0x2294263e nf_register_net_hooks -EXPORT_SYMBOL vmlinux 0x229484cd netdev_stats_to_stats64 -EXPORT_SYMBOL vmlinux 0x22b325d5 kd_mksound -EXPORT_SYMBOL vmlinux 0x22ea883e qdisc_tree_reduce_backlog -EXPORT_SYMBOL vmlinux 0x22f9b346 remove_watch_from_object -EXPORT_SYMBOL vmlinux 0x2314b506 no_llseek -EXPORT_SYMBOL vmlinux 0x231aea82 fb_set_cmap -EXPORT_SYMBOL vmlinux 0x23213f13 write_one_page -EXPORT_SYMBOL vmlinux 0x2329614e prepare_to_swait_event -EXPORT_SYMBOL vmlinux 0x233a984b xfrm_policy_destroy -EXPORT_SYMBOL vmlinux 0x23559c51 qman_oos_fq -EXPORT_SYMBOL vmlinux 0x235772c6 secure_tcpv6_ts_off -EXPORT_SYMBOL vmlinux 0x2364c85a tasklet_init -EXPORT_SYMBOL vmlinux 0x237572cc __init_waitqueue_head -EXPORT_SYMBOL vmlinux 0x23767955 d_obtain_alias -EXPORT_SYMBOL vmlinux 0x237c229f backlight_force_update -EXPORT_SYMBOL vmlinux 0x237dad44 truncate_inode_pages -EXPORT_SYMBOL vmlinux 0x238b099f mipi_dsi_packet_format_is_short -EXPORT_SYMBOL vmlinux 0x2391f725 irq_stat -EXPORT_SYMBOL vmlinux 0x23a9cde9 pci_enable_ptm -EXPORT_SYMBOL vmlinux 0x23b9d6e2 mangle_path -EXPORT_SYMBOL vmlinux 0x23cf97db vm_event_states -EXPORT_SYMBOL vmlinux 0x23daa989 mipi_dsi_create_packet -EXPORT_SYMBOL vmlinux 0x23dc69fa simple_transaction_read -EXPORT_SYMBOL vmlinux 0x23f307c4 devm_get_clk_from_child -EXPORT_SYMBOL vmlinux 0x23fd3028 vmalloc_node -EXPORT_SYMBOL vmlinux 0x23fdb54c xfrm_replay_seqhi -EXPORT_SYMBOL vmlinux 0x24068ceb pm860x_bulk_read -EXPORT_SYMBOL vmlinux 0x240af0fb inet_get_local_port_range -EXPORT_SYMBOL vmlinux 0x24184473 kmem_cache_destroy -EXPORT_SYMBOL vmlinux 0x24212d86 __frontswap_invalidate_page -EXPORT_SYMBOL vmlinux 0x24428be5 strncpy_from_user -EXPORT_SYMBOL vmlinux 0x244ef49b blk_queue_bounce_limit -EXPORT_SYMBOL vmlinux 0x2459bbcc console_set_on_cmdline -EXPORT_SYMBOL vmlinux 0x2463d75d param_ops_byte -EXPORT_SYMBOL vmlinux 0x246d953f tcp_prot -EXPORT_SYMBOL vmlinux 0x247f1634 complete_request_key -EXPORT_SYMBOL vmlinux 0x2484adc3 __kfifo_to_user_r -EXPORT_SYMBOL vmlinux 0x2494135e clear_page_dirty_for_io -EXPORT_SYMBOL vmlinux 0x2499cf35 clk_bulk_get -EXPORT_SYMBOL vmlinux 0x24a983a3 phy_write_mmd -EXPORT_SYMBOL vmlinux 0x24b5aa31 dma_fence_signal_locked -EXPORT_SYMBOL vmlinux 0x24be4cb5 lease_get_mtime -EXPORT_SYMBOL vmlinux 0x24c01b10 vme_bus_error_handler -EXPORT_SYMBOL vmlinux 0x24c5d9dc of_get_i2c_adapter_by_node -EXPORT_SYMBOL vmlinux 0x24d273d1 add_timer -EXPORT_SYMBOL vmlinux 0x24d5521d tcf_qevent_dump -EXPORT_SYMBOL vmlinux 0x24f8ff14 i2c_smbus_read_byte -EXPORT_SYMBOL vmlinux 0x25047048 xfrm_alloc_spi -EXPORT_SYMBOL vmlinux 0x25055b45 rt_read_trylock -EXPORT_SYMBOL vmlinux 0x2505bf18 kstrtol_from_user -EXPORT_SYMBOL vmlinux 0x252332f1 __SCK__tp_func_mmap_lock_released -EXPORT_SYMBOL vmlinux 0x2524473d init_net -EXPORT_SYMBOL vmlinux 0x257442b9 mempool_init -EXPORT_SYMBOL vmlinux 0x25782221 d_alloc_parallel -EXPORT_SYMBOL vmlinux 0x25820c64 fs_overflowuid -EXPORT_SYMBOL vmlinux 0x258d2f76 net_dim_get_tx_moderation -EXPORT_SYMBOL vmlinux 0x25974000 wait_for_completion -EXPORT_SYMBOL vmlinux 0x25a4c758 serio_unregister_driver -EXPORT_SYMBOL vmlinux 0x25aaa346 vlan_uses_dev -EXPORT_SYMBOL vmlinux 0x25aadd31 __hw_addr_sync_dev -EXPORT_SYMBOL vmlinux 0x25c2c7d2 down_write -EXPORT_SYMBOL vmlinux 0x25d01571 inc_zone_page_state -EXPORT_SYMBOL vmlinux 0x25d9f361 devm_iounmap -EXPORT_SYMBOL vmlinux 0x25dd89ee jbd2_log_wait_commit -EXPORT_SYMBOL vmlinux 0x25e58a09 hdmi_avi_infoframe_init -EXPORT_SYMBOL vmlinux 0x25e7e0d9 cont_write_begin -EXPORT_SYMBOL vmlinux 0x25e9d4bd resource_list_free -EXPORT_SYMBOL vmlinux 0x25ebcbb4 phy_ethtool_get_stats -EXPORT_SYMBOL vmlinux 0x25f3d284 set_security_override -EXPORT_SYMBOL vmlinux 0x260a095a __sg_alloc_table -EXPORT_SYMBOL vmlinux 0x260ba2e3 blk_mq_queue_stopped -EXPORT_SYMBOL vmlinux 0x260e953c fwnode_mdio_find_device -EXPORT_SYMBOL vmlinux 0x2618ab7c ip_local_deliver -EXPORT_SYMBOL vmlinux 0x261e0669 input_unregister_handler -EXPORT_SYMBOL vmlinux 0x26325b91 xfrm_lookup_route -EXPORT_SYMBOL vmlinux 0x263beb75 ecryptfs_get_versions -EXPORT_SYMBOL vmlinux 0x263c3152 bcmp -EXPORT_SYMBOL vmlinux 0x263f0d1f qman_portal_set_iperiod -EXPORT_SYMBOL vmlinux 0x266d7a40 qdisc_hash_del -EXPORT_SYMBOL vmlinux 0x2688ec10 bitmap_zalloc -EXPORT_SYMBOL vmlinux 0x26897b52 mb_cache_entry_get -EXPORT_SYMBOL vmlinux 0x269b5770 __kfree_skb -EXPORT_SYMBOL vmlinux 0x269c4e84 flow_rule_alloc -EXPORT_SYMBOL vmlinux 0x26a3f9f1 brioctl_set -EXPORT_SYMBOL vmlinux 0x26a74b56 request_key_rcu -EXPORT_SYMBOL vmlinux 0x26c84c61 security_binder_set_context_mgr -EXPORT_SYMBOL vmlinux 0x26c92082 devm_clk_put -EXPORT_SYMBOL vmlinux 0x26cc73c3 complete_and_exit -EXPORT_SYMBOL vmlinux 0x26e298e0 unregister_memory_notifier -EXPORT_SYMBOL vmlinux 0x26e34f61 tty_kref_put -EXPORT_SYMBOL vmlinux 0x26f1955a inet6_del_offload -EXPORT_SYMBOL vmlinux 0x26f4bb82 register_netdev -EXPORT_SYMBOL vmlinux 0x270cf88f dump_stack_lvl -EXPORT_SYMBOL vmlinux 0x270d4242 _copy_from_iter_nocache -EXPORT_SYMBOL vmlinux 0x271178ac mount_single -EXPORT_SYMBOL vmlinux 0x2712e08d inet_frag_destroy -EXPORT_SYMBOL vmlinux 0x271832fe inet_rtx_syn_ack -EXPORT_SYMBOL vmlinux 0x271cba95 acpi_bus_private_data_handler -EXPORT_SYMBOL vmlinux 0x2722f879 pci_fixup_device -EXPORT_SYMBOL vmlinux 0x272a8933 udp_memory_allocated -EXPORT_SYMBOL vmlinux 0x272f10fb tcf_register_action -EXPORT_SYMBOL vmlinux 0x2733eaf7 scsi_dev_info_list_add_keyed -EXPORT_SYMBOL vmlinux 0x273a0089 __frontswap_store -EXPORT_SYMBOL vmlinux 0x27479d14 param_free_charp -EXPORT_SYMBOL vmlinux 0x275d6ba0 d_exact_alias -EXPORT_SYMBOL vmlinux 0x275dfee4 ucc_slow_free -EXPORT_SYMBOL vmlinux 0x275e9f85 set_nlink -EXPORT_SYMBOL vmlinux 0x275f3d49 hdmi_vendor_infoframe_check -EXPORT_SYMBOL vmlinux 0x276548a4 i2c_transfer -EXPORT_SYMBOL vmlinux 0x27756bc8 scsi_sanitize_inquiry_string -EXPORT_SYMBOL vmlinux 0x2779a87e pci_bus_set_ops -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 0x27a3e9d4 dev_printk_emit -EXPORT_SYMBOL vmlinux 0x27a58247 vme_unregister_driver -EXPORT_SYMBOL vmlinux 0x27b4ca5e uart_register_driver -EXPORT_SYMBOL vmlinux 0x27bbf221 disable_irq_nosync -EXPORT_SYMBOL vmlinux 0x27c3c728 qman_release_fqid -EXPORT_SYMBOL vmlinux 0x27cdca93 pci_add_resource -EXPORT_SYMBOL vmlinux 0x27fc5d8e of_graph_parse_endpoint -EXPORT_SYMBOL vmlinux 0x27fcd70a ___pskb_trim -EXPORT_SYMBOL vmlinux 0x2800db84 xfrm_state_lookup -EXPORT_SYMBOL vmlinux 0x280ae603 fman_get_mem_region -EXPORT_SYMBOL vmlinux 0x281823c5 __kfifo_out_peek -EXPORT_SYMBOL vmlinux 0x2825fd4b mempool_exit -EXPORT_SYMBOL vmlinux 0x28305729 iov_iter_kvec -EXPORT_SYMBOL vmlinux 0x283a38cd tcp_openreq_init_rwin -EXPORT_SYMBOL vmlinux 0x283a6cb2 textsearch_unregister -EXPORT_SYMBOL vmlinux 0x2840c332 of_mdio_find_device -EXPORT_SYMBOL vmlinux 0x284789f5 of_match_device -EXPORT_SYMBOL vmlinux 0x2868fcee ppp_unit_number -EXPORT_SYMBOL vmlinux 0x28726087 flow_rule_match_enc_ipv6_addrs -EXPORT_SYMBOL vmlinux 0x2872efd2 kiocb_set_cancel_fn -EXPORT_SYMBOL vmlinux 0x2875a315 utf32_to_utf8 -EXPORT_SYMBOL vmlinux 0x2881976e genphy_aneg_done -EXPORT_SYMBOL vmlinux 0x28b69d15 dquot_alloc_inode -EXPORT_SYMBOL vmlinux 0x28b8985e mmc_unregister_driver -EXPORT_SYMBOL vmlinux 0x28bf50af insert_inode_locked4 -EXPORT_SYMBOL vmlinux 0x28c0d566 rproc_remove_subdev -EXPORT_SYMBOL vmlinux 0x28c45f58 tty_register_driver -EXPORT_SYMBOL vmlinux 0x28c7a652 __pskb_pull_tail -EXPORT_SYMBOL vmlinux 0x28e00489 pcie_capability_read_dword -EXPORT_SYMBOL vmlinux 0x28e27a90 tcp_child_process -EXPORT_SYMBOL vmlinux 0x28eaa197 arp_create -EXPORT_SYMBOL vmlinux 0x28ee8940 pci_write_vpd -EXPORT_SYMBOL vmlinux 0x28fba560 dma_fence_add_callback -EXPORT_SYMBOL vmlinux 0x29052ede amba_device_unregister -EXPORT_SYMBOL vmlinux 0x290b4550 wake_up_process -EXPORT_SYMBOL vmlinux 0x290b651e pcie_get_mps -EXPORT_SYMBOL vmlinux 0x29117ea6 radix_tree_tag_get -EXPORT_SYMBOL vmlinux 0x2920d221 rt_write_unlock -EXPORT_SYMBOL vmlinux 0x2926144e udp_lib_get_port -EXPORT_SYMBOL vmlinux 0x2938654c flow_rule_match_ports -EXPORT_SYMBOL vmlinux 0x293e13ec param_ops_short -EXPORT_SYMBOL vmlinux 0x294a9a6d bio_devname -EXPORT_SYMBOL vmlinux 0x294bc5b0 vme_register_driver -EXPORT_SYMBOL vmlinux 0x295d2b56 seqno_fence_ops -EXPORT_SYMBOL vmlinux 0x2985966d tty_port_block_til_ready -EXPORT_SYMBOL vmlinux 0x298b50d0 uart_resume_port -EXPORT_SYMBOL vmlinux 0x298bbd99 tty_port_free_xmit_buf -EXPORT_SYMBOL vmlinux 0x29935dff fman_set_mac_max_frame -EXPORT_SYMBOL vmlinux 0x299573e8 nobh_write_begin -EXPORT_SYMBOL vmlinux 0x299f634f get_bitmap_from_slot -EXPORT_SYMBOL vmlinux 0x29a8527d cfb_imageblit -EXPORT_SYMBOL vmlinux 0x29b2b546 remap_vmalloc_range -EXPORT_SYMBOL vmlinux 0x29d0f942 gen_pool_best_fit -EXPORT_SYMBOL vmlinux 0x29d92590 block_write_full_page -EXPORT_SYMBOL vmlinux 0x29e12b1f devm_extcon_unregister_notifier_all -EXPORT_SYMBOL vmlinux 0x29e1e204 hdmi_audio_infoframe_pack -EXPORT_SYMBOL vmlinux 0x29ea6eb7 generic_file_read_iter -EXPORT_SYMBOL vmlinux 0x2a0050b7 fs_param_is_u32 -EXPORT_SYMBOL vmlinux 0x2a303d4d check_signature -EXPORT_SYMBOL vmlinux 0x2a42ad50 inet_put_port -EXPORT_SYMBOL vmlinux 0x2a48a9f0 inet_frag_queue_insert -EXPORT_SYMBOL vmlinux 0x2a617d70 ww_mutex_lock_interruptible -EXPORT_SYMBOL vmlinux 0x2a7ee18a vmalloc_to_page -EXPORT_SYMBOL vmlinux 0x2a928918 slhc_free -EXPORT_SYMBOL vmlinux 0x2a9a3905 vme_master_get -EXPORT_SYMBOL vmlinux 0x2aa23211 radix_tree_delete_item -EXPORT_SYMBOL vmlinux 0x2aabaf9d xudma_tchan_get -EXPORT_SYMBOL vmlinux 0x2aabcdc8 vmalloc_array -EXPORT_SYMBOL vmlinux 0x2ab2ee91 brcmstb_get_product_id -EXPORT_SYMBOL vmlinux 0x2ab66464 mem_cgroup_from_task -EXPORT_SYMBOL vmlinux 0x2abad7c1 of_graph_get_remote_port_parent -EXPORT_SYMBOL vmlinux 0x2ad364a9 __set_page_dirty_buffers -EXPORT_SYMBOL vmlinux 0x2afc11e2 __dev_get_by_flags -EXPORT_SYMBOL vmlinux 0x2b014275 serial8250_register_8250_port -EXPORT_SYMBOL vmlinux 0x2b193db7 ip_sock_set_tos -EXPORT_SYMBOL vmlinux 0x2b1abce3 fman_has_errata_a050385 -EXPORT_SYMBOL vmlinux 0x2b2e7d6b acpi_bus_get_status -EXPORT_SYMBOL vmlinux 0x2b344083 of_get_next_child -EXPORT_SYMBOL vmlinux 0x2b34531c dma_async_tx_descriptor_init -EXPORT_SYMBOL vmlinux 0x2b4e73ea inet_csk_prepare_forced_close -EXPORT_SYMBOL vmlinux 0x2b5bb843 register_tcf_proto_ops -EXPORT_SYMBOL vmlinux 0x2b68bd2f del_timer -EXPORT_SYMBOL vmlinux 0x2b9b9e58 __mdiobus_write -EXPORT_SYMBOL vmlinux 0x2b9da7a4 genl_lock -EXPORT_SYMBOL vmlinux 0x2ba3bb6d wireless_spy_update -EXPORT_SYMBOL vmlinux 0x2babd845 __skb_warn_lro_forwarding -EXPORT_SYMBOL vmlinux 0x2bacf3d5 bio_alloc_bioset -EXPORT_SYMBOL vmlinux 0x2bbc4957 ptp_cancel_worker_sync -EXPORT_SYMBOL vmlinux 0x2bc45464 km_query -EXPORT_SYMBOL vmlinux 0x2bd60ab9 acpi_reset -EXPORT_SYMBOL vmlinux 0x2bfbab10 __memmove -EXPORT_SYMBOL vmlinux 0x2c1842d5 remove_arg_zero -EXPORT_SYMBOL vmlinux 0x2c21e5fc backlight_device_unregister -EXPORT_SYMBOL vmlinux 0x2c256e1f input_scancode_to_scalar -EXPORT_SYMBOL vmlinux 0x2c2a6972 __f_setown -EXPORT_SYMBOL vmlinux 0x2c329e54 tegra_powergate_sequence_power_up -EXPORT_SYMBOL vmlinux 0x2c5c610d pci_get_domain_bus_and_slot -EXPORT_SYMBOL vmlinux 0x2c761bd4 vfs_iter_write -EXPORT_SYMBOL vmlinux 0x2c81b6f1 of_node_get -EXPORT_SYMBOL vmlinux 0x2c832a69 pcim_iomap_regions -EXPORT_SYMBOL vmlinux 0x2c88adca dev_addr_flush -EXPORT_SYMBOL vmlinux 0x2c91e17c vm_get_page_prot -EXPORT_SYMBOL vmlinux 0x2c9fd530 locks_delete_block -EXPORT_SYMBOL vmlinux 0x2ca2d0d5 dev_mc_add -EXPORT_SYMBOL vmlinux 0x2ca9809b pneigh_enqueue -EXPORT_SYMBOL vmlinux 0x2ccd059a dim_on_top -EXPORT_SYMBOL vmlinux 0x2cceae90 kmem_cache_free_bulk -EXPORT_SYMBOL vmlinux 0x2cdeed8e alloc_buffer_head -EXPORT_SYMBOL vmlinux 0x2ceb1cb0 scsi_rescan_device -EXPORT_SYMBOL vmlinux 0x2cf6df14 md_bitmap_cond_end_sync -EXPORT_SYMBOL vmlinux 0x2cfa0241 nvdimm_namespace_disk_name -EXPORT_SYMBOL vmlinux 0x2cffd52f filemap_flush -EXPORT_SYMBOL vmlinux 0x2d09ebc4 __ip_options_compile -EXPORT_SYMBOL vmlinux 0x2d140a58 genl_unlock -EXPORT_SYMBOL vmlinux 0x2d151c24 dev_uc_unsync -EXPORT_SYMBOL vmlinux 0x2d156260 ip6_dst_hoplimit -EXPORT_SYMBOL vmlinux 0x2d192c70 sg_zero_buffer -EXPORT_SYMBOL vmlinux 0x2d2874bd iov_iter_npages -EXPORT_SYMBOL vmlinux 0x2d2f1376 ps2_init -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 0x2d64a687 ptp_clock_event -EXPORT_SYMBOL vmlinux 0x2d8dffa9 tcf_block_netif_keep_dst -EXPORT_SYMBOL vmlinux 0x2d912bca dmi_get_bios_year -EXPORT_SYMBOL vmlinux 0x2d994605 security_inode_copy_up_xattr -EXPORT_SYMBOL vmlinux 0x2dae3dd0 scsi_dma_map -EXPORT_SYMBOL vmlinux 0x2dc74904 pskb_trim_rcsum_slow -EXPORT_SYMBOL vmlinux 0x2dcc8467 module_put -EXPORT_SYMBOL vmlinux 0x2dce2f1c __irq_regs -EXPORT_SYMBOL vmlinux 0x2de125c0 page_frag_alloc_align -EXPORT_SYMBOL vmlinux 0x2de794e2 dma_fence_default_wait -EXPORT_SYMBOL vmlinux 0x2df281a7 mark_info_dirty -EXPORT_SYMBOL vmlinux 0x2df9f9c2 dquot_destroy -EXPORT_SYMBOL vmlinux 0x2e0cf569 dma_fence_chain_find_seqno -EXPORT_SYMBOL vmlinux 0x2e1547ac get_cached_acl_rcu -EXPORT_SYMBOL vmlinux 0x2e1590f7 phy_drivers_register -EXPORT_SYMBOL vmlinux 0x2e1ca751 clk_put -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 0x2e56c6c0 d_rehash -EXPORT_SYMBOL vmlinux 0x2e5b27da xudma_alloc_gp_rflow_range -EXPORT_SYMBOL vmlinux 0x2e5fe036 __skb_ext_put -EXPORT_SYMBOL vmlinux 0x2e6d7317 setattr_copy -EXPORT_SYMBOL vmlinux 0x2e72a286 skb_checksum_trimmed -EXPORT_SYMBOL vmlinux 0x2e74fbbb f_setown -EXPORT_SYMBOL vmlinux 0x2e7caac5 gen_pool_dma_zalloc_align -EXPORT_SYMBOL vmlinux 0x2ea00c0c xfrm6_rcv -EXPORT_SYMBOL vmlinux 0x2ec6bba0 errseq_set -EXPORT_SYMBOL vmlinux 0x2ed18132 phy_attach_direct -EXPORT_SYMBOL vmlinux 0x2ed7fd3a __qdisc_calculate_pkt_len -EXPORT_SYMBOL vmlinux 0x2edb4207 blk_mq_stop_hw_queue -EXPORT_SYMBOL vmlinux 0x2edd42da nd_dev_to_uuid -EXPORT_SYMBOL vmlinux 0x2ee4c2b1 hdmi_avi_infoframe_pack_only -EXPORT_SYMBOL vmlinux 0x2eea912c get_random_bytes_arch -EXPORT_SYMBOL vmlinux 0x2eeaaedf mr_mfc_find_any -EXPORT_SYMBOL vmlinux 0x2f03fc4b security_secmark_refcount_inc -EXPORT_SYMBOL vmlinux 0x2f07785f clk_get -EXPORT_SYMBOL vmlinux 0x2f1254d1 ucc_tdm_init -EXPORT_SYMBOL vmlinux 0x2f12bc0b pci_fixup_cardbus -EXPORT_SYMBOL vmlinux 0x2f2e91b2 security_ib_alloc_security -EXPORT_SYMBOL vmlinux 0x2f333aab imx_scu_get_handle -EXPORT_SYMBOL vmlinux 0x2f384db3 acpi_is_video_device -EXPORT_SYMBOL vmlinux 0x2f3a90af __inode_add_bytes -EXPORT_SYMBOL vmlinux 0x2f4d1358 mdiobus_get_phy -EXPORT_SYMBOL vmlinux 0x2f52f91a get_mem_cgroup_from_mm -EXPORT_SYMBOL vmlinux 0x2f561b9c fman_port_get_device -EXPORT_SYMBOL vmlinux 0x2f5deafb sock_bindtoindex -EXPORT_SYMBOL vmlinux 0x2f6854c8 nf_ip6_checksum -EXPORT_SYMBOL vmlinux 0x2f6c941d open_with_fake_path -EXPORT_SYMBOL vmlinux 0x2f7754a8 dma_pool_free -EXPORT_SYMBOL vmlinux 0x2fac4158 try_to_free_buffers -EXPORT_SYMBOL vmlinux 0x2faebac7 key_payload_reserve -EXPORT_SYMBOL vmlinux 0x2fb69a7c jbd2_journal_check_available_features -EXPORT_SYMBOL vmlinux 0x2fdf0bcf inet_addr_type -EXPORT_SYMBOL vmlinux 0x2fe252cc unregister_inet6addr_notifier -EXPORT_SYMBOL vmlinux 0x2fe5b535 qcom_scm_assign_mem -EXPORT_SYMBOL vmlinux 0x2fef0043 sock_kzfree_s -EXPORT_SYMBOL vmlinux 0x2ff23f82 icmp_ndo_send -EXPORT_SYMBOL vmlinux 0x30160e47 sock_alloc_send_skb -EXPORT_SYMBOL vmlinux 0x302bcce0 fb_find_mode -EXPORT_SYMBOL vmlinux 0x30361c23 vfs_dedupe_file_range -EXPORT_SYMBOL vmlinux 0x303c5fb4 blk_mq_tagset_wait_completed_request -EXPORT_SYMBOL vmlinux 0x3042ecb1 inet6_release -EXPORT_SYMBOL vmlinux 0x304556d2 __dquot_transfer -EXPORT_SYMBOL vmlinux 0x3050fea0 __traceiter_spi_transfer_stop -EXPORT_SYMBOL vmlinux 0x3052fecd ptp_convert_timestamp -EXPORT_SYMBOL vmlinux 0x3081afb5 of_node_name_eq -EXPORT_SYMBOL vmlinux 0x3096be16 names_cachep -EXPORT_SYMBOL vmlinux 0x3098c979 sk_stream_error -EXPORT_SYMBOL vmlinux 0x309ee22c xfrm_if_register_cb -EXPORT_SYMBOL vmlinux 0x30a80826 __kfifo_from_user -EXPORT_SYMBOL vmlinux 0x30acfde9 hsiphash_2u32 -EXPORT_SYMBOL vmlinux 0x30bd630d inet_bind -EXPORT_SYMBOL vmlinux 0x30c5f2d9 input_get_timestamp -EXPORT_SYMBOL vmlinux 0x30d36d00 mdiobb_read -EXPORT_SYMBOL vmlinux 0x30d8d0dc vmf_insert_mixed_mkwrite -EXPORT_SYMBOL vmlinux 0x30da4907 xfrm6_rcv_encap -EXPORT_SYMBOL vmlinux 0x30de3dac xfrm_state_register_afinfo -EXPORT_SYMBOL vmlinux 0x30e74134 tty_termios_copy_hw -EXPORT_SYMBOL vmlinux 0x30e96de0 bfifo_qdisc_ops -EXPORT_SYMBOL vmlinux 0x30eeccea rt_read_lock -EXPORT_SYMBOL vmlinux 0x30f10a4b locks_init_lock -EXPORT_SYMBOL vmlinux 0x3102d70b frontswap_curr_pages -EXPORT_SYMBOL vmlinux 0x311b8f99 mmc_cqe_start_req -EXPORT_SYMBOL vmlinux 0x3126a9e8 siphash_1u64 -EXPORT_SYMBOL vmlinux 0x312af4eb mii_link_ok -EXPORT_SYMBOL vmlinux 0x3134fe9b blk_rq_map_user_iov -EXPORT_SYMBOL vmlinux 0x3136256f scsi_print_sense -EXPORT_SYMBOL vmlinux 0x31706414 kernel_sock_ip_overhead -EXPORT_SYMBOL vmlinux 0x31773c75 seg6_hmac_info_lookup -EXPORT_SYMBOL vmlinux 0x318a5183 alloc_anon_inode -EXPORT_SYMBOL vmlinux 0x3192a6d4 blk_mq_delay_run_hw_queue -EXPORT_SYMBOL vmlinux 0x31980bfe mmc_gpio_get_cd -EXPORT_SYMBOL vmlinux 0x31a2a706 pps_unregister_source -EXPORT_SYMBOL vmlinux 0x31a4767f qcom_scm_hdcp_available -EXPORT_SYMBOL vmlinux 0x31b9195c __local_bh_disable_ip -EXPORT_SYMBOL vmlinux 0x31bbb6bc phy_request_interrupt -EXPORT_SYMBOL vmlinux 0x31d9f07d security_inet_conn_established -EXPORT_SYMBOL vmlinux 0x31de269e netdev_lower_get_next_private_rcu -EXPORT_SYMBOL vmlinux 0x31e0c9d5 mipi_dsi_dcs_nop -EXPORT_SYMBOL vmlinux 0x31e52b7c pci_release_region -EXPORT_SYMBOL vmlinux 0x31e73d2c udp_lib_unhash -EXPORT_SYMBOL vmlinux 0x31f45c40 dev_lstats_read -EXPORT_SYMBOL vmlinux 0x31f8a2c7 put_cmsg_scm_timestamping -EXPORT_SYMBOL vmlinux 0x320bc49c udp_gro_receive -EXPORT_SYMBOL vmlinux 0x321a27e8 security_path_unlink -EXPORT_SYMBOL vmlinux 0x323705ff fman_get_bmi_max_fifo_size -EXPORT_SYMBOL vmlinux 0x32394d4b qe_issue_cmd -EXPORT_SYMBOL vmlinux 0x323c8035 dma_fence_free -EXPORT_SYMBOL vmlinux 0x3250967e security_unix_may_send -EXPORT_SYMBOL vmlinux 0x325456f8 __icmp_send -EXPORT_SYMBOL vmlinux 0x3255b013 sock_queue_rcv_skb -EXPORT_SYMBOL vmlinux 0x325c348c __scm_send -EXPORT_SYMBOL vmlinux 0x32631e66 inet_dev_addr_type -EXPORT_SYMBOL vmlinux 0x327c84bf vme_lm_attach -EXPORT_SYMBOL vmlinux 0x328108f5 dev_get_iflink -EXPORT_SYMBOL vmlinux 0x3283e6b0 prandom_seed_full_state -EXPORT_SYMBOL vmlinux 0x329eb9a3 dquot_load_quota_sb -EXPORT_SYMBOL vmlinux 0x329fa10c fman_set_mac_active_pause -EXPORT_SYMBOL vmlinux 0x32b183ef pnp_device_detach -EXPORT_SYMBOL vmlinux 0x32ccf47e lock_rename -EXPORT_SYMBOL vmlinux 0x32ce3777 radix_tree_preload -EXPORT_SYMBOL vmlinux 0x32e6f1a0 acpi_video_backlight_string -EXPORT_SYMBOL vmlinux 0x32ee95a4 proto_unregister -EXPORT_SYMBOL vmlinux 0x32f79703 xa_erase -EXPORT_SYMBOL vmlinux 0x32ff87a1 tcp_v4_destroy_sock -EXPORT_SYMBOL vmlinux 0x33037fd8 logic_outl -EXPORT_SYMBOL vmlinux 0x3305175b genl_unregister_family -EXPORT_SYMBOL vmlinux 0x330a23e7 dcache_dir_close -EXPORT_SYMBOL vmlinux 0x3325aa65 copy_page_from_iter -EXPORT_SYMBOL vmlinux 0x33298565 ipv6_dev_mc_inc -EXPORT_SYMBOL vmlinux 0x33353723 security_locked_down -EXPORT_SYMBOL vmlinux 0x333ac265 textsearch_find_continuous -EXPORT_SYMBOL vmlinux 0x334fd1dd md_bitmap_sync_with_cluster -EXPORT_SYMBOL vmlinux 0x335f15b2 _dev_emerg -EXPORT_SYMBOL vmlinux 0x3363293d acpi_bus_unregister_driver -EXPORT_SYMBOL vmlinux 0x33736a1d __genradix_ptr_alloc -EXPORT_SYMBOL vmlinux 0x3397d392 pnp_unregister_card_driver -EXPORT_SYMBOL vmlinux 0x33a660e2 mipi_dsi_host_unregister -EXPORT_SYMBOL vmlinux 0x33cbd77a pci_enable_msi -EXPORT_SYMBOL vmlinux 0x33dd061e phy_device_free -EXPORT_SYMBOL vmlinux 0x33df6a40 __ip_mc_dec_group -EXPORT_SYMBOL vmlinux 0x33e14407 cdev_device_del -EXPORT_SYMBOL vmlinux 0x33e2955e blk_rq_append_bio -EXPORT_SYMBOL vmlinux 0x33f0768c cpufreq_quick_get_max -EXPORT_SYMBOL vmlinux 0x33f87489 pci_free_irq -EXPORT_SYMBOL vmlinux 0x33f9cf1f netdev_lower_get_next -EXPORT_SYMBOL vmlinux 0x33fc2a31 get_user_ifreq -EXPORT_SYMBOL vmlinux 0x33fcf44a __kfifo_out_r -EXPORT_SYMBOL vmlinux 0x340dfe50 inet_sendmsg -EXPORT_SYMBOL vmlinux 0x342aa428 inet_sock_destruct -EXPORT_SYMBOL vmlinux 0x343ff601 sock_no_sendpage -EXPORT_SYMBOL vmlinux 0x344a1d25 pm860x_set_bits -EXPORT_SYMBOL vmlinux 0x3457c8a2 tty_port_put -EXPORT_SYMBOL vmlinux 0x346183d3 set_groups -EXPORT_SYMBOL vmlinux 0x3482bb63 page_pool_destroy -EXPORT_SYMBOL vmlinux 0x349cba85 strchr -EXPORT_SYMBOL vmlinux 0x349dfff2 may_setattr -EXPORT_SYMBOL vmlinux 0x34a1f7e3 acpi_processor_get_psd -EXPORT_SYMBOL vmlinux 0x34b16334 __next_node_in -EXPORT_SYMBOL vmlinux 0x34c21ddb vfs_iocb_iter_read -EXPORT_SYMBOL vmlinux 0x34c39a07 seq_write -EXPORT_SYMBOL vmlinux 0x34c6bc05 dquot_drop -EXPORT_SYMBOL vmlinux 0x34c7cdbc lookup_bdev -EXPORT_SYMBOL vmlinux 0x34db050b _raw_spin_lock_irqsave -EXPORT_SYMBOL vmlinux 0x34f3484e security_tun_dev_attach_queue -EXPORT_SYMBOL vmlinux 0x34f86191 skb_eth_push -EXPORT_SYMBOL vmlinux 0x3517383e register_reboot_notifier -EXPORT_SYMBOL vmlinux 0x352ea5b9 no_seek_end_llseek_size -EXPORT_SYMBOL vmlinux 0x353204c9 md_bitmap_update_sb -EXPORT_SYMBOL vmlinux 0x353679b2 dput -EXPORT_SYMBOL vmlinux 0x35378020 qdisc_offload_dump_helper -EXPORT_SYMBOL vmlinux 0x3539f11b match_strlcpy -EXPORT_SYMBOL vmlinux 0x353b7cad tcp_connect -EXPORT_SYMBOL vmlinux 0x35414cb9 proc_set_user -EXPORT_SYMBOL vmlinux 0x356461c8 rtc_time64_to_tm -EXPORT_SYMBOL vmlinux 0x356e028b phy_do_ioctl -EXPORT_SYMBOL vmlinux 0x358d1398 simple_link -EXPORT_SYMBOL vmlinux 0x359d417b napi_schedule_prep -EXPORT_SYMBOL vmlinux 0x35a3c753 dev_get_stats -EXPORT_SYMBOL vmlinux 0x35a88f28 zlib_inflateInit2 -EXPORT_SYMBOL vmlinux 0x35ab4d01 nf_log_unregister -EXPORT_SYMBOL vmlinux 0x35b42490 gnet_stats_start_copy -EXPORT_SYMBOL vmlinux 0x35b7d487 tty_insert_flip_string_fixed_flag -EXPORT_SYMBOL vmlinux 0x35b8912b free_cgroup_ns -EXPORT_SYMBOL vmlinux 0x35b9fb80 devfreq_register_opp_notifier -EXPORT_SYMBOL vmlinux 0x35bee12a of_get_parent -EXPORT_SYMBOL vmlinux 0x35c7b20e configfs_depend_item_unlocked -EXPORT_SYMBOL vmlinux 0x35e92992 __napi_alloc_skb -EXPORT_SYMBOL vmlinux 0x360b1afe probe_irq_mask -EXPORT_SYMBOL vmlinux 0x36128574 param_ops_bint -EXPORT_SYMBOL vmlinux 0x361e92c3 netif_set_xps_queue -EXPORT_SYMBOL vmlinux 0x362331f6 register_md_cluster_operations -EXPORT_SYMBOL vmlinux 0x363b28fb __skb_ext_del -EXPORT_SYMBOL vmlinux 0x365acda7 set_normalized_timespec64 -EXPORT_SYMBOL vmlinux 0x365e33d1 pci_request_regions -EXPORT_SYMBOL vmlinux 0x365e7911 kstrdup_const -EXPORT_SYMBOL vmlinux 0x3686cec1 from_kgid -EXPORT_SYMBOL vmlinux 0x36b6ebbf down_killable -EXPORT_SYMBOL vmlinux 0x36c99380 try_to_release_page -EXPORT_SYMBOL vmlinux 0x36fca127 __devm_release_region -EXPORT_SYMBOL vmlinux 0x36fe2db5 tcp_seq_stop -EXPORT_SYMBOL vmlinux 0x3707f2fb mdio_driver_register -EXPORT_SYMBOL vmlinux 0x371ec529 netdev_set_tc_queue -EXPORT_SYMBOL vmlinux 0x3722ecfe config_item_get -EXPORT_SYMBOL vmlinux 0x3736a888 mark_buffer_dirty_inode -EXPORT_SYMBOL vmlinux 0x3737d9a9 ZSTD_DStreamWorkspaceBound -EXPORT_SYMBOL vmlinux 0x3744cf36 vmalloc_to_pfn -EXPORT_SYMBOL vmlinux 0x3748b091 phy_init_eee -EXPORT_SYMBOL vmlinux 0x3750610b handle_edge_irq -EXPORT_SYMBOL vmlinux 0x3750c1d7 unregister_tcf_proto_ops -EXPORT_SYMBOL vmlinux 0x3755f990 gf128mul_init_64k_bbe -EXPORT_SYMBOL vmlinux 0x37634eba mmc_retune_pause -EXPORT_SYMBOL vmlinux 0x376db4a2 twl6040_clear_bits -EXPORT_SYMBOL vmlinux 0x37745995 __scsi_iterate_devices -EXPORT_SYMBOL vmlinux 0x37746fde ZSTD_initDStream -EXPORT_SYMBOL vmlinux 0x37790689 dcb_ieee_delapp -EXPORT_SYMBOL vmlinux 0x377d8004 acpi_error -EXPORT_SYMBOL vmlinux 0x3786b188 mmc_get_card -EXPORT_SYMBOL vmlinux 0x3792e0b7 consume_skb -EXPORT_SYMBOL vmlinux 0x37a6fc69 netif_napi_add -EXPORT_SYMBOL vmlinux 0x37ae25a5 __blockdev_direct_IO -EXPORT_SYMBOL vmlinux 0x37b6978b tty_port_alloc_xmit_buf -EXPORT_SYMBOL vmlinux 0x37b8b39e screen_info -EXPORT_SYMBOL vmlinux 0x37bbc738 page_mapped -EXPORT_SYMBOL vmlinux 0x37befc70 jiffies_to_msecs -EXPORT_SYMBOL vmlinux 0x37cd5c5c pcix_get_mmrbc -EXPORT_SYMBOL vmlinux 0x37d51020 __seq_open_private -EXPORT_SYMBOL vmlinux 0x37db8f19 dmi_get_date -EXPORT_SYMBOL vmlinux 0x37efe41d tty_unlock -EXPORT_SYMBOL vmlinux 0x37f19208 pcibus_to_node -EXPORT_SYMBOL vmlinux 0x37f2f0a8 i2c_smbus_write_byte -EXPORT_SYMBOL vmlinux 0x38137b04 pci_bus_claim_resources -EXPORT_SYMBOL vmlinux 0x381a798a setup_max_cpus -EXPORT_SYMBOL vmlinux 0x38304157 audit_log -EXPORT_SYMBOL vmlinux 0x383accf3 rc5t583_ext_power_req_config -EXPORT_SYMBOL vmlinux 0x384de8d5 phy_ethtool_get_wol -EXPORT_SYMBOL vmlinux 0x3854774b kstrtoll -EXPORT_SYMBOL vmlinux 0x385b7364 lockref_put_return -EXPORT_SYMBOL vmlinux 0x387874a2 vfs_symlink -EXPORT_SYMBOL vmlinux 0x388447ec configfs_register_group -EXPORT_SYMBOL vmlinux 0x38869d88 kstat -EXPORT_SYMBOL vmlinux 0x3891ffc8 ecryptfs_fill_auth_tok -EXPORT_SYMBOL vmlinux 0x3895a6c0 crypto_sha256_update -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 0x38b5de3f insert_inode_locked -EXPORT_SYMBOL vmlinux 0x38d35290 freezing_slow_path -EXPORT_SYMBOL vmlinux 0x38f34024 tegra_prod_set_boot_init -EXPORT_SYMBOL vmlinux 0x38f48af7 put_user_ifreq -EXPORT_SYMBOL vmlinux 0x39049900 radix_tree_tag_set -EXPORT_SYMBOL vmlinux 0x3928efe9 __per_cpu_offset -EXPORT_SYMBOL vmlinux 0x392b1fea wait_for_completion_io -EXPORT_SYMBOL vmlinux 0x392ca660 generic_file_direct_write -EXPORT_SYMBOL vmlinux 0x3939f8f0 rfkill_pause_polling -EXPORT_SYMBOL vmlinux 0x39461d6a in_egroup_p -EXPORT_SYMBOL vmlinux 0x394a1e11 phy_sfp_attach -EXPORT_SYMBOL vmlinux 0x394a522f tty_unregister_device -EXPORT_SYMBOL vmlinux 0x3953ca10 vfs_fsync_range -EXPORT_SYMBOL vmlinux 0x3955fcf6 __kfifo_in_r -EXPORT_SYMBOL vmlinux 0x395d1d36 fman_get_revision -EXPORT_SYMBOL vmlinux 0x3987b9da blk_mq_start_hw_queues -EXPORT_SYMBOL vmlinux 0x398c5cc1 generic_mii_ioctl -EXPORT_SYMBOL vmlinux 0x39991865 icmp_global_allow -EXPORT_SYMBOL vmlinux 0x399ad043 __kfifo_dma_out_finish_r -EXPORT_SYMBOL vmlinux 0x399d5650 wait_on_page_private_2 -EXPORT_SYMBOL vmlinux 0x39b52d19 __bitmap_and -EXPORT_SYMBOL vmlinux 0x39b8d49c cpu_rmap_update -EXPORT_SYMBOL vmlinux 0x39be4b8e qman_volatile_dequeue -EXPORT_SYMBOL vmlinux 0x39fa0d30 flow_block_cb_lookup -EXPORT_SYMBOL vmlinux 0x3a09e5bc xfrm_policy_byid -EXPORT_SYMBOL vmlinux 0x3a13f54a sgl_alloc -EXPORT_SYMBOL vmlinux 0x3a1d002c inet_del_offload -EXPORT_SYMBOL vmlinux 0x3a2246c8 tcp_peek_len -EXPORT_SYMBOL vmlinux 0x3a2f6702 sg_alloc_table -EXPORT_SYMBOL vmlinux 0x3a3a1978 prepare_to_wait_exclusive -EXPORT_SYMBOL vmlinux 0x3a41a81d dev_uc_sync_multiple -EXPORT_SYMBOL vmlinux 0x3a46e6d7 eth_header -EXPORT_SYMBOL vmlinux 0x3a499d38 phy_connect -EXPORT_SYMBOL vmlinux 0x3a4f5dc2 __sock_create -EXPORT_SYMBOL vmlinux 0x3a4f9d28 rng_is_initialized -EXPORT_SYMBOL vmlinux 0x3a5354ff pmem_should_map_pages -EXPORT_SYMBOL vmlinux 0x3a88d621 of_get_child_by_name -EXPORT_SYMBOL vmlinux 0x3a9c114f d_hash_and_lookup -EXPORT_SYMBOL vmlinux 0x3aa51e70 zap_page_range -EXPORT_SYMBOL vmlinux 0x3aac62c2 amba_driver_unregister -EXPORT_SYMBOL vmlinux 0x3aad247c vfs_copy_file_range -EXPORT_SYMBOL vmlinux 0x3ab0683f fman_set_port_params -EXPORT_SYMBOL vmlinux 0x3ab7b1cc scsi_set_sense_field_pointer -EXPORT_SYMBOL vmlinux 0x3ad7a5d5 acpi_evaluate_reference -EXPORT_SYMBOL vmlinux 0x3ada9e06 acpi_check_region -EXPORT_SYMBOL vmlinux 0x3ae30893 dev_mc_del -EXPORT_SYMBOL vmlinux 0x3afb439c fiemap_prep -EXPORT_SYMBOL vmlinux 0x3aff3200 acpi_evaluate_object_typed -EXPORT_SYMBOL vmlinux 0x3b0f23d2 xudma_is_pktdma -EXPORT_SYMBOL vmlinux 0x3b2d9d96 processors -EXPORT_SYMBOL vmlinux 0x3b321462 LZ4_setStreamDecode -EXPORT_SYMBOL vmlinux 0x3b3344e0 generic_perform_write -EXPORT_SYMBOL vmlinux 0x3b3417b2 twl6040_reg_read -EXPORT_SYMBOL vmlinux 0x3b493713 in6_dev_finish_destroy -EXPORT_SYMBOL vmlinux 0x3b4e86ae tcp_enter_cwr -EXPORT_SYMBOL vmlinux 0x3b644591 __bitmap_shift_left -EXPORT_SYMBOL vmlinux 0x3b681d96 dcb_ieee_setapp -EXPORT_SYMBOL vmlinux 0x3b6c41ea kstrtouint -EXPORT_SYMBOL vmlinux 0x3b8810e2 is_acpi_data_node -EXPORT_SYMBOL vmlinux 0x3b9144c9 acpi_get_current_resources -EXPORT_SYMBOL vmlinux 0x3bae7f06 xa_set_mark -EXPORT_SYMBOL vmlinux 0x3bcd728e __netif_napi_del -EXPORT_SYMBOL vmlinux 0x3bd5aa50 xfrm_dev_state_flush -EXPORT_SYMBOL vmlinux 0x3be7643e security_xfrm_policy_free -EXPORT_SYMBOL vmlinux 0x3bf62a9e skb_realloc_headroom -EXPORT_SYMBOL vmlinux 0x3c101fd3 phys_mem_access_prot -EXPORT_SYMBOL vmlinux 0x3c185c61 page_put_link -EXPORT_SYMBOL vmlinux 0x3c20082a get_tree_single_reconf -EXPORT_SYMBOL vmlinux 0x3c3215c4 qe_immr -EXPORT_SYMBOL vmlinux 0x3c3fce39 __local_bh_enable_ip -EXPORT_SYMBOL vmlinux 0x3c3ff9fd sprintf -EXPORT_SYMBOL vmlinux 0x3c4f172a skb_ensure_writable -EXPORT_SYMBOL vmlinux 0x3c55bb05 mnt_drop_write_file -EXPORT_SYMBOL vmlinux 0x3c683846 skb_orphan_partial -EXPORT_SYMBOL vmlinux 0x3c6e8d0c udp_pre_connect -EXPORT_SYMBOL vmlinux 0x3c744dda unmap_mapping_range -EXPORT_SYMBOL vmlinux 0x3c97f68c request_firmware_nowait -EXPORT_SYMBOL vmlinux 0x3c9c7ec5 __blk_mq_alloc_disk -EXPORT_SYMBOL vmlinux 0x3cd9ed83 logic_insw -EXPORT_SYMBOL vmlinux 0x3ce4ca6f disable_irq -EXPORT_SYMBOL vmlinux 0x3cfda91f pin_user_pages_remote -EXPORT_SYMBOL vmlinux 0x3d3259cc blk_mq_start_stopped_hw_queues -EXPORT_SYMBOL vmlinux 0x3d37dddc seq_vprintf -EXPORT_SYMBOL vmlinux 0x3d56e7b3 utf8_unload -EXPORT_SYMBOL vmlinux 0x3d8d3b9d tcp_select_initial_window -EXPORT_SYMBOL vmlinux 0x3d8d7b0d pci_stop_and_remove_bus_device -EXPORT_SYMBOL vmlinux 0x3d93c7c2 __arm_smccc_sve_check -EXPORT_SYMBOL vmlinux 0x3d9e0dd4 __traceiter_mmap_lock_start_locking -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 0x3daf8e0a __xfrm_dst_lookup -EXPORT_SYMBOL vmlinux 0x3db1ab80 dev_remove_pack -EXPORT_SYMBOL vmlinux 0x3db87d86 __bforget -EXPORT_SYMBOL vmlinux 0x3dc619d3 swake_up_locked -EXPORT_SYMBOL vmlinux 0x3dc9a3ce devfreq_unregister_notifier -EXPORT_SYMBOL vmlinux 0x3dcb88a0 irq_set_handler_data -EXPORT_SYMBOL vmlinux 0x3dd3f054 xudma_rchan_get_id -EXPORT_SYMBOL vmlinux 0x3dd496d0 rdmacg_try_charge -EXPORT_SYMBOL vmlinux 0x3de25928 param_set_bint -EXPORT_SYMBOL vmlinux 0x3de76456 scsi_unblock_requests -EXPORT_SYMBOL vmlinux 0x3dfb86b9 resource_list_create_entry -EXPORT_SYMBOL vmlinux 0x3dfc897c seq_hlist_start_head -EXPORT_SYMBOL vmlinux 0x3e10111e netdev_upper_get_next_dev_rcu -EXPORT_SYMBOL vmlinux 0x3e1ae03c netdev_lower_state_changed -EXPORT_SYMBOL vmlinux 0x3e22e0d7 dquot_writeback_dquots -EXPORT_SYMBOL vmlinux 0x3e25b286 current_in_userns -EXPORT_SYMBOL vmlinux 0x3e330c90 vm_map_ram -EXPORT_SYMBOL vmlinux 0x3e3bad0a __tasklet_hi_schedule -EXPORT_SYMBOL vmlinux 0x3e446abf d_move -EXPORT_SYMBOL vmlinux 0x3e4cda55 security_inode_init_security -EXPORT_SYMBOL vmlinux 0x3e4ffce5 km_state_notify -EXPORT_SYMBOL vmlinux 0x3e5247ab pci_bus_read_config_word -EXPORT_SYMBOL vmlinux 0x3e756d3b pci_alloc_host_bridge -EXPORT_SYMBOL vmlinux 0x3e79fb00 arm_smccc_1_2_smc -EXPORT_SYMBOL vmlinux 0x3e8b4834 tcp_setsockopt -EXPORT_SYMBOL vmlinux 0x3ea8b10f tty_register_device -EXPORT_SYMBOL vmlinux 0x3eaf5374 security_sb_mnt_opts_compat -EXPORT_SYMBOL vmlinux 0x3eb44fd4 pci_disable_device -EXPORT_SYMBOL vmlinux 0x3eb62efe unregister_mii_timestamper -EXPORT_SYMBOL vmlinux 0x3eb6bb2f up_write -EXPORT_SYMBOL vmlinux 0x3eb6ecd8 vfs_ioctl -EXPORT_SYMBOL vmlinux 0x3ecab8d8 scsi_host_put -EXPORT_SYMBOL vmlinux 0x3ecf0224 fuse_dequeue_forget -EXPORT_SYMBOL vmlinux 0x3eddc019 __mmc_claim_host -EXPORT_SYMBOL vmlinux 0x3ee225dd iunique -EXPORT_SYMBOL vmlinux 0x3efe1703 phy_unregister_fixup_for_id -EXPORT_SYMBOL vmlinux 0x3f0de91f inode_set_flags -EXPORT_SYMBOL vmlinux 0x3f0eabd2 xxh64_update -EXPORT_SYMBOL vmlinux 0x3f15d12d pci_disable_link_state -EXPORT_SYMBOL vmlinux 0x3f34f6a4 vif_device_init -EXPORT_SYMBOL vmlinux 0x3f4547a7 put_unused_fd -EXPORT_SYMBOL vmlinux 0x3f545cad cpumask_any_and_distribute -EXPORT_SYMBOL vmlinux 0x3f57d424 unregister_cdrom -EXPORT_SYMBOL vmlinux 0x3f600394 __tty_alloc_driver -EXPORT_SYMBOL vmlinux 0x3f748e4d sk_stream_wait_close -EXPORT_SYMBOL vmlinux 0x3f7bef34 proc_create_seq_private -EXPORT_SYMBOL vmlinux 0x3f89071b security_ib_pkey_access -EXPORT_SYMBOL vmlinux 0x3fa4a692 skb_abort_seq_read -EXPORT_SYMBOL vmlinux 0x3fa515f7 dm_put_device -EXPORT_SYMBOL vmlinux 0x3fb93cd0 netdev_unbind_sb_channel -EXPORT_SYMBOL vmlinux 0x3fbf3c89 vme_slave_set -EXPORT_SYMBOL vmlinux 0x3fd78f3b register_chrdev_region -EXPORT_SYMBOL vmlinux 0x3fd8d23a cpufreq_get_policy -EXPORT_SYMBOL vmlinux 0x3fe2ccbe memweight -EXPORT_SYMBOL vmlinux 0x3feaf1f1 lockref_get_not_dead -EXPORT_SYMBOL vmlinux 0x3ff8acea dev_queue_xmit -EXPORT_SYMBOL vmlinux 0x4013d2f6 md_bitmap_close_sync -EXPORT_SYMBOL vmlinux 0x401c9044 inet6_add_offload -EXPORT_SYMBOL vmlinux 0x40278e9a dma_fence_wait_timeout -EXPORT_SYMBOL vmlinux 0x4035356a rproc_alloc -EXPORT_SYMBOL vmlinux 0x403ce90e radix_tree_lookup_slot -EXPORT_SYMBOL vmlinux 0x4040d801 buffer_migrate_page -EXPORT_SYMBOL vmlinux 0x4046ba24 phy_detach -EXPORT_SYMBOL vmlinux 0x4049bcf5 pm860x_reg_read -EXPORT_SYMBOL vmlinux 0x405376f9 xfrm_state_insert -EXPORT_SYMBOL vmlinux 0x405a000a udp_table -EXPORT_SYMBOL vmlinux 0x4061f86f fsl_ifc_ctrl_dev -EXPORT_SYMBOL vmlinux 0x4064607f phy_set_sym_pause -EXPORT_SYMBOL vmlinux 0x406b891e jbd2_journal_blocks_per_page -EXPORT_SYMBOL vmlinux 0x40747c80 nd_namespace_blk_validate -EXPORT_SYMBOL vmlinux 0x40770f87 mipi_dsi_dcs_set_display_off -EXPORT_SYMBOL vmlinux 0x40973662 sysctl_udp_mem -EXPORT_SYMBOL vmlinux 0x409873e3 tty_termios_baud_rate -EXPORT_SYMBOL vmlinux 0x40a36b88 give_up_console -EXPORT_SYMBOL vmlinux 0x40a9b349 vzalloc -EXPORT_SYMBOL vmlinux 0x40ad3edc scsi_target_quiesce -EXPORT_SYMBOL vmlinux 0x40bc8143 tcp_disconnect -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 0x40e1b760 padata_do_serial -EXPORT_SYMBOL vmlinux 0x40f37b03 nla_reserve -EXPORT_SYMBOL vmlinux 0x40f399a5 netdev_master_upper_dev_get -EXPORT_SYMBOL vmlinux 0x40f76a86 __vcalloc -EXPORT_SYMBOL vmlinux 0x4109773d jbd2_journal_lock_updates -EXPORT_SYMBOL vmlinux 0x412f893c page_offline_begin -EXPORT_SYMBOL vmlinux 0x413d925a set_anon_super -EXPORT_SYMBOL vmlinux 0x41482d8b strndup_user -EXPORT_SYMBOL vmlinux 0x4148f332 udp_ioctl -EXPORT_SYMBOL vmlinux 0x414b703f dev_loopback_xmit -EXPORT_SYMBOL vmlinux 0x414da5e5 qman_enqueue -EXPORT_SYMBOL vmlinux 0x4159706d pci_pme_active -EXPORT_SYMBOL vmlinux 0x415fc42a tcp_shutdown -EXPORT_SYMBOL vmlinux 0x416f4dff pci_disable_ptm -EXPORT_SYMBOL vmlinux 0x41842f36 dev_add_pack -EXPORT_SYMBOL vmlinux 0x4188d439 neigh_rand_reach_time -EXPORT_SYMBOL vmlinux 0x418b3876 blkdev_issue_write_same -EXPORT_SYMBOL vmlinux 0x418fc368 msm_pinctrl_dev_pm_ops -EXPORT_SYMBOL vmlinux 0x4195b57e __blkdev_issue_zeroout -EXPORT_SYMBOL vmlinux 0x41a43283 twl6040_set_bits -EXPORT_SYMBOL vmlinux 0x41c6fd57 remove_proc_subtree -EXPORT_SYMBOL vmlinux 0x41d0d955 max8998_bulk_write -EXPORT_SYMBOL vmlinux 0x41e7cbc7 block_commit_write -EXPORT_SYMBOL vmlinux 0x41ec2406 devm_devfreq_unregister_opp_notifier -EXPORT_SYMBOL vmlinux 0x41ed3709 get_random_bytes -EXPORT_SYMBOL vmlinux 0x42019f2c inet_unregister_protosw -EXPORT_SYMBOL vmlinux 0x42062d92 lockref_put_or_lock -EXPORT_SYMBOL vmlinux 0x420964e3 __nla_parse -EXPORT_SYMBOL vmlinux 0x42160169 flush_workqueue -EXPORT_SYMBOL vmlinux 0x421aa001 __invalidate_device -EXPORT_SYMBOL vmlinux 0x4230a8d7 sg_nents_for_len -EXPORT_SYMBOL vmlinux 0x4231d039 dma_sync_wait -EXPORT_SYMBOL vmlinux 0x4241e6e5 irq_domain_set_info -EXPORT_SYMBOL vmlinux 0x4248ae3c single_task_running -EXPORT_SYMBOL vmlinux 0x424d3620 zlib_inflateIncomp -EXPORT_SYMBOL vmlinux 0x42578e80 acpi_get_type -EXPORT_SYMBOL vmlinux 0x4271d8e4 netpoll_print_options -EXPORT_SYMBOL vmlinux 0x4278433f drop_super_exclusive -EXPORT_SYMBOL vmlinux 0x427d0741 gen_pool_dma_zalloc_algo -EXPORT_SYMBOL vmlinux 0x42b91d32 devfreq_monitor_stop -EXPORT_SYMBOL vmlinux 0x42c40148 input_open_device -EXPORT_SYMBOL vmlinux 0x42c52be5 gen_pool_first_fit_align -EXPORT_SYMBOL vmlinux 0x42c58c77 iterate_dir -EXPORT_SYMBOL vmlinux 0x42d0e0e5 pneigh_lookup -EXPORT_SYMBOL vmlinux 0x42e7158a mdiobus_read -EXPORT_SYMBOL vmlinux 0x42f1b900 fb_pad_unaligned_buffer -EXPORT_SYMBOL vmlinux 0x4302d0eb free_pages -EXPORT_SYMBOL vmlinux 0x4316a76d idr_alloc_cyclic -EXPORT_SYMBOL vmlinux 0x431ec3a9 __nla_validate -EXPORT_SYMBOL vmlinux 0x431fd483 twl6040_power -EXPORT_SYMBOL vmlinux 0x4336fcca ucs2_as_utf8 -EXPORT_SYMBOL vmlinux 0x433cabfb acpi_decode_pld_buffer -EXPORT_SYMBOL vmlinux 0x433d0fd2 mipi_dsi_dcs_set_display_on -EXPORT_SYMBOL vmlinux 0x434ab333 udp_lib_rehash -EXPORT_SYMBOL vmlinux 0x4351577a fb_parse_edid -EXPORT_SYMBOL vmlinux 0x435a51db __sk_dst_check -EXPORT_SYMBOL vmlinux 0x436772ed pcie_capability_read_word -EXPORT_SYMBOL vmlinux 0x437a0d6d __sock_tx_timestamp -EXPORT_SYMBOL vmlinux 0x437edf48 netlink_broadcast -EXPORT_SYMBOL vmlinux 0x4380c8e4 mdiobus_setup_mdiodev_from_board_info -EXPORT_SYMBOL vmlinux 0x4381a51e neigh_seq_stop -EXPORT_SYMBOL vmlinux 0x438610bd security_tun_dev_alloc_security -EXPORT_SYMBOL vmlinux 0x43b0c9c3 preempt_schedule -EXPORT_SYMBOL vmlinux 0x43b3627e d_path -EXPORT_SYMBOL vmlinux 0x43c2cce0 ndo_dflt_fdb_dump -EXPORT_SYMBOL vmlinux 0x43cb4ddb sock_no_sendmsg -EXPORT_SYMBOL vmlinux 0x43d22fb9 groups_alloc -EXPORT_SYMBOL vmlinux 0x43d36f1e seq_put_decimal_ull -EXPORT_SYMBOL vmlinux 0x43e47616 fscrypt_ioctl_set_policy -EXPORT_SYMBOL vmlinux 0x43f9ebc8 slhc_remember -EXPORT_SYMBOL vmlinux 0x43fed97c capable_wrt_inode_uidgid -EXPORT_SYMBOL vmlinux 0x4403bbd0 imx_sc_misc_set_control -EXPORT_SYMBOL vmlinux 0x4405dd66 generic_pipe_buf_get -EXPORT_SYMBOL vmlinux 0x441c0518 inet_accept -EXPORT_SYMBOL vmlinux 0x442a2db7 netdev_class_create_file_ns -EXPORT_SYMBOL vmlinux 0x44469a76 crc_ccitt_false_table -EXPORT_SYMBOL vmlinux 0x444b763f blackhole_netdev -EXPORT_SYMBOL vmlinux 0x4462d35e cpufreq_get_hw_max_freq -EXPORT_SYMBOL vmlinux 0x4491ee9f blk_execute_rq -EXPORT_SYMBOL vmlinux 0x4499e14e __dev_kfree_skb_any -EXPORT_SYMBOL vmlinux 0x449ad0a7 memcmp -EXPORT_SYMBOL vmlinux 0x44a6e90a irq_cpu_rmap_add -EXPORT_SYMBOL vmlinux 0x44afa956 security_binder_transfer_binder -EXPORT_SYMBOL vmlinux 0x44b0c19f max8925_set_bits -EXPORT_SYMBOL vmlinux 0x44d388bb mode_strip_sgid -EXPORT_SYMBOL vmlinux 0x44e4dc61 iov_iter_get_pages_alloc -EXPORT_SYMBOL vmlinux 0x44e92af9 try_module_get -EXPORT_SYMBOL vmlinux 0x44e9a829 match_token -EXPORT_SYMBOL vmlinux 0x45006cee default_red -EXPORT_SYMBOL vmlinux 0x45013604 blk_queue_max_hw_sectors -EXPORT_SYMBOL vmlinux 0x45081703 ec_get_handle -EXPORT_SYMBOL vmlinux 0x450d9a35 cmd_db_read_slave_id -EXPORT_SYMBOL vmlinux 0x4519d3be unlock_new_inode -EXPORT_SYMBOL vmlinux 0x451e4209 fscrypt_zeroout_range -EXPORT_SYMBOL vmlinux 0x452413a1 qman_alloc_pool_range -EXPORT_SYMBOL vmlinux 0x452ba683 ipv6_ext_hdr -EXPORT_SYMBOL vmlinux 0x453c8403 pci_msi_enabled -EXPORT_SYMBOL vmlinux 0x454a19bc bdevname -EXPORT_SYMBOL vmlinux 0x45535485 xxh32_update -EXPORT_SYMBOL vmlinux 0x455a24b5 mipi_dsi_dcs_get_display_brightness -EXPORT_SYMBOL vmlinux 0x4567d33f jbd2_journal_wipe -EXPORT_SYMBOL vmlinux 0x456cd4e8 xfrm_input_unregister_afinfo -EXPORT_SYMBOL vmlinux 0x4578f528 __kfifo_to_user -EXPORT_SYMBOL vmlinux 0x45919dcf proc_symlink -EXPORT_SYMBOL vmlinux 0x459ad9a1 sk_reset_timer -EXPORT_SYMBOL vmlinux 0x45c46ea2 seq_hex_dump -EXPORT_SYMBOL vmlinux 0x45c9ab32 phy_attached_info -EXPORT_SYMBOL vmlinux 0x45eadfd9 is_nd_dax -EXPORT_SYMBOL vmlinux 0x45f891e8 xa_store_range -EXPORT_SYMBOL vmlinux 0x460f4a34 flow_hash_from_keys -EXPORT_SYMBOL vmlinux 0x461ba695 atomic_dec_and_mutex_lock -EXPORT_SYMBOL vmlinux 0x461cb623 phy_stop -EXPORT_SYMBOL vmlinux 0x461d16ca sg_nents -EXPORT_SYMBOL vmlinux 0x46300eb8 phy_remove_link_mode -EXPORT_SYMBOL vmlinux 0x465e24ff ucs2_utf8size -EXPORT_SYMBOL vmlinux 0x4665f71d rtnl_configure_link -EXPORT_SYMBOL vmlinux 0x4666c322 _dev_crit -EXPORT_SYMBOL vmlinux 0x466b2315 xa_get_order -EXPORT_SYMBOL vmlinux 0x466c14a7 __delay -EXPORT_SYMBOL vmlinux 0x46741c0e redirty_page_for_writepage -EXPORT_SYMBOL vmlinux 0x467c07ce make_kgid -EXPORT_SYMBOL vmlinux 0x467df16d netdev_rss_key_fill -EXPORT_SYMBOL vmlinux 0x469583da security_inode_copy_up -EXPORT_SYMBOL vmlinux 0x4698fe8a bman_release -EXPORT_SYMBOL vmlinux 0x469a6ec7 tcp_parse_md5sig_option -EXPORT_SYMBOL vmlinux 0x469a7bba ps2_handle_response -EXPORT_SYMBOL vmlinux 0x46adc044 unregister_filesystem -EXPORT_SYMBOL vmlinux 0x46c47fb6 __node_distance -EXPORT_SYMBOL vmlinux 0x46d1c88d kthread_destroy_worker -EXPORT_SYMBOL vmlinux 0x46e6b306 __skb_pad -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 0x4709af69 filemap_fdatawait_range_keep_errors -EXPORT_SYMBOL vmlinux 0x4715a909 acpi_load_table -EXPORT_SYMBOL vmlinux 0x4732697a rproc_put -EXPORT_SYMBOL vmlinux 0x47337cb2 jbd2_journal_force_commit -EXPORT_SYMBOL vmlinux 0x475a59df mmc_cqe_post_req -EXPORT_SYMBOL vmlinux 0x475d7427 fman_get_rx_extra_headroom -EXPORT_SYMBOL vmlinux 0x4763437c __xfrm_state_destroy -EXPORT_SYMBOL vmlinux 0x47709e42 free_anon_bdev -EXPORT_SYMBOL vmlinux 0x479137ca imx_scu_irq_unregister_notifier -EXPORT_SYMBOL vmlinux 0x47952021 phy_ethtool_set_eee -EXPORT_SYMBOL vmlinux 0x47a68881 __filemap_set_wb_err -EXPORT_SYMBOL vmlinux 0x47ac814d tegra_dfll_suspend -EXPORT_SYMBOL vmlinux 0x47bf9e49 fman_unregister_intr -EXPORT_SYMBOL vmlinux 0x47c20f8a refcount_dec_not_one -EXPORT_SYMBOL vmlinux 0x47c65bfc unregister_inet6addr_validator_notifier -EXPORT_SYMBOL vmlinux 0x47c793ac alloc_pages -EXPORT_SYMBOL vmlinux 0x47cfd825 kstrtouint_from_user -EXPORT_SYMBOL vmlinux 0x47dc31f3 netpoll_poll_enable -EXPORT_SYMBOL vmlinux 0x47dd0dc0 qdisc_class_hash_grow -EXPORT_SYMBOL vmlinux 0x47e2b815 dev_set_mac_address_user -EXPORT_SYMBOL vmlinux 0x4808334f param_get_string -EXPORT_SYMBOL vmlinux 0x4808e905 register_mii_timestamper -EXPORT_SYMBOL vmlinux 0x481814c4 mb_cache_entry_find_next -EXPORT_SYMBOL vmlinux 0x48193639 acpi_lid_open -EXPORT_SYMBOL vmlinux 0x4829a47e memcpy -EXPORT_SYMBOL vmlinux 0x4829cf6b fscrypt_enqueue_decrypt_work -EXPORT_SYMBOL vmlinux 0x4837bb10 logic_outsb -EXPORT_SYMBOL vmlinux 0x4840f515 param_set_int -EXPORT_SYMBOL vmlinux 0x4841bdee strnchr -EXPORT_SYMBOL vmlinux 0x4847cf0b phy_device_remove -EXPORT_SYMBOL vmlinux 0x4848bfd2 file_write_and_wait_range -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 0x4861bb14 vme_bus_num -EXPORT_SYMBOL vmlinux 0x48623c0a __xfrm_decode_session -EXPORT_SYMBOL vmlinux 0x4874c47d bio_endio -EXPORT_SYMBOL vmlinux 0x487cf521 __sk_receive_skb -EXPORT_SYMBOL vmlinux 0x488a8a01 mii_check_link -EXPORT_SYMBOL vmlinux 0x4899a549 to_nd_pfn -EXPORT_SYMBOL vmlinux 0x489c5c53 xfrm_policy_hash_rebuild -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 0x48f194c5 rpmh_invalidate -EXPORT_SYMBOL vmlinux 0x49045426 icmp_err_convert -EXPORT_SYMBOL vmlinux 0x4916497a jbd2_log_start_commit -EXPORT_SYMBOL vmlinux 0x492becbb __dev_get_by_name -EXPORT_SYMBOL vmlinux 0x4930a9ba blk_rq_init -EXPORT_SYMBOL vmlinux 0x4931c738 ppp_register_compressor -EXPORT_SYMBOL vmlinux 0x4945ac3b serio_bus -EXPORT_SYMBOL vmlinux 0x495231ea mul_u64_u64_div_u64 -EXPORT_SYMBOL vmlinux 0x496b332d component_match_add_release -EXPORT_SYMBOL vmlinux 0x4974e263 nf_hook_slow -EXPORT_SYMBOL vmlinux 0x498e9128 ZSTD_findDecompressedSize -EXPORT_SYMBOL vmlinux 0x499f0ecf nd_sb_checksum -EXPORT_SYMBOL vmlinux 0x49a1fe80 generic_permission -EXPORT_SYMBOL vmlinux 0x49b0e53c input_enable_softrepeat -EXPORT_SYMBOL vmlinux 0x49b163b8 acpi_bus_scan -EXPORT_SYMBOL vmlinux 0x49b327a8 pci_find_bus -EXPORT_SYMBOL vmlinux 0x49b419b1 proc_create -EXPORT_SYMBOL vmlinux 0x49cfb999 of_graph_get_port_parent -EXPORT_SYMBOL vmlinux 0x49dd891a pnp_register_driver -EXPORT_SYMBOL vmlinux 0x49fd1312 __block_write_begin -EXPORT_SYMBOL vmlinux 0x4a17d7fc request_key_tag -EXPORT_SYMBOL vmlinux 0x4a1f24c1 pldmfw_flash_image -EXPORT_SYMBOL vmlinux 0x4a225d0a __sock_cmsg_send -EXPORT_SYMBOL vmlinux 0x4a3ad70e wait_for_completion_timeout -EXPORT_SYMBOL vmlinux 0x4a4b8151 get_tz_trend -EXPORT_SYMBOL vmlinux 0x4a6cc59b genphy_handle_interrupt_no_ack -EXPORT_SYMBOL vmlinux 0x4a789031 gnet_stats_copy_rate_est -EXPORT_SYMBOL vmlinux 0x4a7b6a37 of_device_is_available -EXPORT_SYMBOL vmlinux 0x4a7c1506 dev_getbyhwaddr_rcu -EXPORT_SYMBOL vmlinux 0x4a9348a5 jbd2_trans_will_send_data_barrier -EXPORT_SYMBOL vmlinux 0x4a93576a ucc_fast_free -EXPORT_SYMBOL vmlinux 0x4a94cc31 eth_mac_addr -EXPORT_SYMBOL vmlinux 0x4a950618 prepare_to_wait_event -EXPORT_SYMBOL vmlinux 0x4a96a8eb xxh32_digest -EXPORT_SYMBOL vmlinux 0x4aa37760 vfs_rename -EXPORT_SYMBOL vmlinux 0x4aaf8e50 ethtool_rx_flow_rule_create -EXPORT_SYMBOL vmlinux 0x4ac3b0b0 acpi_bus_register_driver -EXPORT_SYMBOL vmlinux 0x4aea463f crc32_le_shift -EXPORT_SYMBOL vmlinux 0x4aecd899 pci_bus_write_config_byte -EXPORT_SYMBOL vmlinux 0x4af6909b ptp_find_pin -EXPORT_SYMBOL vmlinux 0x4af6ddf0 kstrtou16 -EXPORT_SYMBOL vmlinux 0x4afb18ab nd_btt_probe -EXPORT_SYMBOL vmlinux 0x4b013aa9 tcp_sendmsg -EXPORT_SYMBOL vmlinux 0x4b04692a single_release -EXPORT_SYMBOL vmlinux 0x4b09c1ef bio_integrity_add_page -EXPORT_SYMBOL vmlinux 0x4b0a3f52 gic_nonsecure_priorities -EXPORT_SYMBOL vmlinux 0x4b10d173 generic_ro_fops -EXPORT_SYMBOL vmlinux 0x4b329c66 ip_getsockopt -EXPORT_SYMBOL vmlinux 0x4b3adef1 vm_iomap_memory -EXPORT_SYMBOL vmlinux 0x4b4e9465 __i2c_smbus_xfer -EXPORT_SYMBOL vmlinux 0x4b508cda d_add_ci -EXPORT_SYMBOL vmlinux 0x4b5fd49e dm_kcopyd_do_callback -EXPORT_SYMBOL vmlinux 0x4b655ed9 pci_try_set_mwi -EXPORT_SYMBOL vmlinux 0x4b6badcc mipi_dsi_dcs_set_display_brightness -EXPORT_SYMBOL vmlinux 0x4b6df007 acpi_evaluate_reg -EXPORT_SYMBOL vmlinux 0x4b750f53 _raw_spin_unlock_irq -EXPORT_SYMBOL vmlinux 0x4b8e36f9 radix_tree_tagged -EXPORT_SYMBOL vmlinux 0x4ba21644 copy_string_kernel -EXPORT_SYMBOL vmlinux 0x4baa5971 rproc_report_crash -EXPORT_SYMBOL vmlinux 0x4bb68ab1 udp_disconnect -EXPORT_SYMBOL vmlinux 0x4bba08c6 seq_escape -EXPORT_SYMBOL vmlinux 0x4bd05364 devm_extcon_register_notifier_all -EXPORT_SYMBOL vmlinux 0x4bdf01a1 of_find_property -EXPORT_SYMBOL vmlinux 0x4be3332d set_capacity -EXPORT_SYMBOL vmlinux 0x4beaf543 dma_fence_allocate_private_stub -EXPORT_SYMBOL vmlinux 0x4bed3003 d_find_any_alias -EXPORT_SYMBOL vmlinux 0x4bef1c67 empty_name -EXPORT_SYMBOL vmlinux 0x4bf06a7e xfrm_dst_ifdown -EXPORT_SYMBOL vmlinux 0x4bf3ce6f qman_release_cgrid -EXPORT_SYMBOL vmlinux 0x4bfb5c94 __generic_file_fsync -EXPORT_SYMBOL vmlinux 0x4c07a7e0 acpi_processor_unregister_performance -EXPORT_SYMBOL vmlinux 0x4c17ba56 netlink_broadcast_filtered -EXPORT_SYMBOL vmlinux 0x4c29bc4b __check_sticky -EXPORT_SYMBOL vmlinux 0x4c3073f3 cdrom_get_last_written -EXPORT_SYMBOL vmlinux 0x4c38d4e0 utf8_strncasecmp_folded -EXPORT_SYMBOL vmlinux 0x4c416eb9 LZ4_decompress_fast -EXPORT_SYMBOL vmlinux 0x4c5000b9 vme_bus_type -EXPORT_SYMBOL vmlinux 0x4c56af46 skb_get_hash_perturb -EXPORT_SYMBOL vmlinux 0x4c5d9411 first_ec -EXPORT_SYMBOL vmlinux 0x4c61fe19 simple_dir_inode_operations -EXPORT_SYMBOL vmlinux 0x4c6ae362 inet_frags_init -EXPORT_SYMBOL vmlinux 0x4c86b00e kfree_skb_list -EXPORT_SYMBOL vmlinux 0x4c9356ce phy_read_mmd -EXPORT_SYMBOL vmlinux 0x4cb7a4e7 mr_mfc_seq_next -EXPORT_SYMBOL vmlinux 0x4cba441d iwe_stream_add_event -EXPORT_SYMBOL vmlinux 0x4ccd5951 sk_net_capable -EXPORT_SYMBOL vmlinux 0x4cdbac93 __set_page_dirty_nobuffers -EXPORT_SYMBOL vmlinux 0x4ceeed02 unregister_qdisc -EXPORT_SYMBOL vmlinux 0x4d0d163d copy_page -EXPORT_SYMBOL vmlinux 0x4d122f2d radix_tree_iter_delete -EXPORT_SYMBOL vmlinux 0x4d2c7133 acpi_info -EXPORT_SYMBOL vmlinux 0x4d37309b seq_release -EXPORT_SYMBOL vmlinux 0x4d4bd3ad scsi_report_opcode -EXPORT_SYMBOL vmlinux 0x4d5d65da blk_queue_segment_boundary -EXPORT_SYMBOL vmlinux 0x4d65cbd5 csum_ipv6_magic -EXPORT_SYMBOL vmlinux 0x4d76facd unregister_binfmt -EXPORT_SYMBOL vmlinux 0x4d783a4a flow_rule_match_cvlan -EXPORT_SYMBOL vmlinux 0x4d7a8100 ip_sock_set_freebind -EXPORT_SYMBOL vmlinux 0x4d833b13 mmc_gpiod_request_cd -EXPORT_SYMBOL vmlinux 0x4d904a1d netdev_features_change -EXPORT_SYMBOL vmlinux 0x4d924f20 memremap -EXPORT_SYMBOL vmlinux 0x4d968dd1 clk_hw_register_clkdev -EXPORT_SYMBOL vmlinux 0x4d9b652b rb_erase -EXPORT_SYMBOL vmlinux 0x4d9bd13f pci_scan_bridge -EXPORT_SYMBOL vmlinux 0x4da596e6 qman_retire_fq -EXPORT_SYMBOL vmlinux 0x4db018ae xfrm_policy_walk -EXPORT_SYMBOL vmlinux 0x4db21ea4 netdev_printk -EXPORT_SYMBOL vmlinux 0x4dcab37e phy_do_ioctl_running -EXPORT_SYMBOL vmlinux 0x4df02057 crc32_be -EXPORT_SYMBOL vmlinux 0x4df2ea84 gen_estimator_read -EXPORT_SYMBOL vmlinux 0x4df38d1d nf_log_trace -EXPORT_SYMBOL vmlinux 0x4e0520fd i2c_register_driver -EXPORT_SYMBOL vmlinux 0x4e0e840d tcf_qevent_handle -EXPORT_SYMBOL vmlinux 0x4e155459 cdrom_ioctl -EXPORT_SYMBOL vmlinux 0x4e20a6c3 security_old_inode_init_security -EXPORT_SYMBOL vmlinux 0x4e2e74c1 qcom_scm_io_readl -EXPORT_SYMBOL vmlinux 0x4e3567f7 match_int -EXPORT_SYMBOL vmlinux 0x4e3d13bd proc_doulongvec_ms_jiffies_minmax -EXPORT_SYMBOL vmlinux 0x4e547048 __kmalloc_node_track_caller -EXPORT_SYMBOL vmlinux 0x4e61e5c0 kernel_getsockname -EXPORT_SYMBOL vmlinux 0x4e68e9be rb_next_postorder -EXPORT_SYMBOL vmlinux 0x4e6e8ea7 fg_console -EXPORT_SYMBOL vmlinux 0x4e79852f __inc_zone_page_state -EXPORT_SYMBOL vmlinux 0x4e9f40e2 tcf_idrinfo_destroy -EXPORT_SYMBOL vmlinux 0x4ea25709 dql_reset -EXPORT_SYMBOL vmlinux 0x4eaa9124 input_grab_device -EXPORT_SYMBOL vmlinux 0x4eada8f7 security_secid_to_secctx -EXPORT_SYMBOL vmlinux 0x4ec54e78 bitmap_to_arr32 -EXPORT_SYMBOL vmlinux 0x4f0c32d4 unlock_rename -EXPORT_SYMBOL vmlinux 0x4f118034 pci_wake_from_d3 -EXPORT_SYMBOL vmlinux 0x4f1cd128 security_tun_dev_create -EXPORT_SYMBOL vmlinux 0x4f2250ba rtc_tm_to_time64 -EXPORT_SYMBOL vmlinux 0x4f481f0b ipv6_dev_get_saddr -EXPORT_SYMBOL vmlinux 0x4f4d70e8 __devm_mdiobus_register -EXPORT_SYMBOL vmlinux 0x4f55166f acpi_set_current_resources -EXPORT_SYMBOL vmlinux 0x4f60a4d5 __cond_resched_rwlock_read -EXPORT_SYMBOL vmlinux 0x4f74b446 pci_free_host_bridge -EXPORT_SYMBOL vmlinux 0x4f82a460 sock_no_mmap -EXPORT_SYMBOL vmlinux 0x4f9612bc tc_setup_flow_action -EXPORT_SYMBOL vmlinux 0x4fa18163 phy_loopback -EXPORT_SYMBOL vmlinux 0x4fa73ca6 simple_transaction_release -EXPORT_SYMBOL vmlinux 0x4fb30f96 pcie_bandwidth_available -EXPORT_SYMBOL vmlinux 0x4fc54439 register_fib_notifier -EXPORT_SYMBOL vmlinux 0x4fd9e867 __blk_rq_map_sg -EXPORT_SYMBOL vmlinux 0x4ffb59bf __SCK__tp_func_kfree -EXPORT_SYMBOL vmlinux 0x4ffcec1c dcbnl_ieee_notify -EXPORT_SYMBOL vmlinux 0x5002c3c3 input_mt_assign_slots -EXPORT_SYMBOL vmlinux 0x5005842c rproc_add_subdev -EXPORT_SYMBOL vmlinux 0x50096afa bprm_change_interp -EXPORT_SYMBOL vmlinux 0x50097088 security_tun_dev_free_security -EXPORT_SYMBOL vmlinux 0x5009c71d glob_match -EXPORT_SYMBOL vmlinux 0x5009e539 dev_uc_flush -EXPORT_SYMBOL vmlinux 0x50120530 __vfs_setxattr -EXPORT_SYMBOL vmlinux 0x501a5594 pci_enable_device_mem -EXPORT_SYMBOL vmlinux 0x5027bde2 acpi_acquire_mutex -EXPORT_SYMBOL vmlinux 0x50313770 cfb_copyarea -EXPORT_SYMBOL vmlinux 0x5033d6be ppp_output_wakeup -EXPORT_SYMBOL vmlinux 0x50624917 sha1_init -EXPORT_SYMBOL vmlinux 0x50675436 generic_setlease -EXPORT_SYMBOL vmlinux 0x506dff1a __genradix_free -EXPORT_SYMBOL vmlinux 0x50733d19 netlink_kernel_release -EXPORT_SYMBOL vmlinux 0x50826015 tcp_init_sock -EXPORT_SYMBOL vmlinux 0x50847b8d ipv6_getsockopt -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 0x509cdd7c pci_enable_msix_range -EXPORT_SYMBOL vmlinux 0x50a4698c fb_videomode_to_modelist -EXPORT_SYMBOL vmlinux 0x50b00fdd blk_rq_map_user -EXPORT_SYMBOL vmlinux 0x50b152db genphy_check_and_restart_aneg -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 0x50cb6896 dma_sync_sg_for_device -EXPORT_SYMBOL vmlinux 0x50cf7585 hex2bin -EXPORT_SYMBOL vmlinux 0x50d035c2 vsscanf -EXPORT_SYMBOL vmlinux 0x50d27a51 fasync_helper -EXPORT_SYMBOL vmlinux 0x50d2ba58 page_pool_alloc_pages -EXPORT_SYMBOL vmlinux 0x50ef0839 bio_copy_data_iter -EXPORT_SYMBOL vmlinux 0x50f85302 __arm_smccc_hvc -EXPORT_SYMBOL vmlinux 0x50f91491 __genradix_ptr -EXPORT_SYMBOL vmlinux 0x5102cf86 skb_copy_expand -EXPORT_SYMBOL vmlinux 0x512433ee inet_frags_fini -EXPORT_SYMBOL vmlinux 0x51339d20 mipi_dsi_dcs_get_pixel_format -EXPORT_SYMBOL vmlinux 0x51352abc phy_init_hw -EXPORT_SYMBOL vmlinux 0x515083bf acpi_release_mutex -EXPORT_SYMBOL vmlinux 0x51597cd9 cros_ec_cmd_xfer -EXPORT_SYMBOL vmlinux 0x515e5e8d unregister_key_type -EXPORT_SYMBOL vmlinux 0x515f520b qman_portal_get_iperiod -EXPORT_SYMBOL vmlinux 0x5163a442 mmc_erase -EXPORT_SYMBOL vmlinux 0x51641162 opal_unlock_from_suspend -EXPORT_SYMBOL vmlinux 0x516e761d pfifo_qdisc_ops -EXPORT_SYMBOL vmlinux 0x518fe43a input_register_device -EXPORT_SYMBOL vmlinux 0x51a7a393 dev_set_group -EXPORT_SYMBOL vmlinux 0x51b2f35e __mmap_lock_do_trace_acquire_returned -EXPORT_SYMBOL vmlinux 0x51c3b08d dm_table_get_mode -EXPORT_SYMBOL vmlinux 0x51d12d4e acpi_pci_disabled -EXPORT_SYMBOL vmlinux 0x51f02cb6 has_capability -EXPORT_SYMBOL vmlinux 0x51f5af95 generic_key_instantiate -EXPORT_SYMBOL vmlinux 0x51f86a1a blk_limits_io_opt -EXPORT_SYMBOL vmlinux 0x51fcd5fb pci_reenable_device -EXPORT_SYMBOL vmlinux 0x51fe61b0 padata_alloc -EXPORT_SYMBOL vmlinux 0x5203d176 cmd_db_ready -EXPORT_SYMBOL vmlinux 0x5219882b iommu_dma_get_resv_regions -EXPORT_SYMBOL vmlinux 0x522fc02e jbd2_fc_end_commit_fallback -EXPORT_SYMBOL vmlinux 0x52461696 pcim_iomap_table -EXPORT_SYMBOL vmlinux 0x52574240 xattr_supported_namespace -EXPORT_SYMBOL vmlinux 0x5257e963 ip_fraglist_init -EXPORT_SYMBOL vmlinux 0x526eef2c hdmi_vendor_infoframe_pack -EXPORT_SYMBOL vmlinux 0x5270538b rproc_elf_load_segments -EXPORT_SYMBOL vmlinux 0x52983a4f vme_master_write -EXPORT_SYMBOL vmlinux 0x52b1d772 iput -EXPORT_SYMBOL vmlinux 0x52c3e695 iw_handler_set_spy -EXPORT_SYMBOL vmlinux 0x52d0a4d4 unregister_nexthop_notifier -EXPORT_SYMBOL vmlinux 0x52d717da xz_dec_init -EXPORT_SYMBOL vmlinux 0x52d9077a eth_gro_receive -EXPORT_SYMBOL vmlinux 0x52dcb85b __traceiter_kmalloc -EXPORT_SYMBOL vmlinux 0x52dd8e34 netdev_err -EXPORT_SYMBOL vmlinux 0x52ecbc75 crc_ccitt -EXPORT_SYMBOL vmlinux 0x52f2850a imx_sc_pm_cpu_start -EXPORT_SYMBOL vmlinux 0x530b1e98 pm_suspend -EXPORT_SYMBOL vmlinux 0x53126ecc __percpu_counter_sum -EXPORT_SYMBOL vmlinux 0x53206ab5 inet_frag_pull_head -EXPORT_SYMBOL vmlinux 0x53269ae5 rproc_add_carveout -EXPORT_SYMBOL vmlinux 0x533206b5 sort_r -EXPORT_SYMBOL vmlinux 0x5337cae6 dst_release -EXPORT_SYMBOL vmlinux 0x5338184f ethtool_sprintf -EXPORT_SYMBOL vmlinux 0x535b21fb iov_iter_single_seg_count -EXPORT_SYMBOL vmlinux 0x535c46ba dma_map_page_attrs -EXPORT_SYMBOL vmlinux 0x535d2f61 __nla_put_64bit -EXPORT_SYMBOL vmlinux 0x537983ea dcache_dir_lseek -EXPORT_SYMBOL vmlinux 0x538af736 dma_fence_match_context -EXPORT_SYMBOL vmlinux 0x539fce63 tcp_rcv_state_process -EXPORT_SYMBOL vmlinux 0x53a6e61a inet_twsk_deschedule_put -EXPORT_SYMBOL vmlinux 0x53c1d471 jbd2_journal_restart -EXPORT_SYMBOL vmlinux 0x53c864cd __skb_checksum_complete_head -EXPORT_SYMBOL vmlinux 0x53c8be1a iov_iter_get_pages -EXPORT_SYMBOL vmlinux 0x53cab4dc cookie_timestamp_decode -EXPORT_SYMBOL vmlinux 0x53e60dce skb_find_text -EXPORT_SYMBOL vmlinux 0x53eafebe vm_insert_pages -EXPORT_SYMBOL vmlinux 0x53eff192 tegra_ivc_align -EXPORT_SYMBOL vmlinux 0x53fa36d1 ZSTD_decompressBlock -EXPORT_SYMBOL vmlinux 0x53fbdaa0 proc_douintvec -EXPORT_SYMBOL vmlinux 0x5402da9f xudma_navss_psil_pair -EXPORT_SYMBOL vmlinux 0x5409a79c pnp_device_attach -EXPORT_SYMBOL vmlinux 0x540a41af skb_queue_head -EXPORT_SYMBOL vmlinux 0x541df836 of_graph_get_remote_node -EXPORT_SYMBOL vmlinux 0x54276d86 nd_device_register -EXPORT_SYMBOL vmlinux 0x543ef284 seq_hlist_start -EXPORT_SYMBOL vmlinux 0x5448485f devfreq_register_notifier -EXPORT_SYMBOL vmlinux 0x544aded4 bio_free_pages -EXPORT_SYMBOL vmlinux 0x544e3c73 sock_common_getsockopt -EXPORT_SYMBOL vmlinux 0x5451be9d tcf_action_exec -EXPORT_SYMBOL vmlinux 0x545ac95a xsk_tx_peek_release_desc_batch -EXPORT_SYMBOL vmlinux 0x545fca14 override_creds -EXPORT_SYMBOL vmlinux 0x54639b33 dev_alloc_name -EXPORT_SYMBOL vmlinux 0x547a515d touchscreen_report_pos -EXPORT_SYMBOL vmlinux 0x5483b471 pm8606_osc_disable -EXPORT_SYMBOL vmlinux 0x5489b1b5 fb_set_suspend -EXPORT_SYMBOL vmlinux 0x548f0bef pci_iomap -EXPORT_SYMBOL vmlinux 0x549df7e7 d_splice_alias -EXPORT_SYMBOL vmlinux 0x54bdb10d jbd2_fc_wait_bufs -EXPORT_SYMBOL vmlinux 0x54be1c54 fb_blank -EXPORT_SYMBOL vmlinux 0x54cfacd5 __ctzdi2 -EXPORT_SYMBOL vmlinux 0x54e6fcdd net_enable_timestamp -EXPORT_SYMBOL vmlinux 0x54ea6dfe xen_start_flags -EXPORT_SYMBOL vmlinux 0x5506b8f7 netlbl_bitmap_setbit -EXPORT_SYMBOL vmlinux 0x5508f28d bman_acquire -EXPORT_SYMBOL vmlinux 0x550f8af1 md_wakeup_thread -EXPORT_SYMBOL vmlinux 0x551bd071 __rb_erase_color -EXPORT_SYMBOL vmlinux 0x55227558 tso_start -EXPORT_SYMBOL vmlinux 0x552db3aa qman_query_cgr_congested -EXPORT_SYMBOL vmlinux 0x554346d5 rtnl_set_sk_err -EXPORT_SYMBOL vmlinux 0x554ae3a4 irq_poll_sched -EXPORT_SYMBOL vmlinux 0x55518fd3 tcp_rcv_established -EXPORT_SYMBOL vmlinux 0x5556447e skb_pull -EXPORT_SYMBOL vmlinux 0x55612092 put_ipc_ns -EXPORT_SYMBOL vmlinux 0x55637b7c jbd2_fc_begin_commit -EXPORT_SYMBOL vmlinux 0x556b5d62 __kfifo_dma_in_prepare_r -EXPORT_SYMBOL vmlinux 0x558b281d aes_expandkey -EXPORT_SYMBOL vmlinux 0x55a6f8d8 put_disk -EXPORT_SYMBOL vmlinux 0x55b16930 scsi_print_sense_hdr -EXPORT_SYMBOL vmlinux 0x55d2bdb6 pin_user_pages -EXPORT_SYMBOL vmlinux 0x55d3886c kobject_get_unless_zero -EXPORT_SYMBOL vmlinux 0x55e31703 ethtool_convert_link_mode_to_legacy_u32 -EXPORT_SYMBOL vmlinux 0x55e7161d blkdev_compat_ptr_ioctl -EXPORT_SYMBOL vmlinux 0x55eb5bf5 nf_hook_slow_list -EXPORT_SYMBOL vmlinux 0x55eb7049 inet_sk_rx_dst_set -EXPORT_SYMBOL vmlinux 0x55ee4036 dquot_scan_active -EXPORT_SYMBOL vmlinux 0x5614f48a qman_dqrr_get_ithresh -EXPORT_SYMBOL vmlinux 0x5635a60a vmalloc_user -EXPORT_SYMBOL vmlinux 0x56434ff4 jbd2_journal_ack_err -EXPORT_SYMBOL vmlinux 0x56470118 __warn_printk -EXPORT_SYMBOL vmlinux 0x564f7608 acpi_reconfig_notifier_register -EXPORT_SYMBOL vmlinux 0x5650b2bc simple_write_begin -EXPORT_SYMBOL vmlinux 0x565a8f4b inet_stream_connect -EXPORT_SYMBOL vmlinux 0x56802ae8 rps_cpu_mask -EXPORT_SYMBOL vmlinux 0x5681b6b6 module_layout -EXPORT_SYMBOL vmlinux 0x56c3db64 __tracepoint_kmalloc -EXPORT_SYMBOL vmlinux 0x56c8799d scsi_kunmap_atomic_sg -EXPORT_SYMBOL vmlinux 0x56ca038f vlan_dev_vlan_proto -EXPORT_SYMBOL vmlinux 0x56d31aa5 init_special_inode -EXPORT_SYMBOL vmlinux 0x56d6e240 phy_aneg_done -EXPORT_SYMBOL vmlinux 0x56d7681f neigh_proc_dointvec_ms_jiffies -EXPORT_SYMBOL vmlinux 0x56ec3622 pldmfw_op_pci_match_record -EXPORT_SYMBOL vmlinux 0x571dd6be nd_region_acquire_lane -EXPORT_SYMBOL vmlinux 0x57302c11 vfs_link -EXPORT_SYMBOL vmlinux 0x5730dfb8 proc_create_single_data -EXPORT_SYMBOL vmlinux 0x573c3827 xfrm_user_policy -EXPORT_SYMBOL vmlinux 0x574815f4 pci_find_resource -EXPORT_SYMBOL vmlinux 0x574c2e74 bitmap_release_region -EXPORT_SYMBOL vmlinux 0x57575f08 dmaengine_put -EXPORT_SYMBOL vmlinux 0x57674fd7 __sw_hweight16 -EXPORT_SYMBOL vmlinux 0x576ac7b6 flow_block_cb_decref -EXPORT_SYMBOL vmlinux 0x576def24 generic_file_open -EXPORT_SYMBOL vmlinux 0x576e790a disk_start_io_acct -EXPORT_SYMBOL vmlinux 0x57846423 bd_abort_claiming -EXPORT_SYMBOL vmlinux 0x5785395c mdio_device_free -EXPORT_SYMBOL vmlinux 0x578a408b ZSTD_initDCtx -EXPORT_SYMBOL vmlinux 0x5792f848 strlcpy -EXPORT_SYMBOL vmlinux 0x579af8b9 truncate_inode_pages_final -EXPORT_SYMBOL vmlinux 0x57a5a644 mmc_free_host -EXPORT_SYMBOL vmlinux 0x57acb367 dma_fence_init -EXPORT_SYMBOL vmlinux 0x57baffbc msm_pinctrl_probe -EXPORT_SYMBOL vmlinux 0x57cf5a4d devm_kvasprintf -EXPORT_SYMBOL vmlinux 0x57dc7ab0 pm8606_osc_enable -EXPORT_SYMBOL vmlinux 0x57f38cdc qe_get_firmware_info -EXPORT_SYMBOL vmlinux 0x58043c14 tcf_block_put_ext -EXPORT_SYMBOL vmlinux 0x580ce438 vme_register_error_handler -EXPORT_SYMBOL vmlinux 0x5818fe3c posix_acl_from_mode -EXPORT_SYMBOL vmlinux 0x581f98da zlib_inflate -EXPORT_SYMBOL vmlinux 0x582606eb xudma_rflow_put -EXPORT_SYMBOL vmlinux 0x582b6275 xfrm_if_unregister_cb -EXPORT_SYMBOL vmlinux 0x582bdca7 netpoll_poll_dev -EXPORT_SYMBOL vmlinux 0x5834f173 pci_bus_find_capability -EXPORT_SYMBOL vmlinux 0x5838f6c9 rtc_valid_tm -EXPORT_SYMBOL vmlinux 0x5845834b vme_dma_list_add -EXPORT_SYMBOL vmlinux 0x585ae877 nmi_panic -EXPORT_SYMBOL vmlinux 0x58638829 sock_edemux -EXPORT_SYMBOL vmlinux 0x58790352 is_nd_btt -EXPORT_SYMBOL vmlinux 0x5879ffca pmem_sector_size -EXPORT_SYMBOL vmlinux 0x587b0954 kvasprintf -EXPORT_SYMBOL vmlinux 0x587b892e qe_get_num_of_risc -EXPORT_SYMBOL vmlinux 0x587ea3dc inet_release -EXPORT_SYMBOL vmlinux 0x587f22d7 devmap_managed_key -EXPORT_SYMBOL vmlinux 0x58935b49 inet_csk_reset_keepalive_timer -EXPORT_SYMBOL vmlinux 0x58993fe6 ata_print_version -EXPORT_SYMBOL vmlinux 0x58a1b9b6 kernel_recvmsg -EXPORT_SYMBOL vmlinux 0x58acf24b mdiobus_register_board_info -EXPORT_SYMBOL vmlinux 0x58b4645c dev_close_many -EXPORT_SYMBOL vmlinux 0x58b73bc7 match_wildcard -EXPORT_SYMBOL vmlinux 0x58c65282 mmc_set_blocklen -EXPORT_SYMBOL vmlinux 0x58c9aba3 inet6_unregister_protosw -EXPORT_SYMBOL vmlinux 0x58e3306d bit_wait_io -EXPORT_SYMBOL vmlinux 0x58e8b855 jbd2_fc_release_bufs -EXPORT_SYMBOL vmlinux 0x5910951c fs_param_is_path -EXPORT_SYMBOL vmlinux 0x5925f871 mmc_of_parse_clk_phase -EXPORT_SYMBOL vmlinux 0x59287dcd dma_fence_enable_sw_signaling -EXPORT_SYMBOL vmlinux 0x59316eb5 dev_vprintk_emit -EXPORT_SYMBOL vmlinux 0x5934b5a9 qman_destroy_fq -EXPORT_SYMBOL vmlinux 0x594ae462 lookup_one_unlocked -EXPORT_SYMBOL vmlinux 0x595d8002 hdmi_infoframe_pack -EXPORT_SYMBOL vmlinux 0x596d00ba __cgroup_bpf_run_filter_sock_addr -EXPORT_SYMBOL vmlinux 0x5978eb12 kmem_cache_create_usercopy -EXPORT_SYMBOL vmlinux 0x5980286a devm_ioport_unmap -EXPORT_SYMBOL vmlinux 0x59820f04 mmc_wait_for_req_done -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 0x59cdefbe i2c_verify_adapter -EXPORT_SYMBOL vmlinux 0x59d12cba vmf_insert_pfn_prot -EXPORT_SYMBOL vmlinux 0x59ed6583 qdisc_watchdog_init_clockid -EXPORT_SYMBOL vmlinux 0x59f70283 dma_fence_remove_callback -EXPORT_SYMBOL vmlinux 0x5a0b73d0 zlib_deflateInit2 -EXPORT_SYMBOL vmlinux 0x5a2201cf sock_common_recvmsg -EXPORT_SYMBOL vmlinux 0x5a290250 hdmi_drm_infoframe_pack_only -EXPORT_SYMBOL vmlinux 0x5a2a3a52 copy_page_to_iter -EXPORT_SYMBOL vmlinux 0x5a2cd509 finish_open -EXPORT_SYMBOL vmlinux 0x5a2fa8dc xa_store -EXPORT_SYMBOL vmlinux 0x5a3c23d9 locks_free_lock -EXPORT_SYMBOL vmlinux 0x5a44f8cb __crypto_memneq -EXPORT_SYMBOL vmlinux 0x5a4a5340 tegra_ahb_enable_smmu -EXPORT_SYMBOL vmlinux 0x5a4d313e gf128mul_4k_lle -EXPORT_SYMBOL vmlinux 0x5a57587e rproc_boot -EXPORT_SYMBOL vmlinux 0x5a59b580 sock_common_setsockopt -EXPORT_SYMBOL vmlinux 0x5a60b950 qm_channel_pool1 -EXPORT_SYMBOL vmlinux 0x5a654561 generic_fill_statx_attr -EXPORT_SYMBOL vmlinux 0x5a6de3e4 scsi_remove_host -EXPORT_SYMBOL vmlinux 0x5a7344f9 set_cached_acl -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 0x5aa73526 fscrypt_decrypt_pagecache_blocks -EXPORT_SYMBOL vmlinux 0x5abde74c mmc_request_done -EXPORT_SYMBOL vmlinux 0x5ae1154b __traceiter_kfree -EXPORT_SYMBOL vmlinux 0x5b0b9250 tcf_action_dump_1 -EXPORT_SYMBOL vmlinux 0x5b15a5b3 sock_set_sndtimeo -EXPORT_SYMBOL vmlinux 0x5b190135 ip_defrag -EXPORT_SYMBOL vmlinux 0x5b299f6b pcie_set_mps -EXPORT_SYMBOL vmlinux 0x5b36d5dd utf8agemax -EXPORT_SYMBOL vmlinux 0x5b4399e9 udp_seq_next -EXPORT_SYMBOL vmlinux 0x5b51138e jbd2_journal_dirty_metadata -EXPORT_SYMBOL vmlinux 0x5b54903b qcom_scm_pas_mem_setup -EXPORT_SYMBOL vmlinux 0x5b56860c vm_munmap -EXPORT_SYMBOL vmlinux 0x5b5eb988 ip_mc_leave_group -EXPORT_SYMBOL vmlinux 0x5b6b9863 jbd2_journal_inode_ranged_write -EXPORT_SYMBOL vmlinux 0x5b74cafc pcim_iomap_regions_request_all -EXPORT_SYMBOL vmlinux 0x5b877644 __skb_vlan_pop -EXPORT_SYMBOL vmlinux 0x5b8da5de skb_eth_pop -EXPORT_SYMBOL vmlinux 0x5b95245c xfrm_state_lookup_byspi -EXPORT_SYMBOL vmlinux 0x5b9b9a39 ipv6_setsockopt -EXPORT_SYMBOL vmlinux 0x5bc62d38 fs_param_is_blob -EXPORT_SYMBOL vmlinux 0x5bd4ff88 flow_action_cookie_create -EXPORT_SYMBOL vmlinux 0x5be63c5b crc32c_csum_stub -EXPORT_SYMBOL vmlinux 0x5be869a1 linkwatch_fire_event -EXPORT_SYMBOL vmlinux 0x5c179127 dquot_release -EXPORT_SYMBOL vmlinux 0x5c26a53b wait_for_completion_io_timeout -EXPORT_SYMBOL vmlinux 0x5c3c7387 kstrtoull -EXPORT_SYMBOL vmlinux 0x5c4ac22e follow_up -EXPORT_SYMBOL vmlinux 0x5c6f62fc tcf_unregister_action -EXPORT_SYMBOL vmlinux 0x5c960d37 devm_gen_pool_create -EXPORT_SYMBOL vmlinux 0x5c9cff80 simple_setattr -EXPORT_SYMBOL vmlinux 0x5cc5c2e7 neigh_for_each -EXPORT_SYMBOL vmlinux 0x5ccd4a4a fwnode_irq_get -EXPORT_SYMBOL vmlinux 0x5ce2226a scsi_register_interface -EXPORT_SYMBOL vmlinux 0x5ce9d3ee current_time -EXPORT_SYMBOL vmlinux 0x5cf00532 inet_add_offload -EXPORT_SYMBOL vmlinux 0x5cf53ce2 input_free_minor -EXPORT_SYMBOL vmlinux 0x5cfb26a0 acpi_enter_sleep_state -EXPORT_SYMBOL vmlinux 0x5d008a5c cdev_set_parent -EXPORT_SYMBOL vmlinux 0x5d10e8cb gro_cells_receive -EXPORT_SYMBOL vmlinux 0x5d112304 __memcpy_fromio -EXPORT_SYMBOL vmlinux 0x5d143fc0 dentry_path_raw -EXPORT_SYMBOL vmlinux 0x5d29942c crypto_sha512_finup -EXPORT_SYMBOL vmlinux 0x5d2e60d2 __mod_zone_page_state -EXPORT_SYMBOL vmlinux 0x5d34f721 stream_open -EXPORT_SYMBOL vmlinux 0x5d37f160 tcp_make_synack -EXPORT_SYMBOL vmlinux 0x5d49aabc init_wait_var_entry -EXPORT_SYMBOL vmlinux 0x5d523783 _dev_notice -EXPORT_SYMBOL vmlinux 0x5d5e7f2b fb_pan_display -EXPORT_SYMBOL vmlinux 0x5d6c10b3 fib_notifier_ops_register -EXPORT_SYMBOL vmlinux 0x5d99e17a pci_rebar_get_possible_sizes -EXPORT_SYMBOL vmlinux 0x5da4f129 xfrm_state_update -EXPORT_SYMBOL vmlinux 0x5dac4cd6 qman_dqrr_set_ithresh -EXPORT_SYMBOL vmlinux 0x5db6ed4c of_phy_is_fixed_link -EXPORT_SYMBOL vmlinux 0x5db93832 cdev_device_add -EXPORT_SYMBOL vmlinux 0x5dc46dc4 sock_no_accept -EXPORT_SYMBOL vmlinux 0x5dd131b7 __cgroup_bpf_run_filter_skb -EXPORT_SYMBOL vmlinux 0x5df616de tcp_sock_set_cork -EXPORT_SYMBOL vmlinux 0x5dfe238d remove_conflicting_pci_framebuffers -EXPORT_SYMBOL vmlinux 0x5dffb495 ZSTD_decompress_usingDDict -EXPORT_SYMBOL vmlinux 0x5e064a88 seq_bprintf -EXPORT_SYMBOL vmlinux 0x5e0ccb9f sha1_transform -EXPORT_SYMBOL vmlinux 0x5e0fc722 security_sock_rcv_skb -EXPORT_SYMBOL vmlinux 0x5e1f1a2c mmput_async -EXPORT_SYMBOL vmlinux 0x5e24feef bdev_read_only -EXPORT_SYMBOL vmlinux 0x5e2b29bd devm_clk_get -EXPORT_SYMBOL vmlinux 0x5e3240a0 __cpu_online_mask -EXPORT_SYMBOL vmlinux 0x5e373fb4 gf128mul_64k_bbe -EXPORT_SYMBOL vmlinux 0x5e462d0a generic_delete_inode -EXPORT_SYMBOL vmlinux 0x5e4df270 phy_mac_interrupt -EXPORT_SYMBOL vmlinux 0x5e5fb2c5 scsi_change_queue_depth -EXPORT_SYMBOL vmlinux 0x5e67dc3b ethtool_op_get_ts_info -EXPORT_SYMBOL vmlinux 0x5e6f91f9 tegra_powergate_remove_clamping -EXPORT_SYMBOL vmlinux 0x5e7490ef dma_resv_copy_fences -EXPORT_SYMBOL vmlinux 0x5e87d300 radix_tree_lookup -EXPORT_SYMBOL vmlinux 0x5e8bfea2 blk_mq_complete_request -EXPORT_SYMBOL vmlinux 0x5e95b1cd current_umask -EXPORT_SYMBOL vmlinux 0x5eab375b vme_dma_request -EXPORT_SYMBOL vmlinux 0x5eb24829 dm_shift_arg -EXPORT_SYMBOL vmlinux 0x5eb76c46 rproc_of_parse_firmware -EXPORT_SYMBOL vmlinux 0x5ec4aee6 put_sg_io_hdr -EXPORT_SYMBOL vmlinux 0x5ec51e45 eth_commit_mac_addr_change -EXPORT_SYMBOL vmlinux 0x5ec87dda misc_register -EXPORT_SYMBOL vmlinux 0x5ed040b0 pm_set_vt_switch -EXPORT_SYMBOL vmlinux 0x5ed5febf eth_get_headlen -EXPORT_SYMBOL vmlinux 0x5ed90adc int_to_scsilun -EXPORT_SYMBOL vmlinux 0x5efdd68b __tracepoint_mmap_lock_released -EXPORT_SYMBOL vmlinux 0x5f098b2a in6addr_interfacelocal_allrouters -EXPORT_SYMBOL vmlinux 0x5f0c4bda remove_proc_entry -EXPORT_SYMBOL vmlinux 0x5f162fce mmc_gpiod_request_ro -EXPORT_SYMBOL vmlinux 0x5f2bd275 __alloc_bucket_spinlocks -EXPORT_SYMBOL vmlinux 0x5f30e7a7 tegra_io_pad_power_disable -EXPORT_SYMBOL vmlinux 0x5f3a486d sdev_prefix_printk -EXPORT_SYMBOL vmlinux 0x5f59453e kobject_init -EXPORT_SYMBOL vmlinux 0x5f624389 amba_device_register -EXPORT_SYMBOL vmlinux 0x5f6b889c rproc_va_to_pa -EXPORT_SYMBOL vmlinux 0x5f86ba67 __mmap_lock_do_trace_start_locking -EXPORT_SYMBOL vmlinux 0x5f93525c acpi_extract_package -EXPORT_SYMBOL vmlinux 0x5f98bdb6 nf_hooks_needed -EXPORT_SYMBOL vmlinux 0x5f9c355f elv_bio_merge_ok -EXPORT_SYMBOL vmlinux 0x5fa34bb8 __breadahead_gfp -EXPORT_SYMBOL vmlinux 0x5fa8f67d update_devfreq -EXPORT_SYMBOL vmlinux 0x5faa0191 generic_file_fsync -EXPORT_SYMBOL vmlinux 0x5fbe083c max8925_bulk_write -EXPORT_SYMBOL vmlinux 0x5fc407aa get_watch_queue -EXPORT_SYMBOL vmlinux 0x5fc72f0e alloc_pages_exact -EXPORT_SYMBOL vmlinux 0x5fe39f7e call_netdevice_notifiers -EXPORT_SYMBOL vmlinux 0x5fed178c meson_sm_call -EXPORT_SYMBOL vmlinux 0x5ff81016 genlmsg_multicast_allns -EXPORT_SYMBOL vmlinux 0x5ff8d7b5 nobh_writepage -EXPORT_SYMBOL vmlinux 0x5fffce84 page_zero_new_buffers -EXPORT_SYMBOL vmlinux 0x6005c351 zpool_has_pool -EXPORT_SYMBOL vmlinux 0x600683d3 do_unblank_screen -EXPORT_SYMBOL vmlinux 0x6015ace2 sock_sendmsg -EXPORT_SYMBOL vmlinux 0x601f665f dm_io_client_create -EXPORT_SYMBOL vmlinux 0x602a5b4e phy_register_fixup_for_uid -EXPORT_SYMBOL vmlinux 0x602cf59f dec_node_page_state -EXPORT_SYMBOL vmlinux 0x60352082 register_inet6addr_notifier -EXPORT_SYMBOL vmlinux 0x6054a221 __xfrm_route_forward -EXPORT_SYMBOL vmlinux 0x605790dc fiemap_fill_next_extent -EXPORT_SYMBOL vmlinux 0x60638391 tcf_idr_search -EXPORT_SYMBOL vmlinux 0x606e4eda of_find_node_with_property -EXPORT_SYMBOL vmlinux 0x606f213b path_is_mountpoint -EXPORT_SYMBOL vmlinux 0x607e5482 mmc_remove_host -EXPORT_SYMBOL vmlinux 0x608741b5 __init_swait_queue_head -EXPORT_SYMBOL vmlinux 0x608c2299 sock_alloc_file -EXPORT_SYMBOL vmlinux 0x6091b333 unregister_chrdev_region -EXPORT_SYMBOL vmlinux 0x60950a06 tty_check_change -EXPORT_SYMBOL vmlinux 0x609bcd98 in6_pton -EXPORT_SYMBOL vmlinux 0x609f1c7e synchronize_net -EXPORT_SYMBOL vmlinux 0x60aaeb4b qman_p_irqsource_add -EXPORT_SYMBOL vmlinux 0x60c2c2e8 tcf_block_get_ext -EXPORT_SYMBOL vmlinux 0x60cd2a4d xfrm6_protocol_deregister -EXPORT_SYMBOL vmlinux 0x60ce2928 phy_modify_paged_changed -EXPORT_SYMBOL vmlinux 0x60d5ad6d migrate_page_move_mapping -EXPORT_SYMBOL vmlinux 0x60d8ab30 vme_lm_get -EXPORT_SYMBOL vmlinux 0x60dc4278 down_write_trylock -EXPORT_SYMBOL vmlinux 0x60e48a4f vme_dma_list_free -EXPORT_SYMBOL vmlinux 0x60e595a6 scm_fp_dup -EXPORT_SYMBOL vmlinux 0x61073e4a acpi_os_map_generic_address -EXPORT_SYMBOL vmlinux 0x6108e082 scsi_ioctl -EXPORT_SYMBOL vmlinux 0x61236a33 pci_enable_wake -EXPORT_SYMBOL vmlinux 0x6128b5fc __printk_ratelimit -EXPORT_SYMBOL vmlinux 0x6130af99 ip6tun_encaps -EXPORT_SYMBOL vmlinux 0x61347034 mb_cache_entry_delete_or_get -EXPORT_SYMBOL vmlinux 0x61546d57 proc_dointvec_jiffies -EXPORT_SYMBOL vmlinux 0x615911d7 __bitmap_set -EXPORT_SYMBOL vmlinux 0x615c78bb pci_bus_assign_resources -EXPORT_SYMBOL vmlinux 0x6167e72c vmalloc_no_huge -EXPORT_SYMBOL vmlinux 0x6188cc61 pci_enable_atomic_ops_to_root -EXPORT_SYMBOL vmlinux 0x618911fc numa_node -EXPORT_SYMBOL vmlinux 0x61891e2f fscrypt_encrypt_block_inplace -EXPORT_SYMBOL vmlinux 0x618a2349 mod_node_page_state -EXPORT_SYMBOL vmlinux 0x618cf0e0 sched_autogroup_detach -EXPORT_SYMBOL vmlinux 0x619286b9 tcp_poll -EXPORT_SYMBOL vmlinux 0x619cb7dd simple_read_from_buffer -EXPORT_SYMBOL vmlinux 0x61a3f192 mmc_retune_unpause -EXPORT_SYMBOL vmlinux 0x61a97740 tcp_md5_hash_skb_data -EXPORT_SYMBOL vmlinux 0x61b7b126 simple_strtoull -EXPORT_SYMBOL vmlinux 0x61da5818 dma_resv_add_shared_fence -EXPORT_SYMBOL vmlinux 0x61e272c9 sha256_final -EXPORT_SYMBOL vmlinux 0x61e52809 user_path_create -EXPORT_SYMBOL vmlinux 0x61e7a9f8 skb_put -EXPORT_SYMBOL vmlinux 0x61ea189b fb_pad_aligned_buffer -EXPORT_SYMBOL vmlinux 0x6202dc5d free_netdev -EXPORT_SYMBOL vmlinux 0x620a64db inode_permission -EXPORT_SYMBOL vmlinux 0x62127159 kmem_cache_alloc_trace -EXPORT_SYMBOL vmlinux 0x6214aef2 cpufreq_unregister_notifier -EXPORT_SYMBOL vmlinux 0x621b3858 skb_flow_dissect_ct -EXPORT_SYMBOL vmlinux 0x6226317c qdisc_watchdog_schedule_range_ns -EXPORT_SYMBOL vmlinux 0x6228c21f smp_call_function_single -EXPORT_SYMBOL vmlinux 0x6239ecad __cleancache_put_page -EXPORT_SYMBOL vmlinux 0x62737e1d sock_unregister -EXPORT_SYMBOL vmlinux 0x6282fee3 xfrm_input -EXPORT_SYMBOL vmlinux 0x62849ac7 dev_valid_name -EXPORT_SYMBOL vmlinux 0x62949074 acpi_buffer_to_resource -EXPORT_SYMBOL vmlinux 0x62ab7b33 __phy_write_mmd -EXPORT_SYMBOL vmlinux 0x62bf6edf utf8agemin -EXPORT_SYMBOL vmlinux 0x62ce11ac alloc_pages_vma -EXPORT_SYMBOL vmlinux 0x62d6d5de radix_tree_insert -EXPORT_SYMBOL vmlinux 0x62d96443 qman_dma_portal -EXPORT_SYMBOL vmlinux 0x62da6b46 of_find_i2c_adapter_by_node -EXPORT_SYMBOL vmlinux 0x62ea3fef vme_master_request -EXPORT_SYMBOL vmlinux 0x62f3109b dev_disable_lro -EXPORT_SYMBOL vmlinux 0x63187451 pcie_aspm_support_enabled -EXPORT_SYMBOL vmlinux 0x631d06aa cpu_rmap_put -EXPORT_SYMBOL vmlinux 0x632f9e50 mutex_lock_io -EXPORT_SYMBOL vmlinux 0x633122fa dma_resv_fini -EXPORT_SYMBOL vmlinux 0x6337fde3 dev_addr_del -EXPORT_SYMBOL vmlinux 0x6357b0fe inet_dgram_ops -EXPORT_SYMBOL vmlinux 0x63606461 dquot_operations -EXPORT_SYMBOL vmlinux 0x636a7a57 netdev_emerg -EXPORT_SYMBOL vmlinux 0x637182f5 xa_destroy -EXPORT_SYMBOL vmlinux 0x639175cc bdi_register -EXPORT_SYMBOL vmlinux 0x639421c1 mr_table_alloc -EXPORT_SYMBOL vmlinux 0x639ae5c1 edac_mc_find -EXPORT_SYMBOL vmlinux 0x63a38380 netlink_unicast -EXPORT_SYMBOL vmlinux 0x63a58370 flow_action_cookie_destroy -EXPORT_SYMBOL vmlinux 0x63a6a941 find_get_pages_range_tag -EXPORT_SYMBOL vmlinux 0x63a70095 dq_data_lock -EXPORT_SYMBOL vmlinux 0x63a7c28c bitmap_find_free_region -EXPORT_SYMBOL vmlinux 0x63a9f250 blk_mq_alloc_request -EXPORT_SYMBOL vmlinux 0x63c4d61f __bitmap_weight -EXPORT_SYMBOL vmlinux 0x63dac86c bio_add_page -EXPORT_SYMBOL vmlinux 0x63e792a4 netdev_notice -EXPORT_SYMBOL vmlinux 0x63eb9355 panic_blink -EXPORT_SYMBOL vmlinux 0x640f0394 __brelse -EXPORT_SYMBOL vmlinux 0x64127b67 bitmap_find_next_zero_area_off -EXPORT_SYMBOL vmlinux 0x64154c48 twl6030_mmc_card_detect -EXPORT_SYMBOL vmlinux 0x6418113f netif_stacked_transfer_operstate -EXPORT_SYMBOL vmlinux 0x642eb5c6 xen_poll_irq_timeout -EXPORT_SYMBOL vmlinux 0x6435231c __dec_zone_page_state -EXPORT_SYMBOL vmlinux 0x643f3068 __tracepoint_spi_transfer_stop -EXPORT_SYMBOL vmlinux 0x6449e432 i2c_smbus_write_byte_data -EXPORT_SYMBOL vmlinux 0x644b54f0 __traceiter_mmap_lock_acquire_returned -EXPORT_SYMBOL vmlinux 0x644be12c qman_affine_cpus -EXPORT_SYMBOL vmlinux 0x64563e55 inet_addr_type_table -EXPORT_SYMBOL vmlinux 0x64705ba1 seq_puts -EXPORT_SYMBOL vmlinux 0x647424c5 inode_init_always -EXPORT_SYMBOL vmlinux 0x6481ffe0 hsiphash_1u32 -EXPORT_SYMBOL vmlinux 0x648eb59d gc_inflight_list -EXPORT_SYMBOL vmlinux 0x6498f9ae dma_sync_sg_for_cpu -EXPORT_SYMBOL vmlinux 0x64999478 congestion_wait -EXPORT_SYMBOL vmlinux 0x64a2581d tty_flip_buffer_push -EXPORT_SYMBOL vmlinux 0x64a9c928 default_blu -EXPORT_SYMBOL vmlinux 0x64b6f958 pcie_set_readrq -EXPORT_SYMBOL vmlinux 0x64b9f4e8 kobject_set_name -EXPORT_SYMBOL vmlinux 0x64bbc288 string_unescape -EXPORT_SYMBOL vmlinux 0x64bbc4ee empty_aops -EXPORT_SYMBOL vmlinux 0x64ec5724 find_inode_by_ino_rcu -EXPORT_SYMBOL vmlinux 0x64ef9f03 dcb_ieee_getapp_prio_dscp_mask_map -EXPORT_SYMBOL vmlinux 0x64f8bac0 input_mt_drop_unused -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 0x652121ec misc_deregister -EXPORT_SYMBOL vmlinux 0x652ce9aa nla_memcmp -EXPORT_SYMBOL vmlinux 0x6535d5dd cros_ec_get_host_event -EXPORT_SYMBOL vmlinux 0x6536ef10 mmc_card_alternative_gpt_sector -EXPORT_SYMBOL vmlinux 0x65408378 zlib_inflate_blob -EXPORT_SYMBOL vmlinux 0x6544351d radix_tree_replace_slot -EXPORT_SYMBOL vmlinux 0x654449c3 memset16 -EXPORT_SYMBOL vmlinux 0x6566dceb devm_ioport_map -EXPORT_SYMBOL vmlinux 0x656c1a0e string_escape_mem -EXPORT_SYMBOL vmlinux 0x656e4a6e snprintf -EXPORT_SYMBOL vmlinux 0x6572e658 tty_unregister_driver -EXPORT_SYMBOL vmlinux 0x658ce1a8 xxh64_reset -EXPORT_SYMBOL vmlinux 0x659b6bce qman_get_qm_portal_config -EXPORT_SYMBOL vmlinux 0x659ded26 xfrm_flush_gc -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 0x6608bb1d netif_device_detach -EXPORT_SYMBOL vmlinux 0x6609a663 kern_unmount -EXPORT_SYMBOL vmlinux 0x6626afca down -EXPORT_SYMBOL vmlinux 0x6632d805 fscrypt_put_encryption_info -EXPORT_SYMBOL vmlinux 0x663d2ba6 acpi_dev_get_next_match_dev -EXPORT_SYMBOL vmlinux 0x664ab67b tty_devnum -EXPORT_SYMBOL vmlinux 0x664b1e29 qman_delete_cgr -EXPORT_SYMBOL vmlinux 0x664d5085 mmc_release_host -EXPORT_SYMBOL vmlinux 0x66628bf3 ip_tunnel_metadata_cnt -EXPORT_SYMBOL vmlinux 0x666863dc par_io_config_pin -EXPORT_SYMBOL vmlinux 0x66694d13 scsi_remove_device -EXPORT_SYMBOL vmlinux 0x66719ab7 dev_close -EXPORT_SYMBOL vmlinux 0x6673f96d xxh32_reset -EXPORT_SYMBOL vmlinux 0x66826f5a xudma_get_ringacc -EXPORT_SYMBOL vmlinux 0x66b4cc41 kmemdup -EXPORT_SYMBOL vmlinux 0x66bbe389 __task_pid_nr_ns -EXPORT_SYMBOL vmlinux 0x66d10a02 nf_ip_checksum -EXPORT_SYMBOL vmlinux 0x66d821ad vlan_vid_del -EXPORT_SYMBOL vmlinux 0x66ecc0f4 grab_cache_page_write_begin -EXPORT_SYMBOL vmlinux 0x6702c09d textsearch_prepare -EXPORT_SYMBOL vmlinux 0x672a1987 blk_queue_update_dma_alignment -EXPORT_SYMBOL vmlinux 0x672f8cd5 skb_flow_get_icmp_tci -EXPORT_SYMBOL vmlinux 0x67364e81 of_iommu_get_resv_regions -EXPORT_SYMBOL vmlinux 0x673f4749 pcie_port_service_register -EXPORT_SYMBOL vmlinux 0x67412d2f ucc_slow_enable -EXPORT_SYMBOL vmlinux 0x6749d53f hdmi_vendor_infoframe_init -EXPORT_SYMBOL vmlinux 0x674eab05 clocksource_change_rating -EXPORT_SYMBOL vmlinux 0x678123f7 nf_setsockopt -EXPORT_SYMBOL vmlinux 0x678226c7 tcf_exts_num_actions -EXPORT_SYMBOL vmlinux 0x678b96ec dma_pool_alloc -EXPORT_SYMBOL vmlinux 0x678dce1a skb_tunnel_check_pmtu -EXPORT_SYMBOL vmlinux 0x679d7dc0 kobject_get -EXPORT_SYMBOL vmlinux 0x67b27ec1 tty_std_termios -EXPORT_SYMBOL vmlinux 0x67b78eb3 seq_hlist_next_rcu -EXPORT_SYMBOL vmlinux 0x67c13ea0 acpi_read -EXPORT_SYMBOL vmlinux 0x67c3ddd3 fman_get_pause_cfg -EXPORT_SYMBOL vmlinux 0x67d9dca6 unregister_netdevice_queue -EXPORT_SYMBOL vmlinux 0x67e368a6 __nla_reserve -EXPORT_SYMBOL vmlinux 0x67e79b60 jbd2_journal_finish_inode_data_buffers -EXPORT_SYMBOL vmlinux 0x6802c75e eth_header_cache -EXPORT_SYMBOL vmlinux 0x681b6670 is_firmware_framebuffer -EXPORT_SYMBOL vmlinux 0x682e99ac netdev_refcnt_read -EXPORT_SYMBOL vmlinux 0x68469b54 dev_mc_init -EXPORT_SYMBOL vmlinux 0x6858d7b1 netdev_master_upper_dev_link -EXPORT_SYMBOL vmlinux 0x685e0b0c is_subdir -EXPORT_SYMBOL vmlinux 0x6869e56a tcp_v4_syn_recv_sock -EXPORT_SYMBOL vmlinux 0x687b6a16 kdbgetsymval -EXPORT_SYMBOL vmlinux 0x687f08a5 mipi_dsi_host_register -EXPORT_SYMBOL vmlinux 0x688308c3 migrate_vma_finalize -EXPORT_SYMBOL vmlinux 0x68878d1a dst_alloc -EXPORT_SYMBOL vmlinux 0x68959963 devm_rproc_alloc -EXPORT_SYMBOL vmlinux 0x6897b1a8 rproc_coredump_set_elf_info -EXPORT_SYMBOL vmlinux 0x689c26e0 param_get_ulong -EXPORT_SYMBOL vmlinux 0x68ab5566 vlan_dev_vlan_id -EXPORT_SYMBOL vmlinux 0x68b9422c submit_bio -EXPORT_SYMBOL vmlinux 0x68bb96b2 gen_pool_set_algo -EXPORT_SYMBOL vmlinux 0x68bf66a5 build_skb -EXPORT_SYMBOL vmlinux 0x68c7e9d9 inet_add_protocol -EXPORT_SYMBOL vmlinux 0x68d547d7 flow_block_cb_alloc -EXPORT_SYMBOL vmlinux 0x68fb581a icst307_idx2s -EXPORT_SYMBOL vmlinux 0x68fd5e5b __fib6_flush_trees -EXPORT_SYMBOL vmlinux 0x6902b2fc bioset_init -EXPORT_SYMBOL vmlinux 0x6917a77e __traceiter_kmem_cache_free -EXPORT_SYMBOL vmlinux 0x6936cfd5 kthread_create_worker -EXPORT_SYMBOL vmlinux 0x6948df64 bio_split -EXPORT_SYMBOL vmlinux 0x6949402e of_mdio_find_bus -EXPORT_SYMBOL vmlinux 0x69585523 __ksize -EXPORT_SYMBOL vmlinux 0x6959bf6a get_unmapped_area -EXPORT_SYMBOL vmlinux 0x69668826 netdev_increment_features -EXPORT_SYMBOL vmlinux 0x6966b287 send_sig_info -EXPORT_SYMBOL vmlinux 0x696dc929 validate_slab_cache -EXPORT_SYMBOL vmlinux 0x6971447a rtc_month_days -EXPORT_SYMBOL vmlinux 0x697ed5f0 memcpy_and_pad -EXPORT_SYMBOL vmlinux 0x698454ab netdev_name_node_alt_destroy -EXPORT_SYMBOL vmlinux 0x699197b4 flush_dcache_page -EXPORT_SYMBOL vmlinux 0x699b2aa5 blk_mq_free_tag_set -EXPORT_SYMBOL vmlinux 0x69a5f3bc pci_enable_device_io -EXPORT_SYMBOL vmlinux 0x69d816ed nd_btt_arena_is_valid -EXPORT_SYMBOL vmlinux 0x69dd3b5b crc32_le -EXPORT_SYMBOL vmlinux 0x69de8757 vme_check_window -EXPORT_SYMBOL vmlinux 0x69eaa779 generic_file_llseek -EXPORT_SYMBOL vmlinux 0x69f38847 cpu_hwcap_keys -EXPORT_SYMBOL vmlinux 0x69fed408 phy_read_paged -EXPORT_SYMBOL vmlinux 0x6a03751f sgl_free_order -EXPORT_SYMBOL vmlinux 0x6a037cf1 mempool_kfree -EXPORT_SYMBOL vmlinux 0x6a0caee9 phy_trigger_machine -EXPORT_SYMBOL vmlinux 0x6a27e537 pci_ep_cfs_remove_epf_group -EXPORT_SYMBOL vmlinux 0x6a2b1240 dquot_mark_dquot_dirty -EXPORT_SYMBOL vmlinux 0x6a2cf0fa backlight_device_get_by_type -EXPORT_SYMBOL vmlinux 0x6a3766b2 qman_delete_cgr_safe -EXPORT_SYMBOL vmlinux 0x6a379d7f blk_mq_unique_tag -EXPORT_SYMBOL vmlinux 0x6a44e437 mr_mfc_find_parent -EXPORT_SYMBOL vmlinux 0x6a5b8797 __register_chrdev -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 0x6a728617 nf_unregister_net_hooks -EXPORT_SYMBOL vmlinux 0x6a75d166 jbd2_transaction_committed -EXPORT_SYMBOL vmlinux 0x6a86e1b3 blkdev_get_by_path -EXPORT_SYMBOL vmlinux 0x6a8e4dd9 of_node_name_prefix -EXPORT_SYMBOL vmlinux 0x6a90663a qman_schedule_fq -EXPORT_SYMBOL vmlinux 0x6a92dd50 gen_pool_first_fit_order_align -EXPORT_SYMBOL vmlinux 0x6a9ceb47 add_to_pipe -EXPORT_SYMBOL vmlinux 0x6aa11aa6 sgl_free_n_order -EXPORT_SYMBOL vmlinux 0x6aa6d83c tcp_seq_start -EXPORT_SYMBOL vmlinux 0x6aad45fa pci_back_from_sleep -EXPORT_SYMBOL vmlinux 0x6ab5547b __ip_select_ident -EXPORT_SYMBOL vmlinux 0x6add5c9a dmi_find_device -EXPORT_SYMBOL vmlinux 0x6ae3bdb0 param_get_long -EXPORT_SYMBOL vmlinux 0x6aeefac4 zlib_deflateReset -EXPORT_SYMBOL vmlinux 0x6af13b38 fman_port_bind -EXPORT_SYMBOL vmlinux 0x6afd9ea0 tcp_req_err -EXPORT_SYMBOL vmlinux 0x6b010cf9 kill_litter_super -EXPORT_SYMBOL vmlinux 0x6b1ca67e page_pool_release_page -EXPORT_SYMBOL vmlinux 0x6b2bec66 netdev_lower_dev_get_private -EXPORT_SYMBOL vmlinux 0x6b2dc060 dump_stack -EXPORT_SYMBOL vmlinux 0x6b3e862f con_copy_unimap -EXPORT_SYMBOL vmlinux 0x6b4167a4 fb_get_buffer_offset -EXPORT_SYMBOL vmlinux 0x6b435591 simple_pin_fs -EXPORT_SYMBOL vmlinux 0x6b4793f8 nd_device_unregister -EXPORT_SYMBOL vmlinux 0x6b4b2933 __ioremap -EXPORT_SYMBOL vmlinux 0x6b558446 blk_queue_logical_block_size -EXPORT_SYMBOL vmlinux 0x6b55acd0 rtnl_lock_killable -EXPORT_SYMBOL vmlinux 0x6b55ca57 dev_set_promiscuity -EXPORT_SYMBOL vmlinux 0x6b5c832a jbd2_wait_inode_data -EXPORT_SYMBOL vmlinux 0x6b5c8369 fifo_set_limit -EXPORT_SYMBOL vmlinux 0x6b7b6357 pcie_relaxed_ordering_enabled -EXPORT_SYMBOL vmlinux 0x6b80b50e dev_uc_add_excl -EXPORT_SYMBOL vmlinux 0x6b853d06 ns_to_kernel_old_timeval -EXPORT_SYMBOL vmlinux 0x6b8bf149 netif_receive_skb_list -EXPORT_SYMBOL vmlinux 0x6b913c72 tcp_sock_set_keepidle -EXPORT_SYMBOL vmlinux 0x6b9d1c95 security_req_classify_flow -EXPORT_SYMBOL vmlinux 0x6baeb313 __put_page -EXPORT_SYMBOL vmlinux 0x6baef639 md_unregister_thread -EXPORT_SYMBOL vmlinux 0x6bb60a37 tso_build_hdr -EXPORT_SYMBOL vmlinux 0x6bc3fbc0 __unregister_chrdev -EXPORT_SYMBOL vmlinux 0x6bd0e573 down_interruptible -EXPORT_SYMBOL vmlinux 0x6bd23226 path_put -EXPORT_SYMBOL vmlinux 0x6be1c1f8 acpi_install_method -EXPORT_SYMBOL vmlinux 0x6bf091e2 xa_clear_mark -EXPORT_SYMBOL vmlinux 0x6bf181c1 __tracepoint_kmem_cache_free -EXPORT_SYMBOL vmlinux 0x6bf3cda5 iommu_put_dma_cookie -EXPORT_SYMBOL vmlinux 0x6bfbd8be pcibios_bus_to_resource -EXPORT_SYMBOL vmlinux 0x6c04d515 acpi_dev_get_first_match_dev -EXPORT_SYMBOL vmlinux 0x6c07dd0f rproc_elf_find_loaded_rsc_table -EXPORT_SYMBOL vmlinux 0x6c257ac0 tty_termios_hw_change -EXPORT_SYMBOL vmlinux 0x6c2c9e24 simple_rename -EXPORT_SYMBOL vmlinux 0x6c33f9c2 eth_gro_complete -EXPORT_SYMBOL vmlinux 0x6c39a5ea seq_read -EXPORT_SYMBOL vmlinux 0x6c4ecebe generic_update_time -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 0x6c82d948 bio_integrity_trim -EXPORT_SYMBOL vmlinux 0x6cae624e fscrypt_free_inode -EXPORT_SYMBOL vmlinux 0x6cb46525 netlbl_catmap_walk -EXPORT_SYMBOL vmlinux 0x6cbbfc54 __arch_copy_to_user -EXPORT_SYMBOL vmlinux 0x6ccefa25 unregister_quota_format -EXPORT_SYMBOL vmlinux 0x6cd81ffa pci_find_capability -EXPORT_SYMBOL vmlinux 0x6cda11de security_inode_notifysecctx -EXPORT_SYMBOL vmlinux 0x6cf0d67d qe_get_num_of_snums -EXPORT_SYMBOL vmlinux 0x6d294e43 clock_t_to_jiffies -EXPORT_SYMBOL vmlinux 0x6d302bb6 tty_port_tty_set -EXPORT_SYMBOL vmlinux 0x6d340f64 tty_termios_input_baud_rate -EXPORT_SYMBOL vmlinux 0x6d38c6e4 devfreq_remove_governor -EXPORT_SYMBOL vmlinux 0x6d39d498 sock_alloc -EXPORT_SYMBOL vmlinux 0x6d486365 pagecache_write_begin -EXPORT_SYMBOL vmlinux 0x6d49a7c3 vfs_fsync -EXPORT_SYMBOL vmlinux 0x6d529aa6 dcb_ieee_getapp_mask -EXPORT_SYMBOL vmlinux 0x6d538ffa inet_pton_with_scope -EXPORT_SYMBOL vmlinux 0x6d658ff3 skb_dump -EXPORT_SYMBOL vmlinux 0x6d73c95f logic_outw -EXPORT_SYMBOL vmlinux 0x6d7b32f0 pci_disable_msi -EXPORT_SYMBOL vmlinux 0x6d7c7dcc bitmap_cut -EXPORT_SYMBOL vmlinux 0x6d859d77 security_sb_clone_mnt_opts -EXPORT_SYMBOL vmlinux 0x6d862252 pcix_get_max_mmrbc -EXPORT_SYMBOL vmlinux 0x6da467cb pfn_is_map_memory -EXPORT_SYMBOL vmlinux 0x6da7f122 skb_split -EXPORT_SYMBOL vmlinux 0x6db9a7e2 sg_alloc_append_table_from_pages -EXPORT_SYMBOL vmlinux 0x6dcf857f uuid_null -EXPORT_SYMBOL vmlinux 0x6dd17e7b acpi_get_table_header -EXPORT_SYMBOL vmlinux 0x6dd3540c pci_enable_device -EXPORT_SYMBOL vmlinux 0x6dda668b inc_node_page_state -EXPORT_SYMBOL vmlinux 0x6de0a526 sg_miter_skip -EXPORT_SYMBOL vmlinux 0x6de4f942 xp_dma_unmap -EXPORT_SYMBOL vmlinux 0x6deb06a5 t10_pi_type3_ip -EXPORT_SYMBOL vmlinux 0x6df1aaf1 kernel_sigaction -EXPORT_SYMBOL vmlinux 0x6df2162f param_set_byte -EXPORT_SYMBOL vmlinux 0x6df9033b vm_mmap -EXPORT_SYMBOL vmlinux 0x6e00caf7 redraw_screen -EXPORT_SYMBOL vmlinux 0x6e0439c9 fault_in_iov_iter_readable -EXPORT_SYMBOL vmlinux 0x6e2081a2 seq_open -EXPORT_SYMBOL vmlinux 0x6e2e2ba7 dump_skip_to -EXPORT_SYMBOL vmlinux 0x6e2fd2ff seq_file_path -EXPORT_SYMBOL vmlinux 0x6e4d0258 dmam_free_coherent -EXPORT_SYMBOL vmlinux 0x6e4f09cd d_instantiate_new -EXPORT_SYMBOL vmlinux 0x6e5b8651 xz_dec_run -EXPORT_SYMBOL vmlinux 0x6e5e92c9 mipi_dsi_driver_register_full -EXPORT_SYMBOL vmlinux 0x6e690df1 pci_unregister_driver -EXPORT_SYMBOL vmlinux 0x6e720ff2 rtnl_unlock -EXPORT_SYMBOL vmlinux 0x6e87e760 flow_block_cb_setup_simple -EXPORT_SYMBOL vmlinux 0x6e924f8a __cleancache_invalidate_inode -EXPORT_SYMBOL vmlinux 0x6e998248 inode_set_bytes -EXPORT_SYMBOL vmlinux 0x6e9b4dd6 sock_no_listen -EXPORT_SYMBOL vmlinux 0x6e9dd606 __symbol_put -EXPORT_SYMBOL vmlinux 0x6ea9363b force_sig -EXPORT_SYMBOL vmlinux 0x6eb35c60 max8925_reg_read -EXPORT_SYMBOL vmlinux 0x6ec7bf2c devm_clk_release_clkdev -EXPORT_SYMBOL vmlinux 0x6ecf49f6 sock_no_ioctl -EXPORT_SYMBOL vmlinux 0x6ed8c7e0 dev_queue_xmit_accel -EXPORT_SYMBOL vmlinux 0x6ee363ed i2c_smbus_write_word_data -EXPORT_SYMBOL vmlinux 0x6ee8bce2 vfs_clone_file_range -EXPORT_SYMBOL vmlinux 0x6eef9404 mempool_create_node -EXPORT_SYMBOL vmlinux 0x6efec973 netdev_notify_peers -EXPORT_SYMBOL vmlinux 0x6f27619a dev_open -EXPORT_SYMBOL vmlinux 0x6f2d214b xfrm_state_flush -EXPORT_SYMBOL vmlinux 0x6f2e6413 skb_queue_purge -EXPORT_SYMBOL vmlinux 0x6f3ee94b iw_handler_get_spy -EXPORT_SYMBOL vmlinux 0x6f41a428 acpi_get_vendor_resource -EXPORT_SYMBOL vmlinux 0x6f43bac8 vme_irq_request -EXPORT_SYMBOL vmlinux 0x6f4cb5d9 pci_free_irq_vectors -EXPORT_SYMBOL vmlinux 0x6f5ab52f acpi_get_local_address -EXPORT_SYMBOL vmlinux 0x6f5e5d40 param_get_uint -EXPORT_SYMBOL vmlinux 0x6f68c46b genphy_update_link -EXPORT_SYMBOL vmlinux 0x6f6c0ea0 pcie_port_service_unregister -EXPORT_SYMBOL vmlinux 0x6f8c1e9f load_nls_default -EXPORT_SYMBOL vmlinux 0x6f8c7129 xfrm_policy_alloc -EXPORT_SYMBOL vmlinux 0x6f8f674a bpf_dispatcher_xdp_func -EXPORT_SYMBOL vmlinux 0x6f915a45 dqstats -EXPORT_SYMBOL vmlinux 0x6f963843 scsi_scan_target -EXPORT_SYMBOL vmlinux 0x6f9ffca0 skb_vlan_pop -EXPORT_SYMBOL vmlinux 0x6fb49676 queue_rcu_work -EXPORT_SYMBOL vmlinux 0x6fb5fcb6 disk_end_io_acct -EXPORT_SYMBOL vmlinux 0x6fbc023f __skb_flow_get_ports -EXPORT_SYMBOL vmlinux 0x6fc448de mdio_driver_unregister -EXPORT_SYMBOL vmlinux 0x6fcb87a1 touch_softlockup_watchdog -EXPORT_SYMBOL vmlinux 0x6fdf77c9 xfrm_stateonly_find -EXPORT_SYMBOL vmlinux 0x6fff261f __arch_clear_user -EXPORT_SYMBOL vmlinux 0x70002fe8 siphash_1u32 -EXPORT_SYMBOL vmlinux 0x70025840 __cleancache_invalidate_fs -EXPORT_SYMBOL vmlinux 0x7003375e simple_statfs -EXPORT_SYMBOL vmlinux 0x7003ae52 __mutex_rt_init -EXPORT_SYMBOL vmlinux 0x702068c1 disk_stack_limits -EXPORT_SYMBOL vmlinux 0x70230083 buffer_check_dirty_writeback -EXPORT_SYMBOL vmlinux 0x7023bea8 unregister_acpi_notifier -EXPORT_SYMBOL vmlinux 0x702946da ucs2_strlen -EXPORT_SYMBOL vmlinux 0x702a78f1 __sync_dirty_buffer -EXPORT_SYMBOL vmlinux 0x7038376c __get_hash_from_flowi6 -EXPORT_SYMBOL vmlinux 0x7043f420 inode_needs_sync -EXPORT_SYMBOL vmlinux 0x705bd8d6 cpufreq_generic_suspend -EXPORT_SYMBOL vmlinux 0x70635599 inet_csk_reqsk_queue_drop -EXPORT_SYMBOL vmlinux 0x706eb35d do_wait_intr_irq -EXPORT_SYMBOL vmlinux 0x70839fdd pnp_get_resource -EXPORT_SYMBOL vmlinux 0x708a0cec thermal_zone_device_critical -EXPORT_SYMBOL vmlinux 0x709a8622 xfrm_state_delete_tunnel -EXPORT_SYMBOL vmlinux 0x70a4f486 pci_scan_slot -EXPORT_SYMBOL vmlinux 0x70bc2b42 udp6_csum_init -EXPORT_SYMBOL vmlinux 0x70c4b104 __xa_clear_mark -EXPORT_SYMBOL vmlinux 0x70d1a18e qman_release_pool -EXPORT_SYMBOL vmlinux 0x70f30045 cdev_add -EXPORT_SYMBOL vmlinux 0x71019646 proc_create_mount_point -EXPORT_SYMBOL vmlinux 0x7108cf5e xfrm_init_replay -EXPORT_SYMBOL vmlinux 0x711561b0 delete_from_page_cache -EXPORT_SYMBOL vmlinux 0x7129e5f8 hex_asc -EXPORT_SYMBOL vmlinux 0x71332e51 igrab -EXPORT_SYMBOL vmlinux 0x7141b88a logic_insb -EXPORT_SYMBOL vmlinux 0x715a5ed0 vprintk -EXPORT_SYMBOL vmlinux 0x715c5151 mipi_dsi_dcs_read -EXPORT_SYMBOL vmlinux 0x7171121c overflowgid -EXPORT_SYMBOL vmlinux 0x717867f2 mipi_dsi_shutdown_peripheral -EXPORT_SYMBOL vmlinux 0x71800f8e vme_lm_request -EXPORT_SYMBOL vmlinux 0x71912b22 __lock_buffer -EXPORT_SYMBOL vmlinux 0x71a672ef dmam_pool_destroy -EXPORT_SYMBOL vmlinux 0x71aa1268 netlink_set_err -EXPORT_SYMBOL vmlinux 0x71aaa96c xp_dma_map -EXPORT_SYMBOL vmlinux 0x71b0850a neigh_lookup -EXPORT_SYMBOL vmlinux 0x71ba0321 pci_set_mwi -EXPORT_SYMBOL vmlinux 0x71c75f3b sock_kfree_s -EXPORT_SYMBOL vmlinux 0x71dfc095 acpi_walk_resources -EXPORT_SYMBOL vmlinux 0x71f5f8ca pci_read_vpd -EXPORT_SYMBOL vmlinux 0x71f629f9 pnp_is_active -EXPORT_SYMBOL vmlinux 0x71f6db54 reuseport_detach_prog -EXPORT_SYMBOL vmlinux 0x720a27a7 __register_blkdev -EXPORT_SYMBOL vmlinux 0x722f1f8c serial8250_set_isa_configurator -EXPORT_SYMBOL vmlinux 0x7235a463 __cgroup_bpf_run_filter_sk -EXPORT_SYMBOL vmlinux 0x724ddac7 utf8version_is_supported -EXPORT_SYMBOL vmlinux 0x7265b414 of_device_get_match_data -EXPORT_SYMBOL vmlinux 0x726bc3c7 wait_for_completion_killable_timeout -EXPORT_SYMBOL vmlinux 0x726bff0c __dev_get_by_index -EXPORT_SYMBOL vmlinux 0x728bc41c iommu_get_msi_cookie -EXPORT_SYMBOL vmlinux 0x72a50966 ucc_fast_disable -EXPORT_SYMBOL vmlinux 0x72a5f23e of_root -EXPORT_SYMBOL vmlinux 0x72aab487 ethtool_rx_flow_rule_destroy -EXPORT_SYMBOL vmlinux 0x72ab047b cad_pid -EXPORT_SYMBOL vmlinux 0x72b9d287 default_grn -EXPORT_SYMBOL vmlinux 0x72bd2bb7 ps2_begin_command -EXPORT_SYMBOL vmlinux 0x72ce3524 find_vma -EXPORT_SYMBOL vmlinux 0x72ea7b2d scsi_device_type -EXPORT_SYMBOL vmlinux 0x72f14ff7 acpi_get_object_info -EXPORT_SYMBOL vmlinux 0x72f3fd4a mdio_device_register -EXPORT_SYMBOL vmlinux 0x73016bd0 forget_all_cached_acls -EXPORT_SYMBOL vmlinux 0x7315a4e9 twl6030_mmc_card_detect_config -EXPORT_SYMBOL vmlinux 0x731dba7a xen_domain_type -EXPORT_SYMBOL vmlinux 0x73220e6a __splice_from_pipe -EXPORT_SYMBOL vmlinux 0x732dd326 groups_free -EXPORT_SYMBOL vmlinux 0x733711f8 udp6_set_csum -EXPORT_SYMBOL vmlinux 0x733724dd __traceiter_module_get -EXPORT_SYMBOL vmlinux 0x73373ab1 scsi_target_resume -EXPORT_SYMBOL vmlinux 0x734e0860 sdev_enable_disk_events -EXPORT_SYMBOL vmlinux 0x7350eb4a pcie_capability_write_dword -EXPORT_SYMBOL vmlinux 0x7352621c inet6_csk_route_req -EXPORT_SYMBOL vmlinux 0x7358136b I_BDEV -EXPORT_SYMBOL vmlinux 0x735e6a81 acpi_evaluate_integer -EXPORT_SYMBOL vmlinux 0x735ece9f of_device_alloc -EXPORT_SYMBOL vmlinux 0x737273ba mmc_gpio_set_cd_wake -EXPORT_SYMBOL vmlinux 0x7380dffa argv_split -EXPORT_SYMBOL vmlinux 0x7383759c neigh_ifdown -EXPORT_SYMBOL vmlinux 0x73998efa cpm_muram_free_addr -EXPORT_SYMBOL vmlinux 0x739f7171 __break_lease -EXPORT_SYMBOL vmlinux 0x739f8b86 netif_tx_wake_queue -EXPORT_SYMBOL vmlinux 0x739fd00f __SCK__tp_func_module_get -EXPORT_SYMBOL vmlinux 0x73abb180 alloc_contig_range -EXPORT_SYMBOL vmlinux 0x73d29544 regset_get -EXPORT_SYMBOL vmlinux 0x73dc0319 mmc_gpiod_request_cd_irq -EXPORT_SYMBOL vmlinux 0x740af0eb set_create_files_as -EXPORT_SYMBOL vmlinux 0x7410aba2 strreplace -EXPORT_SYMBOL vmlinux 0x7412ed5b kvfree_sensitive -EXPORT_SYMBOL vmlinux 0x74200d42 security_inet_conn_request -EXPORT_SYMBOL vmlinux 0x742578a5 wait_for_random_bytes -EXPORT_SYMBOL vmlinux 0x7429e20c kstrtos8 -EXPORT_SYMBOL vmlinux 0x742c2e57 jbd2_journal_inode_ranged_wait -EXPORT_SYMBOL vmlinux 0x743f4126 keygen_port_hashing_init -EXPORT_SYMBOL vmlinux 0x74442226 mr_vif_seq_idx -EXPORT_SYMBOL vmlinux 0x7453d3e8 security_release_secctx -EXPORT_SYMBOL vmlinux 0x746461b1 input_set_abs_params -EXPORT_SYMBOL vmlinux 0x74699ba4 neigh_direct_output -EXPORT_SYMBOL vmlinux 0x74754435 acpi_bus_generate_netlink_event -EXPORT_SYMBOL vmlinux 0x7483dc59 pci_dev_present -EXPORT_SYMBOL vmlinux 0x74a2eb82 dm_mq_kick_requeue_list -EXPORT_SYMBOL vmlinux 0x74a6da44 drop_nlink -EXPORT_SYMBOL vmlinux 0x74b818c2 key_revoke -EXPORT_SYMBOL vmlinux 0x74b8e674 slhc_toss -EXPORT_SYMBOL vmlinux 0x74be1bf0 skb_checksum_setup -EXPORT_SYMBOL vmlinux 0x74c134b9 __sw_hweight32 -EXPORT_SYMBOL vmlinux 0x74cd80da tcp_conn_request -EXPORT_SYMBOL vmlinux 0x74d8cd3a devfreq_suspend_device -EXPORT_SYMBOL vmlinux 0x74e5ff1a udpv6_encap_enable -EXPORT_SYMBOL vmlinux 0x7511c763 vfs_create -EXPORT_SYMBOL vmlinux 0x753217c7 _dev_printk -EXPORT_SYMBOL vmlinux 0x75440b5f key_move -EXPORT_SYMBOL vmlinux 0x755b78c6 meson_sm_call_write -EXPORT_SYMBOL vmlinux 0x755f4ba3 blake2s_compress_generic -EXPORT_SYMBOL vmlinux 0x757eca17 cdrom_mode_sense -EXPORT_SYMBOL vmlinux 0x7582976b skb_vlan_untag -EXPORT_SYMBOL vmlinux 0x7584edc6 __inet_hash -EXPORT_SYMBOL vmlinux 0x75871f5e acpi_get_next_object -EXPORT_SYMBOL vmlinux 0x75916248 blk_put_queue -EXPORT_SYMBOL vmlinux 0x75b5a5fb filemap_write_and_wait_range -EXPORT_SYMBOL vmlinux 0x75bda77a seq_hlist_next -EXPORT_SYMBOL vmlinux 0x75c0dde9 put_cmsg -EXPORT_SYMBOL vmlinux 0x75c26e1f security_sb_set_mnt_opts -EXPORT_SYMBOL vmlinux 0x75d0deb9 nsecs_to_jiffies64 -EXPORT_SYMBOL vmlinux 0x75d499dd vmcore_add_device_dump -EXPORT_SYMBOL vmlinux 0x75dca09c rpmh_write_batch -EXPORT_SYMBOL vmlinux 0x760a0f4f yield -EXPORT_SYMBOL vmlinux 0x7618af39 hdmi_infoframe_check -EXPORT_SYMBOL vmlinux 0x7624249e dim_park_tired -EXPORT_SYMBOL vmlinux 0x763f2d10 fb_get_mode -EXPORT_SYMBOL vmlinux 0x7645ad1f md_bitmap_unplug -EXPORT_SYMBOL vmlinux 0x7647726c handle_sysrq -EXPORT_SYMBOL vmlinux 0x765bbdb9 sk_dst_check -EXPORT_SYMBOL vmlinux 0x765ff474 crc_t10dif_generic -EXPORT_SYMBOL vmlinux 0x76602a7f pci_read_config_word -EXPORT_SYMBOL vmlinux 0x76628b0d kobject_del -EXPORT_SYMBOL vmlinux 0x766a0927 mempool_alloc_pages -EXPORT_SYMBOL vmlinux 0x769f6e64 errseq_check -EXPORT_SYMBOL vmlinux 0x76a17f13 ethtool_notify -EXPORT_SYMBOL vmlinux 0x76d3cd60 laptop_mode -EXPORT_SYMBOL vmlinux 0x76d7b67a ip_queue_xmit -EXPORT_SYMBOL vmlinux 0x76ef56fe gro_find_complete_by_type -EXPORT_SYMBOL vmlinux 0x7702e868 ip6_route_me_harder -EXPORT_SYMBOL vmlinux 0x770b4dc9 phy_driver_register -EXPORT_SYMBOL vmlinux 0x772b1303 scsi_get_device_flags_keyed -EXPORT_SYMBOL vmlinux 0x7731c4aa scsi_block_requests -EXPORT_SYMBOL vmlinux 0x7732159c free_irq_cpu_rmap -EXPORT_SYMBOL vmlinux 0x77358855 iomem_resource -EXPORT_SYMBOL vmlinux 0x773fa409 __kfifo_dma_in_finish_r -EXPORT_SYMBOL vmlinux 0x77456e0a acpi_root_dir -EXPORT_SYMBOL vmlinux 0x774fdc20 mipi_dsi_dcs_write -EXPORT_SYMBOL vmlinux 0x77507752 is_nd_pfn -EXPORT_SYMBOL vmlinux 0x775ac783 init_task -EXPORT_SYMBOL vmlinux 0x775fbb07 __dynamic_netdev_dbg -EXPORT_SYMBOL vmlinux 0x776ca93a __clzdi2 -EXPORT_SYMBOL vmlinux 0x77779125 find_get_pages_contig -EXPORT_SYMBOL vmlinux 0x777e4934 tcp_get_cookie_sock -EXPORT_SYMBOL vmlinux 0x7786ffb4 rename_lock -EXPORT_SYMBOL vmlinux 0x778902e3 jbd2_journal_grab_journal_head -EXPORT_SYMBOL vmlinux 0x778fc5fa netdev_class_remove_file_ns -EXPORT_SYMBOL vmlinux 0x7791193f icst525_s2div -EXPORT_SYMBOL vmlinux 0x77bc13a0 strim -EXPORT_SYMBOL vmlinux 0x77c44fb4 i2c_clients_command -EXPORT_SYMBOL vmlinux 0x77e9eb37 aes_encrypt -EXPORT_SYMBOL vmlinux 0x77ec80fc rtnl_kfree_skbs -EXPORT_SYMBOL vmlinux 0x77ee8645 start_tty -EXPORT_SYMBOL vmlinux 0x7807f0f8 schedule_timeout_idle -EXPORT_SYMBOL vmlinux 0x7808e5fb rio_query_mport -EXPORT_SYMBOL vmlinux 0x7812aa8e iterate_fd -EXPORT_SYMBOL vmlinux 0x781df89e of_platform_bus_probe -EXPORT_SYMBOL vmlinux 0x782c4e8d ioc_lookup_icq -EXPORT_SYMBOL vmlinux 0x7832f40f fs_param_is_fd -EXPORT_SYMBOL vmlinux 0x78340038 dquot_quota_off -EXPORT_SYMBOL vmlinux 0x78431f92 unregister_framebuffer -EXPORT_SYMBOL vmlinux 0x7846af3e __kfifo_len_r -EXPORT_SYMBOL vmlinux 0x7857529d tc_setup_cb_destroy -EXPORT_SYMBOL vmlinux 0x785cdb11 tty_register_ldisc -EXPORT_SYMBOL vmlinux 0x78761cff devm_free_irq -EXPORT_SYMBOL vmlinux 0x7877862b page_readlink -EXPORT_SYMBOL vmlinux 0x7880c781 dm_kcopyd_prepare_callback -EXPORT_SYMBOL vmlinux 0x788e4f5b touch_buffer -EXPORT_SYMBOL vmlinux 0x78941de9 page_symlink -EXPORT_SYMBOL vmlinux 0x7899668f rproc_del -EXPORT_SYMBOL vmlinux 0x789affb1 frontswap_tmem_exclusive_gets -EXPORT_SYMBOL vmlinux 0x78a16f48 aes_decrypt -EXPORT_SYMBOL vmlinux 0x78a3bc08 set_binfmt -EXPORT_SYMBOL vmlinux 0x78b1c8b3 ipv6_skip_exthdr -EXPORT_SYMBOL vmlinux 0x78b887ed vsprintf -EXPORT_SYMBOL vmlinux 0x78bac0c4 module_refcount -EXPORT_SYMBOL vmlinux 0x78bba9cd tty_write_room -EXPORT_SYMBOL vmlinux 0x78bbd340 bdi_set_max_ratio -EXPORT_SYMBOL vmlinux 0x78df6bd7 no_pci_devices -EXPORT_SYMBOL vmlinux 0x78e57b97 pci_irq_vector -EXPORT_SYMBOL vmlinux 0x78f9c208 vga_set_legacy_decoding -EXPORT_SYMBOL vmlinux 0x78ff8ad1 jbd2_journal_check_used_features -EXPORT_SYMBOL vmlinux 0x790bafd4 blk_stack_limits -EXPORT_SYMBOL vmlinux 0x790e6dc1 phy_mii_ioctl -EXPORT_SYMBOL vmlinux 0x791040e6 may_umount_tree -EXPORT_SYMBOL vmlinux 0x79238e30 dm_get_device -EXPORT_SYMBOL vmlinux 0x7926d951 phy_device_register -EXPORT_SYMBOL vmlinux 0x7931bb89 genphy_c37_read_status -EXPORT_SYMBOL vmlinux 0x793a2313 d_add -EXPORT_SYMBOL vmlinux 0x796fd753 flow_rule_match_enc_control -EXPORT_SYMBOL vmlinux 0x79739c3c utf8nagemin -EXPORT_SYMBOL vmlinux 0x79845e22 skb_flow_dissect_meta -EXPORT_SYMBOL vmlinux 0x7984eefc key_update -EXPORT_SYMBOL vmlinux 0x79a2c49f d_make_root -EXPORT_SYMBOL vmlinux 0x79a33f85 vme_get_size -EXPORT_SYMBOL vmlinux 0x79de5e1b xp_alloc -EXPORT_SYMBOL vmlinux 0x79e3e105 ipmr_rule_default -EXPORT_SYMBOL vmlinux 0x79e60460 dump_page -EXPORT_SYMBOL vmlinux 0x79e60efa arp_send -EXPORT_SYMBOL vmlinux 0x79ea43b6 napi_complete_done -EXPORT_SYMBOL vmlinux 0x79ec8f93 blk_start_plug -EXPORT_SYMBOL vmlinux 0x79f12152 tcf_qevent_validate_change -EXPORT_SYMBOL vmlinux 0x79f23710 zpool_register_driver -EXPORT_SYMBOL vmlinux 0x79f57d72 of_device_register -EXPORT_SYMBOL vmlinux 0x79fb7b7f get_phy_device -EXPORT_SYMBOL vmlinux 0x7a09a064 seg6_hmac_compute -EXPORT_SYMBOL vmlinux 0x7a107a92 posix_test_lock -EXPORT_SYMBOL vmlinux 0x7a17ac4c scsi_device_resume -EXPORT_SYMBOL vmlinux 0x7a1bcd59 gf128mul_x8_ble -EXPORT_SYMBOL vmlinux 0x7a247676 ram_aops -EXPORT_SYMBOL vmlinux 0x7a2af7b4 cpu_number -EXPORT_SYMBOL vmlinux 0x7a3485ef pnp_possible_config -EXPORT_SYMBOL vmlinux 0x7a53a06d flow_indr_dev_exists -EXPORT_SYMBOL vmlinux 0x7a5ee6b0 xfrm_policy_delete -EXPORT_SYMBOL vmlinux 0x7a82f45b neigh_sysctl_register -EXPORT_SYMBOL vmlinux 0x7a87243f skb_flow_dissect_tunnel_info -EXPORT_SYMBOL vmlinux 0x7a8d8373 tcp_get_md5sig_pool -EXPORT_SYMBOL vmlinux 0x7a8dcea6 of_get_property -EXPORT_SYMBOL vmlinux 0x7a9135da fs_param_is_u64 -EXPORT_SYMBOL vmlinux 0x7a95e5ae do_settimeofday64 -EXPORT_SYMBOL vmlinux 0x7a968137 ucc_slow_restart_tx -EXPORT_SYMBOL vmlinux 0x7aa1756e kvfree -EXPORT_SYMBOL vmlinux 0x7ab88a45 system_freezing_cnt -EXPORT_SYMBOL vmlinux 0x7ad050b9 qid_lt -EXPORT_SYMBOL vmlinux 0x7adc0fbf rb_replace_node_rcu -EXPORT_SYMBOL vmlinux 0x7ade38ab pci_bus_write_config_dword -EXPORT_SYMBOL vmlinux 0x7ae5d317 qe_get_snum -EXPORT_SYMBOL vmlinux 0x7aecf5e1 lock_page_memcg -EXPORT_SYMBOL vmlinux 0x7af80a8a d_set_d_op -EXPORT_SYMBOL vmlinux 0x7b18922f sock_pfree -EXPORT_SYMBOL vmlinux 0x7b270ac9 loop_register_transfer -EXPORT_SYMBOL vmlinux 0x7b2c69c4 key_task_permission -EXPORT_SYMBOL vmlinux 0x7b37d4a7 _find_first_zero_bit -EXPORT_SYMBOL vmlinux 0x7b38eaaf qdisc_put -EXPORT_SYMBOL vmlinux 0x7b3f10e4 vfs_path_lookup -EXPORT_SYMBOL vmlinux 0x7b4f8194 simple_getattr -EXPORT_SYMBOL vmlinux 0x7b536d6e pci_bus_read_config_byte -EXPORT_SYMBOL vmlinux 0x7b5b8f31 sha256_update -EXPORT_SYMBOL vmlinux 0x7b68f752 xsk_tx_peek_desc -EXPORT_SYMBOL vmlinux 0x7b6a5b0d nd_dax_probe -EXPORT_SYMBOL vmlinux 0x7b8696e0 __dquot_free_space -EXPORT_SYMBOL vmlinux 0x7b9291b0 blk_mq_stop_hw_queues -EXPORT_SYMBOL vmlinux 0x7ba5a3b4 tegra_powergate_power_off -EXPORT_SYMBOL vmlinux 0x7ba9b8eb xfrm_input_resume -EXPORT_SYMBOL vmlinux 0x7bb50b88 acpi_write -EXPORT_SYMBOL vmlinux 0x7bbccd05 nr_node_ids -EXPORT_SYMBOL vmlinux 0x7bc7b66e amba_driver_register -EXPORT_SYMBOL vmlinux 0x7bc87cf2 block_page_mkwrite -EXPORT_SYMBOL vmlinux 0x7bcdb3c6 rpmh_write_async -EXPORT_SYMBOL vmlinux 0x7be81f4d nf_log_set -EXPORT_SYMBOL vmlinux 0x7c049ec3 key_invalidate -EXPORT_SYMBOL vmlinux 0x7c173634 __bitmap_complement -EXPORT_SYMBOL vmlinux 0x7c256836 scsi_set_medium_removal -EXPORT_SYMBOL vmlinux 0x7c27f08a iw_handler_set_thrspy -EXPORT_SYMBOL vmlinux 0x7c46233a cpufreq_quick_get -EXPORT_SYMBOL vmlinux 0x7c570987 __tcf_em_tree_match -EXPORT_SYMBOL vmlinux 0x7c57419f page_cache_prev_miss -EXPORT_SYMBOL vmlinux 0x7c6c6cbb __skb_gro_checksum_complete -EXPORT_SYMBOL vmlinux 0x7c70e69d tcp_rtx_synack -EXPORT_SYMBOL vmlinux 0x7c7a2768 irq_set_chip -EXPORT_SYMBOL vmlinux 0x7c83f980 xfrm6_protocol_register -EXPORT_SYMBOL vmlinux 0x7c8b4f2b discard_new_inode -EXPORT_SYMBOL vmlinux 0x7c96dc53 ip_route_input_noref -EXPORT_SYMBOL vmlinux 0x7c9ca58f __sg_page_iter_next -EXPORT_SYMBOL vmlinux 0x7c9d24e8 inode_dio_wait -EXPORT_SYMBOL vmlinux 0x7ca94542 mmc_sw_reset -EXPORT_SYMBOL vmlinux 0x7cb1aea1 devlink_dpipe_header_ethernet -EXPORT_SYMBOL vmlinux 0x7cde48ca of_phy_deregister_fixed_link -EXPORT_SYMBOL vmlinux 0x7ce18c9f from_kqid -EXPORT_SYMBOL vmlinux 0x7ce22b24 kobject_add -EXPORT_SYMBOL vmlinux 0x7ce58981 kvrealloc -EXPORT_SYMBOL vmlinux 0x7cf0fcd1 sb_min_blocksize -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 0x7d12d76d acpi_get_parent -EXPORT_SYMBOL vmlinux 0x7d19ed76 tcf_chain_get_by_act -EXPORT_SYMBOL vmlinux 0x7d20f678 pci_unmap_rom -EXPORT_SYMBOL vmlinux 0x7d2ec923 dma_resv_init -EXPORT_SYMBOL vmlinux 0x7d4b176a netlbl_catmap_setbit -EXPORT_SYMBOL vmlinux 0x7d52841f param_get_bool -EXPORT_SYMBOL vmlinux 0x7d560783 param_get_int -EXPORT_SYMBOL vmlinux 0x7d5e1008 __crc32c_le_shift -EXPORT_SYMBOL vmlinux 0x7d6d5be3 remap_pfn_range -EXPORT_SYMBOL vmlinux 0x7d74d522 kstrtoull_from_user -EXPORT_SYMBOL vmlinux 0x7d80cd4f __serio_register_port -EXPORT_SYMBOL vmlinux 0x7d81ca89 zero_fill_bio -EXPORT_SYMBOL vmlinux 0x7dacc74d dev_pre_changeaddr_notify -EXPORT_SYMBOL vmlinux 0x7daece67 quota_send_warning -EXPORT_SYMBOL vmlinux 0x7db8d136 devm_input_allocate_device -EXPORT_SYMBOL vmlinux 0x7dc19070 dev_get_by_name -EXPORT_SYMBOL vmlinux 0x7dc87aba udp_prot -EXPORT_SYMBOL vmlinux 0x7dd9acf4 try_to_writeback_inodes_sb -EXPORT_SYMBOL vmlinux 0x7de4100c tcp_v4_send_check -EXPORT_SYMBOL vmlinux 0x7de421ff udp_seq_stop -EXPORT_SYMBOL vmlinux 0x7deff673 dm_consume_args -EXPORT_SYMBOL vmlinux 0x7e2a589e radix_tree_next_chunk -EXPORT_SYMBOL vmlinux 0x7e2da8eb kmem_cache_alloc_node -EXPORT_SYMBOL vmlinux 0x7e3191f6 try_to_del_timer_sync -EXPORT_SYMBOL vmlinux 0x7e344db7 param_ops_ulong -EXPORT_SYMBOL vmlinux 0x7e541bad pci_scan_single_device -EXPORT_SYMBOL vmlinux 0x7e5e381c nd_btt_version -EXPORT_SYMBOL vmlinux 0x7e87c564 nf_unregister_net_hook -EXPORT_SYMBOL vmlinux 0x7ea0d4ca tegra_sku_info -EXPORT_SYMBOL vmlinux 0x7eaf75b6 __tty_insert_flip_char -EXPORT_SYMBOL vmlinux 0x7eb9f6e2 ps2_command -EXPORT_SYMBOL vmlinux 0x7ebdc3eb phy_connect_direct -EXPORT_SYMBOL vmlinux 0x7ed670aa inet6_getname -EXPORT_SYMBOL vmlinux 0x7ee3a072 dev_set_alias -EXPORT_SYMBOL vmlinux 0x7ef6309c blk_mq_run_hw_queue -EXPORT_SYMBOL vmlinux 0x7f02188f __msecs_to_jiffies -EXPORT_SYMBOL vmlinux 0x7f03b6a9 crc_ccitt_table -EXPORT_SYMBOL vmlinux 0x7f162a1b devm_pci_alloc_host_bridge -EXPORT_SYMBOL vmlinux 0x7f1ced53 filemap_page_mkwrite -EXPORT_SYMBOL vmlinux 0x7f24de73 jiffies_to_usecs -EXPORT_SYMBOL vmlinux 0x7f52071a net_dim -EXPORT_SYMBOL vmlinux 0x7f592053 set_blocksize -EXPORT_SYMBOL vmlinux 0x7f59f65d xfrm_register_km -EXPORT_SYMBOL vmlinux 0x7f5b4fe4 sg_free_table -EXPORT_SYMBOL vmlinux 0x7f5efa77 submit_bio_noacct -EXPORT_SYMBOL vmlinux 0x7f63bcc0 skb_headers_offset_update -EXPORT_SYMBOL vmlinux 0x7f67b7b4 __wait_on_buffer -EXPORT_SYMBOL vmlinux 0x7f7a1a12 vfs_dedupe_file_range_one -EXPORT_SYMBOL vmlinux 0x7f7e5f79 dmam_pool_create -EXPORT_SYMBOL vmlinux 0x7f7f7bb4 irq_poll_disable -EXPORT_SYMBOL vmlinux 0x7f861c19 gro_cells_init -EXPORT_SYMBOL vmlinux 0x7f9cecb5 end_page_writeback -EXPORT_SYMBOL vmlinux 0x7fab3ed9 dns_query -EXPORT_SYMBOL vmlinux 0x7faca795 genl_notify -EXPORT_SYMBOL vmlinux 0x7fce778e tegra_ivc_total_queue_size -EXPORT_SYMBOL vmlinux 0x7fd7dcba tcp_timewait_state_process -EXPORT_SYMBOL vmlinux 0x7fe105d7 bman_ip_rev -EXPORT_SYMBOL vmlinux 0x7fe32873 rb_replace_node -EXPORT_SYMBOL vmlinux 0x7febca7c d_obtain_root -EXPORT_SYMBOL vmlinux 0x7ff2def9 of_get_ethdev_address -EXPORT_SYMBOL vmlinux 0x800e3d46 always_delete_dentry -EXPORT_SYMBOL vmlinux 0x801166e7 fscrypt_encrypt_pagecache_blocks -EXPORT_SYMBOL vmlinux 0x8017ab8d seq_put_decimal_ll -EXPORT_SYMBOL vmlinux 0x8029bcb5 xfrm4_udp_encap_rcv -EXPORT_SYMBOL vmlinux 0x8029cb40 mmc_run_bkops -EXPORT_SYMBOL vmlinux 0x8030c6a5 iommu_get_dma_cookie -EXPORT_SYMBOL vmlinux 0x80312fd7 param_ops_ushort -EXPORT_SYMBOL vmlinux 0x803ddbb6 __posix_acl_create -EXPORT_SYMBOL vmlinux 0x80432628 idr_for_each -EXPORT_SYMBOL vmlinux 0x804984b0 netdev_update_features -EXPORT_SYMBOL vmlinux 0x804f6e25 rproc_coredump_add_segment -EXPORT_SYMBOL vmlinux 0x80661bdc fault_in_iov_iter_writeable -EXPORT_SYMBOL vmlinux 0x8067650c flush_signals -EXPORT_SYMBOL vmlinux 0x806d594f tcp_v4_mtu_reduced -EXPORT_SYMBOL vmlinux 0x8094b87f md_reload_sb -EXPORT_SYMBOL vmlinux 0x809712ff hdmi_avi_infoframe_pack -EXPORT_SYMBOL vmlinux 0x809dbee2 inode_update_time -EXPORT_SYMBOL vmlinux 0x80a717a8 __percpu_counter_compare -EXPORT_SYMBOL vmlinux 0x80b9f0e4 register_sysctl_paths -EXPORT_SYMBOL vmlinux 0x80c5eefc fwnode_mdiobus_register_phy -EXPORT_SYMBOL vmlinux 0x80ca5026 _bin2bcd -EXPORT_SYMBOL vmlinux 0x80d68d3e fb_register_client -EXPORT_SYMBOL vmlinux 0x80e1c3dc filemap_check_errors -EXPORT_SYMBOL vmlinux 0x80e5f86f fscrypt_fname_alloc_buffer -EXPORT_SYMBOL vmlinux 0x80ec0d50 qman_init_fq -EXPORT_SYMBOL vmlinux 0x80ee52f9 __wait_on_bit_lock -EXPORT_SYMBOL vmlinux 0x80f47ea8 __test_set_page_writeback -EXPORT_SYMBOL vmlinux 0x80f702d6 lockref_put_not_zero -EXPORT_SYMBOL vmlinux 0x810a4fc5 devm_devfreq_register_opp_notifier -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 0x811cc78f sk_error_report -EXPORT_SYMBOL vmlinux 0x812c8400 refcount_dec_and_mutex_lock -EXPORT_SYMBOL vmlinux 0x814ec225 watchdog_unregister_governor -EXPORT_SYMBOL vmlinux 0x81533963 sysfs_format_mac -EXPORT_SYMBOL vmlinux 0x815b5dd4 match_octal -EXPORT_SYMBOL vmlinux 0x815f2897 empty_zero_page -EXPORT_SYMBOL vmlinux 0x816c06ca phy_modify_paged -EXPORT_SYMBOL vmlinux 0x818416e1 scsi_set_sense_information -EXPORT_SYMBOL vmlinux 0x818edf97 cpm_muram_alloc -EXPORT_SYMBOL vmlinux 0x81a2a1d3 tegra_ivc_init -EXPORT_SYMBOL vmlinux 0x81ac5e33 trace_print_hex_dump_seq -EXPORT_SYMBOL vmlinux 0x81af7a7c put_watch_queue -EXPORT_SYMBOL vmlinux 0x81b20e8b ucc_fast_transmit_on_demand -EXPORT_SYMBOL vmlinux 0x81c86b6e seg6_hmac_info_add -EXPORT_SYMBOL vmlinux 0x81db6ebb xz_dec_reset -EXPORT_SYMBOL vmlinux 0x81e6b37f dmi_get_system_info -EXPORT_SYMBOL vmlinux 0x8240bd44 get_acl -EXPORT_SYMBOL vmlinux 0x8253dd49 tcf_exts_terse_dump -EXPORT_SYMBOL vmlinux 0x8256cc40 sock_no_recvmsg -EXPORT_SYMBOL vmlinux 0x827d3962 proc_mkdir -EXPORT_SYMBOL vmlinux 0x828062b1 __frontswap_init -EXPORT_SYMBOL vmlinux 0x82bd51b6 tty_port_destroy -EXPORT_SYMBOL vmlinux 0x82c87ad5 nr_online_nodes -EXPORT_SYMBOL vmlinux 0x82cb144f mipi_dsi_dcs_write_buffer -EXPORT_SYMBOL vmlinux 0x82d18d99 uart_suspend_port -EXPORT_SYMBOL vmlinux 0x82d46f0e locks_lock_inode_wait -EXPORT_SYMBOL vmlinux 0x82ee8a3d sb_set_blocksize -EXPORT_SYMBOL vmlinux 0x82f271d9 sock_queue_err_skb -EXPORT_SYMBOL vmlinux 0x82f73ef3 dev_mc_add_excl -EXPORT_SYMBOL vmlinux 0x82ff8429 sync_mapping_buffers -EXPORT_SYMBOL vmlinux 0x830f072c __sk_mem_reclaim -EXPORT_SYMBOL vmlinux 0x83113f41 pci_disable_msix -EXPORT_SYMBOL vmlinux 0x832cd0e7 param_set_charp -EXPORT_SYMBOL vmlinux 0x8330c809 pci_choose_state -EXPORT_SYMBOL vmlinux 0x83370ef5 serio_rescan -EXPORT_SYMBOL vmlinux 0x83429357 mipi_dsi_dcs_set_page_address -EXPORT_SYMBOL vmlinux 0x83531cd8 dm_table_get_size -EXPORT_SYMBOL vmlinux 0x83581089 gf128mul_init_4k_lle -EXPORT_SYMBOL vmlinux 0x835b3048 mini_qdisc_pair_block_init -EXPORT_SYMBOL vmlinux 0x836c8ac6 iov_iter_xarray -EXPORT_SYMBOL vmlinux 0x837ac543 phy_start_aneg -EXPORT_SYMBOL vmlinux 0x837b7b09 __dynamic_pr_debug -EXPORT_SYMBOL vmlinux 0x838d2bc8 siphash_3u32 -EXPORT_SYMBOL vmlinux 0x83a5d88f generic_splice_sendpage -EXPORT_SYMBOL vmlinux 0x83b902c9 devm_ioremap_np -EXPORT_SYMBOL vmlinux 0x83fbeb35 radix_tree_gang_lookup -EXPORT_SYMBOL vmlinux 0x840342c6 sgl_free -EXPORT_SYMBOL vmlinux 0x8427cc7b _raw_spin_lock_irq -EXPORT_SYMBOL vmlinux 0x842fa8af devm_release_resource -EXPORT_SYMBOL vmlinux 0x843066a0 block_write_end -EXPORT_SYMBOL vmlinux 0x8438575f netpoll_setup -EXPORT_SYMBOL vmlinux 0x843b86fe skb_ext_add -EXPORT_SYMBOL vmlinux 0x84818f57 tegra_powergate_power_on -EXPORT_SYMBOL vmlinux 0x84823cf3 nla_strscpy -EXPORT_SYMBOL vmlinux 0x848e4392 input_allocate_device -EXPORT_SYMBOL vmlinux 0x849ab8ce zerocopy_sg_from_iter -EXPORT_SYMBOL vmlinux 0x849dab16 vmf_insert_mixed_prot -EXPORT_SYMBOL vmlinux 0x84b72151 dump_skip -EXPORT_SYMBOL vmlinux 0x84c8b9c1 take_dentry_name_snapshot -EXPORT_SYMBOL vmlinux 0x84cc35ac dst_discard_out -EXPORT_SYMBOL vmlinux 0x84ce2f61 end_buffer_read_sync -EXPORT_SYMBOL vmlinux 0x84d1d425 noop_fsync -EXPORT_SYMBOL vmlinux 0x850ce12c param_ops_string -EXPORT_SYMBOL vmlinux 0x850ebcf4 pci_bus_add_devices -EXPORT_SYMBOL vmlinux 0x85134551 tcf_action_update_stats -EXPORT_SYMBOL vmlinux 0x85140121 tty_name -EXPORT_SYMBOL vmlinux 0x8518a4a6 _raw_spin_trylock_bh -EXPORT_SYMBOL vmlinux 0x851925af generic_file_mmap -EXPORT_SYMBOL vmlinux 0x851b9121 xudma_dev_get_psil_base -EXPORT_SYMBOL vmlinux 0x854f83a0 tso_count_descs -EXPORT_SYMBOL vmlinux 0x855770f2 __vfs_removexattr -EXPORT_SYMBOL vmlinux 0x8566d147 file_fdatawait_range -EXPORT_SYMBOL vmlinux 0x85670f1d rtnl_is_locked -EXPORT_SYMBOL vmlinux 0x857e573e vmap -EXPORT_SYMBOL vmlinux 0x8591d7d5 ledtrig_mtd_activity -EXPORT_SYMBOL vmlinux 0x85a07397 iterate_supers_type -EXPORT_SYMBOL vmlinux 0x85b4cf2f utf8nlen -EXPORT_SYMBOL vmlinux 0x85b5e625 rfkill_set_states -EXPORT_SYMBOL vmlinux 0x85b6819f i2c_get_adapter -EXPORT_SYMBOL vmlinux 0x85bd1608 __request_region -EXPORT_SYMBOL vmlinux 0x85c5c405 skb_clone -EXPORT_SYMBOL vmlinux 0x85c80f3e d_mark_dontcache -EXPORT_SYMBOL vmlinux 0x85df9b6c strsep -EXPORT_SYMBOL vmlinux 0x85e777f5 flow_block_cb_priv -EXPORT_SYMBOL vmlinux 0x85efc7e0 zero_pfn -EXPORT_SYMBOL vmlinux 0x85f71ea0 rt_spin_lock_unlock -EXPORT_SYMBOL vmlinux 0x861515fe cdc_parse_cdc_header -EXPORT_SYMBOL vmlinux 0x862577eb elv_rb_latter_request -EXPORT_SYMBOL vmlinux 0x86367db4 __cond_resched_lock -EXPORT_SYMBOL vmlinux 0x863a276a color_table -EXPORT_SYMBOL vmlinux 0x863b9426 amba_release_regions -EXPORT_SYMBOL vmlinux 0x864558ec mdiobus_scan -EXPORT_SYMBOL vmlinux 0x86485d66 sk_alloc -EXPORT_SYMBOL vmlinux 0x86569c23 i2c_smbus_write_block_data -EXPORT_SYMBOL vmlinux 0x86658ebb vme_slot_num -EXPORT_SYMBOL vmlinux 0x866a62b2 gnet_stats_basic_sync_init -EXPORT_SYMBOL vmlinux 0x8677e64a of_get_mac_address -EXPORT_SYMBOL vmlinux 0x867ea076 sock_no_shutdown -EXPORT_SYMBOL vmlinux 0x86876908 of_parse_phandle_with_args -EXPORT_SYMBOL vmlinux 0x868acba5 get_options -EXPORT_SYMBOL vmlinux 0x86947cbe kthread_associate_blkcg -EXPORT_SYMBOL vmlinux 0x869b41ea skb_csum_hwoffload_help -EXPORT_SYMBOL vmlinux 0x86c0482c bio_put -EXPORT_SYMBOL vmlinux 0x86d04677 input_mt_sync_frame -EXPORT_SYMBOL vmlinux 0x86d52ba5 lookup_constant -EXPORT_SYMBOL vmlinux 0x86f866e2 rawv6_mh_filter_register -EXPORT_SYMBOL vmlinux 0x86fac60d xsk_set_tx_need_wakeup -EXPORT_SYMBOL vmlinux 0x86fb9b05 bitmap_parse_user -EXPORT_SYMBOL vmlinux 0x86fd4b38 jbd2_journal_release_jbd_inode -EXPORT_SYMBOL vmlinux 0x870f45e5 ndo_dflt_fdb_add -EXPORT_SYMBOL vmlinux 0x872138af vga_remove_vgacon -EXPORT_SYMBOL vmlinux 0x87416efd __cleancache_invalidate_page -EXPORT_SYMBOL vmlinux 0x87431440 dev_get_by_index_rcu -EXPORT_SYMBOL vmlinux 0x8745bf29 sock_no_linger -EXPORT_SYMBOL vmlinux 0x8757ae56 add_wait_queue_exclusive -EXPORT_SYMBOL vmlinux 0x8761c87b rps_needed -EXPORT_SYMBOL vmlinux 0x8771e392 inet_proto_csum_replace4 -EXPORT_SYMBOL vmlinux 0x87761528 __traceiter_kmem_cache_alloc -EXPORT_SYMBOL vmlinux 0x87770cbf pnp_activate_dev -EXPORT_SYMBOL vmlinux 0x877bcf11 phy_set_asym_pause -EXPORT_SYMBOL vmlinux 0x878469bd ZSTD_decompressStream -EXPORT_SYMBOL vmlinux 0x87b8798d sg_next -EXPORT_SYMBOL vmlinux 0x87d1f06b sock_no_getname -EXPORT_SYMBOL vmlinux 0x87d5bb27 tcp_set_rcvlowat -EXPORT_SYMBOL vmlinux 0x87e15c0f vlan_vid_add -EXPORT_SYMBOL vmlinux 0x87e211d6 iget_locked -EXPORT_SYMBOL vmlinux 0x87eda3ed page_pool_alloc_frag -EXPORT_SYMBOL vmlinux 0x8810754a _find_first_bit -EXPORT_SYMBOL vmlinux 0x88152cb0 bdi_alloc -EXPORT_SYMBOL vmlinux 0x881bad5e phy_mipi_dphy_config_validate -EXPORT_SYMBOL vmlinux 0x88259189 __wait_on_bit -EXPORT_SYMBOL vmlinux 0x883ed0db setattr_should_drop_sgid -EXPORT_SYMBOL vmlinux 0x8853abf8 scsi_is_sdev_device -EXPORT_SYMBOL vmlinux 0x8854fb46 dma_fence_get_stub -EXPORT_SYMBOL vmlinux 0x885ad078 param_set_invbool -EXPORT_SYMBOL vmlinux 0x88632c1d vlan_for_each -EXPORT_SYMBOL vmlinux 0x886bdf65 dquot_quota_on -EXPORT_SYMBOL vmlinux 0x8873040e generic_cont_expand_simple -EXPORT_SYMBOL vmlinux 0x8874c603 unpin_user_pages_dirty_lock -EXPORT_SYMBOL vmlinux 0x88822d38 unregister_blocking_lsm_notifier -EXPORT_SYMBOL vmlinux 0x8888f1fe xxh32 -EXPORT_SYMBOL vmlinux 0x88918043 __dquot_alloc_space -EXPORT_SYMBOL vmlinux 0x88a4f485 of_find_node_by_name -EXPORT_SYMBOL vmlinux 0x88a94fd7 netdev_sk_get_lowest_dev -EXPORT_SYMBOL vmlinux 0x88abb78b ZSTD_insertBlock -EXPORT_SYMBOL vmlinux 0x88c88474 _atomic_dec_and_lock -EXPORT_SYMBOL vmlinux 0x88d9dfac genphy_resume -EXPORT_SYMBOL vmlinux 0x88db9f48 __check_object_size -EXPORT_SYMBOL vmlinux 0x88e1d0f0 page_frag_free -EXPORT_SYMBOL vmlinux 0x88f9ee49 devm_clk_hw_register_clkdev -EXPORT_SYMBOL vmlinux 0x890625af reuseport_attach_prog -EXPORT_SYMBOL vmlinux 0x8914389a sk_stream_kill_queues -EXPORT_SYMBOL vmlinux 0x893680f0 ip_ct_attach -EXPORT_SYMBOL vmlinux 0x893929db mpage_writepages -EXPORT_SYMBOL vmlinux 0x8946ea72 fpsimd_context_busy -EXPORT_SYMBOL vmlinux 0x894c3449 devm_ioremap -EXPORT_SYMBOL vmlinux 0x896a5280 vfs_fadvise -EXPORT_SYMBOL vmlinux 0x896b442e blk_mq_start_hw_queue -EXPORT_SYMBOL vmlinux 0x896ce1dc cleancache_register_ops -EXPORT_SYMBOL vmlinux 0x897061cf of_graph_get_remote_port -EXPORT_SYMBOL vmlinux 0x89a7f820 of_pci_range_to_resource -EXPORT_SYMBOL vmlinux 0x89d64a1f skb_seq_read -EXPORT_SYMBOL vmlinux 0x89e12b4d tegra_ivc_read_advance -EXPORT_SYMBOL vmlinux 0x89e28432 kfree_skb_reason -EXPORT_SYMBOL vmlinux 0x89e6ffea ip_setsockopt -EXPORT_SYMBOL vmlinux 0x89f4a7bd scsi_host_busy -EXPORT_SYMBOL vmlinux 0x8a348ba6 scsi_get_host_dev -EXPORT_SYMBOL vmlinux 0x8a365d81 padata_do_parallel -EXPORT_SYMBOL vmlinux 0x8a39980a user_revoke -EXPORT_SYMBOL vmlinux 0x8a3b812c generic_file_llseek_size -EXPORT_SYMBOL vmlinux 0x8a3f2ec4 from_kgid_munged -EXPORT_SYMBOL vmlinux 0x8a47043d LZ4_decompress_safe_continue -EXPORT_SYMBOL vmlinux 0x8a490c90 rfkill_set_sw_state -EXPORT_SYMBOL vmlinux 0x8a4dcffc filemap_invalidate_lock_two -EXPORT_SYMBOL vmlinux 0x8a5f3c52 xfrm_sad_getinfo -EXPORT_SYMBOL vmlinux 0x8a65acaa bmap -EXPORT_SYMBOL vmlinux 0x8a6af95d jbd2_journal_start_reserved -EXPORT_SYMBOL vmlinux 0x8a6d77a6 jbd2_journal_set_features -EXPORT_SYMBOL vmlinux 0x8a7094ba vm_brk_flags -EXPORT_SYMBOL vmlinux 0x8a793a7e __ClearPageMovable -EXPORT_SYMBOL vmlinux 0x8a7d1c31 high_memory -EXPORT_SYMBOL vmlinux 0x8a99a016 mempool_free_slab -EXPORT_SYMBOL vmlinux 0x8aa85415 dev_get_port_parent_id -EXPORT_SYMBOL vmlinux 0x8aabee4e vfs_get_super -EXPORT_SYMBOL vmlinux 0x8aadbdbb inet6_protos -EXPORT_SYMBOL vmlinux 0x8ab9605b dev_driver_string -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 0x8acc5aa9 jbd2_submit_inode_data -EXPORT_SYMBOL vmlinux 0x8adccd03 pci_write_config_word -EXPORT_SYMBOL vmlinux 0x8add55d9 mii_ethtool_get_link_ksettings -EXPORT_SYMBOL vmlinux 0x8af3310d xfrm_state_add -EXPORT_SYMBOL vmlinux 0x8b0088d1 LZ4_decompress_safe_usingDict -EXPORT_SYMBOL vmlinux 0x8b07b51d flow_block_cb_is_busy -EXPORT_SYMBOL vmlinux 0x8b1999ed pci_bus_write_config_word -EXPORT_SYMBOL vmlinux 0x8b2ffd83 __cpu_present_mask -EXPORT_SYMBOL vmlinux 0x8b315d42 pipe_unlock -EXPORT_SYMBOL vmlinux 0x8b384bdd devm_mfd_add_devices -EXPORT_SYMBOL vmlinux 0x8b510dd4 __SetPageMovable -EXPORT_SYMBOL vmlinux 0x8b618d08 overflowuid -EXPORT_SYMBOL vmlinux 0x8b70fd73 file_check_and_advance_wb_err -EXPORT_SYMBOL vmlinux 0x8b78d881 ps2_handle_ack -EXPORT_SYMBOL vmlinux 0x8b8059bd in_group_p -EXPORT_SYMBOL vmlinux 0x8b8c7011 devm_memunmap -EXPORT_SYMBOL vmlinux 0x8b8de0be mmc_add_host -EXPORT_SYMBOL vmlinux 0x8b910be2 errseq_sample -EXPORT_SYMBOL vmlinux 0x8b986406 seq_release_private -EXPORT_SYMBOL vmlinux 0x8b989cf9 acpi_bus_can_wakeup -EXPORT_SYMBOL vmlinux 0x8b9ea582 ZSTD_copyDCtx -EXPORT_SYMBOL vmlinux 0x8baaf48b nvmem_get_mac_address -EXPORT_SYMBOL vmlinux 0x8bad40c9 flow_rule_match_ipv4_addrs -EXPORT_SYMBOL vmlinux 0x8bb70057 posix_lock_file -EXPORT_SYMBOL vmlinux 0x8bdfc47c __mb_cache_entry_free -EXPORT_SYMBOL vmlinux 0x8be189ab ucc_slow_disable -EXPORT_SYMBOL vmlinux 0x8be38fc5 of_mdiobus_child_is_phy -EXPORT_SYMBOL vmlinux 0x8be4d582 deactivate_locked_super -EXPORT_SYMBOL vmlinux 0x8c0e290e writeback_inodes_sb -EXPORT_SYMBOL vmlinux 0x8c2e83a9 key_validate -EXPORT_SYMBOL vmlinux 0x8c310dfb skb_copy -EXPORT_SYMBOL vmlinux 0x8c3f7bea sched_autogroup_create_attach -EXPORT_SYMBOL vmlinux 0x8c62f68b vga_get -EXPORT_SYMBOL vmlinux 0x8c8569cb kstrtoint -EXPORT_SYMBOL vmlinux 0x8c86865e truncate_pagecache -EXPORT_SYMBOL vmlinux 0x8c9e338f acpi_bios_error -EXPORT_SYMBOL vmlinux 0x8caf9305 uuid_is_valid -EXPORT_SYMBOL vmlinux 0x8cb61686 fs_context_for_submount -EXPORT_SYMBOL vmlinux 0x8cb91d06 __init_rwsem -EXPORT_SYMBOL vmlinux 0x8cc2677c devfreq_remove_device -EXPORT_SYMBOL vmlinux 0x8cc53d20 __par_io_config_pin -EXPORT_SYMBOL vmlinux 0x8ccbeb45 __genphy_config_aneg -EXPORT_SYMBOL vmlinux 0x8cd5e7d4 component_match_add_typed -EXPORT_SYMBOL vmlinux 0x8cda8029 xen_clear_irq_pending -EXPORT_SYMBOL vmlinux 0x8ce571bf sock_gettstamp -EXPORT_SYMBOL vmlinux 0x8cfa4809 phy_ethtool_ksettings_set -EXPORT_SYMBOL vmlinux 0x8d0ca1fe free_bucket_spinlocks -EXPORT_SYMBOL vmlinux 0x8d2c1c0d phy_drivers_unregister -EXPORT_SYMBOL vmlinux 0x8d3ef593 jbd2_journal_begin_ordered_truncate -EXPORT_SYMBOL vmlinux 0x8d4112df qcom_scm_mem_protect_video_var -EXPORT_SYMBOL vmlinux 0x8d45ede8 ppp_input_error -EXPORT_SYMBOL vmlinux 0x8d5212a5 fuse_mount_destroy -EXPORT_SYMBOL vmlinux 0x8d55bb8a qid_eq -EXPORT_SYMBOL vmlinux 0x8d5afbe9 devm_extcon_unregister_notifier -EXPORT_SYMBOL vmlinux 0x8d6ee4ea __sk_queue_drop_skb -EXPORT_SYMBOL vmlinux 0x8d73278e hex_asc_upper -EXPORT_SYMBOL vmlinux 0x8d81d482 cfb_fillrect -EXPORT_SYMBOL vmlinux 0x8d87d278 ptp_schedule_worker -EXPORT_SYMBOL vmlinux 0x8d891345 vme_register_bridge -EXPORT_SYMBOL vmlinux 0x8d90d34d cros_ec_check_result -EXPORT_SYMBOL vmlinux 0x8d9cf329 sg_miter_stop -EXPORT_SYMBOL vmlinux 0x8da6585d __stack_chk_fail -EXPORT_SYMBOL vmlinux 0x8daedb79 cpumask_any_but -EXPORT_SYMBOL vmlinux 0x8db741ff _copy_to_iter -EXPORT_SYMBOL vmlinux 0x8dcddf27 devfreq_add_governor -EXPORT_SYMBOL vmlinux 0x8dd859ff nf_ct_attach -EXPORT_SYMBOL vmlinux 0x8ddd8aad schedule_timeout -EXPORT_SYMBOL vmlinux 0x8df2b70f dquot_get_state -EXPORT_SYMBOL vmlinux 0x8df2e7ec xfrm_register_type -EXPORT_SYMBOL vmlinux 0x8df4afd9 qe_put_snum -EXPORT_SYMBOL vmlinux 0x8df92f66 memchr_inv -EXPORT_SYMBOL vmlinux 0x8df9dd10 guid_null -EXPORT_SYMBOL vmlinux 0x8e14d999 param_get_invbool -EXPORT_SYMBOL vmlinux 0x8e304f3e thaw_bdev -EXPORT_SYMBOL vmlinux 0x8e3ce96f padata_set_cpumask -EXPORT_SYMBOL vmlinux 0x8e3e0f7d fault_in_readable -EXPORT_SYMBOL vmlinux 0x8e4c60a3 cpm_muram_dma -EXPORT_SYMBOL vmlinux 0x8e7b65d8 phy_attached_print -EXPORT_SYMBOL vmlinux 0x8e8d1a27 scsi_register_driver -EXPORT_SYMBOL vmlinux 0x8e93bd24 security_secctx_to_secid -EXPORT_SYMBOL vmlinux 0x8eb2467b set_posix_acl -EXPORT_SYMBOL vmlinux 0x8eb8c1cd dma_unmap_sg_attrs -EXPORT_SYMBOL vmlinux 0x8eb95c13 posix_acl_valid -EXPORT_SYMBOL vmlinux 0x8ec74b38 devm_devfreq_remove_device -EXPORT_SYMBOL vmlinux 0x8eebeca5 alloc_fddidev -EXPORT_SYMBOL vmlinux 0x8ef10d32 i2c_smbus_read_byte_data -EXPORT_SYMBOL vmlinux 0x8efb54fb page_get_link -EXPORT_SYMBOL vmlinux 0x8f004f4f mmc_calc_max_discard -EXPORT_SYMBOL vmlinux 0x8f01afd6 twl6030_interrupt_mask -EXPORT_SYMBOL vmlinux 0x8f04e9b7 do_clone_file_range -EXPORT_SYMBOL vmlinux 0x8f35aa84 twl6040_set_pll -EXPORT_SYMBOL vmlinux 0x8f413001 fsync_bdev -EXPORT_SYMBOL vmlinux 0x8f4e3743 page_pool_create -EXPORT_SYMBOL vmlinux 0x8f4f8f2c mmc_alloc_host -EXPORT_SYMBOL vmlinux 0x8f5ec503 nd_pfn_probe -EXPORT_SYMBOL vmlinux 0x8f7a3744 fs_bio_set -EXPORT_SYMBOL vmlinux 0x8f7aa308 dquot_alloc -EXPORT_SYMBOL vmlinux 0x8f7bf387 scsi_print_result -EXPORT_SYMBOL vmlinux 0x8f8a04b6 blk_sync_queue -EXPORT_SYMBOL vmlinux 0x8f95f6de security_inode_getsecctx -EXPORT_SYMBOL vmlinux 0x8f995175 rproc_coredump_add_custom_segment -EXPORT_SYMBOL vmlinux 0x8f996a30 ethtool_convert_legacy_u32_to_link_mode -EXPORT_SYMBOL vmlinux 0x8fb3b4fc inet6_offloads -EXPORT_SYMBOL vmlinux 0x8fbe497f reuseport_select_sock -EXPORT_SYMBOL vmlinux 0x8fc4327e seq_pad -EXPORT_SYMBOL vmlinux 0x8fc9ea11 fman_port_cfg_buf_prefix_content -EXPORT_SYMBOL vmlinux 0x8fd180e7 kernel_neon_begin -EXPORT_SYMBOL vmlinux 0x8ff89ed0 seg6_hmac_exit -EXPORT_SYMBOL vmlinux 0x90006be6 dm_kcopyd_client_flush -EXPORT_SYMBOL vmlinux 0x90045668 gen_pool_dma_alloc_algo -EXPORT_SYMBOL vmlinux 0x9005a6e5 gnet_stats_copy_basic -EXPORT_SYMBOL vmlinux 0x901fd8d3 nexthop_bucket_set_hw_flags -EXPORT_SYMBOL vmlinux 0x90297fc5 of_clk_get_by_name -EXPORT_SYMBOL vmlinux 0x902d8722 vme_slave_get -EXPORT_SYMBOL vmlinux 0x902f5199 cpumask_next_wrap -EXPORT_SYMBOL vmlinux 0x903c039f skb_prepare_seq_read -EXPORT_SYMBOL vmlinux 0x903c09e3 __dev_direct_xmit -EXPORT_SYMBOL vmlinux 0x90433d1f i2c_smbus_read_block_data -EXPORT_SYMBOL vmlinux 0x905695ab sg_copy_from_buffer -EXPORT_SYMBOL vmlinux 0x90576ec4 vmemdup_user -EXPORT_SYMBOL vmlinux 0x90792f33 input_handler_for_each_handle -EXPORT_SYMBOL vmlinux 0x907c87f3 devm_alloc_etherdev_mqs -EXPORT_SYMBOL vmlinux 0x908e5601 cpu_hwcaps -EXPORT_SYMBOL vmlinux 0x90a028c6 param_ops_bool -EXPORT_SYMBOL vmlinux 0x90b630c0 __cpuhp_remove_state -EXPORT_SYMBOL vmlinux 0x90d3fb41 cdev_alloc -EXPORT_SYMBOL vmlinux 0x90dff321 unregister_console -EXPORT_SYMBOL vmlinux 0x90eb2228 inet_shutdown -EXPORT_SYMBOL vmlinux 0x9102aabb sock_i_ino -EXPORT_SYMBOL vmlinux 0x910c1af8 nf_reinject -EXPORT_SYMBOL vmlinux 0x911a51b7 flow_indr_dev_setup_offload -EXPORT_SYMBOL vmlinux 0x913013c9 vfs_unlink -EXPORT_SYMBOL vmlinux 0x913b5ee4 __phy_resume -EXPORT_SYMBOL vmlinux 0x91462fd4 tcf_action_set_ctrlact -EXPORT_SYMBOL vmlinux 0x914bed68 dev_mc_sync_multiple -EXPORT_SYMBOL vmlinux 0x914d97b8 invalidate_bdev -EXPORT_SYMBOL vmlinux 0x9166fada strncpy -EXPORT_SYMBOL vmlinux 0x9168d172 inetdev_by_index -EXPORT_SYMBOL vmlinux 0x9169904e of_translate_dma_address -EXPORT_SYMBOL vmlinux 0x9169ca63 md_done_sync -EXPORT_SYMBOL vmlinux 0x919a5cd1 phy_register_fixup -EXPORT_SYMBOL vmlinux 0x919c58f3 __clzsi2 -EXPORT_SYMBOL vmlinux 0x91a488ac __netdev_alloc_frag_align -EXPORT_SYMBOL vmlinux 0x91a7b1da qdisc_class_hash_remove -EXPORT_SYMBOL vmlinux 0x91c0980e icst_hz -EXPORT_SYMBOL vmlinux 0x91cf9cfe pci_release_resource -EXPORT_SYMBOL vmlinux 0x91d38904 find_inode_nowait -EXPORT_SYMBOL vmlinux 0x91e315c7 tty_vhangup -EXPORT_SYMBOL vmlinux 0x91f04e99 rproc_of_resm_mem_entry_init -EXPORT_SYMBOL vmlinux 0x91f21b9a single_open_size -EXPORT_SYMBOL vmlinux 0x91f68ea1 __hw_addr_sync -EXPORT_SYMBOL vmlinux 0x92198ca5 tty_port_raise_dtr_rts -EXPORT_SYMBOL vmlinux 0x922f45a6 __bitmap_clear -EXPORT_SYMBOL vmlinux 0x923b1276 dmaengine_get -EXPORT_SYMBOL vmlinux 0x923de900 bh_submit_read -EXPORT_SYMBOL vmlinux 0x9246fe2b security_cred_getsecid -EXPORT_SYMBOL vmlinux 0x9257a9b0 pci_request_regions_exclusive -EXPORT_SYMBOL vmlinux 0x9258c776 hdmi_vendor_infoframe_pack_only -EXPORT_SYMBOL vmlinux 0x925efb62 __ip_mc_inc_group -EXPORT_SYMBOL vmlinux 0x92774cf8 __kfence_pool -EXPORT_SYMBOL vmlinux 0x9291cd3b memdup_user -EXPORT_SYMBOL vmlinux 0x9295740e d_alloc -EXPORT_SYMBOL vmlinux 0x92997ed8 _printk -EXPORT_SYMBOL vmlinux 0x92ae66d0 scsi_remove_target -EXPORT_SYMBOL vmlinux 0x92b34b49 param_set_hexint -EXPORT_SYMBOL vmlinux 0x92b99a33 acpi_put_table -EXPORT_SYMBOL vmlinux 0x92b9b180 slash_name -EXPORT_SYMBOL vmlinux 0x92c1ea27 napi_disable -EXPORT_SYMBOL vmlinux 0x92caf34c xp_can_alloc -EXPORT_SYMBOL vmlinux 0x92cfcf9e param_set_copystring -EXPORT_SYMBOL vmlinux 0x92d5838e request_threaded_irq -EXPORT_SYMBOL vmlinux 0x92dfe782 xfrm_policy_bysel_ctx -EXPORT_SYMBOL vmlinux 0x92e683f5 down_timeout -EXPORT_SYMBOL vmlinux 0x92e7f9c8 blk_rq_map_kern -EXPORT_SYMBOL vmlinux 0x92e9da32 __dynamic_dev_dbg -EXPORT_SYMBOL vmlinux 0x92ec510d jiffies64_to_msecs -EXPORT_SYMBOL vmlinux 0x92fa5abb vme_lm_detach -EXPORT_SYMBOL vmlinux 0x93022ba6 __scsi_format_command -EXPORT_SYMBOL vmlinux 0x9305f8e6 cpufreq_get -EXPORT_SYMBOL vmlinux 0x930eab5a flow_rule_match_vlan -EXPORT_SYMBOL vmlinux 0x9317eb6d __napi_schedule_irqoff -EXPORT_SYMBOL vmlinux 0x93192625 file_remove_privs -EXPORT_SYMBOL vmlinux 0x93194a79 scsi_device_set_state -EXPORT_SYMBOL vmlinux 0x931ef611 get_ipc_ns_exported -EXPORT_SYMBOL vmlinux 0x932ad9df nvdimm_namespace_locked -EXPORT_SYMBOL vmlinux 0x933eabac sk_page_frag_refill -EXPORT_SYMBOL vmlinux 0x934302bd flow_rule_match_basic -EXPORT_SYMBOL vmlinux 0x9352d3da adjust_managed_page_count -EXPORT_SYMBOL vmlinux 0x9355e5da proc_dointvec_ms_jiffies -EXPORT_SYMBOL vmlinux 0x937733e3 qid_valid -EXPORT_SYMBOL vmlinux 0x937cbbf7 dm_kcopyd_zero -EXPORT_SYMBOL vmlinux 0x939306c4 register_netdevice -EXPORT_SYMBOL vmlinux 0x9396a27c pci_scan_root_bus_bridge -EXPORT_SYMBOL vmlinux 0x93a4d208 nf_log_unbind_pf -EXPORT_SYMBOL vmlinux 0x93a6e0b2 io_schedule -EXPORT_SYMBOL vmlinux 0x93b3fc74 register_dcbevent_notifier -EXPORT_SYMBOL vmlinux 0x93cb7124 skb_recv_datagram -EXPORT_SYMBOL vmlinux 0x93d156a7 ip_sock_set_pktinfo -EXPORT_SYMBOL vmlinux 0x93d6dd8c complete_all -EXPORT_SYMBOL vmlinux 0x93f977cf __wake_up -EXPORT_SYMBOL vmlinux 0x94177662 __register_binfmt -EXPORT_SYMBOL vmlinux 0x94250f4f __d_drop -EXPORT_SYMBOL vmlinux 0x9428f816 dim_turn -EXPORT_SYMBOL vmlinux 0x942a6759 mempool_alloc -EXPORT_SYMBOL vmlinux 0x94404eff path_get -EXPORT_SYMBOL vmlinux 0x944375db _totalram_pages -EXPORT_SYMBOL vmlinux 0x9449128a gnet_stats_start_copy_compat -EXPORT_SYMBOL vmlinux 0x944a564d is_console_locked -EXPORT_SYMBOL vmlinux 0x945d327f xfrm_state_free -EXPORT_SYMBOL vmlinux 0x9471137c mii_ethtool_sset -EXPORT_SYMBOL vmlinux 0x94749993 devfreq_update_status -EXPORT_SYMBOL vmlinux 0x94961283 vunmap -EXPORT_SYMBOL vmlinux 0x949c8c11 phy_advertise_supported -EXPORT_SYMBOL vmlinux 0x94a88119 __dev_remove_pack -EXPORT_SYMBOL vmlinux 0x94bf03ca utf8_to_utf32 -EXPORT_SYMBOL vmlinux 0x94c5ebd6 freeze_bdev -EXPORT_SYMBOL vmlinux 0x94e50ad4 call_fib_notifier -EXPORT_SYMBOL vmlinux 0x94f06a46 dma_map_resource -EXPORT_SYMBOL vmlinux 0x94fc8d93 smp_call_function_many -EXPORT_SYMBOL vmlinux 0x9507c90f copy_fsxattr_to_user -EXPORT_SYMBOL vmlinux 0x951ff62a thaw_super -EXPORT_SYMBOL vmlinux 0x9525a904 inet_sendpage -EXPORT_SYMBOL vmlinux 0x952a1680 i2c_smbus_read_i2c_block_data_or_emulated -EXPORT_SYMBOL vmlinux 0x953e36ad udplite_prot -EXPORT_SYMBOL vmlinux 0x9545ddf2 xfrm_state_delete -EXPORT_SYMBOL vmlinux 0x954cef6f init_on_alloc -EXPORT_SYMBOL vmlinux 0x954f099c idr_preload -EXPORT_SYMBOL vmlinux 0x9573e47f truncate_setsize -EXPORT_SYMBOL vmlinux 0x95787f5b kthread_blkcg -EXPORT_SYMBOL vmlinux 0x958a9934 ping_prot -EXPORT_SYMBOL vmlinux 0x959d9a25 pnp_release_card_device -EXPORT_SYMBOL vmlinux 0x95aa7268 netdev_set_num_tc -EXPORT_SYMBOL vmlinux 0x95c1b615 neigh_destroy -EXPORT_SYMBOL vmlinux 0x95cb9699 blk_queue_max_discard_sectors -EXPORT_SYMBOL vmlinux 0x95cd9d12 alloc_mdio_bitbang -EXPORT_SYMBOL vmlinux 0x95f53294 tty_port_close -EXPORT_SYMBOL vmlinux 0x95fdc6f1 arp_tbl -EXPORT_SYMBOL vmlinux 0x9606c6d2 __starget_for_each_device -EXPORT_SYMBOL vmlinux 0x960721c0 kgdb_roundup_delay -EXPORT_SYMBOL vmlinux 0x960a99df ipv4_specific -EXPORT_SYMBOL vmlinux 0x9632003e devm_tegra_prod_get_from_node -EXPORT_SYMBOL vmlinux 0x9649f038 dma_unmap_resource -EXPORT_SYMBOL vmlinux 0x96637cf2 pci_scan_root_bus -EXPORT_SYMBOL vmlinux 0x96683b50 rtnl_nla_parse_ifinfomsg -EXPORT_SYMBOL vmlinux 0x967068a0 mmc_detect_change -EXPORT_SYMBOL vmlinux 0x96848186 scnprintf -EXPORT_SYMBOL vmlinux 0x9688de8b memstart_addr -EXPORT_SYMBOL vmlinux 0x96904433 register_mii_tstamp_controller -EXPORT_SYMBOL vmlinux 0x96aa7240 rt6_lookup -EXPORT_SYMBOL vmlinux 0x96b29254 strncasecmp -EXPORT_SYMBOL vmlinux 0x96bc43f8 mii_nway_restart -EXPORT_SYMBOL vmlinux 0x96c17136 fb_var_to_videomode -EXPORT_SYMBOL vmlinux 0x96cd2b04 scsi_sense_key_string -EXPORT_SYMBOL vmlinux 0x96fab350 dim_park_on_top -EXPORT_SYMBOL vmlinux 0x96ffd586 mount_subtree -EXPORT_SYMBOL vmlinux 0x9720a818 __mdiobus_read -EXPORT_SYMBOL vmlinux 0x9724436b tcp_syn_ack_timeout -EXPORT_SYMBOL vmlinux 0x972d32b7 finish_swait -EXPORT_SYMBOL vmlinux 0x972ef5b0 posix_acl_from_xattr -EXPORT_SYMBOL vmlinux 0x973fa82e register_acpi_notifier -EXPORT_SYMBOL vmlinux 0x9746eb89 ZSTD_decompressBegin_usingDict -EXPORT_SYMBOL vmlinux 0x97934ecf del_timer_sync -EXPORT_SYMBOL vmlinux 0x97a57333 crc_t10dif_update -EXPORT_SYMBOL vmlinux 0x97a59252 phy_find_first -EXPORT_SYMBOL vmlinux 0x97adb487 utf8s_to_utf16s -EXPORT_SYMBOL vmlinux 0x97bdfa60 scsi_dev_info_remove_list -EXPORT_SYMBOL vmlinux 0x97c8571b mmc_can_secure_erase_trim -EXPORT_SYMBOL vmlinux 0x97cf40fd vmf_insert_mixed -EXPORT_SYMBOL vmlinux 0x97d04a9d jbd2_journal_clear_features -EXPORT_SYMBOL vmlinux 0x97d254e6 ip6_xmit -EXPORT_SYMBOL vmlinux 0x97e60d88 gen_replace_estimator -EXPORT_SYMBOL vmlinux 0x97ed2212 __tracepoint_spi_transfer_start -EXPORT_SYMBOL vmlinux 0x97f8b0b0 tty_do_resize -EXPORT_SYMBOL vmlinux 0x98118989 inet_register_protosw -EXPORT_SYMBOL vmlinux 0x9822c467 con_set_default_unimap -EXPORT_SYMBOL vmlinux 0x98258a79 mmc_gpio_set_cd_isr -EXPORT_SYMBOL vmlinux 0x9829fc11 __kfifo_out_peek_r -EXPORT_SYMBOL vmlinux 0x982bcde4 __cpu_dying_mask -EXPORT_SYMBOL vmlinux 0x984d8716 finalize_exec -EXPORT_SYMBOL vmlinux 0x984f6650 inode_newsize_ok -EXPORT_SYMBOL vmlinux 0x98666510 ip_frag_next -EXPORT_SYMBOL vmlinux 0x986de6e9 vfs_llseek -EXPORT_SYMBOL vmlinux 0x989df5f1 pci_select_bars -EXPORT_SYMBOL vmlinux 0x98b620ec simple_symlink_inode_operations -EXPORT_SYMBOL vmlinux 0x98c6be40 add_to_page_cache_locked -EXPORT_SYMBOL vmlinux 0x98c89ade security_xfrm_state_alloc -EXPORT_SYMBOL vmlinux 0x98ceb6cd __block_write_full_page -EXPORT_SYMBOL vmlinux 0x98cf60b3 strlen -EXPORT_SYMBOL vmlinux 0x98d06659 __xa_alloc_cyclic -EXPORT_SYMBOL vmlinux 0x98d2914e nosteal_pipe_buf_ops -EXPORT_SYMBOL vmlinux 0x98d3857c input_unregister_device -EXPORT_SYMBOL vmlinux 0x98e508ef ignore_console_lock_warning -EXPORT_SYMBOL vmlinux 0x98fe95e5 unregister_netdevice_notifier_dev_net -EXPORT_SYMBOL vmlinux 0x98fff165 netlink_capable -EXPORT_SYMBOL vmlinux 0x9906f500 vme_irq_handler -EXPORT_SYMBOL vmlinux 0x99078b39 trace_print_flags_seq -EXPORT_SYMBOL vmlinux 0x99094fb2 qcom_scm_is_available -EXPORT_SYMBOL vmlinux 0x9916e074 sock_cmsg_send -EXPORT_SYMBOL vmlinux 0x99193999 blk_rq_unmap_user -EXPORT_SYMBOL vmlinux 0x991e94b6 qdisc_watchdog_cancel -EXPORT_SYMBOL vmlinux 0x9925d0be register_netdevice_notifier_dev_net -EXPORT_SYMBOL vmlinux 0x992c7549 udp_seq_start -EXPORT_SYMBOL vmlinux 0x993023eb textsearch_register -EXPORT_SYMBOL vmlinux 0x9931f8c9 qcom_scm_lmh_dcvsh_available -EXPORT_SYMBOL vmlinux 0x9932ea10 reuseport_alloc -EXPORT_SYMBOL vmlinux 0x9938d86d of_device_unregister -EXPORT_SYMBOL vmlinux 0x9939eba0 backlight_unregister_notifier -EXPORT_SYMBOL vmlinux 0x99405471 mmc_wait_for_req -EXPORT_SYMBOL vmlinux 0x994c4996 netdev_adjacent_change_commit -EXPORT_SYMBOL vmlinux 0x9950d8e6 acpi_bus_get_device -EXPORT_SYMBOL vmlinux 0x99517682 udp_encap_enable -EXPORT_SYMBOL vmlinux 0x9968a7ca sync_blockdev -EXPORT_SYMBOL vmlinux 0x996eea3d nobh_write_end -EXPORT_SYMBOL vmlinux 0x9973f759 sk_stream_wait_memory -EXPORT_SYMBOL vmlinux 0x9975dc22 acpi_get_handle -EXPORT_SYMBOL vmlinux 0x9976cbf0 phy_ethtool_ksettings_get -EXPORT_SYMBOL vmlinux 0x998a73cf xfrm_state_lookup_byaddr -EXPORT_SYMBOL vmlinux 0x999e8297 vfree -EXPORT_SYMBOL vmlinux 0x99b6540f tegra_prod_set_by_name_partially -EXPORT_SYMBOL vmlinux 0x99cd46a5 scsi_command_normalize_sense -EXPORT_SYMBOL vmlinux 0x99d472b1 net_dim_get_rx_moderation -EXPORT_SYMBOL vmlinux 0x99daa9bf try_offline_node -EXPORT_SYMBOL vmlinux 0x99e82021 put_cmsg_scm_timestamping64 -EXPORT_SYMBOL vmlinux 0x99f218ea __blkdev_issue_discard -EXPORT_SYMBOL vmlinux 0x99f781d5 kill_pid -EXPORT_SYMBOL vmlinux 0x99f9638f __napi_alloc_frag_align -EXPORT_SYMBOL vmlinux 0x99fe01a8 __inet_stream_connect -EXPORT_SYMBOL vmlinux 0x9a013a7c phy_set_max_speed -EXPORT_SYMBOL vmlinux 0x9a0c3a18 vme_unregister_error_handler -EXPORT_SYMBOL vmlinux 0x9a13feae fbcon_update_vcs -EXPORT_SYMBOL vmlinux 0x9a1dfd65 strpbrk -EXPORT_SYMBOL vmlinux 0x9a278404 ndo_dflt_fdb_del -EXPORT_SYMBOL vmlinux 0x9a559d73 reuseport_migrate_sock -EXPORT_SYMBOL vmlinux 0x9a583306 netlbl_bitmap_walk -EXPORT_SYMBOL vmlinux 0x9a69be17 filemap_fdatawrite_wbc -EXPORT_SYMBOL vmlinux 0x9a6e3380 tegra_io_pad_power_enable -EXPORT_SYMBOL vmlinux 0x9a73b032 ZSTD_initDStream_usingDDict -EXPORT_SYMBOL vmlinux 0x9a7c9cec __netlink_dump_start -EXPORT_SYMBOL vmlinux 0x9a9d8701 generic_read_dir -EXPORT_SYMBOL vmlinux 0x9aa01b8b input_reset_device -EXPORT_SYMBOL vmlinux 0x9aa283d7 security_sk_classify_flow -EXPORT_SYMBOL vmlinux 0x9aa3f39a dm_table_event -EXPORT_SYMBOL vmlinux 0x9aa4e69e __zerocopy_sg_from_iter -EXPORT_SYMBOL vmlinux 0x9aa67aaa __page_cache_alloc -EXPORT_SYMBOL vmlinux 0x9aa71919 refcount_dec_and_lock -EXPORT_SYMBOL vmlinux 0x9aaeefce sysctl_nf_log_all_netns -EXPORT_SYMBOL vmlinux 0x9ae47436 _find_last_bit -EXPORT_SYMBOL vmlinux 0x9b079ac2 mmc_cards -EXPORT_SYMBOL vmlinux 0x9b0ab59d cdrom_dummy_generic_packet -EXPORT_SYMBOL vmlinux 0x9b128a66 qcom_scm_set_remote_state -EXPORT_SYMBOL vmlinux 0x9b2560b9 gf128mul_init_4k_bbe -EXPORT_SYMBOL vmlinux 0x9b2eb52c netpoll_cleanup -EXPORT_SYMBOL vmlinux 0x9b33e0d7 unregister_dcbevent_notifier -EXPORT_SYMBOL vmlinux 0x9b420478 utf8_strncasecmp -EXPORT_SYMBOL vmlinux 0x9b496b21 posix_acl_alloc -EXPORT_SYMBOL vmlinux 0x9b6c724e xudma_pktdma_tflow_get_irq -EXPORT_SYMBOL vmlinux 0x9b72478f acpi_unload_parent_table -EXPORT_SYMBOL vmlinux 0x9b99c090 clk_bulk_get_all -EXPORT_SYMBOL vmlinux 0x9bcfe8aa dev_deactivate -EXPORT_SYMBOL vmlinux 0x9be67b30 dquot_set_dqinfo -EXPORT_SYMBOL vmlinux 0x9bf80215 xa_load -EXPORT_SYMBOL vmlinux 0x9c0aae7b mr_mfc_seq_idx -EXPORT_SYMBOL vmlinux 0x9c0d5f3f __cleancache_init_shared_fs -EXPORT_SYMBOL vmlinux 0x9c1af9e3 __skb_try_recv_datagram -EXPORT_SYMBOL vmlinux 0x9c1e5bf5 queued_spin_lock_slowpath -EXPORT_SYMBOL vmlinux 0x9c355ecf pm860x_page_reg_write -EXPORT_SYMBOL vmlinux 0x9c566998 tc_setup_cb_replace -EXPORT_SYMBOL vmlinux 0x9c5a2ada ucc_fast_dump_regs -EXPORT_SYMBOL vmlinux 0x9c5d5b94 crc8 -EXPORT_SYMBOL vmlinux 0x9c641606 phy_register_fixup_for_id -EXPORT_SYMBOL vmlinux 0x9c78b7e1 gnet_stats_finish_copy -EXPORT_SYMBOL vmlinux 0x9c7e5875 generic_block_bmap -EXPORT_SYMBOL vmlinux 0x9c83fc16 ip6_frag_next -EXPORT_SYMBOL vmlinux 0x9c86b9ab fileattr_fill_flags -EXPORT_SYMBOL vmlinux 0x9c900182 jbd2__journal_start -EXPORT_SYMBOL vmlinux 0x9cab34a6 rfkill_set_led_trigger_name -EXPORT_SYMBOL vmlinux 0x9cba5947 drop_super -EXPORT_SYMBOL vmlinux 0x9cc0e34b follow_down -EXPORT_SYMBOL vmlinux 0x9ccc8189 security_inode_listsecurity -EXPORT_SYMBOL vmlinux 0x9ccf7171 vme_dma_pci_attribute -EXPORT_SYMBOL vmlinux 0x9cd54b42 udp_read_sock -EXPORT_SYMBOL vmlinux 0x9cdfb3f7 sysctl_fb_tunnels_only_for_init_net -EXPORT_SYMBOL vmlinux 0x9d0d6206 unregister_netdevice_notifier -EXPORT_SYMBOL vmlinux 0x9d161c20 qdisc_offload_graft_helper -EXPORT_SYMBOL vmlinux 0x9d1a5e3a __memcpy -EXPORT_SYMBOL vmlinux 0x9d2ab8ac __tasklet_schedule -EXPORT_SYMBOL vmlinux 0x9d2e7707 unregister_sysrq_key -EXPORT_SYMBOL vmlinux 0x9d3adc95 seg6_hmac_net_exit -EXPORT_SYMBOL vmlinux 0x9d4f16c5 inet_recvmsg -EXPORT_SYMBOL vmlinux 0x9d511a0d finish_no_open -EXPORT_SYMBOL vmlinux 0x9d61e994 ucs2_strncmp -EXPORT_SYMBOL vmlinux 0x9d6b57b2 tcp_mss_to_mtu -EXPORT_SYMBOL vmlinux 0x9d8a2f4c mipi_dsi_dcs_exit_sleep_mode -EXPORT_SYMBOL vmlinux 0x9d97ab2c audit_log_object_context -EXPORT_SYMBOL vmlinux 0x9da1291d done_path_create -EXPORT_SYMBOL vmlinux 0x9da87ec4 pnp_disable_dev -EXPORT_SYMBOL vmlinux 0x9db23373 mmc_erase_group_aligned -EXPORT_SYMBOL vmlinux 0x9dbb19d6 skb_trim -EXPORT_SYMBOL vmlinux 0x9dbb3dc5 serio_close -EXPORT_SYMBOL vmlinux 0x9dbcb469 prepare_creds -EXPORT_SYMBOL vmlinux 0x9dd85e37 config_group_init -EXPORT_SYMBOL vmlinux 0x9df21d0e qman_affine_channel -EXPORT_SYMBOL vmlinux 0x9df443ba wait_for_key_construction -EXPORT_SYMBOL vmlinux 0x9df74108 security_skb_classify_flow -EXPORT_SYMBOL vmlinux 0x9dfcba32 secpath_set -EXPORT_SYMBOL vmlinux 0x9e072a37 mipi_dsi_generic_read -EXPORT_SYMBOL vmlinux 0x9e0a8376 proc_dobool -EXPORT_SYMBOL vmlinux 0x9e0c711d vzalloc_node -EXPORT_SYMBOL vmlinux 0x9e0c89d5 netif_schedule_queue -EXPORT_SYMBOL vmlinux 0x9e0fa5ae hsiphash_3u32 -EXPORT_SYMBOL vmlinux 0x9e13f6f6 gf128mul_lle -EXPORT_SYMBOL vmlinux 0x9e161b43 PDE_DATA -EXPORT_SYMBOL vmlinux 0x9e17bc40 dma_fence_signal_timestamp_locked -EXPORT_SYMBOL vmlinux 0x9e21341d scsi_device_lookup -EXPORT_SYMBOL vmlinux 0x9e2737f0 acpi_install_interface_handler -EXPORT_SYMBOL vmlinux 0x9e3c11e3 seg6_hmac_info_del -EXPORT_SYMBOL vmlinux 0x9e4faeef dm_io_client_destroy -EXPORT_SYMBOL vmlinux 0x9e5e750d node_to_cpumask_map -EXPORT_SYMBOL vmlinux 0x9e61bb05 set_freezable -EXPORT_SYMBOL vmlinux 0x9e6b8c0f get_tree_keyed -EXPORT_SYMBOL vmlinux 0x9e736260 sk_capable -EXPORT_SYMBOL vmlinux 0x9e7d6bd0 __udelay -EXPORT_SYMBOL vmlinux 0x9e81b340 vlan_vids_add_by_dev -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 0x9ec0e639 twl6030_interrupt_unmask -EXPORT_SYMBOL vmlinux 0x9ec69ea0 phy_sfp_probe -EXPORT_SYMBOL vmlinux 0x9ec6ca96 ktime_get_real_ts64 -EXPORT_SYMBOL vmlinux 0x9ed71a2b jbd2_journal_get_write_access -EXPORT_SYMBOL vmlinux 0x9ed7c847 brcmstb_get_family_id -EXPORT_SYMBOL vmlinux 0x9ed978de vme_lm_set -EXPORT_SYMBOL vmlinux 0x9ee738a4 get_cached_acl -EXPORT_SYMBOL vmlinux 0x9ef6014a eth_prepare_mac_addr_change -EXPORT_SYMBOL vmlinux 0x9f1d42bb input_free_device -EXPORT_SYMBOL vmlinux 0x9f28adf4 genphy_c37_config_aneg -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 0x9f5b28fe sync_file_get_fence -EXPORT_SYMBOL vmlinux 0x9f714116 dcache_readdir -EXPORT_SYMBOL vmlinux 0x9f7d7dbb logic_outsw -EXPORT_SYMBOL vmlinux 0x9f92d242 flow_rule_match_icmp -EXPORT_SYMBOL vmlinux 0x9f984513 strrchr -EXPORT_SYMBOL vmlinux 0x9fa2021e tcp_mtu_to_mss -EXPORT_SYMBOL vmlinux 0x9fa5a07d xfrm4_rcv -EXPORT_SYMBOL vmlinux 0x9fa7184a cancel_delayed_work_sync -EXPORT_SYMBOL vmlinux 0x9fa7d551 __free_pages -EXPORT_SYMBOL vmlinux 0x9fa99d9a inode_init_once -EXPORT_SYMBOL vmlinux 0x9fc089ad __wake_up_bit -EXPORT_SYMBOL vmlinux 0x9fc201b1 of_find_backlight_by_node -EXPORT_SYMBOL vmlinux 0x9fc6f49e shrink_dcache_sb -EXPORT_SYMBOL vmlinux 0x9fd87ea1 request_key_with_auxdata -EXPORT_SYMBOL vmlinux 0x9fdecc31 unregister_netdevice_many -EXPORT_SYMBOL vmlinux 0x9feed7ce timer_reduce -EXPORT_SYMBOL vmlinux 0x9ffa3a75 netdev_max_backlog -EXPORT_SYMBOL vmlinux 0xa00aca2a dql_completed -EXPORT_SYMBOL vmlinux 0xa012ef17 mntget -EXPORT_SYMBOL vmlinux 0xa01d3df6 font_vga_8x16 -EXPORT_SYMBOL vmlinux 0xa0249d80 submit_bio_wait -EXPORT_SYMBOL vmlinux 0xa033d747 next_arg -EXPORT_SYMBOL vmlinux 0xa03bcecb xfrm_lookup -EXPORT_SYMBOL vmlinux 0xa0436e98 in6addr_linklocal_allnodes -EXPORT_SYMBOL vmlinux 0xa043eeab filemap_map_pages -EXPORT_SYMBOL vmlinux 0xa04e33da qcom_scm_lmh_dcvsh -EXPORT_SYMBOL vmlinux 0xa04eb800 pci_setup_cardbus -EXPORT_SYMBOL vmlinux 0xa04f01c9 dma_fence_signal_timestamp -EXPORT_SYMBOL vmlinux 0xa057df8f twl_set_regcache_bypass -EXPORT_SYMBOL vmlinux 0xa05b6be2 psched_ppscfg_precompute -EXPORT_SYMBOL vmlinux 0xa05d274f release_sock -EXPORT_SYMBOL vmlinux 0xa05e575f flow_indr_block_cb_alloc -EXPORT_SYMBOL vmlinux 0xa07a37f0 memchr -EXPORT_SYMBOL vmlinux 0xa07d1b3c tasklet_setup -EXPORT_SYMBOL vmlinux 0xa0828e69 pci_prepare_to_sleep -EXPORT_SYMBOL vmlinux 0xa084749a __bitmap_or -EXPORT_SYMBOL vmlinux 0xa087d9ed phy_ethtool_get_eee -EXPORT_SYMBOL vmlinux 0xa0913e7f pm_vt_switch_required -EXPORT_SYMBOL vmlinux 0xa095e02e generic_check_addressable -EXPORT_SYMBOL vmlinux 0xa0985aec d_invalidate -EXPORT_SYMBOL vmlinux 0xa0a3e555 tcf_get_next_proto -EXPORT_SYMBOL vmlinux 0xa0ae1e73 siphash_3u64 -EXPORT_SYMBOL vmlinux 0xa0ae694b __set_page_dirty_no_writeback -EXPORT_SYMBOL vmlinux 0xa0b04675 vmalloc_32 -EXPORT_SYMBOL vmlinux 0xa0d87339 qdisc_get_rtab -EXPORT_SYMBOL vmlinux 0xa0dad88e netdev_adjacent_get_private -EXPORT_SYMBOL vmlinux 0xa0dca177 xfrm_state_walk -EXPORT_SYMBOL vmlinux 0xa0ea723c cdrom_open -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 0xa0f0f262 mini_qdisc_pair_init -EXPORT_SYMBOL vmlinux 0xa0f4bd15 lookup_one -EXPORT_SYMBOL vmlinux 0xa0fbac79 wake_up_bit -EXPORT_SYMBOL vmlinux 0xa105dd87 dma_resv_reserve_shared -EXPORT_SYMBOL vmlinux 0xa108eb4d sysctl_optmem_max -EXPORT_SYMBOL vmlinux 0xa11905d2 pci_find_parent_resource -EXPORT_SYMBOL vmlinux 0xa1211cbd gen_pool_create -EXPORT_SYMBOL vmlinux 0xa126ec11 dquot_claim_space_nodirty -EXPORT_SYMBOL vmlinux 0xa1347f18 phy_resume -EXPORT_SYMBOL vmlinux 0xa14d1752 cdrom_release -EXPORT_SYMBOL vmlinux 0xa15fd791 keyring_search -EXPORT_SYMBOL vmlinux 0xa176cb9d tcp_close -EXPORT_SYMBOL vmlinux 0xa17e3bac pcie_capability_clear_and_set_dword -EXPORT_SYMBOL vmlinux 0xa17e7801 page_symlink_inode_operations -EXPORT_SYMBOL vmlinux 0xa1966f0a d_find_alias -EXPORT_SYMBOL vmlinux 0xa199d5cf flow_rule_match_ipv6_addrs -EXPORT_SYMBOL vmlinux 0xa19c01c5 dev_add_offload -EXPORT_SYMBOL vmlinux 0xa1af5fa9 qdisc_put_unlocked -EXPORT_SYMBOL vmlinux 0xa1b24925 blk_get_queue -EXPORT_SYMBOL vmlinux 0xa1b441d5 sk_send_sigurg -EXPORT_SYMBOL vmlinux 0xa1cf2642 do_SAK -EXPORT_SYMBOL vmlinux 0xa1e761eb tegra_dfll_register -EXPORT_SYMBOL vmlinux 0xa2035ac6 qcom_scm_set_warm_boot_addr -EXPORT_SYMBOL vmlinux 0xa2060911 inet_current_timestamp -EXPORT_SYMBOL vmlinux 0xa2326c49 acpi_remove_table_handler -EXPORT_SYMBOL vmlinux 0xa2385d52 single_open -EXPORT_SYMBOL vmlinux 0xa238977a rt_write_lock -EXPORT_SYMBOL vmlinux 0xa238c0ed mipi_dsi_dcs_soft_reset -EXPORT_SYMBOL vmlinux 0xa23ffc04 groups_sort -EXPORT_SYMBOL vmlinux 0xa244f06f zpool_unregister_driver -EXPORT_SYMBOL vmlinux 0xa2492bce __mark_inode_dirty -EXPORT_SYMBOL vmlinux 0xa24f23d8 __request_module -EXPORT_SYMBOL vmlinux 0xa25b90ab utf8byte -EXPORT_SYMBOL vmlinux 0xa263892b fscrypt_fname_free_buffer -EXPORT_SYMBOL vmlinux 0xa2660e90 __tracepoint_dma_fence_signaled -EXPORT_SYMBOL vmlinux 0xa2794806 mount_bdev -EXPORT_SYMBOL vmlinux 0xa28cfcc0 gen_estimator_active -EXPORT_SYMBOL vmlinux 0xa29093b5 netdev_lower_get_next_private -EXPORT_SYMBOL vmlinux 0xa2a3ef4e i2c_smbus_xfer -EXPORT_SYMBOL vmlinux 0xa2b2699e mod_zone_page_state -EXPORT_SYMBOL vmlinux 0xa2cf3649 qman_fq_fqid -EXPORT_SYMBOL vmlinux 0xa2d7ec8d __SCK__tp_func_kmem_cache_free -EXPORT_SYMBOL vmlinux 0xa2efcb31 __neigh_for_each_release -EXPORT_SYMBOL vmlinux 0xa2fafb1a neigh_app_ns -EXPORT_SYMBOL vmlinux 0xa2fcff1b blk_pre_runtime_resume -EXPORT_SYMBOL vmlinux 0xa3070991 migrate_page_states -EXPORT_SYMBOL vmlinux 0xa336eae1 scsicam_bios_param -EXPORT_SYMBOL vmlinux 0xa339e6e5 on_each_cpu_cond_mask -EXPORT_SYMBOL vmlinux 0xa34907d6 iget5_locked -EXPORT_SYMBOL vmlinux 0xa3522df5 qman_query_fq_np -EXPORT_SYMBOL vmlinux 0xa3634630 rproc_elf_get_boot_addr -EXPORT_SYMBOL vmlinux 0xa36696a4 rt_spin_unlock -EXPORT_SYMBOL vmlinux 0xa36a5f59 dma_alloc_attrs -EXPORT_SYMBOL vmlinux 0xa39452d3 get_thermal_instance -EXPORT_SYMBOL vmlinux 0xa3a3f229 cpumask_next_and -EXPORT_SYMBOL vmlinux 0xa3a8448d bioset_integrity_create -EXPORT_SYMBOL vmlinux 0xa3ae674a bdev_check_media_change -EXPORT_SYMBOL vmlinux 0xa3ba60c9 xa_extract -EXPORT_SYMBOL vmlinux 0xa3c790bd tegra_ivc_write_get_next_frame -EXPORT_SYMBOL vmlinux 0xa3cefaa0 blake2s_update -EXPORT_SYMBOL vmlinux 0xa3cf226e pcie_print_link_status -EXPORT_SYMBOL vmlinux 0xa3d7c92d pnp_request_card_device -EXPORT_SYMBOL vmlinux 0xa3e83f61 xfrm_unregister_type -EXPORT_SYMBOL vmlinux 0xa3e9ec4b nla_reserve_64bit -EXPORT_SYMBOL vmlinux 0xa3f8e31e ptp_find_pin_unlocked -EXPORT_SYMBOL vmlinux 0xa3fb735a blk_set_default_limits -EXPORT_SYMBOL vmlinux 0xa3fea172 sha224_final -EXPORT_SYMBOL vmlinux 0xa40ff01b acpi_dbg_layer -EXPORT_SYMBOL vmlinux 0xa4240015 __lock_sock_fast -EXPORT_SYMBOL vmlinux 0xa42a08d6 pagecache_isize_extended -EXPORT_SYMBOL vmlinux 0xa433b8b7 netlink_net_capable -EXPORT_SYMBOL vmlinux 0xa448c653 qcom_scm_ice_set_key -EXPORT_SYMBOL vmlinux 0xa457080f mmc_hw_reset -EXPORT_SYMBOL vmlinux 0xa457525e iov_iter_gap_alignment -EXPORT_SYMBOL vmlinux 0xa45fae25 ip_tunnel_parse_protocol -EXPORT_SYMBOL vmlinux 0xa480b779 vfs_iocb_iter_write -EXPORT_SYMBOL vmlinux 0xa488224c seg6_hmac_validate_skb -EXPORT_SYMBOL vmlinux 0xa490b06d __traceiter_spi_transfer_start -EXPORT_SYMBOL vmlinux 0xa4955ea6 of_chosen -EXPORT_SYMBOL vmlinux 0xa49c8ac3 add_watch_to_object -EXPORT_SYMBOL vmlinux 0xa4a5cfe2 ethtool_get_phc_vclocks -EXPORT_SYMBOL vmlinux 0xa4b002c9 ip_mc_join_group -EXPORT_SYMBOL vmlinux 0xa4b79d36 netdev_adjacent_change_abort -EXPORT_SYMBOL vmlinux 0xa4c4c538 ppp_input -EXPORT_SYMBOL vmlinux 0xa4ca5997 security_sb_remount -EXPORT_SYMBOL vmlinux 0xa4d300ab udp_lib_getsockopt -EXPORT_SYMBOL vmlinux 0xa4d391b1 tcp_sock_set_user_timeout -EXPORT_SYMBOL vmlinux 0xa4d84291 rt_read_unlock -EXPORT_SYMBOL vmlinux 0xa4e449e9 netpoll_parse_options -EXPORT_SYMBOL vmlinux 0xa4f29805 fixed_size_llseek -EXPORT_SYMBOL vmlinux 0xa4fca045 qcom_scm_ocmem_lock -EXPORT_SYMBOL vmlinux 0xa50a3da7 _find_next_bit -EXPORT_SYMBOL vmlinux 0xa50c721d unregister_netdev -EXPORT_SYMBOL vmlinux 0xa518d133 blk_set_queue_depth -EXPORT_SYMBOL vmlinux 0xa5209e4a xfrm_parse_spi -EXPORT_SYMBOL vmlinux 0xa52bedf6 xenbus_dev_request_and_reply -EXPORT_SYMBOL vmlinux 0xa5321405 mdio_device_remove -EXPORT_SYMBOL vmlinux 0xa549c5d0 simple_recursive_removal -EXPORT_SYMBOL vmlinux 0xa5526619 rb_insert_color -EXPORT_SYMBOL vmlinux 0xa55abf58 __blk_alloc_disk -EXPORT_SYMBOL vmlinux 0xa5625602 simple_transaction_get -EXPORT_SYMBOL vmlinux 0xa57c099d rt_dst_alloc -EXPORT_SYMBOL vmlinux 0xa57c7bf3 dma_map_sg_attrs -EXPORT_SYMBOL vmlinux 0xa57c9203 debugfs_create_automount -EXPORT_SYMBOL vmlinux 0xa583614c inet_frag_reasm_finish -EXPORT_SYMBOL vmlinux 0xa58e71ee pci_ep_cfs_remove_epc_group -EXPORT_SYMBOL vmlinux 0xa597af1b of_io_request_and_map -EXPORT_SYMBOL vmlinux 0xa59c7a98 devfreq_update_interval -EXPORT_SYMBOL vmlinux 0xa5a6421e pci_bus_read_config_dword -EXPORT_SYMBOL vmlinux 0xa5ac3e33 ZSTD_DCtxWorkspaceBound -EXPORT_SYMBOL vmlinux 0xa5b66434 tty_port_init -EXPORT_SYMBOL vmlinux 0xa5b79a9d tcp_v4_md5_lookup -EXPORT_SYMBOL vmlinux 0xa5c6f1dc __neigh_set_probe_once -EXPORT_SYMBOL vmlinux 0xa5d7e188 __module_put_and_exit -EXPORT_SYMBOL vmlinux 0xa5f27125 blk_queue_max_segment_size -EXPORT_SYMBOL vmlinux 0xa5f41929 jbd2_journal_stop -EXPORT_SYMBOL vmlinux 0xa5f7cf37 __cpu_possible_mask -EXPORT_SYMBOL vmlinux 0xa6160771 devfreq_monitor_suspend -EXPORT_SYMBOL vmlinux 0xa61ced89 qdisc_put_rtab -EXPORT_SYMBOL vmlinux 0xa6257a2f complete -EXPORT_SYMBOL vmlinux 0xa64c6d11 devfreq_unregister_opp_notifier -EXPORT_SYMBOL vmlinux 0xa6600244 ida_free -EXPORT_SYMBOL vmlinux 0xa668834c mii_ethtool_set_link_ksettings -EXPORT_SYMBOL vmlinux 0xa66f75d3 __put_cred -EXPORT_SYMBOL vmlinux 0xa67b515f __sk_backlog_rcv -EXPORT_SYMBOL vmlinux 0xa681fe88 generate_random_uuid -EXPORT_SYMBOL vmlinux 0xa6913de8 dmaengine_get_unmap_data -EXPORT_SYMBOL vmlinux 0xa6b61dce __scsi_execute -EXPORT_SYMBOL vmlinux 0xa6d3f977 framebuffer_release -EXPORT_SYMBOL vmlinux 0xa6d92441 qdisc_hash_add -EXPORT_SYMBOL vmlinux 0xa70bc96d qcom_scm_restore_sec_cfg_available -EXPORT_SYMBOL vmlinux 0xa70fb761 flow_keys_basic_dissector -EXPORT_SYMBOL vmlinux 0xa711e059 pcie_get_readrq -EXPORT_SYMBOL vmlinux 0xa71acc92 fman_port_config -EXPORT_SYMBOL vmlinux 0xa71f40a7 down_read -EXPORT_SYMBOL vmlinux 0xa730db7c udp_flush_pending_frames -EXPORT_SYMBOL vmlinux 0xa748ec54 uart_update_timeout -EXPORT_SYMBOL vmlinux 0xa74c9877 refcount_dec_and_rtnl_lock -EXPORT_SYMBOL vmlinux 0xa76952be netif_device_attach -EXPORT_SYMBOL vmlinux 0xa77368f2 phy_free_interrupt -EXPORT_SYMBOL vmlinux 0xa77bfd29 register_inet6addr_validator_notifier -EXPORT_SYMBOL vmlinux 0xa77c625a pnpacpi_protocol -EXPORT_SYMBOL vmlinux 0xa7aa5348 csum_and_copy_to_iter -EXPORT_SYMBOL vmlinux 0xa7b3f15c pnp_unregister_driver -EXPORT_SYMBOL vmlinux 0xa7b501ae gen_pool_virt_to_phys -EXPORT_SYMBOL vmlinux 0xa7c16317 neigh_resolve_output -EXPORT_SYMBOL vmlinux 0xa7c546c6 tcp_add_backlog -EXPORT_SYMBOL vmlinux 0xa7eedcc4 call_usermodehelper -EXPORT_SYMBOL vmlinux 0xa7f3b732 pcibios_resource_to_bus -EXPORT_SYMBOL vmlinux 0xa7f47792 sock_enable_timestamps -EXPORT_SYMBOL vmlinux 0xa7f51336 wait_on_page_bit_killable -EXPORT_SYMBOL vmlinux 0xa8199675 phy_ethtool_get_link_ksettings -EXPORT_SYMBOL vmlinux 0xa82dc32a register_console -EXPORT_SYMBOL vmlinux 0xa8426969 unregister_sysctl_table -EXPORT_SYMBOL vmlinux 0xa843805a get_unused_fd_flags -EXPORT_SYMBOL vmlinux 0xa84ce9e0 crypto_aes_inv_sbox -EXPORT_SYMBOL vmlinux 0xa8556375 pci_resize_resource -EXPORT_SYMBOL vmlinux 0xa8694ecd kblockd_schedule_work -EXPORT_SYMBOL vmlinux 0xa870bf01 security_unix_stream_connect -EXPORT_SYMBOL vmlinux 0xa8727562 bio_add_pc_page -EXPORT_SYMBOL vmlinux 0xa890501e dump_emit -EXPORT_SYMBOL vmlinux 0xa89a1cf1 ipmi_dmi_get_slave_addr -EXPORT_SYMBOL vmlinux 0xa8a502b4 scsi_add_device -EXPORT_SYMBOL vmlinux 0xa8a8110c kernel_neon_end -EXPORT_SYMBOL vmlinux 0xa8b5cdad pcie_ptm_enabled -EXPORT_SYMBOL vmlinux 0xa8caa845 clk_bulk_put_all -EXPORT_SYMBOL vmlinux 0xa8d14a19 napi_get_frags -EXPORT_SYMBOL vmlinux 0xa8d8f076 softnet_data -EXPORT_SYMBOL vmlinux 0xa8e6933a qdf2400_e44_present -EXPORT_SYMBOL vmlinux 0xa8f30d1c neigh_carrier_down -EXPORT_SYMBOL vmlinux 0xa8f6c843 ip_frag_ecn_table -EXPORT_SYMBOL vmlinux 0xa8f96101 tcf_em_unregister -EXPORT_SYMBOL vmlinux 0xa9005e60 dma_supported -EXPORT_SYMBOL vmlinux 0xa901afd9 devm_devfreq_add_device -EXPORT_SYMBOL vmlinux 0xa90ca0de flush_rcu_work -EXPORT_SYMBOL vmlinux 0xa90fb653 netdev_get_xmit_slave -EXPORT_SYMBOL vmlinux 0xa91374d7 proc_do_large_bitmap -EXPORT_SYMBOL vmlinux 0xa916b694 strnlen -EXPORT_SYMBOL vmlinux 0xa917661e dev_change_carrier -EXPORT_SYMBOL vmlinux 0xa91fffaf mmc_card_is_blockaddr -EXPORT_SYMBOL vmlinux 0xa924b4aa __traceiter_kmem_cache_alloc_node -EXPORT_SYMBOL vmlinux 0xa929a3dc clk_add_alias -EXPORT_SYMBOL vmlinux 0xa936f6e4 bio_integrity_clone -EXPORT_SYMBOL vmlinux 0xa94a09bb mem_section -EXPORT_SYMBOL vmlinux 0xa95ccc25 dma_set_mask -EXPORT_SYMBOL vmlinux 0xa965ca81 reciprocal_value -EXPORT_SYMBOL vmlinux 0xa976957d bitmap_remap -EXPORT_SYMBOL vmlinux 0xa98c3008 proc_remove -EXPORT_SYMBOL vmlinux 0xa998bb78 __xa_alloc -EXPORT_SYMBOL vmlinux 0xa99936a1 migrate_page_copy -EXPORT_SYMBOL vmlinux 0xa99b39c2 prandom_bytes -EXPORT_SYMBOL vmlinux 0xa9ba0fd7 __skb_wait_for_more_packets -EXPORT_SYMBOL vmlinux 0xa9bedafb dev_get_by_name_rcu -EXPORT_SYMBOL vmlinux 0xa9c4dbc9 uart_add_one_port -EXPORT_SYMBOL vmlinux 0xa9ed5c48 rtnetlink_put_metrics -EXPORT_SYMBOL vmlinux 0xa9ed62d2 tegra_fuse_readl -EXPORT_SYMBOL vmlinux 0xa9f48d51 netlbl_calipso_ops_register -EXPORT_SYMBOL vmlinux 0xaa00fdc0 ec_transaction -EXPORT_SYMBOL vmlinux 0xaa0c318b vscnprintf -EXPORT_SYMBOL vmlinux 0xaa156729 vfs_setpos -EXPORT_SYMBOL vmlinux 0xaa15918c __tcp_md5_do_lookup -EXPORT_SYMBOL vmlinux 0xaa19e4aa _kstrtol -EXPORT_SYMBOL vmlinux 0xaa33bbd5 poll_freewait -EXPORT_SYMBOL vmlinux 0xaa341905 acpi_bios_exception -EXPORT_SYMBOL vmlinux 0xaa4d6d13 simple_release_fs -EXPORT_SYMBOL vmlinux 0xaa6f23ad rfkill_get_led_trigger_name -EXPORT_SYMBOL vmlinux 0xaa7b8346 send_sig_mceerr -EXPORT_SYMBOL vmlinux 0xaa8106bc crc8_populate_msb -EXPORT_SYMBOL vmlinux 0xaa95e2be tcp_v4_do_rcv -EXPORT_SYMBOL vmlinux 0xaaa3ef90 inet6_register_protosw -EXPORT_SYMBOL vmlinux 0xaaa43dc9 ip_output -EXPORT_SYMBOL vmlinux 0xaaa4b9bc hchacha_block_generic -EXPORT_SYMBOL vmlinux 0xaaa50fb2 qcom_scm_lmh_profile_change -EXPORT_SYMBOL vmlinux 0xaaa53908 twl6040_reg_write -EXPORT_SYMBOL vmlinux 0xaabf095d netif_rx_ni -EXPORT_SYMBOL vmlinux 0xaacab59a rproc_coredump_using_sections -EXPORT_SYMBOL vmlinux 0xaacbd1c3 tcp_stream_memory_free -EXPORT_SYMBOL vmlinux 0xaacfc8ea set_security_override_from_ctx -EXPORT_SYMBOL vmlinux 0xaad0ae78 __bitmap_shift_right -EXPORT_SYMBOL vmlinux 0xaad6d92f rfkill_init_sw_state -EXPORT_SYMBOL vmlinux 0xaad8c7d6 default_wake_function -EXPORT_SYMBOL vmlinux 0xaae8ab0e acpi_bus_power_manageable -EXPORT_SYMBOL vmlinux 0xaaf714de devm_ioremap_wc -EXPORT_SYMBOL vmlinux 0xaafab336 of_graph_is_present -EXPORT_SYMBOL vmlinux 0xaafdc258 strcasecmp -EXPORT_SYMBOL vmlinux 0xab0fa308 dcb_setapp -EXPORT_SYMBOL vmlinux 0xab20a7fb devm_pci_remap_iospace -EXPORT_SYMBOL vmlinux 0xab3697e4 irq_poll_init -EXPORT_SYMBOL vmlinux 0xab3b75ea vme_dma_pattern_attribute -EXPORT_SYMBOL vmlinux 0xab5d0709 mii_check_gmii_support -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 0xab70feb6 netif_carrier_on -EXPORT_SYMBOL vmlinux 0xab781570 fb_get_options -EXPORT_SYMBOL vmlinux 0xab994823 set_user_nice -EXPORT_SYMBOL vmlinux 0xaba20104 ucc_of_parse_tdm -EXPORT_SYMBOL vmlinux 0xabb1f2b7 ps2_cmd_aborted -EXPORT_SYMBOL vmlinux 0xabba418d open_exec -EXPORT_SYMBOL vmlinux 0xabc38206 pci_match_id -EXPORT_SYMBOL vmlinux 0xabd00035 pcie_get_speed_cap -EXPORT_SYMBOL vmlinux 0xabeb9438 skb_flow_dissector_init -EXPORT_SYMBOL vmlinux 0xabf32f29 utf16s_to_utf8s -EXPORT_SYMBOL vmlinux 0xac04b0c2 find_inode_rcu -EXPORT_SYMBOL vmlinux 0xac0ffef6 generic_parse_monolithic -EXPORT_SYMBOL vmlinux 0xac1a55be unregister_reboot_notifier -EXPORT_SYMBOL vmlinux 0xac3201b0 udp_flow_hashrnd -EXPORT_SYMBOL vmlinux 0xac34320b rdmacg_uncharge -EXPORT_SYMBOL vmlinux 0xac537ac2 percpu_counter_destroy -EXPORT_SYMBOL vmlinux 0xac5a4859 inet_confirm_addr -EXPORT_SYMBOL vmlinux 0xac5fcec0 in4_pton -EXPORT_SYMBOL vmlinux 0xac706664 i2c_del_adapter -EXPORT_SYMBOL vmlinux 0xac76ff53 kthread_stop -EXPORT_SYMBOL vmlinux 0xac7d533a __sk_mem_schedule -EXPORT_SYMBOL vmlinux 0xac84defa would_dump -EXPORT_SYMBOL vmlinux 0xacab29b7 seq_hlist_start_percpu -EXPORT_SYMBOL vmlinux 0xacbc59ab input_set_timestamp -EXPORT_SYMBOL vmlinux 0xacd81eb3 jbd2_inode_cache -EXPORT_SYMBOL vmlinux 0xacd836e3 netdev_warn -EXPORT_SYMBOL vmlinux 0xacddd806 ptp_get_vclocks_index -EXPORT_SYMBOL vmlinux 0xacf2805f kernel_getpeername -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 0xad26f034 pci_bus_size_bridges -EXPORT_SYMBOL vmlinux 0xad2e6e3a kern_path_create -EXPORT_SYMBOL vmlinux 0xad357133 __traceiter_kmalloc_node -EXPORT_SYMBOL vmlinux 0xad39351c xp_raw_get_data -EXPORT_SYMBOL vmlinux 0xad3ea04c qman_p_irqsource_remove -EXPORT_SYMBOL vmlinux 0xad4276a4 tcf_exts_dump_stats -EXPORT_SYMBOL vmlinux 0xad4d6d42 netif_skb_features -EXPORT_SYMBOL vmlinux 0xad5f661e can_nice -EXPORT_SYMBOL vmlinux 0xad682b8f xudma_rchanrt_write -EXPORT_SYMBOL vmlinux 0xad73041f autoremove_wake_function -EXPORT_SYMBOL vmlinux 0xad7d0492 tcp_parse_options -EXPORT_SYMBOL vmlinux 0xad9c7471 get_task_cred -EXPORT_SYMBOL vmlinux 0xadae6df8 blake2s_final -EXPORT_SYMBOL vmlinux 0xadbeed61 mipi_dsi_packet_format_is_long -EXPORT_SYMBOL vmlinux 0xadcba50b ZSTD_findFrameCompressedSize -EXPORT_SYMBOL vmlinux 0xadd139d4 rfs_needed -EXPORT_SYMBOL vmlinux 0xade1e1e3 release_pages -EXPORT_SYMBOL vmlinux 0xadfaf437 devm_devfreq_register_notifier -EXPORT_SYMBOL vmlinux 0xadfdfcef __bitmap_andnot -EXPORT_SYMBOL vmlinux 0xae04012c __vmalloc -EXPORT_SYMBOL vmlinux 0xae1b8b7a skb_copy_and_hash_datagram_iter -EXPORT_SYMBOL vmlinux 0xae1e4744 free_buffer_head -EXPORT_SYMBOL vmlinux 0xae26fd79 scsi_vpd_tpg_id -EXPORT_SYMBOL vmlinux 0xae273c25 kill_fasync -EXPORT_SYMBOL vmlinux 0xae316c11 icmpv6_err_convert -EXPORT_SYMBOL vmlinux 0xae33c403 xudma_navss_psil_unpair -EXPORT_SYMBOL vmlinux 0xae3dcf1b poll_initwait -EXPORT_SYMBOL vmlinux 0xae4fce25 mfd_add_devices -EXPORT_SYMBOL vmlinux 0xae516370 cmxgcr_lock -EXPORT_SYMBOL vmlinux 0xae5425c9 mdiobus_read_nested -EXPORT_SYMBOL vmlinux 0xae57ec3e locks_copy_conflock -EXPORT_SYMBOL vmlinux 0xae5a04bb acpi_evaluate_dsm -EXPORT_SYMBOL vmlinux 0xae5b14ec unregister_mii_tstamp_controller -EXPORT_SYMBOL vmlinux 0xae5ba340 param_ops_charp -EXPORT_SYMBOL vmlinux 0xae6d3fd5 simple_nosetlease -EXPORT_SYMBOL vmlinux 0xae8076b3 kernel_sendmsg -EXPORT_SYMBOL vmlinux 0xae830754 generic_remap_file_range_prep -EXPORT_SYMBOL vmlinux 0xae8bcbab ps2_end_command -EXPORT_SYMBOL vmlinux 0xae8dbf54 d_alloc_name -EXPORT_SYMBOL vmlinux 0xaea2422a __do_once_done -EXPORT_SYMBOL vmlinux 0xaea7c382 tegra_prod_set_by_name -EXPORT_SYMBOL vmlinux 0xaeac049a generate_random_guid -EXPORT_SYMBOL vmlinux 0xaeb18fa0 inet_getname -EXPORT_SYMBOL vmlinux 0xaebd12f0 acpi_get_name -EXPORT_SYMBOL vmlinux 0xaed4a651 idr_replace -EXPORT_SYMBOL vmlinux 0xaeea2bb7 dst_cow_metrics_generic -EXPORT_SYMBOL vmlinux 0xaeef6cd7 jbd2_fc_get_buf -EXPORT_SYMBOL vmlinux 0xaef89cf9 __dev_set_mtu -EXPORT_SYMBOL vmlinux 0xaf29ae59 xfrm4_protocol_register -EXPORT_SYMBOL vmlinux 0xaf2b568a udp_sendmsg -EXPORT_SYMBOL vmlinux 0xaf3dd7dc scsi_logging_level -EXPORT_SYMBOL vmlinux 0xaf56600a arm64_use_ng_mappings -EXPORT_SYMBOL vmlinux 0xaf69111b mipi_dsi_dcs_set_pixel_format -EXPORT_SYMBOL vmlinux 0xaf7b39dd xsk_clear_rx_need_wakeup -EXPORT_SYMBOL vmlinux 0xaf8a0e45 __napi_schedule -EXPORT_SYMBOL vmlinux 0xafab8df5 blk_queue_flag_set -EXPORT_SYMBOL vmlinux 0xafc08054 dotdot_name -EXPORT_SYMBOL vmlinux 0xafc5a817 input_set_max_poll_interval -EXPORT_SYMBOL vmlinux 0xaff1052c devm_request_any_context_irq -EXPORT_SYMBOL vmlinux 0xaff850c8 radix_tree_tag_clear -EXPORT_SYMBOL vmlinux 0xaffb7f7f netdev_set_sb_channel -EXPORT_SYMBOL vmlinux 0xb01b1def locks_remove_posix -EXPORT_SYMBOL vmlinux 0xb01bebf9 xfrm_get_acqseq -EXPORT_SYMBOL vmlinux 0xb02a706b phy_print_status -EXPORT_SYMBOL vmlinux 0xb04b89e1 __pagevec_release -EXPORT_SYMBOL vmlinux 0xb058ca07 dim_calc_stats -EXPORT_SYMBOL vmlinux 0xb05fc310 sysctl_rmem_max -EXPORT_SYMBOL vmlinux 0xb06a0f60 sock_no_bind -EXPORT_SYMBOL vmlinux 0xb0781335 tso_build_data -EXPORT_SYMBOL vmlinux 0xb0807c0a n_tty_ioctl_helper -EXPORT_SYMBOL vmlinux 0xb0a0da0c rational_best_approximation -EXPORT_SYMBOL vmlinux 0xb0b480dc mempool_resize -EXPORT_SYMBOL vmlinux 0xb0c3eea9 nonseekable_open -EXPORT_SYMBOL vmlinux 0xb0caca06 flow_rule_match_enc_opts -EXPORT_SYMBOL vmlinux 0xb0cca62d lockref_get_or_lock -EXPORT_SYMBOL vmlinux 0xb0dd3616 pci_ep_cfs_add_epf_group -EXPORT_SYMBOL vmlinux 0xb0e10781 get_option -EXPORT_SYMBOL vmlinux 0xb0f389ee utf8_normalize -EXPORT_SYMBOL vmlinux 0xb10e7df4 __kfifo_dma_in_prepare -EXPORT_SYMBOL vmlinux 0xb10f1d70 skb_page_frag_refill -EXPORT_SYMBOL vmlinux 0xb121390a probe_irq_on -EXPORT_SYMBOL vmlinux 0xb12cbacb fb_unregister_client -EXPORT_SYMBOL vmlinux 0xb12d4246 vfs_iter_read -EXPORT_SYMBOL vmlinux 0xb13d8f62 mdio_bus_type -EXPORT_SYMBOL vmlinux 0xb14ab1ef hdmi_audio_infoframe_init -EXPORT_SYMBOL vmlinux 0xb14fc46a find_next_clump8 -EXPORT_SYMBOL vmlinux 0xb1546616 xsk_tx_release -EXPORT_SYMBOL vmlinux 0xb15f4f5d skb_mac_gso_segment -EXPORT_SYMBOL vmlinux 0xb16a5fb8 path_has_submounts -EXPORT_SYMBOL vmlinux 0xb17b8eb1 tegra_prod_by_name_supported -EXPORT_SYMBOL vmlinux 0xb1abbfeb reuseport_stop_listen_sock -EXPORT_SYMBOL vmlinux 0xb1b1995d kernel_accept -EXPORT_SYMBOL vmlinux 0xb1bc66e5 of_node_put -EXPORT_SYMBOL vmlinux 0xb1c0ac0d xfrm4_rcv_encap -EXPORT_SYMBOL vmlinux 0xb1c21004 phy_start_cable_test -EXPORT_SYMBOL vmlinux 0xb1c3a01a oops_in_progress -EXPORT_SYMBOL vmlinux 0xb1d3a15c blk_finish_plug -EXPORT_SYMBOL vmlinux 0xb1d69bce pci_get_subsys -EXPORT_SYMBOL vmlinux 0xb1db9a69 fsl_ifc_find -EXPORT_SYMBOL vmlinux 0xb1dd2cb4 security_task_getsecid_obj -EXPORT_SYMBOL vmlinux 0xb1ddf995 jiffies_64_to_clock_t -EXPORT_SYMBOL vmlinux 0xb1f425c0 scsi_device_put -EXPORT_SYMBOL vmlinux 0xb1feddbe seq_lseek -EXPORT_SYMBOL vmlinux 0xb200212f generic_fadvise -EXPORT_SYMBOL vmlinux 0xb2002847 unload_nls -EXPORT_SYMBOL vmlinux 0xb22e16d5 radix_tree_maybe_preload -EXPORT_SYMBOL vmlinux 0xb23027c1 kstrtos16_from_user -EXPORT_SYMBOL vmlinux 0xb2335fb1 _copy_from_iter -EXPORT_SYMBOL vmlinux 0xb2488c9f eth_header_cache_update -EXPORT_SYMBOL vmlinux 0xb24e7446 md_finish_reshape -EXPORT_SYMBOL vmlinux 0xb28af000 __cleancache_get_page -EXPORT_SYMBOL vmlinux 0xb29fb1ba tcf_em_tree_dump -EXPORT_SYMBOL vmlinux 0xb2b06457 genphy_loopback -EXPORT_SYMBOL vmlinux 0xb2bcb088 acpi_current_gpe_count -EXPORT_SYMBOL vmlinux 0xb2dd8c49 pskb_expand_head -EXPORT_SYMBOL vmlinux 0xb2e7362b devm_nvmem_cell_put -EXPORT_SYMBOL vmlinux 0xb2ead97c kimage_vaddr -EXPORT_SYMBOL vmlinux 0xb2f35c6a xxh64 -EXPORT_SYMBOL vmlinux 0xb2f6c90d pcie_get_width_cap -EXPORT_SYMBOL vmlinux 0xb2fcb56d queue_delayed_work_on -EXPORT_SYMBOL vmlinux 0xb301b339 sock_register -EXPORT_SYMBOL vmlinux 0xb3032bbc simple_empty -EXPORT_SYMBOL vmlinux 0xb3064db4 of_phy_register_fixed_link -EXPORT_SYMBOL vmlinux 0xb30806d1 acpi_dev_hid_uid_match -EXPORT_SYMBOL vmlinux 0xb308c97d wait_woken -EXPORT_SYMBOL vmlinux 0xb30b9822 vme_master_set -EXPORT_SYMBOL vmlinux 0xb311d372 gen_pool_for_each_chunk -EXPORT_SYMBOL vmlinux 0xb3186544 input_set_poll_interval -EXPORT_SYMBOL vmlinux 0xb320cc0e sg_init_one -EXPORT_SYMBOL vmlinux 0xb32728bb qcom_scm_iommu_secure_ptbl_init -EXPORT_SYMBOL vmlinux 0xb33753de napi_consume_skb -EXPORT_SYMBOL vmlinux 0xb344e14a ip4_datagram_connect -EXPORT_SYMBOL vmlinux 0xb34dca1c kryo_l2_get_indirect_reg -EXPORT_SYMBOL vmlinux 0xb3687850 out_of_line_wait_on_bit_lock -EXPORT_SYMBOL vmlinux 0xb36fb7cd gen_pool_dma_zalloc -EXPORT_SYMBOL vmlinux 0xb38b6780 try_lookup_one_len -EXPORT_SYMBOL vmlinux 0xb3a82019 profile_pc -EXPORT_SYMBOL vmlinux 0xb3a9156e file_open_root -EXPORT_SYMBOL vmlinux 0xb3bd68cc security_secmark_relabel_packet -EXPORT_SYMBOL vmlinux 0xb3d2c76d scsi_hostbyte_string -EXPORT_SYMBOL vmlinux 0xb3f49446 kstrtos8_from_user -EXPORT_SYMBOL vmlinux 0xb3f548ad kmemdup_nul -EXPORT_SYMBOL vmlinux 0xb3f7646e kthread_should_stop -EXPORT_SYMBOL vmlinux 0xb3fa02e1 tegra_dfll_runtime_resume -EXPORT_SYMBOL vmlinux 0xb4043948 acpi_execute_simple_method -EXPORT_SYMBOL vmlinux 0xb422cc0b neigh_connected_output -EXPORT_SYMBOL vmlinux 0xb423dba1 console_blanked -EXPORT_SYMBOL vmlinux 0xb42b6044 mptcp_subflow_reqsk_alloc -EXPORT_SYMBOL vmlinux 0xb42e112c blk_queue_flag_clear -EXPORT_SYMBOL vmlinux 0xb4318602 d_delete -EXPORT_SYMBOL vmlinux 0xb442ddff inet_proto_csum_replace16 -EXPORT_SYMBOL vmlinux 0xb450f9f7 peernet2id -EXPORT_SYMBOL vmlinux 0xb4577003 acpi_dev_present -EXPORT_SYMBOL vmlinux 0xb45d4854 serial8250_do_pm -EXPORT_SYMBOL vmlinux 0xb46da8be input_get_keycode -EXPORT_SYMBOL vmlinux 0xb47329b6 xfrm_unregister_type_offload -EXPORT_SYMBOL vmlinux 0xb47997ff pci_read_config_byte -EXPORT_SYMBOL vmlinux 0xb4884c4c mmc_retune_release -EXPORT_SYMBOL vmlinux 0xb48d4d22 security_sb_eat_lsm_opts -EXPORT_SYMBOL vmlinux 0xb4b84938 bioset_exit -EXPORT_SYMBOL vmlinux 0xb4befb16 mipi_dsi_device_register_full -EXPORT_SYMBOL vmlinux 0xb4c5c5af vme_new_dma_list -EXPORT_SYMBOL vmlinux 0xb4f13d2a abort -EXPORT_SYMBOL vmlinux 0xb4fa691a dmaenginem_async_device_register -EXPORT_SYMBOL vmlinux 0xb518fae3 t10_pi_type1_crc -EXPORT_SYMBOL vmlinux 0xb52478d6 xfrm6_rcv_tnl -EXPORT_SYMBOL vmlinux 0xb539bc17 simple_dir_operations -EXPORT_SYMBOL vmlinux 0xb53f2810 tcp_sockets_allocated -EXPORT_SYMBOL vmlinux 0xb5437623 __neigh_create -EXPORT_SYMBOL vmlinux 0xb54e417d param_set_short -EXPORT_SYMBOL vmlinux 0xb5503faa sock_alloc_send_pskb -EXPORT_SYMBOL vmlinux 0xb5555ec0 simple_get_link -EXPORT_SYMBOL vmlinux 0xb568b25f __remove_inode_hash -EXPORT_SYMBOL vmlinux 0xb570e9d9 regset_get_alloc -EXPORT_SYMBOL vmlinux 0xb57343c2 frontswap_shrink -EXPORT_SYMBOL vmlinux 0xb57f1e27 fman_port_disable -EXPORT_SYMBOL vmlinux 0xb5809eb0 filp_close -EXPORT_SYMBOL vmlinux 0xb5835c76 devm_request_resource -EXPORT_SYMBOL vmlinux 0xb58aeaab kernel_cpustat -EXPORT_SYMBOL vmlinux 0xb58bda5c ethtool_op_get_link -EXPORT_SYMBOL vmlinux 0xb596e30b __nla_reserve_64bit -EXPORT_SYMBOL vmlinux 0xb59707eb skb_tx_error -EXPORT_SYMBOL vmlinux 0xb5a0418a user_path_at_empty -EXPORT_SYMBOL vmlinux 0xb5a459dc unregister_blkdev -EXPORT_SYMBOL vmlinux 0xb5a8edeb xa_get_mark -EXPORT_SYMBOL vmlinux 0xb5aa7165 dma_pool_destroy -EXPORT_SYMBOL vmlinux 0xb5b0a75d wait_on_page_bit -EXPORT_SYMBOL vmlinux 0xb5b63711 fileattr_fill_xflags -EXPORT_SYMBOL vmlinux 0xb5c293c4 dev_base_lock -EXPORT_SYMBOL vmlinux 0xb5c50411 xfrm_trans_queue -EXPORT_SYMBOL vmlinux 0xb5e73116 flush_delayed_work -EXPORT_SYMBOL vmlinux 0xb5efb244 rproc_free -EXPORT_SYMBOL vmlinux 0xb5f65241 devm_backlight_device_register -EXPORT_SYMBOL vmlinux 0xb609a475 read_cache_page -EXPORT_SYMBOL vmlinux 0xb60b2ae1 ipv6_chk_prefix -EXPORT_SYMBOL vmlinux 0xb633f115 irq_poll_enable -EXPORT_SYMBOL vmlinux 0xb654ef65 acpi_os_read_port -EXPORT_SYMBOL vmlinux 0xb65cd34d netdev_name_node_alt_create -EXPORT_SYMBOL vmlinux 0xb6687a87 tty_wait_until_sent -EXPORT_SYMBOL vmlinux 0xb678366f int_sqrt -EXPORT_SYMBOL vmlinux 0xb67934cf sock_no_socketpair -EXPORT_SYMBOL vmlinux 0xb67c9280 utf8cursor -EXPORT_SYMBOL vmlinux 0xb67fec0e uuid_parse -EXPORT_SYMBOL vmlinux 0xb6901e54 mroute6_is_socket -EXPORT_SYMBOL vmlinux 0xb690913e netif_set_real_num_rx_queues -EXPORT_SYMBOL vmlinux 0xb6936ffe _bcd2bin -EXPORT_SYMBOL vmlinux 0xb6a1c505 get_tree_bdev -EXPORT_SYMBOL vmlinux 0xb6acaa13 phy_sfp_detach -EXPORT_SYMBOL vmlinux 0xb6b9a5f5 mipi_dsi_dcs_set_tear_off -EXPORT_SYMBOL vmlinux 0xb6e36ce2 psched_ratecfg_precompute -EXPORT_SYMBOL vmlinux 0xb6f192c5 jbd2_complete_transaction -EXPORT_SYMBOL vmlinux 0xb6fde909 close_fd -EXPORT_SYMBOL vmlinux 0xb70398da phy_attach -EXPORT_SYMBOL vmlinux 0xb70cce70 jbd2_journal_destroy -EXPORT_SYMBOL vmlinux 0xb71589f0 skip_spaces -EXPORT_SYMBOL vmlinux 0xb71d15be genphy_read_status -EXPORT_SYMBOL vmlinux 0xb71ed69f __hw_addr_unsync -EXPORT_SYMBOL vmlinux 0xb7233094 gen_pool_destroy -EXPORT_SYMBOL vmlinux 0xb724acf2 xp_free -EXPORT_SYMBOL vmlinux 0xb7326813 neigh_seq_start -EXPORT_SYMBOL vmlinux 0xb74389ac ip_fraglist_prepare -EXPORT_SYMBOL vmlinux 0xb746f294 request_firmware -EXPORT_SYMBOL vmlinux 0xb74d5e31 kmem_cache_alloc_bulk -EXPORT_SYMBOL vmlinux 0xb758c063 unregister_netdevice_notifier_net -EXPORT_SYMBOL vmlinux 0xb761546d param_get_ushort -EXPORT_SYMBOL vmlinux 0xb7688155 ucc_slow_init -EXPORT_SYMBOL vmlinux 0xb784154f utf8_casefold_hash -EXPORT_SYMBOL vmlinux 0xb788fb30 gic_pmr_sync -EXPORT_SYMBOL vmlinux 0xb78ab22c pci_dev_put -EXPORT_SYMBOL vmlinux 0xb78debe3 LZ4_decompress_fast_usingDict -EXPORT_SYMBOL vmlinux 0xb7a3305d of_find_mipi_dsi_device_by_node -EXPORT_SYMBOL vmlinux 0xb7a57447 skb_copy_datagram_iter -EXPORT_SYMBOL vmlinux 0xb7aa8a1f __udp_disconnect -EXPORT_SYMBOL vmlinux 0xb7adbe2f of_find_compatible_node -EXPORT_SYMBOL vmlinux 0xb7ae65eb napi_enable -EXPORT_SYMBOL vmlinux 0xb7b7fa6e node_states -EXPORT_SYMBOL vmlinux 0xb7c0f443 sort -EXPORT_SYMBOL vmlinux 0xb7c6db70 sysctl_max_skb_frags -EXPORT_SYMBOL vmlinux 0xb7c7ff87 deactivate_super -EXPORT_SYMBOL vmlinux 0xb7cf8732 dquot_quota_on_mount -EXPORT_SYMBOL vmlinux 0xb7e3cb08 netdev_crit -EXPORT_SYMBOL vmlinux 0xb7e51928 kernel_bind -EXPORT_SYMBOL vmlinux 0xb8127333 inetpeer_invalidate_tree -EXPORT_SYMBOL vmlinux 0xb820e5b3 register_cdrom -EXPORT_SYMBOL vmlinux 0xb82986b2 neigh_table_clear -EXPORT_SYMBOL vmlinux 0xb83129db ZSTD_decompressContinue -EXPORT_SYMBOL vmlinux 0xb83573fa eth_type_trans -EXPORT_SYMBOL vmlinux 0xb842716c qcom_scm_ocmem_lock_available -EXPORT_SYMBOL vmlinux 0xb846adb7 devm_ioremap_resource -EXPORT_SYMBOL vmlinux 0xb8605d9c qman_p_static_dequeue_add -EXPORT_SYMBOL vmlinux 0xb86664ad pipe_lock -EXPORT_SYMBOL vmlinux 0xb868ac5c register_sysrq_key -EXPORT_SYMBOL vmlinux 0xb868b2fb to_nd_dax -EXPORT_SYMBOL vmlinux 0xb873677c pnp_register_card_driver -EXPORT_SYMBOL vmlinux 0xb8890a47 gen_pool_has_addr -EXPORT_SYMBOL vmlinux 0xb89b6e6b guid_parse -EXPORT_SYMBOL vmlinux 0xb89ffa12 noop_llseek -EXPORT_SYMBOL vmlinux 0xb8af6298 vfs_get_link -EXPORT_SYMBOL vmlinux 0xb8b043f2 kfree_link -EXPORT_SYMBOL vmlinux 0xb8b9f817 kmalloc_order_trace -EXPORT_SYMBOL vmlinux 0xb8c158c0 end_buffer_write_sync -EXPORT_SYMBOL vmlinux 0xb8de80e3 of_get_next_cpu_node -EXPORT_SYMBOL vmlinux 0xb8e3af2c phy_ethtool_set_link_ksettings -EXPORT_SYMBOL vmlinux 0xb8f5c633 filemap_fdatawrite_range -EXPORT_SYMBOL vmlinux 0xb900ecc4 rtnl_notify -EXPORT_SYMBOL vmlinux 0xb9056bb6 remove_conflicting_framebuffers -EXPORT_SYMBOL vmlinux 0xb907513f unpoison_memory -EXPORT_SYMBOL vmlinux 0xb911bb58 minmax_running_max -EXPORT_SYMBOL vmlinux 0xb91d4fde sync_file_create -EXPORT_SYMBOL vmlinux 0xb92ebc94 vme_init_bridge -EXPORT_SYMBOL vmlinux 0xb92f1d70 nvdimm_namespace_common_probe -EXPORT_SYMBOL vmlinux 0xb94339c4 qdisc_put_stab -EXPORT_SYMBOL vmlinux 0xb9478d90 hdmi_drm_infoframe_unpack_only -EXPORT_SYMBOL vmlinux 0xb950505a simple_rmdir -EXPORT_SYMBOL vmlinux 0xb955e415 __dynamic_ibdev_dbg -EXPORT_SYMBOL vmlinux 0xb96d29e3 setup_arg_pages -EXPORT_SYMBOL vmlinux 0xb96dbb92 rtc_add_groups -EXPORT_SYMBOL vmlinux 0xb97220ff bitmap_parse -EXPORT_SYMBOL vmlinux 0xb9756e6e max8925_bulk_read -EXPORT_SYMBOL vmlinux 0xb9951f9a of_find_node_by_phandle -EXPORT_SYMBOL vmlinux 0xb99fd96a get_fs_type -EXPORT_SYMBOL vmlinux 0xb9af0338 skb_set_owner_w -EXPORT_SYMBOL vmlinux 0xb9b09bf8 pagecache_write_end -EXPORT_SYMBOL vmlinux 0xb9b94bd0 refcount_dec_and_lock_irqsave -EXPORT_SYMBOL vmlinux 0xb9dc3102 tag_pages_for_writeback -EXPORT_SYMBOL vmlinux 0xb9dccffa dev_remove_offload -EXPORT_SYMBOL vmlinux 0xb9de1ea1 unregister_shrinker -EXPORT_SYMBOL vmlinux 0xb9e8e2cc in6addr_sitelocal_allrouters -EXPORT_SYMBOL vmlinux 0xb9edc927 of_count_phandle_with_args -EXPORT_SYMBOL vmlinux 0xb9f92444 of_find_i2c_device_by_node -EXPORT_SYMBOL vmlinux 0xb9fc381a qcom_scm_hdcp_req -EXPORT_SYMBOL vmlinux 0xba0676e2 vm_zone_stat -EXPORT_SYMBOL vmlinux 0xba1008c8 __crc32c_le -EXPORT_SYMBOL vmlinux 0xba1f4810 dquot_load_quota_inode -EXPORT_SYMBOL vmlinux 0xba3dee7f of_get_compatible_child -EXPORT_SYMBOL vmlinux 0xba456971 security_d_instantiate -EXPORT_SYMBOL vmlinux 0xba48c6e3 ilookup5 -EXPORT_SYMBOL vmlinux 0xba4903f2 nd_region_release_lane -EXPORT_SYMBOL vmlinux 0xba497f13 loops_per_jiffy -EXPORT_SYMBOL vmlinux 0xba4e545e cdev_del -EXPORT_SYMBOL vmlinux 0xba53adab nla_policy_len -EXPORT_SYMBOL vmlinux 0xba707a78 qe_get_brg_clk -EXPORT_SYMBOL vmlinux 0xba796043 security_sctp_assoc_request -EXPORT_SYMBOL vmlinux 0xba7a00bd get_user_pages_remote -EXPORT_SYMBOL vmlinux 0xba7ffd53 proc_dostring -EXPORT_SYMBOL vmlinux 0xba85394a rt_spin_trylock -EXPORT_SYMBOL vmlinux 0xba8fbd64 _raw_spin_lock -EXPORT_SYMBOL vmlinux 0xba904221 md_bitmap_free -EXPORT_SYMBOL vmlinux 0xba9dd9a8 cdev_init -EXPORT_SYMBOL vmlinux 0xbacf49de jbd2_journal_force_commit_nested -EXPORT_SYMBOL vmlinux 0xbad0be1a netif_rx -EXPORT_SYMBOL vmlinux 0xbad1a266 jbd2_journal_invalidatepage -EXPORT_SYMBOL vmlinux 0xbadf7aa3 genphy_restart_aneg -EXPORT_SYMBOL vmlinux 0xbb0540aa zlib_inflateReset -EXPORT_SYMBOL vmlinux 0xbb21260e convert_ifc_address -EXPORT_SYMBOL vmlinux 0xbb24f607 init_cdrom_command -EXPORT_SYMBOL vmlinux 0xbb2522f2 sock_dequeue_err_skb -EXPORT_SYMBOL vmlinux 0xbb35675b __bitmap_intersects -EXPORT_SYMBOL vmlinux 0xbb4f4766 simple_write_to_buffer -EXPORT_SYMBOL vmlinux 0xbb59d18a __scsi_device_lookup -EXPORT_SYMBOL vmlinux 0xbb687724 bman_new_pool -EXPORT_SYMBOL vmlinux 0xbb7287d0 tcf_exts_change -EXPORT_SYMBOL vmlinux 0xbb74b8ce netif_rx_any_context -EXPORT_SYMBOL vmlinux 0xbb825dfc sk_ns_capable -EXPORT_SYMBOL vmlinux 0xbb8df5d1 pci_dev_driver -EXPORT_SYMBOL vmlinux 0xbb8e3666 mpage_readpage -EXPORT_SYMBOL vmlinux 0xbb915525 flow_block_cb_free -EXPORT_SYMBOL vmlinux 0xbbd6ac8d __netlink_ns_capable -EXPORT_SYMBOL vmlinux 0xbbe0ef1d tcp_gro_complete -EXPORT_SYMBOL vmlinux 0xbbe80fdb kmalloc_order -EXPORT_SYMBOL vmlinux 0xbbf918d7 trace_event_printf -EXPORT_SYMBOL vmlinux 0xbc0ba30b neigh_proc_dointvec -EXPORT_SYMBOL vmlinux 0xbc2031de acpi_processor_get_bios_limit -EXPORT_SYMBOL vmlinux 0xbc40d2ec pci_bus_alloc_resource -EXPORT_SYMBOL vmlinux 0xbc4cfae7 __bread_gfp -EXPORT_SYMBOL vmlinux 0xbc5d06c2 tcf_exts_validate -EXPORT_SYMBOL vmlinux 0xbc6ab985 kernel_read -EXPORT_SYMBOL vmlinux 0xbc73e93c __netif_schedule -EXPORT_SYMBOL vmlinux 0xbc87412a elv_rb_former_request -EXPORT_SYMBOL vmlinux 0xbc8c2855 pcie_capability_clear_and_set_word -EXPORT_SYMBOL vmlinux 0xbcab6ee6 sscanf -EXPORT_SYMBOL vmlinux 0xbcb00001 skb_queue_tail -EXPORT_SYMBOL vmlinux 0xbcbceb84 blk_queue_chunk_sectors -EXPORT_SYMBOL vmlinux 0xbcc6844f bio_uninit -EXPORT_SYMBOL vmlinux 0xbcd4ccc6 netdev_upper_dev_link -EXPORT_SYMBOL vmlinux 0xbcd8d838 read_cache_pages -EXPORT_SYMBOL vmlinux 0xbcde3ff8 blk_queue_physical_block_size -EXPORT_SYMBOL vmlinux 0xbd011fd7 xp_raw_get_dma -EXPORT_SYMBOL vmlinux 0xbd0bcf2a fs_lookup_param -EXPORT_SYMBOL vmlinux 0xbd0f86cf inet_rcv_saddr_equal -EXPORT_SYMBOL vmlinux 0xbd1241e0 con_is_visible -EXPORT_SYMBOL vmlinux 0xbd148a71 jbd2_journal_load -EXPORT_SYMBOL vmlinux 0xbd1a910f gnet_stats_copy_app -EXPORT_SYMBOL vmlinux 0xbd20096d cros_ec_query_all -EXPORT_SYMBOL vmlinux 0xbd2d86c4 blk_mq_end_request -EXPORT_SYMBOL vmlinux 0xbd3dacef alloc_file_pseudo -EXPORT_SYMBOL vmlinux 0xbd438fd0 no_seek_end_llseek -EXPORT_SYMBOL vmlinux 0xbd445767 file_ns_capable -EXPORT_SYMBOL vmlinux 0xbd462b55 __kfifo_init -EXPORT_SYMBOL vmlinux 0xbd59e73a input_inject_event -EXPORT_SYMBOL vmlinux 0xbd628752 __tracepoint_mmap_lock_start_locking -EXPORT_SYMBOL vmlinux 0xbd6841d4 crc16 -EXPORT_SYMBOL vmlinux 0xbd85aeaa __register_nls -EXPORT_SYMBOL vmlinux 0xbd90448e serio_interrupt -EXPORT_SYMBOL vmlinux 0xbd90c521 seq_dentry -EXPORT_SYMBOL vmlinux 0xbda67f0b blk_mq_init_allocated_queue -EXPORT_SYMBOL vmlinux 0xbdbab1ff netpoll_poll_disable -EXPORT_SYMBOL vmlinux 0xbdbcc5bc cdrom_check_events -EXPORT_SYMBOL vmlinux 0xbdc39dd4 skb_push -EXPORT_SYMBOL vmlinux 0xbdc5cd6e to_nd_btt -EXPORT_SYMBOL vmlinux 0xbdcf5245 tcp_release_cb -EXPORT_SYMBOL vmlinux 0xbddc42a3 flow_rule_match_enc_keyid -EXPORT_SYMBOL vmlinux 0xbde144f5 key_reject_and_link -EXPORT_SYMBOL vmlinux 0xbde80f9c neigh_xmit -EXPORT_SYMBOL vmlinux 0xbe118c52 __tracepoint_mmap_lock_acquire_returned -EXPORT_SYMBOL vmlinux 0xbe1427af __printk_cpu_unlock -EXPORT_SYMBOL vmlinux 0xbe2733d1 kmem_cache_shrink -EXPORT_SYMBOL vmlinux 0xbe3d2521 skb_copy_and_csum_dev -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 0xbe5c6646 md_cluster_ops -EXPORT_SYMBOL vmlinux 0xbe7e05a8 acpi_tb_install_and_load_table -EXPORT_SYMBOL vmlinux 0xbe9d17be md_register_thread -EXPORT_SYMBOL vmlinux 0xbeb97465 d_genocide -EXPORT_SYMBOL vmlinux 0xbed7b7dd padata_free -EXPORT_SYMBOL vmlinux 0xbedd4d4e phy_ethtool_set_wol -EXPORT_SYMBOL vmlinux 0xbedf11f1 kthread_bind -EXPORT_SYMBOL vmlinux 0xbef43296 console_conditional_schedule -EXPORT_SYMBOL vmlinux 0xbf278486 mdiobus_write -EXPORT_SYMBOL vmlinux 0xbf36f2ab netdev_master_upper_dev_get_rcu -EXPORT_SYMBOL vmlinux 0xbf508dc1 mipi_dsi_picture_parameter_set -EXPORT_SYMBOL vmlinux 0xbf59c419 posix_acl_init -EXPORT_SYMBOL vmlinux 0xbf5f8a64 simple_open -EXPORT_SYMBOL vmlinux 0xbf74b854 scsi_mode_sense -EXPORT_SYMBOL vmlinux 0xbf74fada device_add_disk -EXPORT_SYMBOL vmlinux 0xbf8afac5 pfifo_fast_ops -EXPORT_SYMBOL vmlinux 0xbf9a498b param_set_ullong -EXPORT_SYMBOL vmlinux 0xbf9bcc8d __cap_empty_set -EXPORT_SYMBOL vmlinux 0xbfa47ae3 iw_handler_get_thrspy -EXPORT_SYMBOL vmlinux 0xbfa6dc35 mmc_can_erase -EXPORT_SYMBOL vmlinux 0xbfab76e9 mark_buffer_write_io_error -EXPORT_SYMBOL vmlinux 0xbfac6bbc input_release_device -EXPORT_SYMBOL vmlinux 0xbfbbbf60 generic_file_write_iter -EXPORT_SYMBOL vmlinux 0xbfcb9ad2 kobject_put -EXPORT_SYMBOL vmlinux 0xbfcbc0d2 stmp_reset_block -EXPORT_SYMBOL vmlinux 0xbfe2b5d5 tcf_action_check_ctrlact -EXPORT_SYMBOL vmlinux 0xbfee3ad5 loop_unregister_transfer -EXPORT_SYMBOL vmlinux 0xbff6cd70 register_qdisc -EXPORT_SYMBOL vmlinux 0xbffe474f dquot_quota_sync -EXPORT_SYMBOL vmlinux 0xc0214a75 scsi_report_device_reset -EXPORT_SYMBOL vmlinux 0xc0364007 fault_in_writeable -EXPORT_SYMBOL vmlinux 0xc03fc65f netif_set_real_num_tx_queues -EXPORT_SYMBOL vmlinux 0xc0466c24 vfs_mkdir -EXPORT_SYMBOL vmlinux 0xc050496d register_filesystem -EXPORT_SYMBOL vmlinux 0xc05f4856 mmc_can_gpio_cd -EXPORT_SYMBOL vmlinux 0xc0763484 rfkill_blocked -EXPORT_SYMBOL vmlinux 0xc07b0863 fb_destroy_modedb -EXPORT_SYMBOL vmlinux 0xc0970ad5 register_quota_format -EXPORT_SYMBOL vmlinux 0xc0aa2578 gen_pool_dma_alloc_align -EXPORT_SYMBOL vmlinux 0xc0afb5d7 cgroup_bpf_enabled_key -EXPORT_SYMBOL vmlinux 0xc0b2664d devlink_dpipe_header_ipv4 -EXPORT_SYMBOL vmlinux 0xc0b99062 elv_rb_add -EXPORT_SYMBOL vmlinux 0xc0bca0f1 ZSTD_nextSrcSizeToDecompress -EXPORT_SYMBOL vmlinux 0xc0be0996 sock_kmalloc -EXPORT_SYMBOL vmlinux 0xc0c48b8f __devm_of_mdiobus_register -EXPORT_SYMBOL vmlinux 0xc0c9f1c4 serio_open -EXPORT_SYMBOL vmlinux 0xc0ce44d5 blkdev_get_by_dev -EXPORT_SYMBOL vmlinux 0xc0cf034e __devm_request_region -EXPORT_SYMBOL vmlinux 0xc0eaa8d3 key_link -EXPORT_SYMBOL vmlinux 0xc0ff12fb nla_strdup -EXPORT_SYMBOL vmlinux 0xc0ff21c1 input_get_new_minor -EXPORT_SYMBOL vmlinux 0xc11ef90b dma_fence_array_create -EXPORT_SYMBOL vmlinux 0xc13428fe dquot_commit -EXPORT_SYMBOL vmlinux 0xc136d181 blk_queue_alignment_offset -EXPORT_SYMBOL vmlinux 0xc145c092 gen_pool_fixed_alloc -EXPORT_SYMBOL vmlinux 0xc1465e5a vfs_fileattr_get -EXPORT_SYMBOL vmlinux 0xc14dc168 acpi_get_data -EXPORT_SYMBOL vmlinux 0xc1514a3b free_irq -EXPORT_SYMBOL vmlinux 0xc1571f5d nf_ct_get_tuple_skb -EXPORT_SYMBOL vmlinux 0xc1579516 fman_port_enable -EXPORT_SYMBOL vmlinux 0xc15d3370 scsi_track_queue_full -EXPORT_SYMBOL vmlinux 0xc16410b9 ZSTD_getDictID_fromDDict -EXPORT_SYMBOL vmlinux 0xc164a51c keygen_init -EXPORT_SYMBOL vmlinux 0xc16be39d iter_div_u64_rem -EXPORT_SYMBOL vmlinux 0xc178d178 block_invalidatepage -EXPORT_SYMBOL vmlinux 0xc17e0047 fwnode_get_mac_address -EXPORT_SYMBOL vmlinux 0xc1825d01 vfs_readlink -EXPORT_SYMBOL vmlinux 0xc1c16b99 netdev_has_upper_dev -EXPORT_SYMBOL vmlinux 0xc1d5d504 scsi_cmd_allowed -EXPORT_SYMBOL vmlinux 0xc1d746eb __cpuhp_setup_state_cpuslocked -EXPORT_SYMBOL vmlinux 0xc1d8cfaf __fdget -EXPORT_SYMBOL vmlinux 0xc1dd7af8 blk_mq_run_hw_queues -EXPORT_SYMBOL vmlinux 0xc1df42bf flow_rule_match_enc_ip -EXPORT_SYMBOL vmlinux 0xc1e2c742 tegra_io_rail_power_on -EXPORT_SYMBOL vmlinux 0xc1f1c613 nlmsg_notify -EXPORT_SYMBOL vmlinux 0xc2050974 fman_port_get_tstamp -EXPORT_SYMBOL vmlinux 0xc2090a79 dev_activate -EXPORT_SYMBOL vmlinux 0xc20e0379 import_iovec -EXPORT_SYMBOL vmlinux 0xc21f5730 begin_new_exec -EXPORT_SYMBOL vmlinux 0xc22e3a1d ip6_fraglist_prepare -EXPORT_SYMBOL vmlinux 0xc2310cdc logic_inl -EXPORT_SYMBOL vmlinux 0xc2399fa0 pci_wait_for_pending_transaction -EXPORT_SYMBOL vmlinux 0xc24676c7 dev_set_mtu -EXPORT_SYMBOL vmlinux 0xc246c659 inet_sk_rebuild_header -EXPORT_SYMBOL vmlinux 0xc267960e utf8_validate -EXPORT_SYMBOL vmlinux 0xc290b8b1 pagecache_get_page -EXPORT_SYMBOL vmlinux 0xc2954da0 qdisc_warn_nonwc -EXPORT_SYMBOL vmlinux 0xc29bf967 strspn -EXPORT_SYMBOL vmlinux 0xc2b7a98d nf_getsockopt -EXPORT_SYMBOL vmlinux 0xc2d05a01 generic_writepages -EXPORT_SYMBOL vmlinux 0xc2e168ab caches_clean_inval_pou -EXPORT_SYMBOL vmlinux 0xc2e587d1 reset_devices -EXPORT_SYMBOL vmlinux 0xc2f10c71 pm860x_bulk_write -EXPORT_SYMBOL vmlinux 0xc2f11eac meson_sm_call_read -EXPORT_SYMBOL vmlinux 0xc2f52274 __lshrti3 -EXPORT_SYMBOL vmlinux 0xc3055d20 usleep_range_state -EXPORT_SYMBOL vmlinux 0xc30d0911 tty_port_open -EXPORT_SYMBOL vmlinux 0xc310b981 strnstr -EXPORT_SYMBOL vmlinux 0xc31db0ce is_vmalloc_addr -EXPORT_SYMBOL vmlinux 0xc320ca89 mempool_init_node -EXPORT_SYMBOL vmlinux 0xc32c71af register_inetaddr_validator_notifier -EXPORT_SYMBOL vmlinux 0xc331b838 netdev_has_upper_dev_all_rcu -EXPORT_SYMBOL vmlinux 0xc3365d4f mdiobus_register_device -EXPORT_SYMBOL vmlinux 0xc367330c ip_sock_set_mtu_discover -EXPORT_SYMBOL vmlinux 0xc36a3bd4 __acpi_handle_debug -EXPORT_SYMBOL vmlinux 0xc36aa1bf tcp_v4_connect -EXPORT_SYMBOL vmlinux 0xc36d7e76 blkdev_issue_discard -EXPORT_SYMBOL vmlinux 0xc3745249 __insert_inode_hash -EXPORT_SYMBOL vmlinux 0xc37f9c6e cpufreq_update_policy -EXPORT_SYMBOL vmlinux 0xc38b4421 scm_detach_fds -EXPORT_SYMBOL vmlinux 0xc38c83b8 mod_timer -EXPORT_SYMBOL vmlinux 0xc38d7347 write_dirty_buffer -EXPORT_SYMBOL vmlinux 0xc3968024 tcp_hashinfo -EXPORT_SYMBOL vmlinux 0xc3bbf8f4 kfree_skb_partial -EXPORT_SYMBOL vmlinux 0xc3bc72ad trace_print_array_seq -EXPORT_SYMBOL vmlinux 0xc3cd034d crc8_populate_lsb -EXPORT_SYMBOL vmlinux 0xc4117058 simple_unlink -EXPORT_SYMBOL vmlinux 0xc41bc980 iwe_stream_add_value -EXPORT_SYMBOL vmlinux 0xc4212ab9 qdisc_class_hash_insert -EXPORT_SYMBOL vmlinux 0xc421a269 amba_find_device -EXPORT_SYMBOL vmlinux 0xc42dcb99 acpi_evaluate_ost -EXPORT_SYMBOL vmlinux 0xc4347fd4 mutex_unlock -EXPORT_SYMBOL vmlinux 0xc44f2944 ip6_err_gen_icmpv6_unreach -EXPORT_SYMBOL vmlinux 0xc45190c7 vfs_mknod -EXPORT_SYMBOL vmlinux 0xc4606834 ihold -EXPORT_SYMBOL vmlinux 0xc4708199 cpm_muram_addr -EXPORT_SYMBOL vmlinux 0xc4777aa9 __ctzsi2 -EXPORT_SYMBOL vmlinux 0xc4b21d2f qman_get_affine_portal -EXPORT_SYMBOL vmlinux 0xc4b24125 pnp_start_dev -EXPORT_SYMBOL vmlinux 0xc4b42875 dma_async_device_register -EXPORT_SYMBOL vmlinux 0xc4b5b89c input_unregister_handle -EXPORT_SYMBOL vmlinux 0xc4b84dbb dquot_transfer -EXPORT_SYMBOL vmlinux 0xc4d2b733 blk_mq_tag_to_rq -EXPORT_SYMBOL vmlinux 0xc4eb817f skb_dequeue_tail -EXPORT_SYMBOL vmlinux 0xc4ec1634 read_cache_page_gfp -EXPORT_SYMBOL vmlinux 0xc4f0449f pps_event -EXPORT_SYMBOL vmlinux 0xc4f28335 register_shrinker -EXPORT_SYMBOL vmlinux 0xc4f8cdd7 dma_set_coherent_mask -EXPORT_SYMBOL vmlinux 0xc500933f ipv6_select_ident -EXPORT_SYMBOL vmlinux 0xc500a64a mr_dump -EXPORT_SYMBOL vmlinux 0xc5018eb8 max8925_reg_write -EXPORT_SYMBOL vmlinux 0xc50b6611 of_xudma_dev_get -EXPORT_SYMBOL vmlinux 0xc510ff0d dev_mc_del_global -EXPORT_SYMBOL vmlinux 0xc511f517 tegra_prod_set_list -EXPORT_SYMBOL vmlinux 0xc518d759 address_space_init_once -EXPORT_SYMBOL vmlinux 0xc518e230 rproc_vq_interrupt -EXPORT_SYMBOL vmlinux 0xc5271192 inet_csk_clear_xmit_timers -EXPORT_SYMBOL vmlinux 0xc52c2485 dcb_ieee_getapp_dscp_prio_mask_map -EXPORT_SYMBOL vmlinux 0xc52f3ae9 shrink_dcache_parent -EXPORT_SYMBOL vmlinux 0xc5307579 jbd2_journal_clear_err -EXPORT_SYMBOL vmlinux 0xc5313a7a scsi_partsize -EXPORT_SYMBOL vmlinux 0xc5324e7e memory_cgrp_subsys -EXPORT_SYMBOL vmlinux 0xc535d5b9 ip6_output -EXPORT_SYMBOL vmlinux 0xc54195b5 fwnode_graph_parse_endpoint -EXPORT_SYMBOL vmlinux 0xc55b59ba unpin_user_page_range_dirty_lock -EXPORT_SYMBOL vmlinux 0xc55f6b4c vme_dma_list_exec -EXPORT_SYMBOL vmlinux 0xc56a41e6 vabits_actual -EXPORT_SYMBOL vmlinux 0xc58d5a90 kstrtoll_from_user -EXPORT_SYMBOL vmlinux 0xc58ff6d7 finish_wait -EXPORT_SYMBOL vmlinux 0xc599a772 security_xfrm_state_delete -EXPORT_SYMBOL vmlinux 0xc5a134a3 __serio_register_driver -EXPORT_SYMBOL vmlinux 0xc5a3367a __tracepoint_dma_fence_emit -EXPORT_SYMBOL vmlinux 0xc5a888f8 phy_ethtool_get_strings -EXPORT_SYMBOL vmlinux 0xc5ad1a37 rtnl_link_get_net -EXPORT_SYMBOL vmlinux 0xc5b6f236 queue_work_on -EXPORT_SYMBOL vmlinux 0xc5c8fda8 gen_pool_add_owner -EXPORT_SYMBOL vmlinux 0xc5e74216 release_resource -EXPORT_SYMBOL vmlinux 0xc5f7e801 sg_last -EXPORT_SYMBOL vmlinux 0xc60d0620 __num_online_cpus -EXPORT_SYMBOL vmlinux 0xc62629e5 __pskb_copy_fclone -EXPORT_SYMBOL vmlinux 0xc631580a console_unlock -EXPORT_SYMBOL vmlinux 0xc633d82d phy_unregister_fixup -EXPORT_SYMBOL vmlinux 0xc638f7ba twl6040_get_vibralr_status -EXPORT_SYMBOL vmlinux 0xc63a140e __nlmsg_put -EXPORT_SYMBOL vmlinux 0xc63df404 pci_clear_mwi -EXPORT_SYMBOL vmlinux 0xc64a5baa xfrm_trans_queue_net -EXPORT_SYMBOL vmlinux 0xc6585478 vfs_dup_fs_context -EXPORT_SYMBOL vmlinux 0xc65e4e97 secure_dccp_sequence_number -EXPORT_SYMBOL vmlinux 0xc666a132 crc_t10dif -EXPORT_SYMBOL vmlinux 0xc66a8304 cpu_rmap_add -EXPORT_SYMBOL vmlinux 0xc688689c md_error -EXPORT_SYMBOL vmlinux 0xc68dd793 vfs_get_tree -EXPORT_SYMBOL vmlinux 0xc69fce52 qcom_scm_qsmmu500_wait_safe_toggle -EXPORT_SYMBOL vmlinux 0xc6a95c3e d_lookup -EXPORT_SYMBOL vmlinux 0xc6bd1c80 sock_recv_errqueue -EXPORT_SYMBOL vmlinux 0xc6bec7c3 inc_nlink -EXPORT_SYMBOL vmlinux 0xc6cb465a __kfifo_max_r -EXPORT_SYMBOL vmlinux 0xc6cbbc89 capable -EXPORT_SYMBOL vmlinux 0xc6cff752 scsi_eh_restore_cmnd -EXPORT_SYMBOL vmlinux 0xc6d01b74 migrate_vma_pages -EXPORT_SYMBOL vmlinux 0xc6d09aa9 release_firmware -EXPORT_SYMBOL vmlinux 0xc6e4e213 tcf_idr_check_alloc -EXPORT_SYMBOL vmlinux 0xc6f3b3fc refcount_dec_if_one -EXPORT_SYMBOL vmlinux 0xc6f46339 init_timer_key -EXPORT_SYMBOL vmlinux 0xc708f1fe ec_write -EXPORT_SYMBOL vmlinux 0xc70b0bd6 devm_pci_remap_cfg_resource -EXPORT_SYMBOL vmlinux 0xc7208c3a serial8250_resume_port -EXPORT_SYMBOL vmlinux 0xc7237202 vfs_get_fsid -EXPORT_SYMBOL vmlinux 0xc73074ca gnet_stats_copy_queue -EXPORT_SYMBOL vmlinux 0xc7317187 __xa_erase -EXPORT_SYMBOL vmlinux 0xc7541f74 mpage_readahead -EXPORT_SYMBOL vmlinux 0xc76b74a5 genphy_read_mmd_unsupported -EXPORT_SYMBOL vmlinux 0xc77123a9 set_bdi_congested -EXPORT_SYMBOL vmlinux 0xc77a3325 __phy_read_mmd -EXPORT_SYMBOL vmlinux 0xc781bd9f rfkill_resume_polling -EXPORT_SYMBOL vmlinux 0xc7856a3d inet6addr_notifier_call_chain -EXPORT_SYMBOL vmlinux 0xc7a4fbed rtnl_lock -EXPORT_SYMBOL vmlinux 0xc7c1107a LZ4_decompress_safe -EXPORT_SYMBOL vmlinux 0xc7ce6648 task_work_add -EXPORT_SYMBOL vmlinux 0xc7d094b5 dm_read_arg_group -EXPORT_SYMBOL vmlinux 0xc7fcc64f __dec_node_page_state -EXPORT_SYMBOL vmlinux 0xc8015ebc nd_pfn_validate -EXPORT_SYMBOL vmlinux 0xc8052c29 tcp_read_sock -EXPORT_SYMBOL vmlinux 0xc80ab559 swake_up_one -EXPORT_SYMBOL vmlinux 0xc815826a neigh_event_ns -EXPORT_SYMBOL vmlinux 0xc81ee7a9 ppp_unregister_compressor -EXPORT_SYMBOL vmlinux 0xc838c3f5 __ashrti3 -EXPORT_SYMBOL vmlinux 0xc84a0a7e seq_hlist_start_rcu -EXPORT_SYMBOL vmlinux 0xc84fe2f8 kthread_create_on_node -EXPORT_SYMBOL vmlinux 0xc851796f sock_from_file -EXPORT_SYMBOL vmlinux 0xc86c919f down_write_killable -EXPORT_SYMBOL vmlinux 0xc872fd85 in6addr_interfacelocal_allnodes -EXPORT_SYMBOL vmlinux 0xc8827b75 sysctl_vals -EXPORT_SYMBOL vmlinux 0xc8873c3e vfs_getattr_nosec -EXPORT_SYMBOL vmlinux 0xc88d21e4 inet_stream_ops -EXPORT_SYMBOL vmlinux 0xc890c008 zlib_deflateEnd -EXPORT_SYMBOL vmlinux 0xc894e9bf radix_tree_gang_lookup_tag_slot -EXPORT_SYMBOL vmlinux 0xc89846c4 xudma_tchanrt_read -EXPORT_SYMBOL vmlinux 0xc89bc3c9 d_prune_aliases -EXPORT_SYMBOL vmlinux 0xc8a2720a of_match_node -EXPORT_SYMBOL vmlinux 0xc8a82d29 dm_table_run_md_queue_async -EXPORT_SYMBOL vmlinux 0xc8a91f5b cpumask_local_spread -EXPORT_SYMBOL vmlinux 0xc8d3d49b tcf_exts_dump -EXPORT_SYMBOL vmlinux 0xc8dcc62a krealloc -EXPORT_SYMBOL vmlinux 0xc8df2e4a jbd2_journal_abort -EXPORT_SYMBOL vmlinux 0xc8e03ce2 serial8250_do_set_termios -EXPORT_SYMBOL vmlinux 0xc8eed34a mipi_dsi_dcs_get_display_brightness_large -EXPORT_SYMBOL vmlinux 0xc8f1048b tcp_check_req -EXPORT_SYMBOL vmlinux 0xc8f6c1a9 bio_integrity_alloc -EXPORT_SYMBOL vmlinux 0xc8fd2732 vme_master_mmap -EXPORT_SYMBOL vmlinux 0xc916dd46 __SCK__tp_func_kmalloc -EXPORT_SYMBOL vmlinux 0xc92ade81 security_lock_kernel_down -EXPORT_SYMBOL vmlinux 0xc931b1a8 bio_reset -EXPORT_SYMBOL vmlinux 0xc933d0f2 phy_config_aneg -EXPORT_SYMBOL vmlinux 0xc93e8461 acpi_get_event_resources -EXPORT_SYMBOL vmlinux 0xc94036fe sock_set_mark -EXPORT_SYMBOL vmlinux 0xc946d378 setattr_prepare -EXPORT_SYMBOL vmlinux 0xc94a999d mdiobus_alloc_size -EXPORT_SYMBOL vmlinux 0xc957eab9 hash_and_copy_to_iter -EXPORT_SYMBOL vmlinux 0xc9605431 unix_destruct_scm -EXPORT_SYMBOL vmlinux 0xc9634df9 in6addr_linklocal_allrouters -EXPORT_SYMBOL vmlinux 0xc972449f mempool_alloc_slab -EXPORT_SYMBOL vmlinux 0xc9737e84 rfkill_alloc -EXPORT_SYMBOL vmlinux 0xc97d1ff9 from_kprojid -EXPORT_SYMBOL vmlinux 0xc9822234 clk_register_clkdev -EXPORT_SYMBOL vmlinux 0xc9831ad7 flow_keys_dissector -EXPORT_SYMBOL vmlinux 0xc983899c __traceiter_mmap_lock_released -EXPORT_SYMBOL vmlinux 0xc98e31f7 vfs_tmpfile -EXPORT_SYMBOL vmlinux 0xc99d8e1e phy_queue_state_machine -EXPORT_SYMBOL vmlinux 0xc99e2a55 twl_rev -EXPORT_SYMBOL vmlinux 0xc9cf3a53 dup_iter -EXPORT_SYMBOL vmlinux 0xc9d369bd mipi_dsi_dcs_set_column_address -EXPORT_SYMBOL vmlinux 0xc9df055a xfrm_policy_walk_init -EXPORT_SYMBOL vmlinux 0xc9ebe7e9 sk_filter_trim_cap -EXPORT_SYMBOL vmlinux 0xc9ed0401 imx_sc_rm_is_resource_owned -EXPORT_SYMBOL vmlinux 0xc9f2f388 devm_nvmem_unregister -EXPORT_SYMBOL vmlinux 0xc9f8d7d1 copy_highpage -EXPORT_SYMBOL vmlinux 0xca0a555b __inc_node_page_state -EXPORT_SYMBOL vmlinux 0xca10e127 fib_notifier_ops_unregister -EXPORT_SYMBOL vmlinux 0xca15413f ZSTD_resetDStream -EXPORT_SYMBOL vmlinux 0xca21eb0f param_set_uint -EXPORT_SYMBOL vmlinux 0xca21ebd3 bitmap_free -EXPORT_SYMBOL vmlinux 0xca431c05 wake_bit_function -EXPORT_SYMBOL vmlinux 0xca4ccef5 phy_suspend -EXPORT_SYMBOL vmlinux 0xca62afaf xudma_rflow_is_gp -EXPORT_SYMBOL vmlinux 0xca7a32ec get_tree_single -EXPORT_SYMBOL vmlinux 0xca7c0bf5 km_policy_notify -EXPORT_SYMBOL vmlinux 0xca8126e1 of_find_node_opts_by_path -EXPORT_SYMBOL vmlinux 0xca85338b seq_read_iter -EXPORT_SYMBOL vmlinux 0xca89d209 gen_pool_free_owner -EXPORT_SYMBOL vmlinux 0xca9360b5 rb_next -EXPORT_SYMBOL vmlinux 0xcab2109a scsi_report_bus_reset -EXPORT_SYMBOL vmlinux 0xcad1aca8 acpi_exception -EXPORT_SYMBOL vmlinux 0xcaebec6c stop_tty -EXPORT_SYMBOL vmlinux 0xcaf2c603 scsi_sd_pm_domain -EXPORT_SYMBOL vmlinux 0xcb1012fc inet_frag_kill -EXPORT_SYMBOL vmlinux 0xcb23bfd1 kmem_cache_size -EXPORT_SYMBOL vmlinux 0xcb339f62 blk_get_request -EXPORT_SYMBOL vmlinux 0xcb3ae215 call_blocking_lsm_notifier -EXPORT_SYMBOL vmlinux 0xcb47e0eb may_umount -EXPORT_SYMBOL vmlinux 0xcb54ae6a invalidate_mapping_pages -EXPORT_SYMBOL vmlinux 0xcb5583a7 blk_rq_count_integrity_sg -EXPORT_SYMBOL vmlinux 0xcb67e64a mipi_dsi_dcs_get_power_mode -EXPORT_SYMBOL vmlinux 0xcb733bf2 acpi_bus_set_power -EXPORT_SYMBOL vmlinux 0xcb8968da mutex_lock_interruptible -EXPORT_SYMBOL vmlinux 0xcb91119c fs_context_for_mount -EXPORT_SYMBOL vmlinux 0xcb964a54 da903x_query_status -EXPORT_SYMBOL vmlinux 0xcba2371d neigh_changeaddr -EXPORT_SYMBOL vmlinux 0xcbb8a01f request_partial_firmware_into_buf -EXPORT_SYMBOL vmlinux 0xcbc29552 devm_clk_get_optional -EXPORT_SYMBOL vmlinux 0xcbc88a23 ZSTD_isFrame -EXPORT_SYMBOL vmlinux 0xcbd4898c fortify_panic -EXPORT_SYMBOL vmlinux 0xcbe577ca thermal_cdev_update -EXPORT_SYMBOL vmlinux 0xcbecab50 scsi_device_lookup_by_target -EXPORT_SYMBOL vmlinux 0xcbef70ba xfrm_state_check_expire -EXPORT_SYMBOL vmlinux 0xcbf18ef1 d_alloc_anon -EXPORT_SYMBOL vmlinux 0xcbfb33e4 init_opal_dev -EXPORT_SYMBOL vmlinux 0xcc1fd4dc path_is_under -EXPORT_SYMBOL vmlinux 0xcc23002a hdmi_infoframe_pack_only -EXPORT_SYMBOL vmlinux 0xcc23e9ce dev_get_flags -EXPORT_SYMBOL vmlinux 0xcc248d26 serial8250_suspend_port -EXPORT_SYMBOL vmlinux 0xcc27c007 nvdimm_namespace_capacity -EXPORT_SYMBOL vmlinux 0xcc328a5c reservation_ww_class -EXPORT_SYMBOL vmlinux 0xcc3f8396 of_get_next_parent -EXPORT_SYMBOL vmlinux 0xcc445ceb __sg_page_iter_dma_next -EXPORT_SYMBOL vmlinux 0xcc44b25e unlock_two_nondirectories -EXPORT_SYMBOL vmlinux 0xcc5005fe msleep_interruptible -EXPORT_SYMBOL vmlinux 0xcc5c2df4 trace_print_symbols_seq -EXPORT_SYMBOL vmlinux 0xcc5d22d9 can_do_mlock -EXPORT_SYMBOL vmlinux 0xcc9173c7 vlan_vids_del_by_dev -EXPORT_SYMBOL vmlinux 0xcca5839d xen_vcpu_id -EXPORT_SYMBOL vmlinux 0xcca867d7 skb_vlan_push -EXPORT_SYMBOL vmlinux 0xccc1ff0e unregister_fib_notifier -EXPORT_SYMBOL vmlinux 0xccc2457b dev_mc_unsync -EXPORT_SYMBOL vmlinux 0xccca148e jbd2_journal_try_to_free_buffers -EXPORT_SYMBOL vmlinux 0xccd4c999 __sg_page_iter_start -EXPORT_SYMBOL vmlinux 0xccef37e4 ZSTD_DStreamOutSize -EXPORT_SYMBOL vmlinux 0xccf35ed5 sync_inode_metadata -EXPORT_SYMBOL vmlinux 0xccfb9e07 dst_default_metrics -EXPORT_SYMBOL vmlinux 0xccfca022 dquot_initialize_needed -EXPORT_SYMBOL vmlinux 0xccfd2ebc scsi_dev_info_list_del_keyed -EXPORT_SYMBOL vmlinux 0xcd01b8e6 acpi_attach_data -EXPORT_SYMBOL vmlinux 0xcd074481 iproc_msi_init -EXPORT_SYMBOL vmlinux 0xcd0955a5 sock_wfree -EXPORT_SYMBOL vmlinux 0xcd107696 mini_qdisc_pair_swap -EXPORT_SYMBOL vmlinux 0xcd256667 tcp_md5_needed -EXPORT_SYMBOL vmlinux 0xcd279169 nla_find -EXPORT_SYMBOL vmlinux 0xcd2f3439 iov_iter_bvec -EXPORT_SYMBOL vmlinux 0xcd3bc40a pcim_iounmap_regions -EXPORT_SYMBOL vmlinux 0xcd412ba2 tegra_ivc_reset -EXPORT_SYMBOL vmlinux 0xcd7d9d7a jbd2_journal_put_journal_head -EXPORT_SYMBOL vmlinux 0xcd8ce890 acpi_format_exception -EXPORT_SYMBOL vmlinux 0xcd8d9bc5 __skb_free_datagram_locked -EXPORT_SYMBOL vmlinux 0xcd8e71f4 blk_queue_update_dma_pad -EXPORT_SYMBOL vmlinux 0xcd913cd7 flow_indr_dev_register -EXPORT_SYMBOL vmlinux 0xcda6255b param_ops_long -EXPORT_SYMBOL vmlinux 0xcdc39c9e security_ismaclabel -EXPORT_SYMBOL vmlinux 0xcdc7d58b ip_check_defrag -EXPORT_SYMBOL vmlinux 0xcdd611af tegra_dfll_resume -EXPORT_SYMBOL vmlinux 0xcddd38df flow_rule_match_eth_addrs -EXPORT_SYMBOL vmlinux 0xcde3738e xfrm_unregister_km -EXPORT_SYMBOL vmlinux 0xcde77bcc free_opal_dev -EXPORT_SYMBOL vmlinux 0xcdead29b md_wait_for_blocked_rdev -EXPORT_SYMBOL vmlinux 0xce016f3d sunxi_sram_release -EXPORT_SYMBOL vmlinux 0xce036f24 sg_split -EXPORT_SYMBOL vmlinux 0xce057a7f jbd2_journal_forget -EXPORT_SYMBOL vmlinux 0xce0f3a12 mmc_of_parse -EXPORT_SYMBOL vmlinux 0xce235832 mr_fill_mroute -EXPORT_SYMBOL vmlinux 0xce2840e7 irq_set_irq_wake -EXPORT_SYMBOL vmlinux 0xce46fded fddi_type_trans -EXPORT_SYMBOL vmlinux 0xce4cdb8e fb_find_best_mode -EXPORT_SYMBOL vmlinux 0xce4e47b6 __kfifo_skip_r -EXPORT_SYMBOL vmlinux 0xce596941 dquot_get_next_dqblk -EXPORT_SYMBOL vmlinux 0xce5ac24f zlib_inflate_workspacesize -EXPORT_SYMBOL vmlinux 0xce638d9d compat_ptr_ioctl -EXPORT_SYMBOL vmlinux 0xce6e62fd panic_notifier_list -EXPORT_SYMBOL vmlinux 0xce731b34 ucc_slow_get_qe_cr_subblock -EXPORT_SYMBOL vmlinux 0xce76c257 acpi_get_irq_routing_table -EXPORT_SYMBOL vmlinux 0xce853a31 i2c_put_adapter -EXPORT_SYMBOL vmlinux 0xce8acfcd md_bitmap_start_sync -EXPORT_SYMBOL vmlinux 0xce98a95f ps2_sliced_command -EXPORT_SYMBOL vmlinux 0xceab0311 strchrnul -EXPORT_SYMBOL vmlinux 0xcec6bb6f elv_rb_find -EXPORT_SYMBOL vmlinux 0xcef2533e ns_capable -EXPORT_SYMBOL vmlinux 0xcefcd99a serial8250_unregister_port -EXPORT_SYMBOL vmlinux 0xcefe817f readahead_expand -EXPORT_SYMBOL vmlinux 0xcf12dcef blk_queue_io_opt -EXPORT_SYMBOL vmlinux 0xcf27e6ce pci_iounmap -EXPORT_SYMBOL vmlinux 0xcf2a6966 up -EXPORT_SYMBOL vmlinux 0xcf320997 skb_copy_datagram_from_iter -EXPORT_SYMBOL vmlinux 0xcf39afe0 ppp_dev_name -EXPORT_SYMBOL vmlinux 0xcf4d3065 pps_lookup_dev -EXPORT_SYMBOL vmlinux 0xcf53a691 phy_start -EXPORT_SYMBOL vmlinux 0xcf6c78ef phy_support_asym_pause -EXPORT_SYMBOL vmlinux 0xcf8fc81b sock_efree -EXPORT_SYMBOL vmlinux 0xcf9b558d touchscreen_set_mt_pos -EXPORT_SYMBOL vmlinux 0xcfa91b3f ppp_unregister_channel -EXPORT_SYMBOL vmlinux 0xcfd884a8 __hsiphash_unaligned -EXPORT_SYMBOL vmlinux 0xcfeb98a8 acpi_processor_register_performance -EXPORT_SYMBOL vmlinux 0xcfffeacc dma_fence_get_status -EXPORT_SYMBOL vmlinux 0xd0266361 of_find_net_device_by_node -EXPORT_SYMBOL vmlinux 0xd0380cd1 sk_free -EXPORT_SYMBOL vmlinux 0xd03e91a4 __cancel_dirty_page -EXPORT_SYMBOL vmlinux 0xd041f1ff genphy_read_lpa -EXPORT_SYMBOL vmlinux 0xd04c1a64 sysctl_devconf_inherit_init_net -EXPORT_SYMBOL vmlinux 0xd0512e22 mdiobb_write -EXPORT_SYMBOL vmlinux 0xd0654aba woken_wake_function -EXPORT_SYMBOL vmlinux 0xd0760fc0 kfree_sensitive -EXPORT_SYMBOL vmlinux 0xd0885b0b blk_queue_io_min -EXPORT_SYMBOL vmlinux 0xd08a7468 dquot_reclaim_space_nodirty -EXPORT_SYMBOL vmlinux 0xd08adb2b trace_seq_hex_dump -EXPORT_SYMBOL vmlinux 0xd08e4832 mmc_of_parse_voltage -EXPORT_SYMBOL vmlinux 0xd09eff97 splice_direct_to_actor -EXPORT_SYMBOL vmlinux 0xd0ae5f55 __printk_cpu_trylock -EXPORT_SYMBOL vmlinux 0xd0b6cc23 ww_mutex_unlock -EXPORT_SYMBOL vmlinux 0xd0b74705 acpi_install_interface -EXPORT_SYMBOL vmlinux 0xd0bd1358 inet_reqsk_alloc -EXPORT_SYMBOL vmlinux 0xd0cbf8e4 kernel_write -EXPORT_SYMBOL vmlinux 0xd0d1513c bio_kmalloc -EXPORT_SYMBOL vmlinux 0xd0db72da ns_capable_setid -EXPORT_SYMBOL vmlinux 0xd0e52a8b pm860x_reg_write -EXPORT_SYMBOL vmlinux 0xd0fe8d51 sg_pcopy_from_buffer -EXPORT_SYMBOL vmlinux 0xd102d580 kmem_cache_create -EXPORT_SYMBOL vmlinux 0xd102fa7c of_n_size_cells -EXPORT_SYMBOL vmlinux 0xd120cacc inet6_add_protocol -EXPORT_SYMBOL vmlinux 0xd125d003 pci_find_next_bus -EXPORT_SYMBOL vmlinux 0xd1363cc1 ucs2_strsize -EXPORT_SYMBOL vmlinux 0xd1510a16 __find_get_block -EXPORT_SYMBOL vmlinux 0xd1683375 clear_nlink -EXPORT_SYMBOL vmlinux 0xd169b05f mempool_destroy -EXPORT_SYMBOL vmlinux 0xd177e1d9 pci_request_irq -EXPORT_SYMBOL vmlinux 0xd1816f32 frontswap_writethrough -EXPORT_SYMBOL vmlinux 0xd1868838 ip_cmsg_recv_offset -EXPORT_SYMBOL vmlinux 0xd194ddf9 acpi_gpe_count -EXPORT_SYMBOL vmlinux 0xd19dde87 migrate_page -EXPORT_SYMBOL vmlinux 0xd1ace47e gen_pool_first_fit -EXPORT_SYMBOL vmlinux 0xd1b1e276 skb_unlink -EXPORT_SYMBOL vmlinux 0xd1bc8b2c phy_validate_pause -EXPORT_SYMBOL vmlinux 0xd1bc8e47 ilookup -EXPORT_SYMBOL vmlinux 0xd1d5a8ea devfreq_add_device -EXPORT_SYMBOL vmlinux 0xd1d87e92 scsi_mlreturn_string -EXPORT_SYMBOL vmlinux 0xd1fa0fbb of_parse_phandle_with_args_map -EXPORT_SYMBOL vmlinux 0xd20474c0 follow_pfn -EXPORT_SYMBOL vmlinux 0xd2051916 qcom_scm_cpu_power_down -EXPORT_SYMBOL vmlinux 0xd2115302 call_usermodehelper_exec -EXPORT_SYMBOL vmlinux 0xd21a2a21 do_splice_direct -EXPORT_SYMBOL vmlinux 0xd246c0a2 super_setup_bdi_name -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 0xd2652f94 ip_route_me_harder -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 0xd28a9dfa fib6_info_hw_flags_set -EXPORT_SYMBOL vmlinux 0xd290f7a0 vfs_fileattr_set -EXPORT_SYMBOL vmlinux 0xd2b3e5df udp_lib_setsockopt -EXPORT_SYMBOL vmlinux 0xd2c6c6f2 up_read -EXPORT_SYMBOL vmlinux 0xd2c99738 __kmalloc_track_caller -EXPORT_SYMBOL vmlinux 0xd2d0f78b flow_rule_match_mpls -EXPORT_SYMBOL vmlinux 0xd2d373a0 dev_get_by_index -EXPORT_SYMBOL vmlinux 0xd2d6fe58 simple_fill_super -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 0xd30ed8a3 shmem_aops -EXPORT_SYMBOL vmlinux 0xd3185b8b tcp_time_wait -EXPORT_SYMBOL vmlinux 0xd31ccb06 of_machine_is_compatible -EXPORT_SYMBOL vmlinux 0xd32b2cf7 key_unlink -EXPORT_SYMBOL vmlinux 0xd32fdc6d dquot_get_next_id -EXPORT_SYMBOL vmlinux 0xd3543063 memcg_kmem_enabled_key -EXPORT_SYMBOL vmlinux 0xd3559ef4 __memset -EXPORT_SYMBOL vmlinux 0xd35a6d31 mempool_kmalloc -EXPORT_SYMBOL vmlinux 0xd35cce70 _raw_spin_unlock_irqrestore -EXPORT_SYMBOL vmlinux 0xd362a27f inode_sub_bytes -EXPORT_SYMBOL vmlinux 0xd36a1514 dev_mc_flush -EXPORT_SYMBOL vmlinux 0xd36dc10c get_random_u32 -EXPORT_SYMBOL vmlinux 0xd36e3d59 prandom_bytes_state -EXPORT_SYMBOL vmlinux 0xd37cf138 kthread_create_worker_on_cpu -EXPORT_SYMBOL vmlinux 0xd391c25b __cpuhp_remove_state_cpuslocked -EXPORT_SYMBOL vmlinux 0xd392c56c forget_cached_acl -EXPORT_SYMBOL vmlinux 0xd3a5d8d8 __inet6_lookup_established -EXPORT_SYMBOL vmlinux 0xd3a8d011 param_array_ops -EXPORT_SYMBOL vmlinux 0xd3cbfef6 tcf_idr_create -EXPORT_SYMBOL vmlinux 0xd3e05f5e __d_lookup_done -EXPORT_SYMBOL vmlinux 0xd3eaf1ed devlink_dpipe_entry_clear -EXPORT_SYMBOL vmlinux 0xd3fba534 qcom_scm_set_cold_boot_addr -EXPORT_SYMBOL vmlinux 0xd3fbb86f sock_recvmsg -EXPORT_SYMBOL vmlinux 0xd402953e vme_irq_free -EXPORT_SYMBOL vmlinux 0xd406d266 fb_mode_is_equal -EXPORT_SYMBOL vmlinux 0xd4339de8 qcom_scm_pas_init_image -EXPORT_SYMBOL vmlinux 0xd443e5e6 __nla_reserve_nohdr -EXPORT_SYMBOL vmlinux 0xd455a6bd pci_msi_vec_count -EXPORT_SYMBOL vmlinux 0xd459c1e1 napi_build_skb -EXPORT_SYMBOL vmlinux 0xd45cc6ca bin2hex -EXPORT_SYMBOL vmlinux 0xd45e708a wait_on_page_private_2_killable -EXPORT_SYMBOL vmlinux 0xd4835ef8 dmi_check_system -EXPORT_SYMBOL vmlinux 0xd49a8ab3 ipv6_mc_check_mld -EXPORT_SYMBOL vmlinux 0xd4a03b4b pci_map_rom -EXPORT_SYMBOL vmlinux 0xd4a69d20 qm_channel_caam -EXPORT_SYMBOL vmlinux 0xd4bb4a82 inet6addr_validator_notifier_call_chain -EXPORT_SYMBOL vmlinux 0xd4bd4e81 free_xenballooned_pages -EXPORT_SYMBOL vmlinux 0xd4bf2550 __pci_register_driver -EXPORT_SYMBOL vmlinux 0xd4c27a32 dev_pm_opp_unregister_notifier -EXPORT_SYMBOL vmlinux 0xd4dd2662 input_mt_init_slots -EXPORT_SYMBOL vmlinux 0xd4fa5a87 __kfifo_dma_out_prepare -EXPORT_SYMBOL vmlinux 0xd5263820 mb_cache_destroy -EXPORT_SYMBOL vmlinux 0xd5277705 nf_log_register -EXPORT_SYMBOL vmlinux 0xd532cfcb phy_device_create -EXPORT_SYMBOL vmlinux 0xd5346bfc acpi_get_possible_resources -EXPORT_SYMBOL vmlinux 0xd541b719 cros_ec_prepare_tx -EXPORT_SYMBOL vmlinux 0xd5452afb clkdev_add -EXPORT_SYMBOL vmlinux 0xd5666c71 mutex_lock -EXPORT_SYMBOL vmlinux 0xd58e70dd net_rand_noise -EXPORT_SYMBOL vmlinux 0xd59ffc73 kmem_cache_alloc_node_trace -EXPORT_SYMBOL vmlinux 0xd5acd97b of_phy_connect -EXPORT_SYMBOL vmlinux 0xd5b3d0d5 xxh64_copy_state -EXPORT_SYMBOL vmlinux 0xd5c603ca fs_param_is_enum -EXPORT_SYMBOL vmlinux 0xd5c81696 do_wait_intr -EXPORT_SYMBOL vmlinux 0xd5d91c13 km_new_mapping -EXPORT_SYMBOL vmlinux 0xd5e79050 pci_dev_get -EXPORT_SYMBOL vmlinux 0xd60736ec gf128mul_free_64k -EXPORT_SYMBOL vmlinux 0xd60c54a6 flow_rule_match_meta -EXPORT_SYMBOL vmlinux 0xd62ecd49 rps_sock_flow_table -EXPORT_SYMBOL vmlinux 0xd63f1dba scsi_bios_ptable -EXPORT_SYMBOL vmlinux 0xd63fd8d1 utf8nagemax -EXPORT_SYMBOL vmlinux 0xd643239a acpi_leave_sleep_state -EXPORT_SYMBOL vmlinux 0xd64afff4 framebuffer_alloc -EXPORT_SYMBOL vmlinux 0xd652d545 fwnode_mdiobus_phy_device_register -EXPORT_SYMBOL vmlinux 0xd657181f tcp_sock_set_syncnt -EXPORT_SYMBOL vmlinux 0xd66c8184 add_device_randomness -EXPORT_SYMBOL vmlinux 0xd6715080 tty_hangup -EXPORT_SYMBOL vmlinux 0xd67620c2 netlink_ack -EXPORT_SYMBOL vmlinux 0xd688716b dm_kcopyd_client_create -EXPORT_SYMBOL vmlinux 0xd68c5a1f adjust_resource -EXPORT_SYMBOL vmlinux 0xd68e0e37 iov_iter_advance -EXPORT_SYMBOL vmlinux 0xd6a91f54 twl_i2c_read -EXPORT_SYMBOL vmlinux 0xd6b02df1 generic_file_readonly_mmap -EXPORT_SYMBOL vmlinux 0xd6b265c3 kernel_sendpage_locked -EXPORT_SYMBOL vmlinux 0xd6b6c1c9 tegra_dfll_runtime_suspend -EXPORT_SYMBOL vmlinux 0xd6c07398 page_pool_put_page_bulk -EXPORT_SYMBOL vmlinux 0xd6c22d17 md_bitmap_end_sync -EXPORT_SYMBOL vmlinux 0xd6d34960 submit_bh -EXPORT_SYMBOL vmlinux 0xd6e0273a show_init_ipc_ns -EXPORT_SYMBOL vmlinux 0xd6e85838 icmp6_send -EXPORT_SYMBOL vmlinux 0xd6eaaea1 full_name_hash -EXPORT_SYMBOL vmlinux 0xd6ee688f vmalloc -EXPORT_SYMBOL vmlinux 0xd6fde043 is_module_sig_enforced -EXPORT_SYMBOL vmlinux 0xd7075c83 new_inode -EXPORT_SYMBOL vmlinux 0xd70d35a1 gf128mul_4k_bbe -EXPORT_SYMBOL vmlinux 0xd70f62b6 acpi_os_execute -EXPORT_SYMBOL vmlinux 0xd738ca1b phy_unregister_fixup_for_uid -EXPORT_SYMBOL vmlinux 0xd7482f05 vcalloc -EXPORT_SYMBOL vmlinux 0xd7633140 twl6040_get_pll -EXPORT_SYMBOL vmlinux 0xd78c2b5c devfreq_monitor_resume -EXPORT_SYMBOL vmlinux 0xd7b1b1e8 vme_unregister_bridge -EXPORT_SYMBOL vmlinux 0xd7b65f3b set_disk_ro -EXPORT_SYMBOL vmlinux 0xd7d280ad irq_poll_complete -EXPORT_SYMBOL vmlinux 0xd7e56a4e simple_strtoll -EXPORT_SYMBOL vmlinux 0xd7e70f9d rawv6_mh_filter_unregister -EXPORT_SYMBOL vmlinux 0xd7e86b92 input_set_capability -EXPORT_SYMBOL vmlinux 0xd7ea7094 nf_unregister_queue_handler -EXPORT_SYMBOL vmlinux 0xd7eebfea netdev_txq_to_tc -EXPORT_SYMBOL vmlinux 0xd7f0af58 fs_param_is_bool -EXPORT_SYMBOL vmlinux 0xd7ff1b8a __ashlti3 -EXPORT_SYMBOL vmlinux 0xd800ec0f ipv6_sock_mc_drop -EXPORT_SYMBOL vmlinux 0xd8131274 qman_alloc_cgrid_range -EXPORT_SYMBOL vmlinux 0xd8204bda flow_rule_match_tcp -EXPORT_SYMBOL vmlinux 0xd8206924 jbd2_journal_init_inode -EXPORT_SYMBOL vmlinux 0xd828f063 xudma_tchanrt_write -EXPORT_SYMBOL vmlinux 0xd8325a29 scmd_printk -EXPORT_SYMBOL vmlinux 0xd8337143 dev_uc_init -EXPORT_SYMBOL vmlinux 0xd8352aa1 mmc_detect_card_removed -EXPORT_SYMBOL vmlinux 0xd845bbb3 pin_user_pages_locked -EXPORT_SYMBOL vmlinux 0xd8653f60 acpi_processor_notify_smm -EXPORT_SYMBOL vmlinux 0xd86ffd34 of_clk_get -EXPORT_SYMBOL vmlinux 0xd874266f blkdev_put -EXPORT_SYMBOL vmlinux 0xd89c06e1 skb_checksum_help -EXPORT_SYMBOL vmlinux 0xd89da37f movable_zone -EXPORT_SYMBOL vmlinux 0xd8a994eb scsi_extd_sense_format -EXPORT_SYMBOL vmlinux 0xd8b101bb scsi_eh_prep_cmnd -EXPORT_SYMBOL vmlinux 0xd8b61304 get_default_font -EXPORT_SYMBOL vmlinux 0xd8c3d775 of_graph_get_endpoint_count -EXPORT_SYMBOL vmlinux 0xd8cc2252 ethtool_virtdev_set_link_ksettings -EXPORT_SYMBOL vmlinux 0xd8df08ac acpi_handle_printk -EXPORT_SYMBOL vmlinux 0xd8f696f5 sock_wake_async -EXPORT_SYMBOL vmlinux 0xd8f8e140 dev_get_phys_port_id -EXPORT_SYMBOL vmlinux 0xd8fa32ef make_kprojid -EXPORT_SYMBOL vmlinux 0xd8fc7ce0 dquot_resume -EXPORT_SYMBOL vmlinux 0xd90a7654 max8998_read_reg -EXPORT_SYMBOL vmlinux 0xd90bf31b tcp_sock_set_keepcnt -EXPORT_SYMBOL vmlinux 0xd91bd573 dev_addr_add -EXPORT_SYMBOL vmlinux 0xd91cd1e5 d_tmpfile -EXPORT_SYMBOL vmlinux 0xd91f6ab6 strnlen_user -EXPORT_SYMBOL vmlinux 0xd92deb6b acpi_evaluate_object -EXPORT_SYMBOL vmlinux 0xd94e2f5b km_report -EXPORT_SYMBOL vmlinux 0xd95d7460 dma_pool_create -EXPORT_SYMBOL vmlinux 0xd985dc99 mempool_free_pages -EXPORT_SYMBOL vmlinux 0xd98ef24a blk_pre_runtime_suspend -EXPORT_SYMBOL vmlinux 0xd99b703a pci_alloc_irq_vectors_affinity -EXPORT_SYMBOL vmlinux 0xd99c0baa tcf_idr_release -EXPORT_SYMBOL vmlinux 0xd9b8eaea __SCK__tp_func_dma_fence_signaled -EXPORT_SYMBOL vmlinux 0xd9ca47e2 unix_gc_lock -EXPORT_SYMBOL vmlinux 0xd9d8fd16 register_restart_handler -EXPORT_SYMBOL vmlinux 0xd9d952d1 crypto_aes_sbox -EXPORT_SYMBOL vmlinux 0xd9e94191 vma_set_file -EXPORT_SYMBOL vmlinux 0xd9f0773f sock_no_connect -EXPORT_SYMBOL vmlinux 0xd9ff27a7 of_graph_get_endpoint_by_regs -EXPORT_SYMBOL vmlinux 0xda01ed6b qman_start_using_portal -EXPORT_SYMBOL vmlinux 0xda076e63 ata_std_end_eh -EXPORT_SYMBOL vmlinux 0xda10443c xudma_tchan_get_id -EXPORT_SYMBOL vmlinux 0xda13632f unpin_user_pages -EXPORT_SYMBOL vmlinux 0xda20f865 acpi_device_hid -EXPORT_SYMBOL vmlinux 0xda2afb37 napi_gro_frags -EXPORT_SYMBOL vmlinux 0xda2d30d1 i2c_transfer_buffer_flags -EXPORT_SYMBOL vmlinux 0xda3d10a8 security_tun_dev_open -EXPORT_SYMBOL vmlinux 0xda411730 page_pool_put_page -EXPORT_SYMBOL vmlinux 0xda4547ff down_read_interruptible -EXPORT_SYMBOL vmlinux 0xda4adf47 tc_cleanup_flow_action -EXPORT_SYMBOL vmlinux 0xda4badf3 tcp_ld_RTO_revert -EXPORT_SYMBOL vmlinux 0xda60b0ce pci_disable_link_state_locked -EXPORT_SYMBOL vmlinux 0xda64a96a mipi_dsi_dcs_set_tear_on -EXPORT_SYMBOL vmlinux 0xda72a7ec ZSTD_nextInputType -EXPORT_SYMBOL vmlinux 0xda89ea3b ip_idents_reserve -EXPORT_SYMBOL vmlinux 0xdac4913a bitmap_allocate_region -EXPORT_SYMBOL vmlinux 0xdaec288d pr_flush -EXPORT_SYMBOL vmlinux 0xdaf90129 nf_register_sockopt -EXPORT_SYMBOL vmlinux 0xdb07df6f dev_pick_tx_cpu_id -EXPORT_SYMBOL vmlinux 0xdb0924b5 filemap_fault -EXPORT_SYMBOL vmlinux 0xdb126555 devfreq_monitor_start -EXPORT_SYMBOL vmlinux 0xdb2ae3fb blk_mq_tagset_busy_iter -EXPORT_SYMBOL vmlinux 0xdb514729 of_find_device_by_node -EXPORT_SYMBOL vmlinux 0xdb5a6094 phy_ethtool_nway_reset -EXPORT_SYMBOL vmlinux 0xdb5b755b phy_error -EXPORT_SYMBOL vmlinux 0xdb68bbad rfkill_destroy -EXPORT_SYMBOL vmlinux 0xdb6e27d6 unix_attach_fds -EXPORT_SYMBOL vmlinux 0xdb760f52 __kfifo_free -EXPORT_SYMBOL vmlinux 0xdb7ebce0 skb_append -EXPORT_SYMBOL vmlinux 0xdb8cbbe6 max8998_bulk_read -EXPORT_SYMBOL vmlinux 0xdb8ed3eb flow_rule_match_enc_ports -EXPORT_SYMBOL vmlinux 0xdbb25370 mdiobus_is_registered_device -EXPORT_SYMBOL vmlinux 0xdbc41127 dma_resv_add_excl_fence -EXPORT_SYMBOL vmlinux 0xdbcf041a acpi_install_address_space_handler -EXPORT_SYMBOL vmlinux 0xdbd1f656 mdio_find_bus -EXPORT_SYMBOL vmlinux 0xdbdb6640 lockref_get_not_zero -EXPORT_SYMBOL vmlinux 0xdbdf6c92 ioport_resource -EXPORT_SYMBOL vmlinux 0xdbdfddf8 reuseport_add_sock -EXPORT_SYMBOL vmlinux 0xdbe948b2 acpi_match_device_ids -EXPORT_SYMBOL vmlinux 0xdbf73fc1 nd_integrity_init -EXPORT_SYMBOL vmlinux 0xdbff6dda mmc_gpio_get_ro -EXPORT_SYMBOL vmlinux 0xdc087a02 param_get_short -EXPORT_SYMBOL vmlinux 0xdc14eda7 pci_pci_problems -EXPORT_SYMBOL vmlinux 0xdc16f3ce cdrom_get_media_event -EXPORT_SYMBOL vmlinux 0xdc1e1fba make_bad_inode -EXPORT_SYMBOL vmlinux 0xdc2536f4 mr_mfc_find_any_parent -EXPORT_SYMBOL vmlinux 0xdc2b4af4 rproc_mem_entry_init -EXPORT_SYMBOL vmlinux 0xdc334808 netif_carrier_off -EXPORT_SYMBOL vmlinux 0xdc34158f fman_port_init -EXPORT_SYMBOL vmlinux 0xdc3932a8 uart_get_divisor -EXPORT_SYMBOL vmlinux 0xdc3fcbc9 __sw_hweight8 -EXPORT_SYMBOL vmlinux 0xdc49b09f cros_ec_get_next_event -EXPORT_SYMBOL vmlinux 0xdc49c198 reciprocal_value_adv -EXPORT_SYMBOL vmlinux 0xdc4b5201 blk_integrity_compare -EXPORT_SYMBOL vmlinux 0xdc4e3d6f dev_get_by_napi_id -EXPORT_SYMBOL vmlinux 0xdc512134 backlight_register_notifier -EXPORT_SYMBOL vmlinux 0xdc71bf90 sget -EXPORT_SYMBOL vmlinux 0xdc7912b3 tty_port_hangup -EXPORT_SYMBOL vmlinux 0xdc838429 blk_mq_delay_kick_requeue_list -EXPORT_SYMBOL vmlinux 0xdc95fde9 nvdimm_bus_unlock -EXPORT_SYMBOL vmlinux 0xdca8c3d4 logic_outb -EXPORT_SYMBOL vmlinux 0xdcaf56e3 __alloc_pages -EXPORT_SYMBOL vmlinux 0xdcb764ad memset -EXPORT_SYMBOL vmlinux 0xdcc80e9c blk_rq_map_integrity_sg -EXPORT_SYMBOL vmlinux 0xdcdc0040 slhc_compress -EXPORT_SYMBOL vmlinux 0xdcf008ea set_bh_page -EXPORT_SYMBOL vmlinux 0xdcf0d55c bio_copy_data -EXPORT_SYMBOL vmlinux 0xdcfb5f62 of_translate_address -EXPORT_SYMBOL vmlinux 0xdd00447a acpi_resource_to_address64 -EXPORT_SYMBOL vmlinux 0xdd054be8 jbd2_journal_start -EXPORT_SYMBOL vmlinux 0xdd0c490c rproc_add -EXPORT_SYMBOL vmlinux 0xdd18a993 acpi_check_dsm -EXPORT_SYMBOL vmlinux 0xdd1a4640 md_bitmap_startwrite -EXPORT_SYMBOL vmlinux 0xdd2c169b mb_cache_create -EXPORT_SYMBOL vmlinux 0xdd2fc2b1 tcf_em_register -EXPORT_SYMBOL vmlinux 0xdd302385 __dev_kfree_skb_irq -EXPORT_SYMBOL vmlinux 0xdd32a797 proc_dointvec_minmax -EXPORT_SYMBOL vmlinux 0xdd4badb8 cdrom_mode_select -EXPORT_SYMBOL vmlinux 0xdd64e639 strscpy -EXPORT_SYMBOL vmlinux 0xdd703148 __dst_destroy_metrics_generic -EXPORT_SYMBOL vmlinux 0xdd73eb3b blk_put_request -EXPORT_SYMBOL vmlinux 0xdd7a41f4 of_parse_phandle -EXPORT_SYMBOL vmlinux 0xdd7e3192 qcom_scm_pas_auth_and_reset -EXPORT_SYMBOL vmlinux 0xdd849d51 scsi_get_sense_info_fld -EXPORT_SYMBOL vmlinux 0xdd97de55 put_devmap_managed_page -EXPORT_SYMBOL vmlinux 0xdda453ae dma_free_attrs -EXPORT_SYMBOL vmlinux 0xdda9319b fd_install -EXPORT_SYMBOL vmlinux 0xddad7952 acpi_dbg_level -EXPORT_SYMBOL vmlinux 0xddafdd31 vm_node_stat -EXPORT_SYMBOL vmlinux 0xddcf4a18 add_wait_queue -EXPORT_SYMBOL vmlinux 0xdddf7c53 clear_inode -EXPORT_SYMBOL vmlinux 0xdde64308 __xfrm_state_delete -EXPORT_SYMBOL vmlinux 0xddf6ad7a completion_done -EXPORT_SYMBOL vmlinux 0xde217546 file_path -EXPORT_SYMBOL vmlinux 0xde441081 clk_hw_get_clk -EXPORT_SYMBOL vmlinux 0xde4f138c __lock_page -EXPORT_SYMBOL vmlinux 0xde5f8460 mdio_device_reset -EXPORT_SYMBOL vmlinux 0xde73c947 sock_wmalloc -EXPORT_SYMBOL vmlinux 0xde754ff4 md_check_recovery -EXPORT_SYMBOL vmlinux 0xde93220c nf_register_queue_handler -EXPORT_SYMBOL vmlinux 0xde94e935 key_alloc -EXPORT_SYMBOL vmlinux 0xde9c7c87 input_mt_report_slot_state -EXPORT_SYMBOL vmlinux 0xdea43a8b free_mdio_bitbang -EXPORT_SYMBOL vmlinux 0xdeb2cba2 mipi_dsi_detach -EXPORT_SYMBOL vmlinux 0xdecb41fb write_cache_pages -EXPORT_SYMBOL vmlinux 0xdecd9c4b ndisc_mc_map -EXPORT_SYMBOL vmlinux 0xded1cb21 dm_kobject_release -EXPORT_SYMBOL vmlinux 0xded39a6b gen_kill_estimator -EXPORT_SYMBOL vmlinux 0xdeec5eeb proc_doulongvec_minmax -EXPORT_SYMBOL vmlinux 0xdef7c893 fb_match_mode -EXPORT_SYMBOL vmlinux 0xdf06b6c3 uart_match_port -EXPORT_SYMBOL vmlinux 0xdf0fad5b mfd_remove_devices -EXPORT_SYMBOL vmlinux 0xdf1dbabd dm_io -EXPORT_SYMBOL vmlinux 0xdf256037 kstrtou8_from_user -EXPORT_SYMBOL vmlinux 0xdf2c2742 rb_last -EXPORT_SYMBOL vmlinux 0xdf4e028c mmc_can_discard -EXPORT_SYMBOL vmlinux 0xdf54a8f7 netlink_unregister_notifier -EXPORT_SYMBOL vmlinux 0xdf55530b __hw_addr_ref_unsync_dev -EXPORT_SYMBOL vmlinux 0xdf8c695a __ndelay -EXPORT_SYMBOL vmlinux 0xdf9190ec reuseport_has_conns_set -EXPORT_SYMBOL vmlinux 0xdf929370 fs_overflowgid -EXPORT_SYMBOL vmlinux 0xdf93b9d8 timespec64_to_jiffies -EXPORT_SYMBOL vmlinux 0xdf9951f2 alloc_etherdev_mqs -EXPORT_SYMBOL vmlinux 0xdf9a328b iov_iter_init -EXPORT_SYMBOL vmlinux 0xdf9d54fb d_instantiate_anon -EXPORT_SYMBOL vmlinux 0xdfa240a3 input_mt_destroy_slots -EXPORT_SYMBOL vmlinux 0xdfa2415d tcf_chain_put_by_act -EXPORT_SYMBOL vmlinux 0xdfa3142b kmem_cache_free -EXPORT_SYMBOL vmlinux 0xdfa39acf proc_dointvec -EXPORT_SYMBOL vmlinux 0xdfb4b080 tc_setup_cb_reoffload -EXPORT_SYMBOL vmlinux 0xdfc2b32e __skb_recv_datagram -EXPORT_SYMBOL vmlinux 0xdfc9accb crypto_sha1_finup -EXPORT_SYMBOL vmlinux 0xdfcc992c current_work -EXPORT_SYMBOL vmlinux 0xdfde9be5 xsk_set_rx_need_wakeup -EXPORT_SYMBOL vmlinux 0xdfdfa9e7 utf8nfdi -EXPORT_SYMBOL vmlinux 0xdff905e5 vme_slave_free -EXPORT_SYMBOL vmlinux 0xdffc80fc vesa_modes -EXPORT_SYMBOL vmlinux 0xe01d49cd __post_watch_notification -EXPORT_SYMBOL vmlinux 0xe027da5e _dev_err -EXPORT_SYMBOL vmlinux 0xe02ba436 trace_print_hex_seq -EXPORT_SYMBOL vmlinux 0xe03235c3 mempool_create -EXPORT_SYMBOL vmlinux 0xe0419ac4 kstrtos16 -EXPORT_SYMBOL vmlinux 0xe064a5aa input_mt_report_pointer_emulation -EXPORT_SYMBOL vmlinux 0xe06eecdd mr_table_dump -EXPORT_SYMBOL vmlinux 0xe0755dd5 tcp_sync_mss -EXPORT_SYMBOL vmlinux 0xe079370c bdev_dax_pgoff -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 0xe0872501 max8998_write_reg -EXPORT_SYMBOL vmlinux 0xe089725e __hw_addr_ref_sync_dev -EXPORT_SYMBOL vmlinux 0xe091c977 list_sort -EXPORT_SYMBOL vmlinux 0xe0955f76 utf8_casefold -EXPORT_SYMBOL vmlinux 0xe0a09e60 jbd2_journal_revoke -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 0xe0cad2c2 seq_printf -EXPORT_SYMBOL vmlinux 0xe0d6389a __inode_sub_bytes -EXPORT_SYMBOL vmlinux 0xe0e79477 ppp_channel_index -EXPORT_SYMBOL vmlinux 0xe0ffb0e6 get_user_pages_locked -EXPORT_SYMBOL vmlinux 0xe10863e9 neigh_update -EXPORT_SYMBOL vmlinux 0xe10b2292 mark_buffer_dirty -EXPORT_SYMBOL vmlinux 0xe113bbbc csum_partial -EXPORT_SYMBOL vmlinux 0xe11ca997 ZSTD_getDictID_fromDict -EXPORT_SYMBOL vmlinux 0xe123f3d9 dma_fence_release -EXPORT_SYMBOL vmlinux 0xe124f19c generic_pipe_buf_release -EXPORT_SYMBOL vmlinux 0xe125c95a tcf_em_tree_validate -EXPORT_SYMBOL vmlinux 0xe12bda79 vme_dma_free_attribute -EXPORT_SYMBOL vmlinux 0xe12d1036 kernel_param_unlock -EXPORT_SYMBOL vmlinux 0xe13642ef _dev_alert -EXPORT_SYMBOL vmlinux 0xe13700ef xp_dma_sync_for_cpu_slow -EXPORT_SYMBOL vmlinux 0xe138fb8c percpu_counter_add_batch -EXPORT_SYMBOL vmlinux 0xe13cd8a7 dmi_name_in_vendors -EXPORT_SYMBOL vmlinux 0xe157cd6d mnt_set_expiry -EXPORT_SYMBOL vmlinux 0xe159ead6 pci_irq_get_affinity -EXPORT_SYMBOL vmlinux 0xe1620ca5 md_integrity_register -EXPORT_SYMBOL vmlinux 0xe18a66fc tty_chars_in_buffer -EXPORT_SYMBOL vmlinux 0xe1998242 write_inode_now -EXPORT_SYMBOL vmlinux 0xe19a3e36 mipi_dsi_attach -EXPORT_SYMBOL vmlinux 0xe1a53834 config_item_get_unless_zero -EXPORT_SYMBOL vmlinux 0xe1c6c63b dma_get_sgtable_attrs -EXPORT_SYMBOL vmlinux 0xe1da6f09 kern_unmount_array -EXPORT_SYMBOL vmlinux 0xe1dcf64a audit_log_format -EXPORT_SYMBOL vmlinux 0xe1ef1138 dst_destroy -EXPORT_SYMBOL vmlinux 0xe2178dd4 from_kuid -EXPORT_SYMBOL vmlinux 0xe21f18ac __genradix_iter_peek -EXPORT_SYMBOL vmlinux 0xe222ca4f netdev_adjacent_change_prepare -EXPORT_SYMBOL vmlinux 0xe24dc31b vfs_statfs -EXPORT_SYMBOL vmlinux 0xe2558cf2 tcf_em_tree_destroy -EXPORT_SYMBOL vmlinux 0xe26efe34 __netdev_notify_peers -EXPORT_SYMBOL vmlinux 0xe271128b cpumask_any_distribute -EXPORT_SYMBOL vmlinux 0xe273d75d alloc_cpu_rmap -EXPORT_SYMBOL vmlinux 0xe278b7e0 mark_page_accessed -EXPORT_SYMBOL vmlinux 0xe299afd2 tty_port_close_end -EXPORT_SYMBOL vmlinux 0xe2a50ff9 pcix_set_mmrbc -EXPORT_SYMBOL vmlinux 0xe2a79b68 tcp_sock_set_quickack -EXPORT_SYMBOL vmlinux 0xe2bc77f1 dquot_free_inode -EXPORT_SYMBOL vmlinux 0xe2d5255a strcmp -EXPORT_SYMBOL vmlinux 0xe2e51d81 security_dentry_init_security -EXPORT_SYMBOL vmlinux 0xe2eb96a0 console_stop -EXPORT_SYMBOL vmlinux 0xe2ef96ea backlight_device_get_by_name -EXPORT_SYMBOL vmlinux 0xe2f1141d dm_register_target -EXPORT_SYMBOL vmlinux 0xe2fa575f clean_bdev_aliases -EXPORT_SYMBOL vmlinux 0xe303c02e ip6_frag_init -EXPORT_SYMBOL vmlinux 0xe30d6672 skb_checksum -EXPORT_SYMBOL vmlinux 0xe30fa905 tegra_ivc_cleanup -EXPORT_SYMBOL vmlinux 0xe31d170e phy_get_eee_err -EXPORT_SYMBOL vmlinux 0xe3224fd8 dev_uc_del -EXPORT_SYMBOL vmlinux 0xe32ab4d8 xxh64_digest -EXPORT_SYMBOL vmlinux 0xe32b2bab ip_options_rcv_srr -EXPORT_SYMBOL vmlinux 0xe335fecd cros_ec_cmd_xfer_status -EXPORT_SYMBOL vmlinux 0xe3373076 ip_frag_init -EXPORT_SYMBOL vmlinux 0xe354f901 param_set_ulong -EXPORT_SYMBOL vmlinux 0xe35e8c64 mount_nodev -EXPORT_SYMBOL vmlinux 0xe36fd8ef register_netdevice_notifier_net -EXPORT_SYMBOL vmlinux 0xe3734185 __traceiter_dma_fence_enable_signal -EXPORT_SYMBOL vmlinux 0xe382e1a8 unix_detach_fds -EXPORT_SYMBOL vmlinux 0xe392ef49 fscrypt_fname_disk_to_usr -EXPORT_SYMBOL vmlinux 0xe399bd2c sock_init_data -EXPORT_SYMBOL vmlinux 0xe39b2ea5 sha256 -EXPORT_SYMBOL vmlinux 0xe3be2d53 fib_default_rule_add -EXPORT_SYMBOL vmlinux 0xe3c458cd kern_path -EXPORT_SYMBOL vmlinux 0xe3d50b9b input_setup_polling -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 0xe4022e0f sock_setsockopt -EXPORT_SYMBOL vmlinux 0xe40976c0 pnp_range_reserved -EXPORT_SYMBOL vmlinux 0xe40a8625 dst_release_immediate -EXPORT_SYMBOL vmlinux 0xe418479c __xa_insert -EXPORT_SYMBOL vmlinux 0xe41bec8a clear_bdi_congested -EXPORT_SYMBOL vmlinux 0xe4252e00 lock_sock_nested -EXPORT_SYMBOL vmlinux 0xe42eaaa9 hdmi_infoframe_log -EXPORT_SYMBOL vmlinux 0xe4301d85 unpin_user_page -EXPORT_SYMBOL vmlinux 0xe4400c1e vfs_mkobj -EXPORT_SYMBOL vmlinux 0xe447cff8 eth_header_parse -EXPORT_SYMBOL vmlinux 0xe44a27d2 md_write_inc -EXPORT_SYMBOL vmlinux 0xe45b0755 migrate_vma_setup -EXPORT_SYMBOL vmlinux 0xe46021ca _raw_spin_unlock_bh -EXPORT_SYMBOL vmlinux 0xe4604ed3 flow_indr_dev_unregister -EXPORT_SYMBOL vmlinux 0xe4721761 skb_try_coalesce -EXPORT_SYMBOL vmlinux 0xe47450bc lockref_get -EXPORT_SYMBOL vmlinux 0xe474675e posix_acl_chmod -EXPORT_SYMBOL vmlinux 0xe48f88d7 input_register_handle -EXPORT_SYMBOL vmlinux 0xe499f038 __netlink_kernel_create -EXPORT_SYMBOL vmlinux 0xe4adcc17 nobh_truncate_page -EXPORT_SYMBOL vmlinux 0xe4bbc1dd kimage_voffset -EXPORT_SYMBOL vmlinux 0xe4bc2c2f hdmi_drm_infoframe_pack -EXPORT_SYMBOL vmlinux 0xe4bf99ee tcp_sock_set_nodelay -EXPORT_SYMBOL vmlinux 0xe4d2cee6 param_ops_uint -EXPORT_SYMBOL vmlinux 0xe4dfa748 __scsi_device_lookup_by_target -EXPORT_SYMBOL vmlinux 0xe4ef8bbb inet_frag_find -EXPORT_SYMBOL vmlinux 0xe4fbdebd pci_restore_state -EXPORT_SYMBOL vmlinux 0xe5001c17 dcb_ieee_getapp_default_prio_mask -EXPORT_SYMBOL vmlinux 0xe5178a40 xfrm_init_state -EXPORT_SYMBOL vmlinux 0xe523ad75 synchronize_irq -EXPORT_SYMBOL vmlinux 0xe52e2516 security_sk_clone -EXPORT_SYMBOL vmlinux 0xe533e238 skb_expand_head -EXPORT_SYMBOL vmlinux 0xe5368fc1 __nla_put_nohdr -EXPORT_SYMBOL vmlinux 0xe54a64c2 dev_get_phys_port_name -EXPORT_SYMBOL vmlinux 0xe55cfb77 writeback_inodes_sb_nr -EXPORT_SYMBOL vmlinux 0xe577e2fb nexthop_res_grp_activity_update -EXPORT_SYMBOL vmlinux 0xe57feefb qcom_scm_ocmem_unlock -EXPORT_SYMBOL vmlinux 0xe58090ca security_ib_endport_manage_subnet -EXPORT_SYMBOL vmlinux 0xe58806f5 md_handle_request -EXPORT_SYMBOL vmlinux 0xe58cb56e security_socket_getpeersec_dgram -EXPORT_SYMBOL vmlinux 0xe5ada40c dev_set_mac_address -EXPORT_SYMBOL vmlinux 0xe5ae7123 gen_pool_alloc_algo_owner -EXPORT_SYMBOL vmlinux 0xe5b41eff udplite_table -EXPORT_SYMBOL vmlinux 0xe5c60bd2 percpu_counter_set -EXPORT_SYMBOL vmlinux 0xe5c78a99 do_blank_screen -EXPORT_SYMBOL vmlinux 0xe5d02c29 end_page_private_2 -EXPORT_SYMBOL vmlinux 0xe5d1d94e generic_listxattr -EXPORT_SYMBOL vmlinux 0xe5db1315 __mdiobus_register -EXPORT_SYMBOL vmlinux 0xe5e32636 truncate_pagecache_range -EXPORT_SYMBOL vmlinux 0xe6088474 make_kuid -EXPORT_SYMBOL vmlinux 0xe6094d70 default_llseek -EXPORT_SYMBOL vmlinux 0xe60ce138 configfs_unregister_subsystem -EXPORT_SYMBOL vmlinux 0xe60de00b blk_queue_max_write_zeroes_sectors -EXPORT_SYMBOL vmlinux 0xe6134e83 nd_device_notify -EXPORT_SYMBOL vmlinux 0xe613a798 inet_addr_is_any -EXPORT_SYMBOL vmlinux 0xe62cce89 xfrm_policy_flush -EXPORT_SYMBOL vmlinux 0xe62fe2e3 uart_get_baud_rate -EXPORT_SYMBOL vmlinux 0xe633bec9 skb_copy_and_csum_bits -EXPORT_SYMBOL vmlinux 0xe64c3ec8 inode_insert5 -EXPORT_SYMBOL vmlinux 0xe65ce698 __module_get -EXPORT_SYMBOL vmlinux 0xe66884a3 param_set_bool -EXPORT_SYMBOL vmlinux 0xe691ac7f ZSTD_decompressBegin -EXPORT_SYMBOL vmlinux 0xe69d92d5 rpmh_write -EXPORT_SYMBOL vmlinux 0xe69e97b4 scsi_eh_finish_cmd -EXPORT_SYMBOL vmlinux 0xe6a43b6d serio_reconnect -EXPORT_SYMBOL vmlinux 0xe6a57d89 tcp_sock_set_keepintvl -EXPORT_SYMBOL vmlinux 0xe6a6a0d0 __i2c_transfer -EXPORT_SYMBOL vmlinux 0xe6bd1b53 xsk_uses_need_wakeup -EXPORT_SYMBOL vmlinux 0xe6bff7d2 device_match_acpi_dev -EXPORT_SYMBOL vmlinux 0xe6c9fc5b lookup_one_len_unlocked -EXPORT_SYMBOL vmlinux 0xe6d2458e do_trace_netlink_extack -EXPORT_SYMBOL vmlinux 0xe6d6de4c generic_fillattr -EXPORT_SYMBOL vmlinux 0xe6dbdcf4 vfs_parse_fs_param -EXPORT_SYMBOL vmlinux 0xe6eab9f2 padata_alloc_shell -EXPORT_SYMBOL vmlinux 0xe6ec187c pci_iomap_range -EXPORT_SYMBOL vmlinux 0xe6efbe3a inet_csk_complete_hashdance -EXPORT_SYMBOL vmlinux 0xe6f6faed jbd2_journal_unlock_updates -EXPORT_SYMBOL vmlinux 0xe71798bd passthru_features_check -EXPORT_SYMBOL vmlinux 0xe727c3bb security_path_rename -EXPORT_SYMBOL vmlinux 0xe7324b9a utf8nfdicf -EXPORT_SYMBOL vmlinux 0xe7359d30 setattr_should_drop_suidgid -EXPORT_SYMBOL vmlinux 0xe73a4014 sock_create_kern -EXPORT_SYMBOL vmlinux 0xe73a4b95 xfrm_state_unregister_afinfo -EXPORT_SYMBOL vmlinux 0xe7615379 pci_request_selected_regions -EXPORT_SYMBOL vmlinux 0xe762a27b mmc_retune_timer_stop -EXPORT_SYMBOL vmlinux 0xe7698027 ioremap_cache -EXPORT_SYMBOL vmlinux 0xe776e978 kill_anon_super -EXPORT_SYMBOL vmlinux 0xe77944b5 unlock_page_memcg -EXPORT_SYMBOL vmlinux 0xe77b16bf sock_release -EXPORT_SYMBOL vmlinux 0xe77e7f64 register_md_personality -EXPORT_SYMBOL vmlinux 0xe7ac95e7 pci_remove_bus -EXPORT_SYMBOL vmlinux 0xe7b0353b __cpu_active_mask -EXPORT_SYMBOL vmlinux 0xe7d4daac seq_list_next -EXPORT_SYMBOL vmlinux 0xe7d688c4 __sk_mem_reduce_allocated -EXPORT_SYMBOL vmlinux 0xe7f3420f sk_mc_loop -EXPORT_SYMBOL vmlinux 0xe7f88cc9 skb_free_datagram -EXPORT_SYMBOL vmlinux 0xe811a0e6 blk_integrity_unregister -EXPORT_SYMBOL vmlinux 0xe81ed893 tty_unthrottle -EXPORT_SYMBOL vmlinux 0xe83a5aea filemap_fdatawait_range -EXPORT_SYMBOL vmlinux 0xe84305f9 ata_scsi_cmd_error_handler -EXPORT_SYMBOL vmlinux 0xe844c777 __xa_cmpxchg -EXPORT_SYMBOL vmlinux 0xe8509622 generic_shutdown_super -EXPORT_SYMBOL vmlinux 0xe858bba6 msm_pinctrl_remove -EXPORT_SYMBOL vmlinux 0xe85f2123 acpi_tb_unload_table -EXPORT_SYMBOL vmlinux 0xe889f024 fscrypt_decrypt_bio -EXPORT_SYMBOL vmlinux 0xe88ad2d0 config_item_init_type_name -EXPORT_SYMBOL vmlinux 0xe8976181 __fs_parse -EXPORT_SYMBOL vmlinux 0xe8a5594f dump_align -EXPORT_SYMBOL vmlinux 0xe8b0f2a6 udp_seq_ops -EXPORT_SYMBOL vmlinux 0xe8b5c3c3 __tracepoint_module_get -EXPORT_SYMBOL vmlinux 0xe8d4085a prepare_to_wait -EXPORT_SYMBOL vmlinux 0xe8ee5918 mmc_cqe_request_done -EXPORT_SYMBOL vmlinux 0xe8f13e3c dquot_acquire -EXPORT_SYMBOL vmlinux 0xe8f44be9 msi_desc_to_pci_dev -EXPORT_SYMBOL vmlinux 0xe90056c3 fb_prepare_logo -EXPORT_SYMBOL vmlinux 0xe90253f0 xudma_rflow_get -EXPORT_SYMBOL vmlinux 0xe909997a bitmap_print_list_to_buf -EXPORT_SYMBOL vmlinux 0xe914e41e strcpy -EXPORT_SYMBOL vmlinux 0xe9173734 fwnode_phy_find_device -EXPORT_SYMBOL vmlinux 0xe92b9d64 rt_spin_lock -EXPORT_SYMBOL vmlinux 0xe940123f md_bitmap_endwrite -EXPORT_SYMBOL vmlinux 0xe953b21f get_next_ino -EXPORT_SYMBOL vmlinux 0xe965c615 configfs_depend_item -EXPORT_SYMBOL vmlinux 0xe9673215 rps_may_expire_flow -EXPORT_SYMBOL vmlinux 0xe978b507 bh_uptodate_or_lock -EXPORT_SYMBOL vmlinux 0xe9922eea tty_lock -EXPORT_SYMBOL vmlinux 0xe9a9091f udp6_seq_ops -EXPORT_SYMBOL vmlinux 0xe9b23fc7 end_buffer_async_write -EXPORT_SYMBOL vmlinux 0xe9c2b9ae import_single_range -EXPORT_SYMBOL vmlinux 0xe9ca6ea2 inet_dgram_connect -EXPORT_SYMBOL vmlinux 0xe9d5def2 napi_gro_receive -EXPORT_SYMBOL vmlinux 0xe9e8faeb efi_tpm_final_log_size -EXPORT_SYMBOL vmlinux 0xe9ea049f radix_tree_gang_lookup_tag -EXPORT_SYMBOL vmlinux 0xe9ea85b8 scsi_vpd_lun_id -EXPORT_SYMBOL vmlinux 0xe9ec3991 rproc_detach -EXPORT_SYMBOL vmlinux 0xe9ee1661 xp_dma_sync_for_device_slow -EXPORT_SYMBOL vmlinux 0xe9f5a872 nf_unregister_sockopt -EXPORT_SYMBOL vmlinux 0xe9f7149c zlib_deflate_workspacesize -EXPORT_SYMBOL vmlinux 0xe9ffc063 down_trylock -EXPORT_SYMBOL vmlinux 0xea03977f register_key_type -EXPORT_SYMBOL vmlinux 0xea111a6b ipv6_find_hdr -EXPORT_SYMBOL vmlinux 0xea158825 input_get_poll_interval -EXPORT_SYMBOL vmlinux 0xea19f2cb account_page_redirty -EXPORT_SYMBOL vmlinux 0xea1c3e3a arm_smccc_1_2_hvc -EXPORT_SYMBOL vmlinux 0xea2e99fd inet_csk_delete_keepalive_timer -EXPORT_SYMBOL vmlinux 0xea3880fe nvdimm_check_and_set_ro -EXPORT_SYMBOL vmlinux 0xea3c8e4e scsilun_to_int -EXPORT_SYMBOL vmlinux 0xea3cdb32 xfrm6_input_addr -EXPORT_SYMBOL vmlinux 0xea6f9a36 zlib_deflate_dfltcc_enabled -EXPORT_SYMBOL vmlinux 0xea778fab sg_pcopy_to_buffer -EXPORT_SYMBOL vmlinux 0xea77aac4 of_device_is_compatible -EXPORT_SYMBOL vmlinux 0xea796977 input_alloc_absinfo -EXPORT_SYMBOL vmlinux 0xea9689e6 tcf_qevent_destroy -EXPORT_SYMBOL vmlinux 0xea9fb178 scsi_is_host_device -EXPORT_SYMBOL vmlinux 0xea9fe215 ida_alloc_range -EXPORT_SYMBOL vmlinux 0xeaa2d0bf of_device_is_big_endian -EXPORT_SYMBOL vmlinux 0xeab4e567 register_framebuffer -EXPORT_SYMBOL vmlinux 0xeab6d29a dquot_file_open -EXPORT_SYMBOL vmlinux 0xeab6f4c4 acpi_check_resource_conflict -EXPORT_SYMBOL vmlinux 0xeab71bb9 dma_fence_chain_ops -EXPORT_SYMBOL vmlinux 0xeab7ae42 devm_of_iomap -EXPORT_SYMBOL vmlinux 0xeacfc1e9 netif_receive_skb -EXPORT_SYMBOL vmlinux 0xead3e245 lookup_one_positive_unlocked -EXPORT_SYMBOL vmlinux 0xead8c400 bman_get_bpid -EXPORT_SYMBOL vmlinux 0xeae31e46 alloc_xenballooned_pages -EXPORT_SYMBOL vmlinux 0xeae3dfd6 __const_udelay -EXPORT_SYMBOL vmlinux 0xeae7f01c netdev_alert -EXPORT_SYMBOL vmlinux 0xeafc141f __posix_acl_chmod -EXPORT_SYMBOL vmlinux 0xeafc8393 config_group_init_type_name -EXPORT_SYMBOL vmlinux 0xeb0433dd dma_find_channel -EXPORT_SYMBOL vmlinux 0xeb0b442a io_uring_get_socket -EXPORT_SYMBOL vmlinux 0xeb1c3204 generic_file_splice_read -EXPORT_SYMBOL vmlinux 0xeb233a45 __kmalloc -EXPORT_SYMBOL vmlinux 0xeb37101c audit_log_end -EXPORT_SYMBOL vmlinux 0xeb389e85 idr_get_next -EXPORT_SYMBOL vmlinux 0xeb44339a free_pages_exact -EXPORT_SYMBOL vmlinux 0xeb6f7e7c pci_set_master -EXPORT_SYMBOL vmlinux 0xeb7f6046 acpi_get_devices -EXPORT_SYMBOL vmlinux 0xeb910f4b mipi_dsi_dcs_enter_sleep_mode -EXPORT_SYMBOL vmlinux 0xeb9e913d sgl_alloc_order -EXPORT_SYMBOL vmlinux 0xeb9eef52 match_uint -EXPORT_SYMBOL vmlinux 0xebc1d337 downgrade_write -EXPORT_SYMBOL vmlinux 0xebccf3d2 phy_disconnect -EXPORT_SYMBOL vmlinux 0xebcec13f dma_fence_wait_any_timeout -EXPORT_SYMBOL vmlinux 0xebd49db9 iptun_encaps -EXPORT_SYMBOL vmlinux 0xebe4a53f mipi_dsi_device_unregister -EXPORT_SYMBOL vmlinux 0xebeb20ea __nla_put -EXPORT_SYMBOL vmlinux 0xec0c7a91 vm_map_pages -EXPORT_SYMBOL vmlinux 0xec172b09 dev_change_proto_down_generic -EXPORT_SYMBOL vmlinux 0xec28eba4 uart_write_wakeup -EXPORT_SYMBOL vmlinux 0xec2b8a42 acpi_walk_namespace -EXPORT_SYMBOL vmlinux 0xec33c668 __SCK__tp_func_spi_transfer_start -EXPORT_SYMBOL vmlinux 0xec3f6c8a xsk_tx_completed -EXPORT_SYMBOL vmlinux 0xec41716a qman_alloc_fqid_range -EXPORT_SYMBOL vmlinux 0xec4d5eb2 page_pool_update_nid -EXPORT_SYMBOL vmlinux 0xec4d9e3a clk_get_sys -EXPORT_SYMBOL vmlinux 0xec597190 __put_user_ns -EXPORT_SYMBOL vmlinux 0xec6464be of_find_matching_node_and_match -EXPORT_SYMBOL vmlinux 0xec6e9706 config_item_set_name -EXPORT_SYMBOL vmlinux 0xec6f3710 d_instantiate -EXPORT_SYMBOL vmlinux 0xec933d01 skb_store_bits -EXPORT_SYMBOL vmlinux 0xec9a9f76 jbd2_journal_submit_inode_data_buffers -EXPORT_SYMBOL vmlinux 0xecb1c796 __netdev_alloc_skb -EXPORT_SYMBOL vmlinux 0xecc5a39e vme_irq_generate -EXPORT_SYMBOL vmlinux 0xeccb0bd9 page_mapping -EXPORT_SYMBOL vmlinux 0xece784c2 rb_first -EXPORT_SYMBOL vmlinux 0xece8be84 bit_waitqueue -EXPORT_SYMBOL vmlinux 0xecf8c412 __of_mdiobus_register -EXPORT_SYMBOL vmlinux 0xecfd68ef acpi_get_node -EXPORT_SYMBOL vmlinux 0xed00c4fb acpi_os_printf -EXPORT_SYMBOL vmlinux 0xed03eaa8 mempool_free -EXPORT_SYMBOL vmlinux 0xed048042 par_io_of_config -EXPORT_SYMBOL vmlinux 0xed0c2a63 netdev_pick_tx -EXPORT_SYMBOL vmlinux 0xed166ae5 devm_rproc_add -EXPORT_SYMBOL vmlinux 0xed1b85da padata_free_shell -EXPORT_SYMBOL vmlinux 0xed391458 alloc_skb_with_frags -EXPORT_SYMBOL vmlinux 0xed4bd641 md_reap_sync_thread -EXPORT_SYMBOL vmlinux 0xed4e1377 blk_mq_requeue_request -EXPORT_SYMBOL vmlinux 0xed5376c5 __printk_wait_on_cpu_lock -EXPORT_SYMBOL vmlinux 0xed55f929 acpi_os_unmap_generic_address -EXPORT_SYMBOL vmlinux 0xed5d64c4 nla_put_64bit -EXPORT_SYMBOL vmlinux 0xed656e30 udp_encap_disable -EXPORT_SYMBOL vmlinux 0xed7006f8 dm_unregister_target -EXPORT_SYMBOL vmlinux 0xed7ae1b0 neigh_proc_dointvec_jiffies -EXPORT_SYMBOL vmlinux 0xed8a2d95 memset64 -EXPORT_SYMBOL vmlinux 0xedb275d3 input_mt_report_finger_count -EXPORT_SYMBOL vmlinux 0xedb9a93e ip6_find_1stfragopt -EXPORT_SYMBOL vmlinux 0xedbaee5e nla_strcmp -EXPORT_SYMBOL vmlinux 0xedbfe2f4 pci_bus_read_dev_vendor_id -EXPORT_SYMBOL vmlinux 0xedc03953 iounmap -EXPORT_SYMBOL vmlinux 0xedff5ca7 jbd2_journal_flush -EXPORT_SYMBOL vmlinux 0xee00af91 __neigh_event_send -EXPORT_SYMBOL vmlinux 0xee12df1a netpoll_send_skb -EXPORT_SYMBOL vmlinux 0xee16fa10 _atomic_dec_and_lock_irqsave -EXPORT_SYMBOL vmlinux 0xee25b730 xfrm_spd_getinfo -EXPORT_SYMBOL vmlinux 0xee50e5cc pcim_enable_device -EXPORT_SYMBOL vmlinux 0xee58e970 fb_add_videomode -EXPORT_SYMBOL vmlinux 0xee7eb9e1 pnp_platform_devices -EXPORT_SYMBOL vmlinux 0xee7f317b input_close_device -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 0xeebf2092 __xa_store -EXPORT_SYMBOL vmlinux 0xeee75d91 ucc_fast_init -EXPORT_SYMBOL vmlinux 0xeee76e01 uart_remove_one_port -EXPORT_SYMBOL vmlinux 0xeeebece3 pci_ep_cfs_add_epc_group -EXPORT_SYMBOL vmlinux 0xeeecbbfd security_sctp_sk_clone -EXPORT_SYMBOL vmlinux 0xeef1e92e rt_mutex_base_init -EXPORT_SYMBOL vmlinux 0xeef2b665 keyring_clear -EXPORT_SYMBOL vmlinux 0xef2e9882 inet_frag_reasm_prepare -EXPORT_SYMBOL vmlinux 0xef5bcce1 get_tree_nodev -EXPORT_SYMBOL vmlinux 0xef7c05ab hsierrrpt_dereg_cb -EXPORT_SYMBOL vmlinux 0xef89c77c __scsi_print_sense -EXPORT_SYMBOL vmlinux 0xef8ac53d qcom_scm_restore_sec_cfg -EXPORT_SYMBOL vmlinux 0xefade61f trace_raw_output_prep -EXPORT_SYMBOL vmlinux 0xefaf2e4f tcf_queue_work -EXPORT_SYMBOL vmlinux 0xefaf9985 tcp_splice_read -EXPORT_SYMBOL vmlinux 0xefc2795d pci_request_region -EXPORT_SYMBOL vmlinux 0xefc3472e posix_acl_update_mode -EXPORT_SYMBOL vmlinux 0xefcea2e7 acpi_warning -EXPORT_SYMBOL vmlinux 0xefe07b3a backlight_device_register -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 0xf00ae858 register_sysctl -EXPORT_SYMBOL vmlinux 0xf02aa937 wait_for_completion_interruptible_timeout -EXPORT_SYMBOL vmlinux 0xf0384f41 dcb_getapp -EXPORT_SYMBOL vmlinux 0xf04bb4fd jbd2_journal_free_reserved -EXPORT_SYMBOL vmlinux 0xf06171c6 pskb_extract -EXPORT_SYMBOL vmlinux 0xf0674958 __vfs_getxattr -EXPORT_SYMBOL vmlinux 0xf074261b skb_copy_bits -EXPORT_SYMBOL vmlinux 0xf0755124 netdev_bind_sb_channel_queue -EXPORT_SYMBOL vmlinux 0xf07b8343 tcp_initialize_rcv_mss -EXPORT_SYMBOL vmlinux 0xf07ba68a filemap_range_has_page -EXPORT_SYMBOL vmlinux 0xf09afa58 nexthop_set_hw_flags -EXPORT_SYMBOL vmlinux 0xf09b5d9a get_zeroed_page -EXPORT_SYMBOL vmlinux 0xf0aa87d9 __skb_flow_dissect -EXPORT_SYMBOL vmlinux 0xf0b2419f cmd_db_read_aux_data -EXPORT_SYMBOL vmlinux 0xf0f14e71 md_set_array_sectors -EXPORT_SYMBOL vmlinux 0xf109f55c flow_block_cb_incref -EXPORT_SYMBOL vmlinux 0xf114fbae input_event -EXPORT_SYMBOL vmlinux 0xf11dd46e _page_poisoning_enabled_early -EXPORT_SYMBOL vmlinux 0xf1431928 dquot_commit_info -EXPORT_SYMBOL vmlinux 0xf14abbf7 pcim_set_mwi -EXPORT_SYMBOL vmlinux 0xf14f7220 pci_request_selected_regions_exclusive -EXPORT_SYMBOL vmlinux 0xf163f9ac fb_firmware_edid -EXPORT_SYMBOL vmlinux 0xf167635a nf_log_packet -EXPORT_SYMBOL vmlinux 0xf16866dc genphy_soft_reset -EXPORT_SYMBOL vmlinux 0xf16d1ca0 sg_miter_next -EXPORT_SYMBOL vmlinux 0xf1782f73 dma_unmap_page_attrs -EXPORT_SYMBOL vmlinux 0xf17c1cd7 netif_tx_stop_all_queues -EXPORT_SYMBOL vmlinux 0xf18300ad logic_inb -EXPORT_SYMBOL vmlinux 0xf189a587 neigh_sysctl_unregister -EXPORT_SYMBOL vmlinux 0xf195c682 fb_invert_cmaps -EXPORT_SYMBOL vmlinux 0xf1969a8e __usecs_to_jiffies -EXPORT_SYMBOL vmlinux 0xf1990090 tcp_md5_do_del -EXPORT_SYMBOL vmlinux 0xf1a943e9 neigh_table_init -EXPORT_SYMBOL vmlinux 0xf1db1704 nla_memcpy -EXPORT_SYMBOL vmlinux 0xf1db56f2 ptp_clock_unregister -EXPORT_SYMBOL vmlinux 0xf1e046cc panic -EXPORT_SYMBOL vmlinux 0xf1e98c74 avenrun -EXPORT_SYMBOL vmlinux 0xf1f8cd44 kset_register -EXPORT_SYMBOL vmlinux 0xf1febe2e i2c_del_driver -EXPORT_SYMBOL vmlinux 0xf227a517 dquot_initialize -EXPORT_SYMBOL vmlinux 0xf22c04c7 security_sock_graft -EXPORT_SYMBOL vmlinux 0xf22d18c8 neigh_parms_release -EXPORT_SYMBOL vmlinux 0xf23fcb99 __kfifo_in -EXPORT_SYMBOL vmlinux 0xf25fed97 down_read_trylock -EXPORT_SYMBOL vmlinux 0xf26546c0 csum_and_copy_from_iter -EXPORT_SYMBOL vmlinux 0xf2669a2c imx_scu_irq_register_notifier -EXPORT_SYMBOL vmlinux 0xf28404cf devlink_dpipe_header_ipv6 -EXPORT_SYMBOL vmlinux 0xf28a3cd0 file_modified -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 0xf2a31df7 kernel_connect -EXPORT_SYMBOL vmlinux 0xf2aec116 security_path_mknod -EXPORT_SYMBOL vmlinux 0xf2c43f3f zlib_deflate -EXPORT_SYMBOL vmlinux 0xf2e5bd87 security_free_mnt_opts -EXPORT_SYMBOL vmlinux 0xf2ea576e ipv6_sock_mc_join -EXPORT_SYMBOL vmlinux 0xf2f06979 dma_async_device_unregister -EXPORT_SYMBOL vmlinux 0xf2f53617 memregion_free -EXPORT_SYMBOL vmlinux 0xf3025367 wireless_send_event -EXPORT_SYMBOL vmlinux 0xf3107926 sha224_update -EXPORT_SYMBOL vmlinux 0xf310c55d proc_create_data -EXPORT_SYMBOL vmlinux 0xf32bdb11 set_page_dirty -EXPORT_SYMBOL vmlinux 0xf33309d7 seq_path -EXPORT_SYMBOL vmlinux 0xf336b8c5 inet6_del_protocol -EXPORT_SYMBOL vmlinux 0xf346231f seq_list_start_head -EXPORT_SYMBOL vmlinux 0xf353a698 register_module_notifier -EXPORT_SYMBOL vmlinux 0xf358ae85 fwnode_get_phy_id -EXPORT_SYMBOL vmlinux 0xf35c55a0 netdev_lower_get_first_private_rcu -EXPORT_SYMBOL vmlinux 0xf36b2958 input_set_keycode -EXPORT_SYMBOL vmlinux 0xf36c78f0 inode_get_bytes -EXPORT_SYMBOL vmlinux 0xf36f42a9 slhc_uncompress -EXPORT_SYMBOL vmlinux 0xf37e9c58 pci_alloc_dev -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 0xf3a5908d blk_cleanup_disk -EXPORT_SYMBOL vmlinux 0xf3aa6764 tcf_block_get -EXPORT_SYMBOL vmlinux 0xf3b30a06 utf8version_latest -EXPORT_SYMBOL vmlinux 0xf3c604f7 param_ops_invbool -EXPORT_SYMBOL vmlinux 0xf3ce8833 __alloc_skb -EXPORT_SYMBOL vmlinux 0xf3d0b7c0 netdev_bonding_info_change -EXPORT_SYMBOL vmlinux 0xf3d5a435 sk_common_release -EXPORT_SYMBOL vmlinux 0xf3e0e1df allocate_resource -EXPORT_SYMBOL vmlinux 0xf3e222df param_ops_ullong -EXPORT_SYMBOL vmlinux 0xf3e6402e __bitmap_equal -EXPORT_SYMBOL vmlinux 0xf3f6e1e2 tty_port_close_start -EXPORT_SYMBOL vmlinux 0xf40604b3 from_kprojid_munged -EXPORT_SYMBOL vmlinux 0xf4102303 nla_put_nohdr -EXPORT_SYMBOL vmlinux 0xf413d023 md_write_end -EXPORT_SYMBOL vmlinux 0xf41f5d4c input_flush_device -EXPORT_SYMBOL vmlinux 0xf420cdc8 rproc_da_to_va -EXPORT_SYMBOL vmlinux 0xf422cb34 mfd_cell_enable -EXPORT_SYMBOL vmlinux 0xf436769b default_qdisc_ops -EXPORT_SYMBOL vmlinux 0xf4381e96 __sock_queue_rcv_skb -EXPORT_SYMBOL vmlinux 0xf43d2caa acpi_remove_interface -EXPORT_SYMBOL vmlinux 0xf44a904a net_ns_barrier -EXPORT_SYMBOL vmlinux 0xf46f53c4 lock_two_nondirectories -EXPORT_SYMBOL vmlinux 0xf474c21c bitmap_print_to_pagebuf -EXPORT_SYMBOL vmlinux 0xf474fdcb kfree_const -EXPORT_SYMBOL vmlinux 0xf475fbb6 fscrypt_ioctl_get_policy -EXPORT_SYMBOL vmlinux 0xf47b2a44 idr_destroy -EXPORT_SYMBOL vmlinux 0xf48419d4 netdev_next_lower_dev_rcu -EXPORT_SYMBOL vmlinux 0xf4872b24 configfs_undepend_item -EXPORT_SYMBOL vmlinux 0xf48bd08d netif_set_real_num_queues -EXPORT_SYMBOL vmlinux 0xf49e7355 config_item_put -EXPORT_SYMBOL vmlinux 0xf4a29790 elv_rb_del -EXPORT_SYMBOL vmlinux 0xf4a7712a mipi_dsi_set_maximum_return_packet_size -EXPORT_SYMBOL vmlinux 0xf4b754fd acpi_resources_are_enforced -EXPORT_SYMBOL vmlinux 0xf4bdbeb9 __frontswap_invalidate_area -EXPORT_SYMBOL vmlinux 0xf4c022f6 ll_rw_block -EXPORT_SYMBOL vmlinux 0xf4db35bc stpcpy -EXPORT_SYMBOL vmlinux 0xf4db8cdd mmc_can_gpio_ro -EXPORT_SYMBOL vmlinux 0xf4f14de6 rtnl_trylock -EXPORT_SYMBOL vmlinux 0xf4f6b065 scsi_device_quiesce -EXPORT_SYMBOL vmlinux 0xf513af4b kernel_sendmsg_locked -EXPORT_SYMBOL vmlinux 0xf52b98cc vfs_parse_fs_param_source -EXPORT_SYMBOL vmlinux 0xf53ca67e elevator_alloc -EXPORT_SYMBOL vmlinux 0xf53d4c26 qdisc_class_hash_destroy -EXPORT_SYMBOL vmlinux 0xf561142e filemap_fdatawait_keep_errors -EXPORT_SYMBOL vmlinux 0xf563979e dev_uc_add -EXPORT_SYMBOL vmlinux 0xf5820448 ip_do_fragment -EXPORT_SYMBOL vmlinux 0xf587c1b9 call_usermodehelper_setup -EXPORT_SYMBOL vmlinux 0xf592d384 genphy_read_status_fixed -EXPORT_SYMBOL vmlinux 0xf5a20ed2 __genradix_prealloc -EXPORT_SYMBOL vmlinux 0xf5abdf24 tcp_ioctl -EXPORT_SYMBOL vmlinux 0xf5b74ca1 tcf_qevent_init -EXPORT_SYMBOL vmlinux 0xf5c8c993 vfs_parse_fs_string -EXPORT_SYMBOL vmlinux 0xf5d4f007 udp_gro_complete -EXPORT_SYMBOL vmlinux 0xf5d9c162 pcim_iounmap -EXPORT_SYMBOL vmlinux 0xf5e1fc10 dst_dev_put -EXPORT_SYMBOL vmlinux 0xf5e7ea40 ktime_get_coarse_ts64 -EXPORT_SYMBOL vmlinux 0xf5ea5509 follow_down_one -EXPORT_SYMBOL vmlinux 0xf62c39fe ucc_slow_graceful_stop_tx -EXPORT_SYMBOL vmlinux 0xf63b4a94 of_platform_device_create -EXPORT_SYMBOL vmlinux 0xf643d104 hsiphash_4u32 -EXPORT_SYMBOL vmlinux 0xf65f6435 xsk_clear_tx_need_wakeup -EXPORT_SYMBOL vmlinux 0xf665f74f sock_load_diag_module -EXPORT_SYMBOL vmlinux 0xf676f82a devm_mdiobus_alloc_size -EXPORT_SYMBOL vmlinux 0xf677394f put_fs_context -EXPORT_SYMBOL vmlinux 0xf680dbe3 pci_assign_resource -EXPORT_SYMBOL vmlinux 0xf68285c0 register_inetaddr_notifier -EXPORT_SYMBOL vmlinux 0xf682f8ff configfs_register_subsystem -EXPORT_SYMBOL vmlinux 0xf68a1931 phy_reset_after_clk_enable -EXPORT_SYMBOL vmlinux 0xf695c0d5 devm_of_clk_del_provider -EXPORT_SYMBOL vmlinux 0xf698d2dc cred_fscmp -EXPORT_SYMBOL vmlinux 0xf6a1a3cd mipi_dsi_generic_write -EXPORT_SYMBOL vmlinux 0xf6a59217 __skb_recv_udp -EXPORT_SYMBOL vmlinux 0xf6b2e19f pci_write_config_dword -EXPORT_SYMBOL vmlinux 0xf6d02091 pci_read_config_dword -EXPORT_SYMBOL vmlinux 0xf6d39484 dentry_open -EXPORT_SYMBOL vmlinux 0xf6d6dee8 of_get_cpu_node -EXPORT_SYMBOL vmlinux 0xf6e57911 get_user_pages -EXPORT_SYMBOL vmlinux 0xf6ebc03b net_ratelimit -EXPORT_SYMBOL vmlinux 0xf6f9d58d init_on_free -EXPORT_SYMBOL vmlinux 0xf6fc8791 __bitmap_xor -EXPORT_SYMBOL vmlinux 0xf716b357 rproc_set_firmware -EXPORT_SYMBOL vmlinux 0xf71b4be8 dev_addr_init -EXPORT_SYMBOL vmlinux 0xf723d321 con_is_bound -EXPORT_SYMBOL vmlinux 0xf72e0265 of_find_all_nodes -EXPORT_SYMBOL vmlinux 0xf738d1be register_blocking_lsm_notifier -EXPORT_SYMBOL vmlinux 0xf73dc6ab phy_get_internal_delay -EXPORT_SYMBOL vmlinux 0xf7470bb8 alloc_netdev_mqs -EXPORT_SYMBOL vmlinux 0xf76843b5 qcom_scm_pas_supported -EXPORT_SYMBOL vmlinux 0xf77337a1 hdmi_audio_infoframe_check -EXPORT_SYMBOL vmlinux 0xf77555cd __memcpy_toio -EXPORT_SYMBOL vmlinux 0xf77d1e19 vlan_filter_drop_vids -EXPORT_SYMBOL vmlinux 0xf7961c09 _dev_info -EXPORT_SYMBOL vmlinux 0xf7c29dfb page_cache_next_miss -EXPORT_SYMBOL vmlinux 0xf7c48778 __tracepoint_kmalloc_node -EXPORT_SYMBOL vmlinux 0xf7c947fc configfs_remove_default_groups -EXPORT_SYMBOL vmlinux 0xf7cde598 noop_qdisc -EXPORT_SYMBOL vmlinux 0xf7d21963 __destroy_inode -EXPORT_SYMBOL vmlinux 0xf7d31de9 kstrtoul_from_user -EXPORT_SYMBOL vmlinux 0xf7da6e6f acpi_unload_table -EXPORT_SYMBOL vmlinux 0xf7ea6311 qman_p_poll_dqrr -EXPORT_SYMBOL vmlinux 0xf7eac433 sock_init_data_uid -EXPORT_SYMBOL vmlinux 0xf7eb262b tty_port_lower_dtr_rts -EXPORT_SYMBOL vmlinux 0xf7f05c17 fman_port_use_kg_hash -EXPORT_SYMBOL vmlinux 0xf7f85446 pin_user_pages_unlocked -EXPORT_SYMBOL vmlinux 0xf7fe96b8 tcp_v4_md5_hash_skb -EXPORT_SYMBOL vmlinux 0xf8020ae6 jbd2_journal_init_dev -EXPORT_SYMBOL vmlinux 0xf811e69d scsi_eh_flush_done_q -EXPORT_SYMBOL vmlinux 0xf812cff6 memscan -EXPORT_SYMBOL vmlinux 0xf82abc1d isa_dma_bridge_buggy -EXPORT_SYMBOL vmlinux 0xf82ec573 rb_prev -EXPORT_SYMBOL vmlinux 0xf8346549 tegra_ivc_notified -EXPORT_SYMBOL vmlinux 0xf83fc8ec generic_write_end -EXPORT_SYMBOL vmlinux 0xf84bd6ee bpf_stats_enabled_key -EXPORT_SYMBOL vmlinux 0xf862930f blkdev_issue_flush -EXPORT_SYMBOL vmlinux 0xf869436f truncate_inode_pages_range -EXPORT_SYMBOL vmlinux 0xf87671ba nf_register_net_hook -EXPORT_SYMBOL vmlinux 0xf888ca21 sg_init_table -EXPORT_SYMBOL vmlinux 0xf88c8a83 vlan_ioctl_set -EXPORT_SYMBOL vmlinux 0xf8acbb95 devm_devfreq_unregister_notifier -EXPORT_SYMBOL vmlinux 0xf8acd2d0 console_start -EXPORT_SYMBOL vmlinux 0xf8b36670 serio_unregister_child_port -EXPORT_SYMBOL vmlinux 0xf8bf8e22 ZSTD_DDictWorkspaceBound -EXPORT_SYMBOL vmlinux 0xf8d05be8 t10_pi_type3_crc -EXPORT_SYMBOL vmlinux 0xf8d07858 bitmap_from_arr32 -EXPORT_SYMBOL vmlinux 0xf8e0e7a9 of_cpu_node_to_id -EXPORT_SYMBOL vmlinux 0xf8f61ebc wake_up_var -EXPORT_SYMBOL vmlinux 0xf8fce08a pci_get_class -EXPORT_SYMBOL vmlinux 0xf91b89ab fman_sp_build_buffer_struct -EXPORT_SYMBOL vmlinux 0xf91f13d9 acpi_pm_device_sleep_state -EXPORT_SYMBOL vmlinux 0xf93aae46 __arm_smccc_smc -EXPORT_SYMBOL vmlinux 0xf93bb95f xfrm_find_acq_byseq -EXPORT_SYMBOL vmlinux 0xf93fd09c fb_find_mode_cvt -EXPORT_SYMBOL vmlinux 0xf9498d5b xfrm6_rcv_spi -EXPORT_SYMBOL vmlinux 0xf94b6ef7 filp_open -EXPORT_SYMBOL vmlinux 0xf95ac67b ip6_fraglist_init -EXPORT_SYMBOL vmlinux 0xf95c619b acpi_processor_preregister_performance -EXPORT_SYMBOL vmlinux 0xf963555e sock_no_sendmsg_locked -EXPORT_SYMBOL vmlinux 0xf96f2422 inode_owner_or_capable -EXPORT_SYMBOL vmlinux 0xf971cea8 utf8len -EXPORT_SYMBOL vmlinux 0xf9722676 twl_i2c_write -EXPORT_SYMBOL vmlinux 0xf999f207 cookie_ecn_ok -EXPORT_SYMBOL vmlinux 0xf9a482f9 msleep -EXPORT_SYMBOL vmlinux 0xf9a4d6e3 of_parse_phandle_with_fixed_args -EXPORT_SYMBOL vmlinux 0xf9b0d7ac xp_set_rxq_info -EXPORT_SYMBOL vmlinux 0xf9b200a7 nf_log_bind_pf -EXPORT_SYMBOL vmlinux 0xf9bc7632 nf_log_unset -EXPORT_SYMBOL vmlinux 0xf9c0b663 strlcat -EXPORT_SYMBOL vmlinux 0xf9c1b241 security_binder_transaction -EXPORT_SYMBOL vmlinux 0xf9ca2eb4 kstrtoint_from_user -EXPORT_SYMBOL vmlinux 0xf9cc7627 dev_graft_qdisc -EXPORT_SYMBOL vmlinux 0xf9e2184e blk_queue_max_write_same_sectors -EXPORT_SYMBOL vmlinux 0xf9eba8b1 __cleancache_init_fs -EXPORT_SYMBOL vmlinux 0xf9ebb93b tcp_fastopen_defer_connect -EXPORT_SYMBOL vmlinux 0xf9f6a50a dcbnl_cee_notify -EXPORT_SYMBOL vmlinux 0xf9fbda5c napi_gro_flush -EXPORT_SYMBOL vmlinux 0xfa042227 gnet_stats_add_basic -EXPORT_SYMBOL vmlinux 0xfa08c34a page_offline_end -EXPORT_SYMBOL vmlinux 0xfa16e77e qdisc_create_dflt -EXPORT_SYMBOL vmlinux 0xfa297415 acpi_map_pxm_to_node -EXPORT_SYMBOL vmlinux 0xfa2be462 tty_driver_flush_buffer -EXPORT_SYMBOL vmlinux 0xfa2e5f32 i2c_smbus_pec -EXPORT_SYMBOL vmlinux 0xfa4090e0 netdev_rx_csum_fault -EXPORT_SYMBOL vmlinux 0xfa4fe69f sync_dirty_buffer -EXPORT_SYMBOL vmlinux 0xfa56a560 d_drop -EXPORT_SYMBOL vmlinux 0xfa599bb2 netlink_register_notifier -EXPORT_SYMBOL vmlinux 0xfa5b3b53 gnet_stats_copy_basic_hw -EXPORT_SYMBOL vmlinux 0xfa873ad0 prandom_seed -EXPORT_SYMBOL vmlinux 0xfa98b6c0 md_update_sb -EXPORT_SYMBOL vmlinux 0xfaa4f115 ether_setup -EXPORT_SYMBOL vmlinux 0xfaaa12d0 _page_poisoning_enabled -EXPORT_SYMBOL vmlinux 0xfaac6d93 tty_port_tty_get -EXPORT_SYMBOL vmlinux 0xfac8865f sysctl_wmem_max -EXPORT_SYMBOL vmlinux 0xfacd8c28 nla_put -EXPORT_SYMBOL vmlinux 0xfad026bf blkdev_issue_zeroout -EXPORT_SYMBOL vmlinux 0xfad0c264 __ip_dev_find -EXPORT_SYMBOL vmlinux 0xfad6202e pci_set_power_state -EXPORT_SYMBOL vmlinux 0xfae18a4d blk_queue_split -EXPORT_SYMBOL vmlinux 0xfae5a31d tcp_recvmsg -EXPORT_SYMBOL vmlinux 0xfaf6f50f icmpv6_ndo_send -EXPORT_SYMBOL vmlinux 0xfb0d84f8 blk_queue_virt_boundary -EXPORT_SYMBOL vmlinux 0xfb348fea fault_in_safe_writeable -EXPORT_SYMBOL vmlinux 0xfb384d37 kasprintf -EXPORT_SYMBOL vmlinux 0xfb3a821e jbd2_journal_get_undo_access -EXPORT_SYMBOL vmlinux 0xfb4b6d00 jbd2_journal_set_triggers -EXPORT_SYMBOL vmlinux 0xfb4ed38f lease_modify -EXPORT_SYMBOL vmlinux 0xfb5adda7 security_path_mkdir -EXPORT_SYMBOL vmlinux 0xfb6af58d recalc_sigpending -EXPORT_SYMBOL vmlinux 0xfb790c11 pcim_pin_device -EXPORT_SYMBOL vmlinux 0xfb7afb2e inet_protos -EXPORT_SYMBOL vmlinux 0xfb837d7b vlan_dev_real_dev -EXPORT_SYMBOL vmlinux 0xfba0893f ptp_clock_index -EXPORT_SYMBOL vmlinux 0xfba61bce i2c_smbus_read_i2c_block_data -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 0xfbba3b8e ip_generic_getfrag -EXPORT_SYMBOL vmlinux 0xfbbb1467 tc_setup_cb_add -EXPORT_SYMBOL vmlinux 0xfbbb1cf0 __mod_node_page_state -EXPORT_SYMBOL vmlinux 0xfbc37f6c vga_put -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 0xfc051b6e devm_register_reboot_notifier -EXPORT_SYMBOL vmlinux 0xfc1eecfd security_binder_transfer_file -EXPORT_SYMBOL vmlinux 0xfc2012a1 skb_flow_dissect_hash -EXPORT_SYMBOL vmlinux 0xfc26a4b5 xfrm_lookup_with_ifid -EXPORT_SYMBOL vmlinux 0xfc26c174 filemap_invalidate_unlock_two -EXPORT_SYMBOL vmlinux 0xfc36d138 sock_set_priority -EXPORT_SYMBOL vmlinux 0xfc399557 utf8_load -EXPORT_SYMBOL vmlinux 0xfc3ca995 iproc_msi_exit -EXPORT_SYMBOL vmlinux 0xfc40ab5c update_region -EXPORT_SYMBOL vmlinux 0xfc4152fc ec_read -EXPORT_SYMBOL vmlinux 0xfc421e79 gnet_stats_add_queue -EXPORT_SYMBOL vmlinux 0xfc52abc7 qcom_scm_pas_shutdown -EXPORT_SYMBOL vmlinux 0xfc61fd98 frontswap_register_ops -EXPORT_SYMBOL vmlinux 0xfc881b89 fman_port_get_hash_result_offset -EXPORT_SYMBOL vmlinux 0xfc92637a dma_sync_single_for_cpu -EXPORT_SYMBOL vmlinux 0xfc9bd79a node_data -EXPORT_SYMBOL vmlinux 0xfc9ed8c3 qcom_scm_ice_available -EXPORT_SYMBOL vmlinux 0xfca0951e nd_region_to_nstype -EXPORT_SYMBOL vmlinux 0xfca27dc6 lru_cache_add -EXPORT_SYMBOL vmlinux 0xfcbdfa1b __page_symlink -EXPORT_SYMBOL vmlinux 0xfcc04c3b in_dev_finish_destroy -EXPORT_SYMBOL vmlinux 0xfcc94d0c datagram_poll -EXPORT_SYMBOL vmlinux 0xfcce2f7d ucc_fast_enable -EXPORT_SYMBOL vmlinux 0xfcd0364b fscrypt_has_permitted_context -EXPORT_SYMBOL vmlinux 0xfcd1819a hdmi_spd_infoframe_check -EXPORT_SYMBOL vmlinux 0xfcec0987 enable_irq -EXPORT_SYMBOL vmlinux 0xfced4531 scsi_alloc_sgtables -EXPORT_SYMBOL vmlinux 0xfcede6fe mii_ethtool_gset -EXPORT_SYMBOL vmlinux 0xfcff0a01 kthread_create_on_cpu -EXPORT_SYMBOL vmlinux 0xfcff47f0 simple_dentry_operations -EXPORT_SYMBOL vmlinux 0xfd084115 dst_init -EXPORT_SYMBOL vmlinux 0xfd08d8f4 touchscreen_parse_properties -EXPORT_SYMBOL vmlinux 0xfd25d3bb dmam_alloc_attrs -EXPORT_SYMBOL vmlinux 0xfd274a58 xfrm4_protocol_deregister -EXPORT_SYMBOL vmlinux 0xfd465222 sdev_disable_disk_events -EXPORT_SYMBOL vmlinux 0xfd492f11 ipv6_chk_addr_and_flags -EXPORT_SYMBOL vmlinux 0xfd4b1b42 scsi_block_when_processing_errors -EXPORT_SYMBOL vmlinux 0xfd62f80f ip_sock_set_recverr -EXPORT_SYMBOL vmlinux 0xfd6f1227 register_sysctl_table -EXPORT_SYMBOL vmlinux 0xfd8fd939 fifo_create_dflt -EXPORT_SYMBOL vmlinux 0xfd9aafef param_get_ullong -EXPORT_SYMBOL vmlinux 0xfd9dbb8b vmf_insert_pfn -EXPORT_SYMBOL vmlinux 0xfda9581f prandom_u32 -EXPORT_SYMBOL vmlinux 0xfdb8d346 iov_iter_pipe -EXPORT_SYMBOL vmlinux 0xfdc65be8 qdisc_reset -EXPORT_SYMBOL vmlinux 0xfdc8ce34 cdrom_number_of_slots -EXPORT_SYMBOL vmlinux 0xfdcb4ed3 acpi_os_get_line -EXPORT_SYMBOL vmlinux 0xfdcc8a0e fb_find_best_display -EXPORT_SYMBOL vmlinux 0xfdcd0ad3 security_inode_invalidate_secctx -EXPORT_SYMBOL vmlinux 0xfdce23e3 rt_dst_clone -EXPORT_SYMBOL vmlinux 0xfdd507fb unlock_page -EXPORT_SYMBOL vmlinux 0xfe029963 unregister_inetaddr_notifier -EXPORT_SYMBOL vmlinux 0xfe18650e key_instantiate_and_link -EXPORT_SYMBOL vmlinux 0xfe1d2e94 key_create_or_update -EXPORT_SYMBOL vmlinux 0xfe23f9dc __bio_clone_fast -EXPORT_SYMBOL vmlinux 0xfe25314f mmc_can_trim -EXPORT_SYMBOL vmlinux 0xfe2bfd23 inet_csk_reqsk_queue_drop_and_put -EXPORT_SYMBOL vmlinux 0xfe487975 init_wait_entry -EXPORT_SYMBOL vmlinux 0xfe489f34 sync_inodes_sb -EXPORT_SYMBOL vmlinux 0xfe5d4bb2 sys_tz -EXPORT_SYMBOL vmlinux 0xfe71ba16 keyring_alloc -EXPORT_SYMBOL vmlinux 0xfe8314a1 request_firmware_into_buf -EXPORT_SYMBOL vmlinux 0xfe836e86 ps2_sendbyte -EXPORT_SYMBOL vmlinux 0xfe916dc6 hex_dump_to_buffer -EXPORT_SYMBOL vmlinux 0xfe9ebbbb acpi_osi_is_win8 -EXPORT_SYMBOL vmlinux 0xfea48f6e pcie_capability_write_word -EXPORT_SYMBOL vmlinux 0xfeace48b devm_register_netdev -EXPORT_SYMBOL vmlinux 0xfeb5d0aa verify_spi_info -EXPORT_SYMBOL vmlinux 0xfed060a9 of_graph_get_port_by_id -EXPORT_SYMBOL vmlinux 0xfedcdb60 seq_hlist_next_percpu -EXPORT_SYMBOL vmlinux 0xfeebc7c4 __kfifo_from_user_r -EXPORT_SYMBOL vmlinux 0xfef216eb _raw_spin_trylock -EXPORT_SYMBOL vmlinux 0xfefb7cdd netpoll_send_udp -EXPORT_SYMBOL vmlinux 0xfefcb98e vme_dma_vme_attribute -EXPORT_SYMBOL vmlinux 0xff078ea2 register_nexthop_notifier -EXPORT_SYMBOL vmlinux 0xff13bb76 bpf_prog_get_type_path -EXPORT_SYMBOL vmlinux 0xff1e8742 refresh_frequency_limits -EXPORT_SYMBOL vmlinux 0xff1e9dd8 seq_list_start -EXPORT_SYMBOL vmlinux 0xff1f8784 md_write_start -EXPORT_SYMBOL vmlinux 0xff202142 lookup_one_len -EXPORT_SYMBOL vmlinux 0xff282521 rfkill_register -EXPORT_SYMBOL vmlinux 0xff3f7336 tty_insert_flip_string_flags -EXPORT_SYMBOL vmlinux 0xff641304 set_page_dirty_lock -EXPORT_SYMBOL vmlinux 0xff6878cf fb_default_cmap -EXPORT_SYMBOL vmlinux 0xff6c04a4 param_set_ushort -EXPORT_SYMBOL vmlinux 0xff7e7f8d kryo_l2_set_indirect_reg -EXPORT_SYMBOL vmlinux 0xffacd3e7 tcf_exts_destroy -EXPORT_SYMBOL vmlinux 0xffb420e2 filemap_fdatawrite -EXPORT_SYMBOL vmlinux 0xffc90b8f acpi_get_hp_hw_control_from_firmware -EXPORT_SYMBOL vmlinux 0xffcc4ec7 tcp_bpf_bypass_getsockopt -EXPORT_SYMBOL vmlinux 0xffdfeb77 fc_mount -EXPORT_SYMBOL vmlinux 0xffe17395 __skb_gso_segment -EXPORT_SYMBOL vmlinux 0xffead8af key_type_keyring -EXPORT_SYMBOL vmlinux 0xffeedf6a delayed_work_timer_fn -EXPORT_SYMBOL vmlinux 0xfff1df97 generic_error_remove_page -EXPORT_SYMBOL vmlinux 0xfff749f0 dqget -EXPORT_SYMBOL_GPL crypto/af_alg 0x2894f567 af_alg_unregister_type -EXPORT_SYMBOL_GPL crypto/af_alg 0x2b13f615 af_alg_async_cb -EXPORT_SYMBOL_GPL crypto/af_alg 0x306b8e79 af_alg_release -EXPORT_SYMBOL_GPL crypto/af_alg 0x41056ee7 af_alg_count_tsgl -EXPORT_SYMBOL_GPL crypto/af_alg 0x5cf92137 af_alg_release_parent -EXPORT_SYMBOL_GPL crypto/af_alg 0x74dab163 af_alg_free_sg -EXPORT_SYMBOL_GPL crypto/af_alg 0x7c771338 af_alg_register_type -EXPORT_SYMBOL_GPL crypto/af_alg 0x81067d6e af_alg_sendmsg -EXPORT_SYMBOL_GPL crypto/af_alg 0x98dd3dd4 af_alg_wmem_wakeup -EXPORT_SYMBOL_GPL crypto/af_alg 0xa5fe10ae af_alg_accept -EXPORT_SYMBOL_GPL crypto/af_alg 0xada02f75 af_alg_alloc_areq -EXPORT_SYMBOL_GPL crypto/af_alg 0xb128bc22 af_alg_sendpage -EXPORT_SYMBOL_GPL crypto/af_alg 0xb5614a60 af_alg_free_resources -EXPORT_SYMBOL_GPL crypto/af_alg 0xc3210ede af_alg_get_rsgl -EXPORT_SYMBOL_GPL crypto/af_alg 0xd0a1a52f af_alg_wait_for_data -EXPORT_SYMBOL_GPL crypto/af_alg 0xdd9f5c93 af_alg_pull_tsgl -EXPORT_SYMBOL_GPL crypto/af_alg 0xe27d78a9 af_alg_poll -EXPORT_SYMBOL_GPL crypto/af_alg 0xf57fd5ce af_alg_make_sg -EXPORT_SYMBOL_GPL crypto/asymmetric_keys/asym_tpm 0x7430f97c tpm_key_create -EXPORT_SYMBOL_GPL crypto/asymmetric_keys/asym_tpm 0x8779b4fd asym_tpm_subtype -EXPORT_SYMBOL_GPL crypto/async_tx/async_memcpy 0x444913f9 async_memcpy -EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0x144f0a89 async_gen_syndrome -EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0x2e287091 async_syndrome_val -EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0x40286857 async_raid6_datap_recov -EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0x8fd4c76f async_raid6_2data_recov -EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x219f9e28 async_trigger_callback -EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x657a8772 async_tx_submit -EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0xe45efc28 __async_tx_find_channel -EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0xf4ec8edb async_tx_quiesce -EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x09d7aa8a async_xor_val_offs -EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x3766a983 async_xor -EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x435d7b0d async_xor_offs -EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0xc624483d async_xor_val -EXPORT_SYMBOL_GPL crypto/authenc 0x2479193e crypto_authenc_extractkeys -EXPORT_SYMBOL_GPL crypto/blowfish_common 0x596b125c blowfish_setkey -EXPORT_SYMBOL_GPL crypto/cast5_generic 0x188d9d26 __cast5_decrypt -EXPORT_SYMBOL_GPL crypto/cast5_generic 0x40544b55 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 0xc8b046de 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 0x075b2ae7 cryptd_free_ahash -EXPORT_SYMBOL_GPL crypto/cryptd 0x26e3c605 cryptd_alloc_ahash -EXPORT_SYMBOL_GPL crypto/cryptd 0x3136e2df cryptd_free_aead -EXPORT_SYMBOL_GPL crypto/cryptd 0x39ad0403 cryptd_aead_child -EXPORT_SYMBOL_GPL crypto/cryptd 0x476bb1e0 cryptd_skcipher_child -EXPORT_SYMBOL_GPL crypto/cryptd 0x5c02ef26 cryptd_ahash_queued -EXPORT_SYMBOL_GPL crypto/cryptd 0xb5b7fa91 cryptd_alloc_skcipher -EXPORT_SYMBOL_GPL crypto/cryptd 0xc185547e cryptd_aead_queued -EXPORT_SYMBOL_GPL crypto/cryptd 0xc36f7c42 cryptd_skcipher_queued -EXPORT_SYMBOL_GPL crypto/cryptd 0xd7a698d7 cryptd_alloc_aead -EXPORT_SYMBOL_GPL crypto/cryptd 0xdacae41b cryptd_ahash_child -EXPORT_SYMBOL_GPL crypto/cryptd 0xdd0d4d94 cryptd_shash_desc -EXPORT_SYMBOL_GPL crypto/cryptd 0xfda11c15 cryptd_free_skcipher -EXPORT_SYMBOL_GPL crypto/crypto_engine 0x023d1bf8 crypto_engine_alloc_init -EXPORT_SYMBOL_GPL crypto/crypto_engine 0x04f28ded crypto_engine_alloc_init_and_set -EXPORT_SYMBOL_GPL crypto/crypto_engine 0x2ae17664 crypto_finalize_skcipher_request -EXPORT_SYMBOL_GPL crypto/crypto_engine 0x493bc9cd crypto_finalize_hash_request -EXPORT_SYMBOL_GPL crypto/crypto_engine 0x4a8935a3 crypto_finalize_akcipher_request -EXPORT_SYMBOL_GPL crypto/crypto_engine 0x4c26b56f crypto_engine_stop -EXPORT_SYMBOL_GPL crypto/crypto_engine 0x7c586a9a crypto_transfer_aead_request_to_engine -EXPORT_SYMBOL_GPL crypto/crypto_engine 0x9681c59b crypto_transfer_hash_request_to_engine -EXPORT_SYMBOL_GPL crypto/crypto_engine 0xb04f32bf crypto_transfer_skcipher_request_to_engine -EXPORT_SYMBOL_GPL crypto/crypto_engine 0xcc8766cb crypto_finalize_aead_request -EXPORT_SYMBOL_GPL crypto/crypto_engine 0xcfec03c3 crypto_engine_exit -EXPORT_SYMBOL_GPL crypto/crypto_engine 0xd82712b9 crypto_engine_start -EXPORT_SYMBOL_GPL crypto/crypto_engine 0xfbebfb96 crypto_transfer_akcipher_request_to_engine -EXPORT_SYMBOL_GPL crypto/crypto_simd 0x0febc4be simd_unregister_aeads -EXPORT_SYMBOL_GPL crypto/crypto_simd 0x1245811a simd_register_skciphers_compat -EXPORT_SYMBOL_GPL crypto/crypto_simd 0x4878a883 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 0xbfd26f15 simd_aead_free -EXPORT_SYMBOL_GPL crypto/crypto_simd 0xdb0fe886 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 0x7f6ca346 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 0x537cb557 twofish_setkey -EXPORT_SYMBOL_GPL crypto/twofish_common 0xe22b7787 __twofish_setkey -EXPORT_SYMBOL_GPL drivers/acpi/nfit/nfit 0x4639bcda acpi_nfit_shutdown -EXPORT_SYMBOL_GPL drivers/acpi/nfit/nfit 0x499bbf57 nfit_get_smbios_id -EXPORT_SYMBOL_GPL drivers/acpi/nfit/nfit 0x7d47a215 acpi_nfit_ctl -EXPORT_SYMBOL_GPL drivers/acpi/nfit/nfit 0x9dd1d33f acpi_nfit_desc_init -EXPORT_SYMBOL_GPL drivers/acpi/nfit/nfit 0xbce149a4 acpi_nfit_init -EXPORT_SYMBOL_GPL drivers/acpi/nfit/nfit 0xda4c2881 __acpi_nvdimm_notify -EXPORT_SYMBOL_GPL drivers/acpi/nfit/nfit 0xeb6a68db __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 0x8ab57fcf __pata_platform_probe -EXPORT_SYMBOL_GPL drivers/ata/pata_sis 0x4c6e968f 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 0x26664ce4 __regmap_init_ac97 -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-ac97 0x3a4ce6b1 regmap_ac97_default_volatile -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-ac97 0xfb474589 __devm_regmap_init_ac97 -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-i3c 0xe2789e8b __devm_regmap_init_i3c -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sccb 0x378da9f2 __devm_regmap_init_sccb -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sccb 0x7d02150e __regmap_init_sccb -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sdw 0x59c99ecf __devm_regmap_init_sdw -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sdw 0xb1d6b743 __regmap_init_sdw -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sdw-mbq 0x39e6b021 __regmap_init_sdw_mbq -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sdw-mbq 0xca7ea019 __devm_regmap_init_sdw_mbq -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-slimbus 0x3aa26095 __devm_regmap_init_slimbus -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-slimbus 0x5d481831 __regmap_init_slimbus -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spi-avmm 0x7351c41b __regmap_init_spi_avmm -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spi-avmm 0xb2f93765 __devm_regmap_init_spi_avmm -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x1ad107fb __devm_regmap_init_spmi_base -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x4e9a4f99 __devm_regmap_init_spmi_ext -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x8a321c68 __regmap_init_spmi_ext -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0xd0af6d22 __regmap_init_spmi_base -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-w1 0xc47651ef __devm_regmap_init_w1 -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-w1 0xe0c21a49 __regmap_init_w1 -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x253a2e21 bcma_chipco_pll_write -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x2d6a8ce8 bcma_chipco_pll_read -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x494f3bc7 bcma_pmu_spuravoid_pllupdate -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x50921c8a bcma_host_pci_up -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x51afddbc bcma_core_set_clockmode -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x5ebf71ee bcma_chipco_regctl_maskset -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x626a47b2 bcma_chipco_get_alp_clock -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x68db16f2 bcma_pmu_get_bus_clock -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x7fc7c5b7 bcma_core_pll_ctl -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x92c5bbd2 bcma_driver_unregister -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x9a1fea25 bcma_chipco_pll_maskset -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xa8e3fb8c bcma_chipco_b_mii_write -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xb589acdc bcma_chipco_gpio_outen -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xb70e2823 __bcma_driver_register -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xbb29c049 bcma_core_pci_power_save -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xbd23b146 bcma_core_disable -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xd706ee75 bcma_host_pci_down -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xd73e0e37 bcma_host_pci_irq_ctl -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xd92c67b3 bcma_core_is_enabled -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xdb100aab bcma_chipco_gpio_out -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xdba49ba8 bcma_find_core_unit -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xe45b1425 bcma_chipco_chipctl_maskset -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xe7e341e0 bcma_core_enable -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xfebe12c2 bcma_chipco_gpio_control -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x09da9042 btbcm_setup_patchram -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x0ed8fbb7 btbcm_write_pcm_int_params -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x6ceb7fce btbcm_set_bdaddr -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x79e252b6 btbcm_initialize -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x7f04e4d0 btbcm_read_pcm_int_params -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xad4c26b9 btbcm_finalize -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xebcddc84 btbcm_check_bdaddr -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xefbe23ea btbcm_setup_apple -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x017fad13 btintel_read_version -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x043ee129 btintel_load_ddc_config -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x1a087d46 btintel_set_bdaddr -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x24e5e3f5 btintel_check_bdaddr -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x2f342f48 btintel_read_boot_params -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x5ffcf4e3 btintel_download_firmware -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x89b5e1fe btintel_configure_setup -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x9d00382f btintel_send_intel_reset -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xa6534f42 btintel_secure_send_result -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xbc7e4a8d btintel_regmap_init -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xce989b5b btintel_set_event_mask_mfg -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xcf8e1b41 btintel_enter_mfg -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xde9d48c5 btintel_version_info -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xe35c3e3f btintel_bootup -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xe3eaadd3 btintel_exit_mfg -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xffd1a34f btintel_set_diag -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x18f67d36 btmrvl_interrupt -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x2e435f3a btmrvl_register_hdev -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x3a567f88 btmrvl_process_event -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x4e7b2509 btmrvl_remove_card -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x8d0bdd80 btmrvl_pscan_window_reporting -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x948872a6 btmrvl_enable_ps -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xb4241fa2 btmrvl_enable_hs -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xbf19164c btmrvl_add_card -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xc9ed9b89 btmrvl_send_hscfg_cmd -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xd42fa7b8 btmrvl_check_evtpkt -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xf287eed4 btmrvl_send_module_cfg_cmd -EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x276ed7bc qca_send_pre_shutdown_cmd -EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x590fa629 qca_set_bdaddr -EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x70a2ac80 qca_read_soc_version -EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x7a4a6baa qca_uart_setup -EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0xd56fca88 qca_set_bdaddr_rome -EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x07cbcbd9 btrtl_shutdown_realtek -EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x14b81261 btrtl_download_firmware -EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x48acce03 btrtl_get_uart_settings -EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x5d533937 btrtl_setup_realtek -EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x75c9fe0b btrtl_set_quirks -EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x81889622 btrtl_initialize -EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0xaf78f260 btrtl_free -EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0x3a55bf2b hci_uart_unregister_device -EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0x936b279e hci_uart_register_device -EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0xb81006df h4_recv_buf -EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0xf5a74c54 hci_uart_tx_wakeup -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x087c8546 mhi_force_rddm_mode -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x0a8dee55 mhi_queue_buf -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x16a4bcdc mhi_pm_suspend -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x1bc1e038 mhi_device_get_sync -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x2b73fd02 mhi_device_put -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x31d50939 mhi_get_mhi_state -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x3cdd8ef1 mhi_queue_skb -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x48a64198 mhi_register_controller -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x58c63ed2 mhi_alloc_controller -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x5e86361b mhi_download_rddm_image -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x61cd12d9 mhi_pm_resume_force -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x61e272c4 mhi_unprepare_from_transfer -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x64628ea2 mhi_notify -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x6897f22c mhi_unprepare_after_power_down -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x741e14ea mhi_get_exec_env -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x75b7c724 mhi_free_controller -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x75ba0a50 mhi_pm_resume -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x775d3772 mhi_prepare_for_power_up -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x7bc5282e mhi_queue_is_full -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x9a6db123 mhi_power_down -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x9e0e54c7 mhi_prepare_for_transfer -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xaa4626ac mhi_driver_unregister -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xaf735a90 mhi_get_free_desc_count -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xc6fbc5a1 __mhi_driver_register -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xc96f4e04 mhi_poll -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xd8ff5154 mhi_unregister_controller -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xe4a94ff5 mhi_device_get -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xee7bd53e mhi_async_power_up -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xf2a121a0 mhi_queue_dma -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xf2c21151 mhi_soc_reset -EXPORT_SYMBOL_GPL drivers/bus/moxtet 0x0d645d05 __moxtet_register_driver -EXPORT_SYMBOL_GPL drivers/bus/moxtet 0x3bf0aca2 moxtet_device_written -EXPORT_SYMBOL_GPL drivers/bus/moxtet 0xa25338fc moxtet_device_read -EXPORT_SYMBOL_GPL drivers/bus/moxtet 0xa264d2d0 moxtet_device_write -EXPORT_SYMBOL_GPL drivers/bus/sunxi-rsb 0x2d8d3309 sunxi_rsb_driver_register -EXPORT_SYMBOL_GPL drivers/bus/sunxi-rsb 0x92ba299f __devm_regmap_init_sunxi_rsb -EXPORT_SYMBOL_GPL drivers/clk/meson/clk-phase 0x7b983126 meson_clk_triphase_ops -EXPORT_SYMBOL_GPL drivers/clk/meson/clk-phase 0xbedab064 meson_clk_phase_ops -EXPORT_SYMBOL_GPL drivers/clk/meson/clk-phase 0xfc42a9d3 meson_sclk_ws_inv_ops -EXPORT_SYMBOL_GPL drivers/clk/meson/sclk-div 0xec3062b1 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 0x065b8bad qcom_cc_register_sleep_clk -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 0x1aa3beb2 qcom_cc_register_board_clk -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x20796d46 clk_trion_pll_configure -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x24a7abf5 clk_zonda_pll_configure -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x272f3204 clk_alpha_pll_fixed_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x2a9c7452 clk_rcg_lcc_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x2b0d957d clk_pixel_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x2cae96b3 clk_regmap_div_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x30bbf987 clk_rcg2_shared_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x310b6341 clk_regmap_mux_closest_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x3747af55 clk_rcg_bypass2_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x395868a1 qcom_find_freq_floor -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x3dfc2dc5 clk_branch_simple_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x405d394a clk_alpha_pll_postdiv_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x418e9cfd clk_pll_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x4b0ed6da clk_ops_hfpll -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x5111f2ad clk_rcg2_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x520df3b7 clk_rcg_esc_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x57172323 clk_byte_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x5a6ae327 clk_alpha_pll_configure -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x5e6abb22 mux_div_set_src_div -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x615dbb77 clk_branch2_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x631939a9 clk_branch2_aon_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x63b79092 qcom_cc_map -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 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 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 0xb53834d7 gdsc_gx_do_nothing_enable -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xb5b4b1f5 qcom_cc_probe -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 0xc53660ce qcom_find_src_index -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 0xc998cdbc qcom_cc_really_probe -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xcb3f75bc devm_clk_register_regmap -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xcf422970 clk_rcg_bypass_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xd438c1c3 clk_alpha_pll_postdiv_trion_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 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 0xeba252f0 qcom_find_cfg_index -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xf73de6aa qcom_cc_probe_by_index -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 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 0x57b3ffb1 sprd_clk_regmap_init -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 0x809132d8 sprd_clk_probe -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 0x0ad2b4b8 comedi_set_spriv_auto_free -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x0b3c8511 comedi_set_hw_dev -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x0b63663e comedi_buf_write_free -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x0cd330f4 range_unknown -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x0ff69e9f comedi_request_region -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x11405f14 comedi_driver_unregister -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x13a129fe comedi_event -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x1715dbaa comedi_dev_get_from_minor -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x191a92a3 comedi_alloc_devpriv -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x21102f87 range_0_32mA -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x2f0ad9d3 range_bipolar5 -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x3310c641 comedi_alloc_spriv -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x3558b529 comedi_readback_insn_read -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x4236eaaf range_4_20mA -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x47f96f36 comedi_nsamples_left -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x49557472 comedi_inc_scan_progress -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x4fe634f3 range_bipolar2_5 -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x54f793b9 comedi_bytes_per_scan_cmd -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x746d53ee comedi_auto_unconfig -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x76cd588b comedi_dio_insn_config -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x77e8546c comedi_dev_put -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x7ac3779f comedi_buf_write_samples -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x7e810927 comedi_check_chanlist -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x8113872c range_unipolar10 -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x857ad747 comedi_auto_config -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x8616a4ce comedi_buf_read_n_available -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x88030c93 comedi_driver_register -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x8a3bac8b comedi_timeout -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x929ee7d6 comedi_buf_write_alloc -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x9a137592 comedi_nscans_left -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x9d1df1a4 comedi_alloc_subdevices -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xa93863f2 comedi_handle_events -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xaa1e31c5 __comedi_request_region -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 0xbf7e0871 comedi_bytes_per_scan -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xc11db078 comedi_buf_read_samples -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xc1c113fa comedi_dio_update_state -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xd795fc61 comedi_buf_read_alloc -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xd9002ca3 comedi_load_firmware -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xdb2044b2 range_unipolar5 -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xdd17151a comedi_legacy_detach -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xdf24a413 comedi_buf_read_free -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xe289d457 comedi_alloc_subdev_readback -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xfcdd0068 comedi_is_subdevice_running -EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x0c632c28 comedi_to_pci_dev -EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x149b75b8 comedi_pci_auto_unconfig -EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x1cc00c76 comedi_pci_driver_unregister -EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x5ecf6813 comedi_pci_driver_register -EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0xa51c8eee comedi_pci_auto_config -EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0xaf8f0a4a comedi_pci_disable -EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0xb4734dcc comedi_pci_detach -EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0xe38001ba comedi_pci_enable -EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0x4c9a65e9 comedi_usb_driver_unregister -EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0x5c78c0cb comedi_to_usb_dev -EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0x814973ec comedi_usb_auto_unconfig -EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0x8d3d6f4a comedi_to_usb_interface -EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0xce7a1f7f comedi_usb_auto_config -EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0xe92b5c5c comedi_usb_driver_register -EXPORT_SYMBOL_GPL drivers/comedi/drivers/addi_watchdog 0x79f4a6cf addi_watchdog_reset -EXPORT_SYMBOL_GPL drivers/comedi/drivers/addi_watchdog 0x81f2de02 addi_watchdog_init -EXPORT_SYMBOL_GPL drivers/comedi/drivers/amplc_dio200_common 0x64b775b4 amplc_dio200_common_attach -EXPORT_SYMBOL_GPL drivers/comedi/drivers/amplc_dio200_common 0xcdbbffb1 amplc_dio200_set_enhance -EXPORT_SYMBOL_GPL drivers/comedi/drivers/amplc_pc236_common 0x0b6af86e amplc_pc236_common_attach -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x1890cba0 comedi_8254_set_mode -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x5499b18f comedi_8254_read -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x6f16a949 comedi_8254_subdevice_init -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x7521d68d comedi_8254_status -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x7badacf2 comedi_8254_load -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x9a09d2a4 comedi_8254_mm_init -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x9f390479 comedi_8254_write -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0xb32c9df9 comedi_8254_init -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0xc752fca7 comedi_8254_update_divisors -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0xca977330 comedi_8254_cascade_ns_to_timer -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0xd3534a4d comedi_8254_pacer_enable -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0xed6c2e55 comedi_8254_set_busy -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0xfe7d7a9a comedi_8254_ns_to_timer -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8255 0x8889b003 subdev_8255_mm_init -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8255 0xb121e70f subdev_8255_init -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8255 0xf74803d3 subdev_8255_regbase -EXPORT_SYMBOL_GPL drivers/comedi/drivers/das08 0x8a6bcb30 das08_common_attach -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x17f22872 mite_prep_dma -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x2b504b5e mite_free_ring -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x4675b62c mite_done -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x4a56b076 mite_dma_arm -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x559e021c mite_dma_disarm -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x5b686700 mite_request_channel_in_range -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x5c629f26 mite_ack_linkc -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x7aa9958d mite_alloc_ring -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x7f9af2d0 mite_buf_change -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x99fd4b2e mite_release_channel -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xacad5fe5 mite_init_ring_descriptors -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xd29eb8ff mite_detach -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xdfb9b997 mite_attach -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xe0418c54 mite_bytes_in_transit -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xeb4c6b60 mite_sync_dma -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xfcff1597 mite_request_channel -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_labpc_common 0x771116b3 labpc_common_detach -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_labpc_common 0xa0b86dc8 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 0x03b0360e ni_tio_unset_routing -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x068c66f7 ni_tio_set_bits -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x0f0ec9a6 ni_tio_insn_read -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x127d07e8 ni_tio_set_routing -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x202c4670 ni_tio_write -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x368aae3c ni_tio_read -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x6fb5fe89 ni_tio_get_soft_copy -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x8abca786 ni_tio_insn_config -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x9d270a17 ni_tio_init_counter -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xaae46d1a ni_tio_set_gate_src_raw -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xb1b226b9 ni_tio_get_routing -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xcef91509 ni_tio_arm -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xd9f175cd ni_tio_set_gate_src -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xdb1eb849 ni_gpct_device_destroy -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xf1b14345 ni_gpct_device_construct -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xf53e753d ni_tio_insn_write -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0x8c928477 ni_tio_acknowledge -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0xb53a97b4 ni_tio_cmdtest -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0xbb98659f ni_tio_cmd -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0xc89b33d3 ni_tio_cancel -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0xd85de9d0 ni_tio_handle_interrupt -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0xec7ea1f0 ni_tio_set_mite_channel -EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0x3b8a93d4 comedi_dio_get_config -EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0x448922c6 comedi_open -EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0x56500724 comedi_find_subdevice_by_type -EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0x970ac9ff comedi_dio_bitfield2 -EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0xa027fe45 comedi_dio_config -EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0xb21cfcfb comedi_get_n_channels -EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0xed0aad86 comedi_close -EXPORT_SYMBOL_GPL drivers/counter/counter 0x8d037a0c devm_counter_register -EXPORT_SYMBOL_GPL drivers/counter/counter 0xaa1fdd62 counter_register -EXPORT_SYMBOL_GPL drivers/counter/counter 0xe94702ae counter_unregister -EXPORT_SYMBOL_GPL drivers/crypto/ccp/ccp 0x04773b60 ccp_present -EXPORT_SYMBOL_GPL drivers/crypto/ccp/ccp 0x35239ed5 ccp_enqueue_cmd -EXPORT_SYMBOL_GPL drivers/crypto/ccp/ccp 0x3a1a3979 ccp_version -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x0466ab1f hisi_qm_suspend -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x06ad19b8 hisi_qm_create_qp -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x0853c8a8 hisi_qm_stop -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x0ff36b1a hisi_qm_reset_prepare -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x11aaed0b hisi_qm_dev_shutdown -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x2046bf8a hisi_qm_start_qp -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x2269dcf9 hisi_qm_sriov_configure -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x22badc0f hisi_qm_dev_err_uninit -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x238cbb60 hisi_qm_get_dfx_access -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x2aa0b36e hisi_qm_init -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x2e81ffe2 hisi_qm_alg_unregister -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x305d547c hisi_qm_sriov_disable -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x385ac9d2 hisi_qm_pm_uninit -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x39a3e4fc hisi_qm_alloc_qps_node -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x3bf118c9 hisi_qm_sriov_enable -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x45b6a074 hisi_qm_uninit -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x591f2409 hisi_qm_reset_done -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x673b5c99 hisi_qm_resume -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x75f8091e hisi_qm_put_dfx_access -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x85ffe740 hisi_qm_wait_task_finish -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x87659444 hisi_acc_sg_buf_map_to_hw_sgl -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x9bdc5aec hisi_qm_free_qps -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x9dbec164 hisi_qm_pm_init -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x9f7bbeff hisi_qm_stop_qp -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xa0737798 hisi_qm_dev_err_detected -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xa8012c3d hisi_qm_get_vft -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xa94464a0 hisi_qm_start -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xb04636c3 hisi_acc_create_sgl_pool -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xbadb6fd7 hisi_qm_regs_dump -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xbb2a83e2 hisi_qm_release_qp -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xbb882ec4 hisi_qm_dev_slot_reset -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xbd305e1a hisi_qp_send -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xda2f0a67 hisi_acc_sg_buf_unmap -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xe1bf1a36 hisi_qm_get_free_qp_num -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xe49b349c hisi_qm_alg_register -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xe6ca3d9b hisi_qm_debug_init -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xe94f1b05 hisi_qm_dev_err_init -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xee14595d hisi_acc_free_sgl_pool -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xf7dd88c4 hisi_qm_debug_regs_clear -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 0xe3566f22 otx_cpt_eng_grp_has_eng_type -EXPORT_SYMBOL_GPL drivers/dma/dw-edma/dw-edma 0x7fcad852 dw_edma_probe -EXPORT_SYMBOL_GPL drivers/dma/dw-edma/dw-edma 0x9c89f1c9 dw_edma_remove -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x09cd9837 dw_dma_acpi_controller_free -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x0ec11eae idma32_dma_probe -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x2461362a dw_dma_probe -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x2a266f61 dw_dma_remove -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x7d01b06e idma32_dma_remove -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x8d5ebf0d dw_dma_acpi_controller_register -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xcac4664d do_dw_dma_disable -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xf0a2e438 do_dw_dma_enable -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xf53fa9f8 dw_dma_filter -EXPORT_SYMBOL_GPL drivers/dma/fsl-dpaa2-qdma/dpdmai 0x2246cc75 dpdmai_close -EXPORT_SYMBOL_GPL drivers/dma/fsl-dpaa2-qdma/dpdmai 0x25066989 dpdmai_get_tx_queue -EXPORT_SYMBOL_GPL drivers/dma/fsl-dpaa2-qdma/dpdmai 0x3400bfb5 dpdmai_get_rx_queue -EXPORT_SYMBOL_GPL drivers/dma/fsl-dpaa2-qdma/dpdmai 0x42d258db dpdmai_reset -EXPORT_SYMBOL_GPL drivers/dma/fsl-dpaa2-qdma/dpdmai 0x627cfa6e dpdmai_open -EXPORT_SYMBOL_GPL drivers/dma/fsl-dpaa2-qdma/dpdmai 0x929a2b7c dpdmai_destroy -EXPORT_SYMBOL_GPL drivers/dma/fsl-dpaa2-qdma/dpdmai 0xaa82f009 dpdmai_disable -EXPORT_SYMBOL_GPL drivers/dma/fsl-dpaa2-qdma/dpdmai 0xabcece76 dpdmai_enable -EXPORT_SYMBOL_GPL drivers/dma/fsl-dpaa2-qdma/dpdmai 0xbbc21594 dpdmai_set_rx_queue -EXPORT_SYMBOL_GPL drivers/dma/fsl-dpaa2-qdma/dpdmai 0xe56bd9e0 dpdmai_get_attributes -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x10183359 fsl_edma_terminate_all -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x24c7ae05 fsl_edma_pause -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x4b17e4af fsl_edma_slave_config -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x5012f064 fsl_edma_alloc_chan_resources -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x5aa09388 fsl_edma_chan_mux -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x5fdcc683 fsl_edma_free_desc -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x68f233c8 fsl_edma_disable_request -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x6b4adcf3 fsl_edma_setup_regs -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x836a77f5 fsl_edma_resume -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x939923a1 fsl_edma_prep_dma_cyclic -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x9ab44b18 fsl_edma_free_chan_resources -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0xb0cab4c1 fsl_edma_tx_status -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0xc578f6fe fsl_edma_xfer_desc -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0xde05416f fsl_edma_prep_slave_sg -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0xeadaf66c fsl_edma_issue_pending -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0xf7a55c5e fsl_edma_cleanup_vchan -EXPORT_SYMBOL_GPL drivers/dma/qcom/hdma_mgmt 0x38d46ba6 hidma_mgmt_init_sys -EXPORT_SYMBOL_GPL drivers/dma/qcom/hdma_mgmt 0xb5b13f58 hidma_mgmt_setup -EXPORT_SYMBOL_GPL drivers/firewire/firewire-core 0xe86fb5c7 fw_card_release -EXPORT_SYMBOL_GPL drivers/firmware/arm_ffa/ffa-module 0x21992e57 ffa_bus_type -EXPORT_SYMBOL_GPL drivers/firmware/arm_ffa/ffa-module 0x2d669d35 ffa_dev_ops_get -EXPORT_SYMBOL_GPL drivers/firmware/arm_ffa/ffa-module 0x86974842 ffa_device_unregister -EXPORT_SYMBOL_GPL drivers/firmware/arm_ffa/ffa-module 0xb66c1150 ffa_driver_register -EXPORT_SYMBOL_GPL drivers/firmware/arm_ffa/ffa-module 0xc2c69e31 ffa_device_register -EXPORT_SYMBOL_GPL drivers/firmware/arm_ffa/ffa-module 0xc362ea7d ffa_driver_unregister -EXPORT_SYMBOL_GPL drivers/firmware/arm_scpi 0x5f134046 get_scpi_ops -EXPORT_SYMBOL_GPL drivers/firmware/stratix10-svc 0x0e7b7015 stratix10_svc_done -EXPORT_SYMBOL_GPL drivers/firmware/stratix10-svc 0x18a1f001 stratix10_svc_request_channel_byname -EXPORT_SYMBOL_GPL drivers/firmware/stratix10-svc 0x41d5ad1c stratix10_svc_allocate_memory -EXPORT_SYMBOL_GPL drivers/firmware/stratix10-svc 0x50f5368a stratix10_svc_free_channel -EXPORT_SYMBOL_GPL drivers/firmware/stratix10-svc 0x595b630e stratix10_svc_free_memory -EXPORT_SYMBOL_GPL drivers/firmware/stratix10-svc 0xd3df684d stratix10_svc_send -EXPORT_SYMBOL_GPL drivers/fpga/altera-pr-ip-core 0x82d097af alt_pr_register -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x001cc4d8 dfl_feature_ioctl_get_num_irqs -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x073c1d13 dfl_fpga_enum_info_add_irq -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x095317c0 dfl_feature_ioctl_set_irq -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x133b4069 dfl_fpga_feature_devs_remove -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x253ebf2d dfl_fpga_dev_ops_register -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x4722f0c9 dfl_fpga_dev_ops_unregister -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x5859b11a dfl_fpga_port_ops_put -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x5e16e749 dfl_fpga_cdev_assign_port -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x6495c0a7 dfl_fpga_port_ops_get -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x728809f4 dfl_fpga_dev_feature_uinit -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x7a3b791f dfl_fpga_cdev_config_ports_pf -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x7da37e17 dfl_fpga_cdev_release_port -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x9014b3c1 dfl_fpga_enum_info_free -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x95c9542f dfl_fpga_set_irq_triggers -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xa9ad34bb dfl_fpga_feature_devs_enumerate -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xb45a87ec dfl_fpga_port_ops_del -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xc79c2769 dfl_fpga_port_ops_add -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xcc77bde9 dfl_fpga_cdev_config_ports_vf -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xcde4cecf dfl_fpga_dev_feature_init -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xceeb2460 __dfl_fpga_cdev_find_port -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xd7153ab8 dfl_fpga_enum_info_alloc -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xdd91de21 dfl_fpga_enum_info_add_dfl -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xf48e90f1 dfl_fpga_check_port_id -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x0633c4b9 fpga_bridges_enable -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x0b2b884c fpga_bridges_put -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x2507035f fpga_bridge_get -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x2bbfe962 fpga_bridge_free -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x2c8167cf fpga_bridges_disable -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x3e73eb38 fpga_bridge_put -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x4fc9601e of_fpga_bridge_get_to_list -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x76a643c4 fpga_bridge_disable -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x83af935d fpga_bridge_get_to_list -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x967740c0 fpga_bridge_enable -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0xa9f4ea1c of_fpga_bridge_get -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0xb6b4aa28 devm_fpga_bridge_create -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0xeabd66fb fpga_bridge_unregister -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0xeae47942 fpga_bridge_create -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0xed15ef59 fpga_bridge_register -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x1054b56e fpga_mgr_get -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x18664d46 fpga_mgr_create -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x6cfc0b1a of_fpga_mgr_get -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x79736a49 devm_fpga_mgr_create -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x79fa835f fpga_mgr_put -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x99eb348b fpga_image_info_alloc -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x9f4c9f33 fpga_mgr_load -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xb65ed8cf fpga_mgr_free -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xc1b4817a fpga_mgr_lock -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xc2422ec1 devm_fpga_mgr_register -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xd0278601 fpga_mgr_unregister -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xdbdce724 fpga_image_info_free -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xec8b5867 fpga_mgr_unlock -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xed0d71b5 fpga_mgr_register -EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0x061b32be fpga_region_register -EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0x06adbcb4 fpga_region_unregister -EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0x0a7fa02c fpga_region_program_fpga -EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0xc16856c5 fpga_region_class_find -EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0xc3986e91 fpga_region_free -EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0xc734a7e0 fpga_region_create -EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0xcf3e6b0e devm_fpga_region_create -EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x2d6e61ee fsi_driver_unregister -EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x384b4b83 fsi_cdev_type -EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x3a93847e fsi_slave_claim_range -EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x41c160c5 fsi_device_write -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 0x898406f1 fsi_master_unregister -EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0xaa6998e5 fsi_device_read -EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0xbc0db1ee fsi_bus_type -EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0xbc376e17 fsi_get_new_minor -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 0xea9dcc03 fsi_master_register -EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0xebec5f7d fsi_master_rescan -EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0xfd57425d fsi_driver_register -EXPORT_SYMBOL_GPL drivers/fsi/fsi-occ 0x34809f44 fsi_occ_submit -EXPORT_SYMBOL_GPL drivers/fsi/fsi-sbefifo 0x28f18265 sbefifo_submit -EXPORT_SYMBOL_GPL drivers/fsi/fsi-sbefifo 0x51879d8c sbefifo_parse_status -EXPORT_SYMBOL_GPL drivers/gnss/gnss 0x46d0997c gnss_register_device -EXPORT_SYMBOL_GPL drivers/gnss/gnss 0x4e64ccbf gnss_insert_raw -EXPORT_SYMBOL_GPL drivers/gnss/gnss 0x74cbdb79 gnss_put_device -EXPORT_SYMBOL_GPL drivers/gnss/gnss 0x7aef549a gnss_allocate_device -EXPORT_SYMBOL_GPL drivers/gnss/gnss 0xc8c26a1b gnss_deregister_device -EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0x1f94d6d4 gnss_serial_deregister -EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0x31bb572e gnss_serial_free -EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0x5708a527 gnss_serial_register -EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0xad02170d gnss_serial_pm_ops -EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0xd1066c1f gnss_serial_allocate -EXPORT_SYMBOL_GPL drivers/gpio/gpio-max730x 0x3b172c60 __max730x_probe -EXPORT_SYMBOL_GPL drivers/gpio/gpio-max730x 0xe107d45c __max730x_remove -EXPORT_SYMBOL_GPL drivers/gpio/gpio-regmap 0x241df42c devm_gpio_regmap_register -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 0xf09b570d gpio_regmap_register -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x15a8b4b4 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 0x51d922a0 analogix_dp_start_crc -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x73f7d885 analogix_dp_remove -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x9a8f8806 analogix_dp_suspend -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0xa408058b analogix_dp_bind -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0xa4925da1 analogix_dp_stop_crc -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0xe0234916 analogix_dp_unbind -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0xe29b9a45 analogix_dp_probe -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x09340e05 dw_hdmi_set_channel_count -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x094f6fc5 dw_hdmi_phy_i2c_set_addr -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x1461e227 dw_hdmi_set_channel_status -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 0x7d8a3aee dw_hdmi_phy_i2c_write -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x819e20a8 dw_hdmi_bind -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x8c56146d dw_hdmi_set_high_tmds_clock_ratio -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 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 0xc364eab6 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 0xf0520e72 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 0x28173e40 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 0xb6478557 dw_mipi_dsi_probe -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x0741ae75 drm_bridge_hpd_disable -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x0ec2ec2c drm_class_device_unregister -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x173471fe drm_crtc_add_crc_entry -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x1768385e drm_gem_shmem_create -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x1f54422a drm_bridge_get_edid -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x46665334 drm_class_device_register -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x4c26bb40 drm_gem_dumb_map_offset -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x4d6d170a drm_bridge_hpd_notify -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x5e7b3eb0 drm_bridge_hpd_enable -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x63f708ad drm_gem_cma_dumb_create_internal -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x66cf2f64 drm_display_mode_from_videomode -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x66f9c6c9 drm_of_find_panel_or_bridge -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x6e2cb7be drm_gem_cma_vm_ops -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x717f40f7 drm_gem_shmem_mmap -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x76754727 drm_gem_cma_create -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x83eb9ac6 drm_gem_shmem_prime_import_sg_table -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x841abd2e drm_do_get_edid -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x88847ea8 drm_of_encoder_active_endpoint -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x89857fcb drm_hdcp_check_ksvs_revoked -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xa0671ea3 drm_gem_shmem_get_sg_table -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xa7dacaaf drm_gem_cma_dumb_create -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xad885165 drm_bus_flags_from_videomode -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xaf595e0a drm_gem_cma_prime_import_sg_table -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xb4638691 drm_bridge_detect -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xb9bd0edb drm_of_lvds_get_dual_link_pixel_order -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xbed711dc of_get_drm_display_mode -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xc40a1ef3 drm_gem_cma_free_object -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xc94d2caf drm_gem_cma_vmap -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xcc95b7dd drm_gem_cma_mmap -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xcfa45a8b drm_gem_shmem_get_pages_sgt -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xd2f950fd drm_gem_cma_get_sg_table -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xd60f6db8 drm_bridge_get_modes -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xdd69747a drm_gem_shmem_dumb_create -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xde8877bd drmm_kstrdup -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xe8990dff drm_gem_shmem_free -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xfc3f3a89 drm_get_unmapped_area -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xfe891923 drm_of_component_match_add -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xfe9f72f3 drm_display_mode_to_videomode -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dp_aux_bus 0x0eb906e9 of_dp_aux_populate_ep_devices -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dp_aux_bus 0x65dc1995 devm_of_dp_aux_populate_ep_devices -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dp_aux_bus 0x77dde982 dp_aux_dp_driver_unregister -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dp_aux_bus 0xef1147cd of_dp_aux_depopulate_ep_devices -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dp_aux_bus 0xf9267a17 __dp_aux_dp_driver_register -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x013d16c5 drm_gem_plane_helper_prepare_fb -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x09b02bd6 drm_gem_fb_afbc_init -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x0c0d99fd drm_bridge_connector_enable_hpd -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x32740537 drm_bridge_connector_disable_hpd -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x3720d936 drm_gem_fb_get_obj -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x4320eb13 drm_gem_fb_create -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x597f5756 drm_fb_cma_get_gem_addr -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x62ccc057 drm_fb_cma_get_gem_obj -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x6a652096 drm_gem_fb_create_with_funcs -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xa3194bbd drm_gem_fb_init_with_funcs -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xc2d22e6f drm_bridge_connector_init -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xc5dcf505 drm_fb_cma_sync_non_coherent -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xffeeb458 drm_gem_fb_create_with_dirty -EXPORT_SYMBOL_GPL drivers/gpu/drm/meson/meson-drm 0x2c73cfcf meson_venc_hdmi_venc_repeat -EXPORT_SYMBOL_GPL drivers/gpu/drm/meson/meson-drm 0x368fbd20 meson_vclk_vic_supported_freq -EXPORT_SYMBOL_GPL drivers/gpu/drm/meson/meson-drm 0x94a785f8 meson_venc_hdmi_supported_mode -EXPORT_SYMBOL_GPL drivers/gpu/drm/meson/meson-drm 0xab5bee2f meson_venc_hdmi_supported_vic -EXPORT_SYMBOL_GPL drivers/gpu/drm/meson/meson-drm 0xb64cba2f meson_vclk_dmt_supported_freq -EXPORT_SYMBOL_GPL drivers/gpu/drm/meson/meson-drm 0xca9ebf8a meson_venc_hdmi_mode_set -EXPORT_SYMBOL_GPL drivers/gpu/drm/meson/meson-drm 0xf294f6fd meson_vclk_setup -EXPORT_SYMBOL_GPL drivers/gpu/drm/panel/panel-samsung-s6e63m0 0x9f789f98 s6e63m0_probe -EXPORT_SYMBOL_GPL drivers/gpu/drm/panel/panel-samsung-s6e63m0 0xbcf26750 s6e63m0_remove -EXPORT_SYMBOL_GPL drivers/gpu/drm/pl111/pl111_drm 0x216f306d pl111_versatile_init -EXPORT_SYMBOL_GPL drivers/gpu/drm/rcar-du/rcar_cmm 0x871f6dcb rcar_cmm_disable -EXPORT_SYMBOL_GPL drivers/gpu/drm/rcar-du/rcar_cmm 0xd07fd8ea rcar_cmm_setup -EXPORT_SYMBOL_GPL drivers/gpu/drm/rcar-du/rcar_cmm 0xd7e73b81 rcar_cmm_init -EXPORT_SYMBOL_GPL drivers/gpu/drm/rcar-du/rcar_cmm 0xfabb1907 rcar_cmm_enable -EXPORT_SYMBOL_GPL drivers/gpu/drm/rcar-du/rcar_lvds 0x1a2c0e9d rcar_lvds_is_connected -EXPORT_SYMBOL_GPL drivers/gpu/drm/rcar-du/rcar_lvds 0x3afd439c rcar_lvds_clk_disable -EXPORT_SYMBOL_GPL drivers/gpu/drm/rcar-du/rcar_lvds 0xa2de80d8 rcar_lvds_clk_enable -EXPORT_SYMBOL_GPL drivers/gpu/drm/rcar-du/rcar_lvds 0xf9904bb6 rcar_lvds_dual_link -EXPORT_SYMBOL_GPL drivers/gpu/drm/rockchip/rockchipdrm 0xc309d446 rockchip_rgb_init -EXPORT_SYMBOL_GPL drivers/gpu/drm/rockchip/rockchipdrm 0xf618bc64 vop_component_ops -EXPORT_SYMBOL_GPL drivers/gpu/drm/rockchip/rockchipdrm 0xfead7585 rockchip_rgb_fini -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x00f240fe gb_operation_cancel -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x020334b6 gb_connection_enable_tx -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x02f46d26 __tracepoint_gb_message_submit -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 0x17f4a534 gb_connection_disable_forced -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x1d9b31f0 gb_svc_intf_set_power_mode -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x3274a994 __traceiter_gb_hd_add -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x33d3bf89 greybus_deregister_driver -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x3482284d gb_connection_destroy -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x37174d4c gb_hd_output -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x37502fcd gb_hd_cport_reserve -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x3954e5f7 gb_operation_request_send_sync_timeout -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x3bf639e4 gb_hd_cport_release_reserved -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x3c42fefb gb_hd_shutdown -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x5a3ae51d gb_operation_result -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x5ad3f2d7 __tracepoint_gb_hd_add -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x5c0a8043 __tracepoint_gb_hd_in -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x5f79c036 gb_connection_disable -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x6020a524 gb_connection_enable -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x612aee7b greybus_data_rcvd -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x6213634d __tracepoint_gb_hd_create -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x65b3f7c7 gb_operation_get_payload_size_max -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x68792a94 gb_debugfs_get -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x6a3c4088 gb_operation_get -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x6b1fd715 gb_hd_create -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x6d3bb9ec __SCK__tp_func_gb_message_submit -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x71b8e8ce gb_connection_disable_rx -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x7b1534c9 gb_hd_put -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x8026620e __traceiter_gb_hd_in -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x81e221fb __SCK__tp_func_gb_hd_create -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x84b2d0e5 __traceiter_gb_message_submit -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x88df2a18 __traceiter_gb_hd_del -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x89a28466 greybus_message_sent -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x89f514a1 __SCK__tp_func_gb_hd_in -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x8c61ffe9 gb_operation_request_send -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x9091c05f __traceiter_gb_hd_create -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x90a3d297 gb_operation_unidirectional_timeout -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x9131a6d8 gb_operation_response_alloc -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x92270e46 gb_connection_create -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xa416e2da __tracepoint_gb_hd_del -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xa4ee011e greybus_register_driver -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xa78d1ad0 gb_operation_sync_timeout -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xa93e9fa8 gb_interface_request_mode_switch -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xbf7ca6f4 gb_hd_add -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xc9d262d6 gb_operation_put -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xd3e646d9 __tracepoint_gb_hd_release -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xd80f8bce gb_connection_create_flags -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xe01faa59 gb_connection_create_offloaded -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xeac79e1a __SCK__tp_func_gb_hd_del -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xeb5ba6c1 gb_hd_del -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xf107a122 __SCK__tp_func_gb_hd_release -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xf11e24d3 gb_connection_latency_tag_enable -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xf177d376 gb_connection_latency_tag_disable -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xf52c820e __traceiter_gb_hd_release -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xfc0537e7 gb_operation_create_flags -EXPORT_SYMBOL_GPL drivers/hid/hid 0x022c1ad5 hidinput_disconnect -EXPORT_SYMBOL_GPL drivers/hid/hid 0x05495392 hid_debug -EXPORT_SYMBOL_GPL drivers/hid/hid 0x08473fa7 hid_validate_values -EXPORT_SYMBOL_GPL drivers/hid/hid 0x09b070aa hid_compare_device_paths -EXPORT_SYMBOL_GPL drivers/hid/hid 0x0f566a5b hid_dump_field -EXPORT_SYMBOL_GPL drivers/hid/hid 0x11ee28f7 hid_report_raw_event -EXPORT_SYMBOL_GPL drivers/hid/hid 0x15bd3f37 hidinput_get_led_field -EXPORT_SYMBOL_GPL drivers/hid/hid 0x19c5eeff hid_hw_start -EXPORT_SYMBOL_GPL drivers/hid/hid 0x19d52f1f hid_quirks_exit -EXPORT_SYMBOL_GPL drivers/hid/hid 0x245d2ea9 hid_open_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0x28d20078 hid_add_device -EXPORT_SYMBOL_GPL drivers/hid/hid 0x2dc91c83 hidinput_calc_abs_res -EXPORT_SYMBOL_GPL drivers/hid/hid 0x340d495a hid_parse_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0x34bea15e hid_allocate_device -EXPORT_SYMBOL_GPL drivers/hid/hid 0x35bc0bc3 hid_hw_stop -EXPORT_SYMBOL_GPL drivers/hid/hid 0x3b83614e hid_register_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0x3df3d625 hid_hw_close -EXPORT_SYMBOL_GPL drivers/hid/hid 0x4e69f602 hid_resolv_usage -EXPORT_SYMBOL_GPL drivers/hid/hid 0x50dc2d55 hidraw_connect -EXPORT_SYMBOL_GPL drivers/hid/hid 0x5c60f0c5 hid_setup_resolution_multiplier -EXPORT_SYMBOL_GPL drivers/hid/hid 0x5df99db8 hidinput_count_leds -EXPORT_SYMBOL_GPL drivers/hid/hid 0x5f967ab6 hid_alloc_report_buf -EXPORT_SYMBOL_GPL drivers/hid/hid 0x68fccdb1 hid_lookup_quirk -EXPORT_SYMBOL_GPL drivers/hid/hid 0x7aed4487 hidinput_report_event -EXPORT_SYMBOL_GPL drivers/hid/hid 0x8b13a8b8 hid_snto32 -EXPORT_SYMBOL_GPL drivers/hid/hid 0x8d16b5e2 hid_disconnect -EXPORT_SYMBOL_GPL drivers/hid/hid 0x91ff7d55 hid_input_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0x95cbf06a hid_debug_event -EXPORT_SYMBOL_GPL drivers/hid/hid 0x9731aace hid_unregister_driver -EXPORT_SYMBOL_GPL drivers/hid/hid 0x97c0bb25 hidinput_find_field -EXPORT_SYMBOL_GPL drivers/hid/hid 0x9a96a39d __hid_register_driver -EXPORT_SYMBOL_GPL drivers/hid/hid 0x9dea3e51 hid_field_extract -EXPORT_SYMBOL_GPL drivers/hid/hid 0xa6308aea hid_dump_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0xa7ac8c26 hidinput_connect -EXPORT_SYMBOL_GPL drivers/hid/hid 0xb67fb591 hid_ignore -EXPORT_SYMBOL_GPL drivers/hid/hid 0xb75356af hidraw_disconnect -EXPORT_SYMBOL_GPL drivers/hid/hid 0xc66073d0 hid_match_device -EXPORT_SYMBOL_GPL drivers/hid/hid 0xc6e319ac __hid_request -EXPORT_SYMBOL_GPL drivers/hid/hid 0xd9c0c20d hid_output_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0xdb66d2f8 hidraw_report_event -EXPORT_SYMBOL_GPL drivers/hid/hid 0xe1c19999 hid_set_field -EXPORT_SYMBOL_GPL drivers/hid/hid 0xef29148e hid_dump_device -EXPORT_SYMBOL_GPL drivers/hid/hid 0xefc4599a hid_destroy_device -EXPORT_SYMBOL_GPL drivers/hid/hid 0xf1d96e85 hid_check_keys_pressed -EXPORT_SYMBOL_GPL drivers/hid/hid 0xf55f833b hid_connect -EXPORT_SYMBOL_GPL drivers/hid/hid 0xfa355613 hid_quirks_init -EXPORT_SYMBOL_GPL drivers/hid/hid 0xfca2d138 hid_hw_open -EXPORT_SYMBOL_GPL drivers/hid/hid 0xff4bd8d4 hid_dump_input -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 0x9e5d4068 roccat_connect -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x0a428232 roccat_common2_send_with_status -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x1f26feb0 roccat_common2_device_init_struct -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x40db22e7 roccat_common2_sysfs_read -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x413d75ca roccat_common2_receive -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x6c2ba25b roccat_common2_sysfs_write -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0xf0cc0275 roccat_common2_send -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x144f1583 sensor_hub_input_get_attribute_info -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x166f8706 hid_sensor_get_usage_index -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x17685af2 sensor_hub_set_feature -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x40d05173 sensor_hub_device_close -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x53c8717e sensor_hub_remove_callback -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x888bdf2d sensor_hub_device_open -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xb797e4dc sensor_hub_input_attr_get_raw_value -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xbe7bd60e sensor_hub_register_callback -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xe8ef5d5e sensor_hub_get_feature -EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0x045b6cef i2c_hid_core_remove -EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0x1c33e216 i2c_hid_core_probe -EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0x981d4924 i2c_hid_core_shutdown -EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0xbe3ed1ed i2c_hid_ll_driver -EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0xda6f9a4f i2c_hid_core_pm -EXPORT_SYMBOL_GPL drivers/hid/surface-hid/surface_hid_core 0x36941aa5 surface_hid_pm_ops -EXPORT_SYMBOL_GPL drivers/hid/surface-hid/surface_hid_core 0x4f2b3dca surface_hid_device_destroy -EXPORT_SYMBOL_GPL drivers/hid/surface-hid/surface_hid_core 0xe795fe5a surface_hid_device_add -EXPORT_SYMBOL_GPL drivers/hid/uhid 0xdcec35e1 uhid_hid_driver -EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0xc0d7f3cf hiddev_hid_event -EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0xc2040d02 usb_hid_driver -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x09491fc1 hsi_async -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x119602fa hsi_new_client -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x16e45f9e hsi_claim_port -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x1da9d2f5 hsi_get_channel_id_by_name -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x32845021 hsi_alloc_msg -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x5210a5bf hsi_board_list -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x5a6de761 hsi_alloc_controller -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x72b0201b hsi_register_port_event -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x85f36557 hsi_remove_client -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x87f9f393 hsi_register_controller -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x8a179926 hsi_port_unregister_clients -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x8ecc4c43 hsi_unregister_controller -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x9b17487f hsi_put_controller -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x9fbc639d hsi_unregister_port_event -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xa33b99ac hsi_register_client_driver -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xb26a65a2 hsi_release_port -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xc4e51cb8 hsi_add_clients_from_dt -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xd4b8c4ef hsi_free_msg -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xed45d051 hsi_event -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x056137a3 vmbus_set_event -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x1bba3c2e vmbus_set_sc_create_callback -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x1cfec0a4 __hv_pkt_iter_next -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x1fb8fd06 hv_pkt_iter_first -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x20b16d95 vmbus_setevent -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x2709d2ed vmbus_hvsock_device_unregister -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x290b4dea vmbus_driver_unregister -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x2be30eb9 vmbus_recvpacket_raw -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 0x333d4276 vmbus_connection -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x38a219d6 vmbus_set_chn_rescind_callback -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x46a417ca vmbus_proto_version -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x480f5d8d vmbus_sendpacket_pagebuffer -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x4936cce1 vmbus_close -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x4b2210b8 vmbus_send_tl_connect_request -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x4b312354 vmbus_free_ring -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x67534ae2 vmbus_sendpacket_mpb_desc -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x6f956228 hv_pkt_iter_close -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x7bbf67bb vmbus_teardown_gpadl -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x7d322282 vmbus_alloc_ring -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x7f4e8a58 vmbus_request_addr -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x8092f631 vmbus_send_modifychannel -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x95f3d900 vmbus_are_subchannels_present -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x986c35b7 hv_pkt_iter_first_raw -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xa2d20c1a hv_ringbuffer_get_debuginfo -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xa3714252 vmbus_open -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xadba85ab __vmbus_driver_register -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xd7d07795 vmbus_connect_ring -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xe76d1fb2 hv_ringbuffer_spinlock_busy -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xe7ffd02a vmbus_disconnect_ring -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xe9615a6f vmbus_establish_gpadl -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xf4c27e38 vmbus_next_request_id -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xf6ef1d75 vmbus_allocate_mmio -EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0x2de9815f adt7x10_remove -EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0x3de54dea adt7x10_dev_pm_ops -EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0xe763c082 adt7x10_probe -EXPORT_SYMBOL_GPL drivers/hwmon/ltc2947-core 0x5cbb5274 ltc2947_core_probe -EXPORT_SYMBOL_GPL drivers/hwmon/ltc2947-core 0x91723521 ltc2947_pm_ops -EXPORT_SYMBOL_GPL drivers/hwmon/ltc2947-core 0xbc54f93e ltc2947_of_match -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x611ceb76 intel_th_trace_switch -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x6e8b3eb9 intel_th_output_enable -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x8860258f intel_th_alloc -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x9fb16667 intel_th_driver_register -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xc800c934 intel_th_set_output -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xdcb9918d intel_th_trace_disable -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xe6ad4b58 intel_th_trace_enable -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xf42ba0fb intel_th_free -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xf9122bd1 intel_th_driver_unregister -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th_msu 0x101675a8 intel_th_msc_window_unlock -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th_msu 0x6367f583 intel_th_msu_buffer_register -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th_msu 0x96e50e66 intel_th_msu_buffer_unregister -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x2604b500 stm_unregister_protocol -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x878fda83 to_pdrv_policy_node -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x8e916037 stm_source_write -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xa6e2a8ce stm_data_write -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xb8d7476e stm_register_device -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xe2cbbbf4 stm_source_register_device -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xea068c78 stm_unregister_device -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xf334c1e6 stm_source_unregister_device -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xfadc4103 stm_register_protocol -EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0x45a58026 i2c_handle_smbus_alert -EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0x4e624361 i2c_new_slave_host_notify_device -EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0x76385d05 i2c_register_spd -EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0xb9a42805 i2c_free_slave_host_notify_device -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x07177f7e i3c_master_set_info -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x13abed1a i3c_generic_ibi_recycle_slot -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x23ea0775 i3c_device_do_priv_xfers -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x2b8bfdbd i3c_driver_unregister -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x2c5353b9 i3c_master_entdaa_locked -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x38dc8212 i3c_master_add_i3c_dev_locked -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x3932ce32 dev_to_i3cdev -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x4b31c58b i3c_device_free_ibi -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x64494fc5 i3c_master_register -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x6bc548f8 i3c_master_unregister -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x6dc39ee7 i3cdev_to_dev -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x76fe3e05 i3c_generic_ibi_free_pool -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x77d1fa9e i3c_generic_ibi_alloc_pool -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x9cd1459a i3c_master_get_free_addr -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xa5dce6ab i3c_master_disec_locked -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xaf0f7a16 i3c_generic_ibi_get_free_slot -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xc8bc6599 i3c_driver_register_with_owner -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xd1a1bcc6 i3c_master_defslvs_locked -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xd3a97ec7 i3c_device_enable_ibi -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xd3e09151 i3c_master_enec_locked -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xd4ec9110 i3c_device_match_id -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xd8a332cd i3c_device_disable_ibi -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xda4e68d2 i3c_device_get_info -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xeb1fcd48 i3c_master_queue_ibi -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xebf500eb i3c_master_do_daa -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xf0d7ca71 i3c_device_request_ibi -EXPORT_SYMBOL_GPL drivers/iio/accel/adxl372 0x1b7f828e adxl372_probe -EXPORT_SYMBOL_GPL drivers/iio/accel/adxl372 0xc51139a3 adxl372_readable_noinc_reg -EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0x8e2e7b52 bmc150_accel_core_remove -EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0x9f439b53 bmc150_regmap_conf -EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0xbbba38b2 bmc150_accel_pm_ops -EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0xd091df69 bmc150_accel_core_probe -EXPORT_SYMBOL_GPL drivers/iio/accel/bmi088-accel-core 0x1462add3 bmi088_accel_core_remove -EXPORT_SYMBOL_GPL drivers/iio/accel/bmi088-accel-core 0xb71d435e bmi088_accel_pm_ops -EXPORT_SYMBOL_GPL drivers/iio/accel/bmi088-accel-core 0xbdb52757 bmi088_regmap_conf -EXPORT_SYMBOL_GPL drivers/iio/accel/bmi088-accel-core 0xc03d3f26 bmi088_accel_core_probe -EXPORT_SYMBOL_GPL drivers/iio/accel/fxls8962af-core 0x26a90a9c fxls8962af_i2c_regmap_conf -EXPORT_SYMBOL_GPL drivers/iio/accel/fxls8962af-core 0x84779e59 fxls8962af_spi_regmap_conf -EXPORT_SYMBOL_GPL drivers/iio/accel/fxls8962af-core 0x9585bcf8 fxls8962af_pm_ops -EXPORT_SYMBOL_GPL drivers/iio/accel/fxls8962af-core 0xce9c3eac fxls8962af_core_probe -EXPORT_SYMBOL_GPL drivers/iio/accel/mma7455_core 0x167cf2d9 mma7455_core_probe -EXPORT_SYMBOL_GPL drivers/iio/accel/mma7455_core 0xbdf56827 mma7455_core_regmap -EXPORT_SYMBOL_GPL drivers/iio/accel/mma7455_core 0xc9fbaf58 mma7455_core_remove -EXPORT_SYMBOL_GPL drivers/iio/adc/ad7091r-base 0x9511e465 ad7091r_regmap_config -EXPORT_SYMBOL_GPL drivers/iio/adc/ad7091r-base 0xa5ae3cff ad7091r_probe -EXPORT_SYMBOL_GPL drivers/iio/adc/ad7606 0x990cb047 ad7606_pm_ops -EXPORT_SYMBOL_GPL drivers/iio/adc/ad7606 0xfa211525 ad7606_probe -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x2c3ca044 ad_sigma_delta_single_conversion -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x3bf0201f ad_sd_calibrate -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x5f2d401d ad_sd_reset -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x66c3eec4 ad_sd_set_comm -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x71670fae ad_sd_write_reg -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x74aaefc8 ad_sd_read_reg -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xc008107d devm_ad_sd_setup_buffer_and_trigger -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xcb0403e0 ad_sd_validate_trigger -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xddfce00e ad_sd_init -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xe4a53cae ad_sd_calibrate_all -EXPORT_SYMBOL_GPL drivers/iio/adc/adi-axi-adc 0x1f42bce5 adi_axi_adc_conv_priv -EXPORT_SYMBOL_GPL drivers/iio/adc/adi-axi-adc 0x7b645088 devm_adi_axi_adc_conv_register -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x267c0508 iio_channel_release_all_cb -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x2a1fab3c iio_channel_stop_all_cb -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x3635df47 iio_channel_cb_get_channels -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x7a711aef iio_channel_start_all_cb -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x9acf62ab iio_channel_cb_set_buffer_watermark -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0xa45b7b58 iio_channel_get_all_cb -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0xb6bfd6a9 iio_channel_cb_get_iio_dev -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x1410a1c3 iio_dma_buffer_set_bytes_per_datum -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x27ef2ee8 iio_dma_buffer_request_update -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x36109000 iio_dma_buffer_release -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x365f8fc7 iio_dma_buffer_enable -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x56462e1a iio_dma_buffer_disable -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x5fc3f921 iio_dma_buffer_exit -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x9ded3b0c iio_dma_buffer_read -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0xb31c675c iio_dma_buffer_init -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0xcf62c0f9 iio_dma_buffer_set_length -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0xd626e898 iio_dma_buffer_block_list_abort -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0xdcb84ab6 iio_dma_buffer_block_done -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0xe6c22a86 iio_dma_buffer_data_available -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dmaengine 0x9aa3cdd4 devm_iio_dmaengine_buffer_setup -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-hw-consumer 0x05ef58d7 devm_iio_hw_consumer_alloc -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-hw-consumer 0x3391543d iio_hw_consumer_disable -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-hw-consumer 0x88757493 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 0x16790e2c devm_iio_triggered_buffer_setup_ext -EXPORT_SYMBOL_GPL drivers/iio/buffer/kfifo_buf 0x4df2d3dd devm_iio_kfifo_buffer_setup_ext -EXPORT_SYMBOL_GPL drivers/iio/chemical/bme680_core 0xf342fec5 bme680_core_probe -EXPORT_SYMBOL_GPL drivers/iio/chemical/sps30 0xf14c6e97 sps30_probe -EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x2cbab6f2 cros_ec_sensors_read_cmd -EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x5d95dbc5 cros_ec_sensors_core_read -EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x6cbfcddb cros_ec_sensors_ext_info -EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x77697601 cros_ec_sensors_pm_ops -EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x7b2d9f06 cros_ec_sensors_core_read_avail -EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x863834a1 cros_ec_sensors_push_data -EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x9971dac4 cros_ec_sensors_capture -EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0xa7578949 cros_ec_sensors_core_init -EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0xbb6e9251 cros_ec_motion_send_host_cmd -EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0xd7568bc5 cros_ec_sensors_read_lpc -EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0xe60d7642 cros_ec_sensors_core_write -EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0xf6293e5b cros_ec_sensors_core_register -EXPORT_SYMBOL_GPL drivers/iio/dac/ad5592r-base 0xcb4e32e0 ad5592r_remove -EXPORT_SYMBOL_GPL drivers/iio/dac/ad5592r-base 0xdab706e0 ad5592r_probe -EXPORT_SYMBOL_GPL drivers/iio/dac/ad5686 0x16f033bf ad5686_probe -EXPORT_SYMBOL_GPL drivers/iio/dac/ad5686 0x7e06766a ad5686_remove -EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0xc64c34fd bmg160_core_remove -EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0xce72085e bmg160_pm_ops -EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0xd7a7d684 bmg160_core_probe -EXPORT_SYMBOL_GPL drivers/iio/gyro/fxas21002c_core 0x4a9205b9 fxas21002c_core_probe -EXPORT_SYMBOL_GPL drivers/iio/gyro/fxas21002c_core 0x64010728 fxas21002c_pm_ops -EXPORT_SYMBOL_GPL drivers/iio/gyro/fxas21002c_core 0x8ad120ca fxas21002c_core_remove -EXPORT_SYMBOL_GPL drivers/iio/imu/bmi160/bmi160_core 0x9c586dcf bmi160_core_probe -EXPORT_SYMBOL_GPL drivers/iio/imu/fxos8700_core 0xd8227c3f fxos8700_core_probe -EXPORT_SYMBOL_GPL drivers/iio/imu/inv_icm42600/inv-icm42600 0x1cd89a83 inv_icm42600_regmap_config -EXPORT_SYMBOL_GPL drivers/iio/imu/inv_icm42600/inv-icm42600 0x4ba87cdd inv_icm42600_pm_ops -EXPORT_SYMBOL_GPL drivers/iio/imu/inv_icm42600/inv-icm42600 0xeb129314 inv_icm42600_core_probe -EXPORT_SYMBOL_GPL drivers/iio/imu/inv_mpu6050/inv-mpu6050 0x0313f020 inv_mpu_pmops -EXPORT_SYMBOL_GPL drivers/iio/imu/inv_mpu6050/inv-mpu6050 0xe3c35876 inv_mpu_core_probe -EXPORT_SYMBOL_GPL drivers/iio/imu/st_lsm9ds0/st_lsm9ds0 0xbc3de106 st_lsm9ds0_probe -EXPORT_SYMBOL_GPL drivers/iio/imu/st_lsm9ds0/st_lsm9ds0 0xd2afd8ef st_lsm9ds0_remove -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x00ff2f62 iio_write_channel_raw -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x0418ecb9 __devm_iio_device_register -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x054f4bb6 iio_read_channel_attribute -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x0bcfb4fb iio_read_avail_channel_attribute -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x0cdc4eab iio_read_channel_raw -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x0dd15391 iio_device_attach_buffer -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x10a02303 iio_alloc_pollfunc -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x16daade5 iio_push_to_buffers -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x195dbd2c __devm_iio_trigger_register -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x26f6b499 iio_str_to_fixpoint -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x28c7e152 iio_channel_get -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x296978ef iio_read_avail_channel_raw -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x3b4c737c iio_read_channel_scale -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x409d57d7 iio_device_release_direct_mode -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x41f26d59 iio_map_array_unregister -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x4d8f8265 iio_map_array_register -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x4dce7dd4 iio_format_value -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x4e2a8ae7 iio_convert_raw_to_processed -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x56e5a258 iio_get_channel_type -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x5ccecc97 iio_read_channel_ext_info -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x5deb2ac4 devm_iio_channel_get_all -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x5fab2df7 iio_enum_read -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x63504d0c iio_dealloc_pollfunc -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x69169880 iio_show_mount_matrix -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x6ac300c0 devm_of_iio_channel_get_by_name -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x7190d0bd iio_get_channel_ext_info_count -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x751a9bae iio_read_channel_processed -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x83da41e3 iio_channel_release_all -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x89e5a92f iio_device_claim_direct_mode -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x93d6fe8f iio_buffer_put -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x95577d22 iio_device_id -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x9fba071e of_iio_channel_get_by_name -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xa516461d iio_read_channel_offset -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xa8676848 iio_enum_write -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xb88d7ff3 iio_channel_release -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xb9c2495e iio_write_channel_ext_info -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xbb88ea84 iio_buffer_get -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xbda34065 iio_read_channel_processed_scale -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xbe51b9e0 devm_iio_channel_get -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xc57e24b8 iio_channel_get_all -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xc80fc771 devm_iio_trigger_alloc -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xcd09df5d iio_read_max_channel_raw -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xdb714576 iio_write_channel_attribute -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xdf885c49 devm_iio_device_alloc -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xe7a3b917 iio_validate_scan_mask_onehot -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xeb0b5d5f iio_get_debugfs_dentry -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xefeb95de iio_read_channel_average_raw -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xf440da73 iio_enum_available_read -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xfdf96077 iio_update_buffers -EXPORT_SYMBOL_GPL drivers/iio/magnetometer/rm3100-core 0x0a1424e0 rm3100_volatile_table -EXPORT_SYMBOL_GPL drivers/iio/magnetometer/rm3100-core 0x8763724c 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 0x5bb85462 mpl115_probe -EXPORT_SYMBOL_GPL drivers/iio/pressure/zpa2326 0x493c46fa zpa2326_isreg_precious -EXPORT_SYMBOL_GPL drivers/iio/pressure/zpa2326 0x7b03db84 zpa2326_pm_ops -EXPORT_SYMBOL_GPL drivers/iio/pressure/zpa2326 0xa1561b26 zpa2326_isreg_readable -EXPORT_SYMBOL_GPL drivers/iio/pressure/zpa2326 0xa58f4d9e zpa2326_probe -EXPORT_SYMBOL_GPL drivers/iio/pressure/zpa2326 0xb5ec7837 zpa2326_remove -EXPORT_SYMBOL_GPL drivers/iio/pressure/zpa2326 0xdd9b8e84 zpa2326_isreg_writeable -EXPORT_SYMBOL_GPL drivers/infiniband/core/ib_core 0xdbd019c4 ib_wq -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x009d010d rtrs_cq_qp_create -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x08e2185e rtrs_cq_qp_destroy -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x11988f1b rtrs_start_hb -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x26accd5c rtrs_iu_post_send -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x8d0b58c7 rtrs_stop_hb -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x8fbedd6b rtrs_send_hb_ack -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xb102eb05 rtrs_iu_free -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xc115a34c rtrs_init_hb -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xc5dd957f rtrs_iu_post_recv -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xd0a124a6 rtrs_iu_alloc -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xd523fbe1 rtrs_iu_post_rdma_write_imm -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xfb229e84 rtrs_post_recv_empty -EXPORT_SYMBOL_GPL drivers/input/ff-memless 0x40f7784a input_ff_create_memless -EXPORT_SYMBOL_GPL drivers/input/matrix-keymap 0xe3976265 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 0x8ccedc1e adxl34x_probe -EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0xe4586827 adxl34x_resume -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x100e1e72 rmi_set_attn_data -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x122d29ae rmi_register_transport_device -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x122df00e rmi_2d_sensor_rel_report -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x1e40160d __rmi_register_function_handler -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x2e20b08f rmi_2d_sensor_abs_report -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x361e8d91 rmi_driver_resume -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x382dbe94 rmi_driver_suspend -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x52328bf6 rmi_2d_sensor_of_probe -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x6705abad rmi_unregister_function_handler -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x8b0ecfd0 rmi_of_property_read_u32 -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xbb1f97ac rmi_2d_sensor_configure_input -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xcaa9f946 rmi_2d_sensor_abs_process -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xd1887e5f rmi_dbg -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0x57c9c963 cyttsp4_probe -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0x5bea5765 cyttsp4_remove -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0x5ddd6048 cyttsp4_pm_ops -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0x1ffc691b cyttsp_pm_ops -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0x95b360b6 cyttsp_probe -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_i2c_common 0x183280f6 cyttsp_i2c_write_block_data -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_i2c_common 0xe720592f cyttsp_i2c_read_block_data -EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0xad8d04db tsc200x_probe -EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0xaec28dbe tsc200x_regmap_config -EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0xc159edc9 tsc200x_remove -EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0xe1a3a4a3 tsc200x_pm_ops -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x034b8719 wm97xx_read_aux_adc -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x160fe598 wm97xx_set_gpio -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x33bfdade wm97xx_unregister_mach_ops -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x411cc404 wm9713_codec -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x50183a25 wm97xx_get_gpio -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x6caa48b7 wm97xx_register_mach_ops -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x830b5c87 wm97xx_reg_write -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x8db6c49a wm9712_codec -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x9008d9c0 wm9705_codec -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x9b5804a1 wm97xx_config_gpio -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xb48f1809 wm97xx_reg_read -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xc9cc58ae wm97xx_set_suspend_mode -EXPORT_SYMBOL_GPL drivers/interconnect/imx/imx-interconnect 0xf2dce755 imx_icc_register -EXPORT_SYMBOL_GPL drivers/interconnect/imx/imx-interconnect 0xfabfcbcd imx_icc_unregister -EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-bcm-voter 0x0253e279 qcom_icc_bcm_voter_add -EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-bcm-voter 0x0b39b783 qcom_icc_bcm_voter_commit -EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-bcm-voter 0x2759e2f4 of_bcm_voter_get -EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-rpmh 0x104cd9cf qcom_icc_rpmh_remove -EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-rpmh 0x170218e4 qcom_icc_pre_aggregate -EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-rpmh 0x1d7b2cbb qcom_icc_bcm_init -EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-rpmh 0x39617401 qcom_icc_aggregate -EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-rpmh 0xae9a6d0e qcom_icc_xlate_extended -EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-rpmh 0xb17bb93b qcom_icc_rpmh_probe -EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-rpmh 0xb6338bdb qcom_icc_set -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 0x1ffd77c5 ipack_device_init -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x2466c392 ipack_driver_unregister -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x6c9ba7cf ipack_bus_register -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x6fa76099 ipack_put_device -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x83211c4e ipack_device_del -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x83ab95b2 ipack_device_add -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xb1429015 ipack_driver_register -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xb7630ebb ipack_bus_unregister -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xcbbbf35f ipack_get_device -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x4351338a led_classdev_flash_register_ext -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x439ad78f led_classdev_flash_unregister -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x7628bab9 led_set_flash_timeout -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xa6fd4d04 led_update_flash_brightness -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xcfed423d devm_led_classdev_flash_register_ext -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xd88507af devm_led_classdev_flash_unregister -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xe34d88c2 led_set_flash_brightness -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xe896965a led_get_flash_fault -EXPORT_SYMBOL_GPL drivers/leds/led-class-multicolor 0x3b35ef12 led_classdev_multicolor_register_ext -EXPORT_SYMBOL_GPL drivers/leds/led-class-multicolor 0x49a5c689 devm_led_classdev_multicolor_unregister -EXPORT_SYMBOL_GPL drivers/leds/led-class-multicolor 0x5920fc2e led_classdev_multicolor_unregister -EXPORT_SYMBOL_GPL drivers/leds/led-class-multicolor 0x82300f7d devm_led_classdev_multicolor_register_ext -EXPORT_SYMBOL_GPL drivers/leds/led-class-multicolor 0xd6a130a5 led_mc_calc_color_components -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x1a847793 lp55xx_register_sysfs -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x24cfcb8d lp55xx_of_populate_pdata -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x389ae5fd lp55xx_deinit_device -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x3b55f035 lp55xx_register_leds -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x9079d916 lp55xx_is_extclk_used -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xb2a80a15 lp55xx_update_bits -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xc6b4f8d7 lp55xx_read -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xc8fdb361 lp55xx_unregister_sysfs -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xe721b5c7 lp55xx_init_device -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xfba9fd80 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 0x0024fb8f __traceiter_bcache_btree_insert_key -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 0x117e0fbb __traceiter_bcache_invalidate -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 0x1b624750 __traceiter_bcache_read_retry -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 0x214396a0 __traceiter_bcache_btree_node_free -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 0x31f163b5 __traceiter_bcache_btree_node_alloc_fail -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x3257d343 __tracepoint_bcache_gc_copy -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x45d16da3 __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 0x46cffb24 __traceiter_bcache_journal_write -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x48365e2a __traceiter_bcache_journal_full -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 0x55d5ed6f __traceiter_bcache_alloc_fail -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x5c6c2de3 __traceiter_bcache_request_end -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 0x60a31062 __traceiter_bcache_read -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x64e39418 __traceiter_bcache_writeback_collision -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x6697827f __SCK__tp_func_bcache_writeback -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 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 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 0x7ecbb2fd __traceiter_bcache_btree_node_alloc -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x80e3881d __SCK__tp_func_bcache_request_end -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x830df522 __tracepoint_bcache_btree_node_split -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x862dfa21 __tracepoint_bcache_btree_cache_cannibalize -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x8ad20d61 __SCK__tp_func_bcache_request_start -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 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 0xa02f1c9f __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 0xa5c4d3f5 __traceiter_bcache_gc_end -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa64134e4 __SCK__tp_func_bcache_journal_full -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa842a5c8 __SCK__tp_func_bcache_invalidate -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xab4f6c1c __traceiter_bcache_btree_cache_cannibalize -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xad6440b4 __traceiter_bcache_gc_copy -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xadcccddf __traceiter_bcache_btree_write -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xae201dc6 __traceiter_bcache_btree_node_compact -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xb5a62a8c __traceiter_bcache_cache_insert -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xb912ae0b __tracepoint_bcache_journal_replay_key -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xba843c3f __SCK__tp_func_bcache_gc_end -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xbc268695 __tracepoint_bcache_write -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xbe0b932d __traceiter_bcache_btree_read -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xc1857470 __tracepoint_bcache_bypass_congested -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xc67f6d4c __traceiter_bcache_btree_node_split -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 0xcef9af8d __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 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 0xe31ecf96 __traceiter_bcache_journal_entry_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 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 0xf6cdeb1b __traceiter_bcache_btree_set_root -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 0xfb6d81b8 __traceiter_bcache_write -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xfd6b5d80 __SCK__tp_func_bcache_btree_insert_key -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xff36a412 __traceiter_bcache_bypass_sequential -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x17dd39d6 dm_deferred_set_create -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x1c751a87 dm_bio_prison_alloc_cell -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x20f82d9f dm_cell_error -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x2b49e13b 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 0x365962d6 dm_bio_detain -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x39ca0d43 dm_cell_put_v2 -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x3ef72d17 dm_bio_prison_free_cell -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x42b88fa8 dm_cell_visit_release -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x54034a30 dm_cell_quiesce_v2 -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x5684ddf8 dm_cell_release -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x631fe7ae 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 0x871c8318 dm_cell_lock_v2 -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x9741ba17 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 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 0xbfc38e29 dm_bio_prison_free_cell_v2 -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xc2a10fe5 dm_get_cell -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xc895a5cf dm_cell_release_no_holder -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xca2e3a88 dm_deferred_entry_inc -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xd99e003d dm_bio_prison_create_v2 -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xe496de56 dm_cell_get_v2 -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xfa8bf3eb dm_cell_unlock_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 0xa82b2066 dm_bufio_write_dirty_buffers -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xb04f56ab dm_bufio_read -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xb2438d54 dm_bufio_release_move -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xc0d7df85 dm_bufio_new -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xc90df7e5 dm_bufio_prefetch -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xc9a3422d dm_bufio_write_dirty_buffers_async -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xcd2ba798 dm_bufio_forget -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xd4bddf5c dm_bufio_issue_flush -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xd991e3b9 dm_bufio_get_device_size -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xe6024e59 dm_bufio_release -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xebcc64a4 dm_bufio_get_block_data -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xeca7949e dm_bufio_client_destroy -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xed3283a4 dm_bufio_set_sector_offset -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xf241a6eb dm_bufio_forget_buffers -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xfe5b2b61 dm_bufio_client_create -EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x0efbca4c btracker_promotion_already_present -EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x2172e2f8 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-cache 0xf781117b dm_cache_policy_unregister -EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0xa6396cdd dm_register_path_selector -EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0xf5b3ddfa 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 0x06b86b2d dm_rh_inc_pending -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x214e131d dm_rh_mark_nosync -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x3882c578 dm_rh_bio_to_region -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x38972f23 dm_rh_region_to_sector -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x38efaf5a dm_region_hash_destroy -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x3a18389a dm_rh_update_states -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x57e16c3e dm_rh_get_state -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x5f4a6e61 dm_rh_dec -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x742a92f0 dm_region_hash_create -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x7774620f dm_rh_stop_recovery -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x78adb01c dm_rh_dirty_log -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 0xaf4f1d83 dm_rh_delay -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xbe38a431 dm_rh_recovery_prepare -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xd8aa4284 dm_rh_region_context -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 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 0x1733461d dm_block_manager_create -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 0x01c27e73 cec_notifier_parse_hdmi_phandle -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x0891f6af cec_received_msg_ts -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x11522c35 cec_delete_adapter -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x1c658b7d cec_queue_pin_hpd_event -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x2920c9d8 cec_s_phys_addr -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x30914771 cec_transmit_msg -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x31a7eb12 cec_fill_conn_info_from_drm -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x37b86c02 cec_s_log_addrs -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x5d95f3e7 cec_notifier_conn_register -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x5ec83d41 cec_transmit_attempt_done_ts -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x658dbb22 cec_queue_pin_5v_event -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x7147055f cec_queue_pin_cec_event -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x75d9b496 cec_s_conn_info -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x7e7da156 cec_s_phys_addr_from_edid -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x8b4c7192 cec_allocate_adapter -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x8f6a509b cec_pin_allocate_adapter -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x9fea094d cec_pin_changed -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xa01fbb6b cec_notifier_set_phys_addr -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xaee236c6 cec_notifier_conn_unregister -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xb8b2c859 cec_unregister_adapter -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xbe4de675 cec_get_edid_phys_addr -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xc16f2887 cec_notifier_set_phys_addr_from_edid -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xd1f0398f cec_notifier_cec_adap_unregister -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xd6f940ab cec_register_adapter -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xe3bfcbc3 cec_notifier_cec_adap_register -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xe8f849b3 cec_transmit_done_ts -EXPORT_SYMBOL_GPL drivers/media/common/b2c2/b2c2-flexcop 0x66c0289a b2c2_flexcop_debug -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x252d5abe saa7146_vmalloc_build_pgtable -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x2dee998a saa7146_vfree_destroy_pgtable -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x3188bc22 saa7146_register_extension -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x5b1f3778 saa7146_setgpio -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x66bff10f saa7146_pgtable_alloc -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xb17bfacd saa7146_wait_for_debi_done -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xb3297801 saa7146_pgtable_build_single -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xdb1757c8 saa7146_pgtable_free -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xe3cd9b5c saa7146_debug -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xfcaa8812 saa7146_unregister_extension -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xfedd524e saa7146_i2c_adapter_prepare -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x0227ccfb saa7146_set_hps_source_and_sync -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x04c6c453 saa7146_vv_release -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x20631ea9 saa7146_start_preview -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x423f63ce saa7146_vv_init -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x6ee1f7d0 saa7146_register_device -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x79fce2ce saa7146_stop_preview -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x9c9fc4ae saa7146_unregister_device -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x012b66f8 smscore_set_board_id -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x025b37aa smscore_register_device -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x0331f687 sms_board_lna_control -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x0acbcfdd sms_board_event -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x0b04283e smscore_unregister_hotplug -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x1e7633a6 smscore_start_device -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x20eaef88 smscore_onresponse -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 0x399bbec5 sms_board_power -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x45284ae9 smsendian_handle_rx_message -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x4bb570e0 sms_board_setup -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x5f2c55a0 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 0x844539ae sms_get_board -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x99a81ab3 smsclient_sendrequest -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xa4fc830e smscore_register_client -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xaa4aa358 smscore_get_device_mode -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xaee9e2a7 smscore_putbuffer -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xb30f12f5 smscore_get_board_id -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xbbdb5c42 smscore_unregister_client -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xc3827200 smscore_getbuffer -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xe98961df smscore_register_hotplug -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xf7854c6e 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 0x0c71bef9 vb2_core_queue_release -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x0cf3179e vb2_core_reqbufs -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x0d756fa2 __traceiter_vb2_buf_done -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x24451812 __tracepoint_vb2_buf_done -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x2593782f __tracepoint_vb2_buf_queue -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x3336e2e3 vb2_read -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x341a80e6 vb2_wait_for_all_buffers -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x36e7e9c0 vb2_core_qbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x4c30475d vb2_core_querybuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x4d4f6306 vb2_core_streamon -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x55486427 vb2_request_object_is_buffer -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x630b24d3 __tracepoint_vb2_qbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x6d04d24c vb2_plane_vaddr -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x6e1168ec vb2_thread_start -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x6f4bc9d0 vb2_core_poll -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x70272028 vb2_discard_done -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x7a8b36d7 vb2_write -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x8bdec391 vb2_plane_cookie -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x8cfc97c6 __traceiter_vb2_qbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xafa02393 vb2_thread_stop -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xb0a5769c vb2_core_prepare_buf -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 0xbd814676 vb2_core_dqbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xc7b45aa4 __SCK__tp_func_vb2_buf_done -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xcdee13de vb2_core_streamoff -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xd670635f vb2_core_queue_init -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xdce61195 vb2_mmap -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xdeac1043 vb2_core_create_bufs -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xe00c74b7 vb2_request_buffer_cnt -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xe840de5d vb2_core_expbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xec003e1b vb2_queue_error -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xef6cb0b4 __traceiter_vb2_dqbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xf5e4eef9 vb2_buffer_done -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xf6496f0b __traceiter_vb2_buf_queue -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xf703a3f9 __tracepoint_vb2_dqbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-dma-contig 0x833c8a3d vb2_dma_contig_set_max_seg_size -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-dma-contig 0xd6fd3fde vb2_dma_contig_memops -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-dma-sg 0x468d94c9 vb2_dma_sg_memops -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-memops 0xaf008c25 vb2_common_vm_ops -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x0e7152b1 vb2_request_queue -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x1008f932 vb2_poll -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x1135a13e vb2_reqbufs -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x12037a2b vb2_ops_wait_prepare -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x14bc700b vb2_create_bufs -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x18e1089f vb2_queue_change_type -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x19e9682c vb2_ops_wait_finish -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x220b7306 vb2_prepare_buf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x28b99c36 vb2_ioctl_streamoff -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x3c7344c0 vb2_queue_init_name -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x417ec40e vb2_fop_poll -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x437424d4 vb2_ioctl_dqbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x52a959e0 vb2_find_timestamp -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x6b6f4e37 vb2_queue_init -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x765a8b97 vb2_streamoff -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x76ace7d1 vb2_video_unregister_device -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x7b00b3bc vb2_request_validate -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x8928909c vb2_ioctl_prepare_buf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x8fbb0a51 vb2_queue_release -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x941c9ddd vb2_expbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xa2c238e2 vb2_fop_read -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xa3ece2b9 vb2_fop_write -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xb82cd52b vb2_ioctl_streamon -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xb8adf3cd vb2_dqbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xbf28b8d2 vb2_ioctl_create_bufs -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xbfed1acf vb2_ioctl_expbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xc63796ed vb2_streamon -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xc748355e vb2_ioctl_reqbufs -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xcaf3b801 vb2_ioctl_querybuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xcbdc5e63 vb2_qbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xef388669 vb2_fop_release -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xf1b0947e vb2_ioctl_qbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xf893d768 _vb2_fop_release -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xfa0d871f vb2_fop_mmap -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-vmalloc 0x9b238dbd vb2_vmalloc_memops -EXPORT_SYMBOL_GPL drivers/media/dvb-core/dvb-core 0x3186dea9 dvb_module_probe -EXPORT_SYMBOL_GPL drivers/media/dvb-core/dvb-core 0x9a7da2b7 dvb_create_media_graph -EXPORT_SYMBOL_GPL drivers/media/dvb-core/dvb-core 0xeeefc26c dvb_module_release -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/as102_fe 0x7bef70de as102_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cx24117 0xfbc4a8d6 cx24117_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/gp8psk-fe 0xa77389ac gp8psk_fe_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/mxl5xx 0x32757af4 mxl5xx_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv0910 0x5e4e6770 stv0910_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv6111 0x2d5747a9 stv6111_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda18271c2dd 0xa58548e6 tda18271c2dd_attach -EXPORT_SYMBOL_GPL drivers/media/i2c/aptina-pll 0x276cbd4f aptina_pll_calculate -EXPORT_SYMBOL_GPL drivers/media/i2c/ccs-pll 0x48ea5f24 ccs_pll_calculate -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x10ae5b1a max9271_set_serial_link -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x10af79dc max9271_disable_gpios -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x1dd5486a max9271_clear_gpios -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x2f9d97a8 max9271_verify_id -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x3665f119 max9271_set_deserializer_address -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x38eb7b7c max9271_wake_up -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x4ef654d4 max9271_set_translation -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x6860cf12 max9271_configure_i2c -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x8b3859e4 max9271_set_high_threshold -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x9bcf0391 max9271_enable_gpios -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0xa788974f max9271_set_address -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0xcf419af7 max9271_set_gpios -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0xf31a0ad8 max9271_configure_gmsl_link -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x0b336ef5 media_graph_walk_start -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x0ceb807d media_create_pad_links -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x11901452 media_graph_walk_cleanup -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x17e9088f media_device_unregister_entity -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x31c6044d media_entity_setup_link -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x3408d185 media_graph_walk_next -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x3520d15c media_device_usb_allocate -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x36fc2f08 media_devnode_create -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x395f2e32 media_entity_pads_init -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x3979ce6f media_pipeline_start -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x413b65c2 media_create_pad_link -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x44de606d media_device_delete -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x457284b2 media_request_object_unbind -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x48294ec6 media_pipeline_stop -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x493add25 __media_pipeline_start -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x4e1ace05 __media_remove_intf_links -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x4e1c0bd1 media_get_pad_index -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x512effbc media_graph_walk_init -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x5825f24b media_device_register_entity_notify -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x5868be6e media_entity_find_link -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x5a277f0d media_request_object_complete -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x61142f44 media_request_put -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x6ef2127e media_remove_intf_link -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x7119e9d8 media_device_init -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x79301b2a media_request_get_by_fd -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x7975d478 media_request_object_put -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x836665cd media_request_object_bind -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x83db6166 __media_device_register -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x87c6451f __media_pipeline_stop -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x91329705 __media_remove_intf_link -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x9d2cb1ce media_entity_remove_links -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x9e2cd60e media_remove_intf_links -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x9edeca07 media_device_register_entity -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xae2d78fd __media_device_usb_init -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xb2f98bc7 __media_entity_setup_link -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xb5c95a91 media_device_pci_init -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xb5e0cbdb media_create_intf_link -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xb8169910 media_request_object_init -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xb9f09058 media_device_unregister -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xc799de8c media_devnode_remove -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xcb224d2b __media_entity_remove_links -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xd080600c media_entity_remote_pad -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xdad5b23f media_entity_get_fwnode_pad -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xe5ceecd6 media_entity_enum_cleanup -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xf10900c5 media_device_cleanup -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xf9d47ce8 media_request_object_find -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xfc781c47 __media_entity_enum_init -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xfee2e428 media_device_unregister_entity_notify -EXPORT_SYMBOL_GPL drivers/media/pci/cx88/cx88xx 0xf59c0f33 cx88_setup_xc3028 -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x1189bf7a mantis_get_mac -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x1f2fe7ee mantis_stream_control -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x26f6ae03 mantis_i2c_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x360d0c6a mantis_input_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x405b75d8 mantis_uart_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x53502e2e mantis_dma_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x5ca65b47 mantis_input_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x5f4fbda1 mantis_ca_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x646e0b15 mantis_gpio_set_bits -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x6f058219 mantis_dvb_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x9878b9ac mantis_i2c_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xb648cfea mantis_frontend_power -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xc9f9efd6 mantis_frontend_soft_reset -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xccb3de83 mantis_pci_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xd18b95b6 mantis_dvb_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xd7f39be3 mantis_pci_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xe848c04d mantis_ca_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xedde3981 mantis_dma_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xf5ab7304 mantis_uart_exit -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x0999bc21 saa7134_querystd -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x0c84338a saa7134_g_std -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x142a5754 saa7134_ts_queue_setup -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x299e1daf saa7134_ts_buffer_prepare -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x394bcd72 saa7134_s_frequency -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x3d8c18f7 saa7134_enum_input -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x480cdad4 saa7134_ts_qops -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x4ac6c0a6 saa7134_ts_stop_streaming -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x58bf90ca saa7134_vb2_buffer_queue -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x6746c337 saa7134_g_tuner -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x6c87ec51 saa7134_g_frequency -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x8ccf2b3d saa7134_stop_streaming -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x90632e0e saa7134_querycap -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x992c5884 saa7134_ts_buffer_init -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xb67456d1 saa7134_g_input -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xc185912b saa7134_s_tuner -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xd19d3bb4 saa7134_s_input -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xde061675 saa7134_ts_start_streaming -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xf6754ee9 saa7134_s_std -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x46558c47 ttpci_budget_init -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x61ba132b ttpci_budget_set_video_port -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x7948c222 budget_debug -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x94274dbc ttpci_budget_debiwrite -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xb8cf40f0 ttpci_budget_irq10_handler -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xb9fa5364 ttpci_budget_deinit -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xf4f2d0e5 ttpci_budget_debiread -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xff6d1223 ttpci_budget_init_hooks -EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0x0a7999a8 nal_hevc_tier_from_v4l2 -EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0x1439b274 nal_hevc_read_vps -EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0x16f20644 nal_hevc_read_sps -EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0x19e3a7b7 nal_h264_write_sps -EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0x1e8dd96a nal_h264_read_pps -EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0x3025eb0c nal_hevc_write_pps -EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0x352b602a nal_h264_read_filler -EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0x36d13921 nal_hevc_level_from_v4l2 -EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0x426b36c4 nal_h264_write_filler -EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0x7259f74c nal_hevc_read_pps -EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0xa7cf592d nal_h264_read_sps -EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0xb838c5d1 nal_hevc_read_filler -EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0xc3cb4405 nal_hevc_write_vps -EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0xcd00ce89 nal_hevc_write_filler -EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0xda687e65 nal_hevc_profile_from_v4l2 -EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0xdf1ffef0 nal_h264_write_pps -EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0xe52412da nal_hevc_write_sps -EXPORT_SYMBOL_GPL drivers/media/platform/marvell-ccic/mcam-core 0x0007d820 mccic_irq -EXPORT_SYMBOL_GPL drivers/media/platform/marvell-ccic/mcam-core 0x10789a2f mccic_resume -EXPORT_SYMBOL_GPL drivers/media/platform/marvell-ccic/mcam-core 0x3fdded94 mccic_register -EXPORT_SYMBOL_GPL drivers/media/platform/marvell-ccic/mcam-core 0x5adeefbf mccic_shutdown -EXPORT_SYMBOL_GPL drivers/media/platform/marvell-ccic/mcam-core 0xa14fc588 mccic_suspend -EXPORT_SYMBOL_GPL drivers/media/platform/mtk-vpu/mtk-vpu 0x0fe4c3eb vpu_mapping_dm_addr -EXPORT_SYMBOL_GPL drivers/media/platform/mtk-vpu/mtk-vpu 0x185e07b9 vpu_load_firmware -EXPORT_SYMBOL_GPL drivers/media/platform/mtk-vpu/mtk-vpu 0x1b251719 vpu_wdt_reg_handler -EXPORT_SYMBOL_GPL drivers/media/platform/mtk-vpu/mtk-vpu 0x5d3298b3 vpu_ipi_send -EXPORT_SYMBOL_GPL drivers/media/platform/mtk-vpu/mtk-vpu 0x824ddc32 vpu_ipi_register -EXPORT_SYMBOL_GPL drivers/media/platform/mtk-vpu/mtk-vpu 0x9d3bf211 vpu_get_venc_hw_capa -EXPORT_SYMBOL_GPL drivers/media/platform/mtk-vpu/mtk-vpu 0xabaf94e6 vpu_get_plat_device -EXPORT_SYMBOL_GPL drivers/media/platform/mtk-vpu/mtk-vpu 0xbdc4d364 vpu_get_vdec_hw_capa -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x005e2146 venus_helper_set_raw_format -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x05a7f9a9 venus_helper_get_profile_level -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x0886af28 venus_helper_vb2_buf_prepare -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x0a610edb venus_helper_process_initial_cap_bufs -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x0c251b90 hfi_session_create -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x0fd59409 hfi_session_abort -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x16947f19 venus_helper_intbufs_realloc -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x1760718a venus_helper_session_init -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x1c39801d venus_helper_alloc_dpb_bufs -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x254bc698 venus_helper_check_codec -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x2729e40d venus_helper_set_output_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 0x292d009b venus_helper_get_opb_size -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x2d0a6e4e hfi_session_get_property -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x2d45202f venus_helper_find_buf -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x2d693ecb venus_helper_m2m_job_abort -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x337b9ad4 venus_helper_set_stride -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x3532e370 hfi_session_init -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x3c6bea2f venus_helper_intbufs_alloc -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x3f99d998 venus_helper_set_profile_level -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x4d80594b hfi_session_flush -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x61a5e302 venus_helper_release_buf_ref -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x62bbb19a venus_helper_set_dyn_bufmode -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x64305aba venus_helper_set_num_bufs -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x76838395 hfi_session_stop -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x786fdcf3 hfi_session_set_property -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x7afe3198 hfi_session_start -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x7be756bc hfi_session_process_buf -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x7d87c99c venus_helper_set_input_resolution -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x87767936 venus_helper_get_bufreq -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x8d2f70f2 hfi_session_deinit -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x95173fc5 venus_helper_set_format_constraints -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x969bd6d6 hfi_session_destroy -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x9eac0060 venus_helper_free_dpb_bufs -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x9f6add29 venus_helper_unregister_bufs -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xa5588c6c venus_helper_intbufs_free -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xa7551bd3 hfi_session_unload_res -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xac3f6394 venus_helper_buffers_done -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 0xb68052e5 venus_helper_queue_dpb_bufs -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xb8f01729 venus_helper_vb2_buf_init -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xbb47d75a venus_helper_set_multistream -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xc202d62e venus_helper_vb2_start_streaming -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 0xd3dd380a venus_helper_acquire_buf_ref -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xd71429c5 venus_helper_vb2_stop_streaming -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xd71f85cf venus_helper_set_bufsize -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xe858eb00 venus_helper_init_instance -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xe9416aca venus_helper_process_initial_out_bufs -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xe9863448 hfi_session_continue -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xebca1d80 venus_helper_set_work_mode -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xedd0d7c9 venus_helper_get_out_fmts -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xf46b26fc venus_helper_set_color_format -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xf891ef76 venus_helper_get_ts_metadata -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xf97997f1 venus_helper_vb2_buf_queue -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 0x89e88f7e rcar_fcp_get_device -EXPORT_SYMBOL_GPL drivers/media/platform/rcar-fcp 0x9877c29f rcar_fcp_get -EXPORT_SYMBOL_GPL drivers/media/platform/vsp1/vsp1 0x2932bf1a vsp1_du_unmap_sg -EXPORT_SYMBOL_GPL drivers/media/platform/vsp1/vsp1 0x2ebfe8da vsp1_du_init -EXPORT_SYMBOL_GPL drivers/media/platform/vsp1/vsp1 0x47ed18b0 vsp1_du_atomic_update -EXPORT_SYMBOL_GPL drivers/media/platform/vsp1/vsp1 0x67fc0bcf vsp1_du_atomic_flush -EXPORT_SYMBOL_GPL drivers/media/platform/vsp1/vsp1 0x7e1b6545 vsp1_du_atomic_begin -EXPORT_SYMBOL_GPL drivers/media/platform/vsp1/vsp1 0xc374bff6 vsp1_du_setup_lif -EXPORT_SYMBOL_GPL drivers/media/platform/vsp1/vsp1 0xcb2d194e vsp1_du_map_sg -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x1675daa8 xvip_clr_or_set -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x43738fab xvip_set_format_size -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x7a498f6e xvip_of_get_format -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x8b33e71c xvip_clr_and_set -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0xa1252fe0 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 0xc99fc973 xvip_cleanup_resources -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0xccce52a5 xvip_enum_frame_size -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0xe08e6063 xvip_get_format_by_code -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0xe39ad85c 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 0x5cd03f34 xvtc_of_get -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-vtc 0xa8a0f912 xvtc_put -EXPORT_SYMBOL_GPL drivers/media/radio/shark2 0x7485f5da radio_tea5777_exit -EXPORT_SYMBOL_GPL drivers/media/radio/shark2 0x8fd2baa6 radio_tea5777_init -EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0x3495b26c si470x_ctrl_ops -EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0x8a710b92 si470x_viddev_template -EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0xb2b53244 si470x_stop -EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0xce9ee7ea si470x_start -EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0xed5a0bf5 si470x_set_freq -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x0e6351f1 rc_keydown -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x111f187d rc_map_register -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x1719c7a7 rc_keyup -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x333cbbf4 ir_raw_event_set_idle -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x337f0b14 devm_rc_allocate_device -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x390bc9e4 rc_map_get -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x3afcdd9f rc_free_device -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x44ec7c41 ir_raw_event_handle -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x4e1d93b3 rc_register_device -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x56a7a6f0 ir_raw_event_store_with_timeout -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x5a09791a rc_allocate_device -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x85c29ad5 rc_keydown_notimeout -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x97fdf382 rc_g_keycode_from_table -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x9f64762c ir_raw_event_store_with_filter -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xa57ac509 lirc_scancode_event -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xc7c86774 devm_rc_register_device -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xd02f7814 ir_raw_event_store -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xd1cf9c1b rc_map_unregister -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xd485ca40 rc_repeat -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xd6265993 ir_raw_event_store_edge -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xf633acb8 rc_unregister_device -EXPORT_SYMBOL_GPL drivers/media/tuners/mt2063 0x3e746a7c mt2063_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/mt20xx 0x84404b9f microtune_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/mxl5007t 0xb78027b1 mxl5007t_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/r820t 0x50e3d5aa r820t_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tda18271 0x08d4f251 tda18271_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tda827x 0xaf097a29 tda827x_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tda8290 0xa31a5859 tda829x_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tda8290 0xb0e9d169 tda829x_probe -EXPORT_SYMBOL_GPL drivers/media/tuners/tda9887 0x9bafa3b0 tda9887_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tea5761 0xc53e2c18 tea5761_autodetection -EXPORT_SYMBOL_GPL drivers/media/tuners/tea5761 0xda621b10 tea5761_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tea5767 0x3d392d27 tea5767_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tea5767 0x9cb45695 tea5767_autodetection -EXPORT_SYMBOL_GPL drivers/media/tuners/tuner-simple 0x3f4162e4 simple_tuner_attach -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x017ea7c7 cx231xx_tuner_callback -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x0d080ce3 cx231xx_demod_reset -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x19dc9231 cx231xx_dev_uninit -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x1f60f743 cx231xx_uninit_vbi_isoc -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x2f871958 cx231xx_set_mode -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x4270e44b cx231xx_unmute_audio -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x42c5c6a0 cx231xx_enable_i2c_port_3 -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x45a66e99 cx231xx_init_isoc -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x4be4c180 cx231xx_get_i2c_adap -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x4e3a22f6 cx231xx_enable656 -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x5c806dfc cx231xx_uninit_bulk -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x5d86f4af cx231xx_init_bulk -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x5fa8c78b cx231xx_set_alt_setting -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x68d1816f cx231xx_send_gpio_cmd -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x8271e8fd cx231xx_init_vbi_isoc -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x83b3748a cx231xx_disable656 -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x874dd995 is_fw_load -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xa7de7341 cx231xx_send_usb_command -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xb6439731 cx231xx_uninit_isoc -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xcd63c310 cx231xx_dev_init -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xf1a0cf2e cx231xx_capture_start -EXPORT_SYMBOL_GPL drivers/media/usb/dvb-usb-v2/mxl111sf-demod 0x18057b1d mxl111sf_demod_attach -EXPORT_SYMBOL_GPL drivers/media/usb/dvb-usb-v2/mxl111sf-tuner 0xb6b236f3 mxl111sf_tuner_attach -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x0545987f em28xx_write_regs -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x1bc1c5e1 em28xx_read_ac97 -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x1d55ec18 em28xx_find_led -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x1e82583b em28xx_audio_analog_set -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x360facfb em28xx_read_reg -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x39b2275e em28xx_write_ac97 -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x3c26743e em28xx_init_usb_xfer -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x5f8fd925 em28xx_audio_setup -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x6152e562 em28xx_stop_urbs -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x678a86a2 em28xx_alloc_urbs -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x6f7f9680 em28xx_gpio_set -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 0xa426a94f em28xx_write_reg -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xa521b5c8 em28xx_toggle_reg_bits -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xae6319f4 em28xx_init_camera -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xbf31cd42 em28xx_uninit_usb_xfer -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xcc335e70 em28xx_setup_xc3028 -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xf25181e4 em28xx_write_reg_bits -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xfa65ce42 em28xx_set_mode -EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x07c05c07 tm6000_set_reg_mask -EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x2309a6d6 tm6000_xc5000_callback -EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x391e7b1b tm6000_set_audio_bitrate -EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x3d0b8657 tm6000_set_reg -EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x484e8600 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 0x1bbc2807 __v4l2_async_notifier_add_fwnode_subdev -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0x69294108 __v4l2_async_notifier_add_fwnode_remote_subdev -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0x9eda09c6 __v4l2_async_notifier_add_subdev -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0xdb42978c __v4l2_async_notifier_add_i2c_subdev -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0xfdbceda6 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 0x424d555f v4l2_flash_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-flash-led-class 0x62a7b42a v4l2_flash_indicator_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-flash-led-class 0xb052abeb v4l2_flash_release -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x2b31aeb8 v4l2_fwnode_put_link -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x2bbff869 v4l2_fwnode_parse_link -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x3f85db1f 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 0x614ba912 v4l2_fwnode_connector_parse -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x65620213 v4l2_fwnode_endpoint_parse -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x90f4a7af v4l2_async_notifier_parse_fwnode_endpoints -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0xb7ed28c6 v4l2_fwnode_endpoint_free -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0xbf3aa167 v4l2_async_register_subdev_sensor -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0xd7610bda v4l2_fwnode_device_parse -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0xe6410ae2 v4l2_fwnode_endpoint_alloc_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-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 0x0707a30e v4l2_m2m_ctx_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x07357e50 v4l2_m2m_ctx_release -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x098d1b8d v4l2_m2m_last_buffer_done -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x0c4959ef v4l2_m2m_ioctl_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x133ffddd v4l2_m2m_ioctl_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x15706e70 v4l2_m2m_ioctl_stateless_try_decoder_cmd -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x17228860 v4l2_m2m_ioctl_streamon -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x1ab737a0 v4l2_m2m_ioctl_encoder_cmd -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x1c5da6be v4l2_m2m_poll -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x1e257cd9 v4l2_m2m_buf_queue -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x1e87f2a9 v4l2_m2m_decoder_cmd -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x2034f995 v4l2_m2m_ioctl_querybuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x245cb62f v4l2_m2m_streamon -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x2d4182bb v4l2_m2m_next_buf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x33f01583 v4l2_m2m_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x36ac2597 v4l2_m2m_ioctl_create_bufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x3f739bb2 v4l2_m2m_buf_remove_by_idx -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x43a838dc v4l2_m2m_fop_mmap -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x4a67dad8 v4l2_m2m_buf_remove -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x4bac04e6 v4l2_m2m_update_start_streaming_state -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x4e92f776 v4l2_m2m_querybuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x4fa88f5b v4l2_m2m_ioctl_decoder_cmd -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x547aface v4l2_m2m_request_queue -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x623ae5d0 v4l2_m2m_reqbufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x63b6a444 v4l2_m2m_try_schedule -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x684bcdd7 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 0x7945751b v4l2_m2m_ioctl_try_decoder_cmd -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x8176cbf8 v4l2_m2m_last_buf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x8489345f v4l2_m2m_buf_copy_metadata -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x877af650 v4l2_m2m_fop_poll -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x8f951eb4 v4l2_m2m_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x9f50a90d v4l2_m2m_ioctl_prepare_buf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xa04f3c02 v4l2_m2m_ioctl_reqbufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xa379795e v4l2_m2m_ioctl_try_encoder_cmd -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xc4d5c7fc v4l2_m2m_streamoff -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xc6fca5ad v4l2_m2m_release -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xc9180a73 v4l2_m2m_ioctl_streamoff -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xdd570019 v4l2_m2m_ioctl_expbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xe397cdd5 v4l2_m2m_register_media_controller -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xf13ff84d v4l2_m2m_unregister_media_controller -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xf58df8e6 v4l2_m2m_update_stop_streaming_state -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xf6ead579 v4l2_m2m_encoder_cmd -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xf9acad84 v4l2_m2m_buf_remove_by_buf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xfacf0dd6 v4l2_m2m_ioctl_stateless_decoder_cmd -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xfbd1841d v4l2_m2m_create_bufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xfd0ee911 v4l2_m2m_prepare_buf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x038b214a videobuf_reqbufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x0c400af0 videobuf_queue_core_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x10b2f4e4 videobuf_mmap_mapper -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x189a663f videobuf_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x1cbc94ba videobuf_streamon -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x27f400d5 videobuf_mmap_free -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x284c26b0 videobuf_read_stop -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x346249f2 videobuf_read_start -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x3c580e08 videobuf_streamoff -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x46eee403 videobuf_waiton -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x543f6513 videobuf_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x7afa6121 videobuf_poll_stream -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x7eb6a654 videobuf_stop -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x85a9e052 videobuf_alloc_vb -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x8832b687 videobuf_iolock -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x8dd367d4 videobuf_querybuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x955c6e16 videobuf_queue_is_busy -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xb1517871 videobuf_read_stream -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xbbeba0b2 videobuf_queue_to_vaddr -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xc985c2b9 videobuf_next_field -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xd2f870a4 __videobuf_mmap_setup -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xe5972ce7 videobuf_queue_cancel -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xfb1d15bd videobuf_mmap_setup -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xfed6fe7b videobuf_read_one -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x553a86d0 videobuf_sg_alloc -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x8ce015f1 videobuf_to_dma -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0xa5f9e23d videobuf_dma_unmap -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0xae566474 videobuf_dma_free -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0xb0691c3b videobuf_queue_sg_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0x8b1c8732 videobuf_to_vmalloc -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0xa025af29 videobuf_queue_vmalloc_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0xd32dcded videobuf_vmalloc_free -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x092f29fd v4l2_device_unregister_subdev -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x11f3044c __SCK__tp_func_vb2_v4l2_buf_queue -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x1246e14c v4l2_i2c_subdev_set_name -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x18276138 v4l2_event_dequeue -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x1868e3d0 v4l2_i2c_subdev_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x1b7c5f2b v4l_vb2q_enable_media_source -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x1d556063 v4l2_create_fwnode_links_to_pad -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x281d7d29 v4l2_fh_add -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x28e9f999 v4l_disable_media_source -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x2ae0877b __SCK__tp_func_vb2_v4l2_buf_done -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x2f183d0a v4l2_i2c_new_subdev -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x31adc7eb v4l2_fh_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x41ba1acd v4l2_get_link_freq -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x452f53b1 __tracepoint_vb2_v4l2_buf_done -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x459667eb v4l2_event_subdev_unsubscribe -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x46ac032f __tracepoint_vb2_v4l2_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x47e7bcb8 v4l2_device_disconnect -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x499c95c2 v4l2_g_parm_cap -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x49f29d5e v4l2_subdev_link_validate_default -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x4c69f8c2 v4l2_fh_release -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x516e3961 v4l2_compat_ioctl32 -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x553fdb74 __v4l2_ctrl_handler_setup -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x5873e03c v4l2_i2c_subdev_addr -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x59f980af v4l2_event_unsubscribe -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x5b299a07 v4l2_device_register -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x5d56f5fa v4l2_src_change_event_subdev_subscribe -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x618b705a v4l2_s_parm_cap -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x633bc305 v4l2_device_register_subdev -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x65bb2a3f v4l2_mc_create_media_graph -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x67b5c2ee v4l2_fh_open -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 0x6e45c489 v4l2_device_put -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x6e9acc41 v4l2_fill_pixfmt_mp -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x780aa16f v4l2_event_subscribe -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7dc487f7 v4l2_event_queue -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7e8500a8 v4l2_fh_is_singular -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x8618d7e4 v4l2_event_wake_all -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x8c6ebac5 v4l2_ctrl_request_hdl_find -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x90225000 v4l2_event_queue_fh -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x90c49a57 v4l2_pipeline_pm_get -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x92f1fecf __traceiter_vb2_v4l2_buf_done -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x94f04353 v4l_enable_media_source -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x9ec59092 v4l2_src_change_event_subscribe -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x9edddedc __traceiter_vb2_v4l2_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x9efd2301 v4l2_event_pending -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x9fc4c5cd __v4l2_device_register_subdev_nodes -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x9fef35ac v4l2_apply_frmsize_constraints -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa0ba11a5 __traceiter_vb2_v4l2_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa60f79e5 v4l2_spi_subdev_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa679e207 v4l2_event_unsubscribe_all -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa67f07da v4l2_fh_exit -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa695e298 v4l2_subdev_alloc_state -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa9c0e02c v4l2_device_set_name -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xb0d6f427 v4l2_ctrl_request_hdl_ctrl_find -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xb13d41a0 v4l2_subdev_free_state -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xb197f9f2 v4l2_fh_del -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xb6d33e77 v4l2_subdev_notify_event -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xbed5aa7f v4l2_pipeline_link_notify -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc5fa334c v4l2_spi_new_subdev -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc63c335e v4l2_device_unregister -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 0xd0c3358f v4l2_subdev_link_validate -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 0xef3b12ba v4l2_create_fwnode_links -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf2a353ac v4l2_i2c_tuner_addrs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf3cf88d1 v4l2_pipeline_pm_put -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf3d9a8df v4l2_subdev_get_fwnode_pad_1_to_1 -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf5ef842e v4l_bound_align_image -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xfbabc392 __traceiter_vb2_v4l2_buf_queue -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xfbee690c v4l2_i2c_new_subdev_board -EXPORT_SYMBOL_GPL drivers/memory/mtk-smi 0x0ca4d4e5 mtk_smi_larb_get -EXPORT_SYMBOL_GPL drivers/memory/mtk-smi 0x541ec10f mtk_smi_larb_put -EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0x5c333c5f pm80x_init -EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0x865acf10 pm80x_regmap_config -EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0xb0807609 pm80x_pm_ops -EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0xd99fd720 pm80x_deinit -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x1f7cb619 arizona_clk32k_disable -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x22c038eb arizona_free_irq -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x2721b4ff wm5110_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x3128c424 arizona_set_irq_wake -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 0x4b81a80a arizona_pm_ops -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x4c087981 wm5110_aod -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x641975b3 wm5110_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x6cc020d8 wm5110_patch -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x72711090 arizona_clk32k_enable -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x88b8f77a wm8998_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x9421e553 arizona_dev_init -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x994a218e wm5102_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xa6b70564 wm8997_irq -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xa727bd3b cs47l24_irq -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xaaf78759 wm5110_irq -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xafc8224f wm8997_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xbd9e2c30 arizona_dev_exit -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xc0730b00 arizona_request_irq -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xc81b43ab wm5110_revd_irq -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xd26c2a02 wm8997_patch -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xda72e0c2 wm5102_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xf0827d72 cs47l24_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xf41224eb cs47l24_patch -EXPORT_SYMBOL_GPL drivers/mfd/atc260x-core 0x2af19b81 atc260x_match_device -EXPORT_SYMBOL_GPL drivers/mfd/atc260x-core 0x353a07b1 atc260x_device_probe -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x0af4f3b0 da9150_write_qif -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x3680ea86 da9150_bulk_write -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x6b1071c9 da9150_reg_read -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x6d2e3dde da9150_set_bits -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xa9af922d da9150_read_qif -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xab4d0c9a da9150_bulk_read -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xfce067ed da9150_reg_write -EXPORT_SYMBOL_GPL drivers/mfd/gateworks-gsc 0xa142a524 gsc_read -EXPORT_SYMBOL_GPL drivers/mfd/gateworks-gsc 0xb7abd1c4 gsc_write -EXPORT_SYMBOL_GPL drivers/mfd/iqs62x 0xa436f4de iqs62x_events -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x2d1166fe kempld_get_mutex -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x46daed9f kempld_write8 -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x49375fb9 kempld_read16 -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x63bb556a kempld_write32 -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x7fb70d62 kempld_write16 -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x95e9ce55 kempld_read8 -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xaadf6f3e kempld_read32 -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xcf7abd51 kempld_release_mutex -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0x18c3b8e3 lm3533_write -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0x2b3215fd lm3533_read -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0x67ca63e9 lm3533_update -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x2e965fc5 lm3533_ctrlbank_set_brightness -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x8485852c lm3533_ctrlbank_get_pwm -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x985ddf0d lm3533_ctrlbank_disable -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xa682b8da lm3533_ctrlbank_get_brightness -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xd3f2f8a0 lm3533_ctrlbank_set_pwm -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xdfd3a7ce lm3533_ctrlbank_set_max_current -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xebf0a07c lm3533_ctrlbank_enable -EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0x3096596d lp3943_read_byte -EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0x333bf372 lp3943_update_bits -EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0xb22eebfc lp3943_write_byte -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x0d7a82d7 madera_pm_ops -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x0f379262 madera_of_match -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x1c9643ae cs47l15_32bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x1c9b9fee cs47l15_16bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x5fa35ea2 cs47l15_16bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x5fae82e2 cs47l15_32bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x6e73aaf0 cs47l15_patch -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x7b6eff1b madera_dev_init -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x8846035b cs47l92_16bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x884bdf1b cs47l92_32bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x8b84dd15 cs47l35_patch -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x9560f46e cs47l35_32bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x956d282e cs47l35_16bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0xa36187a6 madera_dev_exit -EXPORT_SYMBOL_GPL drivers/mfd/madera 0xa7126f16 cs47l85_32bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0xa71fb356 cs47l85_16bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0xbfc718a6 cs47l90_32bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0xbfcac4e6 cs47l90_16bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0xcb731e57 cs47l92_32bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0xcb7ec217 cs47l92_16bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0xd00f4134 cs47l85_patch -EXPORT_SYMBOL_GPL drivers/mfd/madera 0xd4ca37f7 cs47l92_patch -EXPORT_SYMBOL_GPL drivers/mfd/madera 0xd655e962 cs47l35_16bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0xd6583522 cs47l35_32bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0xe427721a cs47l85_16bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0xe42aae5a cs47l85_32bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0xebe384cb madera_name_from_type -EXPORT_SYMBOL_GPL drivers/mfd/madera 0xf603df3a cs47l90_patch -EXPORT_SYMBOL_GPL drivers/mfd/madera 0xfcf205aa cs47l90_16bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0xfcffd9ea cs47l90_32bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x28aedd26 mc13xxx_variant_mc34708 -EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x3aa1284e mc13xxx_variant_mc13783 -EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x5a8bd09f mc13xxx_common_init -EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x6aa8ff4d mc13xxx_common_exit -EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x7a1b636e mc13xxx_variant_mc13892 -EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0xbf3a0461 mc13xxx_adc_do_conversion -EXPORT_SYMBOL_GPL drivers/mfd/motorola-cpcap 0xa226dbe8 cpcap_sense_virq -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x12973753 pcf50633_write_block -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x1daf261d pcf50633_register_irq -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x4b52b50c pcf50633_irq_mask_get -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x71262b44 pcf50633_reg_write -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x7e4b3ffe pcf50633_reg_set_bit_mask -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x86c1bea9 pcf50633_reg_clear_bits -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x936ded80 pcf50633_read_block -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x962ec53a pcf50633_irq_mask -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xa7df5af1 pcf50633_reg_read -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xaa03bca3 pcf50633_irq_unmask -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xac407054 pcf50633_free_irq -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0x71cd1b3d pcf50633_adc_async_read -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0xe26200d0 pcf50633_adc_sync_read -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x02a97c31 pcf50633_gpio_invert_set -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x26e7b1fc pcf50633_gpio_power_supply_set -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x961d0ffd pcf50633_gpio_set -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xbf3ff2c4 pcf50633_gpio_invert_get -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xe00a2318 pcf50633_gpio_get -EXPORT_SYMBOL_GPL drivers/mfd/rave-sp 0x1a743003 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 0x00f25c77 si476x_core_cmd_get_property -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x04197613 si476x_core_stop -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x089b87e1 si476x_core_cmd_am_acf_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x0ca69dfa si476x_core_has_am -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x123184a8 si476x_core_cmd_fm_seek_start -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x1404a4ce si476x_core_cmd_zif_pin_cfg -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x146e41e6 si476x_core_cmd_set_property -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x30e34d5f devm_regmap_init_si476x -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x3445f84a si476x_core_cmd_am_tune_freq -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x3700c8e9 si476x_core_is_a_secondary_tuner -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x3ebfb5ec si476x_core_cmd_fm_phase_div_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x43787aef si476x_core_i2c_xfer -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x46f4902c si476x_core_is_a_primary_tuner -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x4cff31d3 si476x_core_set_power_state -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x537c59d8 si476x_core_cmd_am_rsq_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x70240519 si476x_core_cmd_fm_rds_blockcount -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x8016536c si476x_core_is_powered_up -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x8ae36158 si476x_core_cmd_func_info -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x8f992ae2 si476x_core_has_diversity -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x9f845165 si476x_core_cmd_power_up -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xa45c735b si476x_core_cmd_intb_pin_cfg -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xa8cc9605 si476x_core_is_in_am_receiver_mode -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xab25b253 si476x_core_cmd_fm_rds_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xac97cf96 si476x_core_cmd_am_seek_start -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xb44560c8 si476x_core_cmd_ana_audio_pin_cfg -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xcd455c26 si476x_core_cmd_fm_rsq_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xd6a3e5ee si476x_core_cmd_agc_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xe838c636 si476x_core_cmd_fm_tune_freq -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xef241b0c si476x_core_cmd_dig_audio_pin_cfg -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xf140f906 si476x_core_cmd_power_down -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xf4f0051c si476x_core_cmd_fm_phase_diversity -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xf9022f82 si476x_core_cmd_ic_link_gpo_ctl_pin_cfg -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xfa92e4e4 si476x_core_start -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xfe1299b1 si476x_core_cmd_fm_acf_status -EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x4f15bf53 sm501_unit_power -EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x5794b440 sm501_misc_control -EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x61167ef8 sm501_set_clock -EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x8aad5f14 sm501_modify_reg -EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x9347d7d2 sm501_find_clock -EXPORT_SYMBOL_GPL drivers/mfd/sprd-sc27xx-spi 0xd432cdcf sprd_pmic_detect_charger_type -EXPORT_SYMBOL_GPL drivers/mfd/stmfx 0x0486ffff stmfx_function_enable -EXPORT_SYMBOL_GPL drivers/mfd/stmfx 0x38a1dc95 stmfx_function_disable -EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x95bbf1d4 am335x_tsc_se_adc_done -EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0xb940b3a4 am335x_tsc_se_set_once -EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0xced25f19 am335x_tsc_se_clr -EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0xfc386bea am335x_tsc_se_set_cache -EXPORT_SYMBOL_GPL drivers/mfd/tps65217 0x06bbab50 tps65217_reg_write -EXPORT_SYMBOL_GPL drivers/mfd/tps65217 0x144db6e2 tps65217_set_bits -EXPORT_SYMBOL_GPL drivers/mfd/tps65217 0x2a166635 tps65217_reg_read -EXPORT_SYMBOL_GPL drivers/mfd/tps65217 0x399f4aea tps65217_clear_bits -EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0x21edad09 tps65218_set_bits -EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0x49e2c693 tps65218_clear_bits -EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0xdea85b05 tps65218_reg_write -EXPORT_SYMBOL_GPL drivers/mfd/ucb1400_core 0x9339b38e ucb1400_adc_read -EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x043da9fe alcor_write8 -EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x08e730b4 alcor_read32 -EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x1b3e9a27 alcor_read32be -EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x2c4368e4 alcor_write32 -EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x87865cb3 alcor_read8 -EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0xea3f1133 alcor_write32be -EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0xf0a5800f alcor_write16 -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x068112e4 rtsx_pci_dma_unmap_sg -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x1c294ada rtsx_pci_card_power_off -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x2312279b rtsx_pci_card_pull_ctl_enable -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x2a2aaf11 rtsx_pci_read_register -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x2a4fff02 rtsx_pci_read_phy_register -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x30c05951 rtsx_pci_read_ppbuf -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x392afae6 rtsx_pci_write_phy_register -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x43c5c526 rtsx_pci_complete_unfinished_transfer -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x66aca5a2 rtsx_pci_add_cmd -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x6dd30663 rtsx_pci_card_exist -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x7aec71bf rtsx_pci_card_exclusive_check -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x8734934e rtsx_pci_switch_output_voltage -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x91089b01 rtsx_pci_write_ppbuf -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xa0414a77 rtsx_pci_switch_clock -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xa862aa3e rtsx_pci_write_register -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xae9bddee rtsx_pci_dma_transfer -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xb10f110d rtsx_pci_card_power_on -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xb4371be3 rtsx_pci_stop_cmd -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xb48c00b0 rtsx_pci_transfer_data -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xbdc17f27 rtsx_pci_dma_map_sg -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xc3922f6c rtsx_pci_send_cmd -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xdc8f25d6 rtsx_pci_send_cmd_no_wait -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xe4726fbe rtsx_pci_start_run -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xff5b2baa rtsx_pci_card_pull_ctl_disable -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x127559e0 rtsx_usb_write_ppbuf -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x331bf03d rtsx_usb_send_cmd -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x3e5df83a rtsx_usb_card_exclusive_check -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x3fe085ec rtsx_usb_get_rsp -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x69ced6c0 rtsx_usb_ep0_read_register -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x7c4eb93b rtsx_usb_write_register -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xa11a0b8b rtsx_usb_ep0_write_register -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xa7753a84 rtsx_usb_add_cmd -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xb8d1dc16 rtsx_usb_read_ppbuf -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xba5ce221 rtsx_usb_transfer_data -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xc87a1636 rtsx_usb_get_card_status -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xcb85f9d5 rtsx_usb_switch_clock -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xe6ea33a8 rtsx_usb_read_register -EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x35cfe9ad cb710_sg_dwiter_read_next_block -EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0xa32f4e92 cb710_sg_dwiter_write_next_block -EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0xb05195c6 cb710_set_irq_handler -EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0xcd4131d0 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 0x24dd7ac0 enclosure_component_alloc -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x450ee8a9 enclosure_add_device -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x7758d1c3 enclosure_unregister -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x8a088074 enclosure_remove_device -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x9a3355ee enclosure_register -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x9aad9d59 enclosure_component_register -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xab110b81 enclosure_for_each_device -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xc2d17d11 enclosure_find -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x147e6419 lis3_dev -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x4e8262a2 lis3lv02d_remove_fs -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x51b6c5c7 lis3lv02d_joystick_disable -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x83a012f3 lis3lv02d_poweron -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xa6032550 lis3lv02d_init_device -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xd4d183e7 lis3lv02d_poweroff -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xde02a0d1 lis3lv02d_joystick_enable -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xebc9489c lis3lv02d_init_dt -EXPORT_SYMBOL_GPL drivers/misc/pvpanic/pvpanic 0x30c6dbb6 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 0x4138ab2c uacce_register -EXPORT_SYMBOL_GPL drivers/misc/uacce/uacce 0x4a43dbc8 uacce_alloc -EXPORT_SYMBOL_GPL drivers/misc/uacce/uacce 0x573d2d62 uacce_remove -EXPORT_SYMBOL_GPL drivers/mmc/host/dw_mmc-pltfm 0x3849305d dw_mci_pltfm_pmops -EXPORT_SYMBOL_GPL drivers/mmc/host/dw_mmc-pltfm 0x9c9d3ca2 dw_mci_pltfm_remove -EXPORT_SYMBOL_GPL drivers/mmc/host/dw_mmc-pltfm 0xef84305e dw_mci_pltfm_register -EXPORT_SYMBOL_GPL drivers/mmc/host/mmc_hsq 0x43f982e6 mmc_hsq_resume -EXPORT_SYMBOL_GPL drivers/mmc/host/mmc_hsq 0x5e67957c mmc_hsq_suspend -EXPORT_SYMBOL_GPL drivers/mmc/host/mmc_hsq 0xab5aa460 mmc_hsq_finalize_request -EXPORT_SYMBOL_GPL drivers/mmc/host/mmc_hsq 0xb06fe5a4 mmc_hsq_init -EXPORT_SYMBOL_GPL drivers/mmc/host/renesas_sdhi_core 0x661743a1 renesas_sdhi_remove -EXPORT_SYMBOL_GPL drivers/mmc/host/renesas_sdhi_core 0xe4fd4c97 renesas_sdhi_probe -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x171abac9 sdhci_request_atomic -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x1781bca3 sdhci_set_power -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x1ed19436 sdhci_send_tuning -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x23c909d8 sdhci_set_ios -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x4258916e sdhci_adma_write_desc -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x46f6c806 sdhci_abort_tuning -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x513d5ce6 sdhci_set_bus_width -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x5f2486c7 sdhci_set_clock -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x5fcf9a70 sdhci_cqe_disable -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x5fd909d5 sdhci_start_tuning -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x6599268c sdhci_add_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x6c2f795e sdhci_dumpregs -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x6c6f1321 sdhci_enable_sdio_irq -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x7797361e sdhci_start_signal_voltage_switch -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x7945f6ea sdhci_cqe_irq -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x7d695a03 sdhci_set_power_noreg -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x846ce369 sdhci_reset -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x9799a985 sdhci_set_uhs_signaling -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x99509714 sdhci_free_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x9aa5d770 sdhci_enable_v4_mode -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x9c2a2fe4 sdhci_request -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x9ea3fc49 sdhci_suspend_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xa41e06aa sdhci_alloc_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xa5c05c5d sdhci_runtime_suspend_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xa5eb3d08 sdhci_enable_clk -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xa71579fe sdhci_setup_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xb6c66c57 __sdhci_read_caps -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xb76a6a66 sdhci_set_power_and_bus_voltage -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xb9be6e80 sdhci_cleanup_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xbb38cf38 __sdhci_set_timeout -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xbf1871c0 sdhci_cqe_enable -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xce68e5d1 sdhci_execute_tuning -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xd05734c1 sdhci_reset_tuning -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xd223e88a sdhci_set_data_timeout_irq -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xe04d895b sdhci_resume_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xe29a9860 sdhci_calc_clk -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xe76f839f sdhci_remove_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xe7e83ee0 sdhci_runtime_resume_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xef2aae58 sdhci_end_tuning -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xef40d4a1 __sdhci_add_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xff668ee5 sdhci_switch_external_dma -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x185f0368 sdhci_pltfm_free -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x3757736f sdhci_pltfm_register -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x4e17cd94 sdhci_pltfm_clk_get_max_clock -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x8f4511d3 sdhci_pltfm_unregister -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x91972922 sdhci_pltfm_init -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x91c1ba73 sdhci_pltfm_pmops -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xbd026e66 sdhci_pltfm_resume -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xc4e56b25 sdhci_get_property -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xd3568ad0 sdhci_pltfm_suspend -EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0x0b8a17c7 tmio_mmc_enable_mmc_irqs -EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0x255f8173 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 0x6825e69c tmio_mmc_do_data_irq -EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0x863b6a8c tmio_mmc_host_free -EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0x897ab8ad tmio_mmc_disable_mmc_irqs -EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0xa9a5b824 tmio_mmc_host_runtime_suspend -EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0xc13cba85 tmio_mmc_host_remove -EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0xe3e77733 tmio_mmc_host_probe -EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0xe54bd88c tmio_mmc_host_runtime_resume -EXPORT_SYMBOL_GPL drivers/most/most_core 0x124445a5 most_deregister_component -EXPORT_SYMBOL_GPL drivers/most/most_core 0x1d3b81f0 most_stop_enqueue -EXPORT_SYMBOL_GPL drivers/most/most_core 0x234ab5e5 most_register_component -EXPORT_SYMBOL_GPL drivers/most/most_core 0x3a7b2f62 most_get_mbo -EXPORT_SYMBOL_GPL drivers/most/most_core 0x4fb76b1c most_put_mbo -EXPORT_SYMBOL_GPL drivers/most/most_core 0x7316f57b most_deregister_interface -EXPORT_SYMBOL_GPL drivers/most/most_core 0x76173633 most_register_interface -EXPORT_SYMBOL_GPL drivers/most/most_core 0x79411eab most_resume_enqueue -EXPORT_SYMBOL_GPL drivers/most/most_core 0x82a8b8fd most_deregister_configfs_subsys -EXPORT_SYMBOL_GPL drivers/most/most_core 0xa6bf136f most_start_channel -EXPORT_SYMBOL_GPL drivers/most/most_core 0xaa5fbbc0 most_submit_mbo -EXPORT_SYMBOL_GPL drivers/most/most_core 0xe53ff123 most_stop_channel -EXPORT_SYMBOL_GPL drivers/most/most_core 0xee30c29f most_register_configfs_subsys -EXPORT_SYMBOL_GPL drivers/most/most_core 0xfcff496e channel_has_mbo -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0x5f067611 cfi_cmdset_0200 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0x9d31766f cfi_cmdset_0001 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0xa2185387 cfi_cmdset_0003 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0x4e750ef5 cfi_cmdset_0701 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0xbd8cc173 cfi_cmdset_0002 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0xc3de8aa3 cfi_cmdset_0006 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0020 0x2c4ba7f4 cfi_cmdset_0020 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0x22c360f9 cfi_qry_present -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0x271fc122 cfi_qry_mode_on -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0x964fb80b cfi_qry_mode_off -EXPORT_SYMBOL_GPL drivers/mtd/hyperbus/hyperbus-core 0x23ab5c35 hyperbus_unregister_device -EXPORT_SYMBOL_GPL drivers/mtd/hyperbus/hyperbus-core 0xb2095600 hyperbus_register_device -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x079cf5c3 mtd_unlock -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x1223c5f7 mtd_add_partition -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x12e0cc4d mtd_device_unregister -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x13b27105 __get_mtd_device -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x14611632 mtd_writev -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x16567ff0 get_tree_mtd -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x19fcc412 mtd_ooblayout_find_eccregion -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x1e82e949 mtd_get_fact_prot_info -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x2074eeeb mtd_ooblayout_get_eccbytes -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x20f0f2ba get_mtd_device_nm -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x25f349e6 mtd_ooblayout_get_databytes -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x2606223e mtd_lock_user_prot_reg -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x35334de0 mtd_block_markbad -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x41d22558 __register_mtd_parser -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x4c13f0f3 mtd_ooblayout_set_databytes -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x4e9ca890 mtd_panic_write -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x53db29a3 mtd_unpoint -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x590ca67a mtd_table_mutex -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x5a11f28e mtd_lock -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x605b4395 mtd_kmalloc_up_to -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x640b2ceb mtd_del_partition -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x656924e3 mtd_wunit_to_pairing_info -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x6a10e6a1 mtd_point -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x6e640c6d mtd_is_locked -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x6eedf9de mtd_pairing_groups -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x70306ff1 mtd_ooblayout_ecc -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x7226f2c1 mtd_write_user_prot_reg -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x76c52724 mtd_ooblayout_count_eccbytes -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x795b2d6c mtd_write -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x7dd4f43f mtd_read_user_prot_reg -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x86330d81 put_mtd_device -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x86502f48 mtd_ooblayout_set_eccbytes -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x8665ad58 mtd_erase -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x9d953c35 mtd_ooblayout_free -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x9e752a99 __put_mtd_device -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xa51f0bb8 mtd_read_oob -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xa65f76d7 mtd_read -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xa7d3b9d0 mtd_get_unmapped_area -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xa8e1a279 unregister_mtd_user -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xa9038b53 mtd_get_device_size -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xad17e458 mtd_pairing_info_to_wunit -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xb34b8322 __mtd_next_device -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xb6595506 mtd_erase_user_prot_reg -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xb74c4e06 kill_mtd_super -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xc104bf79 mtd_ooblayout_count_freebytes -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xc16a103b get_mtd_device -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xc5af88c2 mtd_block_isbad -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xd6cd1a80 mtd_get_user_prot_info -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xdc181f50 deregister_mtd_parser -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xdcdd2644 mtd_device_parse_register -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xde362400 mtd_block_isreserved -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xe4636f04 register_mtd_user -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xe576bd0d mtd_read_fact_prot_reg -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xed3a3393 mtd_write_oob -EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x6c3dfb72 add_mtd_blktrans_dev -EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x72e66879 del_mtd_blktrans_dev -EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x864098c9 deregister_mtd_blktrans -EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0xca1e59f2 mtd_blktrans_cease_background -EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0xd74704f2 register_mtd_blktrans -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x0667e7f1 nanddev_bbt_cleanup -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x0c25ede5 nand_ecc_init_req_tweaking -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x0c286f6b nanddev_ecc_engine_init -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x0cc7effa nanddev_mtd_max_bad_blocks -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x137268d0 nanddev_bbt_init -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x152b8d8b nanddev_cleanup -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x29c9ed0f nand_ecc_tweak_req -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x4a21b155 nand_get_large_page_hamming_ooblayout -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x4e08873a nand_get_large_page_ooblayout -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x5aa48411 nanddev_bbt_set_block_status -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x5fa80e57 nanddev_isbad -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x78e082ec nanddev_init -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x90a10de7 nand_get_small_page_ooblayout -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x95ec80af nanddev_erase -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x98468a74 nand_ecc_cleanup_req_tweaking -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xa680b1ed nanddev_bbt_update -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xae42d59b nanddev_markbad -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xb37b90a8 nanddev_mtd_erase -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xca157b5a nanddev_bbt_get_block_status -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xd20704ad nanddev_isreserved -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xe6c692d9 nanddev_ecc_engine_cleanup -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xfac94a1a nand_ecc_restore_req -EXPORT_SYMBOL_GPL drivers/mtd/nand/onenand/onenand 0x09d9a14f onenand_scan -EXPORT_SYMBOL_GPL drivers/mtd/nand/onenand/onenand 0xae8fac41 onenand_release -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/brcmnand/brcmnand 0x1efc26be brcmnand_probe -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/brcmnand/brcmnand 0x28f56999 brcmnand_remove -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/brcmnand/brcmnand 0xc655beed brcmnand_pm_ops -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/denali 0xe0933c82 denali_chip_init -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x11091291 nand_extract_bits -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x12ebd9c8 nand_change_read_column_op -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x2d368c4c nand_subop_get_addr_start_off -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x2e3a90a7 nand_change_write_column_op -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x366da9b3 nand_read_page_op -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x46f7aa57 nand_ecc_choose_conf -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x4952aec7 nand_soft_waitrdy -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x5632e63d nand_subop_get_num_addr_cyc -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x60dd1460 nand_prog_page_begin_op -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x736b9256 nand_read_data_op -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x75d4e214 nand_select_target -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x7b6808fa nand_decode_ext_id -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x7cb60dbf nand_erase_op -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x85f67b56 nand_readid_op -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x8a258758 nand_read_page_hwecc_oob_first -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x8b855735 nand_reset_op -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x9070d0f9 nand_prog_page_end_op -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x92a515b0 nand_write_data_op -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x941e6e83 nand_prog_page_op -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xae3bb829 nand_status_op -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xb5f62d86 nand_deselect_target -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xbbe4cf64 nand_cleanup -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xc34fd102 nand_op_parser_exec_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 0xda4ee8b7 nand_read_oob_op -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xe4f2ca0d nand_wait_ready -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xfc68d7ea nand_gpio_waitrdy -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xfd6abe7b nand_reset -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/sm_common 0x5f914972 sm_register_device -EXPORT_SYMBOL_GPL drivers/mtd/spi-nor/spi-nor 0x0047d512 spi_nor_scan -EXPORT_SYMBOL_GPL drivers/mtd/spi-nor/spi-nor 0x4d82c99f spi_nor_restore -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x09b87adb ubi_is_mapped -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x127f501f ubi_leb_change -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 0x599cd748 ubi_open_volume_nm -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x66011ab6 ubi_get_device_info -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x6d5a55d3 ubi_close_volume -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x75915db7 ubi_open_volume_path -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x85a8ee76 ubi_unregister_volume_notifier -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x94153f0c ubi_leb_read_sg -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xa34af8e6 ubi_open_volume -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xc72b5edb ubi_leb_read -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xd28d158a ubi_leb_write -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xd6c26641 ubi_do_get_device_info -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xdc4f466e ubi_leb_map -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xdfac9b6e ubi_leb_erase -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xecc3eb6a ubi_get_volume_info -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xf2b0a7a0 ubi_leb_unmap -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xf5ee9ba8 ubi_register_volume_notifier -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x0f5ce333 mux_control_try_select -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x33cecbc4 mux_chip_free -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x4a1ca949 mux_chip_register -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x5127afa5 mux_control_select -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x882183ba devm_mux_chip_alloc -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xa6fba2c6 mux_chip_unregister -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xa729e477 mux_control_put -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xab3a5e09 mux_chip_alloc -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xbcdfdb17 devm_mux_chip_register -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xc3d756ba mux_control_states -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xd9c71545 devm_mux_control_get -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xe383ff1b mux_control_deselect -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xfc94c2e6 mux_control_get -EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0x427587de devm_arcnet_led_init -EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0xc06576be arcnet_led_event -EXPORT_SYMBOL_GPL drivers/net/bareudp 0x243cc7a0 bareudp_dev_create -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x3a6cfef8 c_can_power_up -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x81d0e2a2 alloc_c_can_dev -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x923cd629 free_c_can_dev -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xf0e3928b c_can_power_down -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xfcf09c23 unregister_c_can_dev -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xfd54409b register_c_can_dev -EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x5489c63b free_cc770dev -EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x8c6895ed register_cc770dev -EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0xf0721c83 alloc_cc770dev -EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0xf3c52bac unregister_cc770dev -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x047f048a can_rx_offload_queue_sorted -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x058abb33 can_skb_get_frame_len -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x10d892eb can_get_state_str -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x137704a4 register_candev -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x1702c0fa alloc_can_skb -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x1b80ce02 can_rx_offload_add_fifo -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x1c73c796 alloc_canfd_skb -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x2445483d can_rx_offload_add_manual -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x301c2cbc can_rx_offload_irq_offload_fifo -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x357a6c10 free_candev -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x36e97b18 can_bus_off -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x3c66ccfe can_free_echo_skb -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x3e604344 can_put_echo_skb -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x40831233 can_get_echo_skb -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x431dde5e alloc_can_err_skb -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x5c969fe9 close_candev -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x6047ede6 can_fd_len2dlc -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x6a564950 open_candev -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x71ec0547 can_change_state -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x82e40d72 of_can_transceiver -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x8375cb80 can_change_mtu -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x8f3b1c8d can_rx_offload_irq_offload_timestamp -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x960d6b47 can_rx_offload_threaded_irq_finish -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x9cc8d7ee alloc_candev_mqs -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xa9568c88 unregister_candev -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xbfcea6dc safe_candev_priv -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xc650ec84 can_rx_offload_del -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xc7e5a0f7 can_rx_offload_enable -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xd87dd18b can_rx_offload_get_echo_skb -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xebfccdca can_rx_offload_add_timestamp -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xec5ede07 can_rx_offload_irq_finish -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xf12d9387 can_fd_dlc2len -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xf2fc7a7b can_rx_offload_queue_tail -EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x1f4ac893 m_can_class_resume -EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x267aa7bc m_can_class_free_dev -EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x5a1e3633 m_can_class_unregister -EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x5c4a6ee6 m_can_class_get_clocks -EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x7bdcd9fb m_can_class_suspend -EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x7e960ec8 m_can_init_ram -EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0xb1d0743f m_can_class_allocate_dev -EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0xc5b2ef08 m_can_class_register -EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x35a1977f alloc_sja1000dev -EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x49ebd0d2 sja1000_interrupt -EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x4e18c278 free_sja1000dev -EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x6b18784e register_sja1000dev -EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0xaea3e72c unregister_sja1000dev -EXPORT_SYMBOL_GPL drivers/net/dsa/lan9303-core 0x09a3a0b8 lan9303_indirect_phy_ops -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x04a550b4 ksz_init_mib_timer -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x3c4908e1 ksz_port_fast_age -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x409fbd75 ksz_sset_count -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x4cf3df46 ksz_port_bridge_join -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x58d8c41c ksz_port_bridge_leave -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x8d3db4ab ksz_update_port_member -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x96cd1b1c ksz_get_ethtool_stats -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x9c7fecb8 ksz_port_fdb_dump -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xa57b8c46 ksz_port_mdb_del -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xbfb32102 ksz_phy_read16 -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xc58f4383 ksz_enable_port -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xcd1f2442 ksz_port_mdb_add -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xd95623c8 ksz_phy_write16 -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xe917667f ksz_mac_link_down -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x0203f316 realtek_smi_write_reg_noack -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x0436e19e rtl8366_set_pvid -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x04ec819d rtl8366_set_vlan -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x0e2c5e7a rtl8366_enable_vlan -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x1910c0c2 rtl8366_enable_vlan4k -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x5eb35d7e rtl8366_get_strings -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x7f790b75 rtl8366_reset_vlan -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x96a6840d rtl8366_get_sset_count -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xc08762c5 rtl8366_init_vlan -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xc3887b5d rtl8366rb_variant -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xc5ba2080 rtl8366_get_ethtool_stats -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xd7326924 rtl8366_mc_is_used -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xde5bf85d rtl8366_vlan_filtering -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xe2e0b400 rtl8366_vlan_add -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xfa818845 rtl8366_vlan_del -EXPORT_SYMBOL_GPL drivers/net/ethernet/arc/arc_emac 0x5be3660a arc_emac_probe -EXPORT_SYMBOL_GPL drivers/net/ethernet/arc/arc_emac 0xf1374475 arc_emac_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-mdio 0x4b7ab8ec enetc_mdio_read -EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-mdio 0x750957d4 enetc_hw_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-mdio 0xad5fd192 enetc_mdio_lock -EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-mdio 0xdd131619 enetc_mdio_write -EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-ptp 0x5431a304 enetc_phc_index -EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/i40e/i40e 0x39e2fc87 i40e_client_device_register -EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/i40e/i40e 0x8a193168 i40e_client_device_unregister -EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0x5a975490 ice_rdma_update_vsi_filter -EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0x8d039f68 ice_get_qos_params -EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0x906495ac ice_add_rdma_qset -EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0x93b5fcbc ice_del_rdma_qset -EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0xc3628b89 ice_rdma_request_reset -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x00060416 mlx4_FLOW_STEERING_IB_UC_QP_RANGE -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x015dab76 mlx4_bf_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0346f571 mlx4_find_cached_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x05769e67 mlx4_db_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x062a12cc mlx4_vf_smi_enabled -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x07d6ee7c mlx4_read_clock -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x08cb0e2e mlx4_bond -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0a5e9dd6 mlx4_qp_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0a84c4bd mlx4_config_dev_retrieval -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0c7f745d mlx4_wol_read -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0ce289fa mlx4_multicast_promisc_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x10389645 mlx4_unbond -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x108ebdb2 mlx4_unicast_attach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x11d078a1 mlx4_get_protocol_dev -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x14c5dd90 mlx4_mw_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x169422a0 mlx4_unicast_promisc_add -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x17dc936e mlx4_uar_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1866fb2d mlx4_hw_rule_sz -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1b32f05f mlx4_mr_hw_change_access -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1d3b2e09 mlx4_pd_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1efea520 mlx4_mr_hw_write_mpt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2004df71 mlx4_vf_get_enable_smi_admin -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x20b90816 mlx4_wol_write -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x276c167d __mlx4_replace_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2930759a mlx4_srq_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2bea6bdb mlx4_slave_convert_port -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2e915cff mlx4_write_mtt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2ea2a3e0 mlx4_counter_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x32c94a0f mlx4_phys_to_slaves_pport_actv -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x32d7e266 mlx4_mr_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x34f5795d mlx4_mw_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x36ce3173 mlx4_get_slave_default_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x37007b3e mlx4_alloc_hwq_res -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x37c82754 mlx4_update_qp -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x386bbb92 mlx4_bf_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3b585cb8 mlx4_mr_rereg_mem_write -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3fbedc19 mlx4_set_vf_rate -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4108db8f mlx4_map_sw_to_hw_steering_mode -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4293bbb9 mlx4_mr_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4526e798 mlx4_free_cmd_mailbox -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x46874bbf mlx4_get_devlink_port -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4d1a16ca mlx4_qp_to_ready -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4e5cf879 mlx4_qp_release_range -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4ec3c840 mlx4_config_vxlan_port -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4f40cc2c mlx4_config_roce_v2_port -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x50808037 mlx4_unicast_detach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x508b9d5c __mlx4_cmd -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x535f81d4 mlx4_mr_rereg_mem_cleanup -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x55f8ae06 mlx4_qp_query -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5860c80f mlx4_get_internal_clock_params -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5d8b9370 mlx4_set_vf_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5e4526f5 mlx4_vf_set_enable_smi_admin -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5ebe0450 mlx4_SYNC_TPT -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5ed2c8d3 mlx4_xrcd_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x61fcb231 mlx4_flow_attach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x625f9ea7 mlx4_set_vf_spoofchk -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x63457d15 mlx4_mr_hw_put_mpt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x679bb2ab mlx4_set_vf_link_state -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x67a979c4 mlx4_free_hwq_res -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6a712e73 mlx4_multicast_attach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6ab84ba8 mlx4_replace_zero_macs -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6b4edc96 mlx4_buf_write_mtt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6fa91923 mlx4_flow_detach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6fe2bd9c mlx4_uar_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x70cf88be mlx4_phys_to_slaves_pport -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x72178823 mlx4_qp_modify -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x730c00b0 mlx4_INIT_PORT -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7431fe1a mlx4_get_vf_config -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x753b6163 mlx4_flow_steer_promisc_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7593bf72 mlx4_buf_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x76769754 mlx4_mw_enable -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7e818e4e mlx4_get_counter_stats -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7f3321de mlx4_pd_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7fe67581 mlx4_cq_resize -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x85419776 mlx4_unicast_promisc_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8b0a2f99 mlx4_multicast_promisc_add -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8bd24299 mlx4_alloc_cmd_mailbox -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x90009760 mlx4_db_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x95cd1075 mlx4_get_default_counter_index -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9af929e5 mlx4_flow_steer_promisc_add -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9b977daf mlx4_multicast_detach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9be396cb mlx4_find_cached_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9eff33cc mlx4_counter_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa0dea07a mlx4_ACCESS_PTYS_REG -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa2bb20c0 mlx4_mtt_init -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa46f15e1 mlx4_mr_enable -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa6caa9e8 mlx4_port_map_set -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xaaa05334 mlx4_buf_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb007586f mlx4_mtt_addr -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb256f861 __mlx4_unregister_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb5498752 mlx4_register_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb7891260 mlx4_qp_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb8612590 mlx4_get_base_gid_ix -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb975d8d6 mlx4_srq_lookup -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbafaca3c mlx4_srq_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbcd9533b mlx4_map_sw_to_hw_steering_id -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbd016705 mlx4_cq_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc0aca293 mlx4_register_interface -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc4f6f2f5 mlx4_qp_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc64d72d4 mlx4_mtt_cleanup -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcccfa637 mlx4_qp_reserve_range -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcf91f8f3 mlx4_get_base_qpn -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcfcc4f77 mlx4_set_vf_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd177b49e mlx4_set_admin_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd462f533 mlx4_srq_query -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd89a131f mlx4_xrcd_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd981ebbc mlx4_cq_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdb62e802 mlx4_cq_modify -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xddc1d448 mlx4_get_vf_stats -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdeabc3ab mlx4_srq_arm -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe00a9eb8 mlx4_phys_to_slave_port -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe44e993f mlx4_get_active_ports -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe69e6d61 __mlx4_register_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe70bdcc2 mlx4_unregister_interface -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe7e63d05 mlx4_CLOSE_PORT -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xef44a7cc mlx4_get_admin_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xeffb54bf mlx4_unregister_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf4f69d69 mlx4_mr_hw_get_mpt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf55eb3c3 mlx4_register_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf8d1d77e mlx4_mr_hw_change_pd -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xffea01db mlx4_unregister_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0281231a mlx5_modify_port_ets_rate_limit -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x035e0c5d 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 0x0c75f582 mlx5_eswitch_get_total_vports -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0e51359f mlx5_nic_vport_query_local_lb -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x136ba7f8 mlx5_query_hca_vport_gid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x13e634d5 mlx5_frag_buf_alloc_node -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x164b5e2d mlx5_accel_esp_create_xfrm -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1c689470 mlx5_set_port_tc_group -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1e7a6f3d mlx5_db_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2361f6be mlx5_query_nic_vport_mac_address -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x275c2a84 mlx5_frag_buf_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2791b406 mlx5_core_query_sq_state -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2be9a8f8 mlx5_modify_nic_vport_promisc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2e19a543 mlx5_query_port_ptys -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2e20aacc mlx5_dm_sw_icm_dealloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x334f8175 mlx5_buf_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x398e499b mlx5_modify_nic_vport_mtu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3f6ae949 mlx5_query_port_max_mtu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x403c539f mlx5_query_nic_vport_promisc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x41bb5b3d mlx5_query_port_admin_status -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x41e8dd3f mlx5_set_port_pfc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4508ec11 mlx5_query_port_vl_hw_cap -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x50343408 mlx5_query_port_wol -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x584c1186 mlx5_query_port_pause -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5a1b283b mlx5_query_hca_vport_pkey -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5f812e7d mlx5_query_mac_address -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6a42d845 mlx5_set_port_prio_tc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6afa340c mlx5_accel_esp_modify_xfrm -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6b2b9c81 mlx5_accel_esp_destroy_xfrm -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x70b1422a mlx5_set_port_caps -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x73c2477e mlx5_accel_ipsec_device_caps -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x77955d06 mlx5_query_nic_vport_system_image_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7d186ce0 mlx5_query_port_tc_bw_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7ee7cd52 mlx5_query_hca_vport_node_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7f950850 mlx5_query_module_eeprom_by_page -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x80fc89ce mlx5_db_alloc_node -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 0x87de27ba mlx5_modify_nic_vport_mac_address -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x88348f82 mlx5_query_nic_vport_qkey_viol_cntr -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8bb19707 mlx5_modify_nic_vport_mac_list -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8e74701b mlx5_nic_vport_update_local_lb -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x91b6dd33 mlx5_query_nic_vport_mtu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x92dc4a1f mlx5_query_nic_vport_min_inline -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x96c50ad6 mlx5_toggle_port_link -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x99616806 mlx5_core_access_reg -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9d9521b6 mlx5_core_query_ib_ppcnt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa59efe68 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 0xaa39cb45 mlx5_query_port_prio_tc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xaf50ad10 mlx5_nic_vport_unaffiliate_multiport -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbe51edc5 mlx5_nic_vport_affiliate_multiport -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbe60763c mlx5_query_port_tc_group -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbea9f04d mlx5_set_port_pause -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbedcd9d3 mlx5_modify_nic_vport_vlans -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbfb97c67 mlx5_query_hca_vport_context -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc7e87ceb mlx5_set_port_tc_bw_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc9e8df64 mlx5_set_port_wol -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcc219a20 mlx5_set_port_admin_status -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcf82c4cd mlx5_dm_sw_icm_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcfd465e7 mlx5_query_hca_vport_system_image_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcfe69079 mlx5_core_query_vport_counter -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd014bce8 mlx5_core_modify_hca_vport_context -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd06a4dc6 mlx5_query_min_inline -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdca9ddaf mlx5_query_port_oper_mtu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xde6b73b0 mlx5_query_module_eeprom -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xde7fa832 mlx5_query_nic_vport_mac_list -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe1bfea04 mlx5_core_reserved_gids_count -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe221b221 mlx5_query_port_ets_rate_limit -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe704541e mlx5_eswitch_mode -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xeda7dd7e mlx5_query_port_pfc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf60966ba mlx5_query_nic_vport_node_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf6634a57 mlx5_set_port_mtu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf6f2424a mlx5_query_nic_system_image_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/micrel/ks8851_common 0x6f53ebc5 ks8851_suspend -EXPORT_SYMBOL_GPL drivers/net/ethernet/micrel/ks8851_common 0x78068a4d ks8851_remove_common -EXPORT_SYMBOL_GPL drivers/net/ethernet/micrel/ks8851_common 0x989a3e2d ks8851_probe_common -EXPORT_SYMBOL_GPL drivers/net/ethernet/micrel/ks8851_common 0xc7f7788e ks8851_resume -EXPORT_SYMBOL_GPL drivers/net/ethernet/microchip/encx24j600-regmap 0xba65a2d8 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 0x062ae9a0 ocelot_port_writel -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x0c2b9c75 ocelot_cls_flower_replace -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x10cccb29 ocelot_regmap_init -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x1ea17742 ocelot_port_rmwl -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x2be064ca ocelot_phylink_mac_link_up -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x4a8c15b5 __ocelot_read_ix -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x621aac81 __ocelot_write_ix -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x8873ae13 __ocelot_rmw_ix -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x8ad64074 ocelot_regfields_init -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xaa9f1449 ocelot_phylink_mac_link_down -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xbb0ae33d ocelot_cls_flower_destroy -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xc281d3d5 ocelot_port_readl -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xe9358ba4 ocelot_cls_flower_stats -EXPORT_SYMBOL_GPL drivers/net/ethernet/qualcomm/qca_7k_common 0x0b28a9ad qcafrm_create_footer -EXPORT_SYMBOL_GPL drivers/net/ethernet/qualcomm/qca_7k_common 0x2b6ddf3f qcafrm_fsm_decode -EXPORT_SYMBOL_GPL drivers/net/ethernet/qualcomm/qca_7k_common 0x41da0375 qcafrm_create_header -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x252f089c stmmac_bus_clks_config -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x272388b1 stmmac_suspend -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x75a90e0f stmmac_dvr_probe -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x84a25bf6 stmmac_resume -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x92d778bb stmmac_get_mac_addr -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0xd1cc24db stmmac_set_mac_addr -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0xdb9ad0ad stmmac_dvr_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0xf1aaffae stmmac_init_tstamp_counter -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x271e9a6c stmmac_pltfr_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x74fe951d stmmac_remove_config_dt -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x811140c5 stmmac_pltfr_pm_ops -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0xc0da5857 stmmac_probe_config_dt -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0xdf476842 stmmac_get_platform_resources -EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/am65-cpts 0x2522f0db am65_cpts_prep_tx_timestamp -EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/am65-cpts 0x405b51c2 am65_cpts_ns_gettime -EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/am65-cpts 0x7d19e21c am65_cpts_create -EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/am65-cpts 0x91fd3558 am65_cpts_rx_enable -EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/am65-cpts 0xb60b988a am65_cpts_estf_disable -EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/am65-cpts 0xbfc83e4d am65_cpts_estf_enable -EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/am65-cpts 0xfca9b9d9 am65_cpts_phc_index -EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/am65-cpts 0xfcfe0eae am65_cpts_tx_timestamp -EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0x39ef5280 w5100_ops_priv -EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0x80279995 w5100_probe -EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0x8d9cefa6 w5100_pm_ops -EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0xd1bda042 w5100_remove -EXPORT_SYMBOL_GPL drivers/net/geneve 0xf302cbcf geneve_dev_create_fb -EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x03b5d887 ipvlan_link_new -EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x52462866 ipvlan_count_rx -EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x95b4c34b ipvlan_link_delete -EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0xaa840357 ipvlan_link_setup -EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0xc93d71fc ipvlan_link_register -EXPORT_SYMBOL_GPL drivers/net/macsec 0x6e0bc0f1 macsec_pn_wrapped -EXPORT_SYMBOL_GPL drivers/net/macvlan 0x7e1d4610 macvlan_dellink -EXPORT_SYMBOL_GPL drivers/net/macvlan 0xbb0684e7 macvlan_link_register -EXPORT_SYMBOL_GPL drivers/net/macvlan 0xc347767f macvlan_common_setup -EXPORT_SYMBOL_GPL drivers/net/macvlan 0xfc1899df macvlan_common_newlink -EXPORT_SYMBOL_GPL drivers/net/mdio/mdio-i2c 0xaf9c3e9f mdio_i2c_alloc -EXPORT_SYMBOL_GPL drivers/net/net_failover 0x6db1dd08 net_failover_create -EXPORT_SYMBOL_GPL drivers/net/net_failover 0x8d6543a1 net_failover_destroy -EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0x02131225 xpcs_create -EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0x17594481 xpcs_destroy -EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0x2554ce71 xpcs_config_eee -EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0x461c4eb5 xpcs_validate -EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0xa058552b xpcs_do_config -EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0xe05362b0 xpcs_link_up -EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0xee199ba5 xpcs_get_an_mode -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x063a460c bcm54xx_auxctl_read -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x0e88004a bcm_phy_write_exp -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x1c1694ea bcm_phy_28nm_a0b0_afe_config_init -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x2b0d0098 bcm_phy_write_shadow -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x2dabec52 bcm_phy_write_rdb -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x335bf3ac bcm_phy_modify_rdb -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x3ed64e20 bcm_phy_r_rc_cal_reset -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x46c8c5a6 bcm_phy_get_stats -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x55e23f6b __bcm_phy_modify_rdb -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x5a06c571 bcm_phy_read_exp -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x5b7a5320 bcm_phy_get_sset_count -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x60273ac8 bcm_phy_cable_test_get_status_rdb -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x700be9bd bcm_phy_set_eee -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x7a64b555 bcm_phy_enable_apd -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x7bf5a2f7 bcm_phy_config_intr -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x7d1b363c bcm_phy_read_rdb -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x9244231d bcm_phy_downshift_get -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xa0f53e86 bcm_phy_read_misc -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xa3b589b6 bcm_phy_ack_intr -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xab2b80d4 bcm_phy_write_misc -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xb976a1ed bcm_phy_modify_exp -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xc174d16d __bcm_phy_read_rdb -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xcc6726f3 bcm_phy_enable_jumbo -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xccadd8cd __bcm_phy_write_exp -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xccdc2f0f bcm_phy_handle_interrupt -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xd3c65cc7 bcm_phy_get_strings -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xd3ecb0fb bcm_phy_cable_test_get_status -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xd75db014 bcm_phy_read_shadow -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xdfcf6d2a __bcm_phy_modify_exp -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xe6692220 __bcm_phy_read_exp -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xebd8821c bcm_phy_cable_test_start -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xef8e34d5 __bcm_phy_write_rdb -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xfded8313 bcm_phy_cable_test_start_rdb -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xff01292c bcm_phy_downshift_set -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x03cd0819 phylink_mii_c22_pcs_an_restart -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x08213956 phylink_ethtool_get_wol -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x12135396 phylink_mac_change -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x131e8b94 phylink_helper_basex_speed -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x15c4e3e2 phylink_ethtool_set_pauseparam -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x16ca1a8a phylink_suspend -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x2c8e28ee phylink_ethtool_get_eee -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x57727285 phylink_ethtool_set_eee -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x59e0695d phylink_speed_down -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x5d072990 phylink_connect_phy -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 0x75dbc3bd phylink_mii_c22_pcs_config -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x76b1ebe8 phylink_create -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x825c7340 phylink_get_eee_err -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x89c76df6 phylink_mii_c45_pcs_get_state -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x8c49c41f phylink_mii_c22_pcs_set_advertisement -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x911fcd6c phylink_start -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x983276da phylink_disconnect_phy -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x984eee7a phylink_of_phy_connect -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x9ad6f36d phylink_decode_usxgmii_word -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xa812b5ea phylink_mii_c22_pcs_get_state -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xc0a8f4be phylink_resume -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xc1d15a4c phylink_set_port_modes -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xc3906c58 phylink_ethtool_ksettings_set -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xd54825ae phylink_fwnode_phy_connect -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xdcb0a2c0 phylink_stop -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xde66f4a7 phylink_mii_ioctl -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xe8c137ed phylink_set_pcs -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xec02ebe0 phylink_init_eee -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xf3083a1d phylink_destroy -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xf8fe5642 phylink_ethtool_get_pauseparam -EXPORT_SYMBOL_GPL drivers/net/tap 0x2fa77130 tap_free_minor -EXPORT_SYMBOL_GPL drivers/net/tap 0x5ff5a463 tap_queue_resize -EXPORT_SYMBOL_GPL drivers/net/tap 0x67984822 tap_del_queues -EXPORT_SYMBOL_GPL drivers/net/tap 0x70ca3f39 tap_get_socket -EXPORT_SYMBOL_GPL drivers/net/tap 0x79127424 tap_get_minor -EXPORT_SYMBOL_GPL drivers/net/tap 0xa5b31f1f tap_destroy_cdev -EXPORT_SYMBOL_GPL drivers/net/tap 0xa86eaccf tap_handle_frame -EXPORT_SYMBOL_GPL drivers/net/tap 0xd0c8c041 tap_create_cdev -EXPORT_SYMBOL_GPL drivers/net/tap 0xeef98ee1 tap_get_ptr_ring -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x013a2998 usbnet_generic_cdc_bind -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x051b3965 usbnet_ether_cdc_bind -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x262a698d usbnet_cdc_status -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x4125bb67 usbnet_cdc_unbind -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xca27662e usbnet_cdc_update_filter -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xd8c09cec usbnet_cdc_bind -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x2b0d98e7 cdc_ncm_fill_tx_frame -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x7b358545 cdc_ncm_bind_common -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xb03b6ff2 cdc_ncm_rx_verify_nth16 -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xb906f070 cdc_ncm_rx_verify_ndp16 -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xc0a12f42 cdc_ncm_rx_fixup -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xccb0719b cdc_ncm_tx_fixup -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xcd445f48 cdc_ncm_rx_verify_ndp32 -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xe1bcbc37 cdc_ncm_change_mtu -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xec1e2dab cdc_ncm_select_altsetting -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xef422eec cdc_ncm_unbind -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xf72b71e3 cdc_ncm_rx_verify_nth32 -EXPORT_SYMBOL_GPL drivers/net/usb/r8152 0x64930b13 rtl8152_get_version -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x3323f67c generic_rndis_bind -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x3d92e91b rndis_status -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x416ce4b0 rndis_tx_fixup -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x49bbc2fe rndis_rx_fixup -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x6e6cde65 rndis_command -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x8b0f46a0 rndis_unbind -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x00e13b06 usbnet_set_msglevel -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x0be2d499 usbnet_tx_timeout -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x12cfe645 usbnet_stop -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x13f149cd usbnet_write_cmd_nopm -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x1ead435a usbnet_open -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x3460de5a usbnet_probe -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x38310004 usbnet_get_link_ksettings_mii -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x3d74cdf5 usbnet_set_rx_mode -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x402e5b5e usbnet_defer_kevent -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x5816cb0a usbnet_get_link -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x74388a9b usbnet_status_start -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x8004eb9b usbnet_nway_reset -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x80bcf218 usbnet_purge_paused_rxq -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x82df556e usbnet_get_ethernet_addr -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x8adec0f4 usbnet_status_stop -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x8bf30339 usbnet_update_max_qlen -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x95c24c18 usbnet_get_msglevel -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x965d43c4 usbnet_unlink_rx_urbs -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x9891624a usbnet_start_xmit -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x9b51d3d8 usbnet_disconnect -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x9e60379b usbnet_get_endpoints -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xa0c893e6 usbnet_set_link_ksettings_mii -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xa346dd83 usbnet_resume -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xbfbe200a usbnet_change_mtu -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xc88deb53 usbnet_get_link_ksettings_internal -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xcab9bf66 usbnet_suspend -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xcf1e2806 usbnet_read_cmd -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xda5e0929 usbnet_resume_rx -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xeac50dc4 usbnet_skb_return -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xec2d9eab usbnet_write_cmd -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xf112ee24 usbnet_write_cmd_async -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xf7987582 usbnet_pause_rx -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xfde6a61d usbnet_read_cmd_nopm -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xfe68a79a usbnet_get_drvinfo -EXPORT_SYMBOL_GPL drivers/net/vxlan/vxlan 0x6757ca58 vxlan_dev_create -EXPORT_SYMBOL_GPL drivers/net/vxlan/vxlan 0x79b126ab vxlan_fdb_replay -EXPORT_SYMBOL_GPL drivers/net/vxlan/vxlan 0xab6fe103 vxlan_fdb_find_uc -EXPORT_SYMBOL_GPL drivers/net/vxlan/vxlan 0xb569c96f vxlan_fdb_clear_offload -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/ipw2x00/libipw 0x89209a3e libipw_rx_any -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1b98e7da il_remove_station -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x24fe2532 il_prep_station -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x4016282b il_dealloc_bcast_stations -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb825903b _il_grab_nic_access -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xdb21bd34 il_mac_tx_last_beacon -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x032bddd7 iwl_write_prph_delay -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x04a29590 iwl_read_direct32 -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x0b0a7048 iwl_sar_get_wrds_table -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x10867c15 iwl_acpi_get_dsm_u8 -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x1bb88a9c iwl_fw_dbg_collect_trig -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x1ddf6ad2 iwl_fw_runtime_resume -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x1e1775ce iwl_fw_start_dbg_conf -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x20685ae8 iwl_acpi_get_dsm_u32 -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x2138953c iwl_init_paging -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x229dda7e iwl_fw_runtime_init -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x2710c362 iwl_dump_desc_assert -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x2e1a4692 iwl_acpi_get_wifi_pkg -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x3131a4a3 iwl_sar_geo_support -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x3222c6ea iwl_finish_nic_init -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x335b0257 iwl_fw_dbg_stop_restart_recording -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x338ab099 iwl_write_prph_no_grab -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x35033c81 iwl_phy_db_free -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x3872b478 iwl_acpi_get_tas -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x3b7a0732 iwl_parse_nvm_mcc_info -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x3d54b33a iwl_poll_bit -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x3da8c2d2 iwl_notification_wait_init -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x40f42c6c iwl_free_fw_paging -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x42135c58 iwl_parse_eeprom_data -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x422fba00 iwl_sar_geo_init -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x4295bc7b __iwl_warn -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x42badfc2 iwl_acpi_get_object -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x48112e13 iwl_sar_get_wgds_table -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x4c757730 iwl_abort_notification_waits -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x4cdcfd7d iwl_get_cmd_string -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x4ce93b2f iwl_init_notification_wait -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x4fffdf63 iwl_parse_nvm_data -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x535513d9 iwl_read_eeprom -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x553c3574 iwl_force_nmi -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x55706394 iwl_write32 -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x55969be0 iwl_fw_dbg_error_collect -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x563de152 iwl_phy_db_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 0x5c52e109 iwl_opmode_deregister -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x5e3bef04 iwl_write64 -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x604dc534 iwl_write_direct64 -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x631045f7 iwl_fw_dbg_stop_sync -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x65d92750 iwl_acpi_get_eckv -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x67192d02 iwl_sar_select_profile -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x67286d76 iwl_dbg_tlv_del_timers -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x680112cc iwl_sar_get_ewrd_table -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x6b0649a4 iwl_write_direct32 -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x724b479a iwl_write8 -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x776221bf iwl_send_phy_db_data -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x7d7815ee iwl_write_prph64_no_grab -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x83463ba3 iwl_notification_wait -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x84facc86 iwl_get_nvm -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x8cd2f16c iwl_fw_lookup_notif_ver -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x8ceb0e2c iwl_fw_dbg_read_d3_debug_data -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x8f6a6a1f iwl_trans_send_cmd -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x9038811a iwl_rfi_guid -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x9308f732 iwl_pnvm_load -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x95369643 iwl_acpi_get_mcc -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x962927f7 iwl_cmd_groups_verify_sorted -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x962fd3e7 iwl_fwrt_dump_error_logs -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x989256d4 iwl_acpi_get_pwr_limit -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xa3f33e93 iwl_clear_bits_prph -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xa47074db iwl_set_bits_mask_prph -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xa7a89b6d iwl_poll_direct_bit -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xa8b3ca7d iwl_fw_dbg_collect -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xa9f05394 iwlwifi_mod_params -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xab9ce97b iwl_fw_runtime_suspend -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xb1338340 iwl_fw_lookup_cmd_ver -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xb747edcc __iwl_info -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xb939e2d6 __iwl_err -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xbd19096e iwl_set_bits_prph -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xcac96141 iwl_configure_rxq -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xccd2a3c8 __iwl_crit -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xcdc82a27 iwl_read_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 0xd0e9204d __iwl_dbg -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xd2aa1ab3 iwl_remove_notification -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xd3465d97 iwl_set_soc_latency -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xd374b0ad iwl_get_shared_mem_conf -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xd4747195 iwl_acpi_get_lari_config_bitmap -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xd7893614 iwl_wait_notification -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xdb739399 iwl_read_prph_no_grab -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xe3865e9c iwl_read32 -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xe6f377df iwl_opmode_register -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xea1b26fc iwl_nvm_fixups -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xecb3b3ab _iwl_dbg_tlv_time_point -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xee189354 iwl_fw_dbg_collect_desc -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xfc1e6f41 iwl_guid -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xfecdc9c6 iwl_read_external_nvm -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x211fa489 p54_rx -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x4d016255 p54_register_common -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x6c1e2ae6 p54_parse_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x75c9a54a p54_free_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x8aca63a3 p54_read_eeprom -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xbda96297 p54_unregister_common -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xc09addc7 p54_init_common -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xc8769656 p54_free_common -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xe97f67cf p54_parse_eeprom -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x04947556 lbs_resume -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x083745e9 lbs_process_rxed_packet -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x4163efc0 lbs_get_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x4492ae20 lbs_queue_event -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x57f13986 lbs_notify_command_response -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x58b4370b lbs_remove_card -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x5fdf38b8 lbs_disablemesh -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x6375cd49 lbs_start_card -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xb0a02428 lbs_host_to_card_done -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xbd3f5ebe lbs_host_sleep_cfg -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xc357cf9d lbs_send_tx_feedback -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xd7b7f69b lbs_add_card -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xd8cccd58 lbs_cmd_copyback -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xedd90555 __lbs_cmd -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xf3cbaf66 lbs_stop_card -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xf64277de lbs_debug -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xf6cbdb0c lbs_get_firmware_async -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xfe4df0db lbs_suspend -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x06afa4b4 lbtf_remove_card -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x32ecfac8 lbtf_send_tx_feedback -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x4a0dc8c4 lbtf_cmd_response_rx -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x6ac3b8bf lbtf_cmd_copyback -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x7ac80654 lbtf_rx -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0xaff38465 lbtf_add_card -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0xb66dc54b lbtf_bcn_sent -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0xc85e6899 lbtf_debug -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0xdbda9114 __lbtf_cmd -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x03a6fca7 mwifiex_write_data_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x055bfb9d mwifiex_upload_device_dump -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x26b9f37a _mwifiex_dbg -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x26bd8aa2 mwifiex_init_shutdown_fw -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x34f77c46 mwifiex_shutdown_sw -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x38fcb581 mwifiex_del_virtual_intf -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x3a34f982 mwifiex_enable_hs -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x44e24653 mwifiex_add_virtual_intf -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x579b5836 mwifiex_deauthenticate_all -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x5c6a0c7d mwifiex_fw_dump_event -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x635a6111 mwifiex_add_card -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x67dc4c9e mwifiex_process_hs_config -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x6de43c02 mwifiex_queue_main_work -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x7735c16f mwifiex_drv_info_dump -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x78f91ac9 mwifiex_disable_auto_ds -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x7fbc7209 mwifiex_handle_rx_packet -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x8c26d3cd mwifiex_process_sleep_confirm_resp -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xa4172467 mwifiex_main_process -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xc21fa2bc mwifiex_reinit_sw -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xc528cfae mwifiex_prepare_fw_dump_info -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xc7243af3 mwifiex_remove_card -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xd4dad9f3 mwifiex_alloc_dma_align_buf -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xe7dfd38a mwifiex_cancel_hs -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xef9baf4e mwifiex_multi_chan_resync -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xf8a44a73 mwifiex_dnld_fw -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x031c64b0 mt76_mcu_skb_send_and_get_msg -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x0509a4c7 mt76_mcu_send_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x05b32f72 mt76_free_device -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x06b7ecd3 mt76_insert_ccmp_hdr -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x07e604d0 ____mt76_poll_msec -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x08aaced8 __traceiter_mac_txdone -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x0eeefa25 mt76_rx_poll_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x11bb3d12 mt76_set_channel -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x17f568e9 mt76_rates -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x1a6da6cb mt76_sw_scan -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x1c6e295e mt76_stop_tx_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x1e96222a mt76_init_sar_power -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x1ec57b4f __mt76_worker_fn -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x1f8ac718 __tracepoint_dev_irq -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x21375771 mt76_dma_rx_poll -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x218be6ce mt76_alloc_device -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x2b638a90 mt76_tx_status_lock -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x2f3d2b8a mt76_alloc_phy -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x3147b99b mt76_dma_cleanup -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x3f43e0cf mt76_csa_check -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x437ef4a2 mt76_register_device -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x458be333 mt76_eeprom_override -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x4c207008 mt76_tx_status_skb_done -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x4e53e28d mt76_sw_scan_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x53bb4c6a mt76_wake_tx_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x57af118c __mt76_poll -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x5a85f8b8 mt76_csa_finish -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x5be4eb2c mt76_release_buffered_frames -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x5d1b4e42 __tracepoint_mac_txdone -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x5e39b092 mt76_mcu_msg_alloc -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x5f602652 mt76_tx_check_agg_ssn -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x5f6f7508 mt76_init_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x5f732fa3 mt76_eeprom_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x60fa223a __mt76_set_tx_blocked -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x6642adb1 mt76_mcu_get_response -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x68b8eba1 mt76_unregister_phy -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x6ab2cdda mt76_rx_aggr_start -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x70cfbaa7 mt76_sta_state -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x7de2055e mt76_unregister_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 0x81201ac8 mt76_set_stream_caps -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x87fc94d8 mt76_sta_pre_rcu_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x8ac3956d mt76_seq_puts_array -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x8efc091a mt76_tx_status_unlock -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x974f740b mt76_tx_status_skb_add -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x97cd1aa3 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 0x9a861f0c mt76_register_debugfs_fops -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x9bd019bf mt76_get_rate -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x9e0aca64 mt76_tx_status_check -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xa0dcdde3 mt76_mcu_rx_event -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xa153fa91 mt76_set_tim -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xa3de0bc5 mt76_set_irq_mask -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xa6bd9e64 mt76_get_txpower -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xa8296335 mt76_get_survey -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xa92c0a33 mt76_get_sar_power -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xae2fb3ab mt76_txq_schedule -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xb3e011c2 __mt76_tx_complete_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xb4879ab1 mt76_put_txwi -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xb553c042 mt76_update_survey_active_time -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xc2e3c0ee mt76_rx_aggr_stop -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xc5d39b00 mt76_queue_tx_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xc6315d8e __SCK__tp_func_mac_txdone -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xc6634315 mt76_ac_to_hwq -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xc7320666 mt76_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xc911ef7f mt76_get_min_avg_rssi -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xc92bf846 mt76_register_phy -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xca04a0fd mt76_get_of_eeprom -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xcce7c8dd mt76_mcu_send_and_get_msg -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xce81925f mt76_skb_adjust_pad -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xd2ab259a mt76_tx_worker_run -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xd2daf1b3 mt76_queues_read -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xd39b51f9 mt76_tx_status_skb_get -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xd75046e1 mt76_get_rate_power_limits -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xd90a67fc __traceiter_dev_irq -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xe02218ec mt76_has_tx_pending -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xe40b66ef mt76_wcid_alloc -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xe49eb836 mt76_update_survey -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xe7385a29 mt76_token_release -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xe7ec52ca __mt76_sta_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xe849f099 mt76_get_antenna -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xe8ff0242 mt76_dma_attach -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xec7a0878 mt76_token_consume -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xf2a2c28d mt76_rx -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xf8dc31d7 mt76_mmio_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xfbf84417 mt76_txq_schedule_all -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x09c88be8 mt76_connac_pm_queue_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x1b1a4f8d mt76_connac_mcu_sta_ba_tlv -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x1ec32746 mt76_connac_mcu_chip_config -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x206af440 mt76_connac_mcu_set_rate_txpower -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x25637da0 mt76_connac_sta_state_dp -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x2c1d99a5 mt76_connac_mcu_sta_tlv -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x326b9efc mt76_connac_mcu_wtbl_ba_tlv -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x32d451c9 mt76_connac_mcu_alloc_sta_req -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x387aef2b mt76_connac_mcu_wtbl_ht_tlv -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x3b09858b mt76_connac_mcu_set_channel_domain -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x40053407 mt76_connac_mcu_beacon_loss_iter -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x41b54f81 mt76_connac_mcu_set_rts_thresh -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x4550dcc5 mt76_connac_power_save_sched -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x45736cec mt76_connac_mcu_sched_scan_req -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x47740577 mt76_connac_mcu_update_gtk_rekey -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x4cb03e5b mt76_connac_mcu_set_suspend_iter -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x6cc83ba8 mt76_connac_mcu_wtbl_generic_tlv -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x6e00899c mt76_connac_mcu_patch_sem_ctrl -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x6ed0aa07 mt76_connac_mcu_start_patch -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x7c6dfb51 mt76_connac_mcu_set_hif_suspend -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 0x9181165f mt76_connac_mcu_alloc_wtbl_req -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x94202f2a mt76_connac_mcu_sta_update_hdr_trans -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x978314aa mt76_connac_mcu_add_nested_tlv -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x99075c39 mt76_connac_mcu_uni_add_bss -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x9c4a1683 mt76_connac_pm_dequeue_skbs -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xa07203e9 mt76_connac_mcu_sched_scan_enable -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xa1ef5ef3 mt76_connac_mcu_start_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xa6c2d9f1 mt76_connac_free_pending_tx_skbs -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xad788615 mt76_connac_mcu_init_download -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xae8ddb53 mt76_connac_pm_wake -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xb40831ac mt76_connac_mcu_update_arp_filter -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xbb4b7ff3 mt76_connac_mcu_set_mac_enable -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xbea9fb84 mt76_connac_mcu_sta_basic_tlv -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xc0d7828b mt76_connac_mcu_sta_ba -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xc3a8b10a mt76_connac_mcu_uni_add_dev -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xc6e3796d mt76_connac_mcu_sta_cmd -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xd45736ca mt76_connac_mcu_set_vif_ps -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xd77a288e mt76_connac_mcu_hw_scan -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xda896f02 mt76_connac_mcu_wtbl_hdr_trans_tlv -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xe13f5788 mt76_connac_mcu_coredump_event -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xe799de24 mt76_connac_mcu_cancel_hw_scan -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xf4a5a907 mt76_connac_mcu_set_deep_sleep -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xfa6ab4db mt76_connac_mcu_get_nic_capability -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x2289b14d mt76s_deinit -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x3719f577 mt76s_alloc_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x4e03e5c6 mt76s_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x0bba6195 mt76u_stop_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x25065b96 mt76u_resume_rx -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x388b33e2 mt76u_alloc_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x3bf4a73b mt76u_vendor_request -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x4f28e3be mt76u_alloc_mcu_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x8ba3037b mt76u_queues_deinit -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xb12ae50e mt76u_single_wr -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xc22d8403 mt76u_stop_rx -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xfb1630fb mt76u_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x02f9d1cc mt7615_unregister_ext_phy -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x0676bd92 mt7615_mcu_parse_response -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x06d18a8b mt7615_register_ext_phy -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x0713a644 mt7615_init_work -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x0b12937e mt7615_mcu_reg_rr -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x142d96ab mt7615_thermal_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x14db7604 mt7615_wait_for_mcu_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x19f104e3 mt7615_ops -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x225233db mt7615_txp_skb_unmap -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x258d3691 mt7615_mcu_exit -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x25fc30c0 mt7615_tx_token_put -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x4faa8a8d mt7615_eeprom_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x57cdc38b mt7615_init_debugfs -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x5b0f1fe5 mt7615_mcu_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x5d990601 mt7615_mac_sta_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x7066b6df mt7615_sta_ps -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x7a5a27aa mt7615_mac_set_rates -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x7b0eb31e mt7622_trigger_hif_int -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x877321f5 mt7615_mcu_fill_msg -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x8a1766ee mt7615_update_channel -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xa4216d45 mt7615_mac_sta_poll -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xb287f527 mt7615_init_txpower -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xbaa3e4bf mt7615_init_device -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xd0c36974 mt7615_mcu_restart -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xd57a9351 mt7615_queue_rx_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xedd0968c mt7615_mcu_reg_wr -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xedfdfb37 mt7615_mac_sta_add -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xfb44070b mt7615_mac_write_txwi -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xfe751016 __mt7663_load_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615e 0x4ec6fce6 mt7615_dma_reset -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7663-usb-sdio-common 0x1255ba6d 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 0x33b1b5f7 mt7663_usb_sdio_tx_prepare_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7663-usb-sdio-common 0xa4246b62 mt7663_usb_sdio_register_device -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7663-usb-sdio-common 0xcb5c0ca8 mt7663_usb_sdio_tx_status_data -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x22cdec9f mt76x0_phy_calibrate -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x4ecadce4 mt76x0_init_hardware -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x7445a569 mt76x0_register_device -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x8e564042 mt76x0_mac_stop -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x9287261b mt76x0_config -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0xf786fcfe mt76x0_chip_onoff -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x025e0d63 mt76x02_mcu_set_radio_state -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x02f076b2 mt76x02_tx_complete_skb -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 0x08b4518b mt76x02_mcu_msg_send -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 0x134b1eef mt76x02_sta_ps -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x139ae7f5 mt76x02_mac_cc_reset -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x16e97c6b mt76x02_tx_set_txpwr_auto -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x1ff5545b mt76x02_dfs_init_params -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x25b2dc06 mt76x02_dma_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x265f2c99 mt76x02_mac_setaddr -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x26afa0cd mt76x02_ext_pa_enabled -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x278d31f0 mt76x02_remove_hdr_pad -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x2874d214 mt76x02_ampdu_action -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x28e8b4ea mt76x02_phy_set_band -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x2c33db85 mt76x02_queue_rx_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x2c69ed0b mt76x02_init_agc_gain -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x2f6b6e12 mt76x02_mac_start -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 0x39ee0f6d mt76x02_init_beacon_config -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x3ad4a7cf mt76x02_edcca_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x3c6d3cc1 mt76x02_phy_dfs_adjust_agc -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x402c27bb mt76x02_enqueue_buffered_bc -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x427d55c3 mt76x02_init_debugfs -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x4552ce5a mt76x02_set_key -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x4a65fc7b mt76x02_add_interface -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x4cd6db38 mt76x02_phy_set_rxpath -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x590762c7 mt76x02_mcu_calibrate -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x59fece91 mt76x02_config_mac_addr_list -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x5bd84fd5 mt76x02_rates -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x64ce2e80 mt76x02_get_rx_gain -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x70c65e2f mt76x02_configure_filter -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x713c4d07 mt76x02_mac_wcid_setup -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x74bbf478 mt76x02_remove_interface -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x854cd4b5 mt76x02_sw_scan_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x862c5dcc mt76x02_phy_set_txdac -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x8cb67a6f mt76x02_eeprom_parse_hw_cap -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x8f5f0498 mt76x02_phy_set_txpower -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x91d5b9ee mt76x02_irq_handler -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xa0e1f5bb mt76x02_dma_disable -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xa6950b12 mt76x02_bss_info_changed -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xa9a2ccde mt76x02_mcu_parse_response -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xa9c4d2de mt76x02_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xab81b022 mt76x02_mac_shared_key_setup -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xabde54cd mt76x02_update_channel -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xb0aba9e9 mt76x02_set_coverage_class -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xb211070b mt76x02e_init_beacon_config -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xb24a421d mt76x02_tx_status_data -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xb29aac15 mt76x02_mac_reset_counters -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xbd81871d mt76x02_sta_rate_tbl_update -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xc046bf0b mt76x02_set_ethtool_fwver -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xc1baff4f mt76x02_mcu_cleanup -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xc8283c5d mt76x02_mac_write_txwi -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xc86486db mt76x02_mcu_function_select -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xc8ccdee9 mt76x02_init_device -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xcbd1c250 mt76x02_get_efuse_data -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xcc2a91ad mt76x02_get_lna_gain -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xcf028e10 mt76x02_eeprom_copy -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xcf8126ce mt76x02_tx_prepare_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xd7e0c3e9 mt76x02_conf_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xdb8b365a mt76x02_set_tx_ackto -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xe2b4814b mt76x02_phy_adjust_vga_gain -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xe586f183 mt76x02_resync_beacon_timer -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xebf36797 mt76x02_sta_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xed948717 mt76x02_phy_set_bw -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xefd69ca7 mt76x02_set_rts_threshold -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xf31b2df1 mt76x02_reconfig_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xf64eb1c2 mt76x02_sta_add -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xf9a7e6c4 mt76x02_mac_set_beacon -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xfab9b930 mt76x02_update_beacon_iter -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xfcf77bb5 mt76x02_rx_poll_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x26412bc4 mt76x02u_exit_beacon_config -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x51df6d53 mt76x02u_mcu_fw_reset -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x9bb195c5 mt76x02u_mcu_fw_send_data -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0xb7f461e8 mt76x02u_tx_complete_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0xc59e9967 mt76x02u_mac_start -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0xcb095101 mt76x02u_init_mcu -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0xdd3ec5cb mt76x02u_init_beacon_config -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0xffbdf173 mt76x02u_tx_prepare_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x0a637ca9 mt76x2_get_temp_comp -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x18d59b4c mt76x2_phy_set_txpower -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x39c1f45b mt76x2_mcu_load_cr -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x3b23e19d mt76_write_mac_initvals -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x3e724a9b mt76x2_mcu_tssi_comp -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x4652a182 mt76x2_mcu_set_channel -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x557d8dbb mt76x2_mac_stop -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x5b009542 mt76x2_phy_tssi_compensate -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x5cc4dc16 mt76x2_apply_gain_adj -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x6a388685 mt76x2_configure_tx_delay -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x6e1c8ade mt76x2_get_rate_power -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x75bafa0f mt76x2_phy_update_channel_gain -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x7dcf50c4 mt76x2_get_power_info -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x7fa83e86 mt76x2_phy_set_txpower_regs -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x867926f5 mt76x2_eeprom_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x95cb2385 mt76x2_init_txpower -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xb7d2dc1e mt76x2_mcu_init_gain -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xc8b2cfb2 mt76x2_reset_wlan -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xdb0264c4 mt76x2_read_rx_gain -EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x0021e96f host_sleep_notify -EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x12da34e5 wilc_cfg80211_init -EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x1e199d36 chip_allow_sleep -EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x31f56214 wilc_netdev_cleanup -EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x68ef414f host_wakeup_notify -EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x92fe453c wilc_handle_isr -EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x9ade32cf chip_wakeup -EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x198530f5 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 0x3f5d722c qtnf_core_detach -EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x82b8214c qtnf_wake_all_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x9960089b qtnf_trans_handle_rx_ctl_packet -EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x99f8d62d qtnf_get_debugfs_dir -EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0xcddb02ef qtnf_core_attach -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x06161452 rt2800_txdone -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x083682ab rt2800_sta_add -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x0b8f5cb8 rt2800_write_beacon -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x0dc04bdf rt2800_pre_reset_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x1d91a2a2 rt2800_get_key_seq -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x2667f2e9 rt2800_read_eeprom_efuse -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x2928daba rt2800_link_tuner -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x2b626c8b rt2800_get_tsf -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x324f3cb5 rt2800_vco_calibration -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x3427b731 rt2800_config -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x37480fec rt2800_config_shared_key -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x39aa11af rt2800_config_intf -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x3f19ebec rt2800_enable_radio -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x60248563 rt2800_probe_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x6d1f6b2a rt2800_wait_wpdma_ready -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x6e88009b rt2800_rfkill_poll -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x72a1e7ef rt2800_process_rxwi -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x72e50d59 rt2800_disable_radio -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x74aed0dd rt2800_ampdu_action -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x792d4d19 rt2800_mcu_request -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x7fcda7ec rt2800_load_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x818f81c5 rt2800_efuse_detect -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x85dd4c43 rt2800_txstatus_pending -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x961aac82 rt2800_disable_wpdma -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x9aea467d rt2800_watchdog -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xa72c0215 rt2800_gain_calibration -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xb5fd4d45 rt2800_conf_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xb7a0a2fc rt2800_clear_beacon -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xb8de3cfb rt2800_txdone_entry -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xbf86ce00 rt2800_config_pairwise_key -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xbfae1197 rt2800_set_rts_threshold -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xbfb3518e rt2800_reset_tuner -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xc7395d7a rt2800_get_survey -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xca9e22f2 rt2800_sta_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xccd4ce3a rt2800_config_filter -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xccfb378d rt2800_get_txwi_rxwi_size -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xcf5ec50e rt2800_config_erp -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xcfaf4d85 rt2800_txstatus_timeout -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xe54035d4 rt2800_write_tx_data -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xe55fb2de rt2800_txdone_nostatus -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xeaf034c2 rt2800_wait_csr_ready -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xfa811726 rt2800_link_stats -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xfa8cf40b rt2800_config_ant -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xfab2d74c rt2800_check_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x03951293 rt2800mmio_enable_radio -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x0789a627 rt2800mmio_write_tx_desc -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x099d27d4 rt2800mmio_kick_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x0b6d177a 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 0x39ded4a3 rt2800mmio_start_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x3d741c87 rt2800mmio_pretbtt_tasklet -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 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 0x61b60780 rt2800mmio_init_registers -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x94e934da rt2800mmio_stop_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x97e3c029 rt2800mmio_autowake_tasklet -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x9f3c8921 rt2800mmio_txstatus_tasklet -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x9f692768 rt2800mmio_clear_entry -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xa5c5cf26 rt2800mmio_get_entry_state -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xaa613d88 rt2800mmio_probe_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xbb01b268 rt2800mmio_init_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xcb73dfdd rt2800mmio_queue_init -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xd25d6c1b rt2800mmio_get_dma_done -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xd612f4f5 rt2800mmio_fill_rxdone -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xed754bda rt2800mmio_toggle_irq -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xff6f407b rt2800mmio_flush_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x05b0378d rt2x00lib_set_mac_address -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x0bfa0a76 rt2x00mac_bss_info_changed -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x1e9e70f4 rt2x00queue_start_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x200c414d rt2x00mac_sw_scan_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x2132c1c1 rt2x00mac_tx_frames_pending -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x2306a06c rt2x00mac_configure_filter -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x2e3c325f rt2x00lib_dmadone -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x316e59b9 rt2x00mac_conf_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x31e4019b rt2x00mac_add_interface -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x3b8203c8 rt2x00mac_config -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x5222565c rt2x00mac_get_antenna -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x5f92113a rt2x00queue_for_each_entry -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x69be0157 rt2x00lib_txdone_nomatch -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x730fad3a rt2x00queue_start_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x74217c3d rt2x00queue_unpause_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x784ea37a rt2x00mac_set_antenna -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x7a74994c rt2x00mac_reconfig_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x7b74977f rt2x00queue_flush_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x8caffcb7 rt2x00mac_sw_scan_start -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x92f0eb51 rt2x00lib_pretbtt -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x9a35ecbe rt2x00queue_stop_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x9d91c56d rt2x00mac_stop -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x9dd63c04 rt2x00lib_remove_dev -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xa0a29e88 rt2x00queue_map_txskb -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xa513e75d rt2x00queue_unmap_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xa70721f1 rt2x00mac_start -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xa8d01841 rt2x00lib_suspend -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xb3a0fb8a rt2x00mac_get_ringparam -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xb70e3276 rt2x00mac_set_tim -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xbbdf0fde rt2x00mac_get_stats -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xbc7dc761 rt2x00lib_get_bssidx -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xbc9d3cd4 rt2x00mac_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xc1f31109 rt2x00lib_dmastart -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xc300946a rt2x00queue_get_entry -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xc71bb7bc rt2x00lib_resume -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xc9e1887a rt2x00lib_rxdone -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xd1fb6180 rt2x00mac_remove_interface -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xd331c53d rt2x00mac_set_key -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xdc200564 rt2x00mac_rfkill_poll -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xe327055b rt2x00lib_beacondone -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xe92ec12d rt2x00queue_flush_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xeea065ba rt2x00mac_flush -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xf0607ebb rt2x00queue_pause_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xf0b1c79c rt2x00lib_probe_dev -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xf2650d7a rt2x00lib_txdone -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xf4a20d8c rt2x00queue_stop_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xfb63992c rt2x00lib_txdone_noinfo -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x0b35cd9d rt2x00mmio_flush_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x3766b941 rt2x00mmio_regbusy_read -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x4e09d5f0 rt2x00mmio_uninitialize -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x702f8e72 rt2x00mmio_rxdone -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0xeedfa90c rt2x00mmio_initialize -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00pci 0x317e4c45 rt2x00pci_probe -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00pci 0x58479fd8 rt2x00pci_pm_ops -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00pci 0xbe640fa2 rt2x00pci_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x0285c3a5 rt2x00usb_uninitialize -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x092eebae rt2x00usb_initialize -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x21116492 rt2x00usb_vendor_request -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x2b9f873b rt2x00usb_resume -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x368053e6 rt2x00usb_vendor_request_buff -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x66d94bdc rt2x00usb_flush_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x6e6e9f8b rt2x00usb_clear_entry -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x714224d7 rt2x00usb_register_read_async -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x85c80db3 rt2x00usb_kick_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xa4769159 rt2x00usb_probe -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xb030c486 rt2x00usb_disconnect -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xc059ae2e rt2x00usb_vendor_req_buff_lock -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xd920046b rt2x00usb_regbusy_read -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xda4bb245 rt2x00usb_suspend -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xe3c74f45 rt2x00usb_disable_radio -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xe64593ed rt2x00usb_watchdog -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x3d3351cc dm_writepowerindex -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xba9db219 dm_restorepowerindex -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xbc856562 dm_savepowerindex -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xeaf1ee55 rtl92c_set_p2p_ps_offload_cmd -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x2871be2f rtl8723_phy_init_bb_rf_reg_def -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x2dda0c10 rtl8723_phy_pi_mode_switch -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x2f2ecf58 rtl8723_dm_init_dynamic_txpower -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x32d6c944 rtl8723be_firmware_selfreset -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x3bc37b70 rtl8723_phy_set_bb_reg -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x3f5bf9c0 rtl8723_phy_calculate_bit_shift -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x43558057 rtl8723_phy_reload_mac_registers -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x4e3aad59 rtl8723_phy_rf_serial_read -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x59c11a8b rtl8723_phy_rf_serial_write -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x63f95e0a rtl8723_phy_reload_adda_registers -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x671d2689 rtl8723_write_fw -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x75d98fe7 rtl8723_cmd_send_packet -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x790673c0 rtl8723_phy_save_mac_registers -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x7f72f9af rtl8723_fw_free_to_go -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x8a64da23 rtl8723_phy_txpwr_idx_to_dbm -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x8baf8913 rtl8723_phy_set_sw_chnl_cmdarray -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x92a33b07 rtl8723_phy_path_a_fill_iqk_matrix -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xb56248e8 rtl8723_dm_init_edca_turbo -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xb80bb3cf rtl8723_phy_query_bb_reg -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xc652ddee rtl8723_download_fw -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xc7e805e4 rtl8723_phy_path_a_standby -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xcfd55375 rtl8723_dm_init_dynamic_bb_powersaving -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xd3e9d85c rtl8723ae_firmware_selfreset -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xd92e43b6 rtl8723_phy_mac_setting_calibration -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xdebcbf5e rtl8723_save_adda_registers -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xe404607a rtl8723_enable_fw_download -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xf37d505e rtl8723_phy_path_adda_on -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0374344a rtl_fw_block_write -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2921a4d4 rtl_btc_status_false -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2c9467c6 rtl_global_var -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 0x2fbf99c2 rtl_is_special_data -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x3befd1f5 rtl_get_hwinfo -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x43322479 rtl_tx_ackqueue -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x46c6eb35 rtl_action_proc -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x4ee23778 rtl_get_hal_edca_param -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x5550222d read_efuse_byte -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x6045452f rtl_beacon_statistic -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x6a1314cc rtl_lps_enter -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x6db3ba37 rtl_update_beacon_work_callback -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x6f64499d rtl_tx_report_handler -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7216b2e7 rtl_lps_leave -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7679f5f9 rtl_set_tx_report -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7ab38552 rtl_recognize_peer -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x87ac8ce6 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 0xa24a999b rtl_init_core -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa8116775 rtl_ips_nic_on -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa81dfc67 rtl_fw_page_write -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa9d536da rtl_deinit_core -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xb7f8859b rtl_deinit_deferred_work -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xb900ff9e rtl_ops -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xca04d33d rtl_deinit_rfkill -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xcb5c3d47 rtl_init_rx_config -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xcf817c53 rtl_tx_mgmt_proc -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xe1734633 rtl_swlps_beacon -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf8d1324d rtl_efuse_ops_init -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x0365faa8 rsi_read_pkt -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x09fab74e rsi_mac80211_detach -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x0f5c3ce9 rsi_zone_enabled -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x2aa66a7a rsi_hal_device_init -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x6a9f84a2 rsi_91x_deinit -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xb47fa970 rsi_91x_init -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xcd173710 rsi_dbg -EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0x694590fa cw1200_core_probe -EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0xb2b16336 cw1200_core_release -EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0xc0cbdf2b cw1200_can_suspend -EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0xc587336c cw1200_irq_handler -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0x085ea872 wl1251_init_ieee80211 -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0xb52114dc wl1251_alloc_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0xdb6ac8dc wl1251_free_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x001352fc wlcore_enable_interrupts -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x03b244c9 wlcore_synchronize_interrupts -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x03fb9887 wlcore_event_sched_scan_completed -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x05d5373d wl12xx_acx_mem_cfg -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x06d3b27e wl12xx_debug_level -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x11fa9d74 wl1271_acx_sleep_auth -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x1b1c3918 wlcore_disable_interrupts_nosync -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x1cd44f1f wlcore_free_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x1ed421c4 wlcore_scan_sched_scan_ssid_list -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x1ee5c284 wl1271_debugfs_update_stats -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x1f3d1d54 wlcore_event_max_tx_failure -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x20351125 wlcore_get_native_channel_type -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x23f73fb8 wl1271_cmd_data_path -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x27a2bedb wl1271_acx_set_ht_capabilities -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x2ac6e993 wlcore_set_key -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x2f23186b wlcore_cmd_wait_for_event_or_timeout -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x33bbfc5f wl12xx_cmd_build_probe_req -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x42999186 wlcore_boot_upload_nvs -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x49c9dbcd wlcore_event_inactive_sta -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x4c09b732 wl1271_tx_flush -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x594cae01 wl1271_acx_pm_config -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x5c75cf0b wlcore_set_scan_chan_params -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x5e882015 wl1271_cmd_test -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x5ec190f2 wlcore_translate_addr -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x61d3dbd7 wlcore_event_fw_logger -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x645bb7f1 wlcore_set_partition -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x6461f18e wl1271_acx_init_mem_config -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x756a3084 wlcore_event_roc_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x783d8de1 wlcore_event_dummy_packet -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x7cb71ccd wlcore_cmd_generic_cfg -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x831d2fd6 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 0x8cdcabae wl1271_cmd_configure -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x92f0ab95 wlcore_event_beacon_loss -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x99612bac wlcore_event_rssi_trigger -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x998d76f5 wl1271_cmd_send -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xa66239ec wlcore_event_ba_rx_constraint -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xa993a889 wlcore_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xab2c68a3 wl1271_tx_min_rate_get -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xba1bdbaf wlcore_boot_upload_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xc64ef138 wlcore_disable_interrupts -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xe72ac865 wlcore_alloc_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xebf8a03b wlcore_event_soft_gemini_sense -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xee06ff69 wlcore_boot_run_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xf37b747a wlcore_scan_sched_scan_results -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xf8c6d2e8 wlcore_probe -EXPORT_SYMBOL_GPL drivers/net/wwan/wwan 0x2921b6de wwan_port_rx -EXPORT_SYMBOL_GPL drivers/net/wwan/wwan 0x3d9bbf75 wwan_port_txon -EXPORT_SYMBOL_GPL drivers/net/wwan/wwan 0x46cf770d wwan_register_ops -EXPORT_SYMBOL_GPL drivers/net/wwan/wwan 0x4dff61e5 wwan_port_txoff -EXPORT_SYMBOL_GPL drivers/net/wwan/wwan 0x526bcf2a wwan_port_get_drvdata -EXPORT_SYMBOL_GPL drivers/net/wwan/wwan 0xb74c31cd wwan_remove_port -EXPORT_SYMBOL_GPL drivers/net/wwan/wwan 0xbe75bd71 wwan_unregister_ops -EXPORT_SYMBOL_GPL drivers/net/wwan/wwan 0xf8a8c3de wwan_create_port -EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x0750e47b nfcmrvl_nci_unregister_dev -EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x0a7dbf66 nfcmrvl_nci_recv_frame -EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x56f0798c nfcmrvl_nci_register_dev -EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0xd4aa9bb3 nfcmrvl_parse_dt -EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x1c0fdd66 pn533_finalize_setup -EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x3f0f7af5 pn53x_unregister_nfc -EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x5547448b pn53x_common_init -EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x853e36a8 pn532_i2c_nfc_alloc -EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0xb2bfdc84 pn53x_register_nfc -EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0xdcfd2ac8 pn533_rx_frame_is_cmd_response -EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0xdecfd339 pn533_rx_frame_is_ack -EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0xfab71da8 pn53x_common_clean -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x1095b21d st_nci_probe -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x1ee11200 st_nci_disable_se -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x6941cf14 st_nci_hci_event_received -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x6ddf24e6 st_nci_hci_load_session -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x8ffe95f9 st_nci_remove -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x9309815e st_nci_hci_cmd_received -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x9af84d2b st_nci_discover_se -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x9e970b15 st_nci_enable_se -EXPORT_SYMBOL_GPL drivers/nfc/st95hf/st95hf 0x51115cb7 st95hf_spi_recv_echo_res -EXPORT_SYMBOL_GPL drivers/nfc/st95hf/st95hf 0x5dcbdf96 st95hf_spi_send -EXPORT_SYMBOL_GPL drivers/nfc/st95hf/st95hf 0xe0790523 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 0x4fb2c7ca 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 0xa59e059a ntb_transport_unregister_client -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xc270dc24 ntb_transport_free_queue -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xc37d9036 ntb_transport_rx_remove -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xd40e7a02 ntb_transport_rx_enqueue -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xf0ae4490 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 0x11d8591f async_pmem_flush -EXPORT_SYMBOL_GPL drivers/nvdimm/nd_virtio 0x954c4e1e virtio_pmem_host_ack -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x11abc494 __SCK__tp_func_nvme_sq -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x1bf63660 nvme_stop_keep_alive -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x1c786d2c nvme_try_sched_reset -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x1ebeaf21 nvme_cancel_admin_tagset -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x29969a51 nvme_reset_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x37164092 nvme_stop_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x3d1c05c3 nvme_complete_rq -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x412f5865 nvme_init_ctrl_finish -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x430db654 nvme_submit_sync_cmd -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x49224181 nvme_reset_wq -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x4b0d35ee nvme_enable_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x51f1a847 nvme_kill_queues -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x5451842b nvme_alloc_request -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x5cc5f723 nvme_unfreeze -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x5de5f93b __nvme_check_ready -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x626043d7 nvme_wait_reset -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x62ff2443 nvme_wait_freeze -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x63b18165 nvme_set_queue_count -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x6434aec2 nvme_start_queues -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x64b05f57 nvme_remove_namespaces -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x64b62862 nvme_wq -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x65753fac nvme_cleanup_cmd -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x72a9fca8 nvme_delete_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x7cdcec7b nvme_start_freeze -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x7de2644d nvme_fail_nonready_command -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x7e0d054a nvme_sync_io_queues -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x813cf212 nvme_io_timeout -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x84c869c4 nvme_stop_queues -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x86a3a7b1 nvme_disable_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x8a9c70ed nvme_sec_submit -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x8aa9c1fe __nvme_submit_sync_cmd -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x8e7ec2b6 __tracepoint_nvme_sq -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x95908dee nvme_sync_queues -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x95ca2ec7 nvme_wait_freeze_timeout -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x9a4b3599 nvme_host_path_error -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xa5e33df2 nvme_setup_cmd -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xb5c5db5e nvme_get_features -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xb8305456 __traceiter_nvme_sq -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xbc588114 nvme_change_ctrl_state -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xbe9e5141 nvme_set_features -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xc0c7d2eb nvme_start_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xca98fd43 nvme_cancel_request -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xcc877965 nvme_cancel_tagset -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xce4ec5af nvme_uninit_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xceeaca6d nvme_shutdown_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 0xef67d91d nvme_init_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xfbc3d4fa nvme_complete_async_event -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x1704fe0e nvmf_ip_options_match -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x3b62e7de nvmf_reg_read32 -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x44329dc8 nvmf_unregister_transport -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x51c659eb nvmf_free_options -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x5f47a2f4 nvmf_reg_write32 -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x6e806498 nvmf_reg_read64 -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x820ad772 nvmf_get_address -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xb6c2eb22 nvmf_register_transport -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xd54bea9e nvmf_should_reconnect -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xe5354f4f nvmf_connect_admin_queue -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xfe5039e3 nvmf_connect_io_queue -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0x0d12e564 nvme_fc_register_remoteport -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0x26034f6f 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 0x07fa7a25 nvmet_req_free_sgls -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x2100863f nvmet_sq_init -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x3e0ef07a nvmet_wq -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x44eaccc0 nvmet_unregister_transport -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x55500a94 nvmet_sq_destroy -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x798a0271 nvmet_req_complete -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xa136f2d6 nvmet_check_transfer_len -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xacfd6359 nvmet_req_uninit -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xb5b76ae6 nvmet_ctrl_fatal_error -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xdc8604cd nvmet_req_alloc_sgls -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xe388e2b4 nvmet_req_init -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xe67d6c36 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 0x89668c5c nvmet_fc_register_targetport -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet-fc 0x9ef76d99 nvmet_fc_unregister_targetport -EXPORT_SYMBOL_GPL drivers/pci/controller/pcie-iproc 0x1c9c0f66 iproc_pcie_shutdown -EXPORT_SYMBOL_GPL drivers/pci/switch/switchtec 0xb220da83 switchtec_class -EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0x1185a082 hisi_uncore_pmu_event_update -EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0x332c9ed2 hisi_uncore_pmu_event_init -EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0x3596754d hisi_format_sysfs_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 0x4bac392e hisi_uncore_pmu_start -EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0x4be6eddd hisi_uncore_pmu_init_irq -EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0x5f857dfa hisi_uncore_pmu_get_event_idx -EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0x6a4a62b9 hisi_uncore_pmu_identifier_attr_show -EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0x858408b5 hisi_uncore_pmu_del -EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0x973dd227 hisi_uncore_pmu_disable -EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0xa30724ef hisi_uncore_pmu_set_event_period -EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0xbdf2299c hisi_cpumask_sysfs_show -EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0xc34190d1 hisi_uncore_pmu_read -EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0xd0209723 hisi_event_sysfs_show -EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0xe5deaa6d hisi_uncore_pmu_add -EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0xf0553715 hisi_uncore_pmu_stop -EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0xf84cfb00 hisi_uncore_pmu_enable -EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0xfb6373d1 hisi_uncore_pmu_offline_cpu -EXPORT_SYMBOL_GPL drivers/phy/allwinner/phy-sun4i-usb 0xf029cbb2 sun4i_usb_phy_set_squelch_detect -EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x0b7ca299 tegra_xusb_padctl_put -EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x0f0cebe5 tegra_phy_xusb_utmi_pad_power_down -EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x126c5ea0 tegra234_xusb_padctl_soc -EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x12e6e3c5 tegra186_xusb_padctl_soc -EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x18af146d tegra_xusb_padctl_remote_wake_detected -EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x2799c6e6 tegra_xusb_padctl_disable_phy_sleepwalk -EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x2b4f5b8e tegra_xusb_padctl_get -EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x3b1ad192 tegra_xusb_padctl_enable_phy_sleepwalk -EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x4b81b63c tegra_xusb_padctl_enable_phy_wake -EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x6a279332 tegra124_xusb_padctl_soc -EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x6d708f57 tegra210_xusb_padctl_soc -EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x9826b92a tegra_xusb_padctl_get_usb3_companion -EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x983f43c8 tegra_xusb_padctl_usb3_save_context -EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0xb05a23a0 tegra_xusb_padctl_set_vbus_override -EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0xb56669ff tegra_xusb_padctl_usb3_set_lfps_detect -EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0xc0d0081e tegra194_xusb_padctl_soc -EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0xde5bdab4 tegra_phy_xusb_utmi_pad_power_on -EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0xe2d7e1b7 tegra_xusb_padctl_hsic_set_idle -EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0xe8035d4e tegra_xusb_padctl_disable_phy_wake -EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0xf0ef1102 tegra_phy_xusb_utmi_port_reset -EXPORT_SYMBOL_GPL drivers/phy/ti/phy-omap-usb2 0x00d48f33 omap_usb2_set_comparator -EXPORT_SYMBOL_GPL drivers/pinctrl/pinctrl-mcp23s08 0x8e9719a9 mcp23x08_regmap -EXPORT_SYMBOL_GPL drivers/pinctrl/pinctrl-mcp23s08 0x93677c67 mcp23s08_probe_one -EXPORT_SYMBOL_GPL drivers/pinctrl/pinctrl-mcp23s08 0xbeecbd46 mcp23x17_regmap -EXPORT_SYMBOL_GPL drivers/platform/chrome/cros-ec-sensorhub 0x048c6f9f cros_ec_sensorhub_unregister_push_data -EXPORT_SYMBOL_GPL drivers/platform/chrome/cros-ec-sensorhub 0x369acdb2 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 0x047147f5 ssam_request_sync_submit -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x218cf4e4 ssam_controller_event_disable -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x499aa19d ssam_notifier_unregister -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x50c40621 ssh_packet_put -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x56803387 ssam_request_sync -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x604d2afc ssam_request_sync_init -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x618ca875 ssam_device_add -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x659b0158 ssh_packet_get -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x65d5916d ssam_request_sync_alloc -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x67590511 ssam_device_driver_unregister -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x73b3f061 ssam_controller_stateunlock -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x7d4cb3bd ssam_controller_event_enable -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x9415e44f ssam_request_sync_free -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x9daa01fd ssam_client_link -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xa4800718 ssam_notifier_register -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xae37063b ssam_device_type -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xbdc89f01 ssam_controller_device -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xc2bd582d ssam_device_id_match -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xc30ab4ef ssam_device_remove -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xc4be59da ssam_bus_type -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xc73585ea ssam_request_write_data -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xcaea88bb ssam_device_get_match_data -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xcccac606 ssam_get_controller -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xcdbdf02b ssam_request_sync_with_buffer -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xcfb750c8 ssam_device_alloc -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xd0c22a42 ssam_controller_get -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xdee59b12 ssam_client_bind -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xe2853266 __ssam_device_driver_register -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xe8d5f30e ssam_controller_statelock -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xefd27ba6 ssam_device_get_match -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xf85d6f76 ssam_controller_put -EXPORT_SYMBOL_GPL drivers/platform/surface/surface_acpi_notify 0x48cf4c48 san_dgpu_notifier_register -EXPORT_SYMBOL_GPL drivers/platform/surface/surface_acpi_notify 0x9f18a6b5 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 0x027511be devm_reboot_mode_unregister -EXPORT_SYMBOL_GPL drivers/power/reset/reboot-mode 0x22c28b87 devm_reboot_mode_register -EXPORT_SYMBOL_GPL drivers/power/reset/reboot-mode 0x64d5d4fa reboot_mode_unregister -EXPORT_SYMBOL_GPL drivers/power/reset/reboot-mode 0x8195ffca reboot_mode_register -EXPORT_SYMBOL_GPL drivers/power/supply/bq27xxx_battery 0x23ff6b18 bq27xxx_battery_setup -EXPORT_SYMBOL_GPL drivers/power/supply/bq27xxx_battery 0x5111c381 bq27xxx_battery_update -EXPORT_SYMBOL_GPL drivers/power/supply/bq27xxx_battery 0x59bae621 bq27xxx_battery_teardown -EXPORT_SYMBOL_GPL drivers/power/supply/pcf50633-charger 0x534d6c91 pcf50633_mbc_get_usb_online_status -EXPORT_SYMBOL_GPL drivers/power/supply/pcf50633-charger 0xa1862441 pcf50633_mbc_get_status -EXPORT_SYMBOL_GPL drivers/power/supply/pcf50633-charger 0xebd9effc pcf50633_mbc_usb_curlim_set -EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0x2eae82b0 ptp_qoriq_isr -EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0x3649c78f ptp_qoriq_adjfine -EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0x46dab7b8 ptp_qoriq_free -EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0x4788dd6f ptp_qoriq_adjtime -EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0x4b3aaf63 ptp_qoriq_gettime -EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0x7ddec676 ptp_qoriq_enable -EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0x88434f22 extts_clean_up -EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0xb7b9ea36 ptp_qoriq_settime -EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0xea98f475 ptp_qoriq_init -EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x05e44649 mc13xxx_fixed_regulator_set_voltage -EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x0e1a8210 mc13xxx_regulator_ops -EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x203ab77c mc13xxx_get_num_regulators_dt -EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x70820436 mc13xxx_parse_regulators_dt -EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0xb1de3d79 mc13xxx_fixed_regulator_ops -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x00a25c0d wm8350_register_regulator -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x0e711fd4 wm8350_ldo_set_slot -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x1abde0af wm8350_dcdc25_set_mode -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x207f98b7 wm8350_register_led -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xecdabacc wm8350_isink_set_flash -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xf7ee7ffb wm8350_dcdc_set_slot -EXPORT_SYMBOL_GPL drivers/regulator/wm8400-regulator 0x715f609c wm8400_register_regulator -EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp 0x003307e6 scp_get_rproc -EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp 0x38cf9b12 scp_get_vdec_hw_capa -EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp 0x5d74ea3c scp_mapping_dm_addr -EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp 0x7fced006 scp_get -EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp 0xbaf545ad scp_put -EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp 0xcd9e6a7e scp_get_device -EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp 0xeb699082 scp_get_venc_hw_capa -EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp_ipi 0x09313652 scp_memcpy_aligned -EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp_ipi 0x3d8b5e8f scp_ipi_send -EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp_ipi 0x42b01ddf scp_ipi_register -EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp_ipi 0x78e08fa3 scp_ipi_lock -EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp_ipi 0xbfd55d85 scp_ipi_unlock -EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp_ipi 0xc6918234 scp_ipi_unregister -EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0x0fa538df qcom_register_ssr_notifier -EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0x18dc535b qcom_remove_smd_subdev -EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0x22d095bd qcom_register_dump_segments -EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0x314046c4 qcom_add_ssr_subdev -EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0x3145fa80 qcom_add_smd_subdev -EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0x610f40fc qcom_remove_glink_subdev -EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0x8122b921 qcom_remove_ssr_subdev -EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0xd39a611a qcom_add_glink_subdev -EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0xd6cc0cc0 qcom_unregister_ssr_notifier -EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0xdd90ac98 qcom_minidump -EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_pil_info 0x30e58241 qcom_pil_info_store -EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_q6v5 0x20bf7764 qcom_q6v5_request_stop -EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_q6v5 0x2509f4dc qcom_q6v5_unprepare -EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_q6v5 0x3b4da338 qcom_q6v5_prepare -EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_q6v5 0x44a6b9d7 qcom_q6v5_panic -EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_q6v5 0xb2ce801e qcom_q6v5_wait_for_start -EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_q6v5 0xde2e5b89 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 0xd8769f1d qcom_add_sysmon_subdev -EXPORT_SYMBOL_GPL drivers/rpmsg/mtk_rpmsg 0x8182c711 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 0x0cda3146 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/rpmsg/qcom_glink_smem 0x72dd75d9 qcom_glink_smem_unregister -EXPORT_SYMBOL_GPL drivers/rpmsg/qcom_glink_smem 0x91a57a1c qcom_glink_smem_register -EXPORT_SYMBOL_GPL drivers/rtc/rtc-ds1685 0x49712662 ds1685_rtc_poweroff -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x04877cc1 cxgbi_sock_check_wr_invariants -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x05db2e0f cxgbi_conn_tx_open -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x0650a246 cxgbi_device_register -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x21b9d758 cxgbi_sock_skb_entail -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x22060e01 cxgbi_get_host_param -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x2ffc619d cxgbi_sock_rcv_peer_close -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x300629c6 cxgbi_device_portmap_create -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x30110f14 cxgbi_device_portmap_cleanup -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x3792dc8b cxgbi_get_conn_stats -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x3ad66a84 cxgbi_bind_conn -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x46b59518 cxgbi_sock_fail_act_open -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x4b8ecbe9 cxgbi_device_find_by_netdev -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x4df8809a cxgbi_device_find_by_netdev_rcu -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x4fa0eb83 cxgbi_sock_rcv_abort_rpl -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x5548e343 cxgbi_ddp_ppm_setup -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x5c3a5585 cxgbi_destroy_session -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x6aa80567 cxgbi_conn_pdu_ready -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x74ac99ac cxgbi_sock_purge_wr_queue -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x77e5877f cxgbi_conn_init_pdu -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7fd92149 cxgbi_ep_connect -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7fdb6004 cxgbi_device_unregister_all -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7ff915e8 cxgbi_iscsi_init -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x8028ef2d cxgbi_cleanup_task -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x87ecd0fa cxgbi_parse_pdu_itt -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x99fe6e32 cxgbi_sock_select_mss -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x9e9a19d5 cxgbi_ep_poll -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xa20a521d cxgbi_conn_alloc_pdu -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xa4cb53ea cxgbi_sock_rcv_wr_ack -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xa586cfe2 cxgbi_sock_rcv_close_conn_rpl -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xa5c0e83c cxgbi_sock_closed -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xb7fbcc11 cxgbi_ep_disconnect -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xb852bae8 cxgbi_device_unregister -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xb895d4a2 cxgbi_device_find_by_lldev -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xbd27501b cxgbi_get_ep_param -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xc011af75 cxgbi_ddp_set_one_ppod -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xc388ed63 cxgbi_create_conn -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xc442009c cxgbi_sock_established -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xceee2b2f cxgbi_hbas_add -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xd26fb036 cxgbi_set_host_param -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xddbca90a cxgbi_sock_act_open_req_arp_failure -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xdf17c8dd cxgbi_set_conn_param -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xdfd4e2c9 cxgbi_iscsi_cleanup -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xe5545a05 cxgbi_hbas_remove -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xe901a4c7 cxgbi_conn_xmit_pdu -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xee21af6a cxgbi_create_session -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xef346615 cxgbi_attr_is_visible -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xfc3e4536 cxgbi_sock_free_cpl_skbs -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x17e6fd2d fcoe_get_wwn -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x3edfff22 fcoe_get_lesb -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x4de0ba47 fcoe_ctlr_device_add -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x5fe4b922 fcoe_start_io -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x69e36f06 fcoe_link_speed_update -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x6b4ff671 fcoe_fcf_device_delete -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x83616489 fcoe_fc_crc -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x89090f36 fcoe_ctlr_device_delete -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x98cf654d fcoe_get_paged_crc_eof -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xa833d5b4 fcoe_fcf_device_add -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xad3f2981 fcoe_validate_vport_create -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xb7977250 fcoe_libfc_config -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xbac58840 fcoe_queue_timer -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xbc5a7dea __fcoe_get_lesb -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xc3f30cc0 fcoe_wwn_from_mac -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xd6564146 fcoe_clean_pending_queue -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xda6d8b0c fcoe_ctlr_get_lesb -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xf0f8e8b5 fcoe_check_wait_queue -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xf167cb7a fcoe_wwn_to_str -EXPORT_SYMBOL_GPL drivers/scsi/fdomain 0x9390caee fdomain_destroy -EXPORT_SYMBOL_GPL drivers/scsi/fdomain 0xf4d44db1 fdomain_create -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x23e6db6a hisi_sas_stop_phys -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x29d52282 hisi_sas_scan_start -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x3220ccab hisi_sas_phy_enable -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x36b8f162 hisi_sas_alloc -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x3c6f208e hisi_sas_get_fw_info -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x3d287d13 hisi_sas_sync_irqs -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x470c0991 hisi_sas_controller_reset_prepare -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x4a11db0e hisi_sas_phy_down -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x4fc22123 hisi_sas_stt -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x50cf00f7 hisi_sas_free -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x7024ca2f hisi_sas_slot_task_free -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x8df41d54 hisi_sas_phy_oob_ready -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x918ebab6 hisi_sas_probe -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x939dd2ec hisi_sas_sata_done -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x95ee3aae 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 0xad45d811 hisi_sas_scan_finished -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0xad6f33dc hisi_sas_notify_phy_event -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0xb03aa9c5 hisi_sas_rst_work_handler -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0xc380e458 hisi_sas_host_reset -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0xc3945315 hisi_sas_debugfs_dir -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 0xc6c23950 hisi_sas_init_mem -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0xccfd6983 hisi_sas_slave_configure -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0xe19c2dfc hisi_sas_controller_reset_done -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0xe330cb74 hisi_sas_sync_rst_work_handler -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0xe987d9aa hisi_sas_debugfs_enable -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0xebfae55c hisi_sas_get_ata_protocol -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0xef74da12 hisi_sas_remove -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0xf8d16953 to_hisi_sas_port -EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x0effe217 iscsi_boot_create_ethernet -EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x36269e2d iscsi_boot_create_initiator -EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x451a5682 iscsi_boot_create_acpitbl -EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x52ee9c63 iscsi_boot_create_target -EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x9433ec37 iscsi_boot_create_host_kset -EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xd75061ad iscsi_boot_create_kset -EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xe315def5 iscsi_boot_destroy_kset -EXPORT_SYMBOL_GPL drivers/scsi/libfc/libfc 0x905b0a32 fc_seq_els_rsp_send -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x096a7080 iscsi_session_remove -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x0bb25a62 iscsi_conn_failure -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x12b2ad06 iscsi_switch_str_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x1b97048a iscsi_conn_unbind -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x26deb9e4 iscsi_eh_recover_target -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x27b5e8ee iscsi_host_set_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x389ed446 iscsi_conn_stop -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x39ad99e7 iscsi_complete_pdu -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3b08a0fb iscsi_session_recovery_timedout -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3bbd8936 iscsi_host_remove -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3bef2f73 iscsi_pool_init -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3f08facb iscsi_conn_setup -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x49feb80d iscsi_conn_bind -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x4d01f8c1 __iscsi_complete_pdu -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x4f2efc85 iscsi_queuecommand -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x50b26d43 __iscsi_put_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x5bb66edb iscsi_suspend_rx -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x5dcae121 iscsi_itt_to_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x604a5f7a iscsi_itt_to_ctask -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x6f38a32c iscsi_complete_scsi_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x741b70ac iscsi_host_get_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x816aadfd iscsi_conn_queue_xmit -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x861446f7 iscsi_conn_queue_recv -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x882464ef iscsi_session_setup -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8973d123 iscsi_host_add -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8c419918 iscsi_host_get_max_scsi_cmds -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8d303b1b iscsi_pool_free -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8d5d4bb5 iscsi_update_cmdsn -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8fb39b5d iscsi_put_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x91c64dce iscsi_conn_start -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x94b0349f iscsi_set_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x9a3d69da iscsi_suspend_queue -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa11a5b8d iscsi_conn_send_pdu -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa5052a5f iscsi_session_failure -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa72598a1 iscsi_target_alloc -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xaf4abcf2 iscsi_session_get_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb6ba0166 __iscsi_get_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc939a1e7 iscsi_conn_teardown -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd5639fb9 iscsi_verify_itt -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xdb2cdd7e iscsi_host_free -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xdbb1f220 iscsi_eh_abort -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xdf5c86ff iscsi_host_alloc -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xdf7e7017 iscsi_session_teardown -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xdfe0975b iscsi_eh_device_reset -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xe1a48e40 iscsi_conn_get_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xe2d29e38 iscsi_eh_session_reset -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xe596a438 iscsi_eh_cmd_timed_out -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xe7aa583e iscsi_requeue_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xeab9cbd5 iscsi_conn_get_addr_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xeae8e415 iscsi_session_free -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf891d038 iscsi_prep_data_out_pdu -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xfc7f22a5 iscsi_suspend_tx -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x2846dfa6 iscsi_tcp_segment_unmap -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x3c75bd89 iscsi_tcp_conn_setup -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x42b22c97 iscsi_tcp_r2tpool_alloc -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x446e2622 iscsi_tcp_set_max_r2t -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x55430f7a iscsi_segment_init_linear -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x57271749 iscsi_tcp_dgst_header -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x771830e8 iscsi_tcp_hdr_recv_prep -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x7837ecb6 iscsi_tcp_task_init -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x78e27569 iscsi_tcp_r2tpool_free -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x7f4e1a6c iscsi_tcp_recv_skb -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x8a668576 iscsi_tcp_conn_teardown -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x8c7463b4 iscsi_tcp_task_xmit -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x8ed56722 iscsi_tcp_segment_done -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xaccf9607 iscsi_tcp_cleanup_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xacf1313a iscsi_tcp_recv_segment_is_hdr -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xb815e46d iscsi_tcp_conn_get_stats -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xfcebd01e iscsi_segment_seek_sg -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x01f4dec9 sas_ata_schedule_reset -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x04d4e624 sas_eh_target_reset_handler -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x190753d5 sas_eh_device_reset_handler -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x19b8039b sas_target_alloc -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x1bde3bf5 sas_alloc_slow_task -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x29823157 sas_register_ha -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x33afc3c4 sas_notify_phy_event -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x350b5b25 sas_domain_attach_transport -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x39c0c3df sas_queuecommand -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x42b27d0b sas_free_task -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x4d27c86b sas_phy_reset -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x5356a0ca sas_target_destroy -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x641db2aa sas_ssp_task_response -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x67990ebe sas_get_local_phy -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x73c8d17f sas_notify_port_event -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x7da88c4e dev_attr_phy_event_threshold -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x8c9db897 sas_change_queue_depth -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xbc72149c sas_ioctl -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xc5833420 sas_request_addr -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xcfb602fe sas_alloc_task -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xd39ae01a sas_unregister_ha -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xdd69ed15 sas_drain_work -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xdf0f80ec sas_eh_abort_handler -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xe72d96a8 sas_bios_param -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xe90b57ad sas_task_abort -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xfa02e8c7 sas_slave_configure -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xfba7380d sas_slave_alloc -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_fc 0xfce9bb3c fc_eh_should_retry_cmd -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x033b0b8e iscsi_remove_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x04092d5f iscsi_destroy_endpoint -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x0447b811 iscsi_register_transport -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x0736dd10 __tracepoint_iscsi_dbg_eh -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x0a149dcb iscsi_block_scsi_eh -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x145c90f9 iscsi_put_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x1d8ffe13 iscsi_get_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x213b6419 __traceiter_iscsi_dbg_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x2906029b __traceiter_iscsi_dbg_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x2c15b7a2 iscsi_session_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x2c28f70b iscsi_lookup_endpoint -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x312bccf4 iscsi_is_session_online -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x3785e561 __tracepoint_iscsi_dbg_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x39f95dcd iscsi_create_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x3b6976f5 iscsi_destroy_iface -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x40566f8d iscsi_destroy_flashnode_sess -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x409eddeb iscsi_unblock_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x4a0aeda0 iscsi_put_endpoint -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x4baabbc7 iscsi_free_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x4c597d2b iscsi_create_flashnode_sess -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x4cd65e1b iscsi_post_host_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x53196d91 iscsi_session_chkready -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 0x61d368f4 __traceiter_iscsi_dbg_eh -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x652b4055 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 0x6f8795f4 __traceiter_iscsi_dbg_sw_tcp -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x6fcc107d iscsi_find_flashnode_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x71b768b0 __SCK__tp_func_iscsi_dbg_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7433206d iscsi_destroy_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x75a331ef iscsi_create_flashnode_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x84a005f1 iscsi_get_router_state_name -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x85edf82a iscsi_get_port_speed_name -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x88768c48 __SCK__tp_func_iscsi_dbg_tcp -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x8bcc59b1 iscsi_conn_login_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x9c6efec9 iscsi_create_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa91d7ac5 iscsi_offload_mesg -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 0xac300645 iscsi_create_endpoint -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb3d745fc iscsi_recv_pdu -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb4bd9efd iscsi_alloc_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb8aeb5c1 iscsi_scan_finished -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xbb589d0d iscsi_get_port_state_name -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xbc071179 iscsi_get_ipaddress_state_name -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xbe219276 iscsi_unregister_transport -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xbebf7fc1 iscsi_find_flashnode_sess -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xc1d3c045 iscsi_destroy_all_flashnode -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xcee6834c iscsi_conn_error_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xcee879a2 __traceiter_iscsi_dbg_tcp -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xcfdc6ea5 iscsi_dbg_trace -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd2fc0aac iscsi_is_session_dev -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd4e55f1e __tracepoint_iscsi_dbg_sw_tcp -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd74ba5df iscsi_ping_comp_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe3a3a649 iscsi_flashnode_bus_match -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe4c79fa6 __SCK__tp_func_iscsi_dbg_eh -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xeb91f018 iscsi_force_destroy_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xee72b82f iscsi_create_iface -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf64aa8f5 iscsi_host_for_each_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf9668c80 iscsi_add_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x01a2e34c sas_tlr_supported -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x7e65ec15 sas_enable_tlr -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0xe3af43c6 sas_disable_tlr -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0xfec3c899 sas_is_tlr_enabled -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0x0ef06974 spi_populate_ppr_msg -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0xa0c71dac spi_populate_sync_msg -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0xcffa2aff spi_populate_width_msg -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0xdaf21cb8 spi_populate_tag_msg -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x1641506a srp_stop_rport_timers -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x1902178a srp_tmo_valid -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x2f233b12 srp_remove_host -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x7eddadf4 srp_rport_add -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x982f6221 srp_attach_transport -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xaa6dd1c1 srp_release_transport -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xf9d920bb srp_rport_del -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x1c7ed55f ufshcd_auto_hibern8_update -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x20a6f673 ufshcd_fixup_dev_quirks -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x29486ebc ufshcd_dealloc_host -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x29f890bd ufshcd_hba_enable -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x2bd98f84 ufshcd_dme_get_attr -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x30a01c2c ufshcd_query_attr -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x406d9564 ufshcd_update_evt_hist -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x64763c3b ufshcd_dme_set_attr -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x67030bf1 ufshcd_suspend_prepare -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x7008c092 ufshcd_resume_complete -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x723b1abf ufshcd_delay_us -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x8336c41b ufshcd_dme_configure_adapt -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x91854028 ufshcd_uic_hibern8_exit -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x9191ee47 ufshcd_hold -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x952eb6da ufshcd_remove -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0xc204679d ufshcd_make_hba_operational -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0xce6376c0 ufshcd_release -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0xd559cf31 ufshcd_query_descriptor_retry -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0xd6893251 ufshcd_init -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0xe87a2c21 ufshcd_config_pwr_mode -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0xf51283f7 ufshcd_hba_stop -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0xf9c974f0 ufshcd_link_recovery -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0xfa617d6b ufshcd_dump_regs -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x54c946de ufshcd_init_pwr_dev_param -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x59c8e886 ufshcd_pltfrm_shutdown -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x70a99dc0 ufshcd_pltfrm_init -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0xff85cd6b ufshcd_get_pwr_dev_param -EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x0317f72b siox_master_register -EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x0dd49ef8 siox_master_alloc -EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x481b47c0 siox_master_unregister -EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x99de0bf0 siox_device_connected -EXPORT_SYMBOL_GPL drivers/siox/siox-core 0xd7ed80aa __siox_driver_register -EXPORT_SYMBOL_GPL drivers/siox/siox-core 0xde198fa9 siox_device_synced -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x0ce48985 of_slim_get_device -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x165470aa __slim_driver_register -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x16f6f9c2 slim_readb -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x17161af2 slim_unregister_controller -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x253ee312 slim_alloc_txn_tid -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x32e6f9ff slim_ctrl_clk_pause -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x3cde2c2e slim_stream_allocate -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x49d1ca38 slim_write -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x5434169d slim_do_transfer -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x5cd37287 slim_report_absent -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x67a953da slim_writeb -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x6ac15d3f slim_driver_unregister -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x6cd809c5 slim_stream_enable -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x7fb35a71 slim_get_device -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x919340a1 slim_device_report_present -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xa58fcbf8 slim_stream_disable -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xb9c2b189 slim_register_controller -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xbe777a25 slim_stream_unprepare -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xc5ab5da7 slimbus_bus -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xc6e4eccd slim_stream_prepare -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xd1b7a056 slim_msg_response -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xde19edd6 slim_read -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xe8d9a313 slim_xfer_msg -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xf1c8fb30 slim_stream_free -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xf514fddd slim_get_logical_addr -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xf8ae16f9 slim_free_txn_tid -EXPORT_SYMBOL_GPL drivers/soc/amlogic/meson-canvas 0x18ef940e meson_canvas_get -EXPORT_SYMBOL_GPL drivers/soc/amlogic/meson-canvas 0x494128eb meson_canvas_alloc -EXPORT_SYMBOL_GPL drivers/soc/amlogic/meson-canvas 0x673c5a86 meson_canvas_config -EXPORT_SYMBOL_GPL drivers/soc/amlogic/meson-canvas 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 0x0f4f7912 dpaa2_io_service_register -EXPORT_SYMBOL_GPL drivers/soc/fsl/dpio/fsl-mc-dpio 0x1b7c4023 dpaa2_io_service_rearm -EXPORT_SYMBOL_GPL drivers/soc/fsl/dpio/fsl-mc-dpio 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 0xb35816ab dpaa2_io_store_create -EXPORT_SYMBOL_GPL drivers/soc/fsl/dpio/fsl-mc-dpio 0xb9e81961 dpaa2_io_query_fq_count -EXPORT_SYMBOL_GPL drivers/soc/fsl/dpio/fsl-mc-dpio 0xc376de1f dpaa2_io_service_deregister -EXPORT_SYMBOL_GPL drivers/soc/qcom/apr 0x313e9b9b apr_driver_unregister -EXPORT_SYMBOL_GPL drivers/soc/qcom/apr 0x7a5bf4db apr_send_pkt -EXPORT_SYMBOL_GPL drivers/soc/qcom/apr 0xd1c8a65b __apr_driver_register -EXPORT_SYMBOL_GPL drivers/soc/qcom/apr 0xf366e47e aprbus -EXPORT_SYMBOL_GPL drivers/soc/qcom/llcc-qcom 0x03c9a66d llcc_get_slice_size -EXPORT_SYMBOL_GPL drivers/soc/qcom/llcc-qcom 0x0679b34d llcc_slice_getd -EXPORT_SYMBOL_GPL drivers/soc/qcom/llcc-qcom 0x7e773088 llcc_get_slice_id -EXPORT_SYMBOL_GPL drivers/soc/qcom/llcc-qcom 0xad3516c4 llcc_slice_activate -EXPORT_SYMBOL_GPL drivers/soc/qcom/llcc-qcom 0xb534ec76 llcc_slice_deactivate -EXPORT_SYMBOL_GPL drivers/soc/qcom/llcc-qcom 0xb68b1300 llcc_slice_putd -EXPORT_SYMBOL_GPL drivers/soc/qcom/mdt_loader 0x0613bd89 qcom_mdt_load -EXPORT_SYMBOL_GPL drivers/soc/qcom/mdt_loader 0x26f53b40 qcom_mdt_load_no_init -EXPORT_SYMBOL_GPL drivers/soc/qcom/mdt_loader 0xa1c6a5b9 qcom_mdt_read_metadata -EXPORT_SYMBOL_GPL drivers/soc/qcom/mdt_loader 0xe8a3861c qcom_mdt_get_size -EXPORT_SYMBOL_GPL drivers/soundwire/soundwire-bus 0x97a74c55 __sdw_register_driver -EXPORT_SYMBOL_GPL drivers/soundwire/soundwire-bus 0xa80b352d sdw_unregister_driver -EXPORT_SYMBOL_GPL drivers/soundwire/soundwire-bus 0xb3101d5e sdw_bus_type -EXPORT_SYMBOL_GPL drivers/soundwire/soundwire-cadence 0x63eb58c5 sdw_cdns_debugfs_init -EXPORT_SYMBOL_GPL drivers/spi/spi-altera-core 0x8e82af3d altera_spi_init_master -EXPORT_SYMBOL_GPL drivers/spi/spi-altera-core 0xb9edd149 altera_spi_irq -EXPORT_SYMBOL_GPL drivers/spi/spi-bcm-qspi 0x360a6c40 bcm_qspi_probe -EXPORT_SYMBOL_GPL drivers/spi/spi-bcm-qspi 0x3a275d3f bcm_qspi_remove -EXPORT_SYMBOL_GPL drivers/spi/spi-bcm-qspi 0xb718f501 bcm_qspi_pm_ops -EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x0a8dbf71 spi_bitbang_setup -EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x0b6b83f7 spi_bitbang_setup_transfer -EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x2a78fb6b spi_bitbang_init -EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x829eb9ff spi_bitbang_cleanup -EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x9556f7f6 spi_bitbang_stop -EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xfee9928f spi_bitbang_start -EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x32d6bdb5 dw_spi_suspend_host -EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x3ecb574d dw_spi_dma_setup_generic -EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x5886b29e dw_spi_set_cs -EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x63c2d968 dw_spi_check_status -EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x6f9a3177 dw_spi_dma_setup_mfld -EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x82d8ffa3 dw_spi_remove_host -EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0xa7d34fa0 dw_spi_add_host -EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0xbd4e12d7 dw_spi_resume_host -EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0xfafcf98c dw_spi_update_config -EXPORT_SYMBOL_GPL drivers/spi/spi-loopback-test 0x6196c795 spi_test_run_tests -EXPORT_SYMBOL_GPL drivers/spi/spi-loopback-test 0x82b1e3ce spi_test_execute_msg -EXPORT_SYMBOL_GPL drivers/spi/spi-loopback-test 0xf788d2be spi_test_run_test -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x175791a0 spmi_ext_register_read -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x2c6db88e spmi_device_add -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x348a2d0c spmi_controller_add -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x43a074de spmi_device_alloc -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x4a80115b spmi_controller_remove -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x4b5251ba spmi_command_wakeup -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x4c7dfe74 spmi_controller_alloc -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x56147191 spmi_ext_register_writel -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x8c9f34fb spmi_command_sleep -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x95098c76 spmi_ext_register_readl -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x967c5e28 spmi_register_read -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xa2a011ba spmi_command_reset -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xa9196fca spmi_register_zero_write -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xb49814b4 spmi_device_remove -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xb804977e spmi_command_shutdown -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xc2d113f3 __spmi_driver_register -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xc3007f0f spmi_ext_register_write -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xdb2825ef spmi_register_write -EXPORT_SYMBOL_GPL drivers/ssb/ssb 0xa6959caf ssb_pmu_spuravoid_pllupdate -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x3399e55d anybuss_write_input -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x4ee9f749 anybuss_set_power -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x5446d6b8 anybuss_read_output -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x544d4895 anybuss_client_driver_unregister -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x7ee8cedf anybuss_send_ext -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x87532012 anybuss_start_init -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x8b3ce88a anybuss_send_msg -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x91546775 devm_anybuss_host_common_probe -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0xb1b81d02 anybuss_client_driver_register -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0xb628bd28 anybuss_host_common_probe -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0xbb7006f4 anybuss_read_fbctrl -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0xc3e63494 anybuss_finish_init -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0xe8869e4a 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 0x2cbd84f6 fieldbus_dev_unregister -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0x934dd362 fieldbus_dev_register -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0x9665dc7c fieldbus_dev_area_updated -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0xdc3f11a2 fieldbus_dev_online_changed -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x0e5a6616 gb_audio_apbridgea_register_cport -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x1fd66915 gb_audio_apbridgea_set_config -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x2b7916bf gb_audio_apbridgea_prepare_tx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x34e02b22 gb_audio_apbridgea_shutdown_tx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x3e25bc9c gb_audio_apbridgea_stop_rx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x41b74dac gb_audio_apbridgea_unregister_cport -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x7b3de006 gb_audio_apbridgea_set_tx_data_size -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x827121d7 gb_audio_apbridgea_start_tx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xa05b248b gb_audio_apbridgea_stop_tx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xaa9eb335 gb_audio_apbridgea_shutdown_rx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xb5078ea8 gb_audio_apbridgea_prepare_rx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xd23f0630 gb_audio_apbridgea_start_rx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xe70f9942 gb_audio_apbridgea_set_rx_data_size -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x37b0adf4 gb_audio_gb_set_tx_data_size -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x3cbbe340 gb_audio_gb_set_rx_data_size -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x3e961a7c gb_audio_gb_set_pcm -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x40e2f8dd gb_audio_gb_set_control -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x658e1fd9 gb_audio_gb_enable_widget -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x67ba0d0e gb_audio_gb_activate_tx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x6cacf7d1 gb_audio_gb_get_control -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x6e93902d gb_audio_gb_deactivate_tx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xad0ecefd gb_audio_gb_get_pcm -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xb0da771a gb_audio_gb_activate_rx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xb9f3ea39 gb_audio_gb_deactivate_rx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xc4a535bf gb_audio_gb_disable_widget -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xcbabc93b gb_audio_gb_get_topology -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-manager 0x19e9e6b1 gb_audio_manager_remove_all -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-manager 0x32e6391e gb_audio_manager_remove -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-manager 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 0xb2a9b53f gb_audio_manager_get_module -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-manager 0xf5316a30 gb_audio_manager_put_module -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-gbphy 0x3c5659c5 gb_gbphy_register_driver -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-gbphy 0xa3554fb7 gb_gbphy_deregister_driver -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-spilib 0x6994c872 gb_spilib_master_exit -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-spilib 0xca47ac0c gb_spilib_master_init -EXPORT_SYMBOL_GPL drivers/staging/iio/addac/adt7316 0x0799af23 adt7316_pm_ops -EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x0c3eae15 imx_media_capture_device_remove -EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x12f5278f imx_media_dev_init -EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x243c5e14 imx_media_capture_device_unregister -EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x345fe1e0 imx_media_dev_notifier_register -EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x35e1e997 imx_media_add_video_device -EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x3afc4948 imx_media_find_pixel_format -EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x416a120c imx_media_add_of_subdevs -EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x422634d4 imx_media_pipeline_csi2_channel -EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x4623d94f imx_media_find_subdev_by_fwnode -EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x46316671 imx_media_pipeline_set_stream -EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x46f7dabe imx_media_pipeline_video_device -EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x486e2a22 imx_media_pipeline_pad -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 0x59e87be2 imx_media_pipeline_subdev -EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x5c4e7734 imx_media_alloc_dma_buf -EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x5f17b039 imx_media_probe_complete -EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x71c07346 imx_media_capture_device_error -EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x76b9e43a imx_media_free_dma_buf -EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x8ab8b26b imx_media_capture_device_register -EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x8ac46902 imx_media_get_pad_fwnode -EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x8e4f99ec imx_media_init_cfg -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 0xae1899b3 imx_media_capture_device_next_buf -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 0xc68651d6 imx_media_of_add_csi -EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0xcc42dbf5 imx_media_find_subdev_by_devname -EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0xccf6ac8d imx_media_capture_device_init -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 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 0x08239015 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 0x16df2cfb amvdec_read_parser -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x1cb1e6d9 amvdec_am21c_size -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x1d29e97d amvdec_remove_ts -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x1e54b885 amvdec_read_dos -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x28dd432f amvdec_add_ts -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x2faa32b9 codec_hevc_free_fbc_buffers -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x30a7e9b5 amvdec_write_dos_bits -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x48f4d24b amvdec_dst_buf_done_offset -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x4fd8450d amvdec_dst_buf_done_idx -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x5fd6509a amvdec_set_canvases -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 0x625bc2de amvdec_dst_buf_done -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x6eab7cf2 amvdec_write_parser -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x828cca12 amvdec_clear_dos_bits -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x9572a9e6 amvdec_get_output_size -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x9c46b50a amvdec_write_dos -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xa2ab6ae9 codec_hevc_free_mmu_headers -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xb06ab6de codec_hevc_setup_buffers -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xb5f24f63 amvdec_set_par_from_dar -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xd840fed8 codec_hevc_fill_mmu_map -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xda4b0b35 codec_hevc_setup_decode_head -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xfc620613 amvdec_src_change -EXPORT_SYMBOL_GPL drivers/staging/nvec/nvec 0x7003e917 nvec_register_notifier -EXPORT_SYMBOL_GPL drivers/staging/nvec/nvec 0x95018694 nvec_msg_free -EXPORT_SYMBOL_GPL drivers/staging/nvec/nvec 0xa7ec5fae nvec_unregister_notifier -EXPORT_SYMBOL_GPL drivers/staging/vc04_services/vchiq-mmal/bcm2835-mmal-vchiq 0x09d94f5f vchiq_mmal_submit_buffer -EXPORT_SYMBOL_GPL drivers/staging/vc04_services/vchiq-mmal/bcm2835-mmal-vchiq 0x15c8fc00 vchiq_mmal_port_enable -EXPORT_SYMBOL_GPL drivers/staging/vc04_services/vchiq-mmal/bcm2835-mmal-vchiq 0x22ec1b65 mmal_vchi_buffer_init -EXPORT_SYMBOL_GPL drivers/staging/vc04_services/vchiq-mmal/bcm2835-mmal-vchiq 0x29c1d88f vchiq_mmal_port_parameter_get -EXPORT_SYMBOL_GPL drivers/staging/vc04_services/vchiq-mmal/bcm2835-mmal-vchiq 0x3a9c2d51 mmal_vchi_buffer_cleanup -EXPORT_SYMBOL_GPL drivers/staging/vc04_services/vchiq-mmal/bcm2835-mmal-vchiq 0x5a5f8518 vchiq_mmal_component_init -EXPORT_SYMBOL_GPL drivers/staging/vc04_services/vchiq-mmal/bcm2835-mmal-vchiq 0x61584ab5 vchiq_mmal_port_disable -EXPORT_SYMBOL_GPL drivers/staging/vc04_services/vchiq-mmal/bcm2835-mmal-vchiq 0x6192e1a2 vchiq_mmal_version -EXPORT_SYMBOL_GPL drivers/staging/vc04_services/vchiq-mmal/bcm2835-mmal-vchiq 0x6b6782e7 vchiq_mmal_component_finalise -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 0x8f66c7bc vchiq_mmal_port_connect_tunnel -EXPORT_SYMBOL_GPL drivers/staging/vc04_services/vchiq-mmal/bcm2835-mmal-vchiq 0xa35d3c91 vchiq_mmal_port_set_format -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 0xc4144860 vchiq_mmal_component_enable -EXPORT_SYMBOL_GPL drivers/staging/vc04_services/vchiq-mmal/bcm2835-mmal-vchiq 0xcd7d0e5f vchiq_mmal_port_parameter_set -EXPORT_SYMBOL_GPL drivers/staging/vc04_services/vchiq-mmal/bcm2835-mmal-vchiq 0xeb110d72 vchiq_mmal_component_disable -EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0xba1da29f target_queue_submission -EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0xe3c671ce target_init_cmd -EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0xe4d6bbb6 target_submit_prep -EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0xe6dfe838 target_submit -EXPORT_SYMBOL_GPL drivers/tee/tee 0x0cd9ca4f tee_shm_pool_free -EXPORT_SYMBOL_GPL drivers/tee/tee 0x12935908 tee_shm_free -EXPORT_SYMBOL_GPL drivers/tee/tee 0x1348569f tee_shm_alloc_kernel_buf -EXPORT_SYMBOL_GPL drivers/tee/tee 0x14eef2ef tee_shm_get_pa -EXPORT_SYMBOL_GPL drivers/tee/tee 0x19016562 teedev_open -EXPORT_SYMBOL_GPL drivers/tee/tee 0x293eecd8 tee_get_drvdata -EXPORT_SYMBOL_GPL drivers/tee/tee 0x3b149e1e tee_shm_register -EXPORT_SYMBOL_GPL drivers/tee/tee 0x4a90005e tee_client_close_session -EXPORT_SYMBOL_GPL drivers/tee/tee 0x52b165c5 tee_shm_put -EXPORT_SYMBOL_GPL drivers/tee/tee 0x5bcf8c3c tee_client_get_version -EXPORT_SYMBOL_GPL drivers/tee/tee 0x60f616d3 tee_client_close_context -EXPORT_SYMBOL_GPL drivers/tee/tee 0x704f73e9 tee_shm_pa2va -EXPORT_SYMBOL_GPL drivers/tee/tee 0x7082962f tee_shm_get_from_id -EXPORT_SYMBOL_GPL drivers/tee/tee 0x799b7eb1 tee_shm_va2pa -EXPORT_SYMBOL_GPL drivers/tee/tee 0x7fc2bc7f tee_device_alloc -EXPORT_SYMBOL_GPL drivers/tee/tee 0x85fd9922 tee_session_calc_client_uuid -EXPORT_SYMBOL_GPL drivers/tee/tee 0x94ea4b9e tee_device_register -EXPORT_SYMBOL_GPL drivers/tee/tee 0x9b9ab5c0 tee_shm_alloc -EXPORT_SYMBOL_GPL drivers/tee/tee 0x9bc2c515 tee_bus_type -EXPORT_SYMBOL_GPL drivers/tee/tee 0xb8fbb8ec teedev_close_context -EXPORT_SYMBOL_GPL drivers/tee/tee 0xc6c3bcf8 tee_client_open_session -EXPORT_SYMBOL_GPL drivers/tee/tee 0xc9df589c tee_client_open_context -EXPORT_SYMBOL_GPL drivers/tee/tee 0xd0a39b8d tee_shm_pool_alloc -EXPORT_SYMBOL_GPL drivers/tee/tee 0xd2ffa146 tee_shm_pool_mgr_alloc_res_mem -EXPORT_SYMBOL_GPL drivers/tee/tee 0xdf893185 tee_shm_pool_alloc_res_mem -EXPORT_SYMBOL_GPL drivers/tee/tee 0xe7a312af tee_device_unregister -EXPORT_SYMBOL_GPL drivers/tee/tee 0xf872966a tee_client_invoke_func -EXPORT_SYMBOL_GPL drivers/tee/tee 0xfe24deab tee_shm_get_va -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x01d23ee1 tb_property_create_dir -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x025351c5 tb_xdomain_enable_paths -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x0a4290cb tb_ring_poll_complete -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x0e75ecec tb_xdomain_find_by_uuid -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x1478b09a tb_ring_stop -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x160a0236 tb_xdomain_lane_bonding_disable -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x2b839827 tb_xdomain_release_in_hopid -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x393b4f2f tb_property_free_dir -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x44309131 tb_ring_free -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x4e5064a7 tb_property_find -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x4e64bdfd tb_register_protocol_handler -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x5dafca04 tb_xdomain_alloc_out_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 0x686c542c tb_service_type -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x71cae7d1 tb_register_service_driver -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 0x8633be19 tb_xdomain_type -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x86d8b5f9 tb_ring_alloc_tx -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x8b62f95e tb_property_add_dir -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x90c46710 tb_ring_alloc_rx -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x94594288 tb_xdomain_release_out_hopid -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x97936edd tb_ring_start -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xa3d2b403 tb_property_add_data -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xa5d75580 tb_xdomain_lane_bonding_enable -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xb7c7cdce tb_property_add_text -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xbfc6c724 tb_unregister_service_driver -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xc150676c __tb_ring_enqueue -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xc891331e tb_xdomain_disable_paths -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xcd2f812a tb_xdomain_request -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xcf75eb0c tb_ring_poll -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xd12b9254 tb_xdomain_alloc_in_hopid -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xd48881f9 tb_xdomain_find_by_route -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xde2bfe6d tb_xdomain_response -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 0x0c1dd7a5 __uio_register_device -EXPORT_SYMBOL_GPL drivers/uio/uio 0x1f68c421 uio_unregister_device -EXPORT_SYMBOL_GPL drivers/uio/uio 0xbb4494a0 uio_event_notify -EXPORT_SYMBOL_GPL drivers/uio/uio 0xc4123007 __devm_uio_register_device -EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0x6c8b3e87 usbatm_usb_disconnect -EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0x7378bd78 usbatm_usb_probe -EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x02e124e3 cdns_remove -EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x0cb7e35b cdns_init -EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x2b5d4441 cdns_resume -EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x68328231 cdns_set_vbus -EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x6f7a920b cdns_suspend -EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x7cae1851 cdns_power_is_lost -EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0xa47d91f9 cdns_drd_gadget_on -EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0xb7b8f1b2 cdns_clear_vbus -EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0xd1be5849 cdns_drd_gadget_off -EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0x2de09ba0 ci_hdrc_query_available_role -EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0x5b7afe14 hw_phymode_configure -EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0x6c63ce38 ci_hdrc_remove_device -EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0x7c548019 ci_hdrc_add_device -EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0x08e4cdc6 imx_usbmisc_hsic_set_connect -EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0x1b0080dd imx_usbmisc_hsic_set_clk -EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0x1da1e8b7 imx_usbmisc_charger_detection -EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0x1de22bb3 imx_usbmisc_set_wakeup -EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0x269756fc imx_usbmisc_init_post -EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0x81502783 imx_usbmisc_init -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x1fc3c07e ulpi_unregister_driver -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x32da1dbc ulpi_write -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x59c56138 ulpi_read -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0xafac880f ulpi_register_interface -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0xc3e51571 ulpi_unregister_interface -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0xd8ad6aca __ulpi_register_driver -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x027fc62b g_audio_setup -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x2f07e9b9 u_audio_get_mute -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x31fc693c u_audio_start_playback -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x53181283 u_audio_get_volume -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x595e5ef8 u_audio_stop_playback -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x961f468c u_audio_set_volume -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0xbc547311 u_audio_stop_capture -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0xc3d04fc3 u_audio_start_capture -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0xc8362823 u_audio_set_mute -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0xf478b649 g_audio_cleanup -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x000b85ca gether_set_ifname -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x0fadf192 gether_set_dev_addr -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x25c6f664 gether_get_dev_addr -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x2933940b gether_get_host_addr_cdc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x3afa23a2 gether_register_netdev -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x4fbc4590 gether_connect -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x5908356b gether_set_gadget -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x5efca297 gether_setup_name -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x6e4e629e gether_get_host_addr_u8 -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x7ca4062c gether_disconnect -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x8878cfa6 gether_cleanup -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x9a4aaa69 gether_get_host_addr -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xc24c39a1 gether_get_qmult -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xcceadf8c gether_set_host_addr -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xd7b4e3d0 gether_get_ifname -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xeae35635 gether_setup_name_default -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xf4d36d52 gether_set_qmult -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x058c7929 gserial_suspend -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x33bfdca2 gserial_alloc_line -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x4058c88b 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 0x8fa46777 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 0xc3a14f7a gserial_disconnect -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xe89dc424 gserial_alloc_line_no_console -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_accessory 0x240cfdd3 acc_ctrlrequest -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_accessory 0x3980acd8 acc_disconnect -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0x11064b25 ffs_name_dev -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0x7c3b9e4a ffs_single_dev -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0x88afe536 ffs_lock -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x0126de6b fsg_lun_open -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x0a8b1758 fsg_lun_fsync_sub -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x12a6d1be fsg_show_removable -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x141fce2a fsg_common_remove_luns -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x151d861d fsg_common_remove_lun -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 0x2aadb13b fsg_show_nofua -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x2b34a44d fsg_lun_close -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x30a9810d 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 0x3f0d3d91 fsg_show_ro -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 0x439dd99a fsg_store_nofua -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x56344daf fsg_hs_bulk_out_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x62f8bf2c fsg_show_inquiry_string -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 0x73d43e41 fsg_show_cdrom -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x77d818b6 fsg_store_inquiry_string -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x7e26d4a5 fsg_common_set_sysfs -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x857b6dc2 fsg_hs_function -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x95cffb3e fsg_hs_bulk_in_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x990fcd9f fsg_show_file -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x9a0221c7 fsg_common_free_buffers -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 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 0xd1a3e8e0 fsg_common_create_luns -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xe103de17 fsg_store_ro -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xef18674c fsg_common_set_cdev -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xf4efc0c8 fsg_ss_bulk_out_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xf8919362 fsg_store_file -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xfaa98b55 fsg_store_removable -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x0a3c4e2f rndis_set_host_mac -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x15989ac0 rndis_set_param_dev -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x1f24efd7 rndis_msg_parser -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x1faad598 rndis_deregister -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x23ab60b5 rndis_uninit -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x37ed6e12 rndis_get_next_response -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x4bd1be9f rndis_set_param_medium -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x6cd515d0 rndis_set_param_vendor -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x7b00b687 rndis_free_response -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x9562d22b rndis_signal_disconnect -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xad2b4d17 rndis_register -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xb169e2b8 rndis_add_hdr -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xb74cf77c rndis_borrow_net -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xbd28bafa rndis_rm_hdr -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xcabe4298 rndis_signal_connect -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x0b593224 usb_string_ids_tab -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x0c073506 usb_assign_descriptors -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 0x19ccda30 usb_composite_setup_continue -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x26665a69 usb_string_id -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x2e09263f usb_copy_descriptors -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x2f9608ad usb_function_deactivate -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x3f1d414b usb_add_function -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x409908d4 unregister_gadget_item -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x415d54ad usb_otg_descriptor_init -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x4beb505d usb_gadget_get_string -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x5a212641 usb_composite_unregister -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x62d91d36 usb_free_all_descriptors -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x6ec8ff23 config_ep_by_speed_and_alt -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x706b5e6b usb_ep_autoconfig_reset -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x74f8bbae usb_function_activate -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x7e9fc682 usb_ep_autoconfig -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x809e086c usb_string_ids_n -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x90b3ed84 usb_get_function -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x948e3150 usb_ep_autoconfig_ss -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x9dfc4554 config_ep_by_speed -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xa54c810f usb_get_function_instance -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xaa95eadd usb_put_function -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xabaca1ac usb_composite_overwrite_options -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xb4a25b30 usb_remove_function -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xb775db55 alloc_ep_req -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xba3be92b usb_interface_id -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xc6ba7d67 usb_add_config -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xd1670dd5 usb_composite_probe -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xd1bd1408 usb_otg_descriptor_alloc -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xd2ea2134 usb_descriptor_fillbuf -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xd3e1be6b usb_add_config_only -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xdae4932b usb_put_function_instance -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xdc308c54 usb_function_unregister -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xf474a207 usb_gadget_config_buf -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xf7533aaf usb_function_register -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xf91d22e8 usb_gstrings_attach -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x260ef15d init_dma_pools -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x3df06987 udc_remove -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x47827dcd gadget_release -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x5d01d078 udc_irq -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x73142728 udc_enable_dev_setup_interrupts -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x9dc0d924 udc_probe -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0xaa90f8a3 empty_req_queue -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0xc3836633 udc_mask_unused_interrupts -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0xee681b90 free_dma_pools -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0xf6b29d5a udc_basic_init -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x01b12bfb usb_ep_free_request -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x04711102 usb_add_gadget_udc -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x06933a85 usb_gadget_disconnect -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 0x0b42b1ac usb_gadget_set_state -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x0d1311d7 usb_gadget_activate -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x0d90d784 usb_ep_fifo_flush -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x0dd74d11 usb_gadget_vbus_disconnect -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x126289de gadget_find_ep_by_name -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x18d46924 usb_gadget_clear_selfpowered -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x25685f3b usb_gadget_set_selfpowered -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x29d9279c usb_initialize_gadget -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x30286b39 usb_add_gadget_udc_release -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x35fb83d6 usb_gadget_ep_match_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x4902e3e2 usb_gadget_vbus_connect -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x49d9f030 usb_ep_fifo_status -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x4f0becee usb_gadget_deactivate -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 0x708fd904 usb_gadget_check_config -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 0x874f8755 usb_del_gadget -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x882077d5 usb_ep_dequeue -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x91ec65d7 usb_gadget_unregister_driver -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x9c70ca14 usb_gadget_probe_driver -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x9eb52803 usb_ep_disable -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x9f2c395f usb_udc_vbus_handler -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xa889afb4 usb_gadget_map_request_by_dev -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 0xafd6e67c usb_gadget_connect -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xb341136b usb_gadget_vbus_draw -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xbbeb5b0d usb_gadget_udc_reset -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xca1fd7bc usb_gadget_map_request -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xccc0d3e0 usb_gadget_unmap_request_by_dev -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xd1d4902a usb_add_gadget -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xd384d7ad usb_gadget_unmap_request -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xe0d54d0d usb_gadget_wakeup -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xefecbd75 usb_del_gadget_udc -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xf40d4b4a usb_gadget_set_remote_wakeup -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xff16ad9c usb_gadget_frame_number -EXPORT_SYMBOL_GPL drivers/usb/host/xhci-pci-renesas 0x6bfd9f16 renesas_xhci_check_request_fw -EXPORT_SYMBOL_GPL drivers/usb/misc/ezusb 0xb55744d8 ezusb_fx1_set_reset -EXPORT_SYMBOL_GPL drivers/usb/misc/ezusb 0xb5df8256 ezusb_fx1_ihex_firmware_download -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x11c5609f usb_ftdi_elan_edset_empty -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x12021f7c usb_ftdi_elan_edset_output -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x301619cd usb_ftdi_elan_edset_single -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x354a36ec usb_ftdi_elan_read_pcimem -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x4d391126 usb_ftdi_elan_edset_setup -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x8358231f usb_ftdi_elan_edset_flush -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xc9dcd64f ftdi_elan_gone_away -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xcf964054 usb_ftdi_elan_write_pcimem -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xf0e4c02d usb_ftdi_elan_edset_input -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x09492220 musb_mailbox -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x0b4a8834 musb_writeb -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x160d3fa7 musb_interrupt -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x1f8d7c7f musb_set_peripheral -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 0xade3e56c musb_writew -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0xb7209fc2 musb_set_host -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0xd28c6a05 musb_root_disconnect -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0xe59efb0e musb_clearb -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0xecd56c79 musb_get_mode -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0xf0f95e51 musb_readl -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0xf75bd40b musb_queue_resume_work -EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0x2341e089 usb_phy_generic_unregister -EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0x2c7a2809 usb_gen_phy_init -EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0x4a6c970a usb_gen_phy_shutdown -EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0xace02c0a usb_phy_generic_register -EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0xc496de89 usb_phy_gen_create_phy -EXPORT_SYMBOL_GPL drivers/usb/phy/phy-isp1301 0xbfdc88be isp1301_get_client -EXPORT_SYMBOL_GPL drivers/usb/phy/phy-tegra-usb 0x41dddcb0 tegra_ehci_phy_restore_end -EXPORT_SYMBOL_GPL drivers/usb/phy/phy-tegra-usb 0x592a7bc2 tegra_ehci_phy_restore_start -EXPORT_SYMBOL_GPL drivers/usb/phy/phy-tegra-usb 0x9d67a10a tegra_usb_phy_preresume -EXPORT_SYMBOL_GPL drivers/usb/phy/phy-tegra-usb 0xcefebbd7 tegra_usb_phy_postresume -EXPORT_SYMBOL_GPL drivers/usb/serial/usb_wwan 0x8a6c5e67 usb_wwan_port_probe -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x09c19ebb usb_serial_generic_read_bulk_callback -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x113cf27a usb_serial_deregister_drivers -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x143a0573 usb_serial_generic_close -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x1c0ce2ab usb_serial_generic_write_bulk_callback -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x205fcad0 usb_serial_generic_unthrottle -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x415da265 usb_serial_generic_process_read_urb -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x5e95e6b7 usb_serial_generic_get_icount -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x639aad16 usb_serial_generic_write -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x7494442c usb_serial_register_drivers -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x80b416c0 usb_serial_generic_open -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x9852fe3d usb_serial_generic_wait_until_sent -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xae24b392 usb_serial_generic_tiocmiwait -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xb4063d21 usb_serial_port_softint -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xc144aa27 usb_serial_generic_write_start -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xc456a923 usb_serial_handle_dcd_change -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xe277b328 usb_serial_generic_chars_in_buffer -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xe70f8f25 usb_serial_generic_throttle -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xe77e06c2 usb_serial_claim_interface -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xee0b159c usb_serial_generic_submit_read_urbs -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xf10f52cf usb_serial_generic_resume -EXPORT_SYMBOL_GPL drivers/usb/typec/altmodes/typec_displayport 0x11df76b9 dp_altmode_remove -EXPORT_SYMBOL_GPL drivers/usb/typec/altmodes/typec_displayport 0xf18c4375 dp_altmode_probe -EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpci 0x319081e8 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 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 0xa0a6244b tcpm_register_port -EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 0xb655342c tcpm_pd_receive -EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 0xc37b9769 tcpm_cc_change -EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 0xceb50012 tcpm_vbus_change -EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 0xea220941 tcpm_tcpc_reset -EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 0xeb779665 tcpm_sourcing_vbus -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x002e1751 typec_unregister_altmode -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x0638696c typec_altmode_get_partner -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x0e6fba77 typec_set_mode -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x120dccc5 typec_unregister_cable -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x137e7a49 fwnode_typec_switch_get -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x18a0a3b8 typec_unregister_partner -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x1a55d4ee typec_register_partner -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x1b502331 typec_unlink_port -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x1c4c0a79 typec_partner_set_identity -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x230156a7 typec_switch_put -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x276a15a3 typec_set_pwr_opmode -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x2d1e301d typec_find_power_role -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x337e8e38 typec_cable_get -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x37a79633 typec_switch_register -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x4297c2d4 typec_port_register_altmodes -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x42e22afe typec_cable_is_active -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x4a601554 typec_unregister_port -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x52dc8008 typec_get_orientation -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x549f5ec5 typec_altmode_get_plug -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x5993d485 typec_altmode_unregister_driver -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x5e25c174 typec_switch_get_drvdata -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x5e3f1716 typec_mux_set -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x60c53217 typec_match_altmode -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x655e951c typec_partner_set_num_altmodes -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x6ccfb54c typec_switch_set_drvdata -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x6e803925 typec_switch_set -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x70e88d5d typec_register_plug -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x72af7be7 typec_altmode_notify -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x72bbfdca typec_mux_unregister -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x755f1478 typec_altmode2port -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x76d35c47 __typec_altmode_register_driver -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x77e2cf6d typec_partner_set_pd_revision -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x78b6e219 typec_get_fw_cap -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x791e4b7b typec_partner_set_svdm_version -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x7f26393e typec_plug_set_num_altmodes -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x7f7276b7 typec_set_orientation -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x8013e909 typec_altmode_vdm -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x8f1cdb3d typec_altmode_attention -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x8f2d120e typec_get_drvdata -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x9049491e typec_find_port_data_role -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x916cb616 typec_get_negotiated_svdm_version -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x91dacdab typec_altmode_update_active -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x93bed54a typec_cable_put -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x9caf8467 typec_mux_register -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x9ea8deaf typec_altmode_exit -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x9fc859e9 typec_unregister_plug -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xa254de98 typec_find_orientation -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xa3fbdede typec_port_register_altmode -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xac0de34f typec_altmode_enter -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xad2b4488 typec_link_port -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xb1907717 typec_mux_set_drvdata -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xb21543fb typec_plug_register_altmode -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xb40fee6c typec_mux_put -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xc3d3a363 typec_register_port -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xd78733a1 typec_cable_set_identity -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xe10d1a87 typec_set_vconn_role -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xe5b4952f typec_register_cable -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xe7269c5a typec_set_pwr_role -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xeafc1eb8 typec_find_port_power_role -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xeca4ce6b typec_set_data_role -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xf08cbc8f typec_partner_register_altmode -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xf1234a8b typec_find_pwr_opmode -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xf30256c9 typec_switch_unregister -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xf33e1177 typec_altmode_put_plug -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xf64c8ede fwnode_typec_mux_get -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xfd143888 typec_mux_get_drvdata -EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x08a69848 ucsi_destroy -EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x18608fc6 ucsi_create -EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x18aaebbc ucsi_send_command -EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x32e73ac2 ucsi_register -EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x7c89a044 ucsi_get_drvdata -EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0xa0e61b2a ucsi_unregister -EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0xc2bed03b ucsi_connector_change -EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0xd1b76a5d ucsi_set_drvdata -EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0xf54f41cc ucsi_resume -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x13c9da2b usbip_event_happened -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x13f8c1ba dev_attr_usbip_debug -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x20aaf74f usbip_stop_eh -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x41c524aa usbip_event_add -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x51f0b1cc usbip_pack_pdu -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x6fe30d17 usbip_recv -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x78b72f44 usbip_debug_flag -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x9d43b84c usbip_recv_iso -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xd02753dc usbip_header_correct_endian -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xe1ad8b01 usbip_pad_iso -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xe1ea0586 usbip_dump_header -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xe203f099 usbip_in_eh -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xed653f6c usbip_dump_urb -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xef13c656 usbip_start_eh -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xf05c2e2d usbip_recv_xbuff -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xfbb22c4e usbip_alloc_iso_desc_pdu -EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x4cb2f506 __vdpa_register_driver -EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x5bb2217a vdpa_mgmtdev_unregister -EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x60638b61 vdpa_mgmtdev_register -EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x6c7ee489 __vdpa_alloc_device -EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x87a14e1c vdpa_unregister_device -EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x902b8c24 vdpa_register_device -EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0xb26680f2 _vdpa_unregister_device -EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0xc0d81025 vdpa_unregister_driver -EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0xc610dbfc _vdpa_register_device -EXPORT_SYMBOL_GPL drivers/vdpa/vdpa_sim/vdpa_sim 0xaa47c911 vdpasim_create -EXPORT_SYMBOL_GPL drivers/vfio/mdev/mdev 0xeb1725b8 mdev_bus_type -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x2969a589 vfio_pci_core_write -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x343a3f48 vfio_pci_core_close_device -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x421d8c32 vfio_pci_core_disable -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x4cf699b8 vfio_pci_core_set_params -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x4f79c22c vfio_pci_core_register_device -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x5d4fc990 vfio_pci_core_uninit_device -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x5fe8a69d vfio_pci_core_request -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x779d1abf vfio_pci_core_unregister_device -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x8096996f vfio_pci_core_init_device -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x8256209c vfio_pci_core_sriov_configure -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x8abd8924 vfio_pci_core_read -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x990ba07b vfio_pci_core_mmap -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x9e803aa9 vfio_pci_core_enable -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xa3ce5a2c vfio_pci_core_finish_enable -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xafa6783e vfio_pci_core_ioctl -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xd59c7a4f vfio_pci_register_dev_region -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xda3dc24d vfio_pci_core_match -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xe36e11d1 vfio_pci_core_err_handlers -EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0x6f329f0f __vfio_platform_register_reset -EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0x794a4b82 vfio_platform_unregister_reset -EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0xbd30b044 vfio_platform_remove_common -EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0xf0929764 vfio_platform_probe_common -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x02809d52 vfio_external_group_match_file -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x1a99dccc vfio_iommu_group_put -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x26393fe3 vfio_unregister_group_dev -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x3567743b vfio_external_user_iommu_id -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x3f12182d vfio_device_get_from_dev -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x5a519ef3 vfio_register_iommu_driver -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 0x65b3db4f vfio_group_get_external_user -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x7d97c302 vfio_assign_device_set -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x823c2539 vfio_unregister_iommu_driver -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x88fd86b8 vfio_iommu_group_get -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x8b45ac6b vfio_group_get_external_user_from_dev -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x9c057760 vfio_device_put -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x9d0f1e9b vfio_register_group_dev -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xbc70d038 vfio_init_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 0xdadd65b0 vfio_group_iommu_domain -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xe282a790 vfio_uninit_group_dev -EXPORT_SYMBOL_GPL drivers/vfio/vfio_virqfd 0x60a3ae9a vfio_virqfd_enable -EXPORT_SYMBOL_GPL drivers/vfio/vfio_virqfd 0x7b4dc57c vfio_virqfd_disable -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x098412aa vhost_chr_read_iter -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x0ece43f9 vhost_log_access_ok -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x1c4e9c88 vhost_add_used_n -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x1e2b6ca5 vhost_dequeue_msg -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x20ebcf39 vhost_dev_set_owner -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x21ec6ce6 vhost_work_queue -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x2c01215c vq_meta_prefetch -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x2c06f430 vhost_has_work -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x311dc3fb vhost_clear_msg -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x36cd696e vhost_dev_reset_owner -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x36ed569e vhost_get_vq_desc -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x42bc1d8e vhost_poll_start -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x44dff5a1 vhost_add_used -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x49dc9ac1 vhost_exceeds_weight -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x56adadf8 vhost_vq_init_access -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x59da2562 vhost_poll_init -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x70fb2384 vhost_work_dev_flush -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x7a4c63d6 vhost_enable_notify -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x7bdedd4e vhost_add_used_and_signal_n -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x80599a95 vhost_add_used_and_signal -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x86ca8cf6 vhost_set_backend_features -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x91b6c096 vhost_dev_stop -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x95765e72 vhost_discard_vq_desc -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xa25906aa vhost_enqueue_msg -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xa79285a7 vhost_vq_avail_empty -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xa909cfc5 vhost_work_init -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xae38619a vhost_new_msg -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xaef9297b vhost_vq_access_ok -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xba3011ca vhost_disable_notify -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xc9183268 vhost_dev_cleanup -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xcb36f41a vhost_vring_ioctl -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xd159c09d vhost_poll_stop -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xdc5d12a7 vhost_dev_has_owner -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xdcb17f31 vhost_poll_flush -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xde6cdd91 vhost_dev_init -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xe51ad139 vhost_signal -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xed4aaa5d vhost_init_device_iotlb -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xf25dfc09 vhost_log_write -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xf654070d vhost_dev_check_owner -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xf9b7325f vhost_dev_ioctl -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xfc0c36f7 vhost_vq_is_setup -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xfd2b3e45 vhost_dev_reset_owner_prepare -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xff01e9f9 vhost_poll_queue -EXPORT_SYMBOL_GPL drivers/vhost/vhost_iotlb 0x38ff875f vhost_iotlb_add_range -EXPORT_SYMBOL_GPL drivers/vhost/vhost_iotlb 0x5f4e5249 vhost_iotlb_reset -EXPORT_SYMBOL_GPL drivers/vhost/vhost_iotlb 0x69e872f9 vhost_iotlb_itree_first -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 0x10cdef00 ili9320_write -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x2bf2824a ili9320_probe_spi -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x47e30b02 ili9320_write_regs -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x79f6aca9 ili9320_resume -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x84f2ca91 ili9320_suspend -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x8f427df5 ili9320_shutdown -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xaca2e7a4 ili9320_remove -EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_ddc 0xca66f5b4 fb_ddc_read -EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_sys_fops 0x0229dd39 fb_sys_write -EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_sys_fops 0x83c36fb7 fb_sys_read -EXPORT_SYMBOL_GPL drivers/video/fbdev/sis/sisfb 0x04c33f68 sis_malloc_new -EXPORT_SYMBOL_GPL drivers/video/fbdev/sis/sisfb 0xc48465e1 sis_free_new -EXPORT_SYMBOL_GPL drivers/w1/wire 0x0be0b355 w1_reset_select_slave -EXPORT_SYMBOL_GPL drivers/w1/wire 0x0bf45cdd w1_write_8 -EXPORT_SYMBOL_GPL drivers/w1/wire 0x1f5702f7 w1_reset_resume_command -EXPORT_SYMBOL_GPL drivers/w1/wire 0x63757e92 w1_calc_crc8 -EXPORT_SYMBOL_GPL drivers/w1/wire 0x87592006 w1_next_pullup -EXPORT_SYMBOL_GPL drivers/w1/wire 0x88f503c3 w1_reset_bus -EXPORT_SYMBOL_GPL drivers/w1/wire 0x90edf54b w1_read_8 -EXPORT_SYMBOL_GPL drivers/w1/wire 0x98f0c820 w1_touch_bit -EXPORT_SYMBOL_GPL drivers/w1/wire 0xaee4065c w1_read_block -EXPORT_SYMBOL_GPL drivers/w1/wire 0xb4caa0b2 w1_triplet -EXPORT_SYMBOL_GPL drivers/w1/wire 0xdfe4f6d2 w1_write_block -EXPORT_SYMBOL_GPL drivers/w1/wire 0xea67c188 w1_touch_block -EXPORT_SYMBOL_GPL drivers/xen/xen-front-pgdir-shbuf 0x46bba1f5 xen_front_pgdir_shbuf_free -EXPORT_SYMBOL_GPL drivers/xen/xen-front-pgdir-shbuf 0x6a515914 xen_front_pgdir_shbuf_alloc -EXPORT_SYMBOL_GPL drivers/xen/xen-front-pgdir-shbuf 0x6cace397 xen_front_pgdir_shbuf_get_dir_start -EXPORT_SYMBOL_GPL drivers/xen/xen-front-pgdir-shbuf 0xa7cd6faa xen_front_pgdir_shbuf_unmap -EXPORT_SYMBOL_GPL drivers/xen/xen-front-pgdir-shbuf 0xa825bbf5 xen_front_pgdir_shbuf_map -EXPORT_SYMBOL_GPL drivers/xen/xen-privcmd 0x834a129d xen_privcmdbuf_fops -EXPORT_SYMBOL_GPL drivers/xen/xen-privcmd 0xd80b8143 xen_privcmd_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 0x6dbe252d dlm_posix_unlock -EXPORT_SYMBOL_GPL fs/dlm/dlm 0xcd224e1d dlm_new_lockspace -EXPORT_SYMBOL_GPL fs/dlm/dlm 0xcf4d30da dlm_posix_get -EXPORT_SYMBOL_GPL fs/dlm/dlm 0xcf9f3328 dlm_release_lockspace -EXPORT_SYMBOL_GPL fs/dlm/dlm 0xdae141e5 dlm_posix_lock -EXPORT_SYMBOL_GPL fs/fscache/fscache 0x092cf98e fscache_object_sleep_till_congested -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x11a60cc1 nlmclnt_proc -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x178e5fab nlmclnt_init -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x2f56d5e4 lockd_down -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x4957703e nlmclnt_done -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x77e35ccc nlmsvc_unlock_all_by_ip -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x7f15df7a nlmsvc_unlock_all_by_sb -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x95e4f666 nlmsvc_ops -EXPORT_SYMBOL_GPL fs/lockd/lockd 0xe5c92765 lockd_up -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x00585f3f nfs_mark_client_ready -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x00866267 nfs_scan_commit_list -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0294c6a2 nfs_callback_nr_threads -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x03883ebb nfs_add_or_obtain -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0604553a nfs_wb_all -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0a3f5777 nfs_async_iocounter_wait -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0a6476b3 nfs_free_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0c5fccf4 nfs_alloc_fattr_with_label -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0ff4ccab nfs_write_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x10962bc2 nfs_auth_info_match -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x11d78671 nfs_file_write -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x14908543 nfs_post_op_update_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x163ac61b nfs_put_lock_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1984851b nfs_show_stats -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1ce63b5a nfs_zap_acl_cache -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1d2efa0a nfs_lock -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1e19fe4e nfs_pageio_resend -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x20bcfef3 nfs_show_options -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x22d795a8 _nfs_display_fhandle_hash -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x26442271 nfs_commitdata_release -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x26884ff7 nfs_alloc_fhandle -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x27f388f3 nfs_alloc_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2c7323c4 nfs_fscache_open_file -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2f5d350a unregister_nfs_version -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x30496988 __tracepoint_nfs_fsync_enter -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3380e1d0 nfs_free_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x34677a13 nfs_inode_attach_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x360fc6cc nfs_may_open -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x369afd3b nfs_try_get_tree -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x39e05ac3 nfs_idmap_cache_timeout -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3bf3f568 nfs_dentry_operations -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3db61c6b nfs_post_op_update_inode_force_wcc -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3ee61537 nfs_pgio_current_mirror -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 0x42f2c81f nfs4_client_id_uniquifier -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x44cc3a41 __tracepoint_nfs_fsync_exit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x49074439 nfs_init_server_rpcclient -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x49986e93 nfs_initiate_commit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4c935f3e nfs_client_for_each_server -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 0x5202f8b9 nfs_show_devname -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x529c3a0a nfs_umount_begin -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x52d7a59b nfs_request_add_commit_list_locked -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x569181c3 nfs_commitdata_alloc -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x56fe3d41 nfs_symlink -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 0x5eaa5c49 __traceiter_nfs_fsync_exit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x605a43b0 nfs_client_init_status -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x65465b6c nfs_path -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x65826822 nfs_pageio_reset_write_mds -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x65bde418 nfs_clear_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x69be354e nfs_lookup -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x69ed1a17 nfs_kill_super -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6b7bbae5 nfs_wait_on_request -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6d30603d nfs_request_add_commit_list -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6e81f032 __SCK__tp_func_nfs_fsync_exit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6fd8ceac nfs_probe_fsinfo -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x71a996f3 nfs_getattr -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x71e307cc nfs_setattr -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x72b4cc54 nfs_commit_free -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x72ef5fb3 nfs_commit_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x73dff4c0 __SCK__tp_func_nfs_xdr_status -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x74dab12f nfs_file_fsync -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x761b58e5 nfs_permission -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x76770ca7 nfs_request_remove_commit_list -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x79c767fe nfs_submount -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7c34e799 nfs_server_copy_userdata -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7c9722ba nfs_dreq_bytes_left -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7ffdb759 __traceiter_nfs_fsync_enter -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x804e4e02 nfs_server_insert_lists -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x832e8f0b nfs_alloc_fattr -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x861eae0b nfs_file_release -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x86ef7ab1 nfs_close_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8a621ac2 register_nfs_version -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8bbef485 nfs_pageio_reset_read_mds -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8ef8239d nfs_pgheader_init -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 0x92ae7f5c nfs_generic_pgio -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x95007f7e __SCK__tp_func_nfs_xdr_bad_filehandle -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x986229af nfs_create_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x98b0ece8 nfs_init_timeout_values -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x98e6cf31 nfs_check_cache_invalid -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9a14404b nfs_fs_type -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9b6b7898 nfs_invalidate_atime -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9e0457ab nfs_release_request -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9e246df1 nfs_mkdir -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa05ca625 nfs_fattr_init -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa09d2706 alloc_nfs_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa2a16f8b nfs_create_rpc_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa2e4d52f nfs_drop_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa3527139 nfs_file_operations -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa6538378 nfs_sb_active -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa660e650 nfs_setattr_update_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa71509dd nfs_reconfigure -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa87ef8a4 nfs_writeback_update_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa8a8d3de nfs_fhget -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa8e9e1ae send_implementation_id -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xaab3affb put_nfs_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xaad32ad6 nfs_sb_deactive -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xaafd4acc max_session_cb_slots -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xae82e508 nfs_file_llseek -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xaf8eeeb8 __traceiter_nfs_xdr_bad_filehandle -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xaf99b166 nfs_clone_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb31b2374 nfs_init_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb45e2a48 nfs_filemap_write_and_wait_range -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb50586b7 nfs_access_zap_cache -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb5c2ca23 nfs_statfs -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbad0665e nfs_generic_pg_test -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbc34a2c3 get_nfs_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc1d95643 nfs_access_get_cached -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc2514c16 nfs_access_add_cache -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc36c8318 nfs_atomic_open -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc3a2be67 nfs_net_id -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc404ded4 nfs_alloc_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc961121a nfs_link -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcac1f377 nfs_clear_verifier_delegated -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcc6ea405 nfs_rmdir -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcd474a42 nfs_set_verifier -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcdfdf5bf nfs_file_set_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xceb133f0 nfs_file_mmap -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcfea0731 __traceiter_nfs_xdr_status -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd24be69e nfs_set_cache_invalid -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd2b97367 nfs_pageio_init_write -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd40e7969 nfs_alloc_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd4790374 nfs_pgio_header_free -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd4fa1ec3 nfs_force_lookup_revalidate -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd5e4ec0f nfs_setsecurity -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd6e195d8 nfs_init_cinfo -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd7a958fc nfs_unlink -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd9421d07 nfs_put_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd9e25bce nfs_retry_commit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdae9b5d7 nfs4_disable_idmapping -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdb289e4b nfs_do_submount -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdc498caf nfs_client_init_is_complete -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xde10eb90 nfs_get_lock_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdf2b3804 nfs_mknod -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdf5c86e7 nfs_server_remove_lists -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe03b02a1 nfs4_fs_type -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe2d99c31 nfs_initiate_pgio -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe4c4c6e9 nfs_access_set_mask -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe60253c9 nfs_wait_client_init_complete -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe6036419 nfs_sync_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe70507df __tracepoint_nfs_xdr_bad_filehandle -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe7744557 nfs_create -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe920b486 nfs_rename -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xea8fc977 nfs_revalidate_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xea9f82e3 nfs_instantiate -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xecce5f2f nfs_file_read -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xed158141 nfs_flock -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xefaa22de nfs_free_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf2e7ecda nfs_pgio_header_alloc -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf332fd42 nfs_sops -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf4636e7b nfs4_dentry_operations -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf6c10ef2 nfs_init_commit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf6d9bbfe nfs4_label_alloc -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf96f04c4 __SCK__tp_func_nfs_fsync_enter -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfb560df7 nfs_get_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfc619abd _nfs_display_fhandle -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfcaf257c nfs_show_path -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfdef5185 nfs_refresh_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfffbcbd5 nfs_pageio_init_read -EXPORT_SYMBOL_GPL fs/nfs/nfsv3 0x51ca877c nfs3_set_ds_client -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x054bef45 layoutstats_timer -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x08b2c467 __SCK__tp_func_ff_layout_commit_error -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0aebca68 __tracepoint_ff_layout_read_error -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0c24dca7 pnfs_generic_prepare_to_resend_writes -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0ed87107 __traceiter_ff_layout_commit_error -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0f01076e __tracepoint_pnfs_mds_fallback_pg_get_mirror_count -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0ff289f3 __SCK__tp_func_pnfs_mds_fallback_pg_init_write -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x104a129a __traceiter_pnfs_mds_fallback_read_pagelist -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x17611d80 pnfs_set_lo_fail -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x24ea00ba pnfs_layoutcommit_inode -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x27ad47ea __SCK__tp_func_pnfs_mds_fallback_write_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x29da7c4b nfs4_mark_deviceid_available -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2c2354f3 nfs4_pnfs_ds_put -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2cd689bc nfs4_setup_sequence -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2d611a07 nfs4_test_deviceid_unavailable -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2d6574f0 __traceiter_pnfs_mds_fallback_pg_init_read -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2d8d95ff __traceiter_nfs4_pnfs_read -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2df71f7f pnfs_generic_recover_commit_reqs -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2ec56f0c pnfs_generic_pg_init_write -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x30a44ac3 __SCK__tp_func_ff_layout_write_error -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x30beb814 pnfs_report_layoutstat -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x326082db __traceiter_pnfs_mds_fallback_pg_init_write -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x32bb6e05 __tracepoint_ff_layout_write_error -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x341000a7 pnfs_destroy_layout -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3438e88a nfs4_schedule_lease_recovery -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3795e667 pnfs_nfs_generic_sync -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3a5ac05c pnfs_error_mark_layout_for_return -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4124af79 pnfs_generic_pg_init_read -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x427369f3 nfs4_delete_deviceid -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4795afb0 __traceiter_pnfs_mds_fallback_write_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x48773cf3 __traceiter_ff_layout_write_error -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4cffc674 pnfs_generic_pg_writepages -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4dbb4b96 nfs4_sequence_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4ef28693 nfs4_init_ds_session -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x50075dc5 pnfs_write_done_resend_to_mds -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 0x5bb89499 pnfs_generic_ds_cinfo_destroy -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5ce462a3 __tracepoint_pnfs_mds_fallback_write_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5f635b70 pnfs_add_commit_array -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6085edbd nfs_map_string_to_numeric -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x633334cc nfs4_proc_getdeviceinfo -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x63f037cd nfs_remove_bad_delegation -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x69d3558d pnfs_generic_rw_release -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6b8b65f1 __traceiter_ff_layout_read_error -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6fa21669 nfs41_sequence_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x70ad5ea2 pnfs_generic_pg_cleanup -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7599ffcc pnfs_generic_pg_check_layout -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x785c06ab __SCK__tp_func_ff_layout_read_error -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x791bf14d __traceiter_nfs4_pnfs_write -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7a4e7f4e __SCK__tp_func_pnfs_mds_fallback_read_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7ab7bcc6 __tracepoint_ff_layout_commit_error -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7b9441ce pnfs_put_lseg -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7bae083b pnfs_generic_pg_readpages -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7cd013a8 __SCK__tp_func_pnfs_mds_fallback_pg_get_mirror_count -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7d49d4c8 nfs4_schedule_migration_recovery -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x82409884 __tracepoint_pnfs_mds_fallback_read_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x899074e6 nfs42_proc_layouterror -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x899d7086 pnfs_set_layoutcommit -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8d0592dc __traceiter_nfs4_pnfs_commit_ds -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x90eeb603 nfs4_mark_deviceid_unavailable -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x91068ad9 __traceiter_pnfs_mds_fallback_write_pagelist -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x914b5782 pnfs_ld_write_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x974a1614 __tracepoint_pnfs_mds_fallback_pg_init_write -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x97634e30 __traceiter_pnfs_mds_fallback_read_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x99be41cb pnfs_generic_scan_commit_lists -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9a1a74c3 __tracepoint_nfs4_pnfs_write -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9cafefdc pnfs_ld_read_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9fd6c178 nfs4_set_ds_client -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa55c92d9 nfs4_find_get_deviceid -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa603cff9 pnfs_generic_ds_cinfo_release_lseg -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa69cc4c9 pnfs_generic_clear_request_commit -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb2d731d7 pnfs_generic_layout_insert_lseg -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb41917fc pnfs_update_layout -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb4993f42 nfs4_schedule_lease_moved_recovery -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb7c5994d pnfs_generic_pg_check_range -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb96f9089 pnfs_read_done_resend_to_mds -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xba53a1ef __SCK__tp_func_pnfs_mds_fallback_pg_init_read -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbb406abf nfs4_schedule_session_recovery -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbc492834 pnfs_generic_write_commit_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbc4b2c45 nfs4_decode_mp_ds_addr -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbcd6823f nfs4_init_deviceid_node -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbf163577 nfs4_pnfs_ds_add -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc0dea2b5 nfs4_put_deviceid_node -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc7a9d954 __SCK__tp_func_nfs4_pnfs_read -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc91e0ed7 pnfs_generic_sync -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xcca36d18 nfs4_schedule_stateid_recovery -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xcf29b95f __tracepoint_pnfs_mds_fallback_read_pagelist -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xcf3d9a07 pnfs_read_resend_pnfs -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd0ecfaad __tracepoint_pnfs_mds_fallback_pg_init_read -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd747cd1c pnfs_generic_commit_pagelist -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xdc2c01ca nfs4_find_or_create_ds_client -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 0xe44fc89c pnfs_layout_mark_request_commit -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe481cddc pnfs_alloc_commit_array -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe64bedd6 pnfs_generic_search_commit_reqs -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 0xf1795686 nfs4_set_rw_stateid -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf3086598 pnfs_generic_pg_test -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf57e26be pnfs_free_commit_array -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 0xf9a2765a pnfs_register_layoutdriver -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf9faf5bf nfs4_test_session_trunk -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xfbc424ee __traceiter_pnfs_mds_fallback_pg_get_mirror_count -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xfd5fecb5 nfs4_pnfs_ds_connect -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xff4839af pnfs_unregister_layoutdriver -EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x14363adf locks_start_grace -EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x1fe1e1ad locks_end_grace -EXPORT_SYMBOL_GPL fs/nfs_common/grace 0xcff90c41 locks_in_grace -EXPORT_SYMBOL_GPL fs/nfs_common/grace 0xeaf61a68 opens_in_grace -EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x103bdc8b nfs_stream_encode_acl -EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x53faead2 nfsacl_encode -EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x6a9a5a89 nfs_stream_decode_acl -EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0xd6eb2127 nfsacl_decode -EXPORT_SYMBOL_GPL fs/nfsd/nfsd 0x9a1d9ba2 nfsd4_ssc_init_umount_work -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x0a198b1d o2hb_register_callback -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x0f4bafc3 o2nm_get_node_by_num -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x1661d00b o2nm_node_put -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 0x4b2354c1 o2hb_unregister_callback -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x58c88ff2 o2hb_get_all_regions -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x5e95a4b2 o2net_send_message_vec -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x6a0c3847 __mlog_printk -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 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 0xd2801994 o2nm_node_get -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xd3ba710e o2nm_get_node_by_ip -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xd537d820 o2hb_setup_callback -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xd859ac8c o2net_fill_node_map -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xf1a5611d o2net_unregister_handler_list -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 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 0x1bd8240d dlmlock -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x4cec3649 dlm_register_eviction_cb -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x5742b959 dlm_register_domain -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x5765f390 dlmunlock -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x6a7c1733 dlm_unregister_domain -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x7a1211f8 dlm_setup_eviction_cb -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x84e3c82f 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 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 0x43b14388 ocfs2_stack_glue_register -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x4d3af7fa ocfs2_cluster_hangup -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x68f3c0d2 ocfs2_plock -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x76f40744 ocfs2_dlm_lvb -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x9507547f ocfs2_cluster_disconnect -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xaf969565 ocfs2_dlm_lock -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xbbc4ef97 ocfs2_stack_supports_plocks -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 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 0xf66feb5b ocfs2_kset -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xfe71e26b ocfs2_stack_glue_unregister -EXPORT_SYMBOL_GPL fs/pstore/pstore_blk 0x43cc3d4b pstore_blk_get_config -EXPORT_SYMBOL_GPL fs/pstore/pstore_blk 0x9f57c15c register_pstore_device -EXPORT_SYMBOL_GPL fs/pstore/pstore_blk 0xee1dedd2 unregister_pstore_device -EXPORT_SYMBOL_GPL fs/pstore/pstore_zone 0x34e9d59f unregister_pstore_zone -EXPORT_SYMBOL_GPL fs/pstore/pstore_zone 0xa1a825fd 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 0x2a6045a0 notifier_err_inject_dir -EXPORT_SYMBOL_GPL lib/notifier-error-inject 0xb7008614 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 0x048bb57e lowpan_header_compress -EXPORT_SYMBOL_GPL net/6lowpan/6lowpan 0x2878da09 lowpan_header_decompress -EXPORT_SYMBOL_GPL net/802/garp 0x1772c793 garp_unregister_application -EXPORT_SYMBOL_GPL net/802/garp 0x34bb091d garp_register_application -EXPORT_SYMBOL_GPL net/802/garp 0x45d90867 garp_request_join -EXPORT_SYMBOL_GPL net/802/garp 0xac0d3c0b garp_uninit_applicant -EXPORT_SYMBOL_GPL net/802/garp 0xc6489e1e garp_request_leave -EXPORT_SYMBOL_GPL net/802/garp 0xdb55748f garp_init_applicant -EXPORT_SYMBOL_GPL net/802/mrp 0x1217b42e mrp_request_join -EXPORT_SYMBOL_GPL net/802/mrp 0x222a8441 mrp_register_application -EXPORT_SYMBOL_GPL net/802/mrp 0x2a8a1ed5 mrp_unregister_application -EXPORT_SYMBOL_GPL net/802/mrp 0x34399ed5 mrp_request_leave -EXPORT_SYMBOL_GPL net/802/mrp 0x6f6159d1 mrp_uninit_applicant -EXPORT_SYMBOL_GPL net/802/mrp 0x78749089 mrp_init_applicant -EXPORT_SYMBOL_GPL net/802/stp 0xd9598bc6 stp_proto_unregister -EXPORT_SYMBOL_GPL net/802/stp 0xedd6ed02 stp_proto_register -EXPORT_SYMBOL_GPL net/9p/9pnet 0x6a2d14f6 p9_client_xattrwalk -EXPORT_SYMBOL_GPL net/9p/9pnet 0xc9502bec 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 0x6c0178ea 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 0x1b9a104c l2cap_add_psm -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x790e0aa0 l2cap_chan_del -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x7e3348b3 l2cap_chan_send -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xdda5b904 l2cap_chan_put -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xe38831a1 l2cap_chan_list -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xe44a5810 l2cap_chan_connect -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xeb0edc47 l2cap_chan_set_defaults -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xf20a5653 l2cap_chan_create -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xf4ab897a bt_debugfs -EXPORT_SYMBOL_GPL net/bluetooth/hidp/hidp 0x40bdf2ef hidp_hid_driver -EXPORT_SYMBOL_GPL net/bridge/bridge 0x050851b4 br_dev_queue_push_xmit -EXPORT_SYMBOL_GPL net/bridge/bridge 0x0e07f92d br_vlan_get_info -EXPORT_SYMBOL_GPL net/bridge/bridge 0x12c23b92 br_vlan_get_info_rcu -EXPORT_SYMBOL_GPL net/bridge/bridge 0x30954140 br_multicast_router -EXPORT_SYMBOL_GPL net/bridge/bridge 0x677b4f94 br_vlan_get_pvid_rcu -EXPORT_SYMBOL_GPL net/bridge/bridge 0x687b208b br_get_ageing_time -EXPORT_SYMBOL_GPL net/bridge/bridge 0x8c17f62b br_fdb_find_port -EXPORT_SYMBOL_GPL net/bridge/bridge 0x9275db7c br_port_flag_is_set -EXPORT_SYMBOL_GPL net/bridge/bridge 0x9839c27c nf_br_ops -EXPORT_SYMBOL_GPL net/bridge/bridge 0xa02fa7d3 br_vlan_get_pvid -EXPORT_SYMBOL_GPL net/bridge/bridge 0xb2e0e3ce br_multicast_enabled -EXPORT_SYMBOL_GPL net/bridge/bridge 0xbbf386ca br_vlan_get_proto -EXPORT_SYMBOL_GPL net/bridge/bridge 0xc50ed991 br_port_get_stp_state -EXPORT_SYMBOL_GPL net/bridge/bridge 0xc53d4efc br_multicast_has_querier_anywhere -EXPORT_SYMBOL_GPL net/bridge/bridge 0xc58e8f8b br_multicast_has_router_adjacent -EXPORT_SYMBOL_GPL net/bridge/bridge 0xc7815a9d br_multicast_has_querier_adjacent -EXPORT_SYMBOL_GPL net/bridge/bridge 0xda21a9bc br_handle_frame_finish -EXPORT_SYMBOL_GPL net/bridge/bridge 0xda5f7412 br_fdb_clear_offload -EXPORT_SYMBOL_GPL net/bridge/bridge 0xdb77675e br_forward_finish -EXPORT_SYMBOL_GPL net/bridge/bridge 0xe9c5175a br_multicast_list_adjacent -EXPORT_SYMBOL_GPL net/bridge/bridge 0xf6d2fe7d br_forward -EXPORT_SYMBOL_GPL net/bridge/bridge 0xfa9e4a40 br_vlan_enabled -EXPORT_SYMBOL_GPL net/core/failover 0x4c38a03e failover_slave_unregister -EXPORT_SYMBOL_GPL net/core/failover 0x6017b538 failover_unregister -EXPORT_SYMBOL_GPL net/core/failover 0x6ee0866d failover_register -EXPORT_SYMBOL_GPL net/dccp/dccp 0x182ec2bf dccp_ackvec_parsed_add -EXPORT_SYMBOL_GPL net/dccp/dccp 0x194cd594 dccp_hashinfo -EXPORT_SYMBOL_GPL net/dccp/dccp 0x340a581d dccp_make_response -EXPORT_SYMBOL_GPL net/dccp/dccp 0x37c112ba dccp_close -EXPORT_SYMBOL_GPL net/dccp/dccp 0x38a601b7 dccp_destroy_sock -EXPORT_SYMBOL_GPL net/dccp/dccp 0x3d865768 dccp_reqsk_send_ack -EXPORT_SYMBOL_GPL net/dccp/dccp 0x4cdd391d dccp_feat_list_purge -EXPORT_SYMBOL_GPL net/dccp/dccp 0x4d33e6ab dccp_death_row -EXPORT_SYMBOL_GPL net/dccp/dccp 0x59814a84 dccp_statistics -EXPORT_SYMBOL_GPL net/dccp/dccp 0x5bb849f6 dccp_sendmsg -EXPORT_SYMBOL_GPL net/dccp/dccp 0x5fefcbe6 dccp_send_ack -EXPORT_SYMBOL_GPL net/dccp/dccp 0x61033ab2 dccp_create_openreq_child -EXPORT_SYMBOL_GPL net/dccp/dccp 0x73c73440 dccp_getsockopt -EXPORT_SYMBOL_GPL net/dccp/dccp 0x7577a2e9 dccp_init_sock -EXPORT_SYMBOL_GPL net/dccp/dccp 0x7aa02597 dccp_poll -EXPORT_SYMBOL_GPL net/dccp/dccp 0x7b498f27 dccp_disconnect -EXPORT_SYMBOL_GPL net/dccp/dccp 0x7ef51279 dccp_set_state -EXPORT_SYMBOL_GPL net/dccp/dccp 0x807bb792 dccp_done -EXPORT_SYMBOL_GPL net/dccp/dccp 0x80993155 dccp_timestamp -EXPORT_SYMBOL_GPL net/dccp/dccp 0x82501dfa inet_dccp_listen -EXPORT_SYMBOL_GPL net/dccp/dccp 0x86be7924 dccp_packet_name -EXPORT_SYMBOL_GPL net/dccp/dccp 0x89f0de3d dccp_ctl_make_reset -EXPORT_SYMBOL_GPL net/dccp/dccp 0x8c8fb367 dccp_child_process -EXPORT_SYMBOL_GPL net/dccp/dccp 0x92e12461 dccp_destruct_common -EXPORT_SYMBOL_GPL net/dccp/dccp 0x9477857a dccp_setsockopt -EXPORT_SYMBOL_GPL net/dccp/dccp 0x9598d24d dccp_ackvec_parsed_cleanup -EXPORT_SYMBOL_GPL net/dccp/dccp 0x9f02b949 dccp_shutdown -EXPORT_SYMBOL_GPL net/dccp/dccp 0xada68770 dccp_rcv_state_process -EXPORT_SYMBOL_GPL net/dccp/dccp 0xb4757179 dccp_feat_nn_get -EXPORT_SYMBOL_GPL net/dccp/dccp 0xb689b01e dccp_send_sync -EXPORT_SYMBOL_GPL net/dccp/dccp 0xb7dc4ea4 dccp_feat_signal_nn_change -EXPORT_SYMBOL_GPL net/dccp/dccp 0xb8bf65cc dccp_check_req -EXPORT_SYMBOL_GPL net/dccp/dccp 0xc231d7b0 dccp_reqsk_init -EXPORT_SYMBOL_GPL net/dccp/dccp 0xc60b6165 dccp_sync_mss -EXPORT_SYMBOL_GPL net/dccp/dccp 0xc7874ab9 dccp_connect -EXPORT_SYMBOL_GPL net/dccp/dccp 0xcd5d2076 dccp_ioctl -EXPORT_SYMBOL_GPL net/dccp/dccp 0xd75b7072 dccp_orphan_count -EXPORT_SYMBOL_GPL net/dccp/dccp 0xed57665a dccp_rcv_established -EXPORT_SYMBOL_GPL net/dccp/dccp 0xef291c4c dccp_recvmsg -EXPORT_SYMBOL_GPL net/dccp/dccp 0xf187137e dccp_insert_option -EXPORT_SYMBOL_GPL net/dccp/dccp 0xfe53ea3e dccp_parse_options -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x38216299 dccp_v4_send_check -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x68f90ac1 dccp_v4_connect -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x6a214df0 dccp_v4_conn_request -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x722bb3da dccp_v4_do_rcv -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xcaa70555 dccp_invalid_packet -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xd4c35f1f dccp_v4_request_recv_sock -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x0359a5f6 dsa_tag_8021q_bridge_tx_fwd_offload -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x04cb05b6 dsa_devlink_params_register -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x0a3cb4b4 dsa_switch_suspend -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x0ee956d5 dsa_devlink_param_set -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x12650f52 dsa_switch_resume -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x16d0252d dsa_8021q_tx_vid -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x18169776 dsa_devlink_resources_unregister -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x1d33d927 dsa_8021q_xmit -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x30dfc6b4 dsa_8021q_rx_vid -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x417d1fed dsa_8021q_rx_switch_id -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x4dbe9cf8 dsa_register_switch -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x501827a0 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 0x61841094 dsa_switch_shutdown -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x62cd99de dsa_tag_8021q_register -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x66b5c34d dsa_tag_8021q_unregister -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x77ea5c96 dsa_tag_8021q_bridge_tx_fwd_unoffload -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x7befd49c dsa_devlink_port_region_create -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x7c3e8d39 dsa_port_get_phy_strings -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x7e377ef6 dsa_port_phylink_mac_change -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x94c86296 dsa_enqueue_skb -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x95f3a3cd dsa_devlink_resource_register -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x9bd5b880 dsa_8021q_rcv -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x9e59271d dsa_8021q_rx_source_port -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xafce5e6e dsa_devlink_region_create -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xb02eed2a dsa_switch_find -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xb84aac81 dsa_devlink_resource_occ_get_register -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xbe3856fc dsa_8021q_bridge_tx_fwd_offload_vid -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xc1f08beb dsa_devlink_params_unregister -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xc23e8d5f dsa_devlink_region_destroy -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xd20bd6a0 dsa_port_get_phy_sset_count -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xd4c37bb3 dsa_unregister_switch -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xd8548341 dsa_port_from_netdev -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xdb92d15d dsa_dev_to_net_device -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xe6a62db2 dsa_tag_drivers_register -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xe8f735a6 dsa_tag_drivers_unregister -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xe8ff5208 dsa_slave_dev_check -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 0xf839136e dsa_port_get_ethtool_phy_stats -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xfb7e5655 dsa_devlink_param_get -EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x62b3caa0 ieee802154_hdr_push -EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x71239a4b ieee802154_hdr_peek -EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x74970e1b ieee802154_hdr_pull -EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x87e2553b ieee802154_max_payload -EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0xbe322026 ieee802154_hdr_peek_addrs -EXPORT_SYMBOL_GPL net/ife/ife 0x6210e871 ife_tlv_meta_next -EXPORT_SYMBOL_GPL net/ife/ife 0x67db2029 ife_tlv_meta_decode -EXPORT_SYMBOL_GPL net/ife/ife 0x76ea0546 ife_decode -EXPORT_SYMBOL_GPL net/ife/ife 0xe7888e98 ife_tlv_meta_encode -EXPORT_SYMBOL_GPL net/ife/ife 0xf6446020 ife_encode -EXPORT_SYMBOL_GPL net/ipv4/esp4 0x51e210df esp_input_done2 -EXPORT_SYMBOL_GPL net/ipv4/esp4 0x8c066a68 esp_output_tail -EXPORT_SYMBOL_GPL net/ipv4/esp4 0xe740a00f esp_output_head -EXPORT_SYMBOL_GPL net/ipv4/gre 0x2a3e41a7 gre_add_protocol -EXPORT_SYMBOL_GPL net/ipv4/gre 0x32e3ddf4 gre_del_protocol -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x13154793 inet_diag_bc_sk -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x3e298f89 inet_diag_msg_common_fill -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x6a96bfd8 inet_diag_find_one_icsk -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x72b61be8 inet_diag_unregister -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x97f2dc67 inet_diag_dump_icsk -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xc377e3f1 inet_diag_msg_attrs_fill -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xcb48c69b inet_diag_register -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xf60e7b0b inet_diag_dump_one_icsk -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xfb71a349 inet_sk_diag_fill -EXPORT_SYMBOL_GPL net/ipv4/ip_gre 0x10f54ad7 gretap_fb_dev_create -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x0aeaab2d ip_tunnel_newlink -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x154c9217 ip_tunnel_encap_setup -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x1a3ea4ac ip_md_tunnel_xmit -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x22be13d4 ip_tunnel_init -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x244a4710 ip_tunnel_change_mtu -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x56084bfb __ip_tunnel_change_mtu -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x56e0759b ip_tunnel_uninit -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x5c51c2dd ip_tunnel_rcv -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x5fc56bd9 ip_tunnel_xmit -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x61449e61 ip_tunnel_ctl -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x69fc3e7d ip_tunnel_changelink -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x71f79b49 ip_tunnel_siocdevprivate -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x7a574d12 ip_tunnel_init_net -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xb79a8a0f ip_tunnel_delete_nets -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xb87c4285 ip_tunnel_lookup -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xc0972b6c ip_tunnel_setup -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xe42ab687 ip_tunnel_dellink -EXPORT_SYMBOL_GPL net/ipv4/netfilter/arp_tables 0x3cefb06f arpt_alloc_initial_table -EXPORT_SYMBOL_GPL net/ipv4/netfilter/ip_tables 0xd4d46dd0 ipt_alloc_initial_table -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_defrag_ipv4 0x8479ea57 nf_defrag_ipv4_enable -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_defrag_ipv4 0xf7554c4d nf_defrag_ipv4_disable -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_dup_ipv4 0x426c4653 nf_dup_ipv4 -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x14496bda nf_reject_ip_tcphdr_put -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x5ac7812c nf_send_unreach -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x9a961c26 nf_reject_ip_tcphdr_get -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xa7576767 nf_send_reset -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xb2ab0d88 nf_reject_skb_v4_tcp_reset -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xbd1a432e nf_reject_skb_v4_unreach -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xc21a338b nf_reject_iphdr_put -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_socket_ipv4 0x163d3669 nf_sk_lookup_slow_v4 -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0x39339761 nf_tproxy_handle_time_wait4 -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0x46f79a7d nf_tproxy_get_sock_v4 -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0xba5ec41f nf_tproxy_laddr4 -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nft_fib_ipv4 0x93a76870 nft_fib4_eval_type -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nft_fib_ipv4 0xa3a85b4c nft_fib4_eval -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x186e5a63 tcp_vegas_get_info -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x32d33287 tcp_vegas_state -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xa48e2c3d tcp_vegas_init -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xba43fdc8 tcp_vegas_cwnd_event -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xc49c8a3b tcp_vegas_pkts_acked -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x0c7fb170 udp_tun_rx_dst -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x64b322bf udp_tunnel_sock_release -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x8f1f8b35 udp_tunnel_push_rx_port -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xba8811bf udp_tunnel_notify_add_rx_port -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xe3954deb udp_tunnel_notify_del_rx_port -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xebfade89 udp_tunnel_xmit_skb -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xef081c15 udp_tunnel_drop_rx_port -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xfbbf743f setup_udp_tunnel_sock -EXPORT_SYMBOL_GPL net/ipv6/esp6 0x3ceb69b8 esp6_input_done2 -EXPORT_SYMBOL_GPL net/ipv6/esp6 0xc82d5801 esp6_output_head -EXPORT_SYMBOL_GPL net/ipv6/esp6 0xcb462fae esp6_output_tail -EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x08145b09 ip6_tnl_encap_setup -EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x7d7310a2 ip6_tnl_rcv_ctl -EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0xa7fcf9ef ip6_tnl_xmit_ctl -EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0x86813c69 udp_sock_create6 -EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0xa1845a2a udp_tunnel6_xmit_skb -EXPORT_SYMBOL_GPL net/ipv6/netfilter/ip6_tables 0x33819c8c ip6t_alloc_initial_table -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0xa028b9ca nf_defrag_ipv6_enable -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0xe7667b99 nf_defrag_ipv6_disable -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0xf42e8924 nf_ct_frag6_gather -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_dup_ipv6 0x3e8f21a3 nf_dup_ipv6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x171e706e nf_reject_ip6_tcphdr_get -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x1d8aacc0 nf_reject_ip6hdr_put -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x5c973ae3 nf_send_unreach6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x6f89814e nf_send_reset6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x9cc4061d nf_reject_ip6_tcphdr_put -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xbd358775 nf_reject_skb_v6_tcp_reset -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xd6dd6d20 nf_reject_skb_v6_unreach -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_socket_ipv6 0x915a9700 nf_sk_lookup_slow_v6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0x06f4b314 nf_tproxy_get_sock_v6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0x8614d16f nf_tproxy_handle_time_wait6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0xe17e8d1c nf_tproxy_laddr6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nft_fib_ipv6 0x66a0de32 nft_fib6_eval_type -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nft_fib_ipv6 0xff2af46a nft_fib6_eval -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x13b08596 l2tp_xmit_skb -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x24165f4c l2tp_session_dec_refcount -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x2e63bc7c l2tp_recv_common -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x385edb90 l2tp_session_register -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x4ad7f5d0 l2tp_session_create -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x4e525716 l2tp_session_delete -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x6d420442 l2tp_session_get_nth -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x6e979733 l2tp_tunnel_create -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x703b3817 l2tp_tunnel_get -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x7120bb83 l2tp_udp_encap_recv -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x71620c94 l2tp_session_get -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x7d53e6b1 l2tp_tunnel_get_nth -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x82dbfba9 l2tp_tunnel_inc_refcount -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x89755177 l2tp_sk_to_tunnel -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x8d4e66e7 l2tp_tunnel_delete -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xba4e0e3f l2tp_tunnel_register -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xbf405cd3 l2tp_session_set_header_len -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xd120490d l2tp_session_inc_refcount -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xf49b6462 l2tp_tunnel_dec_refcount -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xf882abec l2tp_session_get_by_ifname -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xfaa29bda l2tp_tunnel_get_session -EXPORT_SYMBOL_GPL net/l2tp/l2tp_ip 0xfb317f1a l2tp_ioctl -EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0x337f2432 l2tp_nl_unregister_ops -EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0xed5a6275 l2tp_nl_register_ops -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x019113b2 ieee80211_iterate_active_interfaces_atomic -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x03a69344 ieee80211_remain_on_channel_expired -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x059ec67d ieee80211_color_change_finish -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x151c149b wdev_to_ieee80211_vif -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x37da3c80 ieee80211_calc_rx_airtime -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x46d14336 ieee80211_gtk_rekey_add -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x4790dbf1 ieee80211_calc_tx_airtime -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x4bd32abb ieee80211_ave_rssi -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x5250cf98 ieee80211_tkip_add_iv -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x55bdb35a ieee80211_iterate_stations_atomic -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x59c13bed ieee80211_key_mic_failure -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x5bd04f5b ieee80211_iterate_interfaces -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x6604728d ieee80211_iter_chan_contexts_atomic -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x7e796f24 ieee80211_vif_to_wdev -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x82bb2a54 ieee80211_find_sta_by_ifaddr -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x8c9e956c ieee80211_resume_disconnect -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x8efa0811 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 0xab672c83 ieee80211_ready_on_channel -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xd8e09da4 ieee80211_set_key_rx_seq -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xe900898c ieeee80211_obss_color_collision_notify -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xefe10588 ieee80211_gtk_rekey_notify -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xf1512c91 ieee80211_request_smps -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xf201e3b1 ieee80211_iterate_active_interfaces_mtx -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x06a1a63d mpls_pkt_too_big -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x207eb73e mpls_dev_mtu -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x713812a1 mpls_stats_inc_outucastpkts -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x7670b536 nla_get_labels -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xc2452cb2 mpls_output_possible -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xe6998fd1 nla_put_labels -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x01b51e47 ip_set_extensions -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x15fd93e0 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 0x2b51b53d ip_set_put_flags -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x393e3157 ip_set_get_ip4_port -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x397f6231 ip_set_free -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x3a39f98f ip_set_test -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x4075d1c9 ip_set_put_extensions -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x46d3a224 ip_set_init_comment -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x59737ab2 ip_set_put_byindex -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x7924b6de ip_set_hostmask_map -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x81fff2d1 ip_set_netmask_map -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x8f8749b0 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 0xadb425c9 ip_set_nfnl_put -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xb080267c ip_set_get_extensions -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xc1361e44 ip_set_elem_len -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xc2f87025 ip_set_add -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xc5d4cf9e ip_set_type_register -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xcf378436 ip_set_name_byindex -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xcfbd0c4a ip_set_type_unregister -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xe486932c ip_set_nfnl_get_byindex -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xed81554b ip_set_get_byname -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xf3b4d4ae ip_set_alloc -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xf4ff0e1b ip_set_match_extensions -EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x0d563b8a register_ip_vs_pe -EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x334aeb29 ip_vs_conn_out_get_proto -EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x663e7506 unregister_ip_vs_pe -EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x67339a9c ip_vs_conn_in_get_proto -EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x016d5760 nf_conncount_cache_free -EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x4a2a96d8 nf_conncount_list_init -EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x513b4c04 nf_conncount_add -EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x795f6548 nf_conncount_count -EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x88e9021d nf_conncount_init -EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x9e6823ee nf_conncount_gc_list -EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x9f62dd80 nf_conncount_destroy -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x043eae41 nf_ct_bridge_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x06239c4a nf_ct_l4proto_log_invalid -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x07b20a1e nf_ct_kill_acct -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0a07d5e0 nf_conntrack_alloc -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0bc00f80 nf_nat_helper_try_module_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0e8660d5 nf_ct_tmpl_alloc -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x12c9d668 nf_conntrack_locks -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x14fab18f nf_nat_helper_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x16ce3b11 nf_conntrack_free -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x19f06a3e nf_ct_expect_find_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1d044ce9 nf_ct_set_timeout -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1da6a2f8 nf_ct_expect_alloc -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1ea53593 nf_conntrack_unregister_notifier -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x21fdabaa nf_conntrack_expect_lock -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x25a89926 nf_nat_helper_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x263c4e6b nf_ct_set_auto_assign_helper_warned -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x26d4ba51 nf_ct_timeout_put_hook -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 0x28fa963d nf_connlabels_replace -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x296791ac nf_ct_remove_expect -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2a95aa2d nf_ct_netns_put -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2e8597f6 nf_ct_acct_add -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2f380bd7 nf_ct_unexpect_related -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x30b87856 nf_conntrack_alter_reply -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3570915c nf_conntrack_lock -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x366c4785 nf_ct_seqadj_set -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3727e441 nf_ct_expect_put -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x38adb9ae nf_ct_delete -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3efd95ad nf_ct_bridge_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x403c3129 nf_ct_untimeout -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x434aa531 nf_conntrack_eventmask_report -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x45621f06 nf_ct_destroy_timeout -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x457911b8 nf_conntrack_count -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x45cc2633 nf_ct_netns_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4a4a5bad nf_ct_iterate_destroy -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4a536b1e __nf_ct_try_assign_helper -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4b61c8d7 __nf_conntrack_confirm -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x56fb3438 nf_ct_iterate_cleanup_net -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x58a564eb nf_ct_l4proto_find -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6088d860 __nf_conntrack_helper_find -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x64d7467e nf_conntrack_helper_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x653a7984 nf_ct_helper_expectfn_find_by_symbol -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6759cf52 nf_conntrack_helper_put -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x687bf100 nf_ct_unconfirmed_destroy -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x693c3961 nf_ct_helper_hash -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6c7afa31 nf_ct_seq_offset -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6e314292 nf_ct_seq_adjust -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7141a0df nf_ct_tmpl_free -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x75703616 nf_ct_deliver_cached_events -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x78d37c83 __nf_ct_expect_find -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7ac30813 nf_ct_expect_iterate_destroy -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7b9fada8 nf_conntrack_register_notifier -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x81f0f400 nf_conntrack_hash_check_insert -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x82c3e05a nf_ct_helper_init -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8638e2a1 nf_nat_helper_put -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x87ad796a nf_confirm -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8910727f nf_conntrack_helpers_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8e6f59be nf_l4proto_log_invalid -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8ffe7e89 nf_conntrack_htable_size -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x90fcbdbb nf_ct_extend_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x91a37fed nf_ct_unlink_expect_report -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x92a97a20 nf_conntrack_helper_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x95f10d57 nf_conntrack_find_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x995232e5 nf_connlabels_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x99e6aab3 nf_ct_helper_expectfn_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xafbd6cf5 nf_ct_port_nlattr_to_tuple -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb57f7e31 nf_conntrack_helpers_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb635df78 nf_connlabels_put -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbb850345 nf_ct_gre_keymap_destroy -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbcb97d33 nf_ct_seqadj_init -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 0xc44a97ad nf_ct_helper_expectfn_find_by_name -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc67e44ae nf_conntrack_helper_try_module_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xca3411ed nf_ct_port_tuple_to_nlattr -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd3863ed5 nf_ct_get_id -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd3b975f8 nf_ct_helper_ext_add -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd43f2b2b nf_ct_gre_keymap_add -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd505c3e0 nf_ct_port_nlattr_tuple_size -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd9f829e0 nf_ct_expect_related_report -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdf0aed48 nf_ct_port_nla_policy -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe403ee74 nf_ct_tcp_seqadj_set -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe5ba738a nf_ct_helper_expectfn_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe740f1ac __nf_ct_refresh_acct -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xec8beba6 nf_ct_expect_hash -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xeda09262 nf_ct_timeout_find_get_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xeee896e7 nf_conntrack_in -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf38bcdf3 nf_conntrack_max -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf4724965 nf_ct_extend_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf6517659 nf_conntrack_tuple_taken -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf6c6e8cf nf_ct_helper_log -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf7b8234d nf_ct_get_tuplepr -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf838a519 nf_ct_expect_init -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfc7df09c nf_ct_remove_expectations -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfde24f07 nf_ct_expect_iterate_net -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfe731af8 nf_ct_invert_tuple -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_amanda 0x99d97377 nf_nat_amanda_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_broadcast 0x3661c25f nf_conntrack_broadcast_help -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_ftp 0x4240cf2a nf_nat_ftp_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x06e9121c nat_callforwarding_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x3be41806 nat_rtp_rtcp_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x918cd142 nat_t120_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x9f1091ae set_h245_addr_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xabe5f990 nat_q931_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xbf4e4065 set_h225_addr_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xc039941e set_sig_addr_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xc6a39569 get_h225_addr -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xc7e7b0df nat_h245_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xd18adea5 set_ras_addr_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_irc 0x3dc1481e nf_nat_irc_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x07fd4cec nf_nat_pptp_hook_inbound -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x3800d265 nf_nat_pptp_hook_expectfn -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x762c805e nf_nat_pptp_hook_exp_gre -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0xf1d465c1 nf_nat_pptp_hook_outbound -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x01df1cec ct_sip_get_header -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x1b9ce298 ct_sip_parse_request -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x2df51df8 ct_sip_parse_header_uri -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x399f1596 nf_nat_sip_hooks -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x65367089 ct_sip_parse_numerical_param -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xc52b655c ct_sip_get_sdp_header -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xd1ca9cd8 ct_sip_parse_address_param -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_snmp 0xd75922f0 nf_nat_snmp_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_tftp 0x403c5065 nf_nat_tftp_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0x26adfd29 nf_fwd_netdev_egress -EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0x45f2841b nf_dup_netdev_egress -EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0xa8537eab nft_fwd_dup_netdev_offload -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x0eb5123e flow_offload_lookup -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x188bf70a flow_offload_alloc -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x2e70e88f flow_offload_free -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x3b081120 nf_flow_snat_port -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x4f53b07d nf_flow_dnat_port -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x66d5b6b7 nf_flow_offload_ip_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x6e88bfb6 nf_flow_offload_ipv6_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x93be8baf flow_offload_refresh -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x97fc0805 flow_offload_route_init -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xaa6529cb nf_flow_table_offload_setup -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xb60ecd93 flow_offload_teardown -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xb62aee24 nf_flow_table_free -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xbd0326a4 nf_flow_table_cleanup -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xc499d5d8 flow_offload_add -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xcf9c7c4c nf_flow_rule_route_ipv6 -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xd054feae nf_flow_table_init -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xdde34c02 nf_flow_rule_route_ipv4 -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x0b937cb0 nf_nat_redirect_ipv6 -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x0c02b36d nf_nat_packet -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x0edc0d2b nf_nat_alloc_null_binding -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x2504cb5f nf_nat_redirect_ipv4 -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x257f3745 nf_nat_ipv6_register_fn -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x316e2ac4 nf_nat_ipv4_register_fn -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x333bb811 nf_nat_masquerade_ipv4 -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x3840fdfa 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 0x79de2c38 nf_nat_ipv4_unregister_fn -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x7a05ca47 nf_nat_inet_fn -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x942fd7fb nf_nat_inet_register_fn -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x9600b832 nf_nat_icmpv6_reply_translation -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xd9c25654 nf_nat_masquerade_inet_unregister_notifiers -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xe20c2de4 nf_nat_inet_unregister_fn -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xec5da38d nf_ct_nat_ext_add -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xf162542f nf_nat_icmp_reply_translation -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xfb8510ee nf_nat_masquerade_ipv6 -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x1f099794 synproxy_init_timestamp_cookie -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x47ab83fa synproxy_send_client_synack_ipv6 -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x56e4a7c1 ipv6_synproxy_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x58a4909c synproxy_recv_client_ack_ipv6 -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x87880837 nf_synproxy_ipv6_fini -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xa6bdc6cc synproxy_parse_options -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xb087c163 nf_synproxy_ipv6_init -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xc5f821fe nf_synproxy_ipv4_init -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xca9fc082 synproxy_net_id -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xdfadf200 synproxy_send_client_synack -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xe8120bef synproxy_recv_client_ack -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xf2f7e8aa nf_synproxy_ipv4_fini -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xfdad1c89 ipv4_synproxy_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x06c6ca47 nft_meta_policy -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x0f78aab9 nft_set_catchall_lookup -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x16cf5f2c nft_meta_set_validate -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x171c21ee nf_tables_bind_set -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x1fbf0186 nft_data_release -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x202eecf9 nft_set_lookup_global -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x2388173d nf_tables_destroy_set -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x287a9e09 nft_meta_get_dump -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x2edbef9e nft_request_module -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x3251d762 nf_tables_trans_destroy_flush_work -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x34457bb0 nf_tables_activate_set -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x3c4362c8 __nft_release_basechain -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x41b71e65 nft_trace_enabled -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x454fb9e9 nft_flowtable_lookup -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x46470868 nft_unregister_flowtable_type -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x4aa6fa97 nft_chain_validate -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x51dd5014 nft_do_chain -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x588a45f2 nft_register_flowtable_type -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x680a7287 nft_unregister_expr -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x6ce3413a nft_chain_validate_dependency -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x787a75c5 nft_unregister_chain_type -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x8388b174 nft_meta_set_eval -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x984b0a69 nft_register_chain_type -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x9a896b89 nft_meta_set_destroy -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xa39e1c4e nft_data_init -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xa430a978 nft_meta_get_eval -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xa5108392 nft_meta_set_dump -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xa5b8611c nf_tables_deactivate_flowtable -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xab37659a nf_tables_deactivate_set -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xb4728c71 nft_unregister_obj -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xb5b7a9c9 nft_chain_validate_hooks -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xb912a03c nft_dump_register -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xc02bf566 nft_data_dump -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xd037bf40 nft_parse_register_store -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 0xebae2288 nft_register_expr -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xed259cd9 nft_obj_notify -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xf2db3240 nft_obj_lookup -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xf332591f nft_set_elem_destroy -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xf462b317 nft_register_obj -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xfc18beea nft_meta_set_init -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xfe35740d nft_meta_get_init -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x1e3f2a7f nfnetlink_broadcast -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x231629c7 nfnetlink_subsys_register -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x5ce3b588 nfnl_lock -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x98dd0e38 nfnetlink_send -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xa4478aac nfnetlink_has_listeners -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xb4a47cf1 nfnetlink_unicast -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xdb065657 nfnl_unlock -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xf8103385 nfnetlink_subsys_unregister -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xfca5a44d nfnetlink_set_err -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x2e5b6a5e nfnl_acct_overquota -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x5e351635 nfnl_acct_find_get -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xa8be65c3 nfnl_acct_update -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xbecf5d14 nfnl_acct_put -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_osf 0x1b2b01a7 nf_osf_match -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_osf 0x35eff5e0 nf_osf_fingers -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_osf 0x44118753 nf_osf_find -EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0x1d907116 nft_fib_validate -EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0x415036dd nft_fib_dump -EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0x76327e06 nft_fib_store_result -EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0xb6457f20 nft_fib_init -EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x05604150 nft_reject_validate -EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x1de558c1 nft_reject_icmpv6_code -EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x22c46fd2 nft_reject_dump -EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x36ec09e0 nft_reject_init -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 0x04e27719 xt_compat_flush_offsets -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x07d2bce1 xt_register_template -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x0cf6be71 xt_target_to_user -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x2bbbc41f xt_compat_target_offset -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x3674ddd7 xt_unregister_template -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x468c4b4f xt_register_table -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x46e489bc xt_compat_target_to_user -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x4e4d6d34 xt_hook_ops_alloc -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x5dd2b9c9 xt_match_to_user -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x6c8d4f7b xt_replace_table -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x73c1a7aa xt_compat_target_from_user -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x7bce4603 xt_data_to_user -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x7c3cf7b4 xt_compat_match_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 0x83c3ee81 xt_request_find_match -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x946934e9 xt_request_find_target -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x9923888f xt_check_match -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 0xa9347e1d xt_compat_match_from_user -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xbc0ac573 xt_table_unlock -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xbf1dbc81 xt_compat_match_offset -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 0xcbd7ce74 xt_unregister_table -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xcf6036cd xt_check_target -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xd1e246a2 xt_compat_unlock -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xd3fcc511 xt_tee_enabled -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xd909786a xt_request_find_table_lock -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xd9bb821b xt_copy_counters -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xdc354739 xt_proto_init -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xddf68fc6 xt_find_revision -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xe23f056a xt_find_table_lock -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xff5832b9 xt_proto_fini -EXPORT_SYMBOL_GPL net/netfilter/xt_RATEEST 0x62fc1f17 xt_rateest_put -EXPORT_SYMBOL_GPL net/netfilter/xt_RATEEST 0x89d45789 xt_rateest_lookup -EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0x78ac12a1 nci_spi_allocate_spi -EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0x7fb3571f nci_spi_read -EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0xfb084a1a nci_spi_send -EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0x161786f1 nci_uart_unregister -EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0x7b949974 nci_uart_set_config -EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0xb40e2e8d nci_uart_register -EXPORT_SYMBOL_GPL net/nsh/nsh 0x312b16f7 nsh_push -EXPORT_SYMBOL_GPL net/nsh/nsh 0x6d486402 nsh_pop -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x2476bbf1 ovs_netdev_tunnel_destroy -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x2a4bd733 ovs_vport_ops_unregister -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x89f8304a ovs_vport_free -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xb5cc1322 __ovs_vport_ops_register -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xb748aaea ovs_vport_alloc -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xda077fb8 ovs_netdev_link -EXPORT_SYMBOL_GPL net/psample/psample 0x05e907c6 psample_group_get -EXPORT_SYMBOL_GPL net/psample/psample 0x2840a9bc psample_group_put -EXPORT_SYMBOL_GPL net/psample/psample 0x9f854f66 psample_group_take -EXPORT_SYMBOL_GPL net/psample/psample 0xe71c7808 psample_sample_packet -EXPORT_SYMBOL_GPL net/qrtr/qrtr 0x0ba44f3b qrtr_endpoint_post -EXPORT_SYMBOL_GPL net/qrtr/qrtr 0x322409db qrtr_endpoint_unregister -EXPORT_SYMBOL_GPL net/qrtr/qrtr 0x8d25501f qrtr_ns_remove -EXPORT_SYMBOL_GPL net/qrtr/qrtr 0xa47e91ba qrtr_ns_init -EXPORT_SYMBOL_GPL net/qrtr/qrtr 0xdcc47c24 qrtr_endpoint_register -EXPORT_SYMBOL_GPL net/rds/rds 0x0016a694 rds_conn_create -EXPORT_SYMBOL_GPL net/rds/rds 0x00a467af rds_wq -EXPORT_SYMBOL_GPL net/rds/rds 0x0f27f40f rds_message_addref -EXPORT_SYMBOL_GPL net/rds/rds 0x12319384 rds_inc_put -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 0x3d0d8c72 rds_conn_path_connect_if_down -EXPORT_SYMBOL_GPL net/rds/rds 0x3ddb64a9 rds_recv_incoming -EXPORT_SYMBOL_GPL net/rds/rds 0x45a4781e rds_addr_cmp -EXPORT_SYMBOL_GPL net/rds/rds 0x4a894e29 rds_cong_map_updated -EXPORT_SYMBOL_GPL net/rds/rds 0x4e00c8e7 rds_connect_complete -EXPORT_SYMBOL_GPL net/rds/rds 0x51e53ea1 rds_message_put -EXPORT_SYMBOL_GPL net/rds/rds 0x546b81f9 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 0x5b2d6d9d rds_conn_destroy -EXPORT_SYMBOL_GPL net/rds/rds 0x5b4411cf rds_inc_init -EXPORT_SYMBOL_GPL net/rds/rds 0x67c6d668 rds_conn_drop -EXPORT_SYMBOL_GPL net/rds/rds 0x6a658d9b rds_info_deregister_func -EXPORT_SYMBOL_GPL net/rds/rds 0x74e07f75 rds_send_ping -EXPORT_SYMBOL_GPL net/rds/rds 0x774e3b98 rds_connect_path_complete -EXPORT_SYMBOL_GPL net/rds/rds 0x7b399e66 rds_page_remainder_alloc -EXPORT_SYMBOL_GPL net/rds/rds 0x7c69a366 rds_send_path_reset -EXPORT_SYMBOL_GPL net/rds/rds 0x80b0d733 rds_send_xmit -EXPORT_SYMBOL_GPL net/rds/rds 0x82387bec rds_message_unmapped -EXPORT_SYMBOL_GPL net/rds/rds 0x82d624be rds_send_path_drop_acked -EXPORT_SYMBOL_GPL net/rds/rds 0x85e4e520 rds_stats_info_copy -EXPORT_SYMBOL_GPL net/rds/rds 0x8d8d2553 rds_info_register_func -EXPORT_SYMBOL_GPL net/rds/rds 0xa0b4ff97 rds_inc_path_init -EXPORT_SYMBOL_GPL net/rds/rds 0xadad0978 rds_for_each_conn_info -EXPORT_SYMBOL_GPL net/rds/rds 0xc2dab779 rds_info_copy -EXPORT_SYMBOL_GPL net/rds/rds 0xc90483c3 rds_send_drop_acked -EXPORT_SYMBOL_GPL net/rds/rds 0xce88e52a rds_atomic_send_complete -EXPORT_SYMBOL_GPL net/rds/rds 0xe4d2faf7 rds_conn_connect_if_down -EXPORT_SYMBOL_GPL net/rds/rds 0xe5a62a58 rds_conn_create_outgoing -EXPORT_SYMBOL_GPL net/rds/rds 0xece17467 rds_rdma_send_complete -EXPORT_SYMBOL_GPL net/rds/rds 0xefe1ead1 rds_trans_unregister -EXPORT_SYMBOL_GPL net/rds/rds 0xf1a924d5 rds_conn_path_drop -EXPORT_SYMBOL_GPL net/sched/sch_pie 0x4ba09121 pie_drop_early -EXPORT_SYMBOL_GPL net/sched/sch_pie 0x6ce9b467 pie_calculate_probability -EXPORT_SYMBOL_GPL net/sched/sch_pie 0xdd6eff2b 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 0x06ba3b32 sctp_transport_lookup_process -EXPORT_SYMBOL_GPL net/sctp/sctp 0xbaa1effa sctp_get_sctp_info -EXPORT_SYMBOL_GPL net/sctp/sctp 0xe6d3e974 sctp_for_each_endpoint -EXPORT_SYMBOL_GPL net/sctp/sctp 0xeed21310 sctp_transport_traverse_process -EXPORT_SYMBOL_GPL net/smc/smc 0x415b76c8 smcd_alloc_dev -EXPORT_SYMBOL_GPL net/smc/smc 0x4a3cb1a5 smc_hash_sk -EXPORT_SYMBOL_GPL net/smc/smc 0x50ae0a08 smcd_free_dev -EXPORT_SYMBOL_GPL net/smc/smc 0x7a8557e8 smcd_handle_event -EXPORT_SYMBOL_GPL net/smc/smc 0xb1034a69 smc_proto -EXPORT_SYMBOL_GPL net/smc/smc 0xbd6d6f0a smcd_register_dev -EXPORT_SYMBOL_GPL net/smc/smc 0xc12ba024 smc_proto6 -EXPORT_SYMBOL_GPL net/smc/smc 0xde71ead6 smcd_unregister_dev -EXPORT_SYMBOL_GPL net/smc/smc 0xf49c1b7d smcd_handle_irq -EXPORT_SYMBOL_GPL net/smc/smc 0xfaaa5d70 smc_unhash_sk -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x1ec32bd8 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 0x3db6a31c svcauth_gss_flavor -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x482ac5a4 g_token_size -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xd5e063d5 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 0xf8c0e86e gss_mech_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00854c76 svc_generic_rpcbind_set -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x019eec71 svc_reg_xprt_class -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x029dc28f svc_xprt_do_enqueue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x057c4225 xprt_wait_for_reply_request_rtt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x05e807a9 xdr_encode_string -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0610ce2f xdr_inline_decode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x06431cbd xprt_alloc_slot -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x065994f1 xdr_encode_opaque_fixed -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x07014a55 rpc_proc_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0bae7a4f rpcauth_init_cred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0c97052f xdr_buf_subsegment -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0d850364 rpcauth_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0d90381b write_bytes_to_xdr_buf -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1102b222 rpc_clnt_swap_deactivate -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x11215068 xdr_read_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x11b11960 rpc_pton -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1238f29d rpc_wake_up_first -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x12479eb0 xprt_free -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x12a4238a rpc_count_iostats -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x12e6b30c svc_xprt_names -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x133be6d4 cache_seq_stop_rcu -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x136f5e45 rpc_destroy_pipe_data -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1400d97c xprt_complete_rqst -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x14802d0d xprt_update_rtt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x16715940 svc_bind -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x17da8cde cache_seq_next_rcu -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x18b43c9b auth_domain_lookup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1b1b489e xdr_stream_decode_string -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1d9ffca0 rpc_clnt_setup_test_and_add_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1daa0fdd xprt_setup_backchannel -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1db8dc7a 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 0x20100f7a cache_purge -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2054530b svc_print_addr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x21d676c5 sunrpc_init_cache_detail -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x220d4299 xprt_reconnect_delay -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x22b7b546 rpc_put_task_async -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x23193eac rpcauth_lookup_credcache -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x24f49d16 rpc_set_connect_timeout -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x26b9763f svc_recv -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2919b156 xdr_decode_string_inplace -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x294b6811 rpc_init_pipe_dir_head -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2aad6c36 xdr_align_data -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2b431c36 rpc_task_release_transport -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2cae0b96 xdr_buf_trim -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2d9eb2e5 rpcauth_init_credcache -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2ed42b47 sunrpc_cache_unregister_pipefs -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x30123943 rpc_sleep_on_priority_timeout -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x31a89d59 rpc_debug -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x31aa69e2 svc_authenticate -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x322dc0e0 svc_create_pooled -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3439fc3f rpc_net_ns -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x36420c52 bc_svc_process -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x36dcc9a7 sunrpc_cache_unhash -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x37ef25c4 rpc_release_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x387e1639 rpc_pipefs_notifier_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x39a8f53e cache_destroy_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3a2c6193 xprt_free_slot -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3c3970ac csum_partial_copy_to_xdr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3d751249 rpc_exit -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3db6854a xdr_buf_from_iov -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3f9a2b0b rpcauth_get_gssinfo -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x41899970 xprt_wait_for_buffer_space -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x43234454 xprt_reconnect_backoff -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x44033849 xprt_lookup_rqst -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x44a43edc svc_rqst_alloc -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x453efa54 svc_pool_map -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x462b065a rpcauth_lookupcred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x465d1842 rpc_call_async -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x47a8cfcb xprt_adjust_cwnd -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4afedab1 xprtiod_workqueue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4b1bd657 xdr_inline_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4bf3837a rpc_sleep_on_priority -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4dac77f0 xdr_encode_netobj -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4db429d7 svc_shutdown_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4e8f6ca7 sunrpc_net_id -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x500c6902 cache_register_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x50b78f2c xprt_pin_rqst -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x53445f68 nlm_debug -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5401dc8b xdr_encode_array2 -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x555c0478 rpc_free -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x557ebe05 svc_xprt_put -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x56667264 rpcauth_destroy_credcache -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x57c0b21b rpc_clone_client_set_auth -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x57de6580 svc_alien_sock -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x58728bff cache_unregister_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5888e44c svc_proc_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x58938bf9 svc_xprt_copy_addrs -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x590e194c svc_auth_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5a45ba31 svc_auth_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5aa1f173 xdr_reserve_space_vec -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5ba408b6 rpc_setbufsize -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5bf0edd4 rpc_clnt_xprt_switch_put -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5cb1158e rpc_clnt_test_and_add_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5cbf4d9a xdr_reserve_space -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5f3a7998 xdr_commit_encode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5f6b0f9e svc_destroy -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x61139d81 svc_process -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x62f6e5b0 rpc_uaddr2sockaddr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x63043cb3 rpc_malloc -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6324c3da sunrpc_cache_pipe_upcall_timeout -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x63d8fa38 rpc_add_pipe_dir_object -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x68862ab7 rpc_put_task -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x68acd868 xdr_stream_pos -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x697ee3d3 gssd_running -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6a4e40e3 xprt_release_rqst_cong -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6adc1c0b rpc_wake_up_next -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6cc5ef0a xdr_terminate_string -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6cf15b7c rpc_remove_pipe_dir_object -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6e96b290 svc_seq_show -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6fb0fc2b rpc_mkpipe_dentry -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x706c242d rpc_wake_up_status -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x70b5714f sunrpc_cache_register_pipefs -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x71a2c42e rpc_mkpipe_data -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x71fa908a cache_flush -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x73ce8c79 svc_wake_up -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x74d28c80 rpc_queue_upcall -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x774d8b55 xprt_unpin_rqst -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x77af2095 rpc_get_sb_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x78004a61 xdr_stream_subsegment -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x78d0f455 xprt_disconnect_done -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x78f7ab24 svc_fill_write_vector -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7930721b svc_set_num_threads -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x79dd73ce xprt_write_space -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7aab5b93 xdr_init_decode_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7b45c851 auth_domain_put -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7c17e295 svc_create -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7cc97ab3 xprt_register_transport -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7da7c46a xprt_add_backlog -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7dc6a834 rpc_clnt_xprt_switch_has_addr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7dd60ff6 rpc_max_bc_payload -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7de53067 rpc_init_rtt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7e41e676 xprt_put -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8109fc6a rpcauth_stringify_acceptor -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x81f7c556 _copy_from_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8261b8a4 xdr_page_pos -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x837cd5ed rpc_proc_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x85f8f2a4 rpc_pipe_generic_upcall -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x87e7cbb1 xprt_reserve_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x87f596c2 svc_unreg_xprt_class -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8a0b7211 svc_xprt_deferred_close -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8aec52cb svc_reserve -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8bb3a94c sunrpc_cache_lookup_rcu -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8d67315b xprt_destroy_backchannel -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8f66ca5d rpc_num_bc_slots -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x92dc2fc1 rpc_destroy_wait_queue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9416c973 xprt_wait_for_reply_request_def -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x96133760 xprt_force_disconnect -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x975f739f svc_rpcbind_set_version -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x98102ab1 rpcauth_wrap_req_encode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9838fcf1 xdr_shift_buf -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9a0d5af3 rpc_init_priority_wait_queue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9a95d35b xdr_process_buf -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9b1db1ce rpc_clnt_xprt_switch_add_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9caced8a rpc_bind_new_program -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9cd26a2d xdr_stream_decode_opaque -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9cf73a4e svc_addsock -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa13acdb8 svc_pool_map_put -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa193147a rpc_prepare_reply_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa26718ec rpc_machine_cred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa497f03f rpc_call_null -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa5d02a51 rpc_restart_call_prepare -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa707b408 rpc_delay -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa8d0b240 rpc_max_payload -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaae10556 rpc_run_task -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xab96afff svc_max_payload -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xac16a137 svc_drop -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xac415da2 xprt_lock_connect -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xad167400 rpc_sleep_on -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xae861866 xdr_decode_array2 -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaf5bf6ef nfs_debug -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb032e524 svc_close_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb0701399 xdr_expand_hole -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb0ab23de rpcauth_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb1ab50c4 rpc_find_or_alloc_pipe_dir_object -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb312d0c4 svc_pool_map_get -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb340050d sunrpc_cache_update -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb3811143 cache_create_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb51a3724 rpc_pipefs_notifier_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb7ae9a39 xprt_alloc -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb7b4a6eb rpc_free_iostats -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbc657bed read_bytes_from_xdr_buf -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbc9ce714 sunrpc_cache_pipe_upcall -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbd5a33e3 rpc_killall_tasks -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbe2e1646 put_rpccred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbf1ae251 xprt_request_get_cong -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbf9d1b96 nfsd_debug -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc0b0c489 svc_set_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc0f638ac rpc_shutdown_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc12435e3 rpc_calc_rto -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc1bc9c56 xdr_stream_decode_string_dup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc2058f72 svc_exit_thread -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc271ce25 auth_domain_find -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc285ebbe svcauth_unix_set_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc3459e52 svc_find_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc45488c3 xdr_decode_word -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc4574089 xdr_encode_word -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc599e84b sunrpc_destroy_cache_detail -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc65d0696 svc_sock_update_bufs -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc682cae0 rpc_wake_up -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc691bfdf svc_xprt_init -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc70803e9 xprt_reserve_xprt_cong -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc779766e svc_generic_init_request -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc85b46d5 rpcauth_create -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc8e96dea qword_addhex -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc9657c2b svcauth_unix_purge -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc9abc273 rpc_clnt_swap_activate -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xca4e7646 __rpc_wait_for_completion_task -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xca7b7bf9 rpc_peeraddr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xca8c9c3b xprt_wake_up_backlog -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcb5a3379 xprt_release_xprt_cong -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xce65fce9 rpc_init_wait_queue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xce678a59 xdr_decode_netobj -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcebfa10c svc_age_temp_xprts_now -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd06bf1bd rpc_restart_call -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd0dd835b rpc_create -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd171ce60 rpc_localaddr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd1994d6f svc_create_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd23af858 rpc_count_iostats_metrics -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd5fe9f6f svc_rpcb_cleanup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd612629f svc_xprt_enqueue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd652975a xprt_unregister_transport -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd6973942 rpc_d_lookup_sb -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd91bc51f rpc_alloc_iostats -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd9eb3c2c svc_rpcb_setup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdb59756d rpc_call_start -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdc96d051 rpc_clnt_show_stats -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdd691402 xprt_find_transport_ident -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xde858ce5 svc_xprt_received -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe006fdd0 xdr_init_decode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe0bab878 rpc_clnt_iterate_for_each_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe12eebfc rpc_force_rebind -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe1f1e2d2 rpc_put_sb_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe3d2f5a7 rpc_sleep_on_timeout -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe539a5b3 rpc_clnt_add_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe58a3e4f xprt_unlock_connect -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe5919cb1 xdr_encode_opaque -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe5b79e30 xdr_enter_page -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe602a820 svc_rqst_free -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe6e56f76 rpcb_getport_async -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe7313e34 rpc_call_sync -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe7e17e70 xdr_stream_decode_opaque_dup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe7f161f1 svc_prepare_thread -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe8d9f88e svc_fill_symlink_pathname -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe931a5ff rpcauth_unwrap_resp_decode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe97f4ce5 qword_get -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xea86eaed xdr_init_encode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xec3eb831 rpc_switch_client_transport -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xedcf6be4 qword_add -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xee17632f svc_rqst_replace_page -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeeacab69 rpc_update_rtt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeee48f21 cache_check -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf002b230 rpc_task_timeout -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf73f2a78 rpc_clone_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf78d0eac rpc_unlink -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf80e997f rpc_wake_up_queued_task -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf86f901e svc_encode_result_payload -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf94a3ad4 cache_seq_start_rcu -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf96d51a0 rpc_peeraddr2str -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf9b87672 xprt_wake_pending_tasks -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfc00a891 rpc_init_pipe_dir_object -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfc753dfd xprt_release_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfd216f05 unix_domain_find -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfef9a66c xdr_write_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xffaa1520 svc_set_num_threads_sync -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xffc21c14 svc_proc_unregister -EXPORT_SYMBOL_GPL net/tls/tls 0x02cf8d7f tls_device_sk_destruct -EXPORT_SYMBOL_GPL net/tls/tls 0x6e952e9e tls_offload_tx_resync_request -EXPORT_SYMBOL_GPL net/tls/tls 0x908b2c5a tls_validate_xmit_skb -EXPORT_SYMBOL_GPL net/tls/tls 0xc77daf3d tls_encrypt_skb -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x03021eba virtio_transport_notify_send_pre_enqueue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x03a81e69 virtio_transport_stream_allow -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x13862b9b virtio_transport_free_pkt -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x14623ff3 virtio_transport_shutdown -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x2544463b virtio_transport_dgram_bind -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x28945496 virtio_transport_seqpacket_enqueue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x2d23ccb4 virtio_transport_recv_pkt -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x2ddd656c virtio_transport_notify_poll_in -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x3379746c virtio_transport_notify_send_pre_block -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x444c5763 virtio_transport_notify_send_post_enqueue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x491198be virtio_transport_seqpacket_dequeue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x4c7a7a85 virtio_transport_notify_buffer_size -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x4ff178ae virtio_transport_release -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x64126216 virtio_transport_stream_has_space -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x6ce9eca7 virtio_transport_notify_recv_init -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x78a48f64 virtio_transport_notify_poll_out -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x83df9f93 virtio_transport_dgram_enqueue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x92cfd4a3 virtio_transport_seqpacket_has_data -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x95bba1b1 virtio_transport_stream_rcvhiwat -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xa399e0e9 virtio_transport_notify_recv_pre_block -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xb5841656 virtio_transport_stream_enqueue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xb92220da virtio_transport_get_credit -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xbabd30f5 virtio_transport_dgram_allow -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xbec78b74 virtio_transport_dgram_dequeue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xc0d0fd07 virtio_transport_deliver_tap_pkt -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xc5737702 virtio_transport_destruct -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xcc20f352 virtio_transport_notify_recv_post_dequeue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xdb97b100 virtio_transport_put_credit -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xdbb5b25e virtio_transport_do_socket_init -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xe22f3849 virtio_transport_inc_tx_pkt -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xe7593664 virtio_transport_stream_is_active -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xeb633774 virtio_transport_stream_has_data -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xee5793af virtio_transport_stream_dequeue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xf8a0a918 virtio_transport_notify_send_init -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xf95ffdbf virtio_transport_notify_recv_pre_dequeue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xfcc4eae9 virtio_transport_connect -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x0e9bc9b6 vsock_addr_unbind -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x15d317db vsock_remove_tap -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x1b9f1e4c vsock_remove_connected -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x1f7aeed5 vsock_enqueue_accept -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x284e07d8 vsock_bind_table -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x33a37a3a vsock_create_connected -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x353de110 vsock_core_get_transport -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x38aa15cd vsock_find_connected_socket -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x3d2d27e6 vsock_add_pending -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x3d4b0fca vsock_addr_init -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x3f94e8b6 vsock_assign_transport -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x411b58f6 vsock_add_tap -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x497433a2 vsock_remove_sock -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x4b99648c vsock_addr_bound -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x70b74425 vsock_insert_connected -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x77c14317 vsock_addr_cast -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x873fb016 vsock_stream_has_data -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x8a7f52eb vsock_stream_has_space -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x8cd405f4 vsock_find_bound_socket -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x90aa8549 vsock_find_cid -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x9bb6fd09 vsock_connected_table -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xa184d1cd vsock_core_unregister -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xaf2674b5 vsock_addr_equals_addr -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xc33c572a vsock_deliver_tap -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xc46ea8a2 vsock_core_register -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xc6aed1de vsock_table_lock -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xd7a2a853 vsock_remove_pending -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xd7fd5f01 vsock_remove_bound -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xec96eadf vsock_addr_validate -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xed18a507 vsock_for_each_connected_socket -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x00bf3cf5 cfg80211_wext_siwrts -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x174a10d5 cfg80211_vendor_cmd_reply -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x36100401 cfg80211_wext_siwscan -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x3e4e8aca cfg80211_wext_giwname -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x4f49bdc6 cfg80211_pmsr_report -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x57525756 cfg80211_wext_siwmode -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x72bd4b5a cfg80211_wext_giwscan -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x82997201 cfg80211_wext_giwmode -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x8c21d92b cfg80211_wext_giwrts -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x9619f09a cfg80211_vendor_cmd_get_sender -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x96ea932f cfg80211_wext_giwretry -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xa6f77cc5 cfg80211_shutdown_all_interfaces -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xac89dfa0 cfg80211_wext_giwfrag -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xc2008e57 cfg80211_pmsr_complete -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xcd6ebe96 cfg80211_wext_siwfrag -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xfef66863 cfg80211_wext_giwrange -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x0049ca83 xfrm_aead_get_byname -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x00c80741 xfrm_ealg_get_byid -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x0a575945 xfrm_count_pfkey_auth_supported -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 0x320fcaa3 ipcomp_output -EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x75cb212a ipcomp_init_state -EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x91901e11 ipcomp_destroy -EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0xdc3c84ec ipcomp_input -EXPORT_SYMBOL_GPL net/xfrm/xfrm_user 0x4a0c7516 xfrm_msg_min -EXPORT_SYMBOL_GPL net/xfrm/xfrm_user 0xe2521b1c xfrma_policy -EXPORT_SYMBOL_GPL sound/ac97_bus 0x0a68cafc 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 0x29af1db9 snd_ctl_apply_vmaster_followers -EXPORT_SYMBOL_GPL sound/core/snd 0x3cc31d68 snd_device_disconnect -EXPORT_SYMBOL_GPL sound/core/snd 0x4615bd40 snd_card_rw_proc_new -EXPORT_SYMBOL_GPL sound/core/snd 0x4cb23df0 snd_ctl_add_vmaster_hook -EXPORT_SYMBOL_GPL sound/core/snd 0x539f4f95 snd_ctl_register_layer -EXPORT_SYMBOL_GPL sound/core/snd 0x5af762f1 snd_fasync_free -EXPORT_SYMBOL_GPL sound/core/snd 0x5c25e495 snd_ctl_sync_vmaster -EXPORT_SYMBOL_GPL sound/core/snd 0x5dd79282 snd_power_ref_and_wait -EXPORT_SYMBOL_GPL sound/core/snd 0x69a33ac2 snd_device_get_state -EXPORT_SYMBOL_GPL sound/core/snd 0x6d2f9003 snd_card_free_on_error -EXPORT_SYMBOL_GPL sound/core/snd 0x83aa93a7 snd_card_disconnect_sync -EXPORT_SYMBOL_GPL sound/core/snd 0xa7100aba snd_ctl_disconnect_layer -EXPORT_SYMBOL_GPL sound/core/snd 0xb76dc936 snd_card_add_dev_attr -EXPORT_SYMBOL_GPL sound/core/snd 0xd276730d snd_device_initialize -EXPORT_SYMBOL_GPL sound/core/snd 0xd40fca9f snd_ctl_get_preferred_subdevice -EXPORT_SYMBOL_GPL sound/core/snd 0xdc87d97f snd_card_ref -EXPORT_SYMBOL_GPL sound/core/snd 0xe124e0f4 snd_ctl_activate_id -EXPORT_SYMBOL_GPL sound/core/snd 0xe30d393f snd_devm_card_new -EXPORT_SYMBOL_GPL sound/core/snd 0xe6c7a2bb snd_fasync_helper -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 0x17c1e610 snd_compr_stop_error -EXPORT_SYMBOL_GPL sound/core/snd-compress 0xdb37c940 snd_compress_new -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x04e1b99f snd_pcm_std_chmaps -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x09d36eb6 snd_pcm_lib_default_mmap -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x09e913c1 snd_pcm_alt_chmaps -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x0c077351 _snd_pcm_stream_lock_irqsave -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x0ff71483 snd_pcm_hw_constraint_eld -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x46be6287 snd_pcm_stop_xrun -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x5c407196 snd_pcm_fill_iec958_consumer_hw_params -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x649892e8 snd_pcm_create_iec958_consumer_default -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x67709737 snd_pcm_stream_unlock_irq -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x77f0434d snd_pcm_stream_lock -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x817b9f34 snd_devm_alloc_pages -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x8d864069 snd_pcm_rate_range_to_bits -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xa286a234 snd_pcm_format_name -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xa60eca02 snd_pcm_stream_lock_irq -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xab8bc1a2 snd_pcm_rate_mask_intersect -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xb651daab snd_pcm_add_chmap_ctls -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xe3c61ea3 _snd_pcm_stream_lock_irqsave_nested -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xf3e4b06e snd_pcm_stream_unlock -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xf69c15a6 snd_pcm_stream_unlock_irqrestore -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xf9302504 snd_pcm_fill_iec958_consumer -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x193c108c snd_dmaengine_pcm_pointer_no_residue -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x2690ed26 snd_hwparams_to_dma_slave_config -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x2fb2e3d7 snd_dmaengine_pcm_pointer -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x32e824d5 snd_dmaengine_pcm_open_request_chan -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x370d19d0 snd_dmaengine_pcm_set_config_from_dai_data -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x39bf20db snd_dmaengine_pcm_get_chan -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x5b966391 snd_dmaengine_pcm_close -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x9aca6271 snd_dmaengine_pcm_trigger -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xb2d2fe43 snd_dmaengine_pcm_refine_runtime_hwparams -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xdede87e5 snd_dmaengine_pcm_close_release_chan -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xe33df471 snd_dmaengine_pcm_request_channel -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xf0058ea4 snd_dmaengine_pcm_open -EXPORT_SYMBOL_GPL sound/core/snd-seq-device 0x18297479 __snd_seq_driver_register -EXPORT_SYMBOL_GPL sound/core/snd-seq-device 0xc0072829 snd_seq_driver_unregister -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x097d43e6 amdtp_am824_set_midi_position -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x1992ca94 amdtp_domain_stop -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x217c051a amdtp_domain_stream_pcm_pointer -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x31be42b1 amdtp_domain_init -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x6c84d48a amdtp_am824_init -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x6e34e855 amdtp_am824_midi_trigger -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x7dec509c amdtp_domain_start -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x85e87ed8 amdtp_domain_add_stream -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x97d7c13d amdtp_am824_set_parameters -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xa16ab0cf amdtp_am824_add_pcm_hw_constraints -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xaae05635 amdtp_domain_stream_pcm_ack -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xe5151b5e amdtp_am824_set_pcm_position -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xe9344d75 amdtp_domain_destroy -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x05636f93 snd_hdac_aligned_read -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x08f986af snd_hdac_stop_streams -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0ac41c0f snd_hdac_get_stream -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0ca45c3d hdac_get_device_id -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1488641f snd_hdac_aligned_write -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x158b148c snd_hdac_stream_set_params -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1afcaff3 snd_hdac_regmap_update_raw -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x251d8add snd_hdac_bus_exit -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x25c36d49 snd_hdac_codec_modalias -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x261f152c snd_hdac_bus_exec_verb_unlocked -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x27827a65 snd_hdac_dsp_cleanup -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2b1b6577 snd_hdac_stream_sync_trigger -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x373f168c snd_hdac_stream_setup_periods -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3bd544c2 snd_hdac_get_active_channels -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3ed65b7f snd_hdac_stream_reset -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3fff0d84 snd_hdac_bus_alloc_stream_pages -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x415f8392 snd_hdac_codec_link_down -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x41cab357 snd_hdac_stream_start -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x41e32698 snd_hda_bus_type -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x47ec647b snd_hdac_bus_reset_link -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4bbc83c6 snd_hdac_stream_clear -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4c7ec4b6 snd_hdac_get_ch_alloc_from_ca -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4dbf6367 snd_hdac_device_set_chip_name -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x50bd64c7 snd_hdac_stream_timecounter_init -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x50d21d44 snd_hdac_power_up -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x52c6cded snd_hdac_acomp_get_eld -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x56aa4f43 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 0x617e6a1a snd_hdac_device_register -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x6358a9a7 snd_hdac_bus_parse_capabilities -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x673717cc snd_hdac_is_supported_format -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x67bfe791 snd_hdac_spk_to_chmap -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x6ea60249 snd_hdac_set_codec_wakeup -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x77c754a8 snd_hdac_chmap_to_spk_mask -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7827c2f8 snd_hdac_read_parm_uncached -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x78777d7e snd_hdac_stream_cleanup -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7b039557 snd_hdac_codec_write -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x81a69fe4 snd_hdac_channel_allocation -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x83ab64de snd_hdac_device_unregister -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x84c34e8e snd_hdac_regmap_add_vendor_verb -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x85fdb4fd snd_hdac_stream_setup -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x860b6b12 snd_hdac_regmap_update_raw_once -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x88a237ee snd_hdac_bus_get_response -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8b3500ee snd_hdac_bus_update_rirb -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8d5efc7b snd_hdac_regmap_exit -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8ed1e21c snd_hdac_power_up_pm -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8fc1b621 snd_hdac_bus_enter_link_reset -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8ffa9483 snd_hdac_sync_power_state -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x913546ba snd_hdac_power_down -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x94b002a7 snd_hdac_bus_init_chip -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x950041bd snd_hdac_regmap_init -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x99b52889 snd_hdac_bus_handle_stream_irq -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9a7f9ee3 snd_hdac_dsp_prepare -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9a8e1877 snd_array_free -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9ca9acd9 snd_hdac_regmap_write_raw -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa24349dc snd_hdac_codec_link_up -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa62e42b3 snd_hdac_get_stream_stripe_ctl -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa7beb71f snd_hdac_codec_read -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb04710a1 snd_hdac_dsp_trigger -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb17538a8 snd_hdac_get_sub_nodes -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb4555da1 snd_hdac_override_parm -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb52b9433 snd_hdac_device_init -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbe7dd7dc snd_array_new -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc0f9b857 _snd_hdac_read_parm -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc17d7b92 snd_hdac_bus_exit_link_reset -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc39d642e snd_hdac_acomp_register_notifier -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc3b00181 snd_hdac_bus_send_cmd -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc59b176a snd_hdac_register_chmap_ops -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc64123ff snd_hdac_bus_init_cmd_io -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc794e4ab snd_hdac_stream_assign -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xccf974b1 snd_hdac_regmap_read_raw -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xcd270d40 snd_hdac_read -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xcd3e2be3 snd_hdac_regmap_sync -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xcd7d8ede snd_hdac_check_power_state -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xcdb5a695 snd_hdac_bus_stop_chip -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd27f4c4f snd_hdac_stop_streams_and_chip -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd3ea16b5 snd_hdac_stream_sync -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd8bcaaf5 snd_hdac_stream_stop -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd8e4272c snd_hdac_get_connections -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xdae1763a snd_hdac_setup_channel_mapping -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xdf7d4856 snd_hdac_acomp_exit -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe0319f97 snd_hdac_sync_audio_rate -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe147a6ca snd_hdac_bus_init -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe4e07754 snd_hdac_print_channel_allocation -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe8bd45cc snd_hdac_refresh_widgets -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe94c37ef snd_hdac_acomp_init -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe951576a snd_hdac_add_chmap_ctls -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xea5aa913 snd_hdac_query_supported_pcm -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xeb47ca4b snd_hdac_bus_link_power -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xec7e1872 snd_hdac_bus_free_stream_pages -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf2720654 snd_hdac_bus_stop_cmd_io -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf4e03552 snd_hdac_stream_init -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf94d7367 snd_hdac_stream_release -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xfd6a6279 snd_hdac_display_power -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xfe4dd160 snd_hdac_device_exit -EXPORT_SYMBOL_GPL sound/hda/snd-intel-dspcfg 0x135d8e0d snd_intel_dsp_driver_probe -EXPORT_SYMBOL_GPL sound/hda/snd-intel-dspcfg 0x4e859456 intel_nhlt_free -EXPORT_SYMBOL_GPL sound/hda/snd-intel-dspcfg 0x63c6a179 intel_nhlt_init -EXPORT_SYMBOL_GPL sound/hda/snd-intel-dspcfg 0x7d037491 intel_nhlt_get_dmic_geo -EXPORT_SYMBOL_GPL sound/hda/snd-intel-dspcfg 0xebd8176d snd_intel_acpi_dsp_driver_probe -EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x3aed3087 snd_ak4113_reg_write -EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x5b948df3 snd_ak4113_check_rate_and_errors -EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x89d56466 snd_ak4113_build -EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x94c1e054 snd_ak4113_reinit -EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xa82fc695 snd_ak4113_external_rate -EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xc4febe77 snd_ak4113_create -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x029bc2c3 snd_hda_jack_pin_sense -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0546f11f snd_hda_codec_amp_stereo -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0676f5ac snd_hda_get_input_pin_attr -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x08878813 snd_hda_codec_amp_update -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0c5dc904 snd_hda_codec_set_name -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0fd48930 snd_hda_codec_pcm_put -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x10c9eb3a snd_hda_jack_report_sync -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1335a14d snd_hda_multi_out_analog_prepare -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x138c4bfc snd_hda_add_verbs -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x13a425e8 snd_hda_codec_prepare -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x14069cb2 azx_stop_chip -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x14ca5a4c is_jack_detectable -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x198a13ac snd_hda_multi_out_analog_open -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x19c8ef4a snd_hda_create_spdif_share_sw -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1dec33a8 snd_hda_lock_devices -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x20e52fdf azx_codec_configure -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2465dce3 __hda_codec_driver_register -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2bd707f1 snd_hda_spdif_out_of_nid -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2e4f8766 snd_hda_jack_unsol_event -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x310fb749 azx_get_pos_posbuf -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x31d88795 snd_hda_codec_set_pin_target -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x32ba9689 snd_hda_mixer_amp_switch_put -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x33f70e45 snd_hda_mixer_amp_volume_info -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3518c814 __snd_hda_add_vmaster -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x354f472f snd_hda_get_connections -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x35aedc72 snd_hda_jack_tbl_get_from_tag -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x35efe20a _snd_hda_set_pin_ctl -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x36ba35b7 snd_hda_jack_tbl_get_mst -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x388545b9 snd_hda_spdif_ctls_assign -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x38b591ec snd_hda_codec_update_widgets -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x38ce402b azx_interrupt -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x39f2c637 snd_hda_codec_cleanup_for_unbind -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3b7757dd azx_bus_init -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3cc50c72 snd_hda_get_conn_index -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3d4b52f2 snd_hda_apply_verbs -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3f1a8ea1 snd_hda_apply_fixup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4191661b snd_hda_unlock_devices -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x424bcbab snd_hda_check_amp_caps -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x43b39202 snd_hda_get_conn_list -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x444ff058 snd_hda_codec_amp_init -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x44c0d6e3 snd_hda_mixer_amp_volume_get -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x459b90b3 snd_hda_jack_set_dirty_all -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4676be81 query_amp_caps -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x48c8851f snd_hda_enum_helper_info -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4acf8751 snd_hda_set_dev_select -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4d608619 snd_hda_codec_configure -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4f8d7c04 snd_hda_parse_pin_defcfg -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x50ee6009 azx_get_pos_lpib -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x52a79181 snd_hda_pick_fixup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5619babf azx_stop_all_streams -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5682278f snd_hda_jack_add_kctl_mst -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x573e488f snd_hda_shutup_pins -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5893e7c8 snd_hda_mixer_amp_tlv -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5d732e7c snd_hda_find_mixer_ctl -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5e5de4af snd_hda_jack_poll_all -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5fdfb2a5 snd_hda_codec_set_pincfg -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6540825a snd_hda_get_int_hint -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x668dbc80 snd_hda_codec_set_power_to_all -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x697647ca hda_get_autocfg_input_label -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x706713fd snd_hda_multi_out_dig_open -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x782e9bbf snd_hda_set_vmaster_tlv -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x792a8098 snd_hda_sequence_write -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7f4e57dc snd_hda_codec_load_dsp_cleanup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x80912475 snd_hda_mixer_amp_switch_info -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x81a00cd7 snd_hda_codec_load_dsp_prepare -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x81dcbcb9 snd_hda_mixer_amp_volume_put -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x86f3250e snd_hda_codec_parse_pcms -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8813fa13 snd_hda_check_amp_list_power -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x88b1f84a snd_hda_enable_beep_device -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x88e18a0f snd_hda_detach_beep_device -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8b6c52d5 snd_hda_codec_new -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8e73767d snd_hda_get_bool_hint -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8ee7b0d3 snd_hda_load_patch -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8fe81276 snd_hda_get_default_vref -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x91dfccf8 snd_hda_codec_device_new -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x94fa6ed2 snd_hda_jack_set_button_state -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x95de22d8 snd_hda_pick_pin_fixup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x982b0e33 snd_hda_multi_out_dig_prepare -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9a7c2191 snd_hda_set_power_save -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9aba5e3c snd_hda_add_nid -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9c7aa3b2 azx_get_position -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9e1ecb8e snd_hda_override_conn_list -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9f1a0d1b snd_hda_add_vmaster_hook -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa032c928 azx_probe_codecs -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa0a9f2f0 snd_hda_attach_beep_device -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa2b0abea snd_hda_jack_detect_state_mst -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xac844bc4 snd_hda_add_new_ctls -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xadfa1562 __snd_hda_codec_cleanup_stream -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xae488ad8 snd_hda_sync_vmaster_hook -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xae4ff442 snd_hda_codec_amp_init_stereo -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xaecf93e0 snd_hda_codec_get_pincfg -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb26831c8 snd_hda_multi_out_dig_close -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb3637e58 snd_hda_jack_add_kctls -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb4a0e219 snd_hda_codec_eapd_power_filter -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb6670ab8 snd_hda_get_dev_select -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb6c96ad5 snd_hda_codec_cleanup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb82b8b68 snd_hda_create_dig_out_ctls -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb8639a20 azx_init_streams -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbaf0bd94 azx_free_streams -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbe85ad80 snd_hda_codec_pcm_new -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbf59929f snd_hda_apply_pincfgs -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc4227fdc snd_hda_ctl_add -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc8a6da4a snd_hda_override_amp_caps -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xcc189775 __snd_hda_apply_fixup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd0747978 snd_hda_codec_load_dsp_trigger -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd2a6d1f0 hda_codec_driver_unregister -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd48be9a6 snd_hda_jack_detect_enable -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd65899b8 snd_hda_multi_out_analog_cleanup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xdceb97e7 snd_hda_jack_set_gating_jack -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xdcf1a0d2 snd_hda_get_pin_label -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xde7bf484 snd_hda_mixer_amp_switch_get_beep -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe118de5d snd_pcm_2_1_chmaps -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe38cb245 snd_hda_multi_out_dig_cleanup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe6490b65 snd_hda_jack_detect_enable_callback_mst -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe7f07f92 snd_hda_create_spdif_in_ctls -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xebaa2a38 snd_hda_input_mux_put -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xed78fc24 snd_hda_spdif_ctls_unassign -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xeda3a721 snd_print_pcm_bits -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xef233c6b snd_hda_correct_pin_ctl -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xefa9c018 snd_hda_get_num_devices -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xefad02d7 snd_hda_add_imux_item -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf09b325c snd_hda_mixer_amp_switch_put_beep -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf27ad009 snd_hda_codec_get_pin_target -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf330e7cd snd_hda_codec_build_controls -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf375fb68 azx_init_chip -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf7a6fcd3 snd_hda_mixer_amp_switch_get -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf8a5394b snd_hda_jack_bind_keymap -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf8dc35ac snd_hda_input_mux_info -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf948a41c snd_hda_codec_setup_stream -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfe4d8e73 snd_hda_get_hint -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x11111d89 snd_hda_gen_add_kctl -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x131d4dc9 snd_hda_get_path_from_idx -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x1491b870 snd_hda_gen_line_automute -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x17b309d8 snd_hda_gen_add_micmute_led_cdev -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x189205b3 snd_hda_gen_spec_init -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x1982c846 snd_hda_gen_path_power_filter -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x1ca234f5 snd_hda_gen_init -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x276dda33 snd_hda_gen_mic_autoswitch -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x3abae0d9 snd_hda_add_new_path -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x49279384 snd_hda_gen_hp_automute -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x5f72df71 snd_hda_gen_stream_pm -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x6cacb1a6 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 0x84bf2fc1 snd_hda_gen_build_controls -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x871a6e44 hda_extra_out_badness -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x9e9b73e7 snd_hda_gen_free -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x9ee8f6f2 snd_hda_gen_check_power_status -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xb0567080 snd_hda_gen_fix_pin_power -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xb7f5476c snd_hda_activate_path -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xc5b4cec7 snd_hda_gen_parse_auto_config -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xdb9abdd7 snd_hda_gen_add_mute_led_cdev -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xe09da0d2 snd_hda_gen_update_outputs -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xe823287e snd_hda_gen_build_pcms -EXPORT_SYMBOL_GPL sound/soc/codecs/mt6359-accdet 0x2f0f42fd 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 0x6a3ae844 adau1372_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau1761 0x45f96210 adau1761_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau1761 0x8dc334d3 adau1761_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x051b70f7 adau17x1_volatile_register -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x0acb65bf adau17x1_readable_register -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x117d114a adau17x1_resume -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x34f2969a adau17x1_remove -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x665fdfce adau17x1_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x7595afcf adau17x1_add_widgets -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x8762a2c6 adau17x1_dai_ops -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0xe009cebd adau17x1_add_routes -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0xe323a3fe adau17x1_precious_register -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0xeb9cb5b7 adau17x1_set_micbias_voltage -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau7118 0x6dd7ea39 adau7118_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41 0x4e91b6e8 cs35l41_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41 0x5823fd9f cs35l41_remove -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41 0xc80bc28d cs35l41_pm_ops -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x3ad2594e cs35l41_regmap_spi -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x6b2f76a3 cs35l41_otp_unpack -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x77573483 cs35l41_boost_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x8c875f91 cs35l41_regmap_i2c -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x9137dd7e cs35l41_test_key_unlock -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x99748353 cs35l41_test_key_lock -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0xd9fc2774 cs35l41_set_channels -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0xfc4d8f73 cs35l41_register_errata_patch -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0x7d05786f cs4271_dt_ids -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0xc95a6de6 cs4271_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0xe2028fcd cs4271_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x37a03da7 cs42l51_resume -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x91b5ad39 cs42l51_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x9acb81aa cs42l51_remove -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x9b4a409a cs42l51_suspend -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0xb8cc73b4 cs42l51_regmap -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 0xb9efd6a5 cs42xx8_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0xc41b8c98 cs42xx8_pm -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0xcd3794c9 cs42448_data -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0xdf5ccf14 cs42xx8_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-da7219 0x03f1dae4 da7219_aad_jack_det -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-da7219 0x6705b379 da7219_aad_init -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-da7219 0x7bc5afd9 da7219_aad_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-da7219 0xb501de94 da7219_aad_exit -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-es8328 0x5c1a1166 es8328_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-es8328 0xf3da1a9a es8328_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98090 0xe402fd61 max98090_mic_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98373 0x7a886613 soc_codec_dev_max98373 -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98373 0x7afecef7 soc_codec_dev_max98373_sdw -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98373 0xc67be5f3 max98373_reset -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98373 0xfa18d61b max98373_slot_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6358 0x64b0d0d0 mt6358_set_mtkaif_protocol -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6358 0x9063772b mt6358_set_mtkaif_calibration_phase -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6358 0xca707657 mt6358_mtkaif_calibration_disable -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6358 0xeddee33e mt6358_mtkaif_calibration_enable -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6359 0x3f9239aa mt6359_set_mtkaif_calibration_phase -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6359 0x40366081 mt6359_mtkaif_calibration_enable -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6359 0x910330c9 mt6359_mtkaif_calibration_disable -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6359 0xc958536f mt6359_set_mtkaif_protocol -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-nau8824 0xfe4dd0f5 nau8824_enable_jack_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm1789-codec 0xa195c3ea pcm1789_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm1789-codec 0xab12c098 pcm1789_common_exit -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm1789-codec 0xdaff4568 pcm1789_common_init -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm179x-codec 0xa6256fc2 pcm179x_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm179x-codec 0xd21b95dd pcm179x_common_init -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm186x 0x2381f57e pcm186x_regmap -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm186x 0xa3014d43 pcm186x_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0x2dedcf41 pcm3168a_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0x4a1afea2 pcm3168a_remove -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0xd8917138 pcm3168a_pm_ops -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0xf64f9be3 pcm3168a_regmap -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x147d607a pcm512x_remove -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x522150fe pcm512x_regmap -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0xc4cf652e pcm512x_pm_ops -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0xd3691b78 pcm512x_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rl6231 0x5dc92cdf rl6231_pll_calc -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rl6231 0x70617a04 rl6231_get_clk_info -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rl6231 0x8d7fa148 rl6231_get_pre_div -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rl6231 0xdba4502f rl6231_calc_dmic_clk -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5514-spi 0x61ff58e3 rt5514_spi_burst_read -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5514-spi 0xff87892f rt5514_spi_burst_write -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0x1dc57d6b rt5640_enable_micbias1_for_ovcd -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0x21ccb115 rt5640_sel_asrc_clk_src -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0x6c9210cd rt5640_detect_headset -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0xce9853c7 rt5640_dmic_enable -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0xe83f5155 rt5640_set_ovcd_params -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0xf606d7c8 rt5640_disable_micbias1_for_ovcd -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5645 0x4ce135af rt5645_set_jack_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5645 0x8885c3e0 rt5645_sel_asrc_clk_src -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5659 0x184c1c7e rt5659_set_jack_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5663 0x00c5ff92 rt5663_sel_asrc_clk_src -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5677 0x79d23230 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 0x0747d541 rt5682_volatile_register -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x230bde0e rt5682_readable_register -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x28730696 rt5682_supply_names -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x33f43ef0 rt5682_aif1_dai_ops -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x57708dc2 rt5682_calibrate -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x59d3d967 rt5682_jack_detect_handler -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x769749ef rt5682_register_dai_clks -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0xb6a99e0e rt5682_parse_dt -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0xb897de56 rt5682_reg -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0xbcc64b2f rt5682_apply_patch_list -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0xc18a685f rt5682_sel_asrc_clk_src -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0xd8c385f3 rt5682_aif2_dai_ops -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0xdaf73746 rt5682_soc_component_dev -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0xfade94bd rt5682_reset -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x515cc80f sigmadsp_attach -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x66e39ecf sigmadsp_setup -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x718414e2 sigmadsp_restrict_params -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0xa9b25da6 devm_sigmadsp_init -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0xe3c53394 sigmadsp_reset -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp-i2c 0x6b946715 devm_sigmadsp_init_i2c -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp-regmap 0xa6c15fa1 devm_sigmadsp_init_regmap -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ssm2602 0x23c6282d ssm2602_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ssm2602 0xabbf7412 ssm2602_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tlv320aic32x4 0x048677ee aic32x4_register_clocks -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tlv320aic3x 0xaf1c5551 aic3x_regmap -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ts3a227e 0x82b05378 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 0x0b4fe250 wcd938x_sdw_device_get -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd938x-sdw 0x284c2438 wcd938x_swr_get_current_bank -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd938x-sdw 0x362cf790 wcd938x_sdw_hw_params -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd938x-sdw 0xa6b3e9e5 wcd938x_sdw_free -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd938x-sdw 0xd48d8a68 wcd938x_sdw_set_sdw_stream -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x118fe04a wm_adsp_read_ctl -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x2509d6cc wm_adsp2_preloader_get -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x25533891 wm_adsp_compr_get_caps -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x2789ce13 wm_adsp_fw_put -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x2a87c62c wm_halo_init -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x39954035 wm_adsp_early_event -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x4751863b wm_adsp_fw_enum -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 0x5813ca81 wm_adsp2_init -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x656f68a5 wm_adsp2_component_remove -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x6c00638c wm_adsp1_event -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x700e1501 wm_adsp2_set_dspclk -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x76cdb819 wm_adsp2_remove -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x7e81c1ca wm_adsp_compr_trigger -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x7ecb607b wm_adsp_compr_copy -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x8069937c wm_adsp_compr_set_params -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x8a7d3326 wm_adsp_compr_pointer -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x9b9516f1 wm_adsp_compr_open -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x9c496cbe wm_adsp_compr_free -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xc4c97510 wm_adsp2_preloader_put -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xc6496dcf wm_adsp_fw_get -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xd1c80a30 wm_adsp_write_ctl -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xda9348e6 wm_adsp1_init -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xdd3c79ef wm_adsp2_bus_error -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xea1eb4e0 wm_adsp2_component_probe -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 0xef012c59 wm_adsp_event -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xf9d0853f wm_adsp_compr_handle_irq -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x075e8835 wm_hubs_vmid_ena -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x25ee561a wm_hubs_add_analogue_controls -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x28de17b9 wm_hubs_set_bias_level -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x2fe0f849 wm_hubs_update_class_w -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x4adc24ab wm_hubs_handle_analogue_pdata -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x5cd7eb9b wm_hubs_dcs_done -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x757206d5 wm_hubs_spkmix_tlv -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x83fa52d3 wm_hubs_hpr_mux -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0xa1aa0b89 wm_hubs_add_analogue_routes -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0xba263138 wm_hubs_hpl_mux -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x055f9afe wm8804_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x2b0dd928 wm8804_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0xd0dd0090 wm8804_pm -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0xe58be914 wm8804_remove -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8903 0x5d1422e6 wm8903_mic_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8962 0x6c37e7ae wm8962_mic_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8994 0xc2872436 wm8958_mic_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8994 0xd63df360 wm8994_mic_detect -EXPORT_SYMBOL_GPL sound/soc/fsl/imx-pcm-dma 0xd3838e08 imx_pcm_dma_init -EXPORT_SYMBOL_GPL sound/soc/fsl/snd-soc-fsl-asrc 0x1c04ef36 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 0x1788b8e8 audio_graph_parse_of -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-audio-graph-card2 0x66aa3f00 audio_graph2_link_normal -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-audio-graph-card2 0xcae057b3 audio_graph2_parse_of -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x00e1d1ff asoc_simple_is_convert_required -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x042d3791 asoc_simple_parse_clk -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x14e8d042 asoc_simple_parse_tdm_width_map -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x164dd1d8 asoc_simple_parse_widgets -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x2b433e08 asoc_simple_dai_init -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x3a905384 asoc_simple_startup -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x3bfd6579 asoc_simple_set_dailink_name -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x41376950 asoc_simple_init_priv -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x48cc16d6 asoc_simple_clean_reference -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x68effca3 asoc_simple_hw_params -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x7752aa03 asoc_simple_parse_card_name -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x7a0ac19d asoc_simple_canonicalize_cpu -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x80745b5e asoc_simple_parse_routing -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x92745a09 asoc_simple_remove -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x9952bf09 asoc_simple_init_jack -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xc3f9b4e7 asoc_simple_parse_pin_switches -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xcf04f79f asoc_graph_card_probe -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xd7121900 asoc_simple_shutdown -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xe153bb61 asoc_simple_parse_convert -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xe8b7c802 asoc_simple_parse_daifmt -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xeea20112 asoc_simple_convert_fixup -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xf7e69b89 asoc_simple_canonicalize_platform -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xf959e34d asoc_simple_be_hw_params_fixup -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x06a03594 mtk_afe_fe_prepare -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x0bbcd735 mtk_afe_combine_sub_dai -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x139ca680 mtk_afe_fe_ops -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x1453be97 mtk_afe_add_sub_dai_control -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x22459c1b mtk_memif_set_rate_substream -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x2a415ba8 mtk_memif_set_addr -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x2ff433c1 mtk_memif_set_rate -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x377b5446 mtk_memif_set_disable -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x408cb5af mtk_afe_fe_hw_free -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x4266bc0c mtk_afe_pcm_pointer -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x4e8df3cc mtk_memif_set_channel -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x51cde9c5 mtk_memif_set_format -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x5de32ecf mtk_dynamic_irq_release -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x5ea1578b mtk_afe_pcm_platform -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x8d2dd95d mtk_memif_set_enable -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x96106324 mtk_afe_fe_shutdown -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x993dcf74 mtk_afe_fe_startup -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xb0bd3e8d mtk_afe_pcm_new -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xb2cdcff6 mtk_afe_fe_trigger -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xb3fd3103 mtk_afe_resume -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xb683aaf8 mtk_afe_fe_hw_params -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xd979fab2 mtk_memif_set_pbuf_size -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xdf3fd3a2 mtk_afe_suspend -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xfd8f3a4f mtk_dynamic_irq_acquire -EXPORT_SYMBOL_GPL sound/soc/mediatek/mt8195/snd-soc-mt8195-afe 0x20a7bb82 mt8195_afe_enable_clk -EXPORT_SYMBOL_GPL sound/soc/mediatek/mt8195/snd-soc-mt8195-afe 0xf27a9cdd mt8195_afe_disable_clk -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0x101c2524 axg_fifo_pcm_open -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0x330dd98e axg_fifo_pcm_close -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0x759316ea axg_fifo_pcm_pointer -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0x8166e699 axg_fifo_pcm_hw_free -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0x96f94831 axg_fifo_probe -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0x9c1dc9ea axg_fifo_pcm_hw_params -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0xb22f28be axg_fifo_pcm_trigger -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0xbe1fab34 axg_fifo_pcm_new -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0xbffe89aa g12a_fifo_pcm_hw_params -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-tdm-formatter 0x191a58b7 axg_tdm_stream_alloc -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-tdm-formatter 0x34b643ea axg_tdm_stream_free -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-tdm-formatter 0x3aa21050 axg_tdm_formatter_probe -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-tdm-formatter 0x49162eb2 axg_tdm_formatter_set_channel_masks -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-tdm-formatter 0x5a131723 axg_tdm_stream_stop -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-tdm-formatter 0x8e428c70 axg_tdm_stream_start -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-tdm-formatter 0xfe383b71 axg_tdm_formatter_event -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-tdm-interface 0xd7ef72a9 axg_tdm_set_tdm_slots -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0x17182689 meson_card_set_be_link -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0x29c5bb04 meson_card_reallocate_links -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0x438735a0 meson_card_parse_dai -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0x6382fbb6 meson_card_i2s_set_sysclk -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0x65621fb5 meson_card_probe -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0x6bab1cde meson_card_remove -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0xb2eaeac7 meson_card_parse_daifmt -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0xb4ebdc82 meson_card_set_fe_link -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-codec-glue 0x1abe1f1e meson_codec_glue_input_get_data -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-codec-glue 0x2878edd0 meson_codec_glue_input_dai_probe -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-codec-glue 0x3d8c691d meson_codec_glue_input_hw_params -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-codec-glue 0x51f77759 meson_codec_glue_input_set_fmt -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-codec-glue 0x9e3b87d4 meson_codec_glue_input_dai_remove -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-codec-glue 0xc4a4366b meson_codec_glue_output_startup -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6adm 0x281e59ae q6adm_matrix_map -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6adm 0x28421460 q6adm_get_copp_id -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6adm 0x30cebefb q6adm_close -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6adm 0x83409589 q6adm_open -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6afe 0x07a54780 q6afe_cdc_dma_port_prepare -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6afe 0x27a98c61 q6afe_port_get_from_id -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6afe 0x369b6eeb q6afe_port_put -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6afe 0x3b16d6e7 q6afe_port_stop -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6afe 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 0xb8387667 q6afe_set_lpass_clock -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6afe 0xd4523c59 q6afe_i2s_port_prepare -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6afe 0xe45246a8 q6afe_port_start -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6afe 0xfaf22370 q6afe_tdm_port_prepare -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 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 0xb6bc2221 q6asm_audio_client_alloc -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 0x26d7703d asoc_qcom_lpass_cpu_dai_ops -EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0x2fabdb82 lpass_cpu_pcm_new -EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0x36d906d0 asoc_qcom_lpass_cpu_dai_probe -EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0x3ca2abf8 asoc_qcom_lpass_cpu_platform_probe -EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0x639fe147 asoc_qcom_lpass_cpu_platform_remove -EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0x6d10a8ab asoc_qcom_lpass_cpu_platform_shutdown -EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-hdmi 0x17ee5fc8 asoc_qcom_lpass_hdmi_dai_ops -EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-platform 0xfad9a54d asoc_qcom_lpass_platform_register -EXPORT_SYMBOL_GPL sound/soc/rockchip/snd-soc-rockchip-pcm 0x8ed21156 rockchip_pcm_platform_register -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x002c6e89 snd_soc_dapm_stream_stop -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x00a3d754 snd_dmaengine_pcm_prepare_slave_config -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x00ebf7e6 snd_soc_link_compr_startup -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x02c5377c dapm_regulator_event -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0333f936 null_dailink_component -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x03a6f9c0 snd_soc_add_component_controls -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x042aaec0 snd_soc_add_pcm_runtime -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0439b9f8 snd_soc_put_volsw_range -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x044477d9 snd_soc_component_compr_set_params -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x07579a98 snd_soc_dapm_put_volsw -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x07d3bc33 snd_soc_component_disable_pin -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x08d1c38d snd_soc_dapm_mixer_update_power -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0c36c1d5 snd_soc_jack_notifier_register -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0d0a636a snd_soc_of_parse_card_name -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x10394837 snd_soc_dapm_force_enable_pin_unlocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x106fd617 snd_soc_bytes_info -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1147181a snd_soc_get_strobe -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1153b994 snd_soc_pm_ops -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x11960a88 snd_soc_component_enable_pin -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x128f6f4f snd_soc_card_remove_dai_link -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x16f374c4 snd_soc_rtdcom_lookup -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x18ec2a7f snd_soc_jack_add_gpiods -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x19985f63 snd_soc_dapm_enable_pin_unlocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x19df0ed1 dapm_kcontrol_get_value -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1b018cc5 snd_soc_component_set_jack -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1b69a6a2 snd_soc_tplg_component_remove -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1c1c7f9e snd_soc_unregister_component_by_driver -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1cbbda33 dpcm_be_dai_trigger -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1fd9ea51 snd_soc_of_parse_audio_routing -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x21cc6752 snd_soc_unregister_component -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2339084b snd_soc_of_parse_audio_simple_widgets -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x23666e0a snd_soc_dapm_add_routes -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x24716287 snd_soc_dapm_new_controls -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x252be560 snd_soc_add_component -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2541a979 snd_soc_calc_frame_size -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x26299952 snd_soc_cnew -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2645f92e snd_soc_component_nc_pin_unlocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x29025650 snd_soc_component_force_enable_pin_unlocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2a73bd08 snd_soc_component_read_field -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2bbc8d5e snd_soc_get_xr_sx -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2e1bc1b1 snd_soc_dapm_nc_pin -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2e6db131 snd_soc_dapm_get_pin_status -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2eb54cdf snd_soc_dapm_put_pin_switch -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2f6ddf70 snd_soc_jack_notifier_unregister -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x314151ff snd_soc_lookup_component_nolocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x32b09a79 snd_soc_dai_action -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x32e5c91b snd_soc_link_compr_set_params -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x33249854 snd_soc_get_volsw -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x33f65f5c snd_soc_component_nc_pin -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x351dbcbe snd_soc_dapm_get_enum_double -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x36725bfd snd_soc_dapm_sync -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x36dd8c36 snd_soc_find_dai_with_mutex -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3776f760 snd_soc_dai_compr_trigger -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x38085b73 snd_soc_set_runtime_hwparams -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3a257973 snd_soc_get_enum_double -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x40892841 snd_soc_dapm_weak_routes -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x421e6c71 snd_soc_of_put_dai_link_codecs -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x42ceb8df snd_soc_dapm_force_enable_pin -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x42d5e7eb snd_soc_runtime_calc_hw -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x43d8817f snd_soc_limit_volume -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x448e0fbd snd_soc_daifmt_parse_format -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4ae728a5 snd_soc_set_ac97_ops_of_reset -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4b6ed6ca snd_soc_component_init_regmap -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4c2d1735 snd_soc_jack_report -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4ef24bc5 snd_soc_remove_pcm_runtime -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x51eb7ab5 snd_soc_free_ac97_component -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x53fe81ad snd_soc_dai_compr_set_metadata -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x548d9a2d snd_soc_dapm_kcontrol_widget -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x59399f10 snd_soc_of_get_dai_name -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5a3eb8c0 snd_soc_bytes_get -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5aa195b7 snd_soc_component_compr_get_params -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5b0b712b snd_soc_tplg_widget_bind_event -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5b0bbfea snd_soc_component_initialize -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5bd5ee0e snd_soc_unregister_card -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5da9a291 snd_soc_dai_set_fmt -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x65efdc1d snd_soc_dpcm_be_can_update -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x65f0cd8d snd_soc_dai_get_channel_map -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6d83ba6e snd_soc_put_volsw -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6e0cead7 snd_soc_component_compr_get_caps -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6f0772bc snd_soc_component_compr_trigger -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x704aadc5 snd_soc_set_dmi_name -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x70b7f39f snd_soc_dapm_kcontrol_dapm -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x72a0cfab snd_soc_dapm_free -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x741a5a34 snd_soc_jack_add_zones -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x74bdbe05 snd_soc_runtime_set_dai_fmt -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x74bee1e4 snd_soc_component_update_bits -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x74ca53e2 snd_soc_component_compr_free -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x751baf64 snd_soc_put_xr_sx -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x75d10db1 snd_soc_put_volsw_sx -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x765dd132 snd_soc_component_update_bits_async -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x774796e4 snd_soc_dapm_enable_pin -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x77bd3d30 snd_soc_add_card_controls -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x79189d36 snd_soc_daifmt_parse_clock_provider_raw -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7b0aee73 snd_soc_dpcm_get_substream -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7b44c7c3 snd_soc_dapm_new_widgets -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7cb0c2ca snd_soc_component_compr_ack -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7e606130 snd_soc_calc_bclk -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7e8b4f79 snd_soc_get_dai_id -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7eb3f9f4 soc_ac97_ops -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x81ccfa41 snd_soc_info_volsw_sx -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x821d2e4c dapm_clock_event -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x83dee264 snd_soc_lookup_component -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8595d612 snd_soc_get_pcm_runtime -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8679c3f9 snd_soc_jack_add_gpios -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x86c93f7c snd_soc_component_set_pll -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x86ebe6d8 snd_soc_component_write_field -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x87ff6c4c snd_soc_bytes_put -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x88c3d16f snd_soc_dapm_info_pin_switch -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x89863310 snd_soc_jack_free_gpios -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8aab0f9a snd_soc_dai_compr_ack -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8b27ebcc snd_soc_new_compress -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8d5a27b4 snd_soc_dai_compr_shutdown -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8e2393e1 snd_soc_jack_add_pins -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8e23d774 snd_soc_card_add_dai_link -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8e648d44 snd_soc_dai_set_clkdiv -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8fbd24a7 snd_dmaengine_pcm_unregister -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x905cc7a9 snd_soc_poweroff -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x91dd5fb0 snd_soc_dapm_get_pin_switch -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x925b03da snd_soc_put_enum_double -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x92e1af27 snd_soc_component_compr_get_codec_caps -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x95dbf244 snd_soc_dapm_force_bias_level -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x98b00c31 snd_soc_dapm_get_volsw -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9ac41819 snd_soc_find_dai -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9bfde704 snd_soc_daifmt_clock_provider_fliped -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9d025ba7 snd_soc_of_parse_aux_devs -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9fe2163e dapm_mark_endpoints_dirty -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa0c5be33 snd_soc_dapm_del_routes -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa1f196d7 snd_soc_component_write -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa514f1cf snd_soc_component_compr_pointer -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa5275d8d snd_soc_dapm_update_dai -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa7433129 snd_soc_dai_active -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa8de3123 snd_soc_dapm_new_control -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xaaaec659 snd_soc_component_disable_pin_unlocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xabfff195 snd_soc_dai_set_channel_map -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xac05f478 snd_soc_card_get_kcontrol -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xac47c351 snd_soc_get_volsw_range -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xac512e27 snd_soc_dapm_disable_pin -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xad58b84a snd_soc_component_compr_set_metadata -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xad7372d8 snd_dmaengine_pcm_register -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xada363c6 snd_soc_component_compr_open -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xaf76fb69 snd_soc_dai_set_sysclk -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xafce73c0 snd_soc_component_async_complete -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xaff15966 snd_soc_info_enum_double -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb05004b9 snd_soc_dapm_mux_update_power -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb05504f3 snd_soc_component_read -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb060b36d snd_soc_dai_set_pll -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb14a7b79 snd_soc_dapm_nc_pin_unlocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb32d1dc2 snd_soc_get_volsw_sx -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb3bafc61 snd_soc_component_enable_pin_unlocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb789980a snd_soc_dai_digital_mute -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb9603eae snd_soc_dpcm_can_be_prepared -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xba7ec1ca snd_soc_dai_compr_pointer -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbb83c0f6 snd_soc_runtime_action -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbce4d19e snd_soc_component_test_bits -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbec16eac snd_soc_dai_compr_startup -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc2b7c952 snd_soc_dpcm_can_be_free_stop -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc4e3f52c snd_soc_info_volsw_range -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc6a57eff snd_soc_resume -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc6f56e56 snd_soc_of_parse_tdm_slot -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc8269f94 snd_soc_params_to_frame_size -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc8c350b7 snd_soc_of_get_dai_link_codecs -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xca28322e snd_soc_component_exit_regmap -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcb45feb4 snd_soc_component_get_pin_status -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xce0d708d devm_snd_soc_register_dai -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xce0f5699 snd_soc_add_dai_controls -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcf91c5dd snd_soc_dapm_ignore_suspend -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd03b12fb snd_soc_component_force_enable_pin -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd0f7f772 snd_soc_component_compr_copy -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd29f9672 snd_soc_dai_set_tdm_slot -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd2acd8e1 snd_soc_bytes_info_ext -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd2d0cd8a snd_soc_set_ac97_ops -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd387ba87 snd_soc_of_parse_node_prefix -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd3c2248e snd_soc_debugfs_root -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd43ac1d9 snd_soc_close_delayed_work -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd4a308c6 snd_soc_dai_set_bclk_ratio -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd5be8174 snd_soc_unregister_dai -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd5d9a28f snd_soc_tplg_component_load -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd5e94e96 devm_snd_soc_register_component -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd640e1cd snd_soc_register_card -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd6db56f4 snd_soc_dpcm_can_be_params -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd715668a snd_soc_put_strobe -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xda2aef7d snd_soc_dpcm_fe_can_update -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xda3eb58c snd_soc_card_jack_new -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdb14baad snd_soc_info_xr_sx -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdccda545 snd_soc_register_component -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdd7ab90d snd_soc_new_ac97_component -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe136e8e4 snd_soc_dapm_disable_pin_unlocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe752365f snd_soc_dai_compr_set_params -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe8afa864 snd_soc_dapm_put_enum_double -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe8db5b0a snd_soc_dpcm_runtime_update -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xeaf067e0 dapm_pinctrl_event -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xeb711ae7 snd_soc_params_to_bclk -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xefecdf2a snd_soc_dai_set_tristate -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf16e844a snd_soc_dai_compr_get_metadata -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf17bcb35 devm_snd_soc_register_card -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf29208bb snd_soc_get_dai_name -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf446c77a snd_soc_info_volsw -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf4900c51 snd_soc_dapm_sync_unlocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf50a73ca snd_soc_suspend -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf7f66337 snd_soc_dapm_init -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf90d257b snd_soc_link_compr_shutdown -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf9622dd1 snd_soc_daifmt_clock_provider_from_bitmap -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf9d6c58c snd_soc_bytes_tlv_callback -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfcded9d0 snd_soc_dai_link_set_capabilities -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfce4d58d snd_soc_component_set_sysclk -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfdb04785 devm_snd_dmaengine_pcm_register -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfdfa28f8 snd_soc_of_get_slot_mask -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xff68c046 snd_soc_component_compr_get_metadata -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xff9c991f snd_soc_dai_compr_get_params -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xffa56f7c snd_soc_jack_get_type -EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0x412b1464 snd_sof_debugfs_io_item -EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0x7c3a95fa snd_sof_free_debug -EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0xb62cc584 snd_sof_debugfs_buf_item -EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0xd98a7ac0 snd_sof_dbg_memory_info_init -EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0xe1283aeb 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 0x29213c6f tegra_asoc_machine_probe -EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-machine 0xb3f243dd tegra_asoc_machine_init -EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0x033a182a tegra_pcm_pointer -EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0x03ae1ac6 tegra_pcm_construct -EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0x2a08c249 tegra_pcm_platform_register -EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0x48dc94f8 tegra_pcm_platform_unregister -EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0x4a478731 tegra_pcm_platform_register_with_chan_names -EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0x9e5428c9 tegra_pcm_close -EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0xe854871a tegra_pcm_open -EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0xf2f7ad33 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 0x165fa5ce edma_pcm_platform_register -EXPORT_SYMBOL_GPL sound/soc/ti/snd-soc-ti-sdma 0xbd5a4c0e sdma_pcm_platform_register -EXPORT_SYMBOL_GPL sound/soc/ti/snd-soc-ti-udma 0x6d8b8a72 udma_pcm_platform_register -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x0301503e line6_probe -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x04bffb4d line6_init_pcm -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x06ae5c98 line6_pcm_release -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x1324384c line6_alloc_sysex_buffer -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x1fcf2194 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 0x3546b960 line6_send_raw_message -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x4025be55 line6_disconnect -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x8f13166b line6_write_data -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x9a0763fe line6_send_sysex_message -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xabaa19d7 line6_suspend -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xac6ab019 line6_version_request_async -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xae2b1407 line6_read_data -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xdac72f65 line6_resume -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xe7c3a05f line6_send_raw_message_async -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xfc35a96c line6_pcm_acquire -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xff97b5a6 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 0x00014dc9 inet_hash_connect -EXPORT_SYMBOL_GPL vmlinux 0x00034022 nf_ipv6_ops -EXPORT_SYMBOL_GPL vmlinux 0x0006eb70 usb_add_phy_dev -EXPORT_SYMBOL_GPL vmlinux 0x000d6b15 dev_pm_opp_find_level_ceil -EXPORT_SYMBOL_GPL vmlinux 0x000e11fe ip6_route_input_lookup -EXPORT_SYMBOL_GPL vmlinux 0x000ecb1b iommu_aux_get_pasid -EXPORT_SYMBOL_GPL vmlinux 0x00122f71 blk_queue_write_cache -EXPORT_SYMBOL_GPL vmlinux 0x00207757 device_remove_groups -EXPORT_SYMBOL_GPL vmlinux 0x00224bba skb_cow_data -EXPORT_SYMBOL_GPL vmlinux 0x0030c998 fib_rules_dump -EXPORT_SYMBOL_GPL vmlinux 0x0035a48c iomap_finish_ioends -EXPORT_SYMBOL_GPL vmlinux 0x00393233 blk_ksm_init_passthrough -EXPORT_SYMBOL_GPL vmlinux 0x00513f58 get_timespec64 -EXPORT_SYMBOL_GPL vmlinux 0x005571f9 pci_iomap_wc_range -EXPORT_SYMBOL_GPL vmlinux 0x005a8d6b dmaengine_desc_attach_metadata -EXPORT_SYMBOL_GPL vmlinux 0x006cf02e __pm_relax -EXPORT_SYMBOL_GPL vmlinux 0x006dfcca __fsnotify_parent -EXPORT_SYMBOL_GPL vmlinux 0x00781c7e proc_douintvec_minmax -EXPORT_SYMBOL_GPL vmlinux 0x00788caa cpuidle_get_cpu_driver -EXPORT_SYMBOL_GPL vmlinux 0x007c5572 crypto_larval_alloc -EXPORT_SYMBOL_GPL vmlinux 0x007d7cf7 acpi_device_modalias -EXPORT_SYMBOL_GPL vmlinux 0x007f6dd0 pm_clk_remove -EXPORT_SYMBOL_GPL vmlinux 0x00800c9f fixed_phy_set_link_update -EXPORT_SYMBOL_GPL vmlinux 0x0086243d devm_pm_opp_attach_genpd -EXPORT_SYMBOL_GPL vmlinux 0x00864c0f mbox_send_message -EXPORT_SYMBOL_GPL vmlinux 0x008b3349 __blk_req_zone_write_unlock -EXPORT_SYMBOL_GPL vmlinux 0x008ce881 __pm_runtime_use_autosuspend -EXPORT_SYMBOL_GPL vmlinux 0x0098c53a device_wakeup_disable -EXPORT_SYMBOL_GPL vmlinux 0x00a64972 of_resolve_phandles -EXPORT_SYMBOL_GPL vmlinux 0x00c0b88d get_task_mm -EXPORT_SYMBOL_GPL vmlinux 0x00c5e887 nvdimm_has_flush -EXPORT_SYMBOL_GPL vmlinux 0x00d1eddb handle_fasteoi_nmi -EXPORT_SYMBOL_GPL vmlinux 0x00d4c500 usb_decode_interval -EXPORT_SYMBOL_GPL vmlinux 0x00d9c201 rockchip_clk_register_branches -EXPORT_SYMBOL_GPL vmlinux 0x00df9837 ioasid_register_allocator -EXPORT_SYMBOL_GPL vmlinux 0x00f910a8 serdev_device_write -EXPORT_SYMBOL_GPL vmlinux 0x00f97068 rio_dma_prep_xfer -EXPORT_SYMBOL_GPL vmlinux 0x0112f99b usb_control_msg_recv -EXPORT_SYMBOL_GPL vmlinux 0x012e730e apei_exec_noop -EXPORT_SYMBOL_GPL vmlinux 0x014263c2 devm_phy_create -EXPORT_SYMBOL_GPL vmlinux 0x0149ce11 __class_register -EXPORT_SYMBOL_GPL vmlinux 0x014e8186 cpu_scale -EXPORT_SYMBOL_GPL vmlinux 0x015770fb hisi_clk_alloc -EXPORT_SYMBOL_GPL vmlinux 0x0160c0b1 led_trigger_set_default -EXPORT_SYMBOL_GPL vmlinux 0x01745b19 apei_get_debugfs_dir -EXPORT_SYMBOL_GPL vmlinux 0x0175148b tty_set_ldisc -EXPORT_SYMBOL_GPL vmlinux 0x01866a57 ezx_pcap_set_bits -EXPORT_SYMBOL_GPL vmlinux 0x01883ca7 regulator_enable_regmap -EXPORT_SYMBOL_GPL vmlinux 0x018952a1 dst_cache_get -EXPORT_SYMBOL_GPL vmlinux 0x0198d723 xfrm_audit_state_add -EXPORT_SYMBOL_GPL vmlinux 0x01a0cb78 property_entries_free -EXPORT_SYMBOL_GPL vmlinux 0x01b68dd9 usb_init_urb -EXPORT_SYMBOL_GPL vmlinux 0x01c4e99f create_signature -EXPORT_SYMBOL_GPL vmlinux 0x01c6cb0c cpu_cluster_pm_enter -EXPORT_SYMBOL_GPL vmlinux 0x01e1a8de kgdb_breakpoint -EXPORT_SYMBOL_GPL vmlinux 0x01e20a30 platform_driver_unregister -EXPORT_SYMBOL_GPL vmlinux 0x01eaf8e1 register_user_hw_breakpoint -EXPORT_SYMBOL_GPL vmlinux 0x01f1c1cd i2c_dw_validate_speed -EXPORT_SYMBOL_GPL vmlinux 0x0207a6c6 reset_control_bulk_acquire -EXPORT_SYMBOL_GPL vmlinux 0x021bec44 nvdimm_security_setup_events -EXPORT_SYMBOL_GPL vmlinux 0x0235329e sdio_release_irq -EXPORT_SYMBOL_GPL vmlinux 0x02394899 play_idle_precise -EXPORT_SYMBOL_GPL vmlinux 0x0241b9b7 shmem_file_setup -EXPORT_SYMBOL_GPL vmlinux 0x02468921 blk_stat_enable_accounting -EXPORT_SYMBOL_GPL vmlinux 0x024d13dd request_free_mem_region -EXPORT_SYMBOL_GPL vmlinux 0x024d78d2 serdev_device_set_tiocm -EXPORT_SYMBOL_GPL vmlinux 0x027380bf i2c_acpi_find_adapter_by_handle -EXPORT_SYMBOL_GPL vmlinux 0x02812c8e wm8350_reg_read -EXPORT_SYMBOL_GPL vmlinux 0x0283a1d7 sbitmap_queue_show -EXPORT_SYMBOL_GPL vmlinux 0x0288da68 wakeup_source_register -EXPORT_SYMBOL_GPL vmlinux 0x02898ac0 watchdog_init_timeout -EXPORT_SYMBOL_GPL vmlinux 0x029dd9d5 gnttab_batch_copy -EXPORT_SYMBOL_GPL vmlinux 0x02a569b1 sysfs_create_groups -EXPORT_SYMBOL_GPL vmlinux 0x02a6174e irq_chip_enable_parent -EXPORT_SYMBOL_GPL vmlinux 0x02b1ff58 access_process_vm -EXPORT_SYMBOL_GPL vmlinux 0x02d57b4f xen_xenbus_fops -EXPORT_SYMBOL_GPL vmlinux 0x02f411a5 i2c_adapter_type -EXPORT_SYMBOL_GPL vmlinux 0x0301ede1 pcie_reset_flr -EXPORT_SYMBOL_GPL vmlinux 0x0312b3b0 reset_controller_add_lookup -EXPORT_SYMBOL_GPL vmlinux 0x031b4d14 debugfs_create_u8 -EXPORT_SYMBOL_GPL vmlinux 0x0321cdbf of_alias_get_highest_id -EXPORT_SYMBOL_GPL vmlinux 0x033832c7 usb_amd_hang_symptom_quirk -EXPORT_SYMBOL_GPL vmlinux 0x0343bdf1 __i2c_board_list -EXPORT_SYMBOL_GPL vmlinux 0x034f01bb lwtunnel_input -EXPORT_SYMBOL_GPL vmlinux 0x03625711 sched_set_fifo -EXPORT_SYMBOL_GPL vmlinux 0x03646305 rio_unmap_outb_region -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 0x037b8169 ata_pci_device_do_suspend -EXPORT_SYMBOL_GPL vmlinux 0x03848759 badblocks_exit -EXPORT_SYMBOL_GPL vmlinux 0x038888ee tty_standard_install -EXPORT_SYMBOL_GPL vmlinux 0x038e163c irq_work_sync -EXPORT_SYMBOL_GPL vmlinux 0x03952887 ktime_add_safe -EXPORT_SYMBOL_GPL vmlinux 0x039fec52 sched_trace_rq_avg_irq -EXPORT_SYMBOL_GPL vmlinux 0x03a26041 devm_device_remove_group -EXPORT_SYMBOL_GPL vmlinux 0x03a3e0b3 dma_map_sgtable -EXPORT_SYMBOL_GPL vmlinux 0x03b1f3d0 usb_set_device_state -EXPORT_SYMBOL_GPL vmlinux 0x03bc6c11 usb_remove_phy -EXPORT_SYMBOL_GPL vmlinux 0x03bddb26 pm_runtime_autosuspend_expiration -EXPORT_SYMBOL_GPL vmlinux 0x03c12dfe cancel_work_sync -EXPORT_SYMBOL_GPL vmlinux 0x03ce7234 sched_smt_present -EXPORT_SYMBOL_GPL vmlinux 0x03daa763 of_reserved_mem_device_init_by_name -EXPORT_SYMBOL_GPL vmlinux 0x03feb479 splice_to_pipe -EXPORT_SYMBOL_GPL vmlinux 0x0400cd31 genphy_c45_pma_read_abilities -EXPORT_SYMBOL_GPL vmlinux 0x040b11dc gen_pool_size -EXPORT_SYMBOL_GPL vmlinux 0x042c9a04 em_cpu_get -EXPORT_SYMBOL_GPL vmlinux 0x0436f6ae devm_extcon_dev_register -EXPORT_SYMBOL_GPL vmlinux 0x043c3b31 alloc_empty_file -EXPORT_SYMBOL_GPL vmlinux 0x0440efd6 fat_time_fat2unix -EXPORT_SYMBOL_GPL vmlinux 0x0447692d dev_pm_genpd_set_performance_state -EXPORT_SYMBOL_GPL vmlinux 0x04476f73 dev_pm_qos_hide_flags -EXPORT_SYMBOL_GPL vmlinux 0x044d019b bpf_trace_run6 -EXPORT_SYMBOL_GPL vmlinux 0x045a5df1 __blkg_prfill_rwstat -EXPORT_SYMBOL_GPL vmlinux 0x0465a073 regmap_reg_in_ranges -EXPORT_SYMBOL_GPL vmlinux 0x0469d9d2 rio_mport_write_config_16 -EXPORT_SYMBOL_GPL vmlinux 0x046bf4c8 net_ns_type_operations -EXPORT_SYMBOL_GPL vmlinux 0x046f359e of_overlay_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0x0472cf3b register_kprobe -EXPORT_SYMBOL_GPL vmlinux 0x0473f6da usb_hcd_pci_probe -EXPORT_SYMBOL_GPL vmlinux 0x0478830f balloon_aops -EXPORT_SYMBOL_GPL vmlinux 0x047d8cd9 bgpio_init -EXPORT_SYMBOL_GPL vmlinux 0x048875aa __traceiter_pelt_se_tp -EXPORT_SYMBOL_GPL vmlinux 0x048b5f8d twl4030_audio_get_mclk -EXPORT_SYMBOL_GPL vmlinux 0x04968716 alloc_iova -EXPORT_SYMBOL_GPL vmlinux 0x04990b64 nvmem_cell_read_u8 -EXPORT_SYMBOL_GPL vmlinux 0x049e5156 gnttab_try_end_foreign_access -EXPORT_SYMBOL_GPL vmlinux 0x04a24094 xenbus_match -EXPORT_SYMBOL_GPL vmlinux 0x04ab8072 strp_unpause -EXPORT_SYMBOL_GPL vmlinux 0x04b1cd0d __traceiter_add_device_to_group -EXPORT_SYMBOL_GPL vmlinux 0x04bf0092 io_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x04c113ea i2c_generic_scl_recovery -EXPORT_SYMBOL_GPL vmlinux 0x04c3db0b dev_queue_xmit_nit -EXPORT_SYMBOL_GPL vmlinux 0x04c4f603 mpi_get_buffer -EXPORT_SYMBOL_GPL vmlinux 0x04c815ad dax_region_put -EXPORT_SYMBOL_GPL vmlinux 0x04c8aebf console_verbose -EXPORT_SYMBOL_GPL vmlinux 0x04c8efe1 bio_release_pages -EXPORT_SYMBOL_GPL vmlinux 0x04df8fbc lzo1x_decompress_safe -EXPORT_SYMBOL_GPL vmlinux 0x05043f81 nf_ip_route -EXPORT_SYMBOL_GPL vmlinux 0x05073fdb gpiod_get_raw_array_value -EXPORT_SYMBOL_GPL vmlinux 0x05196b49 __cpuhp_state_add_instance -EXPORT_SYMBOL_GPL vmlinux 0x0519e416 __devm_clk_hw_register_mux -EXPORT_SYMBOL_GPL vmlinux 0x052c1890 devm_irq_alloc_generic_chip -EXPORT_SYMBOL_GPL vmlinux 0x052c9aed ktime_get_real_fast_ns -EXPORT_SYMBOL_GPL vmlinux 0x053159e2 skb_send_sock_locked -EXPORT_SYMBOL_GPL vmlinux 0x053d738a __SCK__tp_func_br_fdb_update -EXPORT_SYMBOL_GPL vmlinux 0x0540e635 __account_locked_vm -EXPORT_SYMBOL_GPL vmlinux 0x0543fdc1 component_unbind_all -EXPORT_SYMBOL_GPL vmlinux 0x054e550b kernel_halt -EXPORT_SYMBOL_GPL vmlinux 0x055c65be perf_aux_output_skip -EXPORT_SYMBOL_GPL vmlinux 0x05610897 of_changeset_destroy -EXPORT_SYMBOL_GPL vmlinux 0x05641313 imx_clk_hw_sscg_pll -EXPORT_SYMBOL_GPL vmlinux 0x056de828 phy_led_triggers_register -EXPORT_SYMBOL_GPL vmlinux 0x0571d83e fsl_mc_portal_free -EXPORT_SYMBOL_GPL vmlinux 0x0587ca8c usb_get_status -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 0x05af5bb9 usb_enable_ltm -EXPORT_SYMBOL_GPL vmlinux 0x05be2998 get_net_ns_by_fd -EXPORT_SYMBOL_GPL vmlinux 0x05c1605c of_dma_router_register -EXPORT_SYMBOL_GPL vmlinux 0x05c42936 acpi_get_and_request_gpiod -EXPORT_SYMBOL_GPL vmlinux 0x05e86f5b cpufreq_driver_fast_switch -EXPORT_SYMBOL_GPL vmlinux 0x05ed0228 clockevents_config_and_register -EXPORT_SYMBOL_GPL vmlinux 0x06055a23 __tracepoint_pelt_se_tp -EXPORT_SYMBOL_GPL vmlinux 0x060dd518 pci_msi_mask_irq -EXPORT_SYMBOL_GPL vmlinux 0x06123681 vfs_read -EXPORT_SYMBOL_GPL vmlinux 0x0614cd19 devlink_dpipe_action_put -EXPORT_SYMBOL_GPL vmlinux 0x06209f49 phy_lookup_setting -EXPORT_SYMBOL_GPL vmlinux 0x0626da5f od_unregister_powersave_bias_handler -EXPORT_SYMBOL_GPL vmlinux 0x062ff491 i2c_for_each_dev -EXPORT_SYMBOL_GPL vmlinux 0x0635ad35 fsl_mc_portal_reset -EXPORT_SYMBOL_GPL vmlinux 0x06387d2b __traceiter_pelt_thermal_tp -EXPORT_SYMBOL_GPL vmlinux 0x063bea40 pci_bridge_secondary_bus_reset -EXPORT_SYMBOL_GPL vmlinux 0x063e9296 rpi_firmware_put -EXPORT_SYMBOL_GPL vmlinux 0x06414622 nf_hook_entries_delete_raw -EXPORT_SYMBOL_GPL vmlinux 0x06425046 get_device_system_crosststamp -EXPORT_SYMBOL_GPL vmlinux 0x0645ea47 device_del -EXPORT_SYMBOL_GPL vmlinux 0x064db9a5 mark_mounts_for_expiry -EXPORT_SYMBOL_GPL vmlinux 0x0668c97f bpfilter_umh_cleanup -EXPORT_SYMBOL_GPL vmlinux 0x066d0d3a watchdog_set_last_hw_keepalive -EXPORT_SYMBOL_GPL vmlinux 0x067a33d8 of_phy_put -EXPORT_SYMBOL_GPL vmlinux 0x06919e28 usb_get_role_switch_default_mode -EXPORT_SYMBOL_GPL vmlinux 0x069567c4 pm_generic_poweroff -EXPORT_SYMBOL_GPL vmlinux 0x069d52c7 gpiod_set_config -EXPORT_SYMBOL_GPL vmlinux 0x06bc5ac7 tty_port_default_client_ops -EXPORT_SYMBOL_GPL vmlinux 0x06c6b3a6 is_nvdimm_sync -EXPORT_SYMBOL_GPL vmlinux 0x06c6dded ata_scsi_slave_config -EXPORT_SYMBOL_GPL vmlinux 0x06c9557a power_supply_get_battery_info -EXPORT_SYMBOL_GPL vmlinux 0x06c9ae31 rio_request_inb_mbox -EXPORT_SYMBOL_GPL vmlinux 0x06ca2723 device_find_child_by_name -EXPORT_SYMBOL_GPL vmlinux 0x06cca30b ring_buffer_record_off -EXPORT_SYMBOL_GPL vmlinux 0x06cd8867 of_irq_to_resource_table -EXPORT_SYMBOL_GPL vmlinux 0x06cfdf67 relay_reset -EXPORT_SYMBOL_GPL vmlinux 0x06d6e2b8 of_css -EXPORT_SYMBOL_GPL vmlinux 0x06dcbba0 usb_match_id -EXPORT_SYMBOL_GPL vmlinux 0x06e4433e sunxi_ccu_set_mmc_timing_mode -EXPORT_SYMBOL_GPL vmlinux 0x06e6f050 devlink_traps_unregister -EXPORT_SYMBOL_GPL vmlinux 0x06e9dc67 tegra_agic_irq_is_active -EXPORT_SYMBOL_GPL vmlinux 0x06ea20be xen_unmap_domain_gfn_range -EXPORT_SYMBOL_GPL vmlinux 0x06febd4c find_get_pid -EXPORT_SYMBOL_GPL vmlinux 0x0707019a context_tracking -EXPORT_SYMBOL_GPL vmlinux 0x0714104c pm_generic_resume -EXPORT_SYMBOL_GPL vmlinux 0x071ab19d sock_diag_register_inet_compat -EXPORT_SYMBOL_GPL vmlinux 0x07242d92 put_dax -EXPORT_SYMBOL_GPL vmlinux 0x0726a677 pm_generic_restore_noirq -EXPORT_SYMBOL_GPL vmlinux 0x0730ee1e crypto_stats_skcipher_decrypt -EXPORT_SYMBOL_GPL vmlinux 0x0733a0fa devm_blk_ksm_init -EXPORT_SYMBOL_GPL vmlinux 0x07419705 sk_set_peek_off -EXPORT_SYMBOL_GPL vmlinux 0x07483e13 cn_del_callback -EXPORT_SYMBOL_GPL vmlinux 0x074f98db synth_event_add_field -EXPORT_SYMBOL_GPL vmlinux 0x0758eb29 usb_get_dev -EXPORT_SYMBOL_GPL vmlinux 0x076356e7 sfp_may_have_phy -EXPORT_SYMBOL_GPL vmlinux 0x0771d01b irq_chip_set_type_parent -EXPORT_SYMBOL_GPL vmlinux 0x0785400d __srcu_read_lock -EXPORT_SYMBOL_GPL vmlinux 0x078d22b1 devm_namespace_enable -EXPORT_SYMBOL_GPL vmlinux 0x079344b3 tcp_leave_memory_pressure -EXPORT_SYMBOL_GPL vmlinux 0x0798a5d3 do_truncate -EXPORT_SYMBOL_GPL vmlinux 0x079a0362 of_dma_xlate_by_chan_id -EXPORT_SYMBOL_GPL vmlinux 0x079fc62c clk_hw_get_parent_index -EXPORT_SYMBOL_GPL vmlinux 0x07a88e33 list_lru_walk_one -EXPORT_SYMBOL_GPL vmlinux 0x07abb12c skb_morph -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 0x07cb37ed pcie_bus_configure_settings -EXPORT_SYMBOL_GPL vmlinux 0x07d9f8de iomap_page_mkwrite -EXPORT_SYMBOL_GPL vmlinux 0x07e2daa7 switchdev_bridge_port_offload -EXPORT_SYMBOL_GPL vmlinux 0x07edc1a8 devlink_trap_report -EXPORT_SYMBOL_GPL vmlinux 0x07f38ea2 acpi_device_uevent_modalias -EXPORT_SYMBOL_GPL vmlinux 0x07fa25ef power_supply_powers -EXPORT_SYMBOL_GPL vmlinux 0x0804fe03 regulator_put -EXPORT_SYMBOL_GPL vmlinux 0x08135613 dax_write_cache -EXPORT_SYMBOL_GPL vmlinux 0x081ccc37 blk_mq_freeze_queue -EXPORT_SYMBOL_GPL vmlinux 0x081e8437 spi_split_transfers_maxsize -EXPORT_SYMBOL_GPL vmlinux 0x0825187b regulator_unregister -EXPORT_SYMBOL_GPL vmlinux 0x08299479 ata_sff_data_xfer32 -EXPORT_SYMBOL_GPL vmlinux 0x08432e0a of_clk_hw_simple_get -EXPORT_SYMBOL_GPL vmlinux 0x084a3248 usb_autopm_get_interface -EXPORT_SYMBOL_GPL vmlinux 0x084a571e init_srcu_struct -EXPORT_SYMBOL_GPL vmlinux 0x0852d02a usb_hub_claim_port -EXPORT_SYMBOL_GPL vmlinux 0x08576175 unregister_kretprobes -EXPORT_SYMBOL_GPL vmlinux 0x08716cea rio_set_port_lockout -EXPORT_SYMBOL_GPL vmlinux 0x08748548 regulator_set_pull_down_regmap -EXPORT_SYMBOL_GPL vmlinux 0x087cf653 acpi_subsys_prepare -EXPORT_SYMBOL_GPL vmlinux 0x087f5dc5 wm831x_of_match -EXPORT_SYMBOL_GPL vmlinux 0x0883ab56 usb_create_hcd -EXPORT_SYMBOL_GPL vmlinux 0x08aaed46 get_pid_task -EXPORT_SYMBOL_GPL vmlinux 0x08b59806 spi_controller_dma_map_mem_op_data -EXPORT_SYMBOL_GPL vmlinux 0x08bb77a2 of_pinctrl_get -EXPORT_SYMBOL_GPL vmlinux 0x08c78cf7 offline_and_remove_memory -EXPORT_SYMBOL_GPL vmlinux 0x08f3d973 shash_ahash_finup -EXPORT_SYMBOL_GPL vmlinux 0x08f5656d icc_provider_del -EXPORT_SYMBOL_GPL vmlinux 0x090737bc nvdimm_bus_register -EXPORT_SYMBOL_GPL vmlinux 0x09097953 linear_hugepage_index -EXPORT_SYMBOL_GPL vmlinux 0x0915f137 srcu_barrier -EXPORT_SYMBOL_GPL vmlinux 0x091eb9b4 round_jiffies -EXPORT_SYMBOL_GPL vmlinux 0x09256c43 register_ftrace_function -EXPORT_SYMBOL_GPL vmlinux 0x0925b866 policy_has_boost_freq -EXPORT_SYMBOL_GPL vmlinux 0x092f5e0f fsl_mc_portal_allocate -EXPORT_SYMBOL_GPL vmlinux 0x09300fdb sdev_evt_send -EXPORT_SYMBOL_GPL vmlinux 0x093786cf synth_event_add_field_str -EXPORT_SYMBOL_GPL vmlinux 0x0954eba6 do_tcp_sendpages -EXPORT_SYMBOL_GPL vmlinux 0x0955922b fuse_dev_free -EXPORT_SYMBOL_GPL vmlinux 0x0965864b sprd_pinctrl_remove -EXPORT_SYMBOL_GPL vmlinux 0x096dc8a7 ethnl_cable_test_amplitude -EXPORT_SYMBOL_GPL vmlinux 0x097ddc04 context_tracking_exit -EXPORT_SYMBOL_GPL vmlinux 0x098f9a86 screen_pos -EXPORT_SYMBOL_GPL vmlinux 0x0996afec iomap_readpage -EXPORT_SYMBOL_GPL vmlinux 0x09a153ff pci_host_probe -EXPORT_SYMBOL_GPL vmlinux 0x09b53e14 interval_tree_remove -EXPORT_SYMBOL_GPL vmlinux 0x09b83c91 serial8250_rpm_get_tx -EXPORT_SYMBOL_GPL vmlinux 0x09c16ed5 of_property_read_u64 -EXPORT_SYMBOL_GPL vmlinux 0x09f50f32 rcu_nocb_flush_deferred_wakeup -EXPORT_SYMBOL_GPL vmlinux 0x09f638f7 subsys_dev_iter_exit -EXPORT_SYMBOL_GPL vmlinux 0x0a07eb6e crypto_unregister_instance -EXPORT_SYMBOL_GPL vmlinux 0x0a150d47 blkcg_deactivate_policy -EXPORT_SYMBOL_GPL vmlinux 0x0a180eed clk_regmap_gate_ro_ops -EXPORT_SYMBOL_GPL vmlinux 0x0a26f1c6 device_property_present -EXPORT_SYMBOL_GPL vmlinux 0x0a30b175 wm831x_bulk_read -EXPORT_SYMBOL_GPL vmlinux 0x0a463293 __tracepoint_error_report_end -EXPORT_SYMBOL_GPL vmlinux 0x0a480727 clk_mux_determine_rate_flags -EXPORT_SYMBOL_GPL vmlinux 0x0a4c1f94 skcipher_register_instance -EXPORT_SYMBOL_GPL vmlinux 0x0a52c511 hv_query_ext_cap -EXPORT_SYMBOL_GPL vmlinux 0x0a58996a pinctrl_pm_select_idle_state -EXPORT_SYMBOL_GPL vmlinux 0x0a5bd871 usb_phy_roothub_alloc -EXPORT_SYMBOL_GPL vmlinux 0x0a5be00f crypto_remove_spawns -EXPORT_SYMBOL_GPL vmlinux 0x0a640828 pinctrl_parse_index_with_args -EXPORT_SYMBOL_GPL vmlinux 0x0a670fa5 badrange_forget -EXPORT_SYMBOL_GPL vmlinux 0x0a6c4041 cn_netlink_send -EXPORT_SYMBOL_GPL vmlinux 0x0a6c4c19 ahci_qc_issue -EXPORT_SYMBOL_GPL vmlinux 0x0a6e883d udp4_hwcsum -EXPORT_SYMBOL_GPL vmlinux 0x0a7ceb30 __tracepoint_non_standard_event -EXPORT_SYMBOL_GPL vmlinux 0x0a7f35e6 sbitmap_prepare_to_wait -EXPORT_SYMBOL_GPL vmlinux 0x0a83765b proc_create_net_single -EXPORT_SYMBOL_GPL vmlinux 0x0a9b8308 xenbus_register_driver_common -EXPORT_SYMBOL_GPL vmlinux 0x0aa121b4 pinctrl_register -EXPORT_SYMBOL_GPL vmlinux 0x0aa5d5f7 pm_clk_add -EXPORT_SYMBOL_GPL vmlinux 0x0ab93721 hwspin_lock_request -EXPORT_SYMBOL_GPL vmlinux 0x0abc6be6 k3_ringacc_ring_is_full -EXPORT_SYMBOL_GPL vmlinux 0x0abcbf05 pkcs7_parse_message -EXPORT_SYMBOL_GPL vmlinux 0x0abe4955 serdev_device_add -EXPORT_SYMBOL_GPL vmlinux 0x0acefa7d usb_driver_claim_interface -EXPORT_SYMBOL_GPL vmlinux 0x0ad5eb54 clk_gate_is_enabled -EXPORT_SYMBOL_GPL vmlinux 0x0ae42da7 crypto_alloc_aead -EXPORT_SYMBOL_GPL vmlinux 0x0af40724 iommu_alloc_resv_region -EXPORT_SYMBOL_GPL vmlinux 0x0af70d40 skb_defer_rx_timestamp -EXPORT_SYMBOL_GPL vmlinux 0x0afc8df3 gpiochip_request_own_desc -EXPORT_SYMBOL_GPL vmlinux 0x0b057125 ima_file_check -EXPORT_SYMBOL_GPL vmlinux 0x0b07abe2 unshare_fs_struct -EXPORT_SYMBOL_GPL vmlinux 0x0b149ba8 meson_aoclkc_probe -EXPORT_SYMBOL_GPL vmlinux 0x0b1bb9f9 synchronize_rcu_tasks -EXPORT_SYMBOL_GPL vmlinux 0x0b1f6042 add_wait_queue_priority -EXPORT_SYMBOL_GPL vmlinux 0x0b21d227 tracing_snapshot_cond -EXPORT_SYMBOL_GPL vmlinux 0x0b2db2d5 remove_resource -EXPORT_SYMBOL_GPL vmlinux 0x0b3a3ed7 zynqmp_pm_fpga_get_status -EXPORT_SYMBOL_GPL vmlinux 0x0b407ed9 sysfs_add_file_to_group -EXPORT_SYMBOL_GPL vmlinux 0x0b4368a4 usb_hcd_amd_remote_wakeup_quirk -EXPORT_SYMBOL_GPL vmlinux 0x0b48d7b4 stmpe_set_altfunc -EXPORT_SYMBOL_GPL vmlinux 0x0b4c2b6e device_set_wakeup_enable -EXPORT_SYMBOL_GPL vmlinux 0x0b52e502 apei_resources_add -EXPORT_SYMBOL_GPL vmlinux 0x0b624abf platform_irqchip_probe -EXPORT_SYMBOL_GPL vmlinux 0x0b690f04 k3_udma_glue_tx_get_txcq_id -EXPORT_SYMBOL_GPL vmlinux 0x0b6f5fba ata_sff_busy_sleep -EXPORT_SYMBOL_GPL vmlinux 0x0b745dc1 nvmem_cell_get -EXPORT_SYMBOL_GPL vmlinux 0x0b7a0482 tegra_bpmp_request_mrq -EXPORT_SYMBOL_GPL vmlinux 0x0b96b2bd inet_hash -EXPORT_SYMBOL_GPL vmlinux 0x0bb028d4 hisi_clk_register_fixed_factor -EXPORT_SYMBOL_GPL vmlinux 0x0bbb1cc6 usb_of_get_device_node -EXPORT_SYMBOL_GPL vmlinux 0x0bbdc9b2 remove_memory -EXPORT_SYMBOL_GPL vmlinux 0x0bbe0e6b skb_partial_csum_set -EXPORT_SYMBOL_GPL vmlinux 0x0bd3cfc5 gpiod_set_value -EXPORT_SYMBOL_GPL vmlinux 0x0bddcd18 clk_hw_register_fixed_factor -EXPORT_SYMBOL_GPL vmlinux 0x0be6ae9f debugfs_create_x64 -EXPORT_SYMBOL_GPL vmlinux 0x0beda923 switchdev_handle_fdb_del_to_device -EXPORT_SYMBOL_GPL vmlinux 0x0bf32478 __SCK__tp_func_pelt_rt_tp -EXPORT_SYMBOL_GPL vmlinux 0x0bf4f637 devm_pwmchip_add -EXPORT_SYMBOL_GPL vmlinux 0x0bfa3a19 rcu_idle_exit -EXPORT_SYMBOL_GPL vmlinux 0x0c1d14c9 bio_trim -EXPORT_SYMBOL_GPL vmlinux 0x0c1ef2ab irq_domain_xlate_onetwocell -EXPORT_SYMBOL_GPL vmlinux 0x0c2c5802 work_busy -EXPORT_SYMBOL_GPL vmlinux 0x0c2cc63b regmap_async_complete_cb -EXPORT_SYMBOL_GPL vmlinux 0x0c32ff8a edac_pci_alloc_index -EXPORT_SYMBOL_GPL vmlinux 0x0c3e6241 k3_udma_glue_disable_rx_chn -EXPORT_SYMBOL_GPL vmlinux 0x0c4edad3 tpm1_do_selftest -EXPORT_SYMBOL_GPL vmlinux 0x0c52c442 sdio_writeb -EXPORT_SYMBOL_GPL vmlinux 0x0c678232 fsl_mc_bus_dpmcp_type -EXPORT_SYMBOL_GPL vmlinux 0x0c7c4514 tpmm_chip_alloc -EXPORT_SYMBOL_GPL vmlinux 0x0c7d91d2 of_clk_hw_onecell_get -EXPORT_SYMBOL_GPL vmlinux 0x0c837b38 __sock_recv_ts_and_drops -EXPORT_SYMBOL_GPL vmlinux 0x0c88c1c3 pci_vpd_find_id_string -EXPORT_SYMBOL_GPL vmlinux 0x0c90111a gpiod_get_raw_value -EXPORT_SYMBOL_GPL vmlinux 0x0c96c1bd usb_phy_get_charger_current -EXPORT_SYMBOL_GPL vmlinux 0x0ca8d858 acct_bioset_init -EXPORT_SYMBOL_GPL vmlinux 0x0caa5e6a pwm_set_chip_data -EXPORT_SYMBOL_GPL vmlinux 0x0cb06ce8 srcu_notifier_chain_unregister -EXPORT_SYMBOL_GPL vmlinux 0x0cbe3ee2 software_node_unregister -EXPORT_SYMBOL_GPL vmlinux 0x0ccf5275 zynqmp_pm_pinctrl_get_config -EXPORT_SYMBOL_GPL vmlinux 0x0cd548d6 crypto_unregister_shashes -EXPORT_SYMBOL_GPL vmlinux 0x0ce1ec50 list_lru_add -EXPORT_SYMBOL_GPL vmlinux 0x0ce3dd73 bman_is_probed -EXPORT_SYMBOL_GPL vmlinux 0x0ced6230 clk_regmap_gate_ops -EXPORT_SYMBOL_GPL vmlinux 0x0cfcf8b2 serial8250_set_defaults -EXPORT_SYMBOL_GPL vmlinux 0x0cfd5ad3 platform_get_mem_or_io -EXPORT_SYMBOL_GPL vmlinux 0x0d03c860 gpiochip_get_desc -EXPORT_SYMBOL_GPL vmlinux 0x0d07b6e2 clk_divider_ro_ops -EXPORT_SYMBOL_GPL vmlinux 0x0d0d9c1d devm_nvmem_cell_get -EXPORT_SYMBOL_GPL vmlinux 0x0d13e16d devm_clk_get_optional_enabled -EXPORT_SYMBOL_GPL vmlinux 0x0d2013ee regulator_get_error_flags -EXPORT_SYMBOL_GPL vmlinux 0x0d22c77f cpufreq_dbs_governor_start -EXPORT_SYMBOL_GPL vmlinux 0x0d236884 dpbp_disable -EXPORT_SYMBOL_GPL vmlinux 0x0d31c0ae imx_pinctrl_sc_ipc_init -EXPORT_SYMBOL_GPL vmlinux 0x0d3efcfe device_pm_wait_for_dev -EXPORT_SYMBOL_GPL vmlinux 0x0d459213 work_on_cpu_safe -EXPORT_SYMBOL_GPL vmlinux 0x0d4961de nf_log_buf_open -EXPORT_SYMBOL_GPL vmlinux 0x0d4a1681 pstore_unregister -EXPORT_SYMBOL_GPL vmlinux 0x0d4e3f8c iopf_queue_alloc -EXPORT_SYMBOL_GPL vmlinux 0x0d502ca4 sbitmap_queue_clear -EXPORT_SYMBOL_GPL vmlinux 0x0d5cecc6 ima_measure_critical_data -EXPORT_SYMBOL_GPL vmlinux 0x0d733851 debugfs_create_u64 -EXPORT_SYMBOL_GPL vmlinux 0x0d89b154 __traceiter_wbc_writepage -EXPORT_SYMBOL_GPL vmlinux 0x0d8bca88 ipv6_recv_error -EXPORT_SYMBOL_GPL vmlinux 0x0da9f5eb of_get_regulator_init_data -EXPORT_SYMBOL_GPL vmlinux 0x0dad8512 attribute_container_unregister -EXPORT_SYMBOL_GPL vmlinux 0x0db09584 ata_bmdma_setup -EXPORT_SYMBOL_GPL vmlinux 0x0dbc1818 icc_node_add -EXPORT_SYMBOL_GPL vmlinux 0x0dd5e354 dev_pm_set_dedicated_wake_irq_reverse -EXPORT_SYMBOL_GPL vmlinux 0x0dda36ed tty_get_icount -EXPORT_SYMBOL_GPL vmlinux 0x0ddb1cd7 llist_reverse_order -EXPORT_SYMBOL_GPL vmlinux 0x0de2d00d acpi_subsys_suspend_noirq -EXPORT_SYMBOL_GPL vmlinux 0x0deeddc5 skcipher_alloc_instance_simple -EXPORT_SYMBOL_GPL vmlinux 0x0df1233f bsg_job_get -EXPORT_SYMBOL_GPL vmlinux 0x0df329c9 public_key_subtype -EXPORT_SYMBOL_GPL vmlinux 0x0e007edf xen_evtchn_nr_channels -EXPORT_SYMBOL_GPL vmlinux 0x0e126f83 thermal_zone_bind_cooling_device -EXPORT_SYMBOL_GPL vmlinux 0x0e13cb4d apei_resources_release -EXPORT_SYMBOL_GPL vmlinux 0x0e4122d1 icc_disable -EXPORT_SYMBOL_GPL vmlinux 0x0e41c9d0 pwmchip_add -EXPORT_SYMBOL_GPL vmlinux 0x0e453b2e dm_get_queue_limits -EXPORT_SYMBOL_GPL vmlinux 0x0e46318e ahci_sdev_attrs -EXPORT_SYMBOL_GPL vmlinux 0x0e5279eb acomp_request_free -EXPORT_SYMBOL_GPL vmlinux 0x0e5cc9d7 xdp_unreg_mem_model -EXPORT_SYMBOL_GPL vmlinux 0x0e6b79af static_key_disable_cpuslocked -EXPORT_SYMBOL_GPL vmlinux 0x0e6eb398 devm_pm_clk_create -EXPORT_SYMBOL_GPL vmlinux 0x0e6ebbcb i2c_of_match_device -EXPORT_SYMBOL_GPL vmlinux 0x0e74bf01 usb_role_switch_register -EXPORT_SYMBOL_GPL vmlinux 0x0e78f094 attribute_container_classdev_to_container -EXPORT_SYMBOL_GPL vmlinux 0x0e7feacc dev_pm_opp_set_clkname -EXPORT_SYMBOL_GPL vmlinux 0x0e8ea848 ohci_init_driver -EXPORT_SYMBOL_GPL vmlinux 0x0e908f36 fwnode_get_name -EXPORT_SYMBOL_GPL vmlinux 0x0e96da91 thermal_of_cooling_device_register -EXPORT_SYMBOL_GPL vmlinux 0x0ea5cbce xen_irq_lateeoi -EXPORT_SYMBOL_GPL vmlinux 0x0eab6081 fuse_dax_cancel_work -EXPORT_SYMBOL_GPL vmlinux 0x0eb7e24f is_virtio_device -EXPORT_SYMBOL_GPL vmlinux 0x0ec096b0 hv_read_reference_counter -EXPORT_SYMBOL_GPL vmlinux 0x0ec17f36 clone_private_mount -EXPORT_SYMBOL_GPL vmlinux 0x0ec62b59 ping_seq_next -EXPORT_SYMBOL_GPL vmlinux 0x0ecf3324 of_find_spi_device_by_node -EXPORT_SYMBOL_GPL vmlinux 0x0ed8aa03 strp_process -EXPORT_SYMBOL_GPL vmlinux 0x0ef69118 crypto_register_aead -EXPORT_SYMBOL_GPL vmlinux 0x0effd1aa usb_show_dynids -EXPORT_SYMBOL_GPL vmlinux 0x0f0174c6 apply_to_existing_page_range -EXPORT_SYMBOL_GPL vmlinux 0x0f0656c2 mmu_notifier_range_update_to_read_only -EXPORT_SYMBOL_GPL vmlinux 0x0f08b7fc virtqueue_get_desc_addr -EXPORT_SYMBOL_GPL vmlinux 0x0f0a3b06 rio_mport_write_config_32 -EXPORT_SYMBOL_GPL vmlinux 0x0f180070 ring_buffer_free_read_page -EXPORT_SYMBOL_GPL vmlinux 0x0f2243ea netdev_set_default_ethtool_ops -EXPORT_SYMBOL_GPL vmlinux 0x0f350b1d usb_unlink_urb -EXPORT_SYMBOL_GPL vmlinux 0x0f3d4452 fuse_sync_release -EXPORT_SYMBOL_GPL vmlinux 0x0f43da56 bio_add_zone_append_page -EXPORT_SYMBOL_GPL vmlinux 0x0f4a1ed3 virtqueue_get_used_addr -EXPORT_SYMBOL_GPL vmlinux 0x0f52c884 bus_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x0f5d8106 xdp_build_skb_from_frame -EXPORT_SYMBOL_GPL vmlinux 0x0f729ec0 iommu_setup_dma_ops -EXPORT_SYMBOL_GPL vmlinux 0x0f72ada1 acpi_dev_resource_io -EXPORT_SYMBOL_GPL vmlinux 0x0f7a7686 sysfs_remove_group -EXPORT_SYMBOL_GPL vmlinux 0x0f7ca236 dmi_memdev_name -EXPORT_SYMBOL_GPL vmlinux 0x0f86a483 devm_pinctrl_unregister -EXPORT_SYMBOL_GPL vmlinux 0x0fa2b780 crypto_stats_ahash_final -EXPORT_SYMBOL_GPL vmlinux 0x0fa39430 rio_map_outb_region -EXPORT_SYMBOL_GPL vmlinux 0x0fa8a02c crypto_alloc_acomp_node -EXPORT_SYMBOL_GPL vmlinux 0x0fbb7344 memremap_compat_align -EXPORT_SYMBOL_GPL vmlinux 0x0fd4610e kmem_dump_obj -EXPORT_SYMBOL_GPL vmlinux 0x0fe4d126 vfs_setxattr -EXPORT_SYMBOL_GPL vmlinux 0x0feefb37 wm831x_set_bits -EXPORT_SYMBOL_GPL vmlinux 0x10035284 vp_modern_set_features -EXPORT_SYMBOL_GPL vmlinux 0x1005d60b tick_nohz_dep_set_cpu -EXPORT_SYMBOL_GPL vmlinux 0x10138352 tracing_on -EXPORT_SYMBOL_GPL vmlinux 0x102ce46d devm_kstrdup_const -EXPORT_SYMBOL_GPL vmlinux 0x1035043f regulator_bulk_register_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0x103e3016 trace_array_set_clr_event -EXPORT_SYMBOL_GPL vmlinux 0x1041006e fat_build_inode -EXPORT_SYMBOL_GPL vmlinux 0x1051e447 cpufreq_table_index_unsorted -EXPORT_SYMBOL_GPL vmlinux 0x1057f844 dma_buf_end_cpu_access -EXPORT_SYMBOL_GPL vmlinux 0x10656312 pci_aer_clear_nonfatal_status -EXPORT_SYMBOL_GPL vmlinux 0x1067f13f nl_table_lock -EXPORT_SYMBOL_GPL vmlinux 0x1071fa40 ata_dummy_port_ops -EXPORT_SYMBOL_GPL vmlinux 0x10720b6f rhashtable_walk_next -EXPORT_SYMBOL_GPL vmlinux 0x10818224 virtio_check_driver_offered_feature -EXPORT_SYMBOL_GPL vmlinux 0x1084d1a0 blk_mq_virtio_map_queues -EXPORT_SYMBOL_GPL vmlinux 0x108a0acd bstr_printf -EXPORT_SYMBOL_GPL vmlinux 0x108dc665 pinconf_generic_dt_subnode_to_map -EXPORT_SYMBOL_GPL vmlinux 0x1093302d pci_dev_lock -EXPORT_SYMBOL_GPL vmlinux 0x10a5df02 genphy_c45_read_pma -EXPORT_SYMBOL_GPL vmlinux 0x10b81639 mpc8xxx_spi_tx_buf_u16 -EXPORT_SYMBOL_GPL vmlinux 0x10d1da6d class_compat_create_link -EXPORT_SYMBOL_GPL vmlinux 0x10d37efe to_nd_region -EXPORT_SYMBOL_GPL vmlinux 0x10dd031f dm_hold -EXPORT_SYMBOL_GPL vmlinux 0x10e4156c gnttab_free_pages -EXPORT_SYMBOL_GPL vmlinux 0x10ecc52c usb_amd_quirk_pll_enable -EXPORT_SYMBOL_GPL vmlinux 0x10fd0b4a dw8250_setup_port -EXPORT_SYMBOL_GPL vmlinux 0x110106c1 cper_severity_to_aer -EXPORT_SYMBOL_GPL vmlinux 0x11197ca3 pci_epc_put -EXPORT_SYMBOL_GPL vmlinux 0x11242d99 fuse_conn_destroy -EXPORT_SYMBOL_GPL vmlinux 0x114a07ec fsl_mc_bus_dpio_type -EXPORT_SYMBOL_GPL vmlinux 0x116a561e regcache_drop_region -EXPORT_SYMBOL_GPL vmlinux 0x1181568c of_add_property -EXPORT_SYMBOL_GPL vmlinux 0x11957459 od_register_powersave_bias_handler -EXPORT_SYMBOL_GPL vmlinux 0x119bc277 pci_stop_and_remove_bus_device_locked -EXPORT_SYMBOL_GPL vmlinux 0x11a29d0e ata_sff_check_status -EXPORT_SYMBOL_GPL vmlinux 0x11a2e0ac crypto_dh_key_len -EXPORT_SYMBOL_GPL vmlinux 0x11ba45c5 regmap_field_read -EXPORT_SYMBOL_GPL vmlinux 0x11ba662f handle_simple_irq -EXPORT_SYMBOL_GPL vmlinux 0x11d20cd7 fsl_mc_bus_dpdmai_type -EXPORT_SYMBOL_GPL vmlinux 0x11d9d14b fib6_get_table -EXPORT_SYMBOL_GPL vmlinux 0x11da27c5 scsi_free_sgtables -EXPORT_SYMBOL_GPL vmlinux 0x11df0e75 devlink_fmsg_binary_pair_nest_start -EXPORT_SYMBOL_GPL vmlinux 0x11e08f96 trace_seq_putmem_hex -EXPORT_SYMBOL_GPL vmlinux 0x11f057c4 spi_bus_type -EXPORT_SYMBOL_GPL vmlinux 0x120479f9 crypto_rng_reset -EXPORT_SYMBOL_GPL vmlinux 0x12113604 transport_class_register -EXPORT_SYMBOL_GPL vmlinux 0x121d958a unregister_die_notifier -EXPORT_SYMBOL_GPL vmlinux 0x1228755b pci_reset_bus -EXPORT_SYMBOL_GPL vmlinux 0x122c09f5 perf_event_sysfs_show -EXPORT_SYMBOL_GPL vmlinux 0x122ed400 iptunnel_xmit -EXPORT_SYMBOL_GPL vmlinux 0x123043cd pci_ignore_hotplug -EXPORT_SYMBOL_GPL vmlinux 0x12311838 cpu_device_create -EXPORT_SYMBOL_GPL vmlinux 0x12315992 vfs_truncate -EXPORT_SYMBOL_GPL vmlinux 0x1234e483 get_cpu_iowait_time_us -EXPORT_SYMBOL_GPL vmlinux 0x1234ffa1 cper_estatus_check_header -EXPORT_SYMBOL_GPL vmlinux 0x12537dae __tracepoint_napi_poll -EXPORT_SYMBOL_GPL vmlinux 0x12543c35 tps6586x_set_bits -EXPORT_SYMBOL_GPL vmlinux 0x125b33d1 mptcp_pm_get_add_addr_accept_max -EXPORT_SYMBOL_GPL vmlinux 0x125ddf68 xas_pause -EXPORT_SYMBOL_GPL vmlinux 0x1268f357 resume_device_irqs -EXPORT_SYMBOL_GPL vmlinux 0x12722681 dma_buf_put -EXPORT_SYMBOL_GPL vmlinux 0x1287eaa6 irq_chip_mask_ack_parent -EXPORT_SYMBOL_GPL vmlinux 0x129334ae sfp_parse_support -EXPORT_SYMBOL_GPL vmlinux 0x12a99d7a blk_mq_freeze_queue_wait -EXPORT_SYMBOL_GPL vmlinux 0x12b3a326 tty_port_register_device_serdev -EXPORT_SYMBOL_GPL vmlinux 0x12b62a90 xdp_rxq_info_unused -EXPORT_SYMBOL_GPL vmlinux 0x12c0cff2 ehci_setup -EXPORT_SYMBOL_GPL vmlinux 0x12c2bf8e call_switchdev_blocking_notifiers -EXPORT_SYMBOL_GPL vmlinux 0x12d71059 ahci_kick_engine -EXPORT_SYMBOL_GPL vmlinux 0x12ee1173 memory_group_unregister -EXPORT_SYMBOL_GPL vmlinux 0x12f762a2 platform_get_irq_byname_optional -EXPORT_SYMBOL_GPL vmlinux 0x130d6b84 of_property_read_string_helper -EXPORT_SYMBOL_GPL vmlinux 0x1311ab6f rio_unmap_inb_region -EXPORT_SYMBOL_GPL vmlinux 0x131a5ed7 regmap_del_irq_chip -EXPORT_SYMBOL_GPL vmlinux 0x131db64a system_long_wq -EXPORT_SYMBOL_GPL vmlinux 0x133582a2 security_path_truncate -EXPORT_SYMBOL_GPL vmlinux 0x133969d7 __trace_printk -EXPORT_SYMBOL_GPL vmlinux 0x13454fd7 watchdog_notify_pretimeout -EXPORT_SYMBOL_GPL vmlinux 0x134bef88 usb_deregister_dev -EXPORT_SYMBOL_GPL vmlinux 0x1353c9c0 tegra_bpmp_mrq_is_supported -EXPORT_SYMBOL_GPL vmlinux 0x136209db power_supply_reg_notifier -EXPORT_SYMBOL_GPL vmlinux 0x13640660 get_cached_msi_msg -EXPORT_SYMBOL_GPL vmlinux 0x137ba5ef fwnode_property_read_u16_array -EXPORT_SYMBOL_GPL vmlinux 0x137d8f01 devlink_resource_occ_get_register -EXPORT_SYMBOL_GPL vmlinux 0x137fb8c9 iommu_sva_bind_device -EXPORT_SYMBOL_GPL vmlinux 0x138aff76 gnttab_init -EXPORT_SYMBOL_GPL vmlinux 0x138e0957 dax_write_cache_enabled -EXPORT_SYMBOL_GPL vmlinux 0x139d537e mddev_resume -EXPORT_SYMBOL_GPL vmlinux 0x13a01c93 iommu_unmap_fast -EXPORT_SYMBOL_GPL vmlinux 0x13b20607 __traceiter_neigh_update_done -EXPORT_SYMBOL_GPL vmlinux 0x13bc6bfb nvmem_device_get -EXPORT_SYMBOL_GPL vmlinux 0x13c8f95d ata_do_set_mode -EXPORT_SYMBOL_GPL vmlinux 0x13ce87e8 asn1_ber_decoder -EXPORT_SYMBOL_GPL vmlinux 0x13cffa83 gnttab_alloc_pages -EXPORT_SYMBOL_GPL vmlinux 0x13db1eb8 k3_udma_glue_rx_cppi5_to_dma_addr -EXPORT_SYMBOL_GPL vmlinux 0x13ed8784 sdev_evt_alloc -EXPORT_SYMBOL_GPL vmlinux 0x13fab921 cpuidle_unregister_device -EXPORT_SYMBOL_GPL vmlinux 0x13fdcf23 i2c_slave_unregister -EXPORT_SYMBOL_GPL vmlinux 0x13feef7c sfp_add_phy -EXPORT_SYMBOL_GPL vmlinux 0x1403ad09 cpufreq_add_update_util_hook -EXPORT_SYMBOL_GPL vmlinux 0x140bcdbc __rtnl_link_unregister -EXPORT_SYMBOL_GPL vmlinux 0x140ee888 adp5520_clr_bits -EXPORT_SYMBOL_GPL vmlinux 0x141f38bf ktime_get_raw_fast_ns -EXPORT_SYMBOL_GPL vmlinux 0x142c7e01 scsi_internal_device_block_nowait -EXPORT_SYMBOL_GPL vmlinux 0x14323770 rtnl_register_module -EXPORT_SYMBOL_GPL vmlinux 0x143beb97 ncsi_register_dev -EXPORT_SYMBOL_GPL vmlinux 0x1444f7e9 gpiod_to_irq -EXPORT_SYMBOL_GPL vmlinux 0x14460130 of_reserved_mem_lookup -EXPORT_SYMBOL_GPL vmlinux 0x1456762b k3_ringacc_ring_get_free -EXPORT_SYMBOL_GPL vmlinux 0x14575eaa dw_pcie_wait_for_link -EXPORT_SYMBOL_GPL vmlinux 0x1469e746 nf_queue -EXPORT_SYMBOL_GPL vmlinux 0x146cc88f bpf_master_redirect_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x1473ae6a usb_deregister -EXPORT_SYMBOL_GPL vmlinux 0x148370c0 perf_event_enable -EXPORT_SYMBOL_GPL vmlinux 0x14884ecf devm_led_classdev_register_ext -EXPORT_SYMBOL_GPL vmlinux 0x148b2002 cgroup_path_ns -EXPORT_SYMBOL_GPL vmlinux 0x148ec811 dev_pm_opp_of_get_sharing_cpus -EXPORT_SYMBOL_GPL vmlinux 0x148ed30c dev_pm_domain_attach_by_id -EXPORT_SYMBOL_GPL vmlinux 0x148fd794 enable_kprobe -EXPORT_SYMBOL_GPL vmlinux 0x1494dbdf tty_buffer_set_limit -EXPORT_SYMBOL_GPL vmlinux 0x14d01690 clk_mux_index_to_val -EXPORT_SYMBOL_GPL vmlinux 0x14d232b2 regulator_is_enabled_regmap -EXPORT_SYMBOL_GPL vmlinux 0x14e92061 tick_nohz_dep_clear_task -EXPORT_SYMBOL_GPL vmlinux 0x14ec4fdb evtchn_put -EXPORT_SYMBOL_GPL vmlinux 0x14f26b82 list_lru_count_one -EXPORT_SYMBOL_GPL vmlinux 0x150b0abc unregister_trace_event -EXPORT_SYMBOL_GPL vmlinux 0x150ff6ff __udp4_lib_lookup -EXPORT_SYMBOL_GPL vmlinux 0x1514475f nf_queue_entry_get_refs -EXPORT_SYMBOL_GPL vmlinux 0x15167ea7 sprd_pinctrl_shutdown -EXPORT_SYMBOL_GPL vmlinux 0x151c26fb nd_tbl -EXPORT_SYMBOL_GPL vmlinux 0x153375b4 ethnl_cable_test_result -EXPORT_SYMBOL_GPL vmlinux 0x153b60a6 klist_del -EXPORT_SYMBOL_GPL vmlinux 0x154085fe meson_pinctrl_probe -EXPORT_SYMBOL_GPL vmlinux 0x15458768 dax_copy_to_iter -EXPORT_SYMBOL_GPL vmlinux 0x15510a89 devlink_fmsg_binary_put -EXPORT_SYMBOL_GPL vmlinux 0x15524f37 gpiochip_relres_irq -EXPORT_SYMBOL_GPL vmlinux 0x156bf3bf msg_zerocopy_alloc -EXPORT_SYMBOL_GPL vmlinux 0x156c71c2 ohci_restart -EXPORT_SYMBOL_GPL vmlinux 0x157defd5 serial8250_em485_destroy -EXPORT_SYMBOL_GPL vmlinux 0x15895fd0 scsi_host_unblock -EXPORT_SYMBOL_GPL vmlinux 0x1595f9c0 iommu_fwspec_init -EXPORT_SYMBOL_GPL vmlinux 0x1596dfcd irq_domain_reset_irq_data -EXPORT_SYMBOL_GPL vmlinux 0x15ade1cc filter_irq_stacks -EXPORT_SYMBOL_GPL vmlinux 0x15c60a71 __tracepoint_pelt_dl_tp -EXPORT_SYMBOL_GPL vmlinux 0x15cab246 host1x_context_device_bus_type -EXPORT_SYMBOL_GPL vmlinux 0x15cb055f fwnode_get_next_parent -EXPORT_SYMBOL_GPL vmlinux 0x15d39313 pinctrl_get -EXPORT_SYMBOL_GPL vmlinux 0x15dd3dd5 skb_gso_validate_mac_len -EXPORT_SYMBOL_GPL vmlinux 0x15e1134f regmap_update_bits_base -EXPORT_SYMBOL_GPL vmlinux 0x15e5974e kset_create_and_add -EXPORT_SYMBOL_GPL vmlinux 0x15ea2648 hwpoison_filter_flags_mask -EXPORT_SYMBOL_GPL vmlinux 0x15f27c45 mpc8xxx_spi_rx_buf_u8 -EXPORT_SYMBOL_GPL vmlinux 0x15f32a14 usb_interrupt_msg -EXPORT_SYMBOL_GPL vmlinux 0x15f680f8 devfreq_event_set_event -EXPORT_SYMBOL_GPL vmlinux 0x15f719e8 dw_pcie_setup_rc -EXPORT_SYMBOL_GPL vmlinux 0x160eb98d gpiod_get_direction -EXPORT_SYMBOL_GPL vmlinux 0x16147c5b validate_xmit_xfrm -EXPORT_SYMBOL_GPL vmlinux 0x16325ebe spi_sync_locked -EXPORT_SYMBOL_GPL vmlinux 0x163e4320 relay_file_operations -EXPORT_SYMBOL_GPL vmlinux 0x16422a6e xdp_reg_mem_model -EXPORT_SYMBOL_GPL vmlinux 0x16428d84 srcu_notifier_chain_register -EXPORT_SYMBOL_GPL vmlinux 0x16470b20 dummy_con -EXPORT_SYMBOL_GPL vmlinux 0x16516798 osc_pc_lpi_support_confirmed -EXPORT_SYMBOL_GPL vmlinux 0x1658e0ad gpiod_set_consumer_name -EXPORT_SYMBOL_GPL vmlinux 0x1666f570 ata_bmdma_qc_prep -EXPORT_SYMBOL_GPL vmlinux 0x166e9ba4 tpm1_getcap -EXPORT_SYMBOL_GPL vmlinux 0x167aa99c of_i2c_get_board_info -EXPORT_SYMBOL_GPL vmlinux 0x167d7113 acpi_bus_register_early_device -EXPORT_SYMBOL_GPL vmlinux 0x168223e8 synth_event_gen_cmd_array_start -EXPORT_SYMBOL_GPL vmlinux 0x1687ec20 tty_get_frame_size -EXPORT_SYMBOL_GPL vmlinux 0x1690b503 usb_role_switch_get_drvdata -EXPORT_SYMBOL_GPL vmlinux 0x169addb3 clk_bulk_get_optional -EXPORT_SYMBOL_GPL vmlinux 0x169e356b bpf_prog_inc_not_zero -EXPORT_SYMBOL_GPL vmlinux 0x16a28313 idr_alloc -EXPORT_SYMBOL_GPL vmlinux 0x16c66dd9 of_irq_parse_raw -EXPORT_SYMBOL_GPL vmlinux 0x16cacda7 of_get_required_opp_performance_state -EXPORT_SYMBOL_GPL vmlinux 0x16da1f88 devlink_fmsg_u32_put -EXPORT_SYMBOL_GPL vmlinux 0x16de791d key_set_timeout -EXPORT_SYMBOL_GPL vmlinux 0x16dfbf36 add_interrupt_randomness -EXPORT_SYMBOL_GPL vmlinux 0x16dfcd97 acpi_is_pnp_device -EXPORT_SYMBOL_GPL vmlinux 0x16ecb8bf clk_hw_register_fractional_divider -EXPORT_SYMBOL_GPL vmlinux 0x16f15139 bind_evtchn_to_irq -EXPORT_SYMBOL_GPL vmlinux 0x170cc36c put_timespec64 -EXPORT_SYMBOL_GPL vmlinux 0x171109c4 qcom_smem_state_get -EXPORT_SYMBOL_GPL vmlinux 0x172f0418 scsi_get_vpd_page -EXPORT_SYMBOL_GPL vmlinux 0x17351bdb __hwspin_unlock -EXPORT_SYMBOL_GPL vmlinux 0x1736e253 regulator_get -EXPORT_SYMBOL_GPL vmlinux 0x1741ddee trace_seq_puts -EXPORT_SYMBOL_GPL vmlinux 0x17480d56 x509_free_certificate -EXPORT_SYMBOL_GPL vmlinux 0x174c6274 ring_buffer_time_stamp -EXPORT_SYMBOL_GPL vmlinux 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 0x176913e6 pci_enable_rom -EXPORT_SYMBOL_GPL vmlinux 0x17722399 gpiod_put -EXPORT_SYMBOL_GPL vmlinux 0x1772ca36 serial8250_do_startup -EXPORT_SYMBOL_GPL vmlinux 0x177c338d twl_get_version -EXPORT_SYMBOL_GPL vmlinux 0x1786d224 iommu_aux_attach_device -EXPORT_SYMBOL_GPL vmlinux 0x178c35f7 __inet_twsk_schedule -EXPORT_SYMBOL_GPL vmlinux 0x179b74d3 phy_configure -EXPORT_SYMBOL_GPL vmlinux 0x17acd78c shake_page -EXPORT_SYMBOL_GPL vmlinux 0x17b2a4f4 platform_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0x17b6c837 md_find_rdev_nr_rcu -EXPORT_SYMBOL_GPL vmlinux 0x17bad21d phy_set_mode_ext -EXPORT_SYMBOL_GPL vmlinux 0x17bdc6d9 sched_trace_rq_avg_rt -EXPORT_SYMBOL_GPL vmlinux 0x17c950f2 k3_udma_glue_rx_get_dma_device -EXPORT_SYMBOL_GPL vmlinux 0x17e01f11 erst_clear -EXPORT_SYMBOL_GPL vmlinux 0x17e6cb4c l3mdev_fib_table_rcu -EXPORT_SYMBOL_GPL vmlinux 0x18008c59 ring_buffer_resize -EXPORT_SYMBOL_GPL vmlinux 0x183bd0a2 debugfs_read_file_bool -EXPORT_SYMBOL_GPL vmlinux 0x18428692 __cookie_v6_init_sequence -EXPORT_SYMBOL_GPL vmlinux 0x1847c676 ata_cable_ignore -EXPORT_SYMBOL_GPL vmlinux 0x18538e78 blocking_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0x18615d35 efivar_supports_writes -EXPORT_SYMBOL_GPL vmlinux 0x186428dd ata_bmdma_port_ops -EXPORT_SYMBOL_GPL vmlinux 0x18715353 k3_udma_glue_push_tx_chn -EXPORT_SYMBOL_GPL vmlinux 0x1874031c fsl_mc_bus_dpmac_type -EXPORT_SYMBOL_GPL vmlinux 0x187b6766 metadata_dst_free_percpu -EXPORT_SYMBOL_GPL vmlinux 0x187b721a skb_mpls_push -EXPORT_SYMBOL_GPL vmlinux 0x1896f057 phy_init -EXPORT_SYMBOL_GPL vmlinux 0x189a5530 xenbus_probe_devices -EXPORT_SYMBOL_GPL vmlinux 0x189de13e ata_sff_exec_command -EXPORT_SYMBOL_GPL vmlinux 0x18a8d037 xas_store -EXPORT_SYMBOL_GPL vmlinux 0x18b55aaa dev_pm_set_dedicated_wake_irq -EXPORT_SYMBOL_GPL vmlinux 0x18b6a87e regulator_set_load -EXPORT_SYMBOL_GPL vmlinux 0x18bfdd8e security_file_permission -EXPORT_SYMBOL_GPL vmlinux 0x18c88bf9 bpf_trace_run7 -EXPORT_SYMBOL_GPL vmlinux 0x18d0a7d5 unregister_acpi_bus_type -EXPORT_SYMBOL_GPL vmlinux 0x18d466a4 iommu_get_domain_for_dev -EXPORT_SYMBOL_GPL vmlinux 0x18e4f8aa swphy_read_reg -EXPORT_SYMBOL_GPL vmlinux 0x18e543d7 ahci_platform_enable_regulators -EXPORT_SYMBOL_GPL vmlinux 0x18e8c440 arch_freq_scale -EXPORT_SYMBOL_GPL vmlinux 0x18ec6ae0 driver_find -EXPORT_SYMBOL_GPL vmlinux 0x18f10f38 k3_udma_glue_enable_rx_chn -EXPORT_SYMBOL_GPL vmlinux 0x18fb2caf cpus_read_unlock -EXPORT_SYMBOL_GPL vmlinux 0x190a4242 kick_process -EXPORT_SYMBOL_GPL vmlinux 0x19133ba2 ip6_dst_lookup -EXPORT_SYMBOL_GPL vmlinux 0x1913b57a kcpustat_cpu_fetch -EXPORT_SYMBOL_GPL vmlinux 0x1925887e netlink_has_listeners -EXPORT_SYMBOL_GPL vmlinux 0x1926028c zynqmp_pm_reset_assert -EXPORT_SYMBOL_GPL vmlinux 0x1931af09 devm_add_action -EXPORT_SYMBOL_GPL vmlinux 0x19451196 crypto_unregister_skcipher -EXPORT_SYMBOL_GPL vmlinux 0x195655e0 pci_device_group -EXPORT_SYMBOL_GPL vmlinux 0x1957386f __platform_driver_register -EXPORT_SYMBOL_GPL vmlinux 0x196c780b pci_set_host_bridge_release -EXPORT_SYMBOL_GPL vmlinux 0x19710b9a edac_get_sysfs_subsys -EXPORT_SYMBOL_GPL vmlinux 0x19711c1a fsverity_file_open -EXPORT_SYMBOL_GPL vmlinux 0x1977f47a bd_unlink_disk_holder -EXPORT_SYMBOL_GPL vmlinux 0x197b143a phy_pm_runtime_forbid -EXPORT_SYMBOL_GPL vmlinux 0x19821689 __tracepoint_fdb_delete -EXPORT_SYMBOL_GPL vmlinux 0x1998206b tty_perform_flush -EXPORT_SYMBOL_GPL vmlinux 0x19a02ec0 ata_do_dev_read_id -EXPORT_SYMBOL_GPL vmlinux 0x19a304ba usb_disabled -EXPORT_SYMBOL_GPL vmlinux 0x19b7044a xenbus_read_otherend_details -EXPORT_SYMBOL_GPL vmlinux 0x19c20269 soc_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0x19d70641 devm_clk_bulk_get_optional -EXPORT_SYMBOL_GPL vmlinux 0x19dfc22c i2c_new_scanned_device -EXPORT_SYMBOL_GPL vmlinux 0x19e81304 btree_alloc -EXPORT_SYMBOL_GPL vmlinux 0x19edd064 blkg_rwstat_exit -EXPORT_SYMBOL_GPL vmlinux 0x19f8146f arm64_mm_context_get -EXPORT_SYMBOL_GPL vmlinux 0x1a0ca6ff ping_common_sendmsg -EXPORT_SYMBOL_GPL vmlinux 0x1a10c32b crypto_ft_tab -EXPORT_SYMBOL_GPL vmlinux 0x1a146ec3 usb_ep_type_string -EXPORT_SYMBOL_GPL vmlinux 0x1a1ae29a spi_get_next_queued_message -EXPORT_SYMBOL_GPL vmlinux 0x1a26e2bf devm_device_remove_groups -EXPORT_SYMBOL_GPL vmlinux 0x1a3494cf fscrypt_ioctl_get_nonce -EXPORT_SYMBOL_GPL vmlinux 0x1a63569d usb_mon_register -EXPORT_SYMBOL_GPL vmlinux 0x1a6bf28f fsnotify_get_cookie -EXPORT_SYMBOL_GPL vmlinux 0x1a74b085 dev_pm_opp_of_remove_table -EXPORT_SYMBOL_GPL vmlinux 0x1a77903a of_alias_get_alias_list -EXPORT_SYMBOL_GPL vmlinux 0x1a876574 __tracepoint_attach_device_to_domain -EXPORT_SYMBOL_GPL vmlinux 0x1a8d1516 clk_register_fixed_factor -EXPORT_SYMBOL_GPL vmlinux 0x1aba51d3 ahci_save_initial_config -EXPORT_SYMBOL_GPL vmlinux 0x1acd18c8 cpuset_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0x1ae948b7 of_dma_controller_free -EXPORT_SYMBOL_GPL vmlinux 0x1af267f8 int_pow -EXPORT_SYMBOL_GPL vmlinux 0x1af647ac debugfs_create_x32 -EXPORT_SYMBOL_GPL vmlinux 0x1b0b74ea usb_clear_halt -EXPORT_SYMBOL_GPL vmlinux 0x1b1aed8c cpufreq_generic_attr -EXPORT_SYMBOL_GPL vmlinux 0x1b1b82f3 fsnotify_init_mark -EXPORT_SYMBOL_GPL vmlinux 0x1b1c02e3 crypto_larval_kill -EXPORT_SYMBOL_GPL vmlinux 0x1b269344 switchdev_handle_port_obj_add -EXPORT_SYMBOL_GPL vmlinux 0x1b37ea9d blkg_lookup_slowpath -EXPORT_SYMBOL_GPL vmlinux 0x1b42d654 fat_remove_entries -EXPORT_SYMBOL_GPL vmlinux 0x1b43df3f scsi_target_unblock -EXPORT_SYMBOL_GPL vmlinux 0x1b502ad6 unregister_pernet_subsys -EXPORT_SYMBOL_GPL vmlinux 0x1b5059ce ata_id_xfermask -EXPORT_SYMBOL_GPL vmlinux 0x1b54e167 of_genpd_add_provider_simple -EXPORT_SYMBOL_GPL vmlinux 0x1b5f4377 trace_seq_putc -EXPORT_SYMBOL_GPL vmlinux 0x1b6f0738 extcon_set_state -EXPORT_SYMBOL_GPL vmlinux 0x1b7406d4 sock_inuse_get -EXPORT_SYMBOL_GPL vmlinux 0x1b74293d tracepoint_srcu -EXPORT_SYMBOL_GPL vmlinux 0x1b8822d8 pinctrl_gpio_direction_output -EXPORT_SYMBOL_GPL vmlinux 0x1b92e41d inet_putpeer -EXPORT_SYMBOL_GPL vmlinux 0x1b9c9263 xenbus_watch_pathfmt -EXPORT_SYMBOL_GPL vmlinux 0x1bb046dd sysfs_remove_link -EXPORT_SYMBOL_GPL vmlinux 0x1bc5eebe pinctrl_gpio_direction_input -EXPORT_SYMBOL_GPL vmlinux 0x1bc85e1c irq_set_affinity -EXPORT_SYMBOL_GPL vmlinux 0x1bc94e24 ata_host_put -EXPORT_SYMBOL_GPL vmlinux 0x1bd67e36 pci_disable_pri -EXPORT_SYMBOL_GPL vmlinux 0x1bd9e49a regmap_get_max_register -EXPORT_SYMBOL_GPL vmlinux 0x1bdb7afd regulator_set_drvdata -EXPORT_SYMBOL_GPL vmlinux 0x1bee4974 sg_alloc_table_chained -EXPORT_SYMBOL_GPL vmlinux 0x1bf11c3f dev_pm_domain_start -EXPORT_SYMBOL_GPL vmlinux 0x1bf148cb pci_probe_reset_slot -EXPORT_SYMBOL_GPL vmlinux 0x1bf4d53a wm8350_set_bits -EXPORT_SYMBOL_GPL vmlinux 0x1bfa4895 lwtunnel_fill_encap -EXPORT_SYMBOL_GPL vmlinux 0x1bfe86b5 crypto_alloc_akcipher -EXPORT_SYMBOL_GPL vmlinux 0x1c0558cf atomic_notifier_chain_unregister -EXPORT_SYMBOL_GPL vmlinux 0x1c0f1a72 dprc_close -EXPORT_SYMBOL_GPL vmlinux 0x1c1625e6 gpio_to_desc -EXPORT_SYMBOL_GPL vmlinux 0x1c1e085a wm831x_auxadc_read_uv -EXPORT_SYMBOL_GPL vmlinux 0x1c23498a rdev_get_name -EXPORT_SYMBOL_GPL vmlinux 0x1c295e11 tty_ldisc_ref -EXPORT_SYMBOL_GPL vmlinux 0x1c33de2d mmc_crypto_prepare_req -EXPORT_SYMBOL_GPL vmlinux 0x1c38130f fib_nl_delrule -EXPORT_SYMBOL_GPL vmlinux 0x1c5487cb debugfs_rename -EXPORT_SYMBOL_GPL vmlinux 0x1c5541bd cpufreq_boost_enabled -EXPORT_SYMBOL_GPL vmlinux 0x1c563d9f dev_pm_set_wake_irq -EXPORT_SYMBOL_GPL vmlinux 0x1c5b1f28 irq_free_descs -EXPORT_SYMBOL_GPL vmlinux 0x1c5ff742 clk_get_phase -EXPORT_SYMBOL_GPL vmlinux 0x1c63d162 debugfs_create_u32 -EXPORT_SYMBOL_GPL vmlinux 0x1c663da6 i2c_detect_slave_mode -EXPORT_SYMBOL_GPL vmlinux 0x1c6b0194 proc_mkdir_data -EXPORT_SYMBOL_GPL vmlinux 0x1c766ab2 rockchip_clk_register_armclk -EXPORT_SYMBOL_GPL vmlinux 0x1c80d27d btree_geo128 -EXPORT_SYMBOL_GPL vmlinux 0x1c87a811 __round_jiffies_up -EXPORT_SYMBOL_GPL vmlinux 0x1c88ad9e crypto_default_rng -EXPORT_SYMBOL_GPL vmlinux 0x1c89fb22 zynqmp_pm_clock_setparent -EXPORT_SYMBOL_GPL vmlinux 0x1c8e35f9 devm_nvmem_register -EXPORT_SYMBOL_GPL vmlinux 0x1ca4a930 smp_call_function_any -EXPORT_SYMBOL_GPL vmlinux 0x1cb7c983 apei_exec_read_register_value -EXPORT_SYMBOL_GPL vmlinux 0x1cb8bafd md_bitmap_copy_from_slot -EXPORT_SYMBOL_GPL vmlinux 0x1cb9a1c8 xenbus_gather -EXPORT_SYMBOL_GPL vmlinux 0x1cbd92b0 cpu_mitigations_off -EXPORT_SYMBOL_GPL vmlinux 0x1cc58978 serial8250_do_set_divisor -EXPORT_SYMBOL_GPL vmlinux 0x1cdd4f77 dm_send_uevents -EXPORT_SYMBOL_GPL vmlinux 0x1ce53ba7 find_asymmetric_key -EXPORT_SYMBOL_GPL vmlinux 0x1ce82429 __irq_domain_add -EXPORT_SYMBOL_GPL vmlinux 0x1d0c673f nvdimm_bus_unregister -EXPORT_SYMBOL_GPL vmlinux 0x1d0cf452 amba_device_put -EXPORT_SYMBOL_GPL vmlinux 0x1d117698 __vring_new_virtqueue -EXPORT_SYMBOL_GPL vmlinux 0x1d222ced irq_get_irqchip_state -EXPORT_SYMBOL_GPL vmlinux 0x1d3c451f ahci_set_em_messages -EXPORT_SYMBOL_GPL vmlinux 0x1d5172cf __netpoll_cleanup -EXPORT_SYMBOL_GPL vmlinux 0x1d53bf07 find_mci_by_dev -EXPORT_SYMBOL_GPL vmlinux 0x1d58c29f devm_memunmap_pages -EXPORT_SYMBOL_GPL vmlinux 0x1d6696b0 mtk_mutex_disable -EXPORT_SYMBOL_GPL vmlinux 0x1d6a071e gnttab_page_cache_init -EXPORT_SYMBOL_GPL vmlinux 0x1d75bee6 fscrypt_mergeable_bio_bh -EXPORT_SYMBOL_GPL vmlinux 0x1d77b0f8 unix_socket_table -EXPORT_SYMBOL_GPL vmlinux 0x1d7c324f shash_ahash_digest -EXPORT_SYMBOL_GPL vmlinux 0x1d803831 device_register -EXPORT_SYMBOL_GPL vmlinux 0x1d8bb3bb fuse_conn_init -EXPORT_SYMBOL_GPL vmlinux 0x1d8c29e9 xas_get_mark -EXPORT_SYMBOL_GPL vmlinux 0x1d8d5b4b irq_chip_ack_parent -EXPORT_SYMBOL_GPL vmlinux 0x1d94a218 dmi_memdev_handle -EXPORT_SYMBOL_GPL vmlinux 0x1d9d28f2 devm_clk_get_optional_prepared -EXPORT_SYMBOL_GPL vmlinux 0x1db831a7 dm_get_md -EXPORT_SYMBOL_GPL vmlinux 0x1dbb1829 mtk_mmsys_ddp_disconnect -EXPORT_SYMBOL_GPL vmlinux 0x1dc44c51 spi_mem_dirmap_create -EXPORT_SYMBOL_GPL vmlinux 0x1dc76d0a nexthop_find_by_id -EXPORT_SYMBOL_GPL vmlinux 0x1ddb3152 key_type_encrypted -EXPORT_SYMBOL_GPL vmlinux 0x1dedf2a0 scsi_eh_ready_devs -EXPORT_SYMBOL_GPL vmlinux 0x1dfa5dbd mpi_invm -EXPORT_SYMBOL_GPL vmlinux 0x1e036d23 scsi_host_block -EXPORT_SYMBOL_GPL vmlinux 0x1e0670c6 reset_control_release -EXPORT_SYMBOL_GPL vmlinux 0x1e0f4bb4 bgmac_alloc -EXPORT_SYMBOL_GPL vmlinux 0x1e13e09f __xdp_build_skb_from_frame -EXPORT_SYMBOL_GPL vmlinux 0x1e1b9b6b init_uts_ns -EXPORT_SYMBOL_GPL vmlinux 0x1e22ba17 sysfs_notify -EXPORT_SYMBOL_GPL vmlinux 0x1e2577cb device_create -EXPORT_SYMBOL_GPL vmlinux 0x1e297dff mbox_controller_register -EXPORT_SYMBOL_GPL vmlinux 0x1e33ae6e key_type_trusted -EXPORT_SYMBOL_GPL vmlinux 0x1e424d61 user_preparse -EXPORT_SYMBOL_GPL vmlinux 0x1e4e98c0 acpi_dev_filter_resource_type -EXPORT_SYMBOL_GPL vmlinux 0x1e7bbcb3 kernel_restart -EXPORT_SYMBOL_GPL vmlinux 0x1e83fee6 HYPERVISOR_physdev_op -EXPORT_SYMBOL_GPL vmlinux 0x1e8c5cfa mm_kobj -EXPORT_SYMBOL_GPL vmlinux 0x1e8fac8e wireless_nlevent_flush -EXPORT_SYMBOL_GPL vmlinux 0x1e92ea38 sbitmap_finish_wait -EXPORT_SYMBOL_GPL vmlinux 0x1e9c590a usb_find_common_endpoints_reverse -EXPORT_SYMBOL_GPL vmlinux 0x1ea04d98 regcache_cache_bypass -EXPORT_SYMBOL_GPL vmlinux 0x1eac7691 tun_get_tx_ring -EXPORT_SYMBOL_GPL vmlinux 0x1eb70ff5 pci_stop_root_bus -EXPORT_SYMBOL_GPL vmlinux 0x1eb9516e round_jiffies_relative -EXPORT_SYMBOL_GPL vmlinux 0x1ebf6c2a pci_power_names -EXPORT_SYMBOL_GPL vmlinux 0x1ebf9289 bus_for_each_drv -EXPORT_SYMBOL_GPL vmlinux 0x1ed4d2eb percpu_ref_kill_and_confirm -EXPORT_SYMBOL_GPL vmlinux 0x1ed8fc96 iommu_detach_device -EXPORT_SYMBOL_GPL vmlinux 0x1ee030b3 devlink_port_param_driverinit_value_get -EXPORT_SYMBOL_GPL vmlinux 0x1efaa06f __tracepoint_xhci_dbg_quirks -EXPORT_SYMBOL_GPL vmlinux 0x1f0607f6 dev_fill_metadata_dst -EXPORT_SYMBOL_GPL vmlinux 0x1f0875b5 bpf_prog_inc -EXPORT_SYMBOL_GPL vmlinux 0x1f0cb5bf pm_power_off_prepare -EXPORT_SYMBOL_GPL vmlinux 0x1f100116 pcie_flr -EXPORT_SYMBOL_GPL vmlinux 0x1f1cc011 zynqmp_pm_get_chipid -EXPORT_SYMBOL_GPL vmlinux 0x1f2bf11d pm_generic_restore_early -EXPORT_SYMBOL_GPL vmlinux 0x1f38a4f6 mpi_set_highbit -EXPORT_SYMBOL_GPL vmlinux 0x1f449588 mctrl_gpio_disable_ms -EXPORT_SYMBOL_GPL vmlinux 0x1f462deb sched_trace_rd_span -EXPORT_SYMBOL_GPL vmlinux 0x1f484e0f spi_replace_transfers -EXPORT_SYMBOL_GPL vmlinux 0x1f563160 bpf_offload_dev_priv -EXPORT_SYMBOL_GPL vmlinux 0x1f59b35b anon_transport_class_register -EXPORT_SYMBOL_GPL vmlinux 0x1f5d004c devlink_reload_enable -EXPORT_SYMBOL_GPL vmlinux 0x1f6e8812 param_ops_bool_enable_only -EXPORT_SYMBOL_GPL vmlinux 0x1f7dd2a7 kthread_data -EXPORT_SYMBOL_GPL vmlinux 0x1f8544b8 panic_timeout -EXPORT_SYMBOL_GPL vmlinux 0x1f99257d tty_port_register_device -EXPORT_SYMBOL_GPL vmlinux 0x1f9a2b53 zynqmp_pm_clock_enable -EXPORT_SYMBOL_GPL vmlinux 0x1f9cd614 led_init_core -EXPORT_SYMBOL_GPL vmlinux 0x1fa1d95c sha256_zero_message_hash -EXPORT_SYMBOL_GPL vmlinux 0x1fb70eb9 gnttab_end_foreign_transfer_ref -EXPORT_SYMBOL_GPL vmlinux 0x1fe6e504 gpiod_add_hogs -EXPORT_SYMBOL_GPL vmlinux 0x1ff7b524 serdev_device_close -EXPORT_SYMBOL_GPL vmlinux 0x200919c3 aead_exit_geniv -EXPORT_SYMBOL_GPL vmlinux 0x2009e400 devlink_info_board_serial_number_put -EXPORT_SYMBOL_GPL vmlinux 0x200efa87 gpiochip_generic_free -EXPORT_SYMBOL_GPL vmlinux 0x202c372e regulator_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x202d4ed6 nvmem_cell_write -EXPORT_SYMBOL_GPL vmlinux 0x20472d58 inet_getpeer -EXPORT_SYMBOL_GPL vmlinux 0x204e60da free_vm_area -EXPORT_SYMBOL_GPL vmlinux 0x204f2c5c gnttab_free_grant_reference -EXPORT_SYMBOL_GPL vmlinux 0x2051b57d reset_simple_ops -EXPORT_SYMBOL_GPL vmlinux 0x205adb87 devlink_param_driverinit_value_set -EXPORT_SYMBOL_GPL vmlinux 0x2066c44b mtk_pinconf_bias_get_combo -EXPORT_SYMBOL_GPL vmlinux 0x2069cab6 synchronize_srcu_expedited -EXPORT_SYMBOL_GPL vmlinux 0x2071c50d pci_disable_pcie_error_reporting -EXPORT_SYMBOL_GPL vmlinux 0x20835a9f __xdp_release_frame -EXPORT_SYMBOL_GPL vmlinux 0x20964202 handle_fasteoi_irq -EXPORT_SYMBOL_GPL vmlinux 0x2099f2ba lwtunnel_encap_add_ops -EXPORT_SYMBOL_GPL vmlinux 0x20ab2529 idr_find -EXPORT_SYMBOL_GPL vmlinux 0x20b13b18 debugfs_remove -EXPORT_SYMBOL_GPL vmlinux 0x20daa1fe fat_get_dotdot_entry -EXPORT_SYMBOL_GPL vmlinux 0x20e034ff sk_set_memalloc -EXPORT_SYMBOL_GPL vmlinux 0x20e69b5a cpufreq_cpu_put -EXPORT_SYMBOL_GPL vmlinux 0x20ee273b of_clk_del_provider -EXPORT_SYMBOL_GPL vmlinux 0x20f22bd5 pm_clk_add_notifier -EXPORT_SYMBOL_GPL vmlinux 0x20fc44ac serdev_acpi_get_uart_resource -EXPORT_SYMBOL_GPL vmlinux 0x2117ddca acpi_cppc_processor_probe -EXPORT_SYMBOL_GPL vmlinux 0x21318ca1 crypto_unregister_skciphers -EXPORT_SYMBOL_GPL vmlinux 0x2139bb3e phy_optional_get -EXPORT_SYMBOL_GPL vmlinux 0x213c4910 md_rdev_clear -EXPORT_SYMBOL_GPL vmlinux 0x21450958 gpiod_to_chip -EXPORT_SYMBOL_GPL vmlinux 0x2155c525 pm_generic_runtime_suspend -EXPORT_SYMBOL_GPL vmlinux 0x215e2a39 rio_alloc_net -EXPORT_SYMBOL_GPL vmlinux 0x216de4e1 rcu_get_gp_kthreads_prio -EXPORT_SYMBOL_GPL vmlinux 0x2170841e fuse_get_unique -EXPORT_SYMBOL_GPL vmlinux 0x21737dfc switchdev_handle_fdb_add_to_device -EXPORT_SYMBOL_GPL vmlinux 0x2176e42a hwpoison_filter_memcg -EXPORT_SYMBOL_GPL vmlinux 0x21797adb rtnl_af_unregister -EXPORT_SYMBOL_GPL vmlinux 0x21831b57 platform_unregister_drivers -EXPORT_SYMBOL_GPL vmlinux 0x218823fd pci_epc_mem_init -EXPORT_SYMBOL_GPL vmlinux 0x219d713c tty_save_termios -EXPORT_SYMBOL_GPL vmlinux 0x21a11714 regulator_get_voltage_sel_pickable_regmap -EXPORT_SYMBOL_GPL vmlinux 0x21a563da clk_get_accuracy -EXPORT_SYMBOL_GPL vmlinux 0x21ac7112 free_io_pgtable_ops -EXPORT_SYMBOL_GPL vmlinux 0x21ac8b77 iommu_group_get_by_id -EXPORT_SYMBOL_GPL vmlinux 0x21c20d6b acpi_dev_get_property -EXPORT_SYMBOL_GPL vmlinux 0x21c34c8f gnttab_end_foreign_transfer -EXPORT_SYMBOL_GPL vmlinux 0x21ca82ef ohci_resume -EXPORT_SYMBOL_GPL vmlinux 0x21cd536a crypto_put_default_null_skcipher -EXPORT_SYMBOL_GPL vmlinux 0x21ce3ed1 dev_fetch_sw_netstats -EXPORT_SYMBOL_GPL vmlinux 0x21dc4970 power_supply_set_property -EXPORT_SYMBOL_GPL vmlinux 0x21edf86f iommu_attach_group -EXPORT_SYMBOL_GPL vmlinux 0x2200061c __tracepoint_pelt_irq_tp -EXPORT_SYMBOL_GPL vmlinux 0x220ce70c kvm_arm_hyp_service_available -EXPORT_SYMBOL_GPL vmlinux 0x220cec5e iommu_page_response -EXPORT_SYMBOL_GPL vmlinux 0x2210bbd8 fwnode_graph_get_remote_endpoint -EXPORT_SYMBOL_GPL vmlinux 0x2211a4c0 blk_op_str -EXPORT_SYMBOL_GPL vmlinux 0x221ae1aa devm_gpio_free -EXPORT_SYMBOL_GPL vmlinux 0x221eab6d scatterwalk_copychunks -EXPORT_SYMBOL_GPL vmlinux 0x2227c8dd rockchip_pcie_init_port -EXPORT_SYMBOL_GPL vmlinux 0x22301dd4 regulator_list_voltage_linear -EXPORT_SYMBOL_GPL vmlinux 0x2234528e ata_sff_wait_after_reset -EXPORT_SYMBOL_GPL vmlinux 0x223af570 dma_resv_get_fences -EXPORT_SYMBOL_GPL vmlinux 0x224f51bf nvmem_device_cell_read -EXPORT_SYMBOL_GPL vmlinux 0x2262a3b9 account_locked_vm -EXPORT_SYMBOL_GPL vmlinux 0x226accfb pci_epc_multi_mem_init -EXPORT_SYMBOL_GPL vmlinux 0x227c2960 regulator_is_supported_voltage -EXPORT_SYMBOL_GPL vmlinux 0x2286f764 irq_work_queue -EXPORT_SYMBOL_GPL vmlinux 0x228e3a71 ata_sff_data_xfer -EXPORT_SYMBOL_GPL vmlinux 0x2293f0f7 dev_pm_disable_wake_irq -EXPORT_SYMBOL_GPL vmlinux 0x22a88c02 gnttab_pages_clear_private -EXPORT_SYMBOL_GPL vmlinux 0x22ace836 ata_sas_port_stop -EXPORT_SYMBOL_GPL vmlinux 0x22b22c6f platform_bus -EXPORT_SYMBOL_GPL vmlinux 0x22b430c8 crypto_stats_skcipher_encrypt -EXPORT_SYMBOL_GPL vmlinux 0x22c6a78a sched_trace_rq_cpu_capacity -EXPORT_SYMBOL_GPL vmlinux 0x22c84b3e set_task_ioprio -EXPORT_SYMBOL_GPL vmlinux 0x22d5797c is_current_mnt_ns -EXPORT_SYMBOL_GPL vmlinux 0x22d60537 tcf_frag_xmit_count -EXPORT_SYMBOL_GPL vmlinux 0x22d9409b iomap_sort_ioends -EXPORT_SYMBOL_GPL vmlinux 0x22e01ef2 skb_to_sgvec_nomark -EXPORT_SYMBOL_GPL vmlinux 0x22f31abb add_hwgenerator_randomness -EXPORT_SYMBOL_GPL vmlinux 0x22fd08ba cpuacct_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0x23018591 tpm_transmit_cmd -EXPORT_SYMBOL_GPL vmlinux 0x231ec757 virtio_config_changed -EXPORT_SYMBOL_GPL vmlinux 0x2324e4cc ethnl_cable_test_free -EXPORT_SYMBOL_GPL vmlinux 0x2328142f devm_hwmon_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0x233e034f irq_domain_create_simple -EXPORT_SYMBOL_GPL vmlinux 0x23412816 rtc_tm_to_ktime -EXPORT_SYMBOL_GPL vmlinux 0x2349a61f regmap_get_val_bytes -EXPORT_SYMBOL_GPL vmlinux 0x234cb4d3 freq_qos_add_notifier -EXPORT_SYMBOL_GPL vmlinux 0x234cd37d crypto_create_tfm_node -EXPORT_SYMBOL_GPL vmlinux 0x234cf416 devlink_fmsg_string_pair_put -EXPORT_SYMBOL_GPL vmlinux 0x23565f7b perf_event_update_userpage -EXPORT_SYMBOL_GPL vmlinux 0x23864ce7 cpuset_mem_spread_node -EXPORT_SYMBOL_GPL vmlinux 0x238cad4e cpufreq_disable_fast_switch -EXPORT_SYMBOL_GPL vmlinux 0x238e0af5 icc_set_bw -EXPORT_SYMBOL_GPL vmlinux 0x2394027c bus_get_kset -EXPORT_SYMBOL_GPL vmlinux 0x2396c7f0 clk_set_parent -EXPORT_SYMBOL_GPL vmlinux 0x23ad468a devm_regmap_add_irq_chip -EXPORT_SYMBOL_GPL vmlinux 0x23b0e681 pci_host_common_remove -EXPORT_SYMBOL_GPL vmlinux 0x23c05b22 usb_reset_endpoint -EXPORT_SYMBOL_GPL vmlinux 0x23c601b4 nfs_ssc_register -EXPORT_SYMBOL_GPL vmlinux 0x23cab469 class_interface_register -EXPORT_SYMBOL_GPL vmlinux 0x23e86889 bpf_trace_run11 -EXPORT_SYMBOL_GPL vmlinux 0x23ef8e56 of_get_display_timings -EXPORT_SYMBOL_GPL vmlinux 0x23f7144f edac_mc_alloc -EXPORT_SYMBOL_GPL vmlinux 0x240bbdc5 usb_of_get_companion_dev -EXPORT_SYMBOL_GPL vmlinux 0x241e73bf regulator_force_disable -EXPORT_SYMBOL_GPL vmlinux 0x2421097b mpi_const -EXPORT_SYMBOL_GPL vmlinux 0x242113fa input_ff_upload -EXPORT_SYMBOL_GPL vmlinux 0x24213914 devm_platform_get_and_ioremap_resource -EXPORT_SYMBOL_GPL vmlinux 0x243b8c5b dmaengine_desc_get_metadata_ptr -EXPORT_SYMBOL_GPL vmlinux 0x2446395f usb_put_intf -EXPORT_SYMBOL_GPL vmlinux 0x244fd98b posix_clock_register -EXPORT_SYMBOL_GPL vmlinux 0x2466b658 vfs_cancel_lock -EXPORT_SYMBOL_GPL vmlinux 0x2469810f __rcu_read_unlock -EXPORT_SYMBOL_GPL vmlinux 0x24709b2f trace_seq_putmem -EXPORT_SYMBOL_GPL vmlinux 0x2473dc59 devm_kasprintf -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 0x2499a245 irq_chip_mask_parent -EXPORT_SYMBOL_GPL vmlinux 0x24a9942f divider_ro_determine_rate -EXPORT_SYMBOL_GPL vmlinux 0x24ad11db wakeup_sources_read_unlock -EXPORT_SYMBOL_GPL vmlinux 0x24da0093 rcu_inkernel_boot_has_ended -EXPORT_SYMBOL_GPL vmlinux 0x24e682ed __pm_runtime_resume -EXPORT_SYMBOL_GPL vmlinux 0x24eb7e32 leds_list -EXPORT_SYMBOL_GPL vmlinux 0x24efe681 btree_get_prev -EXPORT_SYMBOL_GPL vmlinux 0x24f39c39 reset_control_reset -EXPORT_SYMBOL_GPL vmlinux 0x24f4f526 eventfd_ctx_fileget -EXPORT_SYMBOL_GPL vmlinux 0x24f63dcf ata_xfer_mask2mode -EXPORT_SYMBOL_GPL vmlinux 0x24f86bde register_pernet_subsys -EXPORT_SYMBOL_GPL vmlinux 0x24fc50f4 kdb_unregister -EXPORT_SYMBOL_GPL vmlinux 0x24fe78d7 percpu_free_rwsem -EXPORT_SYMBOL_GPL vmlinux 0x2513b07b pci_ecam_free -EXPORT_SYMBOL_GPL vmlinux 0x2519b3b6 irq_domain_xlate_twocell -EXPORT_SYMBOL_GPL vmlinux 0x251c9633 acpi_spi_device_alloc -EXPORT_SYMBOL_GPL vmlinux 0x252753f0 get_device -EXPORT_SYMBOL_GPL vmlinux 0x252b3e4f l3mdev_master_upper_ifindex_by_index_rcu -EXPORT_SYMBOL_GPL vmlinux 0x25301bc6 arch_wb_cache_pmem -EXPORT_SYMBOL_GPL vmlinux 0x25379e73 clk_set_min_rate -EXPORT_SYMBOL_GPL vmlinux 0x25405064 ip6_datagram_recv_ctl -EXPORT_SYMBOL_GPL vmlinux 0x254ac295 dev_pm_qos_flags -EXPORT_SYMBOL_GPL vmlinux 0x25648ea0 gov_attr_set_get -EXPORT_SYMBOL_GPL vmlinux 0x256f8e40 dm_internal_resume -EXPORT_SYMBOL_GPL vmlinux 0x2574da11 zynqmp_pm_write_pggs -EXPORT_SYMBOL_GPL vmlinux 0x2575d712 register_asymmetric_key_parser -EXPORT_SYMBOL_GPL vmlinux 0x2592fc6c console_printk -EXPORT_SYMBOL_GPL vmlinux 0x259715c7 __of_phy_provider_register -EXPORT_SYMBOL_GPL vmlinux 0x25a29d5a sk_msg_free_nocharge -EXPORT_SYMBOL_GPL vmlinux 0x25a586bb rdev_get_dev -EXPORT_SYMBOL_GPL vmlinux 0x25bbfa9a security_kernel_load_data -EXPORT_SYMBOL_GPL vmlinux 0x25d9551c irq_domain_associate_many -EXPORT_SYMBOL_GPL vmlinux 0x25e07dea pinctrl_pm_select_sleep_state -EXPORT_SYMBOL_GPL vmlinux 0x25f4ffcc pci_epc_set_msi -EXPORT_SYMBOL_GPL vmlinux 0x25f6b40d devm_clk_unregister -EXPORT_SYMBOL_GPL vmlinux 0x25fceb46 pcc_mbox_request_channel -EXPORT_SYMBOL_GPL vmlinux 0x26003fd9 dev_pm_opp_get_voltage -EXPORT_SYMBOL_GPL vmlinux 0x2601e2a2 spi_mem_dirmap_write -EXPORT_SYMBOL_GPL vmlinux 0x2602e717 get_state_synchronize_srcu -EXPORT_SYMBOL_GPL vmlinux 0x260991c8 i2c_parse_fw_timings -EXPORT_SYMBOL_GPL vmlinux 0x262dc764 pci_dev_run_wake -EXPORT_SYMBOL_GPL vmlinux 0x262e0ba7 devm_rtc_allocate_device -EXPORT_SYMBOL_GPL vmlinux 0x2649a3b8 pinmux_generic_get_function_count -EXPORT_SYMBOL_GPL vmlinux 0x26520970 vm_memory_committed -EXPORT_SYMBOL_GPL vmlinux 0x2656f788 devm_of_phy_get_by_index -EXPORT_SYMBOL_GPL vmlinux 0x265bbef9 kexec_crash_loaded -EXPORT_SYMBOL_GPL vmlinux 0x265c54a6 nvmem_cell_read_variable_le_u64 -EXPORT_SYMBOL_GPL vmlinux 0x2663b0b1 ata_sff_queue_pio_task -EXPORT_SYMBOL_GPL vmlinux 0x266a4b08 tasklet_unlock -EXPORT_SYMBOL_GPL vmlinux 0x267df662 smp_call_on_cpu -EXPORT_SYMBOL_GPL vmlinux 0x268c133c regulator_get_hardware_vsel_register -EXPORT_SYMBOL_GPL vmlinux 0x268e814b put_pid_ns -EXPORT_SYMBOL_GPL vmlinux 0x26a48785 mctrl_gpio_init -EXPORT_SYMBOL_GPL vmlinux 0x26ab4755 put_old_itimerspec32 -EXPORT_SYMBOL_GPL vmlinux 0x26bde5d5 pm_relax -EXPORT_SYMBOL_GPL vmlinux 0x26bee730 pid_vnr -EXPORT_SYMBOL_GPL vmlinux 0x26c90ea4 scsi_eh_get_sense -EXPORT_SYMBOL_GPL vmlinux 0x26e6a01a rtc_set_time -EXPORT_SYMBOL_GPL vmlinux 0x26ed2186 register_vmap_purge_notifier -EXPORT_SYMBOL_GPL vmlinux 0x26ee60e4 spi_take_timestamp_post -EXPORT_SYMBOL_GPL vmlinux 0x2701953f mtk_mutex_add_comp -EXPORT_SYMBOL_GPL vmlinux 0x27086c34 dma_async_device_channel_unregister -EXPORT_SYMBOL_GPL vmlinux 0x271331c5 shash_free_singlespawn_instance -EXPORT_SYMBOL_GPL vmlinux 0x272e9d77 hisi_reset_exit -EXPORT_SYMBOL_GPL vmlinux 0x2731c698 bpf_trace_run1 -EXPORT_SYMBOL_GPL vmlinux 0x273a9afd tpm_pm_suspend -EXPORT_SYMBOL_GPL vmlinux 0x273e2382 __context_tracking_enter -EXPORT_SYMBOL_GPL vmlinux 0x274bb69f security_file_ioctl -EXPORT_SYMBOL_GPL vmlinux 0x274dd1a3 sg_free_table_chained -EXPORT_SYMBOL_GPL vmlinux 0x27547f7e dst_cache_get_ip6 -EXPORT_SYMBOL_GPL vmlinux 0x2767c747 __free_iova -EXPORT_SYMBOL_GPL vmlinux 0x277e5669 pinctrl_register_and_init -EXPORT_SYMBOL_GPL vmlinux 0x2781f1ee devlink_params_publish -EXPORT_SYMBOL_GPL vmlinux 0x27a5d503 irqchip_fwnode_ops -EXPORT_SYMBOL_GPL vmlinux 0x27ab547d mmc_send_abort_tuning -EXPORT_SYMBOL_GPL vmlinux 0x27afb0b8 of_platform_populate -EXPORT_SYMBOL_GPL vmlinux 0x27b1adab regmap_can_raw_write -EXPORT_SYMBOL_GPL vmlinux 0x27d9f9f3 mbox_chan_received_data -EXPORT_SYMBOL_GPL vmlinux 0x27dc9471 __tracepoint_br_fdb_update -EXPORT_SYMBOL_GPL vmlinux 0x27e5a5dd fixup_user_fault -EXPORT_SYMBOL_GPL vmlinux 0x27eb7913 dev_pm_genpd_suspend -EXPORT_SYMBOL_GPL vmlinux 0x27f1cd2b clk_hw_is_prepared -EXPORT_SYMBOL_GPL vmlinux 0x27f4f029 ftrace_set_global_filter -EXPORT_SYMBOL_GPL vmlinux 0x27f64e3c gnttab_page_cache_get -EXPORT_SYMBOL_GPL vmlinux 0x27fa66e1 nr_free_buffer_pages -EXPORT_SYMBOL_GPL vmlinux 0x2817f7fd cppc_get_desired_perf -EXPORT_SYMBOL_GPL vmlinux 0x281b48e8 pm_runtime_no_callbacks -EXPORT_SYMBOL_GPL vmlinux 0x282cdabc usb_led_activity -EXPORT_SYMBOL_GPL vmlinux 0x2833982d fsverity_verify_page -EXPORT_SYMBOL_GPL vmlinux 0x284c56ab pci_disable_pasid -EXPORT_SYMBOL_GPL vmlinux 0x285ce99c pci_msi_create_irq_domain -EXPORT_SYMBOL_GPL vmlinux 0x285d78c7 blk_mq_start_stopped_hw_queue -EXPORT_SYMBOL_GPL vmlinux 0x2864abc9 klist_node_attached -EXPORT_SYMBOL_GPL vmlinux 0x28656dc5 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 0x288aa47c fsl_mc_bus_dpdmux_type -EXPORT_SYMBOL_GPL vmlinux 0x288eac27 devlink_port_attrs_pci_sf_set -EXPORT_SYMBOL_GPL vmlinux 0x28aa6a67 call_rcu -EXPORT_SYMBOL_GPL vmlinux 0x28ab4fb9 pinctrl_gpio_free -EXPORT_SYMBOL_GPL vmlinux 0x28acbd13 pci_reset_function_locked -EXPORT_SYMBOL_GPL vmlinux 0x28ae5556 mdio_mux_init -EXPORT_SYMBOL_GPL vmlinux 0x28ae6f2e phy_get -EXPORT_SYMBOL_GPL vmlinux 0x28b030d2 of_overlay_notifier_unregister -EXPORT_SYMBOL_GPL vmlinux 0x28d77eb2 dma_vunmap_noncontiguous -EXPORT_SYMBOL_GPL vmlinux 0x28da9aaf clk_register -EXPORT_SYMBOL_GPL vmlinux 0x28dc6dcd nd_blk_region_to_dimm -EXPORT_SYMBOL_GPL vmlinux 0x28dce013 crypto_register_rngs -EXPORT_SYMBOL_GPL vmlinux 0x28efa613 ip_icmp_error_rfc4884 -EXPORT_SYMBOL_GPL vmlinux 0x28f0771b ata_msleep -EXPORT_SYMBOL_GPL vmlinux 0x28f26684 irq_set_affinity_hint -EXPORT_SYMBOL_GPL vmlinux 0x28f44dca syscon_node_to_regmap -EXPORT_SYMBOL_GPL vmlinux 0x28f8601a crypto_mod_put -EXPORT_SYMBOL_GPL vmlinux 0x290a4935 lwtunnel_encap_del_ops -EXPORT_SYMBOL_GPL vmlinux 0x290f3894 component_master_add_with_match -EXPORT_SYMBOL_GPL vmlinux 0x2910eda1 bind_interdomain_evtchn_to_irq_lateeoi -EXPORT_SYMBOL_GPL vmlinux 0x291876f3 mpi_ec_get_affine -EXPORT_SYMBOL_GPL vmlinux 0x291dde47 adp5520_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x29327ff4 component_del -EXPORT_SYMBOL_GPL vmlinux 0x2934855f ahci_reset_em -EXPORT_SYMBOL_GPL vmlinux 0x2936f6e7 device_remove_file -EXPORT_SYMBOL_GPL vmlinux 0x29447b2a wakeup_source_destroy -EXPORT_SYMBOL_GPL vmlinux 0x29495e83 devfreq_get_devfreq_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0x295b982a hisi_clk_register_fixed_rate -EXPORT_SYMBOL_GPL vmlinux 0x29703732 pm_runtime_forbid -EXPORT_SYMBOL_GPL vmlinux 0x297368a6 crypto_stats_get -EXPORT_SYMBOL_GPL vmlinux 0x297ad1be tty_port_register_device_attr -EXPORT_SYMBOL_GPL vmlinux 0x2986f47c freq_qos_add_request -EXPORT_SYMBOL_GPL vmlinux 0x2988007e unregister_asymmetric_key_parser -EXPORT_SYMBOL_GPL vmlinux 0x2988e2be elv_register -EXPORT_SYMBOL_GPL vmlinux 0x298b1de5 blkcg_root -EXPORT_SYMBOL_GPL vmlinux 0x299759fe fwnode_gpiod_get_index -EXPORT_SYMBOL_GPL vmlinux 0x29c4907a __traceiter_sched_update_nr_running_tp -EXPORT_SYMBOL_GPL vmlinux 0x29cbfeba __rtnl_link_register -EXPORT_SYMBOL_GPL vmlinux 0x29d76547 k3_udma_glue_tdown_rx_chn -EXPORT_SYMBOL_GPL vmlinux 0x29d8aa24 fwnode_get_parent -EXPORT_SYMBOL_GPL vmlinux 0x29df19ea of_regulator_match -EXPORT_SYMBOL_GPL vmlinux 0x29eba37f current_is_async -EXPORT_SYMBOL_GPL vmlinux 0x29f77471 scsi_autopm_put_device -EXPORT_SYMBOL_GPL vmlinux 0x2a03ebe3 fwnode_graph_get_next_endpoint -EXPORT_SYMBOL_GPL vmlinux 0x2a0c7686 devres_release -EXPORT_SYMBOL_GPL vmlinux 0x2a146b81 mpc8xxx_spi_rx_buf_u32 -EXPORT_SYMBOL_GPL vmlinux 0x2a17cacd nf_hooks_lwtunnel_sysctl_handler -EXPORT_SYMBOL_GPL vmlinux 0x2a1b0fea platform_device_put -EXPORT_SYMBOL_GPL vmlinux 0x2a2a877d ata_common_sdev_attrs -EXPORT_SYMBOL_GPL vmlinux 0x2a37ea11 imx_clk_hw_frac_pll -EXPORT_SYMBOL_GPL vmlinux 0x2a38d831 tc3589x_reg_write -EXPORT_SYMBOL_GPL vmlinux 0x2a4c235a tcp_abort -EXPORT_SYMBOL_GPL vmlinux 0x2a4c27df platform_device_alloc -EXPORT_SYMBOL_GPL vmlinux 0x2a4cf35d rio_unregister_driver -EXPORT_SYMBOL_GPL vmlinux 0x2a62cb3a ring_buffer_overrun_cpu -EXPORT_SYMBOL_GPL vmlinux 0x2a678a13 __suspend_report_result -EXPORT_SYMBOL_GPL vmlinux 0x2a6a8d4b __devm_pci_epc_create -EXPORT_SYMBOL_GPL vmlinux 0x2a6b3065 pci_try_reset_function -EXPORT_SYMBOL_GPL vmlinux 0x2a7316da __SCK__tp_func_neigh_cleanup_and_release -EXPORT_SYMBOL_GPL vmlinux 0x2a76ee46 rtnl_af_register -EXPORT_SYMBOL_GPL vmlinux 0x2a787262 of_thermal_is_trip_valid -EXPORT_SYMBOL_GPL vmlinux 0x2aadad1a efi_capsule_update -EXPORT_SYMBOL_GPL vmlinux 0x2ac4dd6b device_get_child_node_count -EXPORT_SYMBOL_GPL vmlinux 0x2adb1e74 sata_pmp_error_handler -EXPORT_SYMBOL_GPL vmlinux 0x2ae1555b fsl_mc_free_irqs -EXPORT_SYMBOL_GPL vmlinux 0x2ae1689e zynqmp_pm_clock_getdivider -EXPORT_SYMBOL_GPL vmlinux 0x2af50edf cpci_hp_unregister_controller -EXPORT_SYMBOL_GPL vmlinux 0x2af654e6 bpf_prog_alloc -EXPORT_SYMBOL_GPL vmlinux 0x2b0765ca xen_store_interface -EXPORT_SYMBOL_GPL vmlinux 0x2b0b20c0 synth_event_trace -EXPORT_SYMBOL_GPL vmlinux 0x2b0d1a8a rio_mport_get_physefb -EXPORT_SYMBOL_GPL vmlinux 0x2b0fe000 gnttab_cancel_free_callback -EXPORT_SYMBOL_GPL vmlinux 0x2b4509dd devlink_health_reporter_state_update -EXPORT_SYMBOL_GPL vmlinux 0x2b5b9d5b md_run -EXPORT_SYMBOL_GPL vmlinux 0x2b6150fb power_supply_temp2resist_simple -EXPORT_SYMBOL_GPL vmlinux 0x2b6d960d synth_event_cmd_init -EXPORT_SYMBOL_GPL vmlinux 0x2b72ef7f clk_mux_ro_ops -EXPORT_SYMBOL_GPL vmlinux 0x2b80a75e pci_generic_config_write -EXPORT_SYMBOL_GPL vmlinux 0x2b8a54ad fscrypt_ioctl_add_key -EXPORT_SYMBOL_GPL vmlinux 0x2b952517 clk_has_parent -EXPORT_SYMBOL_GPL vmlinux 0x2b960b66 qman_is_probed -EXPORT_SYMBOL_GPL vmlinux 0x2ba1ee0b bpf_prog_create_from_user -EXPORT_SYMBOL_GPL vmlinux 0x2bb11633 regulator_suspend_enable -EXPORT_SYMBOL_GPL vmlinux 0x2bb815d6 mptcp_pm_get_local_addr_max -EXPORT_SYMBOL_GPL vmlinux 0x2bc71ef3 lwtunnel_output -EXPORT_SYMBOL_GPL vmlinux 0x2bdf1ef6 fs_kobj -EXPORT_SYMBOL_GPL vmlinux 0x2be7a58c pinctrl_generic_get_group_pins -EXPORT_SYMBOL_GPL vmlinux 0x2bf5e46d perf_aux_output_flag -EXPORT_SYMBOL_GPL vmlinux 0x2bfb4e74 cpufreq_cooling_unregister -EXPORT_SYMBOL_GPL vmlinux 0x2c208607 power_supply_is_system_supplied -EXPORT_SYMBOL_GPL vmlinux 0x2c254b08 tc3589x_block_write -EXPORT_SYMBOL_GPL vmlinux 0x2c2570cd pci_ecam_create -EXPORT_SYMBOL_GPL vmlinux 0x2c272ce3 dm_copy_name_and_uuid -EXPORT_SYMBOL_GPL vmlinux 0x2c2f24bd serial8250_rpm_get -EXPORT_SYMBOL_GPL vmlinux 0x2c3054f9 net_inc_ingress_queue -EXPORT_SYMBOL_GPL vmlinux 0x2c36cc85 __tracepoint_unmap -EXPORT_SYMBOL_GPL vmlinux 0x2c4ead08 iommu_map_atomic -EXPORT_SYMBOL_GPL vmlinux 0x2c589125 unix_table_lock -EXPORT_SYMBOL_GPL vmlinux 0x2c590b66 mbox_request_channel_byname -EXPORT_SYMBOL_GPL vmlinux 0x2c635527 arch_invalidate_pmem -EXPORT_SYMBOL_GPL vmlinux 0x2c66ac85 devlink_info_serial_number_put -EXPORT_SYMBOL_GPL vmlinux 0x2c68e6bd vchan_tx_submit -EXPORT_SYMBOL_GPL vmlinux 0x2c68ed16 dma_buf_unmap_attachment -EXPORT_SYMBOL_GPL vmlinux 0x2c6cc736 ahci_platform_suspend -EXPORT_SYMBOL_GPL vmlinux 0x2c700025 dev_pm_opp_add -EXPORT_SYMBOL_GPL vmlinux 0x2c728e86 platform_device_register -EXPORT_SYMBOL_GPL vmlinux 0x2c75e777 serdev_device_set_baudrate -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 0x2c874a6e spi_mem_default_supports_op -EXPORT_SYMBOL_GPL vmlinux 0x2c8dd6b8 edac_mem_types -EXPORT_SYMBOL_GPL vmlinux 0x2c97f8a2 of_reconfig_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0x2c9ae62e tegra_agic_route_interrupt -EXPORT_SYMBOL_GPL vmlinux 0x2ca41024 ioasid_get -EXPORT_SYMBOL_GPL vmlinux 0x2ca4f05f da903x_clr_bits -EXPORT_SYMBOL_GPL vmlinux 0x2ca5d7a6 simple_attr_read -EXPORT_SYMBOL_GPL vmlinux 0x2cb4fade tty_buffer_request_room -EXPORT_SYMBOL_GPL vmlinux 0x2cb5ef50 edac_mc_add_mc_with_groups -EXPORT_SYMBOL_GPL vmlinux 0x2cb687a8 of_cpufreq_cooling_register -EXPORT_SYMBOL_GPL vmlinux 0x2cbe546d __blkg_prfill_u64 -EXPORT_SYMBOL_GPL vmlinux 0x2cc495c5 rpi_firmware_property_list -EXPORT_SYMBOL_GPL vmlinux 0x2ccfdf50 dax_iomap_rw -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 0x2cf90d0c devlink_resources_unregister -EXPORT_SYMBOL_GPL vmlinux 0x2cfeb46e securityfs_create_symlink -EXPORT_SYMBOL_GPL vmlinux 0x2d0c7735 virtio_break_device -EXPORT_SYMBOL_GPL vmlinux 0x2d1b02d2 usermodehelper_read_lock_wait -EXPORT_SYMBOL_GPL vmlinux 0x2d1e869d stmpe811_adc_common_init -EXPORT_SYMBOL_GPL vmlinux 0x2d223bb5 pci_user_read_config_byte -EXPORT_SYMBOL_GPL vmlinux 0x2d2807da akcipher_register_instance -EXPORT_SYMBOL_GPL vmlinux 0x2d2c902f perf_trace_buf_alloc -EXPORT_SYMBOL_GPL vmlinux 0x2d2d77cd __netpoll_setup -EXPORT_SYMBOL_GPL vmlinux 0x2d2dd36f kobj_ns_grab_current -EXPORT_SYMBOL_GPL vmlinux 0x2d4094c3 pci_generic_config_read -EXPORT_SYMBOL_GPL vmlinux 0x2d41e6f5 __trace_puts -EXPORT_SYMBOL_GPL vmlinux 0x2d5d3323 fsl_mc_bus_dpseci_type -EXPORT_SYMBOL_GPL vmlinux 0x2d6114b7 btree_remove -EXPORT_SYMBOL_GPL vmlinux 0x2d6aa0f0 arch_apei_enable_cmcff -EXPORT_SYMBOL_GPL vmlinux 0x2d6c9c7a xdp_rxq_info_reg_mem_model -EXPORT_SYMBOL_GPL vmlinux 0x2d6dd66a fsl_mc_cleanup_irq_pool -EXPORT_SYMBOL_GPL vmlinux 0x2d7c7fb7 icc_provider_add -EXPORT_SYMBOL_GPL vmlinux 0x2d91a2b1 skb_clone_tx_timestamp -EXPORT_SYMBOL_GPL vmlinux 0x2da851e5 rio_request_outb_dbell -EXPORT_SYMBOL_GPL vmlinux 0x2dad7765 ata_std_postreset -EXPORT_SYMBOL_GPL vmlinux 0x2db67d4a owl_sps_set_pg -EXPORT_SYMBOL_GPL vmlinux 0x2db7ae4b trace_event_reg -EXPORT_SYMBOL_GPL vmlinux 0x2db974b0 k3_udma_glue_request_tx_chn -EXPORT_SYMBOL_GPL vmlinux 0x2dcadfbb blk_queue_zone_write_granularity -EXPORT_SYMBOL_GPL vmlinux 0x2dcf5ab7 edac_device_del_device -EXPORT_SYMBOL_GPL vmlinux 0x2de6859b scsi_dh_attach -EXPORT_SYMBOL_GPL vmlinux 0x2dfb91c3 driver_deferred_probe_check_state -EXPORT_SYMBOL_GPL vmlinux 0x2e00dfd8 usb_for_each_dev -EXPORT_SYMBOL_GPL vmlinux 0x2e028ae6 rcutorture_get_gp_data -EXPORT_SYMBOL_GPL vmlinux 0x2e02d122 crypto_unregister_shash -EXPORT_SYMBOL_GPL vmlinux 0x2e097d13 device_property_match_string -EXPORT_SYMBOL_GPL vmlinux 0x2e129d5b device_set_node -EXPORT_SYMBOL_GPL vmlinux 0x2e2360b1 ftrace_set_global_notrace -EXPORT_SYMBOL_GPL vmlinux 0x2e272c07 i2c_acpi_new_device -EXPORT_SYMBOL_GPL vmlinux 0x2e443061 phy_modify -EXPORT_SYMBOL_GPL vmlinux 0x2e555526 rtnl_link_unregister -EXPORT_SYMBOL_GPL vmlinux 0x2e5cb161 devm_regulator_get -EXPORT_SYMBOL_GPL vmlinux 0x2e5fa7ef of_property_read_variable_u16_array -EXPORT_SYMBOL_GPL vmlinux 0x2e6611cd kobject_get_path -EXPORT_SYMBOL_GPL vmlinux 0x2e66298c __SCK__tp_func_sched_util_est_cfs_tp -EXPORT_SYMBOL_GPL vmlinux 0x2e7c2e14 cpufreq_freq_transition_begin -EXPORT_SYMBOL_GPL vmlinux 0x2e7d700c pci_epf_add_vepf -EXPORT_SYMBOL_GPL vmlinux 0x2e8ab6ce xfrm_audit_state_replay_overflow -EXPORT_SYMBOL_GPL vmlinux 0x2e8c413f gnttab_page_cache_put -EXPORT_SYMBOL_GPL vmlinux 0x2e8cf86c acct_bioset_exit -EXPORT_SYMBOL_GPL vmlinux 0x2e8d4d0c devm_extcon_dev_unregister -EXPORT_SYMBOL_GPL vmlinux 0x2ea87a39 tegra_bpmp_get -EXPORT_SYMBOL_GPL vmlinux 0x2ebb19fd execute_in_process_context -EXPORT_SYMBOL_GPL vmlinux 0x2ebe3135 cpu_is_hotpluggable -EXPORT_SYMBOL_GPL vmlinux 0x2ec0edbc regulator_get_linear_step -EXPORT_SYMBOL_GPL vmlinux 0x2ec70f03 skb_splice_bits -EXPORT_SYMBOL_GPL vmlinux 0x2ed0e934 of_thermal_get_trip_points -EXPORT_SYMBOL_GPL vmlinux 0x2edeab0d irq_domain_translate_onecell -EXPORT_SYMBOL_GPL vmlinux 0x2ee39c5d anon_transport_class_unregister -EXPORT_SYMBOL_GPL vmlinux 0x2ee54012 xhci_add_endpoint -EXPORT_SYMBOL_GPL vmlinux 0x2f0d9053 usb_otg_state_string -EXPORT_SYMBOL_GPL vmlinux 0x2f0efaaf class_remove_file_ns -EXPORT_SYMBOL_GPL vmlinux 0x2f1ea064 __SCK__tp_func_xdp_bulk_tx -EXPORT_SYMBOL_GPL vmlinux 0x2f2c95c4 flush_work -EXPORT_SYMBOL_GPL vmlinux 0x2f2dee19 of_get_videomode -EXPORT_SYMBOL_GPL vmlinux 0x2f31450c devm_serdev_device_open -EXPORT_SYMBOL_GPL vmlinux 0x2f36b2d5 udp6_lib_lookup -EXPORT_SYMBOL_GPL vmlinux 0x2f387454 trace_event_raw_init -EXPORT_SYMBOL_GPL vmlinux 0x2f38f313 led_update_brightness -EXPORT_SYMBOL_GPL vmlinux 0x2f4880df static_key_slow_dec -EXPORT_SYMBOL_GPL vmlinux 0x2f64415f unregister_acpi_hed_notifier -EXPORT_SYMBOL_GPL vmlinux 0x2f6a892e of_clk_set_defaults -EXPORT_SYMBOL_GPL vmlinux 0x2f744b5b attribute_container_find_class_device -EXPORT_SYMBOL_GPL vmlinux 0x2f7fa4a4 dpbp_open -EXPORT_SYMBOL_GPL vmlinux 0x2fa1d01a ata_host_detach -EXPORT_SYMBOL_GPL vmlinux 0x2fa44a61 sata_scr_write -EXPORT_SYMBOL_GPL vmlinux 0x2fac3c71 k3_ringacc_request_rings_pair -EXPORT_SYMBOL_GPL vmlinux 0x2fb391ba iommu_fwspec_add_ids -EXPORT_SYMBOL_GPL vmlinux 0x2fc1e0fe kmem_valid_obj -EXPORT_SYMBOL_GPL vmlinux 0x2fc23b52 usb_urb_ep_type_check -EXPORT_SYMBOL_GPL vmlinux 0x2fcaf591 blk_mq_complete_request_remote -EXPORT_SYMBOL_GPL vmlinux 0x2fe3f790 of_get_pci_domain_nr -EXPORT_SYMBOL_GPL vmlinux 0x2ff1c87d da9052_request_irq -EXPORT_SYMBOL_GPL vmlinux 0x2ff9e6fa mbox_client_txdone -EXPORT_SYMBOL_GPL vmlinux 0x2ffb9001 security_path_chown -EXPORT_SYMBOL_GPL vmlinux 0x300123c7 irq_remove_generic_chip -EXPORT_SYMBOL_GPL vmlinux 0x300cbeb5 led_classdev_resume -EXPORT_SYMBOL_GPL vmlinux 0x302113b7 ipv4_redirect -EXPORT_SYMBOL_GPL vmlinux 0x30246e2a bsg_job_done -EXPORT_SYMBOL_GPL vmlinux 0x3025eee0 tegra210_clk_emc_dll_update_setting -EXPORT_SYMBOL_GPL vmlinux 0x30351294 k3_udma_glue_rx_flow_get_fdq_id -EXPORT_SYMBOL_GPL vmlinux 0x30372e56 phy_modify_mmd -EXPORT_SYMBOL_GPL vmlinux 0x30593f41 serial8250_do_get_mctrl -EXPORT_SYMBOL_GPL vmlinux 0x306048e5 ata_pci_device_resume -EXPORT_SYMBOL_GPL vmlinux 0x3061cfce ring_buffer_entries_cpu -EXPORT_SYMBOL_GPL vmlinux 0x30688e8f ata_sff_port_ops -EXPORT_SYMBOL_GPL vmlinux 0x3069d0f7 btree_lookup -EXPORT_SYMBOL_GPL vmlinux 0x308c6391 irq_setup_generic_chip -EXPORT_SYMBOL_GPL vmlinux 0x3098c376 ata_sas_port_init -EXPORT_SYMBOL_GPL vmlinux 0x30aa0247 shash_ahash_update -EXPORT_SYMBOL_GPL vmlinux 0x30ba36a6 sata_link_hardreset -EXPORT_SYMBOL_GPL vmlinux 0x30bd92d0 phy_restore_page -EXPORT_SYMBOL_GPL vmlinux 0x30d25b1a xenbus_dev_cancel -EXPORT_SYMBOL_GPL vmlinux 0x30d76ec5 device_create_managed_software_node -EXPORT_SYMBOL_GPL vmlinux 0x30e1d60e kthread_cancel_work_sync -EXPORT_SYMBOL_GPL vmlinux 0x30e1ec25 apei_map_generic_address -EXPORT_SYMBOL_GPL vmlinux 0x30e42163 tick_nohz_dep_clear_cpu -EXPORT_SYMBOL_GPL vmlinux 0x30ebedae usb_of_has_combined_node -EXPORT_SYMBOL_GPL vmlinux 0x30f022ef mmc_crypto_setup_queue -EXPORT_SYMBOL_GPL vmlinux 0x30f6228b led_set_brightness_sync -EXPORT_SYMBOL_GPL vmlinux 0x31019477 __ftrace_vbprintk -EXPORT_SYMBOL_GPL vmlinux 0x310bfc42 bpf_trace_run5 -EXPORT_SYMBOL_GPL vmlinux 0x31128b8e hv_remove_kexec_handler -EXPORT_SYMBOL_GPL vmlinux 0x311504e4 iomap_dio_rw -EXPORT_SYMBOL_GPL vmlinux 0x31266931 con_debug_leave -EXPORT_SYMBOL_GPL vmlinux 0x3127a522 mtk_mmsys_ddp_connect -EXPORT_SYMBOL_GPL vmlinux 0x3134b161 led_trigger_rename_static -EXPORT_SYMBOL_GPL vmlinux 0x31369b0c power_supply_get_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0x31399990 acpi_kobj -EXPORT_SYMBOL_GPL vmlinux 0x313ea5fd ipi_send_single -EXPORT_SYMBOL_GPL vmlinux 0x3182df70 dev_attr_link_power_management_policy -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 0x319197d0 blk_steal_bios -EXPORT_SYMBOL_GPL vmlinux 0x3192d768 cpufreq_remove_update_util_hook -EXPORT_SYMBOL_GPL vmlinux 0x31a95e8b ring_buffer_record_enable_cpu -EXPORT_SYMBOL_GPL vmlinux 0x31c157a4 genphy_c45_read_mdix -EXPORT_SYMBOL_GPL vmlinux 0x31c5dc1f sched_trace_rq_avg_dl -EXPORT_SYMBOL_GPL vmlinux 0x31c7970f pciserial_suspend_ports -EXPORT_SYMBOL_GPL vmlinux 0x31dca4d8 gnttab_claim_grant_reference -EXPORT_SYMBOL_GPL vmlinux 0x31e5e824 rio_pw_enable -EXPORT_SYMBOL_GPL vmlinux 0x31e9e8d5 zynqmp_pm_set_suspend_mode -EXPORT_SYMBOL_GPL vmlinux 0x321337dc ata_cable_unknown -EXPORT_SYMBOL_GPL vmlinux 0x32204aed fscrypt_prepare_new_inode -EXPORT_SYMBOL_GPL vmlinux 0x3224b2a9 mpi_read_raw_from_sgl -EXPORT_SYMBOL_GPL vmlinux 0x32393517 usb_autopm_put_interface -EXPORT_SYMBOL_GPL vmlinux 0x323a3d1c crypto_register_rng -EXPORT_SYMBOL_GPL vmlinux 0x324b1d00 ata_bmdma_post_internal_cmd -EXPORT_SYMBOL_GPL vmlinux 0x32580338 devm_fwnode_gpiod_get_index -EXPORT_SYMBOL_GPL vmlinux 0x325888a3 __tracepoint_neigh_update -EXPORT_SYMBOL_GPL vmlinux 0x3263a1fb regulator_get_current_limit_regmap -EXPORT_SYMBOL_GPL vmlinux 0x326884ed crypto_alloc_sync_skcipher -EXPORT_SYMBOL_GPL vmlinux 0x326cefe5 hwpoison_filter_dev_minor -EXPORT_SYMBOL_GPL vmlinux 0x326ed4b7 phy_destroy -EXPORT_SYMBOL_GPL vmlinux 0x327a2687 bind_evtchn_to_irq_lateeoi -EXPORT_SYMBOL_GPL vmlinux 0x3293dc15 blkcg_activate_policy -EXPORT_SYMBOL_GPL vmlinux 0x329cf3f7 icc_node_create -EXPORT_SYMBOL_GPL vmlinux 0x32ab06cc irq_percpu_is_enabled -EXPORT_SYMBOL_GPL vmlinux 0x32c3cb4e class_compat_register -EXPORT_SYMBOL_GPL vmlinux 0x32c5697a devfreq_event_get_edev_count -EXPORT_SYMBOL_GPL vmlinux 0x32e23f4f blk_execute_rq_nowait -EXPORT_SYMBOL_GPL vmlinux 0x32efba2f trace_array_printk -EXPORT_SYMBOL_GPL vmlinux 0x32f65867 k3_udma_glue_tx_get_dma_device -EXPORT_SYMBOL_GPL vmlinux 0x330010b6 cpuset_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x3302db57 fb_deferred_io_fsync -EXPORT_SYMBOL_GPL vmlinux 0x33072e47 l3mdev_update_flow -EXPORT_SYMBOL_GPL vmlinux 0x3313bc45 devm_phy_destroy -EXPORT_SYMBOL_GPL vmlinux 0x3314ae0f usb_hcd_poll_rh_status -EXPORT_SYMBOL_GPL vmlinux 0x33187758 spi_mem_dirmap_destroy -EXPORT_SYMBOL_GPL vmlinux 0x331cc164 dev_pm_opp_enable -EXPORT_SYMBOL_GPL vmlinux 0x331d1553 nvdimm_bus_check_dimm_count -EXPORT_SYMBOL_GPL vmlinux 0x331d8dcf irq_domain_update_bus_token -EXPORT_SYMBOL_GPL vmlinux 0x3331aee7 auxiliary_driver_unregister -EXPORT_SYMBOL_GPL vmlinux 0x33387a16 crypto_hash_walk_done -EXPORT_SYMBOL_GPL vmlinux 0x33413241 usb_poison_anchored_urbs -EXPORT_SYMBOL_GPL vmlinux 0x33529058 register_net_sysctl -EXPORT_SYMBOL_GPL vmlinux 0x3354e46b inet_twsk_alloc -EXPORT_SYMBOL_GPL vmlinux 0x33565d0b ata_qc_complete_multiple -EXPORT_SYMBOL_GPL vmlinux 0x335af523 transport_add_device -EXPORT_SYMBOL_GPL vmlinux 0x335c570f enable_percpu_irq -EXPORT_SYMBOL_GPL vmlinux 0x33664f5c acpi_dma_configure_id -EXPORT_SYMBOL_GPL vmlinux 0x33682407 xfrm_output_resume -EXPORT_SYMBOL_GPL vmlinux 0x336de5cd mptcp_token_get_sock -EXPORT_SYMBOL_GPL vmlinux 0x337b55a2 __wake_up_sync_key -EXPORT_SYMBOL_GPL vmlinux 0x337b7fc7 usb_get_phy -EXPORT_SYMBOL_GPL vmlinux 0x3385493a idr_remove -EXPORT_SYMBOL_GPL vmlinux 0x338825e1 event_triggers_call -EXPORT_SYMBOL_GPL vmlinux 0x33b6f69b __ip6_datagram_connect -EXPORT_SYMBOL_GPL vmlinux 0x33c17335 sched_trace_cfs_rq_cpu -EXPORT_SYMBOL_GPL vmlinux 0x33c61dad __traceiter_devlink_trap_report -EXPORT_SYMBOL_GPL vmlinux 0x33e0f60b __traceiter_neigh_event_send_done -EXPORT_SYMBOL_GPL vmlinux 0x33f67525 xhci_drop_endpoint -EXPORT_SYMBOL_GPL vmlinux 0x340ee3bf of_phy_get -EXPORT_SYMBOL_GPL vmlinux 0x341567db acpiphp_register_attention -EXPORT_SYMBOL_GPL vmlinux 0x3417048b devm_gpiod_put -EXPORT_SYMBOL_GPL vmlinux 0x34331f04 acpi_os_unmap_memory -EXPORT_SYMBOL_GPL vmlinux 0x3433733d crypto_register_alg -EXPORT_SYMBOL_GPL vmlinux 0x34355b87 lwtstate_free -EXPORT_SYMBOL_GPL vmlinux 0x343b15a2 serial8250_rx_dma_flush -EXPORT_SYMBOL_GPL vmlinux 0x34407691 crypto_has_ahash -EXPORT_SYMBOL_GPL vmlinux 0x344361a1 kdb_register -EXPORT_SYMBOL_GPL vmlinux 0x34453a84 devlink_region_snapshot_id_get -EXPORT_SYMBOL_GPL vmlinux 0x34459a27 pci_walk_bus -EXPORT_SYMBOL_GPL vmlinux 0x344a2c84 iomap_dio_complete -EXPORT_SYMBOL_GPL vmlinux 0x344cb354 regmap_field_update_bits_base -EXPORT_SYMBOL_GPL vmlinux 0x344d42e9 dprc_get_obj -EXPORT_SYMBOL_GPL vmlinux 0x3450ad94 mpi_set_ui -EXPORT_SYMBOL_GPL vmlinux 0x345a607e powercap_register_control_type -EXPORT_SYMBOL_GPL vmlinux 0x34658dbd rio_add_device -EXPORT_SYMBOL_GPL vmlinux 0x346f34ef rio_bus_type -EXPORT_SYMBOL_GPL vmlinux 0x34710273 tpm_pcr_read -EXPORT_SYMBOL_GPL vmlinux 0x34743fb9 tpm_tis_core_init -EXPORT_SYMBOL_GPL vmlinux 0x347bf2fb devlink_net -EXPORT_SYMBOL_GPL vmlinux 0x3487561e xhci_init_driver -EXPORT_SYMBOL_GPL vmlinux 0x34a7b142 __SCK__tp_func_rpm_suspend -EXPORT_SYMBOL_GPL vmlinux 0x34a931a9 gpiod_export_link -EXPORT_SYMBOL_GPL vmlinux 0x34b1c330 unregister_ftrace_function -EXPORT_SYMBOL_GPL vmlinux 0x34ba66f5 usb_reset_device -EXPORT_SYMBOL_GPL vmlinux 0x34d136ec blk_mq_sched_mark_restart_hctx -EXPORT_SYMBOL_GPL vmlinux 0x34d2b87c store_sampling_rate -EXPORT_SYMBOL_GPL vmlinux 0x34d44011 nd_blk_region_set_provider_data -EXPORT_SYMBOL_GPL vmlinux 0x34eab46d bind_evtchn_to_irqhandler -EXPORT_SYMBOL_GPL vmlinux 0x34fc4ad3 __tracepoint_block_split -EXPORT_SYMBOL_GPL vmlinux 0x350beedd ata_pci_sff_init_host -EXPORT_SYMBOL_GPL vmlinux 0x350f6ce5 tasklet_unlock_wait -EXPORT_SYMBOL_GPL vmlinux 0x350fc91f nfs42_ssc_register -EXPORT_SYMBOL_GPL vmlinux 0x351d298a switchdev_port_obj_del -EXPORT_SYMBOL_GPL vmlinux 0x3520e3e3 simple_attr_release -EXPORT_SYMBOL_GPL vmlinux 0x352b3813 maxim_charger_calc_reg_current -EXPORT_SYMBOL_GPL vmlinux 0x352ec68b bpf_offload_dev_destroy -EXPORT_SYMBOL_GPL vmlinux 0x352fd30e crypto_alg_mod_lookup -EXPORT_SYMBOL_GPL vmlinux 0x3537051a xen_xlate_remap_gfn_array -EXPORT_SYMBOL_GPL vmlinux 0x35417f2e pinctrl_utils_reserve_map -EXPORT_SYMBOL_GPL vmlinux 0x354a7ccc to_nd_blk_region -EXPORT_SYMBOL_GPL vmlinux 0x354bd5f4 bpf_trace_run9 -EXPORT_SYMBOL_GPL vmlinux 0x355b2ef2 ti_sci_put_handle -EXPORT_SYMBOL_GPL vmlinux 0x3562f983 read_sanitised_ftr_reg -EXPORT_SYMBOL_GPL vmlinux 0x3564f8cf led_trigger_read -EXPORT_SYMBOL_GPL vmlinux 0x356d7f27 dma_resv_test_signaled -EXPORT_SYMBOL_GPL vmlinux 0x356e7e90 xen_xlate_unmap_gfn_range -EXPORT_SYMBOL_GPL vmlinux 0x357457c3 psil_get_ep_config -EXPORT_SYMBOL_GPL vmlinux 0x357c2a7c rht_bucket_nested_insert -EXPORT_SYMBOL_GPL vmlinux 0x358ff60f twl_get_hfclk_rate -EXPORT_SYMBOL_GPL vmlinux 0x3595ae3f dst_blackhole_redirect -EXPORT_SYMBOL_GPL vmlinux 0x35a0d131 meson_pmx_get_groups -EXPORT_SYMBOL_GPL vmlinux 0x35a4f59d zynqmp_pm_clock_setdivider -EXPORT_SYMBOL_GPL vmlinux 0x35b495d0 platform_add_devices -EXPORT_SYMBOL_GPL vmlinux 0x35c1c955 __traceiter_xdp_exception -EXPORT_SYMBOL_GPL vmlinux 0x35c61462 serial8250_release_dma -EXPORT_SYMBOL_GPL vmlinux 0x35d829e2 spi_mem_supports_op -EXPORT_SYMBOL_GPL vmlinux 0x35dbfccd iommu_uapi_sva_unbind_gpasid -EXPORT_SYMBOL_GPL vmlinux 0x3601a2dc tty_init_termios -EXPORT_SYMBOL_GPL vmlinux 0x36075bb5 iommu_group_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x36136366 regulator_count_voltages -EXPORT_SYMBOL_GPL vmlinux 0x36242943 switchdev_deferred_process -EXPORT_SYMBOL_GPL vmlinux 0x362e4890 atomic_notifier_chain_register -EXPORT_SYMBOL_GPL vmlinux 0x363e2d4e dev_fwnode -EXPORT_SYMBOL_GPL vmlinux 0x365282d0 thermal_zone_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0x365989e5 imx_1416x_pll -EXPORT_SYMBOL_GPL vmlinux 0x365b45d1 __tracepoint_sched_update_nr_running_tp -EXPORT_SYMBOL_GPL vmlinux 0x365fa69c io_cgrp_subsys -EXPORT_SYMBOL_GPL vmlinux 0x367bf6ad tps65912_regmap_config -EXPORT_SYMBOL_GPL vmlinux 0x368362b2 xfrm_local_error -EXPORT_SYMBOL_GPL vmlinux 0x368e92d8 ahci_ops -EXPORT_SYMBOL_GPL vmlinux 0x369fcd70 tracing_snapshot -EXPORT_SYMBOL_GPL vmlinux 0x36a72762 devfreq_event_get_edev_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0x36abf433 tpm_send -EXPORT_SYMBOL_GPL vmlinux 0x36b0f31f crypto_register_algs -EXPORT_SYMBOL_GPL vmlinux 0x36b1f942 of_genpd_add_device -EXPORT_SYMBOL_GPL vmlinux 0x36c11d34 dev_pm_opp_of_add_table_indexed -EXPORT_SYMBOL_GPL vmlinux 0x36c2e9b3 usb_register_device_driver -EXPORT_SYMBOL_GPL vmlinux 0x36da71f2 dma_can_mmap -EXPORT_SYMBOL_GPL vmlinux 0x3709da54 trace_event_buffer_commit -EXPORT_SYMBOL_GPL vmlinux 0x371b06db auxiliary_find_device -EXPORT_SYMBOL_GPL vmlinux 0x372cfd6e gnttab_end_foreign_access -EXPORT_SYMBOL_GPL vmlinux 0x372ea9c7 bio_end_io_acct_remapped -EXPORT_SYMBOL_GPL vmlinux 0x3734902f regmap_mmio_detach_clk -EXPORT_SYMBOL_GPL vmlinux 0x37416df0 pm_runtime_get_if_active -EXPORT_SYMBOL_GPL vmlinux 0x37431f89 fib4_rule_default -EXPORT_SYMBOL_GPL vmlinux 0x374c53e1 ata_get_cmd_descript -EXPORT_SYMBOL_GPL vmlinux 0x374c9b35 subsys_dev_iter_init -EXPORT_SYMBOL_GPL vmlinux 0x3750d770 erst_read -EXPORT_SYMBOL_GPL vmlinux 0x376fd5f1 ip_build_and_send_pkt -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 0x377f5008 security_path_chmod -EXPORT_SYMBOL_GPL vmlinux 0x37848dc6 watchdog_register_device -EXPORT_SYMBOL_GPL vmlinux 0x378adfb7 zynqmp_pm_sd_dll_reset -EXPORT_SYMBOL_GPL vmlinux 0x37914025 xenbus_write -EXPORT_SYMBOL_GPL vmlinux 0x379cfee8 ohci_suspend -EXPORT_SYMBOL_GPL vmlinux 0x37b49df5 __wake_up_locked_sync_key -EXPORT_SYMBOL_GPL vmlinux 0x37b54e12 soc_device_match -EXPORT_SYMBOL_GPL vmlinux 0x37bf7be3 percpu_ref_exit -EXPORT_SYMBOL_GPL vmlinux 0x37dfdcfe blk_mq_pci_map_queues -EXPORT_SYMBOL_GPL vmlinux 0x37e00980 pci_bridge_emul_cleanup -EXPORT_SYMBOL_GPL vmlinux 0x37e18c1a sched_trace_rq_cpu -EXPORT_SYMBOL_GPL vmlinux 0x3801776b __ioread32_copy -EXPORT_SYMBOL_GPL vmlinux 0x381824d2 acpi_subsys_suspend -EXPORT_SYMBOL_GPL vmlinux 0x38268b62 icc_bulk_enable -EXPORT_SYMBOL_GPL vmlinux 0x3831faeb tcp_done -EXPORT_SYMBOL_GPL vmlinux 0x38374815 clear_selection -EXPORT_SYMBOL_GPL vmlinux 0x384d8a23 tty_port_register_device_attr_serdev -EXPORT_SYMBOL_GPL vmlinux 0x38651d8d __sbitmap_queue_get_shallow -EXPORT_SYMBOL_GPL vmlinux 0x3866e217 nvmem_device_write -EXPORT_SYMBOL_GPL vmlinux 0x386a77d0 generic_fh_to_dentry -EXPORT_SYMBOL_GPL vmlinux 0x3873e7d9 gpiod_direction_output_raw -EXPORT_SYMBOL_GPL vmlinux 0x3874332d pstore_register -EXPORT_SYMBOL_GPL vmlinux 0x38769bdb em_dev_register_perf_domain -EXPORT_SYMBOL_GPL vmlinux 0x38963be0 regulator_set_mode -EXPORT_SYMBOL_GPL vmlinux 0x3897a2a2 fib_rule_matchall -EXPORT_SYMBOL_GPL vmlinux 0x389ab374 device_get_match_data -EXPORT_SYMBOL_GPL vmlinux 0x389b64a2 static_key_count -EXPORT_SYMBOL_GPL vmlinux 0x389d269f of_icc_get_by_index -EXPORT_SYMBOL_GPL vmlinux 0x389d507d __pm_stay_awake -EXPORT_SYMBOL_GPL vmlinux 0x38a7357a fuse_init_fs_context_submount -EXPORT_SYMBOL_GPL vmlinux 0x38a87d84 i2c_dw_adjust_bus_speed -EXPORT_SYMBOL_GPL vmlinux 0x38a9ea1c shash_register_instance -EXPORT_SYMBOL_GPL vmlinux 0x38aa1397 gpiod_add_lookup_table -EXPORT_SYMBOL_GPL vmlinux 0x38b67741 crypto_skcipher_setkey -EXPORT_SYMBOL_GPL vmlinux 0x38c0e47b strp_check_rcv -EXPORT_SYMBOL_GPL vmlinux 0x38c1d87f gpiod_enable_hw_timestamp_ns -EXPORT_SYMBOL_GPL vmlinux 0x38c78bbd spi_mem_driver_unregister -EXPORT_SYMBOL_GPL vmlinux 0x38e1fde7 mpi_set -EXPORT_SYMBOL_GPL vmlinux 0x38e5bc5a clk_set_rate_range -EXPORT_SYMBOL_GPL vmlinux 0x38fb15f3 crypto_stats_kpp_set_secret -EXPORT_SYMBOL_GPL vmlinux 0x38feb6ec regulator_get_drvdata -EXPORT_SYMBOL_GPL vmlinux 0x39047b19 klist_init -EXPORT_SYMBOL_GPL vmlinux 0x390c99d4 of_hwspin_lock_get_id_byname -EXPORT_SYMBOL_GPL vmlinux 0x3911d5e1 __wake_up_locked -EXPORT_SYMBOL_GPL vmlinux 0x39302f4c fscrypt_ioctl_get_key_status -EXPORT_SYMBOL_GPL vmlinux 0x393d9e82 device_store_ulong -EXPORT_SYMBOL_GPL vmlinux 0x395fe6fa dev_attr_sw_activity -EXPORT_SYMBOL_GPL vmlinux 0x39654c22 rio_dev_get -EXPORT_SYMBOL_GPL vmlinux 0x39774fb3 __wake_up_locked_key -EXPORT_SYMBOL_GPL vmlinux 0x397864e1 put_pid -EXPORT_SYMBOL_GPL vmlinux 0x397e2142 __SCK__tp_func_sched_cpu_capacity_tp -EXPORT_SYMBOL_GPL vmlinux 0x39821bf6 imx_pinctrl_probe -EXPORT_SYMBOL_GPL vmlinux 0x398fb2cf irq_get_irq_data -EXPORT_SYMBOL_GPL vmlinux 0x3996a017 sata_scr_valid -EXPORT_SYMBOL_GPL vmlinux 0x3996adb0 gpiochip_line_is_open_source -EXPORT_SYMBOL_GPL vmlinux 0x39a7affc driver_deferred_probe_timeout -EXPORT_SYMBOL_GPL vmlinux 0x39aa4888 usb_role_string -EXPORT_SYMBOL_GPL vmlinux 0x39b53986 skcipher_walk_virt -EXPORT_SYMBOL_GPL vmlinux 0x39b9d524 pci_cfg_access_lock -EXPORT_SYMBOL_GPL vmlinux 0x39c0bd53 nexthop_select_path -EXPORT_SYMBOL_GPL vmlinux 0x39c32aca __SCK__tp_func_neigh_event_send_done -EXPORT_SYMBOL_GPL vmlinux 0x39c33dc8 udp_cmsg_send -EXPORT_SYMBOL_GPL vmlinux 0x39dcc0c5 dev_coredumpv -EXPORT_SYMBOL_GPL vmlinux 0x39ded098 rdma_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x39dfca64 dma_get_required_mask -EXPORT_SYMBOL_GPL vmlinux 0x39e1d818 usb_set_configuration -EXPORT_SYMBOL_GPL vmlinux 0x39e81ece acpi_set_modalias -EXPORT_SYMBOL_GPL vmlinux 0x3a0ab7fb xfrm_audit_policy_delete -EXPORT_SYMBOL_GPL vmlinux 0x3a0f0fd5 gpiochip_lock_as_irq -EXPORT_SYMBOL_GPL vmlinux 0x3a119cee devm_pm_opp_of_add_table -EXPORT_SYMBOL_GPL vmlinux 0x3a152b35 vp_modern_set_status -EXPORT_SYMBOL_GPL vmlinux 0x3a24fb2f percpu_ref_resurrect -EXPORT_SYMBOL_GPL vmlinux 0x3a2a31f8 find_iova -EXPORT_SYMBOL_GPL vmlinux 0x3a3400a7 devlink_sb_register -EXPORT_SYMBOL_GPL vmlinux 0x3a348d8d acpi_gpiochip_free_interrupts -EXPORT_SYMBOL_GPL vmlinux 0x3a3b623d battery_hook_unregister -EXPORT_SYMBOL_GPL vmlinux 0x3a4ef281 misc_cg_try_charge -EXPORT_SYMBOL_GPL vmlinux 0x3a4f6a32 ata_sff_interrupt -EXPORT_SYMBOL_GPL vmlinux 0x3a529c5e ehci_cf_port_reset_rwsem -EXPORT_SYMBOL_GPL vmlinux 0x3a536bd7 ring_buffer_read_finish -EXPORT_SYMBOL_GPL vmlinux 0x3a55981a static_key_enable_cpuslocked -EXPORT_SYMBOL_GPL vmlinux 0x3a74e484 __tracepoint_sched_util_est_se_tp -EXPORT_SYMBOL_GPL vmlinux 0x3a7c0655 proc_create_net_data_write -EXPORT_SYMBOL_GPL vmlinux 0x3a842396 genphy_c45_loopback -EXPORT_SYMBOL_GPL vmlinux 0x3a8437a0 transport_remove_device -EXPORT_SYMBOL_GPL vmlinux 0x3a88eaa7 pin_user_pages_fast_only -EXPORT_SYMBOL_GPL vmlinux 0x3a954209 sbitmap_queue_wake_all -EXPORT_SYMBOL_GPL vmlinux 0x3a9be019 asymmetric_key_id_partial -EXPORT_SYMBOL_GPL vmlinux 0x3ab1f6d6 md_rdev_init -EXPORT_SYMBOL_GPL vmlinux 0x3ab4b842 ehci_suspend -EXPORT_SYMBOL_GPL vmlinux 0x3ab93eed pci_enable_ats -EXPORT_SYMBOL_GPL vmlinux 0x3acd8e36 udp_tunnel_nic_ops -EXPORT_SYMBOL_GPL vmlinux 0x3acdf325 twl4030_audio_enable_resource -EXPORT_SYMBOL_GPL vmlinux 0x3ae093e6 ahci_platform_disable_regulators -EXPORT_SYMBOL_GPL vmlinux 0x3ae09b4b cpufreq_generic_init -EXPORT_SYMBOL_GPL vmlinux 0x3ae2d5c0 devlink_dpipe_table_unregister -EXPORT_SYMBOL_GPL vmlinux 0x3ae3f248 device_remove_file_self -EXPORT_SYMBOL_GPL vmlinux 0x3b303db7 usb_role_switch_get -EXPORT_SYMBOL_GPL vmlinux 0x3b406665 regulator_bulk_set_supply_names -EXPORT_SYMBOL_GPL vmlinux 0x3b4c240a display_timings_release -EXPORT_SYMBOL_GPL vmlinux 0x3b5d2d3a pci_destroy_slot -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 0x3b7e8719 regulator_map_voltage_pickable_linear_range -EXPORT_SYMBOL_GPL vmlinux 0x3b80d0e2 bpf_verifier_log_write -EXPORT_SYMBOL_GPL vmlinux 0x3b836448 page_cache_ra_unbounded -EXPORT_SYMBOL_GPL vmlinux 0x3b8979ea gnttab_grant_foreign_transfer_ref -EXPORT_SYMBOL_GPL vmlinux 0x3b941fc8 handle_irq_desc -EXPORT_SYMBOL_GPL vmlinux 0x3b9e2331 fuse_dev_alloc -EXPORT_SYMBOL_GPL vmlinux 0x3ba01b47 get_compat_sigset -EXPORT_SYMBOL_GPL vmlinux 0x3ba79b45 mtk_is_virt_gpio -EXPORT_SYMBOL_GPL vmlinux 0x3bb14ab1 mtk_pinconf_adv_drive_set_raw -EXPORT_SYMBOL_GPL vmlinux 0x3bb46692 __skb_get_hash_symmetric -EXPORT_SYMBOL_GPL vmlinux 0x3bd51dd0 meson_clk_mpll_ro_ops -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 0x3c09f727 crypto_stats_ahash_update -EXPORT_SYMBOL_GPL vmlinux 0x3c0e8050 hyperv_pcpu_input_arg -EXPORT_SYMBOL_GPL vmlinux 0x3c11b9f5 tegra210_put_utmipll_in_iddq -EXPORT_SYMBOL_GPL vmlinux 0x3c1aae4e tty_kclose -EXPORT_SYMBOL_GPL vmlinux 0x3c1c3725 rcu_fwd_progress_check -EXPORT_SYMBOL_GPL vmlinux 0x3c296c28 acpi_pm_set_device_wakeup -EXPORT_SYMBOL_GPL vmlinux 0x3c2b68f7 of_changeset_apply -EXPORT_SYMBOL_GPL vmlinux 0x3c2ff376 dst_cache_set_ip6 -EXPORT_SYMBOL_GPL vmlinux 0x3c31b166 serial8250_get_port -EXPORT_SYMBOL_GPL vmlinux 0x3c3c85d8 __SCK__tp_func_kfree_skb -EXPORT_SYMBOL_GPL vmlinux 0x3c419cd7 sata_port_ops -EXPORT_SYMBOL_GPL vmlinux 0x3c681dc4 ring_buffer_record_disable -EXPORT_SYMBOL_GPL vmlinux 0x3c86f5b9 ahci_error_handler -EXPORT_SYMBOL_GPL vmlinux 0x3c97fbbb sock_diag_save_cookie -EXPORT_SYMBOL_GPL vmlinux 0x3cb13d50 devres_close_group -EXPORT_SYMBOL_GPL vmlinux 0x3ccd74db serial8250_em485_config -EXPORT_SYMBOL_GPL vmlinux 0x3ccd8b46 zynqmp_pm_clock_getparent -EXPORT_SYMBOL_GPL vmlinux 0x3cd06035 add_input_randomness -EXPORT_SYMBOL_GPL vmlinux 0x3cd16dd4 irq_gc_mask_clr_bit -EXPORT_SYMBOL_GPL vmlinux 0x3cd1b510 trace_vbprintk -EXPORT_SYMBOL_GPL vmlinux 0x3cd1e4a2 platform_device_register_full -EXPORT_SYMBOL_GPL vmlinux 0x3cdf69e5 sata_sff_hardreset -EXPORT_SYMBOL_GPL vmlinux 0x3ce13788 acpi_device_update_power -EXPORT_SYMBOL_GPL vmlinux 0x3ce650fd phy_10gbit_features -EXPORT_SYMBOL_GPL vmlinux 0x3ce6ee8e device_create_file -EXPORT_SYMBOL_GPL vmlinux 0x3cedee12 acpi_dma_controller_free -EXPORT_SYMBOL_GPL vmlinux 0x3cf86d68 gpiod_get_optional -EXPORT_SYMBOL_GPL vmlinux 0x3cfcfa8e dev_coredumpsg -EXPORT_SYMBOL_GPL vmlinux 0x3d0567e7 ata_sas_slave_configure -EXPORT_SYMBOL_GPL vmlinux 0x3d1340db clk_hw_get_parent -EXPORT_SYMBOL_GPL vmlinux 0x3d1d945d msg_zerocopy_callback -EXPORT_SYMBOL_GPL vmlinux 0x3d285d6c fwnode_get_named_child_node -EXPORT_SYMBOL_GPL vmlinux 0x3d3335ac of_map_id -EXPORT_SYMBOL_GPL vmlinux 0x3d3432e7 show_class_attr_string -EXPORT_SYMBOL_GPL vmlinux 0x3d35a0ed gpiochip_unlock_as_irq -EXPORT_SYMBOL_GPL vmlinux 0x3d388324 dpm_resume_end -EXPORT_SYMBOL_GPL vmlinux 0x3d4b8845 powercap_unregister_control_type -EXPORT_SYMBOL_GPL vmlinux 0x3d510a7b rcu_jiffies_till_stall_check -EXPORT_SYMBOL_GPL vmlinux 0x3d6232f8 bio_associate_blkg -EXPORT_SYMBOL_GPL vmlinux 0x3d781320 sk_msg_clone -EXPORT_SYMBOL_GPL vmlinux 0x3d7afccc bsg_remove_queue -EXPORT_SYMBOL_GPL vmlinux 0x3d866e05 __SCK__tp_func_block_rq_insert -EXPORT_SYMBOL_GPL vmlinux 0x3d8baf3b zs_huge_class_size -EXPORT_SYMBOL_GPL vmlinux 0x3d8f3972 relay_subbufs_consumed -EXPORT_SYMBOL_GPL vmlinux 0x3da7ac9f pci_hp_remove_module_link -EXPORT_SYMBOL_GPL vmlinux 0x3daa2540 nf_hooks_lwtunnel_enabled -EXPORT_SYMBOL_GPL vmlinux 0x3db1a9ff tegra_bpmp_transfer -EXPORT_SYMBOL_GPL vmlinux 0x3db22d9c __mmdrop -EXPORT_SYMBOL_GPL vmlinux 0x3db48927 sbitmap_any_bit_set -EXPORT_SYMBOL_GPL vmlinux 0x3dd37acb of_usb_host_tpl_support -EXPORT_SYMBOL_GPL vmlinux 0x3de9cae1 crypto_remove_final -EXPORT_SYMBOL_GPL vmlinux 0x3df013cc acpi_bus_trim -EXPORT_SYMBOL_GPL vmlinux 0x3df70c99 trace_clock_global -EXPORT_SYMBOL_GPL vmlinux 0x3df79b5b fuse_dev_release -EXPORT_SYMBOL_GPL vmlinux 0x3e01708e fwnode_property_read_string_array -EXPORT_SYMBOL_GPL vmlinux 0x3e0cb927 crypto_comp_compress -EXPORT_SYMBOL_GPL vmlinux 0x3e19c3fc tps6586x_update -EXPORT_SYMBOL_GPL vmlinux 0x3e234bc7 dpcon_set_notification -EXPORT_SYMBOL_GPL vmlinux 0x3e2689c7 dev_pm_opp_disable -EXPORT_SYMBOL_GPL vmlinux 0x3e417cb2 ata_std_error_handler -EXPORT_SYMBOL_GPL vmlinux 0x3e54106a serial8250_do_set_ldisc -EXPORT_SYMBOL_GPL vmlinux 0x3e7080cb mpi_read_from_buffer -EXPORT_SYMBOL_GPL vmlinux 0x3e725e84 edac_pci_handle_npe -EXPORT_SYMBOL_GPL vmlinux 0x3e790ec0 firmware_request_cache -EXPORT_SYMBOL_GPL vmlinux 0x3e7db6e8 fsl_mc_object_free -EXPORT_SYMBOL_GPL vmlinux 0x3e8dfda3 i2c_bus_type -EXPORT_SYMBOL_GPL vmlinux 0x3e8e9c77 sched_setattr_nocheck -EXPORT_SYMBOL_GPL vmlinux 0x3e8fc0df mtk_pinconf_drive_get -EXPORT_SYMBOL_GPL vmlinux 0x3ea5196d apei_osc_setup -EXPORT_SYMBOL_GPL vmlinux 0x3eb96a13 blk_mq_sched_try_merge -EXPORT_SYMBOL_GPL vmlinux 0x3ec101e6 phy_driver_is_genphy -EXPORT_SYMBOL_GPL vmlinux 0x3ecbe0be vfs_lock_file -EXPORT_SYMBOL_GPL vmlinux 0x3edb8025 __fput_sync -EXPORT_SYMBOL_GPL vmlinux 0x3ee29b94 nd_cmd_in_size -EXPORT_SYMBOL_GPL vmlinux 0x3eed94d1 stmpe_set_bits -EXPORT_SYMBOL_GPL vmlinux 0x3ef051c8 crypto_inc -EXPORT_SYMBOL_GPL vmlinux 0x3efd1889 dax_direct_access -EXPORT_SYMBOL_GPL vmlinux 0x3f00171b sdio_readsb -EXPORT_SYMBOL_GPL vmlinux 0x3f11c9be mtk_hw_set_value -EXPORT_SYMBOL_GPL vmlinux 0x3f1413aa sysfs_unmerge_group -EXPORT_SYMBOL_GPL vmlinux 0x3f159ec9 of_property_count_elems_of_size -EXPORT_SYMBOL_GPL vmlinux 0x3f177999 ata_sas_port_suspend -EXPORT_SYMBOL_GPL vmlinux 0x3f1f3474 serial8250_modem_status -EXPORT_SYMBOL_GPL vmlinux 0x3f25060a usb_unpoison_urb -EXPORT_SYMBOL_GPL vmlinux 0x3f380a23 debugfs_lookup_and_remove -EXPORT_SYMBOL_GPL vmlinux 0x3f491f49 reset_control_bulk_reset -EXPORT_SYMBOL_GPL vmlinux 0x3f4fe0e3 edac_mc_find_csrow_by_page -EXPORT_SYMBOL_GPL vmlinux 0x3f655a2a ata_qc_complete -EXPORT_SYMBOL_GPL vmlinux 0x3f658754 power_supply_property_is_writeable -EXPORT_SYMBOL_GPL vmlinux 0x3f6c9d5a __wake_up_sync -EXPORT_SYMBOL_GPL vmlinux 0x3f729798 tty_encode_baud_rate -EXPORT_SYMBOL_GPL vmlinux 0x3f798aa5 gen_pool_avail -EXPORT_SYMBOL_GPL vmlinux 0x3f7f31a0 crypto_get_default_null_skcipher -EXPORT_SYMBOL_GPL vmlinux 0x3f7f73bd devm_get_free_pages -EXPORT_SYMBOL_GPL vmlinux 0x3f83f8d3 rcu_bind_current_to_nocb -EXPORT_SYMBOL_GPL vmlinux 0x3f84bcd7 dax_alive -EXPORT_SYMBOL_GPL vmlinux 0x3f851d0e dma_get_slave_caps -EXPORT_SYMBOL_GPL vmlinux 0x3f87614b dev_pm_clear_wake_irq -EXPORT_SYMBOL_GPL vmlinux 0x3f88aa37 dev_pm_opp_get_max_clock_latency -EXPORT_SYMBOL_GPL vmlinux 0x3f8ab72e devlink_fmsg_bool_put -EXPORT_SYMBOL_GPL vmlinux 0x3fae6ab0 hv_vp_index -EXPORT_SYMBOL_GPL vmlinux 0x3fd06eba get_cpu_device -EXPORT_SYMBOL_GPL vmlinux 0x3fe0cd14 list_lru_del -EXPORT_SYMBOL_GPL vmlinux 0x3fe6c346 devlink_fmsg_binary_pair_put -EXPORT_SYMBOL_GPL vmlinux 0x3fea029c hisi_clk_register_gate -EXPORT_SYMBOL_GPL vmlinux 0x3fede885 pci_hp_add_bridge -EXPORT_SYMBOL_GPL vmlinux 0x3ff1ee70 fsl_mc_device_remove -EXPORT_SYMBOL_GPL vmlinux 0x3ff82085 public_key_signature_free -EXPORT_SYMBOL_GPL vmlinux 0x3ffcf20c pci_pri_supported -EXPORT_SYMBOL_GPL vmlinux 0x3ffdacf3 timerqueue_iterate_next -EXPORT_SYMBOL_GPL vmlinux 0x4005c70d of_genpd_remove_subdomain -EXPORT_SYMBOL_GPL vmlinux 0x4008f8a2 epl_report_error -EXPORT_SYMBOL_GPL vmlinux 0x400a024b acpi_scan_lock_release -EXPORT_SYMBOL_GPL vmlinux 0x400b21b3 skb_to_sgvec -EXPORT_SYMBOL_GPL vmlinux 0x40267a51 pm_generic_resume_noirq -EXPORT_SYMBOL_GPL vmlinux 0x40382e78 scsi_check_sense -EXPORT_SYMBOL_GPL vmlinux 0x403f9529 gpio_request_one -EXPORT_SYMBOL_GPL vmlinux 0x4044ca16 pkcs7_verify -EXPORT_SYMBOL_GPL vmlinux 0x4055e885 blk_queue_required_elevator_features -EXPORT_SYMBOL_GPL vmlinux 0x4056d139 scsi_queue_work -EXPORT_SYMBOL_GPL vmlinux 0x406125fc edac_pci_release_generic_ctl -EXPORT_SYMBOL_GPL vmlinux 0x4065d168 pm_print_active_wakeup_sources -EXPORT_SYMBOL_GPL vmlinux 0x40669c72 mtk_pinconf_bias_set_combo -EXPORT_SYMBOL_GPL vmlinux 0x406c4cb1 hrtimer_resolution -EXPORT_SYMBOL_GPL vmlinux 0x4071b517 out_of_line_wait_on_bit_timeout -EXPORT_SYMBOL_GPL vmlinux 0x4079def4 devlink_trap_groups_register -EXPORT_SYMBOL_GPL vmlinux 0x409436ae ahci_fill_cmd_slot -EXPORT_SYMBOL_GPL vmlinux 0x40989444 sysfs_remove_file_self -EXPORT_SYMBOL_GPL vmlinux 0x4099f919 tun_ptr_free -EXPORT_SYMBOL_GPL vmlinux 0x40a7f217 led_trigger_set -EXPORT_SYMBOL_GPL vmlinux 0x40b47c86 __irq_set_handler -EXPORT_SYMBOL_GPL vmlinux 0x40b7fb85 meson8_pmx_ops -EXPORT_SYMBOL_GPL vmlinux 0x40c2a12d blkdev_report_zones -EXPORT_SYMBOL_GPL vmlinux 0x40dbd0c4 mtk_eint_set_debounce -EXPORT_SYMBOL_GPL vmlinux 0x40ee00dc idr_alloc_u32 -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 0x40fcfce8 device_for_each_child_reverse -EXPORT_SYMBOL_GPL vmlinux 0x40ffacc3 __phy_modify_mmd_changed -EXPORT_SYMBOL_GPL vmlinux 0x4100a662 clk_get_scaled_duty_cycle -EXPORT_SYMBOL_GPL vmlinux 0x4117bbdb iomap_file_unshare -EXPORT_SYMBOL_GPL vmlinux 0x41237f71 cpu_have_feature -EXPORT_SYMBOL_GPL vmlinux 0x412bc681 ring_buffer_empty_cpu -EXPORT_SYMBOL_GPL vmlinux 0x41376120 irq_domain_free_irqs_parent -EXPORT_SYMBOL_GPL vmlinux 0x4142ff5f __strp_unpause -EXPORT_SYMBOL_GPL vmlinux 0x41432254 of_dma_is_coherent -EXPORT_SYMBOL_GPL vmlinux 0x414d119a videomode_from_timings -EXPORT_SYMBOL_GPL vmlinux 0x414ed20c of_pm_clk_add_clk -EXPORT_SYMBOL_GPL vmlinux 0x416e325a ethnl_cable_test_finished -EXPORT_SYMBOL_GPL vmlinux 0x4170d4b6 dev_pm_opp_find_level_exact -EXPORT_SYMBOL_GPL vmlinux 0x417bf525 devlink_resource_occ_get_unregister -EXPORT_SYMBOL_GPL vmlinux 0x41814cb8 dirty_writeback_interval -EXPORT_SYMBOL_GPL vmlinux 0x419d7c83 zynqmp_pm_pinctrl_set_config -EXPORT_SYMBOL_GPL vmlinux 0x419e7efd sfp_module_stop -EXPORT_SYMBOL_GPL vmlinux 0x419fda6a transport_setup_device -EXPORT_SYMBOL_GPL vmlinux 0x41b02abf devm_reset_controller_register -EXPORT_SYMBOL_GPL vmlinux 0x41b68a8a class_dev_iter_exit -EXPORT_SYMBOL_GPL vmlinux 0x41b9a6e6 bsg_unregister_queue -EXPORT_SYMBOL_GPL vmlinux 0x41bce49a ghes_register_vendor_record_notifier -EXPORT_SYMBOL_GPL vmlinux 0x41c5591e pci_check_and_unmask_intx -EXPORT_SYMBOL_GPL vmlinux 0x41cc7fba tcp_set_state -EXPORT_SYMBOL_GPL vmlinux 0x41d004c1 shmem_truncate_range -EXPORT_SYMBOL_GPL vmlinux 0x41ed3cec eventfd_ctx_remove_wait_queue -EXPORT_SYMBOL_GPL vmlinux 0x42041512 i2c_get_dma_safe_msg_buf -EXPORT_SYMBOL_GPL vmlinux 0x420f3d01 nvmem_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x421b0874 hwmon_device_register -EXPORT_SYMBOL_GPL vmlinux 0x421c534c thermal_add_hwmon_sysfs -EXPORT_SYMBOL_GPL vmlinux 0x4229c1a1 ptp_parse_header -EXPORT_SYMBOL_GPL vmlinux 0x422aadb6 fwnode_property_read_string -EXPORT_SYMBOL_GPL vmlinux 0x423bceaf uprobe_unregister -EXPORT_SYMBOL_GPL vmlinux 0x42425aa1 tegra_mc_write_emem_configuration -EXPORT_SYMBOL_GPL vmlinux 0x4254bef4 pci_epc_mem_free_addr -EXPORT_SYMBOL_GPL vmlinux 0x42577990 nvdimm_in_overwrite -EXPORT_SYMBOL_GPL vmlinux 0x42595a34 sock_map_unhash -EXPORT_SYMBOL_GPL vmlinux 0x42635d55 pm_suspend_global_flags -EXPORT_SYMBOL_GPL vmlinux 0x426452a3 acpi_evaluation_failure_warn -EXPORT_SYMBOL_GPL vmlinux 0x42731055 phy_create_lookup -EXPORT_SYMBOL_GPL vmlinux 0x42825ce2 rcu_scheduler_active -EXPORT_SYMBOL_GPL vmlinux 0x42832c5f xenbus_dev_suspend -EXPORT_SYMBOL_GPL vmlinux 0x42933bf4 k3_udma_glue_rx_flow_init -EXPORT_SYMBOL_GPL vmlinux 0x42a43b50 get_user_pages_fast -EXPORT_SYMBOL_GPL vmlinux 0x42ae6be6 mmc_send_tuning -EXPORT_SYMBOL_GPL vmlinux 0x42c458cc meson_clk_dualdiv_ro_ops -EXPORT_SYMBOL_GPL vmlinux 0x42d428d0 thermal_zone_get_temp -EXPORT_SYMBOL_GPL vmlinux 0x42d957dc dm_per_bio_data -EXPORT_SYMBOL_GPL vmlinux 0x42dd34cc dev_xdp_prog_count -EXPORT_SYMBOL_GPL vmlinux 0x42e9d0da ring_buffer_unlock_commit -EXPORT_SYMBOL_GPL vmlinux 0x42edad10 __class_create -EXPORT_SYMBOL_GPL vmlinux 0x42f728aa mctrl_gpio_get_outputs -EXPORT_SYMBOL_GPL vmlinux 0x43089bfa scsi_dh_attached_handler_name -EXPORT_SYMBOL_GPL vmlinux 0x43094674 spi_mem_exec_op -EXPORT_SYMBOL_GPL vmlinux 0x430d88ec __traceiter_arm_event -EXPORT_SYMBOL_GPL vmlinux 0x4313d33f dev_pm_domain_attach -EXPORT_SYMBOL_GPL vmlinux 0x4319a040 class_destroy -EXPORT_SYMBOL_GPL vmlinux 0x4340ee7a phy_save_page -EXPORT_SYMBOL_GPL vmlinux 0x434744ff edac_mc_del_mc -EXPORT_SYMBOL_GPL vmlinux 0x434c14c8 sec_irq_init -EXPORT_SYMBOL_GPL vmlinux 0x4354c4b3 da9052_free_irq -EXPORT_SYMBOL_GPL vmlinux 0x4367d7f4 handle_bad_irq -EXPORT_SYMBOL_GPL vmlinux 0x436bcb1d ncsi_unregister_dev -EXPORT_SYMBOL_GPL vmlinux 0x436d817f mpi_clear_bit -EXPORT_SYMBOL_GPL vmlinux 0x437a29c4 sched_set_fifo_low -EXPORT_SYMBOL_GPL vmlinux 0x437eb1df ipv6_mod_enabled -EXPORT_SYMBOL_GPL vmlinux 0x437ed304 tcp_register_congestion_control -EXPORT_SYMBOL_GPL vmlinux 0x438d8df2 iova_cache_get -EXPORT_SYMBOL_GPL vmlinux 0x4392d7d5 ahci_stop_engine -EXPORT_SYMBOL_GPL vmlinux 0x4396063f rockchip_pcie_deinit_phys -EXPORT_SYMBOL_GPL vmlinux 0x439ab6cc devlink_rate_nodes_destroy -EXPORT_SYMBOL_GPL vmlinux 0x43aa319e lease_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x43b0a6b0 dev_pm_opp_unregister_set_opp_helper -EXPORT_SYMBOL_GPL vmlinux 0x43b51161 blk_ksm_update_capabilities -EXPORT_SYMBOL_GPL vmlinux 0x43b83dcb da9052_disable_irq -EXPORT_SYMBOL_GPL vmlinux 0x43c612b5 debugfs_file_put -EXPORT_SYMBOL_GPL vmlinux 0x43cdb210 power_supply_get_by_name -EXPORT_SYMBOL_GPL vmlinux 0x43ce168b firmware_kobj -EXPORT_SYMBOL_GPL vmlinux 0x43cfc5f5 iommu_sva_find -EXPORT_SYMBOL_GPL vmlinux 0x43ddf95f crypto_register_skciphers -EXPORT_SYMBOL_GPL vmlinux 0x43e4877d regmap_add_irq_chip_fwnode -EXPORT_SYMBOL_GPL vmlinux 0x43e941d9 dax_iomap_fault -EXPORT_SYMBOL_GPL vmlinux 0x43e9efd8 phy_create -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 0x442deaa9 poll_state_synchronize_rcu -EXPORT_SYMBOL_GPL vmlinux 0x4434a514 devm_regulator_get_optional -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 0x445a09c0 nvmem_device_cell_write -EXPORT_SYMBOL_GPL vmlinux 0x445caec2 uart_get_rs485_mode -EXPORT_SYMBOL_GPL vmlinux 0x4484899c device_initialize -EXPORT_SYMBOL_GPL vmlinux 0x4484a5a4 wait_for_device_probe -EXPORT_SYMBOL_GPL vmlinux 0x448b55b9 synth_event_add_next_val -EXPORT_SYMBOL_GPL vmlinux 0x448d68d8 rio_mport_initialize -EXPORT_SYMBOL_GPL vmlinux 0x448db791 vfs_inode_has_locks -EXPORT_SYMBOL_GPL vmlinux 0x449582ce regmap_noinc_read -EXPORT_SYMBOL_GPL vmlinux 0x449bb4e9 device_link_del -EXPORT_SYMBOL_GPL vmlinux 0x44a24b63 blk_ksm_reprogram_all_keys -EXPORT_SYMBOL_GPL vmlinux 0x44a793ab HYPERVISOR_grant_table_op -EXPORT_SYMBOL_GPL vmlinux 0x44a9534f fat_search_long -EXPORT_SYMBOL_GPL vmlinux 0x44bae227 bit_wait_timeout -EXPORT_SYMBOL_GPL vmlinux 0x44ced66c usb_bus_idr -EXPORT_SYMBOL_GPL vmlinux 0x44cf8cf0 blk_zone_cond_str -EXPORT_SYMBOL_GPL vmlinux 0x44d44d36 __put_net -EXPORT_SYMBOL_GPL vmlinux 0x44d83bab dev_attr_ncq_prio_enable -EXPORT_SYMBOL_GPL vmlinux 0x44e1e9aa balloon_stats -EXPORT_SYMBOL_GPL vmlinux 0x44eb577c __rio_local_write_config_16 -EXPORT_SYMBOL_GPL vmlinux 0x4507f4a8 cpuhp_tasks_frozen -EXPORT_SYMBOL_GPL vmlinux 0x452be939 vfs_setlease -EXPORT_SYMBOL_GPL vmlinux 0x4530f30f fscrypt_prepare_symlink -EXPORT_SYMBOL_GPL vmlinux 0x4531624f usb_decode_ctrl -EXPORT_SYMBOL_GPL vmlinux 0x4531ab62 copy_from_kernel_nofault -EXPORT_SYMBOL_GPL vmlinux 0x45553812 device_property_read_u32_array -EXPORT_SYMBOL_GPL vmlinux 0x45558f56 clk_unregister_fixed_factor -EXPORT_SYMBOL_GPL vmlinux 0x4561f990 qcom_smem_state_unregister -EXPORT_SYMBOL_GPL vmlinux 0x457594fa crypto_alg_list -EXPORT_SYMBOL_GPL vmlinux 0x458153ee regmap_field_bulk_free -EXPORT_SYMBOL_GPL vmlinux 0x4581eb33 __ip6_local_out -EXPORT_SYMBOL_GPL vmlinux 0x4583bb0c fuse_dev_operations -EXPORT_SYMBOL_GPL vmlinux 0x4596f32a netlink_add_tap -EXPORT_SYMBOL_GPL vmlinux 0x459e6151 mm_unaccount_pinned_pages -EXPORT_SYMBOL_GPL vmlinux 0x45aba2e0 set_primary_fwnode -EXPORT_SYMBOL_GPL vmlinux 0x45bb1110 hwmon_notify_event -EXPORT_SYMBOL_GPL vmlinux 0x45c75a01 ata_sas_port_destroy -EXPORT_SYMBOL_GPL vmlinux 0x45cdda46 pm_clk_resume -EXPORT_SYMBOL_GPL vmlinux 0x45d688b4 cpufreq_freq_transition_end -EXPORT_SYMBOL_GPL vmlinux 0x45dc5085 scsi_dh_set_params -EXPORT_SYMBOL_GPL vmlinux 0x45e10f89 to_nvdimm_bus -EXPORT_SYMBOL_GPL vmlinux 0x45ee54f9 l3mdev_fib_table_by_index -EXPORT_SYMBOL_GPL vmlinux 0x45f22065 ahci_print_info -EXPORT_SYMBOL_GPL vmlinux 0x45f5c9ca irq_set_chip_and_handler_name -EXPORT_SYMBOL_GPL vmlinux 0x45f9850d pm_generic_freeze -EXPORT_SYMBOL_GPL vmlinux 0x46013233 net_dec_ingress_queue -EXPORT_SYMBOL_GPL vmlinux 0x4603bf21 regulator_bulk_free -EXPORT_SYMBOL_GPL vmlinux 0x4606a6c8 device_property_read_u8_array -EXPORT_SYMBOL_GPL vmlinux 0x4613560e acpiphp_unregister_attention -EXPORT_SYMBOL_GPL vmlinux 0x46146620 handle_untracked_irq -EXPORT_SYMBOL_GPL vmlinux 0x4619872a firmware_request_platform -EXPORT_SYMBOL_GPL vmlinux 0x461eac69 gpiochip_get_data -EXPORT_SYMBOL_GPL vmlinux 0x46269814 __tracepoint_neigh_event_send_dead -EXPORT_SYMBOL_GPL vmlinux 0x46441ba6 device_phy_find_device -EXPORT_SYMBOL_GPL vmlinux 0x465a44fe sock_gen_put -EXPORT_SYMBOL_GPL vmlinux 0x465bde4d led_classdev_notify_brightness_hw_changed -EXPORT_SYMBOL_GPL vmlinux 0x46621ef7 pm_generic_runtime_resume -EXPORT_SYMBOL_GPL vmlinux 0x4662cd19 kernel_read_file -EXPORT_SYMBOL_GPL vmlinux 0x46677ec0 rio_request_outb_mbox -EXPORT_SYMBOL_GPL vmlinux 0x466d98c3 usb_ep0_reinit -EXPORT_SYMBOL_GPL vmlinux 0x4688d7ec pvclock_gtod_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x469ceca5 security_inode_setattr -EXPORT_SYMBOL_GPL vmlinux 0x46c1ee98 vfs_submount -EXPORT_SYMBOL_GPL vmlinux 0x46c5be22 clk_multiplier_ops -EXPORT_SYMBOL_GPL vmlinux 0x46dd1a9b __get_task_comm -EXPORT_SYMBOL_GPL vmlinux 0x46e03611 power_supply_put -EXPORT_SYMBOL_GPL vmlinux 0x46e3911b devfreq_event_reset_event -EXPORT_SYMBOL_GPL vmlinux 0x46e67729 pwmchip_remove -EXPORT_SYMBOL_GPL vmlinux 0x46e8641e edac_pci_alloc_ctl_info -EXPORT_SYMBOL_GPL vmlinux 0x46ef6e15 gpiod_get_array -EXPORT_SYMBOL_GPL vmlinux 0x46f42be0 devlink_fmsg_u8_put -EXPORT_SYMBOL_GPL vmlinux 0x46fc8ac5 fscrypt_set_context -EXPORT_SYMBOL_GPL vmlinux 0x46fd54d3 component_bind_all -EXPORT_SYMBOL_GPL vmlinux 0x4702cd2a dev_pm_opp_remove_all_dynamic -EXPORT_SYMBOL_GPL vmlinux 0x47229b5c gpio_request -EXPORT_SYMBOL_GPL vmlinux 0x47301dc4 proc_create_net_data -EXPORT_SYMBOL_GPL vmlinux 0x473bf70e bind_interdomain_evtchn_to_irqhandler_lateeoi -EXPORT_SYMBOL_GPL vmlinux 0x4761f17c register_netevent_notifier -EXPORT_SYMBOL_GPL vmlinux 0x47624796 cpufreq_policy_transition_delay_us -EXPORT_SYMBOL_GPL vmlinux 0x476cc0ab max8997_bulk_write -EXPORT_SYMBOL_GPL vmlinux 0x47807c1e of_pwm_xlate_with_flags -EXPORT_SYMBOL_GPL vmlinux 0x47824825 umd_cleanup_helper -EXPORT_SYMBOL_GPL vmlinux 0x47848ffe proc_get_parent_data -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 0x47956531 alarm_forward -EXPORT_SYMBOL_GPL vmlinux 0x479f7d4b clk_bulk_disable -EXPORT_SYMBOL_GPL vmlinux 0x47a29a31 devm_bitmap_zalloc -EXPORT_SYMBOL_GPL vmlinux 0x47aad3b9 have_governor_per_policy -EXPORT_SYMBOL_GPL vmlinux 0x47bbea40 ata_host_init -EXPORT_SYMBOL_GPL vmlinux 0x47bef885 phy_pm_runtime_allow -EXPORT_SYMBOL_GPL vmlinux 0x47c8db2e devlink_port_register -EXPORT_SYMBOL_GPL vmlinux 0x47d0eea2 acpi_lpat_temp_to_raw -EXPORT_SYMBOL_GPL vmlinux 0x47d0fd7e usb_unlink_anchored_urbs -EXPORT_SYMBOL_GPL vmlinux 0x47de0dc7 clk_unregister_mux -EXPORT_SYMBOL_GPL vmlinux 0x47f4e571 dev_forward_skb -EXPORT_SYMBOL_GPL vmlinux 0x47f6912f dm_disk -EXPORT_SYMBOL_GPL vmlinux 0x480305ca kmsg_dump_rewind -EXPORT_SYMBOL_GPL vmlinux 0x4804b722 crypto_shash_digest -EXPORT_SYMBOL_GPL vmlinux 0x4815aa79 dev_pm_opp_cpumask_remove_table -EXPORT_SYMBOL_GPL vmlinux 0x48170bda ata_acpi_stm -EXPORT_SYMBOL_GPL vmlinux 0x481f9b7d mpi_mulm -EXPORT_SYMBOL_GPL vmlinux 0x4820631c device_remove_software_node -EXPORT_SYMBOL_GPL vmlinux 0x48261dc7 ip6_route_lookup -EXPORT_SYMBOL_GPL vmlinux 0x4828e77b acpi_scan_lock_acquire -EXPORT_SYMBOL_GPL vmlinux 0x482ea309 klist_iter_init_node -EXPORT_SYMBOL_GPL vmlinux 0x483fd70d gpiochip_populate_parent_fwspec_twocell -EXPORT_SYMBOL_GPL vmlinux 0x4843a748 qman_portals_probed -EXPORT_SYMBOL_GPL vmlinux 0x4846bd4e rio_mport_class -EXPORT_SYMBOL_GPL vmlinux 0x484790b4 cpufreq_unregister_governor -EXPORT_SYMBOL_GPL vmlinux 0x48534215 crypto_stats_akcipher_encrypt -EXPORT_SYMBOL_GPL vmlinux 0x48643da8 device_add_software_node -EXPORT_SYMBOL_GPL vmlinux 0x486c87e9 kernfs_path_from_node -EXPORT_SYMBOL_GPL vmlinux 0x486dedc3 ghes_unregister_vendor_record_notifier -EXPORT_SYMBOL_GPL vmlinux 0x487170ec efivar_entry_delete -EXPORT_SYMBOL_GPL vmlinux 0x48786e2f efivar_entry_get -EXPORT_SYMBOL_GPL vmlinux 0x4890e2ae blk_mq_freeze_queue_wait_timeout -EXPORT_SYMBOL_GPL vmlinux 0x4894d6ff phy_pm_runtime_get_sync -EXPORT_SYMBOL_GPL vmlinux 0x489a983d virtqueue_enable_cb_delayed -EXPORT_SYMBOL_GPL vmlinux 0x489db453 tcp_bpf_update_proto -EXPORT_SYMBOL_GPL vmlinux 0x48a3a923 pkcs7_get_content_data -EXPORT_SYMBOL_GPL vmlinux 0x48a3d20b mctrl_gpio_get -EXPORT_SYMBOL_GPL vmlinux 0x48ad62e7 usb_get_maximum_ssp_rate -EXPORT_SYMBOL_GPL vmlinux 0x48adf297 tcp_unregister_ulp -EXPORT_SYMBOL_GPL vmlinux 0x48bf21b8 badblocks_store -EXPORT_SYMBOL_GPL vmlinux 0x48c32847 __SCK__tp_func_sched_util_est_se_tp -EXPORT_SYMBOL_GPL vmlinux 0x48c3ab7c sock_diag_register -EXPORT_SYMBOL_GPL vmlinux 0x48f49400 apei_hest_parse -EXPORT_SYMBOL_GPL vmlinux 0x48f806f8 crypto_grab_shash -EXPORT_SYMBOL_GPL vmlinux 0x49003bb8 gpiochip_populate_parent_fwspec_fourcell -EXPORT_SYMBOL_GPL vmlinux 0x491c5730 fib_new_table -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 0x493b2083 alarm_expires_remaining -EXPORT_SYMBOL_GPL vmlinux 0x49469424 replace_page_cache_page -EXPORT_SYMBOL_GPL vmlinux 0x49608959 migrate_disable -EXPORT_SYMBOL_GPL vmlinux 0x49615447 pci_load_and_free_saved_state -EXPORT_SYMBOL_GPL vmlinux 0x49624961 xdp_attachment_setup -EXPORT_SYMBOL_GPL vmlinux 0x49672a60 usb_hcd_pci_pm_ops -EXPORT_SYMBOL_GPL vmlinux 0x497fe556 subsys_interface_unregister -EXPORT_SYMBOL_GPL vmlinux 0x4980eddc securityfs_create_dir -EXPORT_SYMBOL_GPL vmlinux 0x49829191 task_cgroup_path -EXPORT_SYMBOL_GPL vmlinux 0x49870220 __xenbus_register_frontend -EXPORT_SYMBOL_GPL vmlinux 0x4987390b dev_pm_qos_add_notifier -EXPORT_SYMBOL_GPL vmlinux 0x498c8f67 metadata_dst_alloc -EXPORT_SYMBOL_GPL vmlinux 0x499043d3 crypto_init_queue -EXPORT_SYMBOL_GPL vmlinux 0x49944fb6 ata_bmdma_port_start32 -EXPORT_SYMBOL_GPL vmlinux 0x49b1d9ca _copy_from_iter_flushcache -EXPORT_SYMBOL_GPL vmlinux 0x49b70505 cleanup_srcu_struct -EXPORT_SYMBOL_GPL vmlinux 0x49b7c1ec ata_bmdma32_port_ops -EXPORT_SYMBOL_GPL vmlinux 0x49c8e81d of_get_phy_mode -EXPORT_SYMBOL_GPL vmlinux 0x49cd22fb of_icc_xlate_onecell -EXPORT_SYMBOL_GPL vmlinux 0x49cd25ed alloc_workqueue -EXPORT_SYMBOL_GPL vmlinux 0x49d593be serdev_device_get_tiocm -EXPORT_SYMBOL_GPL vmlinux 0x49d93e1d pm_generic_restore -EXPORT_SYMBOL_GPL vmlinux 0x49e96999 cond_synchronize_rcu -EXPORT_SYMBOL_GPL vmlinux 0x49eeed90 iomap_releasepage -EXPORT_SYMBOL_GPL vmlinux 0x49fb66d3 do_take_over_console -EXPORT_SYMBOL_GPL vmlinux 0x4a17ed66 sysrq_mask -EXPORT_SYMBOL_GPL vmlinux 0x4a1b4a54 dw_pcie_read_dbi -EXPORT_SYMBOL_GPL vmlinux 0x4a1b76be xenbus_alloc_evtchn -EXPORT_SYMBOL_GPL vmlinux 0x4a1e62ea mtk_pinconf_drive_get_raw -EXPORT_SYMBOL_GPL vmlinux 0x4a251c0e __hwspin_trylock -EXPORT_SYMBOL_GPL vmlinux 0x4a420d09 acpi_bus_detach_private_data -EXPORT_SYMBOL_GPL vmlinux 0x4a4b6368 xhci_suspend -EXPORT_SYMBOL_GPL vmlinux 0x4a59d8c9 md_account_bio -EXPORT_SYMBOL_GPL vmlinux 0x4a5d8a09 regulator_bulk_disable -EXPORT_SYMBOL_GPL vmlinux 0x4a64b05d blk_abort_request -EXPORT_SYMBOL_GPL vmlinux 0x4a668dc2 regmap_fields_read -EXPORT_SYMBOL_GPL vmlinux 0x4ac0562f fsnotify_add_mark -EXPORT_SYMBOL_GPL vmlinux 0x4acd307b pci_enable_pasid -EXPORT_SYMBOL_GPL vmlinux 0x4ad36f22 crypto_register_skcipher -EXPORT_SYMBOL_GPL vmlinux 0x4ad73e5e vring_del_virtqueue -EXPORT_SYMBOL_GPL vmlinux 0x4ad9139b xfrm_output -EXPORT_SYMBOL_GPL vmlinux 0x4ae4f340 __traceiter_io_page_fault -EXPORT_SYMBOL_GPL vmlinux 0x4b0b73fa __ata_ehi_push_desc -EXPORT_SYMBOL_GPL vmlinux 0x4b22005e badrange_init -EXPORT_SYMBOL_GPL vmlinux 0x4b2be4cf fsl_mc_allocate_irqs -EXPORT_SYMBOL_GPL vmlinux 0x4b51f74c ata_xfer_mode2mask -EXPORT_SYMBOL_GPL vmlinux 0x4b62c39f edac_pci_del_device -EXPORT_SYMBOL_GPL vmlinux 0x4b6f3be9 dma_buf_vunmap -EXPORT_SYMBOL_GPL vmlinux 0x4b8b2c59 crypto_req_done -EXPORT_SYMBOL_GPL vmlinux 0x4b925fa9 clk_hw_register_composite -EXPORT_SYMBOL_GPL vmlinux 0x4b931968 xen_features -EXPORT_SYMBOL_GPL vmlinux 0x4ba62c93 reset_controller_unregister -EXPORT_SYMBOL_GPL vmlinux 0x4bba81e0 nvmem_cell_read_u32 -EXPORT_SYMBOL_GPL vmlinux 0x4bc04a7f fat_attach -EXPORT_SYMBOL_GPL vmlinux 0x4bc2544c espintcp_push_skb -EXPORT_SYMBOL_GPL vmlinux 0x4bc8727f xen_balloon_init -EXPORT_SYMBOL_GPL vmlinux 0x4bce55cf seg6_do_srh_encap -EXPORT_SYMBOL_GPL vmlinux 0x4bcebca6 blk_ksm_register -EXPORT_SYMBOL_GPL vmlinux 0x4bd6f08b misc_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0x4bd77b6c tty_port_unregister_device -EXPORT_SYMBOL_GPL vmlinux 0x4be245f3 watchdog_unregister_device -EXPORT_SYMBOL_GPL vmlinux 0x4beaa7c6 iommu_set_fault_handler -EXPORT_SYMBOL_GPL vmlinux 0x4bf97de8 usb_acpi_port_lpm_incapable -EXPORT_SYMBOL_GPL vmlinux 0x4c0936f1 spi_add_device -EXPORT_SYMBOL_GPL vmlinux 0x4c0f862d extcon_dev_unregister -EXPORT_SYMBOL_GPL vmlinux 0x4c111b09 gen_pool_get -EXPORT_SYMBOL_GPL vmlinux 0x4c2c0ea7 evtchn_make_refcounted -EXPORT_SYMBOL_GPL vmlinux 0x4c2dc310 sysfs_remove_groups -EXPORT_SYMBOL_GPL vmlinux 0x4c315872 btree_merge -EXPORT_SYMBOL_GPL vmlinux 0x4c43af49 __fscrypt_prepare_lookup -EXPORT_SYMBOL_GPL vmlinux 0x4c51d1ab blocking_notifier_chain_register -EXPORT_SYMBOL_GPL vmlinux 0x4c549b36 __traceiter_xhci_dbg_quirks -EXPORT_SYMBOL_GPL vmlinux 0x4c68ee1c inet_csk_route_child_sock -EXPORT_SYMBOL_GPL vmlinux 0x4c6965b5 nvdimm_bus_add_badrange -EXPORT_SYMBOL_GPL vmlinux 0x4c6aed5a ahci_platform_disable_phys -EXPORT_SYMBOL_GPL vmlinux 0x4c6b15f5 pci_hp_deregister -EXPORT_SYMBOL_GPL vmlinux 0x4c7a2b50 ata_qc_get_active -EXPORT_SYMBOL_GPL vmlinux 0x4c8adfe1 hv_root_partition -EXPORT_SYMBOL_GPL vmlinux 0x4c8f5cb1 scmi_driver_register -EXPORT_SYMBOL_GPL vmlinux 0x4c9fa919 inet_send_prepare -EXPORT_SYMBOL_GPL vmlinux 0x4cb26bc2 led_blink_set_oneshot -EXPORT_SYMBOL_GPL vmlinux 0x4cb27100 ktime_get_snapshot -EXPORT_SYMBOL_GPL vmlinux 0x4cb423bd devlink_param_driverinit_value_get -EXPORT_SYMBOL_GPL vmlinux 0x4cb5a8d2 meson_a1_parse_dt_extra -EXPORT_SYMBOL_GPL vmlinux 0x4cb81fda __SCK__tp_func_wbc_writepage -EXPORT_SYMBOL_GPL vmlinux 0x4cc210a0 __wake_up_locked_key_bookmark -EXPORT_SYMBOL_GPL vmlinux 0x4cdcfda0 rio_route_clr_table -EXPORT_SYMBOL_GPL vmlinux 0x4cee4cb6 of_usb_get_phy_mode -EXPORT_SYMBOL_GPL vmlinux 0x4d0015e2 cpu_hotplug_disable -EXPORT_SYMBOL_GPL vmlinux 0x4d0263e4 init_user_ns -EXPORT_SYMBOL_GPL vmlinux 0x4d0332c8 efivars_unregister -EXPORT_SYMBOL_GPL vmlinux 0x4d0f9b6e __devm_alloc_percpu -EXPORT_SYMBOL_GPL vmlinux 0x4d1d692e uprobe_register_refctr -EXPORT_SYMBOL_GPL vmlinux 0x4d2b8290 xenbus_watch_path -EXPORT_SYMBOL_GPL vmlinux 0x4d3a0696 __SCK__tp_func_rpm_idle -EXPORT_SYMBOL_GPL vmlinux 0x4d3f4e3d regulator_set_bypass_regmap -EXPORT_SYMBOL_GPL vmlinux 0x4d478b9c alarm_init -EXPORT_SYMBOL_GPL vmlinux 0x4d4d7b79 blk_mq_map_queues -EXPORT_SYMBOL_GPL vmlinux 0x4d56c061 blkdev_nr_zones -EXPORT_SYMBOL_GPL vmlinux 0x4d6d0bbc iommu_group_ref_get -EXPORT_SYMBOL_GPL vmlinux 0x4d6eeaab devm_create_dev_dax -EXPORT_SYMBOL_GPL vmlinux 0x4d7272e4 migrate_enable -EXPORT_SYMBOL_GPL vmlinux 0x4d7fbc6a sock_diag_destroy -EXPORT_SYMBOL_GPL vmlinux 0x4d83c710 k3_udma_glue_tdown_tx_chn -EXPORT_SYMBOL_GPL vmlinux 0x4d8c9c93 spi_mem_adjust_op_size -EXPORT_SYMBOL_GPL vmlinux 0x4d95d6d1 memcpy_flushcache -EXPORT_SYMBOL_GPL vmlinux 0x4d9f58ac __pm_runtime_set_status -EXPORT_SYMBOL_GPL vmlinux 0x4dae16e4 i2c_put_dma_safe_msg_buf -EXPORT_SYMBOL_GPL vmlinux 0x4dae5f65 pm_genpd_remove_device -EXPORT_SYMBOL_GPL vmlinux 0x4db54f6b ethnl_cable_test_pulse -EXPORT_SYMBOL_GPL vmlinux 0x4dd9d14d cn_netlink_send_mult -EXPORT_SYMBOL_GPL vmlinux 0x4ddb5db0 fsl_mc_bus_dpaiop_type -EXPORT_SYMBOL_GPL vmlinux 0x4dddaa0d crypto_alg_sem -EXPORT_SYMBOL_GPL vmlinux 0x4de17ab3 usb_state_string -EXPORT_SYMBOL_GPL vmlinux 0x4df70b1a rio_unregister_mport -EXPORT_SYMBOL_GPL vmlinux 0x4df86ee1 kvm_arch_ptp_get_crosststamp -EXPORT_SYMBOL_GPL vmlinux 0x4e065480 debugfs_lookup -EXPORT_SYMBOL_GPL vmlinux 0x4e068766 vfs_write -EXPORT_SYMBOL_GPL vmlinux 0x4e10f10a __kernel_write -EXPORT_SYMBOL_GPL vmlinux 0x4e128bb4 bdi_dev_name -EXPORT_SYMBOL_GPL vmlinux 0x4e17c613 ata_sff_queue_delayed_work -EXPORT_SYMBOL_GPL vmlinux 0x4e1d0927 skcipher_walk_done -EXPORT_SYMBOL_GPL vmlinux 0x4e1e49f1 receive_fd -EXPORT_SYMBOL_GPL vmlinux 0x4e284baf pci_msi_unmask_irq -EXPORT_SYMBOL_GPL vmlinux 0x4e5d6f49 usb_root_hub_lost_power -EXPORT_SYMBOL_GPL vmlinux 0x4e620ef0 pci_vfs_assigned -EXPORT_SYMBOL_GPL vmlinux 0x4e6ff6a1 rtc_update_irq -EXPORT_SYMBOL_GPL vmlinux 0x4e715fcd usb_driver_set_configuration -EXPORT_SYMBOL_GPL vmlinux 0x4e74878e __tracepoint_devlink_hwerr -EXPORT_SYMBOL_GPL vmlinux 0x4e8c693e pinmux_generic_get_function -EXPORT_SYMBOL_GPL vmlinux 0x4e9e1877 inverse_translate -EXPORT_SYMBOL_GPL vmlinux 0x4ea69967 wbc_attach_and_unlock_inode -EXPORT_SYMBOL_GPL vmlinux 0x4eaaf565 sysfs_remove_file_from_group -EXPORT_SYMBOL_GPL vmlinux 0x4eac5fc1 cpu_mitigations_auto_nosmt -EXPORT_SYMBOL_GPL vmlinux 0x4eb39d4e __tracepoint_tcp_bad_csum -EXPORT_SYMBOL_GPL vmlinux 0x4ec351ed dma_buf_map_attachment -EXPORT_SYMBOL_GPL vmlinux 0x4ed88fcb ata_sff_postreset -EXPORT_SYMBOL_GPL vmlinux 0x4ee0e8d2 __percpu_init_rwsem -EXPORT_SYMBOL_GPL vmlinux 0x4ee50284 crypto_stats_kpp_compute_shared_secret -EXPORT_SYMBOL_GPL vmlinux 0x4ee65ea4 ata_pci_bmdma_init_one -EXPORT_SYMBOL_GPL vmlinux 0x4ee95927 of_phy_provider_unregister -EXPORT_SYMBOL_GPL vmlinux 0x4eea355e ipv4_sk_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0x4eeb6f23 kill_device -EXPORT_SYMBOL_GPL vmlinux 0x4ef5bcf4 perf_swevent_get_recursion_context -EXPORT_SYMBOL_GPL vmlinux 0x4efcf021 mpi_normalize -EXPORT_SYMBOL_GPL vmlinux 0x4eff6c1a ti_sci_inta_msi_create_irq_domain -EXPORT_SYMBOL_GPL vmlinux 0x4f0c7a39 pci_epc_stop -EXPORT_SYMBOL_GPL vmlinux 0x4f146a8e gpiochip_find -EXPORT_SYMBOL_GPL vmlinux 0x4f1b8405 ip_route_output_flow -EXPORT_SYMBOL_GPL vmlinux 0x4f2c996d kmsg_dump_get_line -EXPORT_SYMBOL_GPL vmlinux 0x4f2e358a dax_layout_busy_page -EXPORT_SYMBOL_GPL vmlinux 0x4f32e7d0 extcon_register_notifier_all -EXPORT_SYMBOL_GPL vmlinux 0x4f359782 regulator_set_soft_start_regmap -EXPORT_SYMBOL_GPL vmlinux 0x4f49db69 xhci_update_hub_device -EXPORT_SYMBOL_GPL vmlinux 0x4f56f9b8 fb_deferred_io_open -EXPORT_SYMBOL_GPL vmlinux 0x4f598fc3 ehci_resume -EXPORT_SYMBOL_GPL vmlinux 0x4f5e0ff4 regulator_set_voltage_time_sel -EXPORT_SYMBOL_GPL vmlinux 0x4f6312d5 crypto_alloc_kpp -EXPORT_SYMBOL_GPL vmlinux 0x4f661270 acpi_subsys_freeze -EXPORT_SYMBOL_GPL vmlinux 0x4f6a07fe show_rcu_gp_kthreads -EXPORT_SYMBOL_GPL vmlinux 0x4f6accad irq_domain_free_fwnode -EXPORT_SYMBOL_GPL vmlinux 0x4f6f9f87 skb_gso_validate_network_len -EXPORT_SYMBOL_GPL vmlinux 0x4f70ea15 crypto_unregister_ahash -EXPORT_SYMBOL_GPL vmlinux 0x4f72a987 uart_parse_options -EXPORT_SYMBOL_GPL vmlinux 0x4f81f411 setfl -EXPORT_SYMBOL_GPL vmlinux 0x4f98d766 cpu_pm_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x4fc16310 rio_register_scan -EXPORT_SYMBOL_GPL vmlinux 0x4fc6b1bb exportfs_decode_fh_raw -EXPORT_SYMBOL_GPL vmlinux 0x4fcba1df devm_namespace_disable -EXPORT_SYMBOL_GPL vmlinux 0x4fdbaf28 power_supply_external_power_changed -EXPORT_SYMBOL_GPL vmlinux 0x4fdc945d sata_deb_timing_normal -EXPORT_SYMBOL_GPL vmlinux 0x4fe1d46d __page_mapcount -EXPORT_SYMBOL_GPL vmlinux 0x4fe1eddf unregister_netevent_notifier -EXPORT_SYMBOL_GPL vmlinux 0x4fee256e ipv6_find_tlv -EXPORT_SYMBOL_GPL vmlinux 0x5003a8fd to_nd_desc -EXPORT_SYMBOL_GPL vmlinux 0x5004fea5 rhashtable_walk_start_check -EXPORT_SYMBOL_GPL vmlinux 0x500c768c apei_exec_read_register -EXPORT_SYMBOL_GPL vmlinux 0x5010193c dw_pcie_host_deinit -EXPORT_SYMBOL_GPL vmlinux 0x5011137a ehci_reset -EXPORT_SYMBOL_GPL vmlinux 0x5013ad3f noop_invalidatepage -EXPORT_SYMBOL_GPL vmlinux 0x5015bc09 fwnode_property_match_string -EXPORT_SYMBOL_GPL vmlinux 0x501a3732 tty_port_tty_wakeup -EXPORT_SYMBOL_GPL vmlinux 0x5026585c xen_irq_from_gsi -EXPORT_SYMBOL_GPL vmlinux 0x502ae0d2 virtio_device_restore -EXPORT_SYMBOL_GPL vmlinux 0x504e2747 spi_res_alloc -EXPORT_SYMBOL_GPL vmlinux 0x50500008 regulator_get_voltage -EXPORT_SYMBOL_GPL vmlinux 0x505e5e2f ip_fib_metrics_init -EXPORT_SYMBOL_GPL vmlinux 0x506684fa virtqueue_get_avail_addr -EXPORT_SYMBOL_GPL vmlinux 0x50839f48 ata_sff_tf_load -EXPORT_SYMBOL_GPL vmlinux 0x5091b823 ring_buffer_read_start -EXPORT_SYMBOL_GPL vmlinux 0x50953c49 pci_scan_child_bus -EXPORT_SYMBOL_GPL vmlinux 0x509e9d94 __raw_v4_lookup -EXPORT_SYMBOL_GPL vmlinux 0x50b1bac1 of_platform_device_destroy -EXPORT_SYMBOL_GPL vmlinux 0x50b5f90e pwm_adjust_config -EXPORT_SYMBOL_GPL vmlinux 0x50bdc6ef ahci_platform_disable_resources -EXPORT_SYMBOL_GPL vmlinux 0x50c0d96b ata_sas_port_alloc -EXPORT_SYMBOL_GPL vmlinux 0x50c2ae54 rpi_firmware_property -EXPORT_SYMBOL_GPL vmlinux 0x50c61940 __context_tracking_exit -EXPORT_SYMBOL_GPL vmlinux 0x50e7193a __i2c_first_dynamic_bus_num -EXPORT_SYMBOL_GPL vmlinux 0x50f03983 crypto_unregister_acomp -EXPORT_SYMBOL_GPL vmlinux 0x50f58af7 devlink_resource_size_get -EXPORT_SYMBOL_GPL vmlinux 0x50fad434 round_jiffies_up -EXPORT_SYMBOL_GPL vmlinux 0x5106fb6c __vfs_setxattr_locked -EXPORT_SYMBOL_GPL vmlinux 0x51073c94 hrtimer_sleeper_start_expires -EXPORT_SYMBOL_GPL vmlinux 0x510c84f4 crypto_enqueue_request -EXPORT_SYMBOL_GPL vmlinux 0x510d5c39 gpiochip_irq_domain_activate -EXPORT_SYMBOL_GPL vmlinux 0x510dc406 __dev_change_net_namespace -EXPORT_SYMBOL_GPL vmlinux 0x511bda36 devm_acpi_dma_controller_free -EXPORT_SYMBOL_GPL vmlinux 0x512b5ee9 devm_gpiod_get_index_optional -EXPORT_SYMBOL_GPL vmlinux 0x512dda9f dev_pm_opp_put_prop_name -EXPORT_SYMBOL_GPL vmlinux 0x5130710b nvmem_device_find -EXPORT_SYMBOL_GPL vmlinux 0x513306cc led_trigger_register -EXPORT_SYMBOL_GPL vmlinux 0x5137714f pci_reset_function -EXPORT_SYMBOL_GPL vmlinux 0x51390c96 rcu_barrier_tasks_rude -EXPORT_SYMBOL_GPL vmlinux 0x515b390f __SCK__tp_func_remove_device_from_group -EXPORT_SYMBOL_GPL vmlinux 0x515c7170 pci_load_saved_state -EXPORT_SYMBOL_GPL vmlinux 0x5162c6ca devm_gpiod_get_from_of_node -EXPORT_SYMBOL_GPL vmlinux 0x5163bdc3 tps6586x_reads -EXPORT_SYMBOL_GPL vmlinux 0x5169344d k3_udma_glue_pop_tx_chn -EXPORT_SYMBOL_GPL vmlinux 0x5187ac4b xen_store_evtchn -EXPORT_SYMBOL_GPL vmlinux 0x5188a332 page_endio -EXPORT_SYMBOL_GPL vmlinux 0x51991b38 mtk_mutex_enable -EXPORT_SYMBOL_GPL vmlinux 0x51a348cc usb_role_switch_set_drvdata -EXPORT_SYMBOL_GPL vmlinux 0x51a8f316 rio_release_inb_mbox -EXPORT_SYMBOL_GPL vmlinux 0x51ad07dd tegra210_plle_hw_sequence_start -EXPORT_SYMBOL_GPL vmlinux 0x51b5b71a pwm_put -EXPORT_SYMBOL_GPL vmlinux 0x51b84b74 da903x_read -EXPORT_SYMBOL_GPL vmlinux 0x51d2b9ec unregister_hw_breakpoint -EXPORT_SYMBOL_GPL vmlinux 0x51d63182 ata_std_sched_eh -EXPORT_SYMBOL_GPL vmlinux 0x51df9302 genphy_c45_pma_resume -EXPORT_SYMBOL_GPL vmlinux 0x51edb9c0 __pci_hp_initialize -EXPORT_SYMBOL_GPL vmlinux 0x51f01458 of_pci_find_child_device -EXPORT_SYMBOL_GPL vmlinux 0x51fc9a6d xenmem_reservation_decrease -EXPORT_SYMBOL_GPL vmlinux 0x5208b8b9 query_asymmetric_key -EXPORT_SYMBOL_GPL vmlinux 0x521217cc dev_pm_qos_remove_request -EXPORT_SYMBOL_GPL vmlinux 0x52252316 clk_unregister_fixed_rate -EXPORT_SYMBOL_GPL vmlinux 0x52431348 xenbus_transaction_start -EXPORT_SYMBOL_GPL vmlinux 0x5244ce07 sata_link_resume -EXPORT_SYMBOL_GPL vmlinux 0x525d0aa3 trace_seq_printf -EXPORT_SYMBOL_GPL vmlinux 0x52784fec fat_update_time -EXPORT_SYMBOL_GPL vmlinux 0x52905da9 regulator_register -EXPORT_SYMBOL_GPL vmlinux 0x52b1e3c7 pci_flags -EXPORT_SYMBOL_GPL vmlinux 0x52b38b01 do_splice_to -EXPORT_SYMBOL_GPL vmlinux 0x52c35e83 call_rcu_tasks_trace -EXPORT_SYMBOL_GPL vmlinux 0x52ce2057 hv_setup_crash_handler -EXPORT_SYMBOL_GPL vmlinux 0x52d323e1 xfrm_audit_state_notfound -EXPORT_SYMBOL_GPL vmlinux 0x52d54fce devlink_info_version_stored_put -EXPORT_SYMBOL_GPL vmlinux 0x52fdf249 pci_bus_resource_n -EXPORT_SYMBOL_GPL vmlinux 0x52ff28e2 of_phandle_iterator_next -EXPORT_SYMBOL_GPL vmlinux 0x53012944 __tracepoint_rpm_resume -EXPORT_SYMBOL_GPL vmlinux 0x53017512 irq_set_default_host -EXPORT_SYMBOL_GPL vmlinux 0x5306c99e ata_sff_thaw -EXPORT_SYMBOL_GPL vmlinux 0x5321d3d6 sbitmap_get -EXPORT_SYMBOL_GPL vmlinux 0x532b90b5 kprobe_event_cmd_init -EXPORT_SYMBOL_GPL vmlinux 0x53348872 devlink_port_params_unregister -EXPORT_SYMBOL_GPL vmlinux 0x5358864e devlink_fmsg_binary_pair_nest_end -EXPORT_SYMBOL_GPL vmlinux 0x535f788e xa_delete_node -EXPORT_SYMBOL_GPL vmlinux 0x536822e3 sfp_module_insert -EXPORT_SYMBOL_GPL vmlinux 0x537252cf __SCK__tp_func_rpm_return_int -EXPORT_SYMBOL_GPL vmlinux 0x5375a986 rhashtable_free_and_destroy -EXPORT_SYMBOL_GPL vmlinux 0x537baeac gpiod_count -EXPORT_SYMBOL_GPL vmlinux 0x53826264 extcon_get_state -EXPORT_SYMBOL_GPL vmlinux 0x538307e1 invalidate_inode_pages2 -EXPORT_SYMBOL_GPL vmlinux 0x538d073d phy_duplex_to_str -EXPORT_SYMBOL_GPL vmlinux 0x5391f2c7 gnttab_end_foreign_access_ref -EXPORT_SYMBOL_GPL vmlinux 0x5395fca0 irq_domain_xlate_onecell -EXPORT_SYMBOL_GPL vmlinux 0x53b08442 get_governor_parent_kobj -EXPORT_SYMBOL_GPL vmlinux 0x53b6f0c8 crypto_unregister_kpp -EXPORT_SYMBOL_GPL vmlinux 0x53be9514 meson_pmx_get_funcs_count -EXPORT_SYMBOL_GPL vmlinux 0x53c089f5 property_entries_dup -EXPORT_SYMBOL_GPL vmlinux 0x53d7c01e __traceiter_cpu_idle -EXPORT_SYMBOL_GPL vmlinux 0x53e2d250 pinctrl_add_gpio_ranges -EXPORT_SYMBOL_GPL vmlinux 0x53f786e0 __traceiter_block_rq_insert -EXPORT_SYMBOL_GPL vmlinux 0x54155717 clk_gate_ops -EXPORT_SYMBOL_GPL vmlinux 0x541bd60a irq_work_run -EXPORT_SYMBOL_GPL vmlinux 0x541d7fa9 pci_epc_write_header -EXPORT_SYMBOL_GPL vmlinux 0x54215db5 visitor64 -EXPORT_SYMBOL_GPL vmlinux 0x54298cb1 ata_eh_freeze_port -EXPORT_SYMBOL_GPL vmlinux 0x542ff341 noop_backing_dev_info -EXPORT_SYMBOL_GPL vmlinux 0x543a3035 regulator_bulk_enable -EXPORT_SYMBOL_GPL vmlinux 0x543fb070 of_pci_address_to_resource -EXPORT_SYMBOL_GPL vmlinux 0x545025e5 nvmem_add_cell_table -EXPORT_SYMBOL_GPL vmlinux 0x546c6429 ahci_platform_init_host -EXPORT_SYMBOL_GPL vmlinux 0x547c7a4f pm_clk_runtime_resume -EXPORT_SYMBOL_GPL vmlinux 0x549525ef handle_nested_irq -EXPORT_SYMBOL_GPL vmlinux 0x54a25da2 qcom_smem_state_put -EXPORT_SYMBOL_GPL vmlinux 0x54aef562 regulator_map_voltage_linear -EXPORT_SYMBOL_GPL vmlinux 0x54af47d0 regmap_get_device -EXPORT_SYMBOL_GPL vmlinux 0x54b25653 __hvc_resize -EXPORT_SYMBOL_GPL vmlinux 0x54c2e0e9 serdev_device_remove -EXPORT_SYMBOL_GPL vmlinux 0x54cac809 sfp_bus_add_upstream -EXPORT_SYMBOL_GPL vmlinux 0x54d00ddd pci_get_dsn -EXPORT_SYMBOL_GPL vmlinux 0x54d963a6 nvdimm_provider_data -EXPORT_SYMBOL_GPL vmlinux 0x54f4ce60 dma_alloc_noncontiguous -EXPORT_SYMBOL_GPL vmlinux 0x54fbc4dd scsi_mode_select -EXPORT_SYMBOL_GPL vmlinux 0x550401a5 disk_force_media_change -EXPORT_SYMBOL_GPL vmlinux 0x5508fce5 spi_async -EXPORT_SYMBOL_GPL vmlinux 0x550f3e05 i2c_freq_mode_string -EXPORT_SYMBOL_GPL vmlinux 0x5518e8b0 devm_spi_mem_dirmap_destroy -EXPORT_SYMBOL_GPL vmlinux 0x5524f7f1 pci_ioremap_bar -EXPORT_SYMBOL_GPL vmlinux 0x552abe81 rt_mutex_trylock -EXPORT_SYMBOL_GPL vmlinux 0x552c1007 ata_link_abort -EXPORT_SYMBOL_GPL vmlinux 0x55339365 flush_delayed_fput -EXPORT_SYMBOL_GPL vmlinux 0x5538138f rio_release_outb_mbox -EXPORT_SYMBOL_GPL vmlinux 0x553b49a4 cpufreq_get_driver_data -EXPORT_SYMBOL_GPL vmlinux 0x55417264 unregister_vt_notifier -EXPORT_SYMBOL_GPL vmlinux 0x55437693 ip_route_output_key_hash -EXPORT_SYMBOL_GPL vmlinux 0x556e4390 clk_get_rate -EXPORT_SYMBOL_GPL vmlinux 0x557581c7 gpiod_get_index_optional -EXPORT_SYMBOL_GPL vmlinux 0x55784228 regmap_irq_get_virq -EXPORT_SYMBOL_GPL vmlinux 0x5591cbe4 pm_genpd_remove_subdomain -EXPORT_SYMBOL_GPL vmlinux 0x55a7c651 fat_add_entries -EXPORT_SYMBOL_GPL vmlinux 0x55bc1461 pci_bus_max_busnr -EXPORT_SYMBOL_GPL vmlinux 0x55bd608f iommu_sva_unbind_device -EXPORT_SYMBOL_GPL vmlinux 0x55c76a23 ksys_sync_helper -EXPORT_SYMBOL_GPL vmlinux 0x55c94e9b acpi_ec_add_query_handler -EXPORT_SYMBOL_GPL vmlinux 0x55c9880c zynqmp_pm_release_node -EXPORT_SYMBOL_GPL vmlinux 0x55d2eaa2 blk_queue_flag_test_and_set -EXPORT_SYMBOL_GPL vmlinux 0x55eecff4 bit_wait_io_timeout -EXPORT_SYMBOL_GPL vmlinux 0x56054c05 crypto_it_tab -EXPORT_SYMBOL_GPL vmlinux 0x560cb8cf devm_hwspin_lock_unregister -EXPORT_SYMBOL_GPL vmlinux 0x560e9e54 devlink_params_unpublish -EXPORT_SYMBOL_GPL vmlinux 0x56173654 pcap_set_ts_bits -EXPORT_SYMBOL_GPL vmlinux 0x561f7397 pci_enable_sriov -EXPORT_SYMBOL_GPL vmlinux 0x56256e8a orderly_poweroff -EXPORT_SYMBOL_GPL vmlinux 0x56310925 regulator_mode_to_status -EXPORT_SYMBOL_GPL vmlinux 0x5641485b tty_termios_encode_baud_rate -EXPORT_SYMBOL_GPL vmlinux 0x5654ab54 request_firmware_direct -EXPORT_SYMBOL_GPL vmlinux 0x5655fd16 usb_pipe_type_check -EXPORT_SYMBOL_GPL vmlinux 0x565de77c usb_control_msg -EXPORT_SYMBOL_GPL vmlinux 0x56702244 devm_of_icc_get -EXPORT_SYMBOL_GPL vmlinux 0x5671f82e crypto_register_templates -EXPORT_SYMBOL_GPL vmlinux 0x56748a87 iommu_dev_feature_enabled -EXPORT_SYMBOL_GPL vmlinux 0x56a24379 kill_dev_dax -EXPORT_SYMBOL_GPL vmlinux 0x56a7483e nf_checksum -EXPORT_SYMBOL_GPL vmlinux 0x56b0bdd0 ata_link_next -EXPORT_SYMBOL_GPL vmlinux 0x56b0d6c4 mtk_pinconf_adv_drive_set -EXPORT_SYMBOL_GPL vmlinux 0x56c2f875 dprc_setup -EXPORT_SYMBOL_GPL vmlinux 0x56d34bef mtk_eint_do_suspend -EXPORT_SYMBOL_GPL vmlinux 0x56d61dce context_tracking_enter -EXPORT_SYMBOL_GPL vmlinux 0x56da54f4 css_next_descendant_pre -EXPORT_SYMBOL_GPL vmlinux 0x56df2ae1 edac_device_handle_ce_count -EXPORT_SYMBOL_GPL vmlinux 0x56e9103b cpu_pm_enter -EXPORT_SYMBOL_GPL vmlinux 0x56fbb130 no_hash_pointers -EXPORT_SYMBOL_GPL vmlinux 0x56fc0218 platform_msi_domain_alloc_irqs -EXPORT_SYMBOL_GPL vmlinux 0x571fde38 ip6_pol_route -EXPORT_SYMBOL_GPL vmlinux 0x572205f4 __devm_spi_alloc_controller -EXPORT_SYMBOL_GPL vmlinux 0x5725f817 of_nvmem_cell_get -EXPORT_SYMBOL_GPL vmlinux 0x572b8c05 ata_std_qc_defer -EXPORT_SYMBOL_GPL vmlinux 0x572dbd68 __pci_epc_create -EXPORT_SYMBOL_GPL vmlinux 0x573b5453 ipv6_fixup_options -EXPORT_SYMBOL_GPL vmlinux 0x574609c5 apei_exec_write_register_value -EXPORT_SYMBOL_GPL vmlinux 0x57470494 ata_noop_qc_prep -EXPORT_SYMBOL_GPL vmlinux 0x5756cab0 skb_mpls_pop -EXPORT_SYMBOL_GPL vmlinux 0x575b0a44 regcache_cache_only -EXPORT_SYMBOL_GPL vmlinux 0x57719632 gnttab_grant_foreign_access -EXPORT_SYMBOL_GPL vmlinux 0x577a438a tegra210_clk_emc_detach -EXPORT_SYMBOL_GPL vmlinux 0x577b4e59 ahci_platform_enable_resources -EXPORT_SYMBOL_GPL vmlinux 0x578eeb4d hugetlb_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x57902573 debugfs_write_file_bool -EXPORT_SYMBOL_GPL vmlinux 0x5790e7a0 pci_unlock_rescan_remove -EXPORT_SYMBOL_GPL vmlinux 0x5791f7ef fat_setattr -EXPORT_SYMBOL_GPL vmlinux 0x57977f4c rio_del_mport_pw_handler -EXPORT_SYMBOL_GPL vmlinux 0x5798c976 gpiochip_add_pin_range -EXPORT_SYMBOL_GPL vmlinux 0x579cc0df ahci_port_resume -EXPORT_SYMBOL_GPL vmlinux 0x579e0bf5 rtnl_unregister_all -EXPORT_SYMBOL_GPL vmlinux 0x57bd9667 fscrypt_file_open -EXPORT_SYMBOL_GPL vmlinux 0x57d00394 tty_ldisc_deref -EXPORT_SYMBOL_GPL vmlinux 0x57d4050a xhci_get_endpoint_index -EXPORT_SYMBOL_GPL vmlinux 0x57d7eb8a perf_event_addr_filters_sync -EXPORT_SYMBOL_GPL vmlinux 0x57da33f0 ima_file_hash -EXPORT_SYMBOL_GPL vmlinux 0x57e112cc of_device_modalias -EXPORT_SYMBOL_GPL vmlinux 0x57e9a01c i2c_new_ancillary_device -EXPORT_SYMBOL_GPL vmlinux 0x57f140b4 tty_port_install -EXPORT_SYMBOL_GPL vmlinux 0x57f576b9 mpi_ec_curve_point -EXPORT_SYMBOL_GPL vmlinux 0x580ec438 __clocksource_update_freq_scale -EXPORT_SYMBOL_GPL vmlinux 0x581323d6 iomap_bmap -EXPORT_SYMBOL_GPL vmlinux 0x58176c96 __devm_of_phy_provider_register -EXPORT_SYMBOL_GPL vmlinux 0x5817e6d4 iommu_group_for_each_dev -EXPORT_SYMBOL_GPL vmlinux 0x581f1b14 vp_modern_generation -EXPORT_SYMBOL_GPL vmlinux 0x58276f93 cper_next_record_id -EXPORT_SYMBOL_GPL vmlinux 0x582b2d3b pm_generic_resume_early -EXPORT_SYMBOL_GPL vmlinux 0x5831e062 cpus_read_trylock -EXPORT_SYMBOL_GPL vmlinux 0x583ce364 cpufreq_driver_resolve_freq -EXPORT_SYMBOL_GPL vmlinux 0x584dee24 synth_event_create -EXPORT_SYMBOL_GPL vmlinux 0x585a8b1d __clk_hw_register_mux -EXPORT_SYMBOL_GPL vmlinux 0x5862a449 umd_unload_blob -EXPORT_SYMBOL_GPL vmlinux 0x5868aa88 invalidate_inode_pages2_range -EXPORT_SYMBOL_GPL vmlinux 0x586d1593 cdrom_multisession -EXPORT_SYMBOL_GPL vmlinux 0x5879a27d sfp_get_module_info -EXPORT_SYMBOL_GPL vmlinux 0x58901dd9 dev_pm_opp_init_cpufreq_table -EXPORT_SYMBOL_GPL vmlinux 0x58be3b1d virtqueue_notify -EXPORT_SYMBOL_GPL vmlinux 0x58c02efd devm_hwrng_unregister -EXPORT_SYMBOL_GPL vmlinux 0x58ceff78 skb_complete_wifi_ack -EXPORT_SYMBOL_GPL vmlinux 0x58db7b5d tps6586x_write -EXPORT_SYMBOL_GPL vmlinux 0x58def6ca sfp_module_remove -EXPORT_SYMBOL_GPL vmlinux 0x58e14f15 HYPERVISOR_event_channel_op -EXPORT_SYMBOL_GPL vmlinux 0x58e6f912 fib6_new_table -EXPORT_SYMBOL_GPL vmlinux 0x58ebe656 sk_detach_filter -EXPORT_SYMBOL_GPL vmlinux 0x58f76272 devm_pm_opp_set_regulators -EXPORT_SYMBOL_GPL vmlinux 0x5908c4ed devm_rtc_nvmem_register -EXPORT_SYMBOL_GPL vmlinux 0x59145308 tpm_chip_alloc -EXPORT_SYMBOL_GPL vmlinux 0x5919b68d mtk_pinconf_adv_pull_set -EXPORT_SYMBOL_GPL vmlinux 0x593e3444 regmap_register_patch -EXPORT_SYMBOL_GPL vmlinux 0x5954ee87 edac_mc_free -EXPORT_SYMBOL_GPL vmlinux 0x596986dd tcp_bpf_sendmsg_redir -EXPORT_SYMBOL_GPL vmlinux 0x596f33e0 skb_zerocopy_iter_dgram -EXPORT_SYMBOL_GPL vmlinux 0x597f6fb6 serial8250_em485_start_tx -EXPORT_SYMBOL_GPL vmlinux 0x59818e9f blkdev_ioctl -EXPORT_SYMBOL_GPL vmlinux 0x5986d190 kdb_printf -EXPORT_SYMBOL_GPL vmlinux 0x5987352c ip6_sk_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0x5988547c acpi_dma_request_slave_chan_by_index -EXPORT_SYMBOL_GPL vmlinux 0x59994c7d usb_put_hcd -EXPORT_SYMBOL_GPL vmlinux 0x59aa0407 fwnode_graph_get_remote_port_parent -EXPORT_SYMBOL_GPL vmlinux 0x59acebcf devm_free_pages -EXPORT_SYMBOL_GPL vmlinux 0x59b2adbf input_ff_effect_from_user -EXPORT_SYMBOL_GPL vmlinux 0x59ba4c99 cpu_latency_qos_request_active -EXPORT_SYMBOL_GPL vmlinux 0x59c43dc9 __traceiter_non_standard_event -EXPORT_SYMBOL_GPL vmlinux 0x59cc95c9 page_mkclean -EXPORT_SYMBOL_GPL vmlinux 0x59d77504 rhashtable_walk_exit -EXPORT_SYMBOL_GPL vmlinux 0x59f32720 mpi_subm -EXPORT_SYMBOL_GPL vmlinux 0x5a00fe4f of_hwspin_lock_get_id -EXPORT_SYMBOL_GPL vmlinux 0x5a01480d __inet_lookup_listener -EXPORT_SYMBOL_GPL vmlinux 0x5a035b1c perf_aux_output_begin -EXPORT_SYMBOL_GPL vmlinux 0x5a12dc59 wakeup_source_create -EXPORT_SYMBOL_GPL vmlinux 0x5a12e60c __SCK__tp_func_sched_update_nr_running_tp -EXPORT_SYMBOL_GPL vmlinux 0x5a1a330b of_mm_gpiochip_add_data -EXPORT_SYMBOL_GPL vmlinux 0x5a1d134a rcu_momentary_dyntick_idle -EXPORT_SYMBOL_GPL vmlinux 0x5a2cbbcd make_device_exclusive_range -EXPORT_SYMBOL_GPL vmlinux 0x5a3194e1 spi_res_release -EXPORT_SYMBOL_GPL vmlinux 0x5a4504e3 uart_try_toggle_sysrq -EXPORT_SYMBOL_GPL vmlinux 0x5a45b392 cpuidle_register -EXPORT_SYMBOL_GPL vmlinux 0x5a49dbc9 timerqueue_del -EXPORT_SYMBOL_GPL vmlinux 0x5a533ed9 blockdev_superblock -EXPORT_SYMBOL_GPL vmlinux 0x5a577b68 serdev_controller_add -EXPORT_SYMBOL_GPL vmlinux 0x5a6cdb52 nf_ct_zone_dflt -EXPORT_SYMBOL_GPL vmlinux 0x5a6daaaa dw_pcie_upconfig_setup -EXPORT_SYMBOL_GPL vmlinux 0x5a7807e9 powercap_unregister_zone -EXPORT_SYMBOL_GPL vmlinux 0x5a7bfe41 crypto_probing_notify -EXPORT_SYMBOL_GPL vmlinux 0x5a871266 sk_msg_is_readable -EXPORT_SYMBOL_GPL vmlinux 0x5a8b3a4e ncsi_stop_dev -EXPORT_SYMBOL_GPL vmlinux 0x5a8c8381 of_clk_add_provider -EXPORT_SYMBOL_GPL vmlinux 0x5a95aab0 btree_insert -EXPORT_SYMBOL_GPL vmlinux 0x5a96c005 kernfs_put -EXPORT_SYMBOL_GPL vmlinux 0x5a9ab777 crypto_shash_final -EXPORT_SYMBOL_GPL vmlinux 0x5aa70984 acpi_reduced_hardware -EXPORT_SYMBOL_GPL vmlinux 0x5ab09745 edac_get_owner -EXPORT_SYMBOL_GPL vmlinux 0x5ab69ac2 acpi_subsys_poweroff -EXPORT_SYMBOL_GPL vmlinux 0x5ab84269 crypto_alloc_shash -EXPORT_SYMBOL_GPL vmlinux 0x5ac908af ata_sff_drain_fifo -EXPORT_SYMBOL_GPL vmlinux 0x5ad184ca tty_ldisc_ref_wait -EXPORT_SYMBOL_GPL vmlinux 0x5aed3eb4 thermal_zone_of_sensor_unregister -EXPORT_SYMBOL_GPL vmlinux 0x5b055600 blk_mq_unfreeze_queue -EXPORT_SYMBOL_GPL vmlinux 0x5b0f6a52 __pci_reset_function_locked -EXPORT_SYMBOL_GPL vmlinux 0x5b1d5fd0 security_inode_permission -EXPORT_SYMBOL_GPL vmlinux 0x5b21ceff ring_buffer_iter_peek -EXPORT_SYMBOL_GPL vmlinux 0x5b24d834 sbitmap_queue_init_node -EXPORT_SYMBOL_GPL vmlinux 0x5b42c1db crypto_register_kpp -EXPORT_SYMBOL_GPL vmlinux 0x5b4a7900 crypto_shash_alg_has_setkey -EXPORT_SYMBOL_GPL vmlinux 0x5b54ea5f devlink_dpipe_entry_ctx_prepare -EXPORT_SYMBOL_GPL vmlinux 0x5b6b0329 swiotlb_max_segment -EXPORT_SYMBOL_GPL vmlinux 0x5b7aa790 led_classdev_register_ext -EXPORT_SYMBOL_GPL vmlinux 0x5b8ff019 __inet_inherit_port -EXPORT_SYMBOL_GPL vmlinux 0x5b92f554 sata_std_hardreset -EXPORT_SYMBOL_GPL vmlinux 0x5bb22907 of_mm_gpiochip_remove -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 0x5bdae35b usb_phy_roothub_set_mode -EXPORT_SYMBOL_GPL vmlinux 0x5bdbac4e rcu_unexpedite_gp -EXPORT_SYMBOL_GPL vmlinux 0x5bee4f4e led_stop_software_blink -EXPORT_SYMBOL_GPL vmlinux 0x5c0eaf31 acpi_dev_resource_interrupt -EXPORT_SYMBOL_GPL vmlinux 0x5c0f77ce HYPERVISOR_platform_op_raw -EXPORT_SYMBOL_GPL vmlinux 0x5c1d5ccd acpi_device_fix_up_power -EXPORT_SYMBOL_GPL vmlinux 0x5c2bcd37 bpf_warn_invalid_xdp_action -EXPORT_SYMBOL_GPL vmlinux 0x5c3bbd06 __SCK__tp_func_mc_event -EXPORT_SYMBOL_GPL vmlinux 0x5c3e075a usb_sg_init -EXPORT_SYMBOL_GPL vmlinux 0x5c447b4b acpi_storage_d3 -EXPORT_SYMBOL_GPL vmlinux 0x5c4a8dca crypto_inst_setname -EXPORT_SYMBOL_GPL vmlinux 0x5c4b44a9 bgmac_enet_remove -EXPORT_SYMBOL_GPL vmlinux 0x5c5570ab of_property_read_string -EXPORT_SYMBOL_GPL vmlinux 0x5c55cee3 governor_sysfs_ops -EXPORT_SYMBOL_GPL vmlinux 0x5c5a1b16 tick_broadcast_control -EXPORT_SYMBOL_GPL vmlinux 0x5c5c6826 phy_10gbit_full_features -EXPORT_SYMBOL_GPL vmlinux 0x5c65cdfc rockchip_clk_register_ddrclk -EXPORT_SYMBOL_GPL vmlinux 0x5c6692e1 device_remove_properties -EXPORT_SYMBOL_GPL vmlinux 0x5c6c2171 inet_unhash -EXPORT_SYMBOL_GPL vmlinux 0x5c6d2036 perf_event_period -EXPORT_SYMBOL_GPL vmlinux 0x5c71f85b simple_attr_open -EXPORT_SYMBOL_GPL vmlinux 0x5c77c556 fsverity_ioctl_measure -EXPORT_SYMBOL_GPL vmlinux 0x5c7e9c46 ahci_platform_ops -EXPORT_SYMBOL_GPL vmlinux 0x5c82016e __SCK__tp_func_napi_poll -EXPORT_SYMBOL_GPL vmlinux 0x5c8ab7b3 screen_glyph_unicode -EXPORT_SYMBOL_GPL vmlinux 0x5c96d8ff nd_blk_region_provider_data -EXPORT_SYMBOL_GPL vmlinux 0x5c9849a7 task_cls_state -EXPORT_SYMBOL_GPL vmlinux 0x5ca0b433 regmap_irq_get_domain -EXPORT_SYMBOL_GPL vmlinux 0x5ca63ea5 __of_reset_control_get -EXPORT_SYMBOL_GPL vmlinux 0x5ca6a871 raw_v4_hashinfo -EXPORT_SYMBOL_GPL vmlinux 0x5ca94b57 cpufreq_cpu_get_raw -EXPORT_SYMBOL_GPL vmlinux 0x5cab9945 unregister_xenbus_watch -EXPORT_SYMBOL_GPL vmlinux 0x5cad8fc3 power_supply_ocv2cap_simple -EXPORT_SYMBOL_GPL vmlinux 0x5cb79fe2 xhci_check_bandwidth -EXPORT_SYMBOL_GPL vmlinux 0x5cb8b917 devm_pinctrl_put -EXPORT_SYMBOL_GPL vmlinux 0x5cb99504 fwnode_graph_get_remote_node -EXPORT_SYMBOL_GPL vmlinux 0x5ccb6bff devm_request_free_mem_region -EXPORT_SYMBOL_GPL vmlinux 0x5cd24b7d scmi_protocol_unregister -EXPORT_SYMBOL_GPL vmlinux 0x5ce32a14 ata_eh_analyze_ncq_error -EXPORT_SYMBOL_GPL vmlinux 0x5cec6a59 __cpuhp_state_remove_instance -EXPORT_SYMBOL_GPL vmlinux 0x5cede0a7 xdp_flush_frame_bulk -EXPORT_SYMBOL_GPL vmlinux 0x5d0ec083 inet6_cleanup_sock -EXPORT_SYMBOL_GPL vmlinux 0x5d0ec9fc fscrypt_set_bio_crypt_ctx -EXPORT_SYMBOL_GPL vmlinux 0x5d17148b apei_write -EXPORT_SYMBOL_GPL vmlinux 0x5d2bc42a reset_control_rearm -EXPORT_SYMBOL_GPL vmlinux 0x5d3b0a50 regulator_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0x5d4ea38b shmem_read_mapping_page_gfp -EXPORT_SYMBOL_GPL vmlinux 0x5d5ad9bf fsl_mc_bus_dpdcei_type -EXPORT_SYMBOL_GPL vmlinux 0x5d5f1c1b rdev_get_id -EXPORT_SYMBOL_GPL vmlinux 0x5d6978ad extcon_dev_free -EXPORT_SYMBOL_GPL vmlinux 0x5d6c5967 sata_scr_write_flush -EXPORT_SYMBOL_GPL vmlinux 0x5d7532fb phy_exit -EXPORT_SYMBOL_GPL vmlinux 0x5d7f1229 xenbus_probe_node -EXPORT_SYMBOL_GPL vmlinux 0x5d81a06a apply_to_page_range -EXPORT_SYMBOL_GPL vmlinux 0x5d8476d3 bpf_sk_storage_diag_alloc -EXPORT_SYMBOL_GPL vmlinux 0x5d864c57 hrtimer_init -EXPORT_SYMBOL_GPL vmlinux 0x5d916e91 cpci_hp_register_controller -EXPORT_SYMBOL_GPL vmlinux 0x5d9bfe42 devm_of_phy_provider_unregister -EXPORT_SYMBOL_GPL vmlinux 0x5d9ee65d usb_get_dr_mode -EXPORT_SYMBOL_GPL vmlinux 0x5da67adc zs_compact -EXPORT_SYMBOL_GPL vmlinux 0x5dada462 usb_set_interface -EXPORT_SYMBOL_GPL vmlinux 0x5dbf384f __traceiter_neigh_timer_handler -EXPORT_SYMBOL_GPL vmlinux 0x5dd4973c skcipher_walk_aead_encrypt -EXPORT_SYMBOL_GPL vmlinux 0x5de412cd k3_ringacc_ring_push -EXPORT_SYMBOL_GPL vmlinux 0x5e0dee0e register_pernet_device -EXPORT_SYMBOL_GPL vmlinux 0x5e173309 cpu_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0x5e417a1e __list_lru_init -EXPORT_SYMBOL_GPL vmlinux 0x5e4c1f6b ata_std_bios_param -EXPORT_SYMBOL_GPL vmlinux 0x5e515be6 ktime_get_ts64 -EXPORT_SYMBOL_GPL vmlinux 0x5e53b6bd nl_table -EXPORT_SYMBOL_GPL vmlinux 0x5e5671f7 dev_pm_opp_set_sharing_cpus -EXPORT_SYMBOL_GPL vmlinux 0x5e5945e2 acpi_dev_gpio_irq_get_by -EXPORT_SYMBOL_GPL vmlinux 0x5e598da2 __efivar_entry_get -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 0x5e9c844f component_master_del -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 0x5eb582cb device_link_remove -EXPORT_SYMBOL_GPL vmlinux 0x5ec2319a mtk_mutex_unprepare -EXPORT_SYMBOL_GPL vmlinux 0x5ec5e1f7 synth_event_trace_end -EXPORT_SYMBOL_GPL vmlinux 0x5ecdcf90 ti_sci_get_free_resource -EXPORT_SYMBOL_GPL vmlinux 0x5ee49846 cpufreq_register_governor -EXPORT_SYMBOL_GPL vmlinux 0x5f12f5da clk_regmap_divider_ro_ops -EXPORT_SYMBOL_GPL vmlinux 0x5f23e3fa insert_resource -EXPORT_SYMBOL_GPL vmlinux 0x5f23fd02 sk_msg_free -EXPORT_SYMBOL_GPL vmlinux 0x5f251d62 pingv6_ops -EXPORT_SYMBOL_GPL vmlinux 0x5f2cf1f1 devlink_port_type_clear -EXPORT_SYMBOL_GPL vmlinux 0x5f2ff439 gnttab_page_cache_shrink -EXPORT_SYMBOL_GPL vmlinux 0x5f327d2b irq_get_domain_generic_chip -EXPORT_SYMBOL_GPL vmlinux 0x5f3a3c12 crypto_ahash_finup -EXPORT_SYMBOL_GPL vmlinux 0x5f4098aa rio_register_driver -EXPORT_SYMBOL_GPL vmlinux 0x5f40bffb led_classdev_unregister -EXPORT_SYMBOL_GPL vmlinux 0x5f4200fb devm_irq_setup_generic_chip -EXPORT_SYMBOL_GPL vmlinux 0x5f4e248b of_pci_range_parser_one -EXPORT_SYMBOL_GPL vmlinux 0x5f56b1f3 fsl_mc_bus_dprtc_type -EXPORT_SYMBOL_GPL vmlinux 0x5f58bec3 devm_ioremap_uc -EXPORT_SYMBOL_GPL vmlinux 0x5f6ad818 irq_find_matching_fwspec -EXPORT_SYMBOL_GPL vmlinux 0x5f6f1e9e dax_get_private -EXPORT_SYMBOL_GPL vmlinux 0x5f73ebc2 security_path_symlink -EXPORT_SYMBOL_GPL vmlinux 0x5f81b5a5 devlink_dpipe_table_resource_set -EXPORT_SYMBOL_GPL vmlinux 0x5f8c2271 ata_timing_compute -EXPORT_SYMBOL_GPL vmlinux 0x5fa625ed mpi_ec_mul_point -EXPORT_SYMBOL_GPL vmlinux 0x5fc85c6f wakeup_source_remove -EXPORT_SYMBOL_GPL vmlinux 0x5fcb2ec4 devm_i2c_add_adapter -EXPORT_SYMBOL_GPL vmlinux 0x5fdc0bfa spi_res_add -EXPORT_SYMBOL_GPL vmlinux 0x5fdfcd57 __tracepoint_pelt_thermal_tp -EXPORT_SYMBOL_GPL vmlinux 0x5febb3ec wm831x_device_shutdown -EXPORT_SYMBOL_GPL vmlinux 0x5ffafd32 devlink_port_param_driverinit_value_set -EXPORT_SYMBOL_GPL vmlinux 0x60091316 clk_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0x600b0f36 sk_setup_caps -EXPORT_SYMBOL_GPL vmlinux 0x601a96d3 usb_queue_reset_device -EXPORT_SYMBOL_GPL vmlinux 0x601ad5fd usb_match_one_id -EXPORT_SYMBOL_GPL vmlinux 0x602abfbf rockchip_clk_of_add_provider -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 0x60682a55 phy_pm_runtime_put_sync -EXPORT_SYMBOL_GPL vmlinux 0x606cfe46 thermal_cooling_device_register -EXPORT_SYMBOL_GPL vmlinux 0x607c4683 devlink_info_version_fixed_put -EXPORT_SYMBOL_GPL vmlinux 0x6085495b rio_release_inb_pwrite -EXPORT_SYMBOL_GPL vmlinux 0x608648e7 __hrtimer_get_remaining -EXPORT_SYMBOL_GPL vmlinux 0x6091797f synchronize_rcu -EXPORT_SYMBOL_GPL vmlinux 0x609e3dc8 rio_request_inb_pwrite -EXPORT_SYMBOL_GPL vmlinux 0x60a11e58 usb_disable_autosuspend -EXPORT_SYMBOL_GPL vmlinux 0x60a13e90 rcu_barrier -EXPORT_SYMBOL_GPL vmlinux 0x60a32ea9 pm_power_off -EXPORT_SYMBOL_GPL vmlinux 0x60a65621 hvc_remove -EXPORT_SYMBOL_GPL vmlinux 0x60b45fa2 __traceiter_block_bio_complete -EXPORT_SYMBOL_GPL vmlinux 0x60ceef38 pci_epc_mem_exit -EXPORT_SYMBOL_GPL vmlinux 0x60dac08d acpi_pci_find_root -EXPORT_SYMBOL_GPL vmlinux 0x60deb559 pci_epf_unregister_driver -EXPORT_SYMBOL_GPL vmlinux 0x60eb0251 switchdev_port_obj_add -EXPORT_SYMBOL_GPL vmlinux 0x60ebc96f ring_buffer_read_prepare -EXPORT_SYMBOL_GPL vmlinux 0x60f525d9 seg6_do_srh_inline -EXPORT_SYMBOL_GPL vmlinux 0x60f619e1 devm_device_add_groups -EXPORT_SYMBOL_GPL vmlinux 0x60f99e1b cppc_set_perf -EXPORT_SYMBOL_GPL vmlinux 0x61076976 ohci_setup -EXPORT_SYMBOL_GPL vmlinux 0x61279c56 pinctrl_add_gpio_range -EXPORT_SYMBOL_GPL vmlinux 0x6129fb93 sfp_remove_phy -EXPORT_SYMBOL_GPL vmlinux 0x612aeb93 tps6586x_read -EXPORT_SYMBOL_GPL vmlinux 0x612b1378 da9052_regmap_config -EXPORT_SYMBOL_GPL vmlinux 0x612bfd89 errno_to_blk_status -EXPORT_SYMBOL_GPL vmlinux 0x614010ef blk_queue_can_use_dma_map_merging -EXPORT_SYMBOL_GPL vmlinux 0x61428270 stmpe_disable -EXPORT_SYMBOL_GPL vmlinux 0x614adcb7 of_overlay_remove_all -EXPORT_SYMBOL_GPL vmlinux 0x615d3447 kernel_read_file_from_path -EXPORT_SYMBOL_GPL vmlinux 0x615ee378 ip6_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0x616aa1a3 acpi_dev_add_driver_gpios -EXPORT_SYMBOL_GPL vmlinux 0x616ec34c extcon_set_state_sync -EXPORT_SYMBOL_GPL vmlinux 0x616f9ec3 alarm_start -EXPORT_SYMBOL_GPL vmlinux 0x6177bd1f skb_complete_tx_timestamp -EXPORT_SYMBOL_GPL vmlinux 0x617b026c hwrng_register -EXPORT_SYMBOL_GPL vmlinux 0x617f6c6b pci_restore_msi_state -EXPORT_SYMBOL_GPL vmlinux 0x6181216e devm_usb_get_phy -EXPORT_SYMBOL_GPL vmlinux 0x6181e79f timerqueue_add -EXPORT_SYMBOL_GPL vmlinux 0x618c2b9b edac_device_alloc_ctl_info -EXPORT_SYMBOL_GPL vmlinux 0x6195ef62 simple_attr_write -EXPORT_SYMBOL_GPL vmlinux 0x61960b0a devm_power_supply_register_no_ws -EXPORT_SYMBOL_GPL vmlinux 0x61979de0 mmc_send_status -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 0x61a5af06 unregister_pernet_device -EXPORT_SYMBOL_GPL vmlinux 0x61b132cc __srcu_read_unlock -EXPORT_SYMBOL_GPL vmlinux 0x61bda363 genphy_c45_read_lpa -EXPORT_SYMBOL_GPL vmlinux 0x61c1ca29 __SCK__tp_func_add_device_to_group -EXPORT_SYMBOL_GPL vmlinux 0x61c82c42 kstrdup_quotable_file -EXPORT_SYMBOL_GPL vmlinux 0x61d46541 tc3589x_block_read -EXPORT_SYMBOL_GPL vmlinux 0x61d9de2d usb_hcd_start_port_resume -EXPORT_SYMBOL_GPL vmlinux 0x61dec563 xdp_rxq_info_is_reg -EXPORT_SYMBOL_GPL vmlinux 0x61e67bf6 __xas_next -EXPORT_SYMBOL_GPL vmlinux 0x61f06131 dev_pm_opp_put -EXPORT_SYMBOL_GPL vmlinux 0x61f67c92 phy_gbit_features_array -EXPORT_SYMBOL_GPL vmlinux 0x61fd46a4 amba_apb_device_add -EXPORT_SYMBOL_GPL vmlinux 0x620331ef noop_direct_IO -EXPORT_SYMBOL_GPL vmlinux 0x620ede38 battery_hook_register -EXPORT_SYMBOL_GPL vmlinux 0x6214159e dprc_cleanup -EXPORT_SYMBOL_GPL vmlinux 0x6221aebd regmap_read -EXPORT_SYMBOL_GPL vmlinux 0x62224a0e fsl_mc_object_allocate -EXPORT_SYMBOL_GPL vmlinux 0x622478cd of_remove_property -EXPORT_SYMBOL_GPL vmlinux 0x6225e755 device_unregister -EXPORT_SYMBOL_GPL vmlinux 0x6226bfa5 ata_pci_device_suspend -EXPORT_SYMBOL_GPL vmlinux 0x622abf5a ohci_hub_control -EXPORT_SYMBOL_GPL vmlinux 0x622c2dc9 blk_ksm_destroy -EXPORT_SYMBOL_GPL vmlinux 0x622c7922 register_oom_notifier -EXPORT_SYMBOL_GPL vmlinux 0x62377a7b blk_io_schedule -EXPORT_SYMBOL_GPL vmlinux 0x623e934f nd_region_provider_data -EXPORT_SYMBOL_GPL vmlinux 0x6240474a ata_dummy_port_info -EXPORT_SYMBOL_GPL vmlinux 0x6246a629 synchronize_rcu_tasks_trace -EXPORT_SYMBOL_GPL vmlinux 0x62475bc6 icc_link_destroy -EXPORT_SYMBOL_GPL vmlinux 0x624d0721 debugfs_create_devm_seqfile -EXPORT_SYMBOL_GPL vmlinux 0x624f465e nvdimm_has_cache -EXPORT_SYMBOL_GPL vmlinux 0x6257dda7 clk_rate_exclusive_get -EXPORT_SYMBOL_GPL vmlinux 0x6259d291 clk_restore_context -EXPORT_SYMBOL_GPL vmlinux 0x625a29cb __xenbus_register_backend -EXPORT_SYMBOL_GPL vmlinux 0x626123df ip6_redirect -EXPORT_SYMBOL_GPL vmlinux 0x6288c7d9 devlink_dpipe_headers_unregister -EXPORT_SYMBOL_GPL vmlinux 0x628d8344 of_property_read_variable_u8_array -EXPORT_SYMBOL_GPL vmlinux 0x629016c1 regulator_bulk_get -EXPORT_SYMBOL_GPL vmlinux 0x629ed073 bdev_disk_changed -EXPORT_SYMBOL_GPL vmlinux 0x62bb09bf clocks_calc_mult_shift -EXPORT_SYMBOL_GPL vmlinux 0x62cf059c vfs_getxattr_alloc -EXPORT_SYMBOL_GPL vmlinux 0x62e1340a iommu_fwspec_free -EXPORT_SYMBOL_GPL vmlinux 0x62f12ac1 crypto_register_instance -EXPORT_SYMBOL_GPL vmlinux 0x62fb934a dma_buf_vmap -EXPORT_SYMBOL_GPL vmlinux 0x6307d38e bgmac_phy_connect_direct -EXPORT_SYMBOL_GPL vmlinux 0x630c0f3a ulpi_viewport_access_ops -EXPORT_SYMBOL_GPL vmlinux 0x631215e4 ip6_dst_lookup_flow -EXPORT_SYMBOL_GPL vmlinux 0x63150e06 clk_get_parent -EXPORT_SYMBOL_GPL vmlinux 0x6318757f mdio_mux_uninit -EXPORT_SYMBOL_GPL vmlinux 0x63197685 s2idle_wake -EXPORT_SYMBOL_GPL vmlinux 0x631d330b usb_anchor_empty -EXPORT_SYMBOL_GPL vmlinux 0x632c80cf alarm_try_to_cancel -EXPORT_SYMBOL_GPL vmlinux 0x6335c19c __trace_note_message -EXPORT_SYMBOL_GPL vmlinux 0x633b56ff phy_check_downshift -EXPORT_SYMBOL_GPL vmlinux 0x634b9d42 __SCK__tp_func_block_unplug -EXPORT_SYMBOL_GPL vmlinux 0x6355b852 ahci_start_fis_rx -EXPORT_SYMBOL_GPL vmlinux 0x635fc478 fsl_mc_bus_type -EXPORT_SYMBOL_GPL vmlinux 0x6364d4ea usb_phy_set_event -EXPORT_SYMBOL_GPL vmlinux 0x636e2523 devlink_unregister -EXPORT_SYMBOL_GPL vmlinux 0x637c2c3f irq_chip_release_resources_parent -EXPORT_SYMBOL_GPL vmlinux 0x63c08029 clk_bulk_unprepare -EXPORT_SYMBOL_GPL vmlinux 0x63cc0fdb bus_for_each_dev -EXPORT_SYMBOL_GPL vmlinux 0x63ea80b3 cper_mem_err_type_str -EXPORT_SYMBOL_GPL vmlinux 0x6400249d devm_reset_control_array_get -EXPORT_SYMBOL_GPL vmlinux 0x640d1b47 dm_start_time_ns_from_clone -EXPORT_SYMBOL_GPL vmlinux 0x64179e71 devlink_port_attrs_set -EXPORT_SYMBOL_GPL vmlinux 0x641a4b4e pci_vpd_alloc -EXPORT_SYMBOL_GPL vmlinux 0x641cb0e6 uart_handle_cts_change -EXPORT_SYMBOL_GPL vmlinux 0x6427572b tegra210_clk_emc_dll_enable -EXPORT_SYMBOL_GPL vmlinux 0x64281c47 led_get_default_pattern -EXPORT_SYMBOL_GPL vmlinux 0x64343e69 relay_late_setup_files -EXPORT_SYMBOL_GPL vmlinux 0x643b06b0 zynqmp_pm_clock_setrate -EXPORT_SYMBOL_GPL vmlinux 0x643b7ea4 iommu_device_sysfs_remove -EXPORT_SYMBOL_GPL vmlinux 0x643dbd3f crypto_unregister_alg -EXPORT_SYMBOL_GPL vmlinux 0x644a7979 devlink_dpipe_entry_ctx_close -EXPORT_SYMBOL_GPL vmlinux 0x645c07d0 wbt_disable_default -EXPORT_SYMBOL_GPL vmlinux 0x64609d25 __tracepoint_devlink_trap_report -EXPORT_SYMBOL_GPL vmlinux 0x64659647 sata_set_spd -EXPORT_SYMBOL_GPL vmlinux 0x6472fe6e dev_coredumpm -EXPORT_SYMBOL_GPL vmlinux 0x6474eec4 mddev_init_writes_pending -EXPORT_SYMBOL_GPL vmlinux 0x647537f3 pl320_ipc_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x6476c5d8 clk_mux_ops -EXPORT_SYMBOL_GPL vmlinux 0x647ff9e4 netdev_rx_handler_register -EXPORT_SYMBOL_GPL vmlinux 0x64925270 __dax_synchronous -EXPORT_SYMBOL_GPL vmlinux 0x64930c25 devm_regulator_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x649d8ae2 acpi_irq_create_hierarchy -EXPORT_SYMBOL_GPL vmlinux 0x64a28292 tps65912_device_init -EXPORT_SYMBOL_GPL vmlinux 0x64b8472b input_ff_event -EXPORT_SYMBOL_GPL vmlinux 0x64e27c4f synth_event_delete -EXPORT_SYMBOL_GPL vmlinux 0x64e58612 alarmtimer_get_rtcdev -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 0x650389f9 __udp_gso_segment -EXPORT_SYMBOL_GPL vmlinux 0x6503a020 dev_pm_qos_expose_flags -EXPORT_SYMBOL_GPL vmlinux 0x652247cd perf_aux_output_end -EXPORT_SYMBOL_GPL vmlinux 0x6531a37f mpi_add -EXPORT_SYMBOL_GPL vmlinux 0x6545268e __tracepoint_neigh_cleanup_and_release -EXPORT_SYMBOL_GPL vmlinux 0x65455478 rio_request_inb_dbell -EXPORT_SYMBOL_GPL vmlinux 0x65522b48 rio_unregister_scan -EXPORT_SYMBOL_GPL vmlinux 0x655e4879 __irq_alloc_descs -EXPORT_SYMBOL_GPL vmlinux 0x656087e1 free_fib_info -EXPORT_SYMBOL_GPL vmlinux 0x6567563d pci_pasid_features -EXPORT_SYMBOL_GPL vmlinux 0x656cea06 mtk_paris_pinctrl_probe -EXPORT_SYMBOL_GPL vmlinux 0x65849259 __percpu_down_read -EXPORT_SYMBOL_GPL vmlinux 0x6591718c irq_create_fwspec_mapping -EXPORT_SYMBOL_GPL vmlinux 0x65a33f94 init_pid_ns -EXPORT_SYMBOL_GPL vmlinux 0x65a44d6e regulator_disable_deferred -EXPORT_SYMBOL_GPL vmlinux 0x65b1e466 nexthop_for_each_fib6_nh -EXPORT_SYMBOL_GPL vmlinux 0x65b66dda sysfs_update_group -EXPORT_SYMBOL_GPL vmlinux 0x65c07a7c mpc8xxx_spi_tx_buf_u8 -EXPORT_SYMBOL_GPL vmlinux 0x65ccb6f0 call_netevent_notifiers -EXPORT_SYMBOL_GPL vmlinux 0x65d7e52d usb_enable_autosuspend -EXPORT_SYMBOL_GPL vmlinux 0x65dda9b1 __regmap_init -EXPORT_SYMBOL_GPL vmlinux 0x65e01af9 __sync_icache_dcache -EXPORT_SYMBOL_GPL vmlinux 0x65fc861c strp_stop -EXPORT_SYMBOL_GPL vmlinux 0x66089aee blkcg_policy_register -EXPORT_SYMBOL_GPL vmlinux 0x6613125b init_dummy_netdev -EXPORT_SYMBOL_GPL vmlinux 0x661601de sprint_symbol -EXPORT_SYMBOL_GPL vmlinux 0x6617777f pm_wakeup_dev_event -EXPORT_SYMBOL_GPL vmlinux 0x663276f9 rpi_firmware_get -EXPORT_SYMBOL_GPL vmlinux 0x6636c3c9 irq_set_vcpu_affinity -EXPORT_SYMBOL_GPL vmlinux 0x663bb448 devlink_fmsg_obj_nest_end -EXPORT_SYMBOL_GPL vmlinux 0x66438608 trace_array_init_printk -EXPORT_SYMBOL_GPL vmlinux 0x66478c7c devlink_free -EXPORT_SYMBOL_GPL vmlinux 0x664eb54a k3_ringacc_ring_reset_dma -EXPORT_SYMBOL_GPL vmlinux 0x664f229c crypto_register_acomp -EXPORT_SYMBOL_GPL vmlinux 0x665be2f5 iomap_writepage -EXPORT_SYMBOL_GPL vmlinux 0x665dee0a ping_bind -EXPORT_SYMBOL_GPL vmlinux 0x665e92a0 clk_set_duty_cycle -EXPORT_SYMBOL_GPL vmlinux 0x6661bbe7 crypto_grab_akcipher -EXPORT_SYMBOL_GPL vmlinux 0x667942af virtqueue_get_buf -EXPORT_SYMBOL_GPL vmlinux 0x668402aa crypto_put_default_rng -EXPORT_SYMBOL_GPL vmlinux 0x66850117 xdp_rxq_info_reg -EXPORT_SYMBOL_GPL vmlinux 0x6687697c pktgen_xfrm_outer_mode_output -EXPORT_SYMBOL_GPL vmlinux 0x66a9c091 imx_pinctrl_parse_pin_scu -EXPORT_SYMBOL_GPL vmlinux 0x66aa91c7 dt_init_idle_driver -EXPORT_SYMBOL_GPL vmlinux 0x66b7bf30 rt_mutex_lock_interruptible -EXPORT_SYMBOL_GPL vmlinux 0x66b97421 sfp_link_up -EXPORT_SYMBOL_GPL vmlinux 0x66c444f5 ipv6_proxy_select_ident -EXPORT_SYMBOL_GPL vmlinux 0x66c61e75 devm_acpi_dev_remove_driver_gpios -EXPORT_SYMBOL_GPL vmlinux 0x66d87d38 symbol_put_addr -EXPORT_SYMBOL_GPL vmlinux 0x66e63193 of_property_match_string -EXPORT_SYMBOL_GPL vmlinux 0x66fd8a26 acpi_dma_controller_register -EXPORT_SYMBOL_GPL vmlinux 0x6705b818 restore_online_page_callback -EXPORT_SYMBOL_GPL vmlinux 0x671d9537 of_pci_parse_bus_range -EXPORT_SYMBOL_GPL vmlinux 0x6735d56e tcp_ca_get_name_by_key -EXPORT_SYMBOL_GPL vmlinux 0x6737e649 input_ff_create -EXPORT_SYMBOL_GPL vmlinux 0x6739a503 balloon_set_new_target -EXPORT_SYMBOL_GPL vmlinux 0x67429c91 __SCK__tp_func_block_bio_remap -EXPORT_SYMBOL_GPL vmlinux 0x67563b24 __dev_forward_skb -EXPORT_SYMBOL_GPL vmlinux 0x675a1cc5 alloc_dax -EXPORT_SYMBOL_GPL vmlinux 0x676018b1 tpm_tis_remove -EXPORT_SYMBOL_GPL vmlinux 0x67638c3f bpf_trace_run10 -EXPORT_SYMBOL_GPL vmlinux 0x676c688f k3_ringacc_ring_free -EXPORT_SYMBOL_GPL vmlinux 0x678390aa regmap_test_bits -EXPORT_SYMBOL_GPL vmlinux 0x6783e0c8 devm_thermal_zone_of_sensor_unregister -EXPORT_SYMBOL_GPL vmlinux 0x6794369a mtk_pinconf_bias_disable_get -EXPORT_SYMBOL_GPL vmlinux 0x67955ce6 profile_hits -EXPORT_SYMBOL_GPL vmlinux 0x679fd624 sk_msg_memcopy_from_iter -EXPORT_SYMBOL_GPL vmlinux 0x67bb18a0 ata_wait_after_reset -EXPORT_SYMBOL_GPL vmlinux 0x67cdd9bd aead_init_geniv -EXPORT_SYMBOL_GPL vmlinux 0x67d02616 exportfs_encode_fh -EXPORT_SYMBOL_GPL vmlinux 0x67da9f7c sha512_zero_message_hash -EXPORT_SYMBOL_GPL vmlinux 0x67e4a87b stmpe_reg_write -EXPORT_SYMBOL_GPL vmlinux 0x68025afb perf_pmu_register -EXPORT_SYMBOL_GPL vmlinux 0x68062180 phy_package_join -EXPORT_SYMBOL_GPL vmlinux 0x681e49da ping_recvmsg -EXPORT_SYMBOL_GPL vmlinux 0x681eba54 watchdog_set_restart_priority -EXPORT_SYMBOL_GPL vmlinux 0x6823eaa2 __irq_alloc_domain_generic_chips -EXPORT_SYMBOL_GPL vmlinux 0x682ff057 ring_buffer_commit_overrun_cpu -EXPORT_SYMBOL_GPL vmlinux 0x6832cf70 scsi_nl_sock -EXPORT_SYMBOL_GPL vmlinux 0x6837a4f2 skb_mpls_dec_ttl -EXPORT_SYMBOL_GPL vmlinux 0x684ca117 zynqmp_pm_get_pll_frac_mode -EXPORT_SYMBOL_GPL vmlinux 0x684d0bc1 badrange_add -EXPORT_SYMBOL_GPL vmlinux 0x685d1098 sata_pmp_port_ops -EXPORT_SYMBOL_GPL vmlinux 0x686bcd0f blk_rq_unprep_clone -EXPORT_SYMBOL_GPL vmlinux 0x68745327 pcie_aspm_capable -EXPORT_SYMBOL_GPL vmlinux 0x68806042 alloc_page_buffers -EXPORT_SYMBOL_GPL vmlinux 0x68952493 rcu_note_context_switch -EXPORT_SYMBOL_GPL vmlinux 0x689b9cbd security_kernel_read_file -EXPORT_SYMBOL_GPL vmlinux 0x68a3e347 scsi_unregister_device_handler -EXPORT_SYMBOL_GPL vmlinux 0x68bb3b37 inet_csk_reqsk_queue_hash_add -EXPORT_SYMBOL_GPL vmlinux 0x68bed800 of_phy_simple_xlate -EXPORT_SYMBOL_GPL vmlinux 0x68d49706 gpiod_get_raw_array_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0x68d95155 led_classdev_suspend -EXPORT_SYMBOL_GPL vmlinux 0x68dc8196 devm_fwnode_pwm_get -EXPORT_SYMBOL_GPL vmlinux 0x68e8befa blk_mq_unquiesce_queue -EXPORT_SYMBOL_GPL vmlinux 0x68e8c2f7 pinctrl_count_index_with_args -EXPORT_SYMBOL_GPL vmlinux 0x68e90c14 pcie_port_find_device -EXPORT_SYMBOL_GPL vmlinux 0x68f5f232 xas_create_range -EXPORT_SYMBOL_GPL vmlinux 0x690a159a ipv6_bpf_stub -EXPORT_SYMBOL_GPL vmlinux 0x690f585e phy_basic_ports_array -EXPORT_SYMBOL_GPL vmlinux 0x6917fe89 iommu_domain_free -EXPORT_SYMBOL_GPL vmlinux 0x691b2d54 sdio_retune_crc_disable -EXPORT_SYMBOL_GPL vmlinux 0x691e59aa xfrm_audit_state_replay -EXPORT_SYMBOL_GPL vmlinux 0x6938e9e5 __fsnotify_inode_delete -EXPORT_SYMBOL_GPL vmlinux 0x6961a15e sk_msg_recvmsg -EXPORT_SYMBOL_GPL vmlinux 0x69637b2c __traceiter_powernv_throttle -EXPORT_SYMBOL_GPL vmlinux 0x69650f36 gnttab_unmap_refs_sync -EXPORT_SYMBOL_GPL vmlinux 0x696f2b63 of_changeset_init -EXPORT_SYMBOL_GPL vmlinux 0x6979b090 pinmux_generic_add_function -EXPORT_SYMBOL_GPL vmlinux 0x697c5d0d tracing_snapshot_alloc -EXPORT_SYMBOL_GPL vmlinux 0x699618d4 debugfs_create_dir -EXPORT_SYMBOL_GPL vmlinux 0x6999c399 devlink_port_attrs_pci_pf_set -EXPORT_SYMBOL_GPL vmlinux 0x69a29bd7 __mnt_drop_write -EXPORT_SYMBOL_GPL vmlinux 0x69a2ad73 sdio_f0_writeb -EXPORT_SYMBOL_GPL vmlinux 0x69a3007c alloc_dax_region -EXPORT_SYMBOL_GPL vmlinux 0x69a5bdc4 key_type_asymmetric -EXPORT_SYMBOL_GPL vmlinux 0x69b38d25 spi_mem_poll_status -EXPORT_SYMBOL_GPL vmlinux 0x69bd4545 wakeup_sources_walk_next -EXPORT_SYMBOL_GPL vmlinux 0x69cf0632 mpi_fromstr -EXPORT_SYMBOL_GPL vmlinux 0x69d023bc ack_all_badblocks -EXPORT_SYMBOL_GPL vmlinux 0x69d1441c pm_genpd_opp_to_performance_state -EXPORT_SYMBOL_GPL vmlinux 0x69e683de uuid_gen -EXPORT_SYMBOL_GPL vmlinux 0x69ee2220 linear_range_get_selector_high -EXPORT_SYMBOL_GPL vmlinux 0x69ef45a9 perf_trace_run_bpf_submit -EXPORT_SYMBOL_GPL vmlinux 0x69f86aec meson_clk_pll_ro_ops -EXPORT_SYMBOL_GPL vmlinux 0x6a01f1db sdio_readb -EXPORT_SYMBOL_GPL vmlinux 0x6a05b65b fb_videomode_from_videomode -EXPORT_SYMBOL_GPL vmlinux 0x6a0a9fe6 usb_unlocked_enable_lpm -EXPORT_SYMBOL_GPL vmlinux 0x6a0b429e fuse_abort_conn -EXPORT_SYMBOL_GPL vmlinux 0x6a1733eb iommu_group_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x6a25d9fa crypto_stats_akcipher_sign -EXPORT_SYMBOL_GPL vmlinux 0x6a37833d of_devfreq_cooling_register -EXPORT_SYMBOL_GPL vmlinux 0x6a37b6e9 alarm_start_relative -EXPORT_SYMBOL_GPL vmlinux 0x6a3d22dd nd_cmd_out_size -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 0x6a4fddd3 fsverity_cleanup_inode -EXPORT_SYMBOL_GPL vmlinux 0x6a523d74 aead_geniv_alloc -EXPORT_SYMBOL_GPL vmlinux 0x6a7f3863 extcon_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x6a80d213 crypto_unregister_template -EXPORT_SYMBOL_GPL vmlinux 0x6a834e48 rtnl_link_register -EXPORT_SYMBOL_GPL vmlinux 0x6a8441be cpci_hp_start -EXPORT_SYMBOL_GPL vmlinux 0x6a938cca regulator_list_hardware_vsel -EXPORT_SYMBOL_GPL vmlinux 0x6a93c9b2 zynqmp_pm_pinctrl_get_function -EXPORT_SYMBOL_GPL vmlinux 0x6aa2a877 xenbus_printf -EXPORT_SYMBOL_GPL vmlinux 0x6aa9181e ata_sff_tf_read -EXPORT_SYMBOL_GPL vmlinux 0x6aad9152 xen_set_callback_via -EXPORT_SYMBOL_GPL vmlinux 0x6aba841a pci_ats_supported -EXPORT_SYMBOL_GPL vmlinux 0x6ac3a4cd devm_clk_hw_unregister -EXPORT_SYMBOL_GPL vmlinux 0x6ac3b504 meson_clk_mpll_ops -EXPORT_SYMBOL_GPL vmlinux 0x6ac5cb0f sysfs_groups_change_owner -EXPORT_SYMBOL_GPL vmlinux 0x6ac74ab2 inet_peer_base_init -EXPORT_SYMBOL_GPL vmlinux 0x6ad070c6 genphy_c45_restart_aneg -EXPORT_SYMBOL_GPL vmlinux 0x6aeee6c7 peernet2id_alloc -EXPORT_SYMBOL_GPL vmlinux 0x6af42acf regulator_set_current_limit -EXPORT_SYMBOL_GPL vmlinux 0x6b052453 blk_insert_cloned_request -EXPORT_SYMBOL_GPL vmlinux 0x6b0dc565 xen_set_irq_priority -EXPORT_SYMBOL_GPL vmlinux 0x6b193c2f devm_watchdog_register_device -EXPORT_SYMBOL_GPL vmlinux 0x6b198c77 led_colors -EXPORT_SYMBOL_GPL vmlinux 0x6b1a6e13 xfrm_dev_resume -EXPORT_SYMBOL_GPL vmlinux 0x6b2025d6 meson_eeclkc_probe -EXPORT_SYMBOL_GPL vmlinux 0x6b2541db devm_clk_hw_register -EXPORT_SYMBOL_GPL vmlinux 0x6b25b2ca regmap_exit -EXPORT_SYMBOL_GPL vmlinux 0x6b2b69f7 static_key_enable -EXPORT_SYMBOL_GPL vmlinux 0x6b3ae022 acpi_os_unmap_iomem -EXPORT_SYMBOL_GPL vmlinux 0x6b3e091f rio_mport_read_config_16 -EXPORT_SYMBOL_GPL vmlinux 0x6b4045ee zynqmp_pm_get_api_version -EXPORT_SYMBOL_GPL vmlinux 0x6b413c9b sfp_link_down -EXPORT_SYMBOL_GPL vmlinux 0x6b41b1fa raw_seq_stop -EXPORT_SYMBOL_GPL vmlinux 0x6b47f8a4 hisi_clk_register_mux -EXPORT_SYMBOL_GPL vmlinux 0x6b56d1ee __rio_local_write_config_32 -EXPORT_SYMBOL_GPL vmlinux 0x6b58e9b7 transport_destroy_device -EXPORT_SYMBOL_GPL vmlinux 0x6b6025cd dm_device_name -EXPORT_SYMBOL_GPL vmlinux 0x6b680055 wm8350_block_write -EXPORT_SYMBOL_GPL vmlinux 0x6b752403 _proc_mkdir -EXPORT_SYMBOL_GPL vmlinux 0x6b78fc9c wm8350_reg_unlock -EXPORT_SYMBOL_GPL vmlinux 0x6b7a4335 hyperv_cleanup -EXPORT_SYMBOL_GPL vmlinux 0x6b7e352c devm_pm_runtime_enable -EXPORT_SYMBOL_GPL vmlinux 0x6b8090eb put_iova_domain -EXPORT_SYMBOL_GPL vmlinux 0x6b81c38b power_supply_unreg_notifier -EXPORT_SYMBOL_GPL vmlinux 0x6b834121 bman_portals_probed -EXPORT_SYMBOL_GPL vmlinux 0x6b834a3e dma_run_dependencies -EXPORT_SYMBOL_GPL vmlinux 0x6b9010e3 pinctrl_generic_get_group_count -EXPORT_SYMBOL_GPL vmlinux 0x6ba27aa1 pm_genpd_remove -EXPORT_SYMBOL_GPL vmlinux 0x6ba36c6a hwpoison_filter_flags_value -EXPORT_SYMBOL_GPL vmlinux 0x6ba434e1 rio_request_dma -EXPORT_SYMBOL_GPL vmlinux 0x6ba55537 devm_phy_get -EXPORT_SYMBOL_GPL vmlinux 0x6baabb20 power_supply_notifier -EXPORT_SYMBOL_GPL vmlinux 0x6baef098 param_set_bool_enable_only -EXPORT_SYMBOL_GPL vmlinux 0x6bbc8d7d phy_led_trigger_change_speed -EXPORT_SYMBOL_GPL vmlinux 0x6bbf2c9c skb_pull_rcsum -EXPORT_SYMBOL_GPL vmlinux 0x6bbfac50 copy_user_highpage -EXPORT_SYMBOL_GPL vmlinux 0x6bcdedc0 mpi_point_init -EXPORT_SYMBOL_GPL vmlinux 0x6bd1aa56 stack_trace_save -EXPORT_SYMBOL_GPL vmlinux 0x6bdef35c acpi_ec_mark_gpe_for_wake -EXPORT_SYMBOL_GPL vmlinux 0x6be3a96b hv_remove_vmbus_handler -EXPORT_SYMBOL_GPL vmlinux 0x6be62658 rio_attach_device -EXPORT_SYMBOL_GPL vmlinux 0x6bec41e7 fsnotify_find_mark -EXPORT_SYMBOL_GPL vmlinux 0x6bf07c18 sysfs_create_file_ns -EXPORT_SYMBOL_GPL vmlinux 0x6c1af36e spi_async_locked -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 0x6c4b6684 reset_control_assert -EXPORT_SYMBOL_GPL vmlinux 0x6c5ad0cd kmsg_dump_register -EXPORT_SYMBOL_GPL vmlinux 0x6c607f53 relay_open -EXPORT_SYMBOL_GPL vmlinux 0x6c63895f __fscrypt_encrypt_symlink -EXPORT_SYMBOL_GPL vmlinux 0x6c655913 register_acpi_hed_notifier -EXPORT_SYMBOL_GPL vmlinux 0x6c919054 path_noexec -EXPORT_SYMBOL_GPL vmlinux 0x6c93cb8b of_pci_get_devfn -EXPORT_SYMBOL_GPL vmlinux 0x6c956075 __SCK__tp_func_devlink_hwerr -EXPORT_SYMBOL_GPL vmlinux 0x6c9c57b4 iommu_group_get -EXPORT_SYMBOL_GPL vmlinux 0x6ca4bf88 async_synchronize_full_domain -EXPORT_SYMBOL_GPL vmlinux 0x6cb0ce87 irq_get_percpu_devid_partition -EXPORT_SYMBOL_GPL vmlinux 0x6cc11c8e set_selection_kernel -EXPORT_SYMBOL_GPL vmlinux 0x6cceb485 bpf_redirect_info -EXPORT_SYMBOL_GPL vmlinux 0x6cd27d0f __fscrypt_inode_uses_inline_crypto -EXPORT_SYMBOL_GPL vmlinux 0x6ce10eb0 trace_clock_jiffies -EXPORT_SYMBOL_GPL vmlinux 0x6cfceb4b of_reserved_mem_device_release -EXPORT_SYMBOL_GPL vmlinux 0x6cff5c58 devlink_region_snapshot_id_put -EXPORT_SYMBOL_GPL vmlinux 0x6d072ba5 get_user_pages_fast_only -EXPORT_SYMBOL_GPL vmlinux 0x6d08bedd sock_map_close -EXPORT_SYMBOL_GPL vmlinux 0x6d09843f copy_bpf_fprog_from_user -EXPORT_SYMBOL_GPL vmlinux 0x6d0ae550 pinctrl_gpio_request -EXPORT_SYMBOL_GPL vmlinux 0x6d0fe13c led_blink_set -EXPORT_SYMBOL_GPL vmlinux 0x6d15f606 ata_sff_freeze -EXPORT_SYMBOL_GPL vmlinux 0x6d240d3d gpiod_toggle_active_low -EXPORT_SYMBOL_GPL vmlinux 0x6d2fc5a6 net_namespace_list -EXPORT_SYMBOL_GPL vmlinux 0x6d3f489c crypto_destroy_tfm -EXPORT_SYMBOL_GPL vmlinux 0x6d467b08 arm_smccc_1_1_get_conduit -EXPORT_SYMBOL_GPL vmlinux 0x6d5cbe6f crypto_alg_extsize -EXPORT_SYMBOL_GPL vmlinux 0x6d6ab0bc led_init_default_state_get -EXPORT_SYMBOL_GPL vmlinux 0x6d6fec1f ktime_mono_to_any -EXPORT_SYMBOL_GPL vmlinux 0x6d7e951e rcu_exp_batches_completed -EXPORT_SYMBOL_GPL vmlinux 0x6d86f7bf srcu_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0x6d8e9b44 loop_backing_file -EXPORT_SYMBOL_GPL vmlinux 0x6d921f5b strp_init -EXPORT_SYMBOL_GPL vmlinux 0x6db8f968 hrtimer_forward -EXPORT_SYMBOL_GPL vmlinux 0x6dbaafd3 put_old_timespec32 -EXPORT_SYMBOL_GPL vmlinux 0x6dc182c5 device_destroy -EXPORT_SYMBOL_GPL vmlinux 0x6dd5680d sprint_symbol_build_id -EXPORT_SYMBOL_GPL vmlinux 0x6dd79cc3 crypto_stats_akcipher_decrypt -EXPORT_SYMBOL_GPL vmlinux 0x6debba10 pci_ioremap_wc_bar -EXPORT_SYMBOL_GPL vmlinux 0x6dec4517 imx_ccm_lock -EXPORT_SYMBOL_GPL vmlinux 0x6e07f6fa sk_psock_drop -EXPORT_SYMBOL_GPL vmlinux 0x6e09d93d __SCK__tp_func_map -EXPORT_SYMBOL_GPL vmlinux 0x6e0b0cd4 eventfd_fget -EXPORT_SYMBOL_GPL vmlinux 0x6e0dba13 clean_record_shared_mapping_range -EXPORT_SYMBOL_GPL vmlinux 0x6e117b2c led_put -EXPORT_SYMBOL_GPL vmlinux 0x6e146275 trace_event_buffer_lock_reserve -EXPORT_SYMBOL_GPL vmlinux 0x6e1a0d3b wm8400_reset_codec_reg_cache -EXPORT_SYMBOL_GPL vmlinux 0x6e323806 meson8_aobus_parse_dt_extra -EXPORT_SYMBOL_GPL vmlinux 0x6e3ba2eb fat_detach -EXPORT_SYMBOL_GPL vmlinux 0x6e3ff83a edac_device_alloc_index -EXPORT_SYMBOL_GPL vmlinux 0x6e42cefd platform_get_irq_optional -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 0x6e5b8732 nvdimm_to_bus -EXPORT_SYMBOL_GPL vmlinux 0x6e66b07a pwm_get -EXPORT_SYMBOL_GPL vmlinux 0x6e6fe6a2 nvmem_cell_read_u16 -EXPORT_SYMBOL_GPL vmlinux 0x6e7943ec iommu_group_id -EXPORT_SYMBOL_GPL vmlinux 0x6e89a560 regmap_irq_chip_get_base -EXPORT_SYMBOL_GPL vmlinux 0x6e96dfb2 dpcon_reset -EXPORT_SYMBOL_GPL vmlinux 0x6ebae950 usb_hc_died -EXPORT_SYMBOL_GPL vmlinux 0x6ebc4be7 __traceiter_pelt_irq_tp -EXPORT_SYMBOL_GPL vmlinux 0x6ebe366f ktime_get_mono_fast_ns -EXPORT_SYMBOL_GPL vmlinux 0x6ec0839a clk_hw_get_rate -EXPORT_SYMBOL_GPL vmlinux 0x6ee8c94b sfp_get_module_eeprom -EXPORT_SYMBOL_GPL vmlinux 0x6ef6b54f ktime_get_boot_fast_ns -EXPORT_SYMBOL_GPL vmlinux 0x6f052e7e disk_update_readahead -EXPORT_SYMBOL_GPL vmlinux 0x6f07b359 regulator_get_mode -EXPORT_SYMBOL_GPL vmlinux 0x6f0845b8 addrconf_add_linklocal -EXPORT_SYMBOL_GPL vmlinux 0x6f0f00fa ata_sff_dma_pause -EXPORT_SYMBOL_GPL vmlinux 0x6f104613 xas_clear_mark -EXPORT_SYMBOL_GPL vmlinux 0x6f12560a get_old_timespec32 -EXPORT_SYMBOL_GPL vmlinux 0x6f131658 devm_gpiod_get_optional -EXPORT_SYMBOL_GPL vmlinux 0x6f1501c4 meson_vid_pll_div_ro_ops -EXPORT_SYMBOL_GPL vmlinux 0x6f2017de misc_cg_set_capacity -EXPORT_SYMBOL_GPL vmlinux 0x6f33aba2 dev_pm_opp_put_supported_hw -EXPORT_SYMBOL_GPL vmlinux 0x6f47f909 nvdimm_volatile_region_create -EXPORT_SYMBOL_GPL vmlinux 0x6f4a9ea1 md_submit_discard_bio -EXPORT_SYMBOL_GPL vmlinux 0x6f4eb1a7 mbox_free_channel -EXPORT_SYMBOL_GPL vmlinux 0x6f64c21c gpiod_set_raw_value -EXPORT_SYMBOL_GPL vmlinux 0x6f745756 vp_modern_probe -EXPORT_SYMBOL_GPL vmlinux 0x6f780815 tty_kopen_exclusive -EXPORT_SYMBOL_GPL vmlinux 0x6f7e6040 irq_has_action -EXPORT_SYMBOL_GPL vmlinux 0x6f85edd6 wm831x_regmap_config -EXPORT_SYMBOL_GPL vmlinux 0x6f8c6fd5 bpf_offload_dev_match -EXPORT_SYMBOL_GPL vmlinux 0x6f95bf5e md_allow_write -EXPORT_SYMBOL_GPL vmlinux 0x6f9e763b timecounter_read -EXPORT_SYMBOL_GPL vmlinux 0x6fb540ec regmap_get_val_endian -EXPORT_SYMBOL_GPL vmlinux 0x6fba1883 udp_abort -EXPORT_SYMBOL_GPL vmlinux 0x6fcdadc3 fuse_conn_put -EXPORT_SYMBOL_GPL vmlinux 0x6fcef6ab ring_buffer_reset -EXPORT_SYMBOL_GPL vmlinux 0x6fe4b905 fwnode_property_read_u64_array -EXPORT_SYMBOL_GPL vmlinux 0x6fe723eb fuse_mount_remove -EXPORT_SYMBOL_GPL vmlinux 0x6ff00d05 pm_generic_thaw_early -EXPORT_SYMBOL_GPL vmlinux 0x6ff0ab54 pci_epc_set_bar -EXPORT_SYMBOL_GPL vmlinux 0x6ff36171 ata_dev_disable -EXPORT_SYMBOL_GPL vmlinux 0x6ff4c76c anon_inode_getfd -EXPORT_SYMBOL_GPL vmlinux 0x6ff607b6 crypto_get_default_rng -EXPORT_SYMBOL_GPL vmlinux 0x6ffebdcc dm_put -EXPORT_SYMBOL_GPL vmlinux 0x7006586e iommu_get_group_resv_regions -EXPORT_SYMBOL_GPL vmlinux 0x70116f4d edac_pci_free_ctl_info -EXPORT_SYMBOL_GPL vmlinux 0x7013ada4 bio_associate_blkg_from_css -EXPORT_SYMBOL_GPL vmlinux 0x701b8f99 divider_recalc_rate -EXPORT_SYMBOL_GPL vmlinux 0x703e997c mptcp_subflow_init_cookie_req -EXPORT_SYMBOL_GPL vmlinux 0x7049dd45 __i2c_board_lock -EXPORT_SYMBOL_GPL vmlinux 0x704f127a bgmac_enet_resume -EXPORT_SYMBOL_GPL vmlinux 0x70526ba3 zap_vma_ptes -EXPORT_SYMBOL_GPL vmlinux 0x705c2206 phy_restart_aneg -EXPORT_SYMBOL_GPL vmlinux 0x7070becc regulator_irq_helper -EXPORT_SYMBOL_GPL vmlinux 0x70712c79 netdev_walk_all_lower_dev -EXPORT_SYMBOL_GPL vmlinux 0x7073c04f phy_10_100_features_array -EXPORT_SYMBOL_GPL vmlinux 0x708af64c wm8350_reg_lock -EXPORT_SYMBOL_GPL vmlinux 0x70a0fed7 uart_console_write -EXPORT_SYMBOL_GPL vmlinux 0x70a47080 tpm2_flush_context -EXPORT_SYMBOL_GPL vmlinux 0x70a63851 dma_free_noncontiguous -EXPORT_SYMBOL_GPL vmlinux 0x70b07ac1 divider_ro_round_rate_parent -EXPORT_SYMBOL_GPL vmlinux 0x70b4dfa0 find_pid_ns -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 0x70cf032f usb_hcd_irq -EXPORT_SYMBOL_GPL vmlinux 0x70d81e0d check_move_unevictable_pages -EXPORT_SYMBOL_GPL vmlinux 0x70e06e33 pkcs7_free_message -EXPORT_SYMBOL_GPL vmlinux 0x70fdacfa spi_write_then_read -EXPORT_SYMBOL_GPL vmlinux 0x710c73b6 crypto_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x71129653 pci_acpi_set_companion_lookup_hook -EXPORT_SYMBOL_GPL vmlinux 0x711507c0 crypto_shash_tfm_digest -EXPORT_SYMBOL_GPL vmlinux 0x711643bd mmc_sanitize -EXPORT_SYMBOL_GPL vmlinux 0x711c520e ata_cable_sata -EXPORT_SYMBOL_GPL vmlinux 0x7120f35c wm831x_reg_lock -EXPORT_SYMBOL_GPL vmlinux 0x7129a6f4 osc_sb_native_usb4_support_confirmed -EXPORT_SYMBOL_GPL vmlinux 0x7131d771 __auxiliary_device_add -EXPORT_SYMBOL_GPL vmlinux 0x7131f631 gpiochip_line_is_irq -EXPORT_SYMBOL_GPL vmlinux 0x71444c4e __mnt_is_readonly -EXPORT_SYMBOL_GPL vmlinux 0x716265c7 debugfs_initialized -EXPORT_SYMBOL_GPL vmlinux 0x71755188 usb_scuttle_anchored_urbs -EXPORT_SYMBOL_GPL vmlinux 0x718e5196 dma_buf_get -EXPORT_SYMBOL_GPL vmlinux 0x719e17ff clk_notifier_unregister -EXPORT_SYMBOL_GPL vmlinux 0x71a20f4a __SCK__tp_func_non_standard_event -EXPORT_SYMBOL_GPL vmlinux 0x71a88ddb usb_debug_root -EXPORT_SYMBOL_GPL vmlinux 0x71a9a3ab mtk_mutex_acquire -EXPORT_SYMBOL_GPL vmlinux 0x71a9ea9d device_dma_supported -EXPORT_SYMBOL_GPL vmlinux 0x71ad1487 get_current_tty -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 0x71c25127 __vfs_removexattr_locked -EXPORT_SYMBOL_GPL vmlinux 0x71cb723b devlink_trap_policers_register -EXPORT_SYMBOL_GPL vmlinux 0x71e9f3ff usb_enable_intel_xhci_ports -EXPORT_SYMBOL_GPL vmlinux 0x71fdd24c phy_put -EXPORT_SYMBOL_GPL vmlinux 0x72013246 of_clk_get_from_provider -EXPORT_SYMBOL_GPL vmlinux 0x72031a2b __iptunnel_pull_header -EXPORT_SYMBOL_GPL vmlinux 0x721111df ata_bmdma_stop -EXPORT_SYMBOL_GPL vmlinux 0x721350d8 sysfs_create_bin_file -EXPORT_SYMBOL_GPL vmlinux 0x721e33d5 of_irq_parse_one -EXPORT_SYMBOL_GPL vmlinux 0x722c5777 inet_csk_addr2sockaddr -EXPORT_SYMBOL_GPL vmlinux 0x7235d8f2 device_rename -EXPORT_SYMBOL_GPL vmlinux 0x7248c4fb rio_route_get_entry -EXPORT_SYMBOL_GPL vmlinux 0x725856b0 handle_level_irq -EXPORT_SYMBOL_GPL vmlinux 0x725d462a acpi_device_get_match_data -EXPORT_SYMBOL_GPL vmlinux 0x7261f67a dev_pm_opp_detach_genpd -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 0x727f9130 phy_resolve_aneg_linkmode -EXPORT_SYMBOL_GPL vmlinux 0x7280c3f3 key_type_user -EXPORT_SYMBOL_GPL vmlinux 0x7281b399 pcie_aspm_enabled -EXPORT_SYMBOL_GPL vmlinux 0x7283161b percpu_ref_switch_to_percpu -EXPORT_SYMBOL_GPL vmlinux 0x7287df05 da9052_disable_irq_nosync -EXPORT_SYMBOL_GPL vmlinux 0x7293728f inet_csk_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0x729cf102 ip_local_out -EXPORT_SYMBOL_GPL vmlinux 0x72a6e379 devlink_param_publish -EXPORT_SYMBOL_GPL vmlinux 0x72a91d05 devm_device_add_group -EXPORT_SYMBOL_GPL vmlinux 0x72b25df8 usb_hcd_check_unlink_urb -EXPORT_SYMBOL_GPL vmlinux 0x72d267dc nvmem_del_cell_lookups -EXPORT_SYMBOL_GPL vmlinux 0x72dd0325 __devm_regmap_init -EXPORT_SYMBOL_GPL vmlinux 0x72e4f6d6 led_trigger_blink -EXPORT_SYMBOL_GPL vmlinux 0x72edf918 __tracepoint_kfree_skb -EXPORT_SYMBOL_GPL vmlinux 0x72f973e7 pinctrl_generic_add_group -EXPORT_SYMBOL_GPL vmlinux 0x72fdf068 icc_set_tag -EXPORT_SYMBOL_GPL vmlinux 0x73079d3d inet_ehash_locks_alloc -EXPORT_SYMBOL_GPL vmlinux 0x7316edef md_start -EXPORT_SYMBOL_GPL vmlinux 0x73188dd1 bsg_setup_queue -EXPORT_SYMBOL_GPL vmlinux 0x731d1922 gpiod_get -EXPORT_SYMBOL_GPL vmlinux 0x731e70ac dax_finish_sync_fault -EXPORT_SYMBOL_GPL vmlinux 0x73242dcd cpu_set_feature -EXPORT_SYMBOL_GPL vmlinux 0x732852fe xenbus_transaction_end -EXPORT_SYMBOL_GPL vmlinux 0x7329aa0d xfrm_dev_offload_ok -EXPORT_SYMBOL_GPL vmlinux 0x7332afa3 subsys_system_register -EXPORT_SYMBOL_GPL vmlinux 0x7338b8a1 fscrypt_set_test_dummy_encryption -EXPORT_SYMBOL_GPL vmlinux 0x734c7a10 transport_class_unregister -EXPORT_SYMBOL_GPL vmlinux 0x734d377d rtc_update_irq_enable -EXPORT_SYMBOL_GPL vmlinux 0x73509955 devm_acpi_dma_controller_register -EXPORT_SYMBOL_GPL vmlinux 0x735b220b dev_fill_forward_path -EXPORT_SYMBOL_GPL vmlinux 0x735eb94c clockevent_delta2ns -EXPORT_SYMBOL_GPL vmlinux 0x73748264 iomap_fiemap -EXPORT_SYMBOL_GPL vmlinux 0x7381287f trace_handle_return -EXPORT_SYMBOL_GPL vmlinux 0x738a058f fixed_phy_register -EXPORT_SYMBOL_GPL vmlinux 0x73912247 pci_generic_config_read32 -EXPORT_SYMBOL_GPL vmlinux 0x73926501 freq_qos_update_request -EXPORT_SYMBOL_GPL vmlinux 0x73a30399 of_reserved_mem_device_init_by_idx -EXPORT_SYMBOL_GPL vmlinux 0x73a48b4a ata_sff_std_ports -EXPORT_SYMBOL_GPL vmlinux 0x73b0c488 __inode_attach_wb -EXPORT_SYMBOL_GPL vmlinux 0x73be44d3 devm_clk_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0x73c2554f __iowrite64_copy -EXPORT_SYMBOL_GPL vmlinux 0x73cbcd4e ata_slave_link_init -EXPORT_SYMBOL_GPL vmlinux 0x73cc8631 oiap -EXPORT_SYMBOL_GPL vmlinux 0x73d7113b btree_destroy -EXPORT_SYMBOL_GPL vmlinux 0x73d8c597 dpbp_close -EXPORT_SYMBOL_GPL vmlinux 0x73dc8e67 serial8250_request_dma -EXPORT_SYMBOL_GPL vmlinux 0x73df97d3 pm_clk_add_clk -EXPORT_SYMBOL_GPL vmlinux 0x73e1f77a bpf_map_inc_with_uref -EXPORT_SYMBOL_GPL vmlinux 0x73e51550 mddev_init -EXPORT_SYMBOL_GPL vmlinux 0x73ea3447 vfs_kern_mount -EXPORT_SYMBOL_GPL vmlinux 0x73f96405 xenbus_grant_ring -EXPORT_SYMBOL_GPL vmlinux 0x73fd8f36 of_pci_range_parser_init -EXPORT_SYMBOL_GPL vmlinux 0x7400f305 spi_busnum_to_master -EXPORT_SYMBOL_GPL vmlinux 0x74056979 of_device_request_module -EXPORT_SYMBOL_GPL vmlinux 0x741063dc crypto_unregister_templates -EXPORT_SYMBOL_GPL vmlinux 0x741c9e25 fsnotify_alloc_group -EXPORT_SYMBOL_GPL vmlinux 0x741d94c9 ahci_platform_suspend_host -EXPORT_SYMBOL_GPL vmlinux 0x742ab23e rtc_class_close -EXPORT_SYMBOL_GPL vmlinux 0x742c9f31 encrypt_blob -EXPORT_SYMBOL_GPL vmlinux 0x74318110 clk_hw_is_enabled -EXPORT_SYMBOL_GPL vmlinux 0x743939ae of_phandle_iterator_init -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 0x7448f8f9 blk_next_bio -EXPORT_SYMBOL_GPL vmlinux 0x744f295e trace_array_get_by_name -EXPORT_SYMBOL_GPL vmlinux 0x744ff704 relay_switch_subbuf -EXPORT_SYMBOL_GPL vmlinux 0x745f3c15 led_trigger_remove -EXPORT_SYMBOL_GPL vmlinux 0x74743880 usb_free_streams -EXPORT_SYMBOL_GPL vmlinux 0x747d558f mtk_eint_find_irq -EXPORT_SYMBOL_GPL vmlinux 0x7496c54d fsnotify -EXPORT_SYMBOL_GPL vmlinux 0x749dad4b irq_chip_set_vcpu_affinity_parent -EXPORT_SYMBOL_GPL vmlinux 0x74a22bb4 k3_udma_glue_push_rx_chn -EXPORT_SYMBOL_GPL vmlinux 0x74acc9a1 klist_add_head -EXPORT_SYMBOL_GPL vmlinux 0x74ad894b i2c_dw_configure_master -EXPORT_SYMBOL_GPL vmlinux 0x74b2e94f pwm_free -EXPORT_SYMBOL_GPL vmlinux 0x74b5ea68 lcm_not_zero -EXPORT_SYMBOL_GPL vmlinux 0x74b9a88d ata_host_alloc -EXPORT_SYMBOL_GPL vmlinux 0x74baf17a tracing_is_on -EXPORT_SYMBOL_GPL vmlinux 0x74bb821e fat_free_clusters -EXPORT_SYMBOL_GPL vmlinux 0x74c5bbc8 mtk_hw_get_value -EXPORT_SYMBOL_GPL vmlinux 0x74c7bffa stack_trace_snprint -EXPORT_SYMBOL_GPL vmlinux 0x74d6c6e2 fsnotify_destroy_mark -EXPORT_SYMBOL_GPL vmlinux 0x74ded741 devm_phy_package_join -EXPORT_SYMBOL_GPL vmlinux 0x74e73871 housekeeping_overridden -EXPORT_SYMBOL_GPL vmlinux 0x75133f6e visitor128 -EXPORT_SYMBOL_GPL vmlinux 0x75228d34 clk_hw_unregister -EXPORT_SYMBOL_GPL vmlinux 0x7522f3ba irq_modify_status -EXPORT_SYMBOL_GPL vmlinux 0x7523d522 rio_unlock_device -EXPORT_SYMBOL_GPL vmlinux 0x752dedfd tegra_agic_clear_active -EXPORT_SYMBOL_GPL vmlinux 0x754a4a32 add_to_page_cache_lru -EXPORT_SYMBOL_GPL vmlinux 0x754d34ea wakeup_source_add -EXPORT_SYMBOL_GPL vmlinux 0x754f543a security_inode_create -EXPORT_SYMBOL_GPL vmlinux 0x757a478c devm_pm_opp_register_set_opp_helper -EXPORT_SYMBOL_GPL vmlinux 0x7580478d sk_msg_free_partial -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 0x75bbb05c devm_rpi_firmware_get -EXPORT_SYMBOL_GPL vmlinux 0x75c7ea95 pci_epc_get -EXPORT_SYMBOL_GPL vmlinux 0x75cda15e ip6_local_out -EXPORT_SYMBOL_GPL vmlinux 0x75daed73 __traceiter_sched_util_est_se_tp -EXPORT_SYMBOL_GPL vmlinux 0x75dd4ebe of_overlay_remove -EXPORT_SYMBOL_GPL vmlinux 0x75e51945 __SCK__tp_func_error_report_end -EXPORT_SYMBOL_GPL vmlinux 0x75e57819 md_do_sync -EXPORT_SYMBOL_GPL vmlinux 0x75e9c735 pci_ats_disabled -EXPORT_SYMBOL_GPL vmlinux 0x75fb9062 arch_timer_read_counter -EXPORT_SYMBOL_GPL vmlinux 0x760f0212 switchdev_bridge_port_unoffload -EXPORT_SYMBOL_GPL vmlinux 0x761e0f2b devlink_param_unpublish -EXPORT_SYMBOL_GPL vmlinux 0x761fdf22 crypto_enqueue_request_head -EXPORT_SYMBOL_GPL vmlinux 0x7622623b fwnode_find_reference -EXPORT_SYMBOL_GPL vmlinux 0x762b7922 alloc_skb_for_msg -EXPORT_SYMBOL_GPL vmlinux 0x763a5c89 dst_cache_set_ip4 -EXPORT_SYMBOL_GPL vmlinux 0x763e197c __traceiter_rpm_return_int -EXPORT_SYMBOL_GPL vmlinux 0x764faf48 netdev_is_rx_handler_busy -EXPORT_SYMBOL_GPL vmlinux 0x764ffefa page_reporting_register -EXPORT_SYMBOL_GPL vmlinux 0x76513337 klist_next -EXPORT_SYMBOL_GPL vmlinux 0x76581dbd dev_pm_qos_update_user_latency_tolerance -EXPORT_SYMBOL_GPL vmlinux 0x765be21d xhci_run -EXPORT_SYMBOL_GPL vmlinux 0x7665ee72 crypto_dh_decode_key -EXPORT_SYMBOL_GPL vmlinux 0x766a37fb filemap_read -EXPORT_SYMBOL_GPL vmlinux 0x7672f9ef subsys_dev_iter_next -EXPORT_SYMBOL_GPL vmlinux 0x76790ada syscon_regmap_lookup_by_phandle_optional -EXPORT_SYMBOL_GPL vmlinux 0x7681946c unregister_pm_notifier -EXPORT_SYMBOL_GPL vmlinux 0x768d500a gpiochip_irqchip_add_domain -EXPORT_SYMBOL_GPL vmlinux 0x769cefb5 percpu_ref_switch_to_atomic -EXPORT_SYMBOL_GPL vmlinux 0x76a95cb2 metadata_dst_alloc_percpu -EXPORT_SYMBOL_GPL vmlinux 0x76b8997f wbc_detach_inode -EXPORT_SYMBOL_GPL vmlinux 0x76b94e87 __traceiter_block_rq_remap -EXPORT_SYMBOL_GPL vmlinux 0x76d680f6 acpi_dev_resource_memory -EXPORT_SYMBOL_GPL vmlinux 0x76d9b876 clk_set_rate -EXPORT_SYMBOL_GPL vmlinux 0x76e7b8a5 irq_domain_set_hwirq_and_chip -EXPORT_SYMBOL_GPL vmlinux 0x76e85b92 gnttab_request_free_callback -EXPORT_SYMBOL_GPL vmlinux 0x76eeeb0f sha384_zero_message_hash -EXPORT_SYMBOL_GPL vmlinux 0x76f3a061 tpm2_get_cc_attrs_tbl -EXPORT_SYMBOL_GPL vmlinux 0x7702c404 pci_enable_pcie_error_reporting -EXPORT_SYMBOL_GPL vmlinux 0x77105b5f input_device_enabled -EXPORT_SYMBOL_GPL vmlinux 0x7712771a unbind_from_irqhandler -EXPORT_SYMBOL_GPL vmlinux 0x77173145 blk_mq_alloc_sq_tag_set -EXPORT_SYMBOL_GPL vmlinux 0x7718cd1f bpf_prog_create -EXPORT_SYMBOL_GPL vmlinux 0x771c29cc gpiod_unexport -EXPORT_SYMBOL_GPL vmlinux 0x77222306 ring_buffer_read_page -EXPORT_SYMBOL_GPL vmlinux 0x7729cbdd task_handoff_register -EXPORT_SYMBOL_GPL vmlinux 0x773770d8 sysfs_file_change_owner -EXPORT_SYMBOL_GPL vmlinux 0x774f16ef __tracepoint_cpu_idle -EXPORT_SYMBOL_GPL vmlinux 0x7751c9d9 sata_pmp_qc_defer_cmd_switch -EXPORT_SYMBOL_GPL vmlinux 0x7754191c crypto_register_shash -EXPORT_SYMBOL_GPL vmlinux 0x7757b51a clk_unregister -EXPORT_SYMBOL_GPL vmlinux 0x775a68b8 __spi_register_driver -EXPORT_SYMBOL_GPL vmlinux 0x7762d451 pciserial_init_ports -EXPORT_SYMBOL_GPL vmlinux 0x776be514 gpiod_get_array_optional -EXPORT_SYMBOL_GPL vmlinux 0x777c5b02 crypto_grab_ahash -EXPORT_SYMBOL_GPL vmlinux 0x7781ad9e ata_bmdma_port_intr -EXPORT_SYMBOL_GPL vmlinux 0x778c9af1 da9052_enable_irq -EXPORT_SYMBOL_GPL vmlinux 0x7791e066 dw_pcie_read -EXPORT_SYMBOL_GPL vmlinux 0x779c864c wm8350_clear_bits -EXPORT_SYMBOL_GPL vmlinux 0x77ae495d usb_speed_string -EXPORT_SYMBOL_GPL vmlinux 0x77b003a0 clk_fixed_rate_ops -EXPORT_SYMBOL_GPL vmlinux 0x77cc4c54 usb_hcd_resume_root_hub -EXPORT_SYMBOL_GPL vmlinux 0x77cfe6d3 tty_get_pgrp -EXPORT_SYMBOL_GPL vmlinux 0x77e75be3 sfp_bus_put -EXPORT_SYMBOL_GPL vmlinux 0x77ecf68d memalloc_socks_key -EXPORT_SYMBOL_GPL vmlinux 0x77fd5a6f pm_generic_thaw_noirq -EXPORT_SYMBOL_GPL vmlinux 0x7803c4e8 of_devfreq_cooling_register_power -EXPORT_SYMBOL_GPL vmlinux 0x78158bb8 blk_mq_flush_busy_ctxs -EXPORT_SYMBOL_GPL vmlinux 0x78205137 btree_grim_visitor -EXPORT_SYMBOL_GPL vmlinux 0x7823e1c7 dev_pm_opp_get_suspend_opp_freq -EXPORT_SYMBOL_GPL vmlinux 0x782bc6cc extcon_get_property_capability -EXPORT_SYMBOL_GPL vmlinux 0x784f9d22 get_task_pid -EXPORT_SYMBOL_GPL vmlinux 0x78535872 i2c_mux_alloc -EXPORT_SYMBOL_GPL vmlinux 0x785a93b4 si_mem_available -EXPORT_SYMBOL_GPL vmlinux 0x785f3bcf fsl_mc_bus_dpni_type -EXPORT_SYMBOL_GPL vmlinux 0x786cc698 fl6_update_dst -EXPORT_SYMBOL_GPL vmlinux 0x787362b5 pci_epf_create -EXPORT_SYMBOL_GPL vmlinux 0x787c882b lzo1x_1_compress -EXPORT_SYMBOL_GPL vmlinux 0x7888d2d5 device_driver_attach -EXPORT_SYMBOL_GPL vmlinux 0x788bfbad ring_buffer_empty -EXPORT_SYMBOL_GPL vmlinux 0x78948742 devm_thermal_zone_of_sensor_register -EXPORT_SYMBOL_GPL vmlinux 0x78952861 __fat_fs_error -EXPORT_SYMBOL_GPL vmlinux 0x78958afa __sbitmap_queue_get -EXPORT_SYMBOL_GPL vmlinux 0x789c73d9 rcu_cpu_stall_suppress_at_boot -EXPORT_SYMBOL_GPL vmlinux 0x78a5588d call_switchdev_notifiers -EXPORT_SYMBOL_GPL vmlinux 0x78b06d9d ata_host_register -EXPORT_SYMBOL_GPL vmlinux 0x78b1df72 cros_ec_get_sensor_count -EXPORT_SYMBOL_GPL vmlinux 0x78b612fe dev_pm_qos_update_request -EXPORT_SYMBOL_GPL vmlinux 0x78ddb76b dmi_match -EXPORT_SYMBOL_GPL vmlinux 0x78e75e97 usb_free_coherent -EXPORT_SYMBOL_GPL vmlinux 0x78edcf9f i2c_new_smbus_alert_device -EXPORT_SYMBOL_GPL vmlinux 0x78fa4df5 led_compose_name -EXPORT_SYMBOL_GPL vmlinux 0x79114ace ata_port_schedule_eh -EXPORT_SYMBOL_GPL vmlinux 0x7915b234 ncsi_vlan_rx_add_vid -EXPORT_SYMBOL_GPL vmlinux 0x7918d817 memory_failure -EXPORT_SYMBOL_GPL vmlinux 0x79345cb9 register_kretprobe -EXPORT_SYMBOL_GPL vmlinux 0x7934aa08 register_kprobes -EXPORT_SYMBOL_GPL vmlinux 0x793972d5 __traceiter_devlink_hwmsg -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 0x794a0461 rockchip_pcie_disable_clocks -EXPORT_SYMBOL_GPL vmlinux 0x794b7271 orderly_reboot -EXPORT_SYMBOL_GPL vmlinux 0x794efc51 nvdimm_kobj -EXPORT_SYMBOL_GPL vmlinux 0x7958edaa crypto_lookup_template -EXPORT_SYMBOL_GPL vmlinux 0x796d88cf posix_acl_default_xattr_handler -EXPORT_SYMBOL_GPL vmlinux 0x7973a3db i2c_dw_probe_master -EXPORT_SYMBOL_GPL vmlinux 0x7976e4cd phy_power_off -EXPORT_SYMBOL_GPL vmlinux 0x7984acec serdev_device_write_wakeup -EXPORT_SYMBOL_GPL vmlinux 0x79896c50 ftrace_set_filter -EXPORT_SYMBOL_GPL vmlinux 0x79ac2987 iommu_sva_alloc_pasid -EXPORT_SYMBOL_GPL vmlinux 0x79ad6a1f usb_hcd_map_urb_for_dma -EXPORT_SYMBOL_GPL vmlinux 0x79b19037 wait_for_stable_page -EXPORT_SYMBOL_GPL vmlinux 0x79defbe1 kthread_should_park -EXPORT_SYMBOL_GPL vmlinux 0x79f697e4 lzorle1x_1_compress -EXPORT_SYMBOL_GPL vmlinux 0x79f9436a crypto_unregister_akcipher -EXPORT_SYMBOL_GPL vmlinux 0x79fba06e devm_rtc_device_register -EXPORT_SYMBOL_GPL vmlinux 0x79ff78dc synth_event_trace_array -EXPORT_SYMBOL_GPL vmlinux 0x7a2077eb badblocks_init -EXPORT_SYMBOL_GPL vmlinux 0x7a2348c3 ping_hash -EXPORT_SYMBOL_GPL vmlinux 0x7a33f504 power_supply_find_ocv2cap_table -EXPORT_SYMBOL_GPL vmlinux 0x7a43ed16 crypto_unregister_rngs -EXPORT_SYMBOL_GPL vmlinux 0x7a45faa6 edac_device_add_device -EXPORT_SYMBOL_GPL vmlinux 0x7a5399cd icc_enable -EXPORT_SYMBOL_GPL vmlinux 0x7a73e605 wm831x_isinkv_values -EXPORT_SYMBOL_GPL vmlinux 0x7a81541b async_synchronize_cookie -EXPORT_SYMBOL_GPL vmlinux 0x7a897011 dma_buf_fd -EXPORT_SYMBOL_GPL vmlinux 0x7a8a03f1 fwnode_property_present -EXPORT_SYMBOL_GPL vmlinux 0x7a944007 rcu_idle_enter -EXPORT_SYMBOL_GPL vmlinux 0x7a979b6d crypto_unregister_aead -EXPORT_SYMBOL_GPL vmlinux 0x7a97fe88 dax_layout_busy_page_range -EXPORT_SYMBOL_GPL vmlinux 0x7a98f4b4 copy_from_user_nofault -EXPORT_SYMBOL_GPL vmlinux 0x7a9dde31 regulator_get_current_limit -EXPORT_SYMBOL_GPL vmlinux 0x7a9e4c23 software_node_register_node_group -EXPORT_SYMBOL_GPL vmlinux 0x7aaaaa8b unmap_mapping_pages -EXPORT_SYMBOL_GPL vmlinux 0x7aae046a wp_shared_mapping_range -EXPORT_SYMBOL_GPL vmlinux 0x7ab13175 usb_wakeup_enabled_descendants -EXPORT_SYMBOL_GPL vmlinux 0x7ac10ad8 icst_clk_register -EXPORT_SYMBOL_GPL vmlinux 0x7ac5d81b cgrp_dfl_root -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 0x7af0622f set_cpus_allowed_ptr -EXPORT_SYMBOL_GPL vmlinux 0x7af83db2 pci_epc_deinit_notify -EXPORT_SYMBOL_GPL vmlinux 0x7afcb7db __kprobe_event_add_fields -EXPORT_SYMBOL_GPL vmlinux 0x7b0cbd01 acpi_debugfs_dir -EXPORT_SYMBOL_GPL vmlinux 0x7b11b146 devlink_region_create -EXPORT_SYMBOL_GPL vmlinux 0x7b141d3e __traceiter_napi_poll -EXPORT_SYMBOL_GPL vmlinux 0x7b178afe unlock_system_sleep -EXPORT_SYMBOL_GPL vmlinux 0x7b2163bd HYPERVISOR_tmem_op -EXPORT_SYMBOL_GPL vmlinux 0x7b4686c3 fuse_fill_super_common -EXPORT_SYMBOL_GPL vmlinux 0x7b4a2cfe devlink_port_attrs_pci_vf_set -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 0x7b78cedd sync_page_io -EXPORT_SYMBOL_GPL vmlinux 0x7b79876a inet_csk_listen_stop -EXPORT_SYMBOL_GPL vmlinux 0x7b7d8a4d pci_epc_get_features -EXPORT_SYMBOL_GPL vmlinux 0x7b8ea197 ethtool_params_from_link_mode -EXPORT_SYMBOL_GPL vmlinux 0x7b8f2029 ahci_platform_resume -EXPORT_SYMBOL_GPL vmlinux 0x7b90d1a9 bind_virq_to_irqhandler -EXPORT_SYMBOL_GPL vmlinux 0x7b9793a2 get_cpu_idle_time_us -EXPORT_SYMBOL_GPL vmlinux 0x7b9d15a4 blkg_conf_finish -EXPORT_SYMBOL_GPL vmlinux 0x7ba36157 rtc_read_time -EXPORT_SYMBOL_GPL vmlinux 0x7bb045a7 __request_percpu_irq -EXPORT_SYMBOL_GPL vmlinux 0x7bc98687 unregister_net_sysctl_table -EXPORT_SYMBOL_GPL vmlinux 0x7bce9ef2 pci_check_and_mask_intx -EXPORT_SYMBOL_GPL vmlinux 0x7bcfdd9d pci_set_cacheline_size -EXPORT_SYMBOL_GPL vmlinux 0x7c049e0c led_sysfs_enable -EXPORT_SYMBOL_GPL vmlinux 0x7c066cb6 trace_event_ignore_this_pid -EXPORT_SYMBOL_GPL vmlinux 0x7c08478f devfreq_event_is_enabled -EXPORT_SYMBOL_GPL vmlinux 0x7c11f934 rhashtable_walk_enter -EXPORT_SYMBOL_GPL vmlinux 0x7c291e86 show_rcu_tasks_trace_gp_kthread -EXPORT_SYMBOL_GPL vmlinux 0x7c2c7b4a perf_event_release_kernel -EXPORT_SYMBOL_GPL vmlinux 0x7c3d8a4b icc_bulk_put -EXPORT_SYMBOL_GPL vmlinux 0x7c3e736a rcu_nocb_cpu_offload -EXPORT_SYMBOL_GPL vmlinux 0x7c45e4b7 rio_local_get_device_id -EXPORT_SYMBOL_GPL vmlinux 0x7c45ff80 dpcon_get_attributes -EXPORT_SYMBOL_GPL vmlinux 0x7c5f3711 ioasid_unregister_allocator -EXPORT_SYMBOL_GPL vmlinux 0x7c6257cb pci_user_read_config_word -EXPORT_SYMBOL_GPL vmlinux 0x7c6f1008 securityfs_create_file -EXPORT_SYMBOL_GPL vmlinux 0x7c72c860 synchronize_srcu -EXPORT_SYMBOL_GPL vmlinux 0x7c89d4c1 bpf_prog_destroy -EXPORT_SYMBOL_GPL vmlinux 0x7c9381e1 fib_alias_hw_flags_set -EXPORT_SYMBOL_GPL vmlinux 0x7c983a5d dmi_walk -EXPORT_SYMBOL_GPL vmlinux 0x7c9a7371 clk_prepare -EXPORT_SYMBOL_GPL vmlinux 0x7c9fbb5f nd_region_dev -EXPORT_SYMBOL_GPL vmlinux 0x7ca64a0b __cookie_v4_init_sequence -EXPORT_SYMBOL_GPL vmlinux 0x7ca80989 gpiod_get_array_value -EXPORT_SYMBOL_GPL vmlinux 0x7ca85256 ms_hyperv -EXPORT_SYMBOL_GPL vmlinux 0x7cb593c6 __traceiter_tcp_send_reset -EXPORT_SYMBOL_GPL vmlinux 0x7cc55fd2 usb_acpi_set_power_state -EXPORT_SYMBOL_GPL vmlinux 0x7cceaf92 zs_pool_stats -EXPORT_SYMBOL_GPL vmlinux 0x7cd6f042 cpufreq_get_current_driver -EXPORT_SYMBOL_GPL vmlinux 0x7ce281fd pm_generic_suspend_noirq -EXPORT_SYMBOL_GPL vmlinux 0x7ceaf0d5 generic_handle_irq -EXPORT_SYMBOL_GPL vmlinux 0x7cee2fd8 int_active_memcg -EXPORT_SYMBOL_GPL vmlinux 0x7cf08ec7 crypto_skcipher_encrypt -EXPORT_SYMBOL_GPL vmlinux 0x7cf31e15 generic_handle_domain_irq -EXPORT_SYMBOL_GPL vmlinux 0x7cf6bd49 skb_segment_list -EXPORT_SYMBOL_GPL vmlinux 0x7cfbcd97 dev_nit_active -EXPORT_SYMBOL_GPL vmlinux 0x7d00c65b nd_synchronize -EXPORT_SYMBOL_GPL vmlinux 0x7d035460 extcon_dev_register -EXPORT_SYMBOL_GPL vmlinux 0x7d09f092 devm_of_platform_depopulate -EXPORT_SYMBOL_GPL vmlinux 0x7d0fde67 rockchip_register_softrst -EXPORT_SYMBOL_GPL vmlinux 0x7d1bb1d4 tnum_strn -EXPORT_SYMBOL_GPL vmlinux 0x7d1fa71d devm_regmap_field_free -EXPORT_SYMBOL_GPL vmlinux 0x7d3726bf bus_find_device -EXPORT_SYMBOL_GPL vmlinux 0x7d471321 zynqmp_pm_pinctrl_release -EXPORT_SYMBOL_GPL vmlinux 0x7d5314cf icc_std_aggregate -EXPORT_SYMBOL_GPL vmlinux 0x7d59dd46 pm_wq -EXPORT_SYMBOL_GPL vmlinux 0x7d5ff414 md_kick_rdev_from_array -EXPORT_SYMBOL_GPL vmlinux 0x7d600c2a sysfs_change_owner -EXPORT_SYMBOL_GPL vmlinux 0x7d66cd4e generic_device_group -EXPORT_SYMBOL_GPL vmlinux 0x7d78568d hrtimer_active -EXPORT_SYMBOL_GPL vmlinux 0x7d788637 __efivar_entry_delete -EXPORT_SYMBOL_GPL vmlinux 0x7da7d92f pm_generic_suspend -EXPORT_SYMBOL_GPL vmlinux 0x7db545a5 ata_sas_tport_delete -EXPORT_SYMBOL_GPL vmlinux 0x7dd7d75e usb_of_get_interface_node -EXPORT_SYMBOL_GPL vmlinux 0x7dd942a0 devlink_register -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 0x7de83d38 ahci_platform_enable_clks -EXPORT_SYMBOL_GPL vmlinux 0x7dfd84d1 srcu_batches_completed -EXPORT_SYMBOL_GPL vmlinux 0x7e0162db crypto_find_alg -EXPORT_SYMBOL_GPL vmlinux 0x7e042322 dev_pm_qos_expose_latency_tolerance -EXPORT_SYMBOL_GPL vmlinux 0x7e14cadb clk_hw_set_parent -EXPORT_SYMBOL_GPL vmlinux 0x7e350a06 do_splice_from -EXPORT_SYMBOL_GPL vmlinux 0x7e3bdecd __ftrace_vprintk -EXPORT_SYMBOL_GPL vmlinux 0x7e417beb sysfs_break_active_protection -EXPORT_SYMBOL_GPL vmlinux 0x7e419ccc ipv4_sk_redirect -EXPORT_SYMBOL_GPL vmlinux 0x7e488714 usb_unlocked_disable_lpm -EXPORT_SYMBOL_GPL vmlinux 0x7e4e7dff lp8788_write_byte -EXPORT_SYMBOL_GPL vmlinux 0x7e5db80b pstore_name_to_type -EXPORT_SYMBOL_GPL vmlinux 0x7e64181d usb_calc_bus_time -EXPORT_SYMBOL_GPL vmlinux 0x7e7983b0 devm_mbox_controller_unregister -EXPORT_SYMBOL_GPL vmlinux 0x7e7a47c9 pci_acpi_clear_companion_lookup_hook -EXPORT_SYMBOL_GPL vmlinux 0x7e7e3f58 ring_buffer_reset_cpu -EXPORT_SYMBOL_GPL vmlinux 0x7e917894 __SCK__tp_func_unmap -EXPORT_SYMBOL_GPL vmlinux 0x7e978b73 list_lru_walk_node -EXPORT_SYMBOL_GPL vmlinux 0x7e988f77 root_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0x7e9ac815 regmap_noinc_write -EXPORT_SYMBOL_GPL vmlinux 0x7e9bef96 l3mdev_table_lookup_register -EXPORT_SYMBOL_GPL vmlinux 0x7ea7f33e dma_buf_begin_cpu_access -EXPORT_SYMBOL_GPL vmlinux 0x7eb1795e __tracepoint_detach_device_from_domain -EXPORT_SYMBOL_GPL vmlinux 0x7eb808d0 add_cpu -EXPORT_SYMBOL_GPL vmlinux 0x7ebd9885 crypto_register_acomps -EXPORT_SYMBOL_GPL vmlinux 0x7ec89da9 ata_sff_pause -EXPORT_SYMBOL_GPL vmlinux 0x7ed893cf register_virtio_device -EXPORT_SYMBOL_GPL vmlinux 0x7eea6b8b pcap_adc_async -EXPORT_SYMBOL_GPL vmlinux 0x7eedb527 acpi_data_fwnode_ops -EXPORT_SYMBOL_GPL vmlinux 0x7ef1403d usb_hub_release_port -EXPORT_SYMBOL_GPL vmlinux 0x7f3e75f6 devm_of_platform_populate -EXPORT_SYMBOL_GPL vmlinux 0x7f443b2b genphy_c45_aneg_done -EXPORT_SYMBOL_GPL vmlinux 0x7f489484 fuse_do_open -EXPORT_SYMBOL_GPL vmlinux 0x7f508d73 balloon_page_dequeue -EXPORT_SYMBOL_GPL vmlinux 0x7f5e86e4 pinmux_generic_get_function_groups -EXPORT_SYMBOL_GPL vmlinux 0x7f673dc6 pid_nr_ns -EXPORT_SYMBOL_GPL vmlinux 0x7f6efac5 udp4_lib_lookup -EXPORT_SYMBOL_GPL vmlinux 0x7f736f1e em_pd_get -EXPORT_SYMBOL_GPL vmlinux 0x7f7cbc64 ip_tunnel_need_metadata -EXPORT_SYMBOL_GPL vmlinux 0x7f8475b2 da903x_write -EXPORT_SYMBOL_GPL vmlinux 0x7f93badf usb_enable_lpm -EXPORT_SYMBOL_GPL vmlinux 0x7f99af5d regmap_raw_read -EXPORT_SYMBOL_GPL vmlinux 0x7f9eebea xdp_master_redirect -EXPORT_SYMBOL_GPL vmlinux 0x7fa96509 erst_get_record_id_next -EXPORT_SYMBOL_GPL vmlinux 0x7faeec24 sb800_prefetch -EXPORT_SYMBOL_GPL vmlinux 0x7faef212 xfrm_dev_state_add -EXPORT_SYMBOL_GPL vmlinux 0x7fafb42a rtc_set_alarm -EXPORT_SYMBOL_GPL vmlinux 0x7fd4557b uhci_reset_hc -EXPORT_SYMBOL_GPL vmlinux 0x7fdfba8d sysfs_create_link_nowarn -EXPORT_SYMBOL_GPL vmlinux 0x7ff19c40 zynqmp_pm_set_requirement -EXPORT_SYMBOL_GPL vmlinux 0x7ff33398 clkdev_create -EXPORT_SYMBOL_GPL vmlinux 0x7ff69acb bus_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x8009e453 tpm_default_chip -EXPORT_SYMBOL_GPL vmlinux 0x800c7126 fscrypt_show_test_dummy_encryption -EXPORT_SYMBOL_GPL vmlinux 0x80135182 k3_ringacc_ring_pop_tail -EXPORT_SYMBOL_GPL vmlinux 0x8018297c raw_unhash_sk -EXPORT_SYMBOL_GPL vmlinux 0x80249200 ip6_datagram_connect_v6_only -EXPORT_SYMBOL_GPL vmlinux 0x8035bed7 rockchip_clk_protect_critical -EXPORT_SYMBOL_GPL vmlinux 0x803c3b76 devm_gpiod_put_array -EXPORT_SYMBOL_GPL vmlinux 0x8051c2bc usb_ifnum_to_if -EXPORT_SYMBOL_GPL vmlinux 0x805667cf devlink_fmsg_u64_put -EXPORT_SYMBOL_GPL vmlinux 0x8057ff7b elv_unregister -EXPORT_SYMBOL_GPL vmlinux 0x806327ea imx_clk_hw_cpu -EXPORT_SYMBOL_GPL vmlinux 0x80665e93 yield_to -EXPORT_SYMBOL_GPL vmlinux 0x807fdcc4 call_rcu_tasks_rude -EXPORT_SYMBOL_GPL vmlinux 0x8084efcf regulator_list_voltage -EXPORT_SYMBOL_GPL vmlinux 0x80876e24 xhci_get_ep_ctx -EXPORT_SYMBOL_GPL vmlinux 0x8089e3dd bpf_prog_put -EXPORT_SYMBOL_GPL vmlinux 0x808ec1a3 crypto_alg_tested -EXPORT_SYMBOL_GPL vmlinux 0x80a8a192 ipv6_dup_options -EXPORT_SYMBOL_GPL vmlinux 0x80badff4 __tracepoint_block_unplug -EXPORT_SYMBOL_GPL vmlinux 0x80c01d17 pm_clk_suspend -EXPORT_SYMBOL_GPL vmlinux 0x80c64430 phy_pm_runtime_put -EXPORT_SYMBOL_GPL vmlinux 0x80c68137 nf_log_buf_close -EXPORT_SYMBOL_GPL vmlinux 0x80c68406 i2c_slave_register -EXPORT_SYMBOL_GPL vmlinux 0x80c9efc8 irq_domain_create_hierarchy -EXPORT_SYMBOL_GPL vmlinux 0x80ca6f7c efivars_kobject -EXPORT_SYMBOL_GPL vmlinux 0x80d5e57a mpi_free -EXPORT_SYMBOL_GPL vmlinux 0x80e0b1f4 nf_queue_nf_hook_drop -EXPORT_SYMBOL_GPL vmlinux 0x80e16e9b fsl_mc_device_group -EXPORT_SYMBOL_GPL vmlinux 0x80e4ffdc gpiochip_line_is_valid -EXPORT_SYMBOL_GPL vmlinux 0x80e5d3d4 scsi_ioctl_block_when_processing_errors -EXPORT_SYMBOL_GPL vmlinux 0x80ee66fb fork_usermode_driver -EXPORT_SYMBOL_GPL vmlinux 0x80fa63bd hwspin_lock_request_specific -EXPORT_SYMBOL_GPL vmlinux 0x8102bbd6 scsi_autopm_get_device -EXPORT_SYMBOL_GPL vmlinux 0x810d50fe tcp_sendpage_locked -EXPORT_SYMBOL_GPL vmlinux 0x811dc334 usb_unregister_notify -EXPORT_SYMBOL_GPL vmlinux 0x812dc847 fwnode_device_is_available -EXPORT_SYMBOL_GPL vmlinux 0x814e2386 kcpustat_field -EXPORT_SYMBOL_GPL vmlinux 0x815588a6 clk_enable -EXPORT_SYMBOL_GPL vmlinux 0x815fda83 sed_ioctl -EXPORT_SYMBOL_GPL vmlinux 0x8165ce17 posix_acl_access_xattr_handler -EXPORT_SYMBOL_GPL vmlinux 0x816a41ca cpufreq_update_limits -EXPORT_SYMBOL_GPL vmlinux 0x8176e1d7 kthread_flush_worker -EXPORT_SYMBOL_GPL vmlinux 0x8180cede asn1_encode_sequence -EXPORT_SYMBOL_GPL vmlinux 0x8186255a arm64_mm_context_put -EXPORT_SYMBOL_GPL vmlinux 0x8189285d __nvdimm_create -EXPORT_SYMBOL_GPL vmlinux 0x81910f7e anon_inode_getfd_secure -EXPORT_SYMBOL_GPL vmlinux 0x81929b50 ata_cable_80wire -EXPORT_SYMBOL_GPL vmlinux 0x81a7f541 percpu_ref_init -EXPORT_SYMBOL_GPL vmlinux 0x81aa78d8 zynqmp_pm_aes_engine -EXPORT_SYMBOL_GPL vmlinux 0x81b03377 efivar_entry_set_safe -EXPORT_SYMBOL_GPL vmlinux 0x81be5573 tpm_try_get_ops -EXPORT_SYMBOL_GPL vmlinux 0x81de9301 rio_get_comptag -EXPORT_SYMBOL_GPL vmlinux 0x81e2bdf4 generic_handle_irq_safe -EXPORT_SYMBOL_GPL vmlinux 0x81eb29bb regmap_write_async -EXPORT_SYMBOL_GPL vmlinux 0x81ec608e blk_ksm_intersect_modes -EXPORT_SYMBOL_GPL vmlinux 0x81f2505a __devm_clk_hw_register_divider -EXPORT_SYMBOL_GPL vmlinux 0x81f372a2 unregister_ftrace_export -EXPORT_SYMBOL_GPL vmlinux 0x82085016 usb_poison_urb -EXPORT_SYMBOL_GPL vmlinux 0x821a89d9 of_genpd_add_subdomain -EXPORT_SYMBOL_GPL vmlinux 0x8220a38e k3_ringacc_get_ring_id -EXPORT_SYMBOL_GPL vmlinux 0x82226c53 pinctrl_unregister_mappings -EXPORT_SYMBOL_GPL vmlinux 0x822ea1ae __acpi_node_get_property_reference -EXPORT_SYMBOL_GPL vmlinux 0x823fe1c8 pci_find_vsec_capability -EXPORT_SYMBOL_GPL vmlinux 0x8260c60f __tcp_send_ack -EXPORT_SYMBOL_GPL vmlinux 0x82612507 ip6_append_data -EXPORT_SYMBOL_GPL vmlinux 0x82695eb5 power_supply_changed -EXPORT_SYMBOL_GPL vmlinux 0x826ed177 bd_prepare_to_claim -EXPORT_SYMBOL_GPL vmlinux 0x82774cf7 ip_valid_fib_dump_req -EXPORT_SYMBOL_GPL vmlinux 0x827e61f8 acpi_has_watchdog -EXPORT_SYMBOL_GPL vmlinux 0x8280ac3c rtc_class_open -EXPORT_SYMBOL_GPL vmlinux 0x829dfbb1 ata_port_freeze -EXPORT_SYMBOL_GPL vmlinux 0x82a80545 __SCK__tp_func_fdb_delete -EXPORT_SYMBOL_GPL vmlinux 0x82b13409 handle_fasteoi_ack_irq -EXPORT_SYMBOL_GPL vmlinux 0x82bbf30b __tracepoint_map -EXPORT_SYMBOL_GPL vmlinux 0x82c10eb9 clk_hw_get_parent_by_index -EXPORT_SYMBOL_GPL vmlinux 0x82c554f7 blk_trace_startstop -EXPORT_SYMBOL_GPL vmlinux 0x82c61c28 ata_pci_shutdown_one -EXPORT_SYMBOL_GPL vmlinux 0x82c782da tps6586x_irq_get_virq -EXPORT_SYMBOL_GPL vmlinux 0x82d33554 devm_regulator_get_exclusive -EXPORT_SYMBOL_GPL vmlinux 0x82d3793b __clocksource_register_scale -EXPORT_SYMBOL_GPL vmlinux 0x82d79b51 sysctl_vfs_cache_pressure -EXPORT_SYMBOL_GPL vmlinux 0x82d7ffa2 crypto_register_scomps -EXPORT_SYMBOL_GPL vmlinux 0x82de6047 __fsl_mc_driver_register -EXPORT_SYMBOL_GPL vmlinux 0x82f3977b pci_find_next_ht_capability -EXPORT_SYMBOL_GPL vmlinux 0x82fe3c93 uart_insert_char -EXPORT_SYMBOL_GPL vmlinux 0x83015f50 skb_copy_ubufs -EXPORT_SYMBOL_GPL vmlinux 0x83044cd5 of_get_fb_videomode -EXPORT_SYMBOL_GPL vmlinux 0x831b11ea task_user_regset_view -EXPORT_SYMBOL_GPL vmlinux 0x832761fd __spi_alloc_controller -EXPORT_SYMBOL_GPL vmlinux 0x8339df73 klist_add_behind -EXPORT_SYMBOL_GPL vmlinux 0x8349a895 nvmem_device_put -EXPORT_SYMBOL_GPL vmlinux 0x835124d4 rhashtable_walk_stop -EXPORT_SYMBOL_GPL vmlinux 0x8353dfff acpi_os_get_iomem -EXPORT_SYMBOL_GPL vmlinux 0x835b4871 ahci_platform_resume_host -EXPORT_SYMBOL_GPL vmlinux 0x835dcf0a blkg_conf_prep -EXPORT_SYMBOL_GPL vmlinux 0x835eed5c trace_array_destroy -EXPORT_SYMBOL_GPL vmlinux 0x838dfe8b ata_wait_register -EXPORT_SYMBOL_GPL vmlinux 0x8395d0a9 dprc_get_obj_count -EXPORT_SYMBOL_GPL vmlinux 0x839f51be trace_seq_path -EXPORT_SYMBOL_GPL vmlinux 0x83c01722 tpm_chip_unregister -EXPORT_SYMBOL_GPL vmlinux 0x83c4d61d device_release_driver -EXPORT_SYMBOL_GPL vmlinux 0x83e92feb task_cputime_adjusted -EXPORT_SYMBOL_GPL vmlinux 0x83ea7089 driver_remove_file -EXPORT_SYMBOL_GPL vmlinux 0x83f8472d kthread_func -EXPORT_SYMBOL_GPL vmlinux 0x83fa2f6f pci_disable_ats -EXPORT_SYMBOL_GPL vmlinux 0x84026008 tegra210_clk_emc_attach -EXPORT_SYMBOL_GPL vmlinux 0x84106f36 devlink_trap_ctx_priv -EXPORT_SYMBOL_GPL vmlinux 0x8411b1ce serdev_device_open -EXPORT_SYMBOL_GPL vmlinux 0x8418b301 extcon_set_property -EXPORT_SYMBOL_GPL vmlinux 0x8419b8e2 mmc_switch -EXPORT_SYMBOL_GPL vmlinux 0x841af956 devlink_port_type_ib_set -EXPORT_SYMBOL_GPL vmlinux 0x841b5141 regcache_sync_region -EXPORT_SYMBOL_GPL vmlinux 0x841e6996 of_k3_ringacc_get_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0x8422db87 tps6586x_get_version -EXPORT_SYMBOL_GPL vmlinux 0x84264ced fs_umode_to_ftype -EXPORT_SYMBOL_GPL vmlinux 0x8429b2ad trace_array_put -EXPORT_SYMBOL_GPL vmlinux 0x842df19b add_disk_randomness -EXPORT_SYMBOL_GPL vmlinux 0x843af7d2 event_triggers_post_call -EXPORT_SYMBOL_GPL vmlinux 0x843d70ef acpi_is_root_bridge -EXPORT_SYMBOL_GPL vmlinux 0x844cb904 mtk_mutex_remove_comp -EXPORT_SYMBOL_GPL vmlinux 0x844d425f dev_pm_qos_expose_latency_limit -EXPORT_SYMBOL_GPL vmlinux 0x84502a47 blk_status_to_errno -EXPORT_SYMBOL_GPL vmlinux 0x8451de12 btree_update -EXPORT_SYMBOL_GPL vmlinux 0x845951db pm_runtime_set_memalloc_noio -EXPORT_SYMBOL_GPL vmlinux 0x845bf645 dev_pm_opp_xlate_required_opp -EXPORT_SYMBOL_GPL vmlinux 0x845d7fb5 usb_bulk_msg -EXPORT_SYMBOL_GPL vmlinux 0x845dbf3b scatterwalk_map_and_copy -EXPORT_SYMBOL_GPL vmlinux 0x8462cb62 atapi_cmd_type -EXPORT_SYMBOL_GPL vmlinux 0x8463ff1a devm_pinctrl_get -EXPORT_SYMBOL_GPL vmlinux 0x8466906e rq_flush_dcache_pages -EXPORT_SYMBOL_GPL vmlinux 0x84672229 clk_hw_set_rate_range -EXPORT_SYMBOL_GPL vmlinux 0x846e6c9c dpbp_enable -EXPORT_SYMBOL_GPL vmlinux 0x8472db2c blk_freeze_queue_start -EXPORT_SYMBOL_GPL vmlinux 0x848116e6 devlink_dpipe_headers_register -EXPORT_SYMBOL_GPL vmlinux 0x84898f8e phy_led_triggers_unregister -EXPORT_SYMBOL_GPL vmlinux 0x848c3daa devm_regulator_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x848f054e wait_on_page_writeback -EXPORT_SYMBOL_GPL vmlinux 0x84980d07 ip6_sk_redirect -EXPORT_SYMBOL_GPL vmlinux 0x84a8d0eb of_changeset_revert -EXPORT_SYMBOL_GPL vmlinux 0x84ae1826 __traceiter_pelt_cfs_tp -EXPORT_SYMBOL_GPL vmlinux 0x84b2feae devlink_params_unregister -EXPORT_SYMBOL_GPL vmlinux 0x84b8e2d6 crypto_stats_aead_decrypt -EXPORT_SYMBOL_GPL vmlinux 0x84d2a3e6 __traceiter_xdp_bulk_tx -EXPORT_SYMBOL_GPL vmlinux 0x84e6d8a9 ping_seq_stop -EXPORT_SYMBOL_GPL vmlinux 0x84ef27f5 synth_event_add_fields -EXPORT_SYMBOL_GPL vmlinux 0x84f285ef inet6_csk_xmit -EXPORT_SYMBOL_GPL vmlinux 0x84f2977d irq_create_of_mapping -EXPORT_SYMBOL_GPL vmlinux 0x84f89cb7 regmap_attach_dev -EXPORT_SYMBOL_GPL vmlinux 0x84fba7dd usb_control_msg_send -EXPORT_SYMBOL_GPL vmlinux 0x8506baa8 clk_unregister_gate -EXPORT_SYMBOL_GPL vmlinux 0x850bb6db devlink_health_reporter_destroy -EXPORT_SYMBOL_GPL vmlinux 0x850c9366 iomap_ioend_try_merge -EXPORT_SYMBOL_GPL vmlinux 0x851e6003 usb_phy_roothub_calibrate -EXPORT_SYMBOL_GPL vmlinux 0x851fe124 __SCK__tp_func_fib6_table_lookup -EXPORT_SYMBOL_GPL vmlinux 0x8520a65f mmc_pwrseq_unregister -EXPORT_SYMBOL_GPL vmlinux 0x85267a41 __platform_register_drivers -EXPORT_SYMBOL_GPL vmlinux 0x85287acb sk_free_unlock_clone -EXPORT_SYMBOL_GPL vmlinux 0x853124aa dax_driver_unregister -EXPORT_SYMBOL_GPL vmlinux 0x85434950 usb_bus_idr_lock -EXPORT_SYMBOL_GPL vmlinux 0x854aedb7 device_property_read_u64_array -EXPORT_SYMBOL_GPL vmlinux 0x85540ebc nvmem_cell_put -EXPORT_SYMBOL_GPL vmlinux 0x8559e7ee to_nvdimm -EXPORT_SYMBOL_GPL vmlinux 0x8565f47a uhci_check_and_reset_hc -EXPORT_SYMBOL_GPL vmlinux 0x857353a1 __pm_runtime_suspend -EXPORT_SYMBOL_GPL vmlinux 0x85799006 digsig_verify -EXPORT_SYMBOL_GPL vmlinux 0x857a8891 nvmem_cell_read_variable_le_u32 -EXPORT_SYMBOL_GPL vmlinux 0x8584642a blk_mq_free_request -EXPORT_SYMBOL_GPL vmlinux 0x85862277 ioasid_find -EXPORT_SYMBOL_GPL vmlinux 0x8587e91c bsg_job_put -EXPORT_SYMBOL_GPL vmlinux 0x85935a61 acpi_dev_irq_flags -EXPORT_SYMBOL_GPL vmlinux 0x85abd512 platform_irq_count -EXPORT_SYMBOL_GPL vmlinux 0x85b8f76d exportfs_decode_fh -EXPORT_SYMBOL_GPL vmlinux 0x85b9d3f8 mc_send_command -EXPORT_SYMBOL_GPL vmlinux 0x85c54b61 efivar_validate -EXPORT_SYMBOL_GPL vmlinux 0x85ca38a2 ata_ncq_sdev_attrs -EXPORT_SYMBOL_GPL vmlinux 0x85db90cd of_property_read_variable_u32_array -EXPORT_SYMBOL_GPL vmlinux 0x85eed1be iopf_queue_discard_partial -EXPORT_SYMBOL_GPL vmlinux 0x85f9f516 cpufreq_freq_attr_scaling_available_freqs -EXPORT_SYMBOL_GPL vmlinux 0x860e695b acpi_cppc_processor_exit -EXPORT_SYMBOL_GPL vmlinux 0x86115785 xhci_hub_control -EXPORT_SYMBOL_GPL vmlinux 0x862258db timecounter_init -EXPORT_SYMBOL_GPL vmlinux 0x862775f0 ipv6_opt_accepted -EXPORT_SYMBOL_GPL vmlinux 0x862bb17b linear_range_values_in_range_array -EXPORT_SYMBOL_GPL vmlinux 0x862ee90f meson_sm_get -EXPORT_SYMBOL_GPL vmlinux 0x863d08d8 devm_kmemdup -EXPORT_SYMBOL_GPL vmlinux 0x864334c0 rockchip_clk_register_plls -EXPORT_SYMBOL_GPL vmlinux 0x864556c2 tegra_agic_clear_pending -EXPORT_SYMBOL_GPL vmlinux 0x865332a2 usb_driver_release_interface -EXPORT_SYMBOL_GPL vmlinux 0x86585a33 devlink_fmsg_obj_nest_start -EXPORT_SYMBOL_GPL vmlinux 0x866174f0 pci_epf_type_add_cfs -EXPORT_SYMBOL_GPL vmlinux 0x86623fd7 notify_remote_via_irq -EXPORT_SYMBOL_GPL vmlinux 0x86700220 acpi_get_cpuid -EXPORT_SYMBOL_GPL vmlinux 0x8677245d unregister_switchdev_blocking_notifier -EXPORT_SYMBOL_GPL vmlinux 0x867787ce dst_blackhole_mtu -EXPORT_SYMBOL_GPL vmlinux 0x868784cb __symbol_get -EXPORT_SYMBOL_GPL vmlinux 0x868eb507 clk_fractional_divider_ops -EXPORT_SYMBOL_GPL vmlinux 0x869037de scsi_internal_device_unblock_nowait -EXPORT_SYMBOL_GPL vmlinux 0x8695340c mmc_cmdq_disable -EXPORT_SYMBOL_GPL vmlinux 0x86b1ceb3 tegra210_set_sata_pll_seq_sw -EXPORT_SYMBOL_GPL vmlinux 0x86bc74e7 of_tegra_bpmp_get -EXPORT_SYMBOL_GPL vmlinux 0x86c02001 ipi_send_mask -EXPORT_SYMBOL_GPL vmlinux 0x86c0f15b pci_epf_remove_vepf -EXPORT_SYMBOL_GPL vmlinux 0x86c43a8c cper_estatus_check -EXPORT_SYMBOL_GPL vmlinux 0x86c83908 raw_hash_sk -EXPORT_SYMBOL_GPL vmlinux 0x86c961b3 __set_dax_synchronous -EXPORT_SYMBOL_GPL vmlinux 0x86db449e fixed_phy_register_with_gpiod -EXPORT_SYMBOL_GPL vmlinux 0x86dda6ef rtm_getroute_parse_ip_proto -EXPORT_SYMBOL_GPL vmlinux 0x86ed32eb regulator_set_active_discharge_regmap -EXPORT_SYMBOL_GPL vmlinux 0x86f684b6 free_iova -EXPORT_SYMBOL_GPL vmlinux 0x86f6b99d synchronize_rcu_expedited -EXPORT_SYMBOL_GPL vmlinux 0x86f85114 net_dec_egress_queue -EXPORT_SYMBOL_GPL vmlinux 0x87017e0a dpcon_open -EXPORT_SYMBOL_GPL vmlinux 0x8704f8f2 scmi_protocol_register -EXPORT_SYMBOL_GPL vmlinux 0x8706285b usb_hcd_pci_remove -EXPORT_SYMBOL_GPL vmlinux 0x870e16b7 xen_test_irq_shared -EXPORT_SYMBOL_GPL vmlinux 0x8710527e sched_show_task -EXPORT_SYMBOL_GPL vmlinux 0x872ce701 nvdimm_cmd_mask -EXPORT_SYMBOL_GPL vmlinux 0x873c05bc __traceiter_attach_device_to_domain -EXPORT_SYMBOL_GPL vmlinux 0x874b6df3 fat_fill_super -EXPORT_SYMBOL_GPL vmlinux 0x875539cb dev_set_name -EXPORT_SYMBOL_GPL vmlinux 0x875582b7 nvmem_del_cell_table -EXPORT_SYMBOL_GPL vmlinux 0x87581b43 devm_regmap_field_bulk_alloc -EXPORT_SYMBOL_GPL vmlinux 0x876214b8 dm_bio_get_target_bio_nr -EXPORT_SYMBOL_GPL vmlinux 0x87630130 pci_rescan_bus -EXPORT_SYMBOL_GPL vmlinux 0x8778b627 dev_pm_opp_remove_table -EXPORT_SYMBOL_GPL vmlinux 0x8783ce39 fsstack_copy_inode_size -EXPORT_SYMBOL_GPL vmlinux 0x87867f0c platform_device_add -EXPORT_SYMBOL_GPL vmlinux 0x8792eb20 regcache_mark_dirty -EXPORT_SYMBOL_GPL vmlinux 0x8794c1a8 ping_getfrag -EXPORT_SYMBOL_GPL vmlinux 0x879f7904 virtio_max_dma_size -EXPORT_SYMBOL_GPL vmlinux 0x87a19af3 raw_v6_hashinfo -EXPORT_SYMBOL_GPL vmlinux 0x87a61fd5 inode_congested -EXPORT_SYMBOL_GPL vmlinux 0x87a78656 scsi_build_sense -EXPORT_SYMBOL_GPL vmlinux 0x87be6301 fat_truncate_time -EXPORT_SYMBOL_GPL vmlinux 0x87d0a4d8 uprobe_register -EXPORT_SYMBOL_GPL vmlinux 0x87ef2a98 scmi_driver_unregister -EXPORT_SYMBOL_GPL vmlinux 0x87f7e951 rdev_set_badblocks -EXPORT_SYMBOL_GPL vmlinux 0x88021a74 pci_generic_ecam_ops -EXPORT_SYMBOL_GPL vmlinux 0x8810e36e pci_bridge_emul_conf_read -EXPORT_SYMBOL_GPL vmlinux 0x882c4c4d usb_phy_set_charger_state -EXPORT_SYMBOL_GPL vmlinux 0x883ffb58 class_compat_remove_link -EXPORT_SYMBOL_GPL vmlinux 0x884140df ata_bmdma_port_start -EXPORT_SYMBOL_GPL vmlinux 0x884ab2e7 meson_axg_pmx_ops -EXPORT_SYMBOL_GPL vmlinux 0x885528a6 ring_buffer_discard_commit -EXPORT_SYMBOL_GPL vmlinux 0x88679530 sdio_register_driver -EXPORT_SYMBOL_GPL vmlinux 0x88735b3e dev_pm_opp_get_opp_table -EXPORT_SYMBOL_GPL vmlinux 0x887ed144 strp_data_ready -EXPORT_SYMBOL_GPL vmlinux 0x8883d1d6 md_stop -EXPORT_SYMBOL_GPL vmlinux 0x889b3291 regulator_set_voltage_rdev -EXPORT_SYMBOL_GPL vmlinux 0x889d8955 thermal_cooling_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0x88ab6fe3 kgdb_active -EXPORT_SYMBOL_GPL vmlinux 0x88b4ae92 ring_buffer_normalize_time_stamp -EXPORT_SYMBOL_GPL vmlinux 0x88c83e3a iomap_seek_hole -EXPORT_SYMBOL_GPL vmlinux 0x88cc2a43 pm_wakeup_ws_event -EXPORT_SYMBOL_GPL vmlinux 0x88cd7a9a k3_ringacc_ring_get_occ -EXPORT_SYMBOL_GPL vmlinux 0x88d1297a __root_device_register -EXPORT_SYMBOL_GPL vmlinux 0x88fb14c5 __reset_control_bulk_get -EXPORT_SYMBOL_GPL vmlinux 0x8906971c rt_mutex_lock -EXPORT_SYMBOL_GPL vmlinux 0x8907a4fb fwnode_property_read_u32_array -EXPORT_SYMBOL_GPL vmlinux 0x8907fb49 __netdev_watchdog_up -EXPORT_SYMBOL_GPL vmlinux 0x890ae77f crypto_alloc_rng -EXPORT_SYMBOL_GPL vmlinux 0x890f4f97 __kprobe_event_gen_cmd_start -EXPORT_SYMBOL_GPL vmlinux 0x891a5a7f gnttab_max_grant_frames -EXPORT_SYMBOL_GPL vmlinux 0x891d888d usb_get_descriptor -EXPORT_SYMBOL_GPL vmlinux 0x892236d6 wm8350_reg_write -EXPORT_SYMBOL_GPL vmlinux 0x8924eb1e rcu_force_quiescent_state -EXPORT_SYMBOL_GPL vmlinux 0x892b69a3 dw_pcie_host_init -EXPORT_SYMBOL_GPL vmlinux 0x893abbdd devlink_fmsg_u32_pair_put -EXPORT_SYMBOL_GPL vmlinux 0x894257d1 devfreq_event_remove_edev -EXPORT_SYMBOL_GPL vmlinux 0x89476b16 devm_regmap_del_irq_chip -EXPORT_SYMBOL_GPL vmlinux 0x89481776 pci_sriov_configure_simple -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 0x89564b98 sysfs_create_group -EXPORT_SYMBOL_GPL vmlinux 0x895a1ae1 __regmap_init_spi -EXPORT_SYMBOL_GPL vmlinux 0x895be95a ata_port_pbar_desc -EXPORT_SYMBOL_GPL vmlinux 0x896524af inet_csk_listen_start -EXPORT_SYMBOL_GPL vmlinux 0x896d6014 crypto_aead_setkey -EXPORT_SYMBOL_GPL vmlinux 0x8973aa84 securityfs_remove -EXPORT_SYMBOL_GPL vmlinux 0x897518e1 iomap_writepages -EXPORT_SYMBOL_GPL vmlinux 0x897b99ab crypto_mod_get -EXPORT_SYMBOL_GPL vmlinux 0x8984fd62 scsi_dh_activate -EXPORT_SYMBOL_GPL vmlinux 0x89876619 __rio_local_read_config_16 -EXPORT_SYMBOL_GPL vmlinux 0x89925556 sfp_register_socket -EXPORT_SYMBOL_GPL vmlinux 0x89a4476d HYPERVISOR_multicall -EXPORT_SYMBOL_GPL vmlinux 0x89ae7aa0 rsa_parse_pub_key -EXPORT_SYMBOL_GPL vmlinux 0x89b6043b pinctrl_generic_remove_group -EXPORT_SYMBOL_GPL vmlinux 0x89bbafc6 usb_register_notify -EXPORT_SYMBOL_GPL vmlinux 0x89c429e4 __tracepoint_mc_event -EXPORT_SYMBOL_GPL vmlinux 0x89c8847d hwmon_device_register_with_groups -EXPORT_SYMBOL_GPL vmlinux 0x89e340cf acpi_bus_get_ejd -EXPORT_SYMBOL_GPL vmlinux 0x89e683ee nvdimm_blk_region_create -EXPORT_SYMBOL_GPL vmlinux 0x8a092a53 __skb_tstamp_tx -EXPORT_SYMBOL_GPL vmlinux 0x8a18b731 gpiochip_generic_request -EXPORT_SYMBOL_GPL vmlinux 0x8a1de32b sdio_unregister_driver -EXPORT_SYMBOL_GPL vmlinux 0x8a24862b fib_nh_common_init -EXPORT_SYMBOL_GPL vmlinux 0x8a299882 acpi_dev_suspend -EXPORT_SYMBOL_GPL vmlinux 0x8a3f84ba linear_range_get_selector_low -EXPORT_SYMBOL_GPL vmlinux 0x8a45a555 acpi_unregister_wakeup_handler -EXPORT_SYMBOL_GPL vmlinux 0x8a49e284 usb_find_interface -EXPORT_SYMBOL_GPL vmlinux 0x8a4fdfb9 ethnl_cable_test_alloc -EXPORT_SYMBOL_GPL vmlinux 0x8a4ff414 usb_add_phy -EXPORT_SYMBOL_GPL vmlinux 0x8a554a36 mpc8xxx_spi_strmode -EXPORT_SYMBOL_GPL vmlinux 0x8a573765 led_trigger_unregister_simple -EXPORT_SYMBOL_GPL vmlinux 0x8a5f4f3e irq_domain_push_irq -EXPORT_SYMBOL_GPL vmlinux 0x8a62b81b sfp_upstream_stop -EXPORT_SYMBOL_GPL vmlinux 0x8a6eacef devm_extcon_dev_allocate -EXPORT_SYMBOL_GPL vmlinux 0x8a83fb45 mpi_point_free_parts -EXPORT_SYMBOL_GPL vmlinux 0x8a8dde8e cpufreq_driver_target -EXPORT_SYMBOL_GPL vmlinux 0x8a9b68b5 iommu_device_sysfs_add -EXPORT_SYMBOL_GPL vmlinux 0x8aa5e251 sock_prot_inuse_add -EXPORT_SYMBOL_GPL vmlinux 0x8aae7e00 user_describe -EXPORT_SYMBOL_GPL vmlinux 0x8ab32730 iomap_dio_iopoll -EXPORT_SYMBOL_GPL vmlinux 0x8aba8842 thermal_zone_device_register -EXPORT_SYMBOL_GPL vmlinux 0x8abacc47 get_max_files -EXPORT_SYMBOL_GPL vmlinux 0x8abe3bd1 iommu_unregister_device_fault_handler -EXPORT_SYMBOL_GPL vmlinux 0x8ac3b920 clockevents_unbind_device -EXPORT_SYMBOL_GPL vmlinux 0x8ada1467 __audit_inode_child -EXPORT_SYMBOL_GPL vmlinux 0x8af53a9e tcp_twsk_destructor -EXPORT_SYMBOL_GPL vmlinux 0x8b149c36 clk_is_match -EXPORT_SYMBOL_GPL vmlinux 0x8b1bf86e virtqueue_enable_cb -EXPORT_SYMBOL_GPL vmlinux 0x8b1e3ae8 list_lru_destroy -EXPORT_SYMBOL_GPL vmlinux 0x8b33c94e gpiochip_line_is_persistent -EXPORT_SYMBOL_GPL vmlinux 0x8b341dad trace_output_call -EXPORT_SYMBOL_GPL vmlinux 0x8b5779d8 __auxiliary_driver_register -EXPORT_SYMBOL_GPL vmlinux 0x8b650752 mtk_mutex_release -EXPORT_SYMBOL_GPL vmlinux 0x8b65082a fscrypt_ioctl_get_policy_ex -EXPORT_SYMBOL_GPL vmlinux 0x8b7a698b __tracepoint_xdp_exception -EXPORT_SYMBOL_GPL vmlinux 0x8b819e8a fib_rules_register -EXPORT_SYMBOL_GPL vmlinux 0x8b8b7ed8 rio_add_mport_pw_handler -EXPORT_SYMBOL_GPL vmlinux 0x8b955d97 usb_for_each_port -EXPORT_SYMBOL_GPL vmlinux 0x8b9a760a fsl_mc_driver_unregister -EXPORT_SYMBOL_GPL vmlinux 0x8b9e567f xdp_rxq_info_unreg_mem_model -EXPORT_SYMBOL_GPL vmlinux 0x8ba0eb15 hv_set_vpreg -EXPORT_SYMBOL_GPL vmlinux 0x8ba5afe9 HYPERVISOR_memory_op -EXPORT_SYMBOL_GPL vmlinux 0x8baf74d3 blk_mq_debugfs_rq_show -EXPORT_SYMBOL_GPL vmlinux 0x8bc76ba8 pci_d3cold_enable -EXPORT_SYMBOL_GPL vmlinux 0x8bdeb022 klist_iter_exit -EXPORT_SYMBOL_GPL vmlinux 0x8be4dd19 ata_pci_sff_init_one -EXPORT_SYMBOL_GPL vmlinux 0x8bf5f379 k3_udma_glue_release_tx_chn -EXPORT_SYMBOL_GPL vmlinux 0x8bf936a9 devm_gpiod_unhinge -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 0x8c149377 bpf_trace_run4 -EXPORT_SYMBOL_GPL vmlinux 0x8c15740d devm_usb_put_phy -EXPORT_SYMBOL_GPL vmlinux 0x8c17390f pinconf_generic_dump_config -EXPORT_SYMBOL_GPL vmlinux 0x8c1f05b6 pci_hp_create_module_link -EXPORT_SYMBOL_GPL vmlinux 0x8c306567 __rio_local_write_config_8 -EXPORT_SYMBOL_GPL vmlinux 0x8c484409 gnttab_release_grant_reference -EXPORT_SYMBOL_GPL vmlinux 0x8c4d48ee to_software_node -EXPORT_SYMBOL_GPL vmlinux 0x8c523532 pci_epc_map_msi_irq -EXPORT_SYMBOL_GPL vmlinux 0x8c5764b8 regmap_get_reg_stride -EXPORT_SYMBOL_GPL vmlinux 0x8c5d05f3 usb_hcd_is_primary_hcd -EXPORT_SYMBOL_GPL vmlinux 0x8c5fef2a dm_bio_from_per_bio_data -EXPORT_SYMBOL_GPL vmlinux 0x8c6042b6 fanout_mutex -EXPORT_SYMBOL_GPL vmlinux 0x8c62ff16 security_kernel_post_read_file -EXPORT_SYMBOL_GPL vmlinux 0x8c68a45a device_show_bool -EXPORT_SYMBOL_GPL vmlinux 0x8c68a7e4 pci_hp_del -EXPORT_SYMBOL_GPL vmlinux 0x8c69d572 irq_chip_set_wake_parent -EXPORT_SYMBOL_GPL vmlinux 0x8c6afb89 debugfs_create_u32_array -EXPORT_SYMBOL_GPL vmlinux 0x8c743fb6 reset_control_status -EXPORT_SYMBOL_GPL vmlinux 0x8c7829ea devres_destroy -EXPORT_SYMBOL_GPL vmlinux 0x8c79c032 fwnode_get_phy_mode -EXPORT_SYMBOL_GPL vmlinux 0x8c817f72 irq_domain_associate -EXPORT_SYMBOL_GPL vmlinux 0x8c89e3b8 usb_phy_roothub_power_off -EXPORT_SYMBOL_GPL vmlinux 0x8ca43666 pm_genpd_add_device -EXPORT_SYMBOL_GPL vmlinux 0x8ca99da3 i2c_recover_bus -EXPORT_SYMBOL_GPL vmlinux 0x8cad980f vp_modern_get_queue_size -EXPORT_SYMBOL_GPL vmlinux 0x8cb174cb i2c_probe_func_quick_read -EXPORT_SYMBOL_GPL vmlinux 0x8cb49e25 crypto_register_shashes -EXPORT_SYMBOL_GPL vmlinux 0x8cb5a38e k3_udma_glue_rx_flow_disable -EXPORT_SYMBOL_GPL vmlinux 0x8cb72bbc efivar_entry_iter -EXPORT_SYMBOL_GPL vmlinux 0x8cc8a64d tpm2_get_tpm_pt -EXPORT_SYMBOL_GPL vmlinux 0x8ccc6cb2 adp5520_read -EXPORT_SYMBOL_GPL vmlinux 0x8ccd6403 mptcp_pm_get_add_addr_signal_max -EXPORT_SYMBOL_GPL vmlinux 0x8ce18840 fuse_request_end -EXPORT_SYMBOL_GPL vmlinux 0x8ce2d446 __tracepoint_block_rq_remap -EXPORT_SYMBOL_GPL vmlinux 0x8ce938a0 tty_set_termios -EXPORT_SYMBOL_GPL vmlinux 0x8cf4e1f9 lwtunnel_get_encap_size -EXPORT_SYMBOL_GPL vmlinux 0x8cfb9989 netdev_walk_all_lower_dev_rcu -EXPORT_SYMBOL_GPL vmlinux 0x8d0abf3a __tracepoint_io_page_fault -EXPORT_SYMBOL_GPL vmlinux 0x8d1998d7 of_usb_update_otg_caps -EXPORT_SYMBOL_GPL vmlinux 0x8d1a6873 otg_ulpi_create -EXPORT_SYMBOL_GPL vmlinux 0x8d22bb58 iommu_group_alloc -EXPORT_SYMBOL_GPL vmlinux 0x8d27168a devfreq_event_disable_edev -EXPORT_SYMBOL_GPL vmlinux 0x8d2ba0be rcuwait_wake_up -EXPORT_SYMBOL_GPL vmlinux 0x8d3330b6 cpuacct_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x8d340a39 pci_epc_linkup -EXPORT_SYMBOL_GPL vmlinux 0x8d350bdd ip6_flush_pending_frames -EXPORT_SYMBOL_GPL vmlinux 0x8d3c0513 virtio_add_status -EXPORT_SYMBOL_GPL vmlinux 0x8d45534f cpufreq_enable_fast_switch -EXPORT_SYMBOL_GPL vmlinux 0x8d51db6a pm_genpd_add_subdomain -EXPORT_SYMBOL_GPL vmlinux 0x8d522714 __rcu_read_lock -EXPORT_SYMBOL_GPL vmlinux 0x8d525427 mnt_want_write_file -EXPORT_SYMBOL_GPL vmlinux 0x8d759956 usb_hcd_setup_local_mem -EXPORT_SYMBOL_GPL vmlinux 0x8d7e3373 hwpoison_filter_dev_major -EXPORT_SYMBOL_GPL vmlinux 0x8da52a66 ata_link_offline -EXPORT_SYMBOL_GPL vmlinux 0x8dafdded lwtunnel_valid_encap_type_attr -EXPORT_SYMBOL_GPL vmlinux 0x8db313f9 pci_test_config_bits -EXPORT_SYMBOL_GPL vmlinux 0x8dbf7aaa privcmd_call -EXPORT_SYMBOL_GPL vmlinux 0x8dc7ce12 tcp_ca_get_key_by_name -EXPORT_SYMBOL_GPL vmlinux 0x8dd218b0 icc_bulk_disable -EXPORT_SYMBOL_GPL vmlinux 0x8de6817a acpi_dev_resource_address_space -EXPORT_SYMBOL_GPL vmlinux 0x8de951fc acpi_find_child_device -EXPORT_SYMBOL_GPL vmlinux 0x8debd3f4 pin_get_name -EXPORT_SYMBOL_GPL vmlinux 0x8df36366 __clk_mux_determine_rate -EXPORT_SYMBOL_GPL vmlinux 0x8e0ac5f5 dev_pm_qos_add_ancestor_request -EXPORT_SYMBOL_GPL vmlinux 0x8e15b9a3 tty_kopen_shared -EXPORT_SYMBOL_GPL vmlinux 0x8e16419b trace_clock_local -EXPORT_SYMBOL_GPL vmlinux 0x8e1e8604 screen_glyph -EXPORT_SYMBOL_GPL vmlinux 0x8e1f4e38 gpiochip_enable_irq -EXPORT_SYMBOL_GPL vmlinux 0x8e3140db pci_iomap_wc -EXPORT_SYMBOL_GPL vmlinux 0x8e321e57 register_virtio_driver -EXPORT_SYMBOL_GPL vmlinux 0x8e38ce93 nvdimm_clear_poison -EXPORT_SYMBOL_GPL vmlinux 0x8e44823a sfp_select_interface -EXPORT_SYMBOL_GPL vmlinux 0x8e47c7a3 hvc_poll -EXPORT_SYMBOL_GPL vmlinux 0x8e4b63a6 hisi_clk_register_gate_sep -EXPORT_SYMBOL_GPL vmlinux 0x8e4eb451 bpf_sk_storage_diag_free -EXPORT_SYMBOL_GPL vmlinux 0x8e544bca devfreq_cooling_em_register -EXPORT_SYMBOL_GPL vmlinux 0x8e5b3511 devm_pm_opp_set_clkname -EXPORT_SYMBOL_GPL vmlinux 0x8e625e94 __fscrypt_prepare_link -EXPORT_SYMBOL_GPL vmlinux 0x8e6b1a9e net_selftest_get_count -EXPORT_SYMBOL_GPL vmlinux 0x8e6fa8b5 apei_exec_pre_map_gars -EXPORT_SYMBOL_GPL vmlinux 0x8e735051 platform_bus_type -EXPORT_SYMBOL_GPL vmlinux 0x8e7f0a9c acpi_get_phys_id -EXPORT_SYMBOL_GPL vmlinux 0x8e80f6c4 regulator_is_enabled -EXPORT_SYMBOL_GPL vmlinux 0x8e819919 blk_queue_rq_timeout -EXPORT_SYMBOL_GPL vmlinux 0x8e92f7c4 static_key_slow_inc -EXPORT_SYMBOL_GPL vmlinux 0x8e9a61b8 vp_modern_set_queue_enable -EXPORT_SYMBOL_GPL vmlinux 0x8ead800c user_free_preparse -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 0x8ef5cb4d adp5520_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x8efac702 inet6_lookup -EXPORT_SYMBOL_GPL vmlinux 0x8effb505 phy_gbit_features -EXPORT_SYMBOL_GPL vmlinux 0x8f06b3cc __kthread_init_worker -EXPORT_SYMBOL_GPL vmlinux 0x8f0748af rcu_expedite_gp -EXPORT_SYMBOL_GPL vmlinux 0x8f12cb96 hwspin_lock_get_id -EXPORT_SYMBOL_GPL vmlinux 0x8f288180 devm_bitmap_alloc -EXPORT_SYMBOL_GPL vmlinux 0x8f2e1281 of_genpd_del_provider -EXPORT_SYMBOL_GPL vmlinux 0x8f338bce dw_pcie_find_capability -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 0x8f5258e0 regulator_list_voltage_table -EXPORT_SYMBOL_GPL vmlinux 0x8f5a854a xenbus_unmap_ring_vfree -EXPORT_SYMBOL_GPL vmlinux 0x8f6cee77 __round_jiffies_relative -EXPORT_SYMBOL_GPL vmlinux 0x8f75b83b led_trigger_event -EXPORT_SYMBOL_GPL vmlinux 0x8f786bee fs_umode_to_dtype -EXPORT_SYMBOL_GPL vmlinux 0x8f7aedfe fat_alloc_new_dir -EXPORT_SYMBOL_GPL vmlinux 0x8f7c688a usb_anchor_urb -EXPORT_SYMBOL_GPL vmlinux 0x8fa9de78 serdev_device_set_flow_control -EXPORT_SYMBOL_GPL vmlinux 0x8faa800d acpi_cpc_valid -EXPORT_SYMBOL_GPL vmlinux 0x8fbc5474 ndo_dflt_bridge_getlink -EXPORT_SYMBOL_GPL vmlinux 0x8fc12788 software_node_unregister_node_group -EXPORT_SYMBOL_GPL vmlinux 0x8fcf8477 dev_pm_qos_hide_latency_tolerance -EXPORT_SYMBOL_GPL vmlinux 0x8fcfd3a7 spi_new_ancillary_device -EXPORT_SYMBOL_GPL vmlinux 0x8fee2dac usb_disable_ltm -EXPORT_SYMBOL_GPL vmlinux 0x8ff19af3 validate_xmit_skb_list -EXPORT_SYMBOL_GPL vmlinux 0x8ff60436 mpi_ec_add_points -EXPORT_SYMBOL_GPL vmlinux 0x8ffe792f tracepoint_probe_register_prio_may_exist -EXPORT_SYMBOL_GPL vmlinux 0x9010edb0 pkcs7_validate_trust -EXPORT_SYMBOL_GPL vmlinux 0x9017bb94 ata_pci_bmdma_init -EXPORT_SYMBOL_GPL vmlinux 0x90324581 regulator_set_current_limit_regmap -EXPORT_SYMBOL_GPL vmlinux 0x903b627c list_lru_isolate_move -EXPORT_SYMBOL_GPL vmlinux 0x90467d4f virtqueue_enable_cb_prepare -EXPORT_SYMBOL_GPL vmlinux 0x904943ec udp_destruct_common -EXPORT_SYMBOL_GPL vmlinux 0x905ef07c usb_get_urb -EXPORT_SYMBOL_GPL vmlinux 0x906060c8 crypto_stats_kpp_generate_public_key -EXPORT_SYMBOL_GPL vmlinux 0x90688bcd devlink_info_driver_name_put -EXPORT_SYMBOL_GPL vmlinux 0x906a25b8 devm_clk_hw_register_fixed_factor -EXPORT_SYMBOL_GPL vmlinux 0x9077f25e split_page -EXPORT_SYMBOL_GPL vmlinux 0x908340bf acpi_dev_remove_driver_gpios -EXPORT_SYMBOL_GPL vmlinux 0x90a38865 ata_host_suspend -EXPORT_SYMBOL_GPL vmlinux 0x90a755a5 debugfs_attr_read -EXPORT_SYMBOL_GPL vmlinux 0x90a9d8cc hv_is_hyperv_initialized -EXPORT_SYMBOL_GPL vmlinux 0x90ad66b1 software_node_unregister_nodes -EXPORT_SYMBOL_GPL vmlinux 0x90b55caf pci_intx -EXPORT_SYMBOL_GPL vmlinux 0x90b763f1 HYPERVISOR_console_io -EXPORT_SYMBOL_GPL vmlinux 0x90c53f52 hwmon_device_register_with_info -EXPORT_SYMBOL_GPL vmlinux 0x90c8498c apei_exec_write_register -EXPORT_SYMBOL_GPL vmlinux 0x90d341c4 xas_init_marks -EXPORT_SYMBOL_GPL vmlinux 0x90d539e8 mmc_regulator_set_ocr -EXPORT_SYMBOL_GPL vmlinux 0x90d937b4 __tracepoint_pelt_rt_tp -EXPORT_SYMBOL_GPL vmlinux 0x90e37ca1 fuse_dev_fiq_ops -EXPORT_SYMBOL_GPL vmlinux 0x90e90534 ahci_check_ready -EXPORT_SYMBOL_GPL vmlinux 0x90ec3f0f dprc_reset_container -EXPORT_SYMBOL_GPL vmlinux 0x90f1861a __dma_request_channel -EXPORT_SYMBOL_GPL vmlinux 0x90f1ce80 pci_host_common_probe -EXPORT_SYMBOL_GPL vmlinux 0x90f4e845 sched_trace_cfs_rq_path -EXPORT_SYMBOL_GPL vmlinux 0x90f6bd5c set_capacity_and_notify -EXPORT_SYMBOL_GPL vmlinux 0x90fbcd1e __blk_mq_debugfs_rq_show -EXPORT_SYMBOL_GPL vmlinux 0x910bdf6b trace_seq_vprintf -EXPORT_SYMBOL_GPL vmlinux 0x9112be35 blk_revalidate_disk_zones -EXPORT_SYMBOL_GPL vmlinux 0x9155ab75 ahci_start_engine -EXPORT_SYMBOL_GPL vmlinux 0x9158e31f gpiochip_irqchip_irq_valid -EXPORT_SYMBOL_GPL vmlinux 0x91683154 ping_queue_rcv_skb -EXPORT_SYMBOL_GPL vmlinux 0x91715364 serial8250_init_port -EXPORT_SYMBOL_GPL vmlinux 0x918ceb04 __devm_regmap_init_i2c -EXPORT_SYMBOL_GPL vmlinux 0x9194e18f xenbus_mkdir -EXPORT_SYMBOL_GPL vmlinux 0x91955a9f start_poll_synchronize_rcu -EXPORT_SYMBOL_GPL vmlinux 0x919c16df netdev_walk_all_upper_dev_rcu -EXPORT_SYMBOL_GPL vmlinux 0x919dbfbe regulator_list_voltage_linear_range -EXPORT_SYMBOL_GPL vmlinux 0x91a0eaf2 tty_buffer_lock_exclusive -EXPORT_SYMBOL_GPL vmlinux 0x91b774a1 mpi_scanval -EXPORT_SYMBOL_GPL vmlinux 0x91bdff02 dummy_irq_chip -EXPORT_SYMBOL_GPL vmlinux 0x91c6e5b0 pcap_to_irq -EXPORT_SYMBOL_GPL vmlinux 0x91c9313c acpi_gpio_get_io_resource -EXPORT_SYMBOL_GPL vmlinux 0x91cefbe7 devlink_flash_update_timeout_notify -EXPORT_SYMBOL_GPL vmlinux 0x91d04ea6 stmpe_block_write -EXPORT_SYMBOL_GPL vmlinux 0x91e30809 HYPERVISOR_vm_assist -EXPORT_SYMBOL_GPL vmlinux 0x91e58fa5 gpiod_get_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0x91ea8726 asn1_encode_boolean -EXPORT_SYMBOL_GPL vmlinux 0x91f778da regcache_sync -EXPORT_SYMBOL_GPL vmlinux 0x91f88a1d tty_port_link_device -EXPORT_SYMBOL_GPL vmlinux 0x920993bf sdio_readl -EXPORT_SYMBOL_GPL vmlinux 0x920cc389 visitorl -EXPORT_SYMBOL_GPL vmlinux 0x92157891 devm_ti_sci_get_resource -EXPORT_SYMBOL_GPL vmlinux 0x9233aded posix_acl_create -EXPORT_SYMBOL_GPL vmlinux 0x9236991b hrtimer_start_range_ns -EXPORT_SYMBOL_GPL vmlinux 0x923e42aa sysfb_disable -EXPORT_SYMBOL_GPL vmlinux 0x9241b358 __static_key_slow_dec_deferred -EXPORT_SYMBOL_GPL vmlinux 0x924baef6 dma_request_chan -EXPORT_SYMBOL_GPL vmlinux 0x924c46f8 zs_unmap_object -EXPORT_SYMBOL_GPL vmlinux 0x925c8a91 wm831x_auxadc_read -EXPORT_SYMBOL_GPL vmlinux 0x92621faa __synth_event_gen_cmd_start -EXPORT_SYMBOL_GPL vmlinux 0x92724b6a power_supply_class -EXPORT_SYMBOL_GPL vmlinux 0x927487ea zynqmp_pm_read_ggs -EXPORT_SYMBOL_GPL vmlinux 0x927aa711 ata_pci_device_do_resume -EXPORT_SYMBOL_GPL vmlinux 0x927cf960 fuse_send_init -EXPORT_SYMBOL_GPL vmlinux 0x92998ab6 sk_psock_msg_verdict -EXPORT_SYMBOL_GPL vmlinux 0x929f202a nvdimm_badblocks_populate -EXPORT_SYMBOL_GPL vmlinux 0x92a2c3c6 gpiod_set_array_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0x92ae76e7 vp_modern_map_vq_notify -EXPORT_SYMBOL_GPL vmlinux 0x92b8c78b hyperv_pcpu_output_arg -EXPORT_SYMBOL_GPL vmlinux 0x92c45f16 mbox_client_peek_data -EXPORT_SYMBOL_GPL vmlinux 0x92cba65e dev_pm_domain_attach_by_name -EXPORT_SYMBOL_GPL vmlinux 0x92d31cfb fixed_phy_add -EXPORT_SYMBOL_GPL vmlinux 0x92db8f68 do_trace_rcu_torture_read -EXPORT_SYMBOL_GPL vmlinux 0x92dd304c gpiod_set_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0x92e38051 bus_register -EXPORT_SYMBOL_GPL vmlinux 0x92e8e9ab fsverity_enqueue_verify_work -EXPORT_SYMBOL_GPL vmlinux 0x92fc5068 sch_frag_xmit_hook -EXPORT_SYMBOL_GPL vmlinux 0x930ab533 k3_ringacc_request_ring -EXPORT_SYMBOL_GPL vmlinux 0x930f10db lwtunnel_xmit -EXPORT_SYMBOL_GPL vmlinux 0x9317c1dd regulator_allow_bypass -EXPORT_SYMBOL_GPL vmlinux 0x93226067 tegra_bpmp_put -EXPORT_SYMBOL_GPL vmlinux 0x93255b2b ring_buffer_lock_reserve -EXPORT_SYMBOL_GPL vmlinux 0x932c8d7a linear_range_get_value_array -EXPORT_SYMBOL_GPL vmlinux 0x932d9b6e xenbus_dev_remove -EXPORT_SYMBOL_GPL vmlinux 0x9337abf5 crypto_skcipher_decrypt -EXPORT_SYMBOL_GPL vmlinux 0x933b3379 dma_async_device_channel_register -EXPORT_SYMBOL_GPL vmlinux 0x936d736e dev_pm_opp_set_rate -EXPORT_SYMBOL_GPL vmlinux 0x9378b5c4 kobject_uevent -EXPORT_SYMBOL_GPL vmlinux 0x938dd242 fsnotify_get_group -EXPORT_SYMBOL_GPL vmlinux 0x939d537c blk_update_request -EXPORT_SYMBOL_GPL vmlinux 0x93ac19ab pinctrl_select_state -EXPORT_SYMBOL_GPL vmlinux 0x93c7edeb usb_find_common_endpoints -EXPORT_SYMBOL_GPL vmlinux 0x93d1d424 gnttab_free_grant_references -EXPORT_SYMBOL_GPL vmlinux 0x93e9fcab regulator_get_optional -EXPORT_SYMBOL_GPL vmlinux 0x93ecaa0d devm_kstrdup -EXPORT_SYMBOL_GPL vmlinux 0x93edef07 devlink_health_report -EXPORT_SYMBOL_GPL vmlinux 0x93f55fe0 power_supply_batinfo_ocv2cap -EXPORT_SYMBOL_GPL vmlinux 0x93fbc8e9 ahash_register_instance -EXPORT_SYMBOL_GPL vmlinux 0x93fc8673 tcp_set_keepalive -EXPORT_SYMBOL_GPL vmlinux 0x940bc3e9 extcon_set_property_capability -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 0x94319e76 pci_user_write_config_byte -EXPORT_SYMBOL_GPL vmlinux 0x9436e405 memory_group_register_dynamic -EXPORT_SYMBOL_GPL vmlinux 0x9437cbcc mmu_interval_notifier_insert -EXPORT_SYMBOL_GPL vmlinux 0x943adc0b vp_modern_remove -EXPORT_SYMBOL_GPL vmlinux 0x943fc708 xen_setup_shutdown_event -EXPORT_SYMBOL_GPL vmlinux 0x9440ffd5 usb_asmedia_modifyflowcontrol -EXPORT_SYMBOL_GPL vmlinux 0x944c1ced iommu_present -EXPORT_SYMBOL_GPL vmlinux 0x94597ded nvmem_register -EXPORT_SYMBOL_GPL vmlinux 0x945a3d01 srcutorture_get_gp_data -EXPORT_SYMBOL_GPL vmlinux 0x9468ea70 schedule_hrtimeout_range_clock -EXPORT_SYMBOL_GPL vmlinux 0x946dd559 sha224_zero_message_hash -EXPORT_SYMBOL_GPL vmlinux 0x949b5176 devlink_region_snapshot_create -EXPORT_SYMBOL_GPL vmlinux 0x949c3e2a genphy_c45_pma_suspend -EXPORT_SYMBOL_GPL vmlinux 0x949f7342 __alloc_percpu -EXPORT_SYMBOL_GPL vmlinux 0x94a0eac7 relay_buf_full -EXPORT_SYMBOL_GPL vmlinux 0x94d5ca12 file_ra_state_init -EXPORT_SYMBOL_GPL vmlinux 0x94d956b3 phy_validate -EXPORT_SYMBOL_GPL vmlinux 0x94e62d2e __set_phys_to_machine_multi -EXPORT_SYMBOL_GPL vmlinux 0x94e89cce uart_set_options -EXPORT_SYMBOL_GPL vmlinux 0x94ecac0f __xas_prev -EXPORT_SYMBOL_GPL vmlinux 0x94ef4d05 cpci_hp_stop -EXPORT_SYMBOL_GPL vmlinux 0x94f0136c irq_set_affinity_notifier -EXPORT_SYMBOL_GPL vmlinux 0x94f0ed9e __phy_modify -EXPORT_SYMBOL_GPL vmlinux 0x94f73d1d blkdev_zone_mgmt -EXPORT_SYMBOL_GPL vmlinux 0x9504df26 irq_wake_thread -EXPORT_SYMBOL_GPL vmlinux 0x95078282 clk_hw_unregister_fixed_factor -EXPORT_SYMBOL_GPL vmlinux 0x950887ba fwnode_graph_get_remote_port -EXPORT_SYMBOL_GPL vmlinux 0x951a2773 crypto_has_alg -EXPORT_SYMBOL_GPL vmlinux 0x952664c5 do_exit -EXPORT_SYMBOL_GPL vmlinux 0x95295e84 regulator_get_bypass_regmap -EXPORT_SYMBOL_GPL vmlinux 0x9529b0b5 debugfs_create_file_unsafe -EXPORT_SYMBOL_GPL vmlinux 0x9529c8f0 sock_diag_check_cookie -EXPORT_SYMBOL_GPL vmlinux 0x95340b6f pci_user_write_config_dword -EXPORT_SYMBOL_GPL vmlinux 0x953c2829 btree_last -EXPORT_SYMBOL_GPL vmlinux 0x953d9b6d tcp_ca_openreq_child -EXPORT_SYMBOL_GPL vmlinux 0x953e1b9e ktime_get_real_seconds -EXPORT_SYMBOL_GPL vmlinux 0x95536600 kthread_unuse_mm -EXPORT_SYMBOL_GPL vmlinux 0x955b0e2e kthread_worker_fn -EXPORT_SYMBOL_GPL vmlinux 0x95609b26 context_tracking_key -EXPORT_SYMBOL_GPL vmlinux 0x956635d7 ahci_handle_port_intr -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 0x958f8f55 wait_on_page_writeback_killable -EXPORT_SYMBOL_GPL vmlinux 0x9593ef31 register_ftrace_export -EXPORT_SYMBOL_GPL vmlinux 0x959d1b09 fwnode_get_next_available_child_node -EXPORT_SYMBOL_GPL vmlinux 0x959ec5f5 call_rcu_tasks -EXPORT_SYMBOL_GPL vmlinux 0x95bc9078 btree_free -EXPORT_SYMBOL_GPL vmlinux 0x95e102ab tracepoint_probe_register -EXPORT_SYMBOL_GPL vmlinux 0x95e3a0a3 dev_pm_opp_put_clkname -EXPORT_SYMBOL_GPL vmlinux 0x95ef1ccc dmi_memdev_size -EXPORT_SYMBOL_GPL vmlinux 0x95f278d5 ftrace_set_filter_ip -EXPORT_SYMBOL_GPL vmlinux 0x96010f20 cpufreq_dbs_governor_stop -EXPORT_SYMBOL_GPL vmlinux 0x961286e0 ring_buffer_read_events_cpu -EXPORT_SYMBOL_GPL vmlinux 0x9626d4ac fat_getattr -EXPORT_SYMBOL_GPL vmlinux 0x962efeaa rdev_get_drvdata -EXPORT_SYMBOL_GPL vmlinux 0x96423cdd pinmux_generic_remove_function -EXPORT_SYMBOL_GPL vmlinux 0x964353b7 pinctrl_put -EXPORT_SYMBOL_GPL vmlinux 0x964c5d40 xdp_return_frame_rx_napi -EXPORT_SYMBOL_GPL vmlinux 0x96554810 register_keyboard_notifier -EXPORT_SYMBOL_GPL vmlinux 0x96663634 device_set_of_node_from_dev -EXPORT_SYMBOL_GPL vmlinux 0x9668d85b cn_add_callback -EXPORT_SYMBOL_GPL vmlinux 0x966fe38c bpf_prog_get_type_dev -EXPORT_SYMBOL_GPL vmlinux 0x967e41d1 dev_pm_opp_is_turbo -EXPORT_SYMBOL_GPL vmlinux 0x96822697 gpiochip_irq_map -EXPORT_SYMBOL_GPL vmlinux 0x96874f45 uart_console_device -EXPORT_SYMBOL_GPL vmlinux 0x968f9a23 efivar_entry_iter_begin -EXPORT_SYMBOL_GPL vmlinux 0x9695ff90 __traceiter_br_fdb_add -EXPORT_SYMBOL_GPL vmlinux 0x96998ca2 efivar_entry_set_get_size -EXPORT_SYMBOL_GPL vmlinux 0x96a895a5 nvdimm_region_notify -EXPORT_SYMBOL_GPL vmlinux 0x96db6509 phy_select_page -EXPORT_SYMBOL_GPL vmlinux 0x96ece8a9 tegra_agic_irq_is_pending -EXPORT_SYMBOL_GPL vmlinux 0x96f9a01b __SCK__tp_func_pelt_thermal_tp -EXPORT_SYMBOL_GPL vmlinux 0x96fc0720 add_swap_extent -EXPORT_SYMBOL_GPL vmlinux 0x970236ac unregister_virtio_device -EXPORT_SYMBOL_GPL vmlinux 0x9711361d of_icc_get -EXPORT_SYMBOL_GPL vmlinux 0x971204f1 imx_obtain_fixed_clk_hw -EXPORT_SYMBOL_GPL vmlinux 0x9714e0bb ktime_get_raw -EXPORT_SYMBOL_GPL vmlinux 0x9715883a ata_cable_40wire -EXPORT_SYMBOL_GPL vmlinux 0x9726780b acpi_unbind_one -EXPORT_SYMBOL_GPL vmlinux 0x973429b6 pci_assign_unassigned_bridge_resources -EXPORT_SYMBOL_GPL vmlinux 0x974748f2 devm_pinctrl_register_and_init -EXPORT_SYMBOL_GPL vmlinux 0x975519c1 asymmetric_key_id_same -EXPORT_SYMBOL_GPL vmlinux 0x9768d517 pci_find_next_capability -EXPORT_SYMBOL_GPL vmlinux 0x977cf78a __clk_mux_determine_rate_closest -EXPORT_SYMBOL_GPL vmlinux 0x97adc2a2 rio_release_inb_dbell -EXPORT_SYMBOL_GPL vmlinux 0x97b326ae tracing_snapshot_cond_enable -EXPORT_SYMBOL_GPL vmlinux 0x97b73ab4 ata_pci_remove_one -EXPORT_SYMBOL_GPL vmlinux 0x97cae51a fat_scan -EXPORT_SYMBOL_GPL vmlinux 0x97d4db7e __device_reset -EXPORT_SYMBOL_GPL vmlinux 0x97d8c7f8 devm_phy_put -EXPORT_SYMBOL_GPL vmlinux 0x97de2b83 debug_locks_silent -EXPORT_SYMBOL_GPL vmlinux 0x97df9f97 gpiochip_disable_irq -EXPORT_SYMBOL_GPL vmlinux 0x97e7891a ehci_handshake -EXPORT_SYMBOL_GPL vmlinux 0x97e7db16 __traceiter_rpm_suspend -EXPORT_SYMBOL_GPL vmlinux 0x9801cbae ti_sci_get_handle -EXPORT_SYMBOL_GPL vmlinux 0x9806afd4 regulator_set_ramp_delay_regmap -EXPORT_SYMBOL_GPL vmlinux 0x980c0fe9 generic_fh_to_parent -EXPORT_SYMBOL_GPL vmlinux 0x98307c3a sdio_claim_irq -EXPORT_SYMBOL_GPL vmlinux 0x9833bc0c hvc_kick -EXPORT_SYMBOL_GPL vmlinux 0x98363ac0 tc3589x_set_bits -EXPORT_SYMBOL_GPL vmlinux 0x9837535b devlink_flash_update_status_notify -EXPORT_SYMBOL_GPL vmlinux 0x9843f501 __cookie_v4_check -EXPORT_SYMBOL_GPL vmlinux 0x98503a63 mpi_alloc -EXPORT_SYMBOL_GPL vmlinux 0x985065bb gov_attr_set_init -EXPORT_SYMBOL_GPL vmlinux 0x985453e1 lease_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x986b39fc usb_get_hcd -EXPORT_SYMBOL_GPL vmlinux 0x9879932b crypto_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x987ba6fb usb_get_maximum_speed -EXPORT_SYMBOL_GPL vmlinux 0x987ed64a pl08x_filter_id -EXPORT_SYMBOL_GPL vmlinux 0x987f3f8b pinctrl_generic_get_group -EXPORT_SYMBOL_GPL vmlinux 0x98865c2f raw_abort -EXPORT_SYMBOL_GPL vmlinux 0x989074ff kmsg_dump_reason_str -EXPORT_SYMBOL_GPL vmlinux 0x989b115e devm_clk_get_enabled -EXPORT_SYMBOL_GPL vmlinux 0x98a011f4 pm_clk_remove_clk -EXPORT_SYMBOL_GPL vmlinux 0x98b142fa blk_fill_rwbs -EXPORT_SYMBOL_GPL vmlinux 0x98bbeb3a devm_free_percpu -EXPORT_SYMBOL_GPL vmlinux 0x98c59274 __tracepoint_rpm_idle -EXPORT_SYMBOL_GPL vmlinux 0x98d9086f aead_register_instance -EXPORT_SYMBOL_GPL vmlinux 0x98ee2ed7 shmem_file_setup_with_mnt -EXPORT_SYMBOL_GPL vmlinux 0x98ee62b2 ring_buffer_record_disable_cpu -EXPORT_SYMBOL_GPL vmlinux 0x98f47662 debugfs_attr_write -EXPORT_SYMBOL_GPL vmlinux 0x98f8b564 __cpufreq_driver_target -EXPORT_SYMBOL_GPL vmlinux 0x98fa1e20 dm_get_reserved_rq_based_ios -EXPORT_SYMBOL_GPL vmlinux 0x9904caa5 sdio_writeb_readb -EXPORT_SYMBOL_GPL vmlinux 0x9919e3d5 irq_domain_pop_irq -EXPORT_SYMBOL_GPL vmlinux 0x993d932c of_alias_get_id -EXPORT_SYMBOL_GPL vmlinux 0x9945d2b8 tty_wakeup -EXPORT_SYMBOL_GPL vmlinux 0x9951990b sata_link_scr_lpm -EXPORT_SYMBOL_GPL vmlinux 0x995d1071 prof_on -EXPORT_SYMBOL_GPL vmlinux 0x995fcc0b dmaengine_unmap_put -EXPORT_SYMBOL_GPL vmlinux 0x99640de3 klist_add_tail -EXPORT_SYMBOL_GPL vmlinux 0x9968aacb __audit_log_nfcfg -EXPORT_SYMBOL_GPL vmlinux 0x9974781f tty_mode_ioctl -EXPORT_SYMBOL_GPL vmlinux 0x99835b02 dev_pm_opp_get_of_node -EXPORT_SYMBOL_GPL vmlinux 0x998d79d6 x509_decode_time -EXPORT_SYMBOL_GPL vmlinux 0x998ee737 user_update -EXPORT_SYMBOL_GPL vmlinux 0x99d475f5 tcf_dev_queue_xmit -EXPORT_SYMBOL_GPL vmlinux 0x99d4db35 __scsi_init_queue -EXPORT_SYMBOL_GPL vmlinux 0x99dd730c page_reporting_unregister -EXPORT_SYMBOL_GPL vmlinux 0x99deca50 ping_err -EXPORT_SYMBOL_GPL vmlinux 0x99e1478e __pci_epf_register_driver -EXPORT_SYMBOL_GPL vmlinux 0x99ed76d9 md_new_event -EXPORT_SYMBOL_GPL vmlinux 0x99f018c4 nvmem_cell_read -EXPORT_SYMBOL_GPL vmlinux 0x99f2d00a sysfs_emit_at -EXPORT_SYMBOL_GPL vmlinux 0x99fbc51f nf_nat_hook -EXPORT_SYMBOL_GPL vmlinux 0x9a0cccb3 pci_iov_virtfn_devfn -EXPORT_SYMBOL_GPL vmlinux 0x9a11a0fc crypto_attr_alg_name -EXPORT_SYMBOL_GPL vmlinux 0x9a185ace tick_nohz_full_running -EXPORT_SYMBOL_GPL vmlinux 0x9a227d00 mmu_interval_notifier_insert_locked -EXPORT_SYMBOL_GPL vmlinux 0x9a3b942a power_supply_get_drvdata -EXPORT_SYMBOL_GPL vmlinux 0x9a448d7d mtk_pctrl_show_one_pin -EXPORT_SYMBOL_GPL vmlinux 0x9a462f5d fuse_dev_install -EXPORT_SYMBOL_GPL vmlinux 0x9a47722c irq_gc_ack_set_bit -EXPORT_SYMBOL_GPL vmlinux 0x9a58dd2d trace_print_bitmask_seq -EXPORT_SYMBOL_GPL vmlinux 0x9a5a19e1 set_online_page_callback -EXPORT_SYMBOL_GPL vmlinux 0x9a5d4399 ahci_do_hardreset -EXPORT_SYMBOL_GPL vmlinux 0x9a78d4fa cgroup_attach_task_all -EXPORT_SYMBOL_GPL vmlinux 0x9a937a13 imx_pinconf_get_scu -EXPORT_SYMBOL_GPL vmlinux 0x9a96861d irq_create_mapping_affinity -EXPORT_SYMBOL_GPL vmlinux 0x9aa10870 smpboot_register_percpu_thread -EXPORT_SYMBOL_GPL vmlinux 0x9aa8da54 da9052_adc_read_temp -EXPORT_SYMBOL_GPL vmlinux 0x9abd9602 bpf_offload_dev_netdev_unregister -EXPORT_SYMBOL_GPL vmlinux 0x9ac03769 edac_pci_add_device -EXPORT_SYMBOL_GPL vmlinux 0x9ac11b74 suspend_set_ops -EXPORT_SYMBOL_GPL vmlinux 0x9adf6672 fsnotify_put_mark -EXPORT_SYMBOL_GPL vmlinux 0x9aeacb87 ring_buffer_iter_empty -EXPORT_SYMBOL_GPL vmlinux 0x9af49514 icc_bulk_set_bw -EXPORT_SYMBOL_GPL vmlinux 0x9b02282a gpiod_get_from_of_node -EXPORT_SYMBOL_GPL vmlinux 0x9b0eaa52 tegra210_xusb_pll_hw_sequence_start -EXPORT_SYMBOL_GPL vmlinux 0x9b555c8c pm_suspend_default_s2idle -EXPORT_SYMBOL_GPL vmlinux 0x9b59814c ata_bmdma_error_handler -EXPORT_SYMBOL_GPL vmlinux 0x9b61f935 evict_inodes -EXPORT_SYMBOL_GPL vmlinux 0x9b645270 class_interface_unregister -EXPORT_SYMBOL_GPL vmlinux 0x9b673d29 blkcg_print_blkgs -EXPORT_SYMBOL_GPL vmlinux 0x9b698c42 ioasid_set_data -EXPORT_SYMBOL_GPL vmlinux 0x9b6ec967 ring_buffer_size -EXPORT_SYMBOL_GPL vmlinux 0x9b6f71ea regulator_disable -EXPORT_SYMBOL_GPL vmlinux 0x9b70c6ff tracepoint_probe_register_prio -EXPORT_SYMBOL_GPL vmlinux 0x9b817aab virtqueue_add_inbuf_ctx -EXPORT_SYMBOL_GPL vmlinux 0x9b868bec crypto_stats_compress -EXPORT_SYMBOL_GPL vmlinux 0x9b896724 devlink_param_value_str_fill -EXPORT_SYMBOL_GPL vmlinux 0x9b9071cb get_old_itimerspec32 -EXPORT_SYMBOL_GPL vmlinux 0x9b915f87 efivars_register -EXPORT_SYMBOL_GPL vmlinux 0x9b92d16e pinctrl_gpio_set_config -EXPORT_SYMBOL_GPL vmlinux 0x9ba2bb2b gpio_request_array -EXPORT_SYMBOL_GPL vmlinux 0x9ba35191 dev_pm_opp_get_max_transition_latency -EXPORT_SYMBOL_GPL vmlinux 0x9ba4f946 sdio_memcpy_toio -EXPORT_SYMBOL_GPL vmlinux 0x9bce4362 cdrom_read_tocentry -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 0x9c0213f3 serial8250_em485_stop_tx -EXPORT_SYMBOL_GPL vmlinux 0x9c133826 thermal_zone_of_sensor_register -EXPORT_SYMBOL_GPL vmlinux 0x9c181ca8 dm_accept_partial_bio -EXPORT_SYMBOL_GPL vmlinux 0x9c195f2c gpiochip_reqres_irq -EXPORT_SYMBOL_GPL vmlinux 0x9c25dcc5 ip6_datagram_send_ctl -EXPORT_SYMBOL_GPL vmlinux 0x9c2a7196 clk_hw_get_name -EXPORT_SYMBOL_GPL vmlinux 0x9c2c8d69 fib_table_lookup -EXPORT_SYMBOL_GPL vmlinux 0x9c2cce6f amba_ahb_device_add -EXPORT_SYMBOL_GPL vmlinux 0x9c3dafd2 set_secondary_fwnode -EXPORT_SYMBOL_GPL vmlinux 0x9c448d8d tegra210_put_utmipll_out_iddq -EXPORT_SYMBOL_GPL vmlinux 0x9c48fd5e alloc_io_pgtable_ops -EXPORT_SYMBOL_GPL vmlinux 0x9c5d14f3 clk_register_fixed_rate -EXPORT_SYMBOL_GPL vmlinux 0x9c641cb9 crypto_aes_set_key -EXPORT_SYMBOL_GPL vmlinux 0x9c6e5fd3 key_type_logon -EXPORT_SYMBOL_GPL vmlinux 0x9c6febfc add_uevent_var -EXPORT_SYMBOL_GPL vmlinux 0x9c803020 usb_phy_roothub_power_on -EXPORT_SYMBOL_GPL vmlinux 0x9c91f8f0 fscrypt_d_revalidate -EXPORT_SYMBOL_GPL vmlinux 0x9c95bdc9 max8997_read_reg -EXPORT_SYMBOL_GPL vmlinux 0x9c9c51e4 extcon_find_edev_by_node -EXPORT_SYMBOL_GPL vmlinux 0x9c9f1d4f pm_generic_poweroff_late -EXPORT_SYMBOL_GPL vmlinux 0x9ca95bc8 sysfs_create_files -EXPORT_SYMBOL_GPL vmlinux 0x9cb5af34 disable_kprobe -EXPORT_SYMBOL_GPL vmlinux 0x9cb627b8 bus_rescan_devices -EXPORT_SYMBOL_GPL vmlinux 0x9cb945b1 sbitmap_show -EXPORT_SYMBOL_GPL vmlinux 0x9cc4f70a register_pm_notifier -EXPORT_SYMBOL_GPL vmlinux 0x9cd09f70 led_set_brightness_nosleep -EXPORT_SYMBOL_GPL vmlinux 0x9cd2eb0d da9055_regmap_config -EXPORT_SYMBOL_GPL vmlinux 0x9cf37c44 __iowrite32_copy -EXPORT_SYMBOL_GPL vmlinux 0x9cf51557 regmap_async_complete -EXPORT_SYMBOL_GPL vmlinux 0x9cf8a0d3 imx_pinctrl_pm_ops -EXPORT_SYMBOL_GPL vmlinux 0x9cf8c805 ata_sas_port_start -EXPORT_SYMBOL_GPL vmlinux 0x9cfbfc78 dev_attr_em_message_type -EXPORT_SYMBOL_GPL vmlinux 0x9d08f32f __efivar_entry_iter -EXPORT_SYMBOL_GPL vmlinux 0x9d09e8ae ring_buffer_event_data -EXPORT_SYMBOL_GPL vmlinux 0x9d192d1f tpm_calc_ordinal_duration -EXPORT_SYMBOL_GPL vmlinux 0x9d2a88e8 thermal_zone_device_enable -EXPORT_SYMBOL_GPL vmlinux 0x9d2f49ef __SCK__tp_func_pelt_se_tp -EXPORT_SYMBOL_GPL vmlinux 0x9d323128 scsi_register_device_handler -EXPORT_SYMBOL_GPL vmlinux 0x9d4ce8e6 balloon_page_enqueue -EXPORT_SYMBOL_GPL vmlinux 0x9d5051f0 usb_get_current_frame_number -EXPORT_SYMBOL_GPL vmlinux 0x9d5af5ec con_debug_enter -EXPORT_SYMBOL_GPL vmlinux 0x9d651df0 devm_i2c_new_dummy_device -EXPORT_SYMBOL_GPL vmlinux 0x9d7b8c1a pci_epf_unbind -EXPORT_SYMBOL_GPL vmlinux 0x9d8443e2 iterate_mounts -EXPORT_SYMBOL_GPL vmlinux 0x9d8c04a7 dpcon_enable -EXPORT_SYMBOL_GPL vmlinux 0x9d98a7ef synth_event_trace_start -EXPORT_SYMBOL_GPL vmlinux 0x9dc3f842 blk_ksm_is_superset -EXPORT_SYMBOL_GPL vmlinux 0x9dee73b9 fsverity_ioctl_read_metadata -EXPORT_SYMBOL_GPL vmlinux 0x9df8d8d5 pcc_mbox_free_channel -EXPORT_SYMBOL_GPL vmlinux 0x9e005e6f cppc_get_perf_caps -EXPORT_SYMBOL_GPL vmlinux 0x9e0cd543 elv_rqhash_add -EXPORT_SYMBOL_GPL vmlinux 0x9e1529b8 ftrace_ops_set_global_filter -EXPORT_SYMBOL_GPL vmlinux 0x9e19b898 serdev_device_wait_until_sent -EXPORT_SYMBOL_GPL vmlinux 0x9e2e5b91 gpiochip_free_own_desc -EXPORT_SYMBOL_GPL vmlinux 0x9e35d36c vma_kernel_pagesize -EXPORT_SYMBOL_GPL vmlinux 0x9e3c6814 devm_qcom_smem_state_get -EXPORT_SYMBOL_GPL vmlinux 0x9e472f5f snmp_fold_field -EXPORT_SYMBOL_GPL vmlinux 0x9e571a12 dev_pm_opp_free_cpufreq_table -EXPORT_SYMBOL_GPL vmlinux 0x9e62ffe6 dma_mmap_noncontiguous -EXPORT_SYMBOL_GPL vmlinux 0x9e6a2f57 blk_queue_max_discard_segments -EXPORT_SYMBOL_GPL vmlinux 0x9e7530d4 pm_generic_freeze_late -EXPORT_SYMBOL_GPL vmlinux 0x9e8f31b4 kgdb_register_io_module -EXPORT_SYMBOL_GPL vmlinux 0x9e93260a smpboot_unregister_percpu_thread -EXPORT_SYMBOL_GPL vmlinux 0x9e993c05 iommu_group_remove_device -EXPORT_SYMBOL_GPL vmlinux 0x9e9b913d __tracepoint_arm_event -EXPORT_SYMBOL_GPL vmlinux 0x9e9d2257 devlink_port_unregister -EXPORT_SYMBOL_GPL vmlinux 0x9e9ebfa9 __dax_driver_register -EXPORT_SYMBOL_GPL vmlinux 0x9ea1a371 wm8350_block_read -EXPORT_SYMBOL_GPL vmlinux 0x9eb5b60a genphy_c45_read_link -EXPORT_SYMBOL_GPL vmlinux 0x9ec86547 usb_alloc_coherent -EXPORT_SYMBOL_GPL vmlinux 0x9ecc1574 __traceiter_rpm_resume -EXPORT_SYMBOL_GPL vmlinux 0x9ecd37ae irq_domain_create_legacy -EXPORT_SYMBOL_GPL vmlinux 0x9ed554b3 unregister_keyboard_notifier -EXPORT_SYMBOL_GPL vmlinux 0x9ed84047 kthread_unpark -EXPORT_SYMBOL_GPL vmlinux 0x9ee78772 genphy_c45_read_status -EXPORT_SYMBOL_GPL vmlinux 0x9eebdde7 mpi_point_new -EXPORT_SYMBOL_GPL vmlinux 0x9ef737a2 devfreq_event_get_event -EXPORT_SYMBOL_GPL vmlinux 0x9efdb839 cgroup_get_from_fd -EXPORT_SYMBOL_GPL vmlinux 0x9f09345d xenbus_dev_groups -EXPORT_SYMBOL_GPL vmlinux 0x9f12837f amba_apb_device_add_res -EXPORT_SYMBOL_GPL vmlinux 0x9f141edc iommu_device_unlink -EXPORT_SYMBOL_GPL vmlinux 0x9f1a48f6 rio_inb_pwrite_handler -EXPORT_SYMBOL_GPL vmlinux 0x9f2ecc24 mmc_poll_for_busy -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 0x9f57ec38 spi_bus_unlock -EXPORT_SYMBOL_GPL vmlinux 0x9f5c6dc2 __cookie_v6_check -EXPORT_SYMBOL_GPL vmlinux 0x9f7bf94e __sock_recv_timestamp -EXPORT_SYMBOL_GPL vmlinux 0x9f8c353a crypto_aead_decrypt -EXPORT_SYMBOL_GPL vmlinux 0x9f95e4b2 register_trace_event -EXPORT_SYMBOL_GPL vmlinux 0x9faebdd1 mtk_pinconf_drive_set_raw -EXPORT_SYMBOL_GPL vmlinux 0x9faf4fb7 fsl_mc_get_endpoint -EXPORT_SYMBOL_GPL vmlinux 0x9fb189ed fb_deferred_io_cleanup -EXPORT_SYMBOL_GPL vmlinux 0x9fbc774f phy_calibrate -EXPORT_SYMBOL_GPL vmlinux 0x9fbfebab erst_write -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 0x9feaa8a8 of_detach_node -EXPORT_SYMBOL_GPL vmlinux 0x9ffff597 gpiod_set_transitory -EXPORT_SYMBOL_GPL vmlinux 0xa0019dd1 crypto_alloc_acomp -EXPORT_SYMBOL_GPL vmlinux 0xa010cd2c max8997_write_reg -EXPORT_SYMBOL_GPL vmlinux 0xa01a8d9b nd_cmd_bus_desc -EXPORT_SYMBOL_GPL vmlinux 0xa027ff1f dma_resv_wait_timeout -EXPORT_SYMBOL_GPL vmlinux 0xa029cc71 devm_kmalloc -EXPORT_SYMBOL_GPL vmlinux 0xa02b71af __bio_try_merge_page -EXPORT_SYMBOL_GPL vmlinux 0xa03d1d05 class_create_file_ns -EXPORT_SYMBOL_GPL vmlinux 0xa04f945a cpus_read_lock -EXPORT_SYMBOL_GPL vmlinux 0xa056661b tcp_reno_ssthresh -EXPORT_SYMBOL_GPL vmlinux 0xa05dcf55 __ndisc_fill_addr_option -EXPORT_SYMBOL_GPL vmlinux 0xa071c0cd tegra210_xusb_pll_hw_control_enable -EXPORT_SYMBOL_GPL vmlinux 0xa079df7f debugfs_print_regs32 -EXPORT_SYMBOL_GPL vmlinux 0xa080c5e5 smp_call_function_single_async -EXPORT_SYMBOL_GPL vmlinux 0xa0846bab __reset_control_get -EXPORT_SYMBOL_GPL vmlinux 0xa090eb9b xen_remap_vma_range -EXPORT_SYMBOL_GPL vmlinux 0xa09efcad iommu_dev_disable_feature -EXPORT_SYMBOL_GPL vmlinux 0xa0b39498 devres_remove_group -EXPORT_SYMBOL_GPL vmlinux 0xa0b7c07c ip6_input -EXPORT_SYMBOL_GPL vmlinux 0xa0c9311b param_set_uint_minmax -EXPORT_SYMBOL_GPL vmlinux 0xa0ccd785 cpuidle_get_driver -EXPORT_SYMBOL_GPL vmlinux 0xa0cf3381 fs_dax_get_by_bdev -EXPORT_SYMBOL_GPL vmlinux 0xa0d3456d nr_swap_pages -EXPORT_SYMBOL_GPL vmlinux 0xa0e440ce dev_attr_em_message -EXPORT_SYMBOL_GPL vmlinux 0xa111e554 driver_attach -EXPORT_SYMBOL_GPL vmlinux 0xa11216be xen_store_domain_type -EXPORT_SYMBOL_GPL vmlinux 0xa11862fb fsverity_ioctl_enable -EXPORT_SYMBOL_GPL vmlinux 0xa12171da leds_list_lock -EXPORT_SYMBOL_GPL vmlinux 0xa12192bf regulator_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0xa124df94 sk_attach_filter -EXPORT_SYMBOL_GPL vmlinux 0xa12f632d gov_update_cpu_data -EXPORT_SYMBOL_GPL vmlinux 0xa13c3c00 crypto_stats_aead_encrypt -EXPORT_SYMBOL_GPL vmlinux 0xa147d7f0 device_wakeup_enable -EXPORT_SYMBOL_GPL vmlinux 0xa14cf3b1 dev_pm_opp_get_required_pstate -EXPORT_SYMBOL_GPL vmlinux 0xa14eea2b dma_buf_move_notify -EXPORT_SYMBOL_GPL vmlinux 0xa15020c9 __mmu_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0xa156a1f2 erst_get_record_id_end -EXPORT_SYMBOL_GPL vmlinux 0xa16b208f xenbus_unregister_driver -EXPORT_SYMBOL_GPL vmlinux 0xa16deb13 sbitmap_resize -EXPORT_SYMBOL_GPL vmlinux 0xa1794e4b input_ff_erase -EXPORT_SYMBOL_GPL vmlinux 0xa18b891d bpf_prog_sub -EXPORT_SYMBOL_GPL vmlinux 0xa18fd252 regulator_suspend_disable -EXPORT_SYMBOL_GPL vmlinux 0xa196ab35 spi_controller_suspend -EXPORT_SYMBOL_GPL vmlinux 0xa19c6cb3 acpi_processor_get_performance_info -EXPORT_SYMBOL_GPL vmlinux 0xa19e160c cpu_latency_qos_add_request -EXPORT_SYMBOL_GPL vmlinux 0xa1aa499c metadata_dst_free -EXPORT_SYMBOL_GPL vmlinux 0xa1aaa520 led_trigger_register_simple -EXPORT_SYMBOL_GPL vmlinux 0xa1c391ce meson_clk_pcie_pll_ops -EXPORT_SYMBOL_GPL vmlinux 0xa1cc2be3 usb_acpi_power_manageable -EXPORT_SYMBOL_GPL vmlinux 0xa1d4ddf9 hrtimer_try_to_cancel -EXPORT_SYMBOL_GPL vmlinux 0xa1d8004a videomode_from_timing -EXPORT_SYMBOL_GPL vmlinux 0xa1daf738 i2c_get_device_id -EXPORT_SYMBOL_GPL vmlinux 0xa1dba494 pci_epc_init_notify -EXPORT_SYMBOL_GPL vmlinux 0xa1f02eb4 fuse_free_conn -EXPORT_SYMBOL_GPL vmlinux 0xa1f55445 ata_bmdma_qc_issue -EXPORT_SYMBOL_GPL vmlinux 0xa1f637ef blkg_prfill_rwstat -EXPORT_SYMBOL_GPL vmlinux 0xa206ba5f ahci_host_activate -EXPORT_SYMBOL_GPL vmlinux 0xa20d01ba __trace_bprintk -EXPORT_SYMBOL_GPL vmlinux 0xa2375dd3 skb_mpls_update_lse -EXPORT_SYMBOL_GPL vmlinux 0xa2376f74 debugfs_create_ulong -EXPORT_SYMBOL_GPL vmlinux 0xa248abbf vchan_dma_desc_free_list -EXPORT_SYMBOL_GPL vmlinux 0xa24ae48e hrtimer_cancel -EXPORT_SYMBOL_GPL vmlinux 0xa2500ef6 __SCK__tp_func_powernv_throttle -EXPORT_SYMBOL_GPL vmlinux 0xa251a422 k3_udma_glue_request_rx_chn -EXPORT_SYMBOL_GPL vmlinux 0xa2611f59 PageHuge -EXPORT_SYMBOL_GPL vmlinux 0xa26d9b4f workqueue_congested -EXPORT_SYMBOL_GPL vmlinux 0xa26e2f5b evm_inode_init_security -EXPORT_SYMBOL_GPL vmlinux 0xa27c858b thermal_zone_get_zone_by_name -EXPORT_SYMBOL_GPL vmlinux 0xa29f7866 platform_device_add_resources -EXPORT_SYMBOL_GPL vmlinux 0xa2ab10ba __rio_local_read_config_8 -EXPORT_SYMBOL_GPL vmlinux 0xa2ad99f3 bgmac_enet_suspend -EXPORT_SYMBOL_GPL vmlinux 0xa2af54b3 irq_from_evtchn -EXPORT_SYMBOL_GPL vmlinux 0xa2b0820d __SCK__tp_func_cpu_idle -EXPORT_SYMBOL_GPL vmlinux 0xa2b29ac6 irq_domain_translate_twocell -EXPORT_SYMBOL_GPL vmlinux 0xa2bf139e device_property_read_string -EXPORT_SYMBOL_GPL vmlinux 0xa2cac8a4 virtqueue_get_vring -EXPORT_SYMBOL_GPL vmlinux 0xa2d8c114 devm_clk_get_prepared -EXPORT_SYMBOL_GPL vmlinux 0xa2e069d5 xhci_ext_cap_init -EXPORT_SYMBOL_GPL vmlinux 0xa2e0cdf4 xas_nomem -EXPORT_SYMBOL_GPL vmlinux 0xa2e1b3ef trace_printk_init_buffers -EXPORT_SYMBOL_GPL vmlinux 0xa2ef8f6d dm_table_device_name -EXPORT_SYMBOL_GPL vmlinux 0xa2f7487f hv_is_hibernation_supported -EXPORT_SYMBOL_GPL vmlinux 0xa2f91e65 crypto_unregister_aeads -EXPORT_SYMBOL_GPL vmlinux 0xa2fa75e0 sysfs_add_link_to_group -EXPORT_SYMBOL_GPL vmlinux 0xa2ffd0a0 usb_hub_clear_tt_buffer -EXPORT_SYMBOL_GPL vmlinux 0xa30d9c7a of_reconfig_get_state_change -EXPORT_SYMBOL_GPL vmlinux 0xa32274bd page_cache_async_ra -EXPORT_SYMBOL_GPL vmlinux 0xa32380ed rhashtable_destroy -EXPORT_SYMBOL_GPL vmlinux 0xa3586dff ahci_platform_shutdown -EXPORT_SYMBOL_GPL vmlinux 0xa36bfc89 inet_ehash_nolisten -EXPORT_SYMBOL_GPL vmlinux 0xa36f50fb is_binary_blacklisted -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 0xa3a3e9aa dev_pm_opp_find_freq_exact -EXPORT_SYMBOL_GPL vmlinux 0xa3b41ded platform_get_resource_byname -EXPORT_SYMBOL_GPL vmlinux 0xa3b7855d pci_pr3_present -EXPORT_SYMBOL_GPL vmlinux 0xa3b958ce reset_hung_task_detector -EXPORT_SYMBOL_GPL vmlinux 0xa3dcb681 zynqmp_pm_fpga_load -EXPORT_SYMBOL_GPL vmlinux 0xa3e3d2cd reserve_iova -EXPORT_SYMBOL_GPL vmlinux 0xa3e557e5 relay_close -EXPORT_SYMBOL_GPL vmlinux 0xa3ece414 freezer_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0xa3f12f69 __crypto_xor -EXPORT_SYMBOL_GPL vmlinux 0xa4031b7f sfp_parse_port -EXPORT_SYMBOL_GPL vmlinux 0xa40af297 dev_pm_opp_set_regulators -EXPORT_SYMBOL_GPL vmlinux 0xa410a295 devlink_region_destroy -EXPORT_SYMBOL_GPL vmlinux 0xa44a1307 interval_tree_iter_first -EXPORT_SYMBOL_GPL vmlinux 0xa44bac32 acpi_dma_simple_xlate -EXPORT_SYMBOL_GPL vmlinux 0xa44d3148 ata_acpi_cbl_80wire -EXPORT_SYMBOL_GPL vmlinux 0xa44f2145 dma_buf_export -EXPORT_SYMBOL_GPL vmlinux 0xa451e793 netlink_strict_get_check -EXPORT_SYMBOL_GPL vmlinux 0xa452f2a4 xen_pirq_from_irq -EXPORT_SYMBOL_GPL vmlinux 0xa456322d sdio_align_size -EXPORT_SYMBOL_GPL vmlinux 0xa45c7b90 stack_trace_print -EXPORT_SYMBOL_GPL vmlinux 0xa45d44fc zynqmp_pm_get_pll_frac_data -EXPORT_SYMBOL_GPL vmlinux 0xa46084bb regulator_map_voltage_ascend -EXPORT_SYMBOL_GPL vmlinux 0xa472e361 dw_pcie_ep_linkup -EXPORT_SYMBOL_GPL vmlinux 0xa4738bd1 devm_hwrng_register -EXPORT_SYMBOL_GPL vmlinux 0xa47baa91 usb_wakeup_notification -EXPORT_SYMBOL_GPL vmlinux 0xa47d5376 fib_info_nh_uses_dev -EXPORT_SYMBOL_GPL vmlinux 0xa48196c8 kdb_poll_idx -EXPORT_SYMBOL_GPL vmlinux 0xa4a112f8 virtqueue_add_inbuf -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 0xa4c0a8fa iomap_truncate_page -EXPORT_SYMBOL_GPL vmlinux 0xa4d242af devlink_alloc_ns -EXPORT_SYMBOL_GPL vmlinux 0xa4db3e2e clockevents_register_device -EXPORT_SYMBOL_GPL vmlinux 0xa4eb5793 sbitmap_weight -EXPORT_SYMBOL_GPL vmlinux 0xa4ebab7c fsl_mc_bus_dpcon_type -EXPORT_SYMBOL_GPL vmlinux 0xa4ef005d mmu_interval_notifier_remove -EXPORT_SYMBOL_GPL vmlinux 0xa4f2a2ed acpi_irq_get -EXPORT_SYMBOL_GPL vmlinux 0xa5006823 dev_pm_genpd_resume -EXPORT_SYMBOL_GPL vmlinux 0xa5137187 regmap_check_range_table -EXPORT_SYMBOL_GPL vmlinux 0xa517f884 tegra210_plle_hw_sequence_is_enabled -EXPORT_SYMBOL_GPL vmlinux 0xa531471e clk_save_context -EXPORT_SYMBOL_GPL vmlinux 0xa5318b10 reset_control_get_count -EXPORT_SYMBOL_GPL vmlinux 0xa531aed3 ata_sff_dev_select -EXPORT_SYMBOL_GPL vmlinux 0xa531c0ee ahci_shost_attrs -EXPORT_SYMBOL_GPL vmlinux 0xa539ec08 devlink_port_type_eth_set -EXPORT_SYMBOL_GPL vmlinux 0xa53ae059 irq_of_parse_and_map -EXPORT_SYMBOL_GPL vmlinux 0xa56c781b pinctrl_generic_get_group_name -EXPORT_SYMBOL_GPL vmlinux 0xa5771a31 bpf_offload_dev_create -EXPORT_SYMBOL_GPL vmlinux 0xa5af8c80 phy_start_machine -EXPORT_SYMBOL_GPL vmlinux 0xa5bbcc4a stmpe_reg_read -EXPORT_SYMBOL_GPL vmlinux 0xa5bda8a1 efi_capsule_supported -EXPORT_SYMBOL_GPL vmlinux 0xa5d7c388 pstore_type_to_name -EXPORT_SYMBOL_GPL vmlinux 0xa5e0a836 debugfs_create_blob -EXPORT_SYMBOL_GPL vmlinux 0xa5e53505 pci_generic_config_write32 -EXPORT_SYMBOL_GPL vmlinux 0xa5efbf4c async_synchronize_full -EXPORT_SYMBOL_GPL vmlinux 0xa6011b9a of_reset_control_array_get -EXPORT_SYMBOL_GPL vmlinux 0xa609d0a6 acpi_create_platform_device -EXPORT_SYMBOL_GPL vmlinux 0xa610f054 pm_clk_destroy -EXPORT_SYMBOL_GPL vmlinux 0xa634e910 devm_hwspin_lock_request_specific -EXPORT_SYMBOL_GPL vmlinux 0xa6475469 acpi_get_pci_dev -EXPORT_SYMBOL_GPL vmlinux 0xa65f3c8c __tracepoint_block_bio_complete -EXPORT_SYMBOL_GPL vmlinux 0xa6618664 rio_del_device -EXPORT_SYMBOL_GPL vmlinux 0xa6774d53 dm_internal_suspend_fast -EXPORT_SYMBOL_GPL vmlinux 0xa689199d wbt_enable_default -EXPORT_SYMBOL_GPL vmlinux 0xa6899540 fscrypt_ioctl_remove_key -EXPORT_SYMBOL_GPL vmlinux 0xa68a1c18 bpf_preload_ops -EXPORT_SYMBOL_GPL vmlinux 0xa68fd8bf platform_find_device_by_driver -EXPORT_SYMBOL_GPL vmlinux 0xa693ebd0 serial8250_rpm_put_tx -EXPORT_SYMBOL_GPL vmlinux 0xa69e1252 ping_close -EXPORT_SYMBOL_GPL vmlinux 0xa6a088b7 fscrypt_match_name -EXPORT_SYMBOL_GPL vmlinux 0xa6a7903e fwnode_property_get_reference_args -EXPORT_SYMBOL_GPL vmlinux 0xa6aede11 xenbus_switch_state -EXPORT_SYMBOL_GPL vmlinux 0xa6af1e35 __SCK__tp_func_block_rq_remap -EXPORT_SYMBOL_GPL vmlinux 0xa6b06f65 ata_sff_queue_work -EXPORT_SYMBOL_GPL vmlinux 0xa6b21ef2 dpm_suspend_end -EXPORT_SYMBOL_GPL vmlinux 0xa6b5ee5b __SCK__tp_func_block_split -EXPORT_SYMBOL_GPL vmlinux 0xa6b85e6a device_attach -EXPORT_SYMBOL_GPL vmlinux 0xa6dc0d97 tegra_read_ram_code -EXPORT_SYMBOL_GPL vmlinux 0xa6e1a69d kick_all_cpus_sync -EXPORT_SYMBOL_GPL vmlinux 0xa6ee15ca __tracepoint_rpm_suspend -EXPORT_SYMBOL_GPL vmlinux 0xa6f1a76c spi_mem_get_name -EXPORT_SYMBOL_GPL vmlinux 0xa6fef3e4 virtqueue_add_sgs -EXPORT_SYMBOL_GPL vmlinux 0xa704c1c1 clk_regmap_mux_ro_ops -EXPORT_SYMBOL_GPL vmlinux 0xa709c835 fib6_info_destroy_rcu -EXPORT_SYMBOL_GPL vmlinux 0xa72b2422 virtqueue_get_buf_ctx -EXPORT_SYMBOL_GPL vmlinux 0xa733a57a devm_pinctrl_register -EXPORT_SYMBOL_GPL vmlinux 0xa737d0fd espintcp_queue_out -EXPORT_SYMBOL_GPL vmlinux 0xa73c7faf devlink_dpipe_match_put -EXPORT_SYMBOL_GPL vmlinux 0xa7427081 trace_define_field -EXPORT_SYMBOL_GPL vmlinux 0xa76916f9 spi_alloc_device -EXPORT_SYMBOL_GPL vmlinux 0xa7735b3e regulator_set_voltage_sel_pickable_regmap -EXPORT_SYMBOL_GPL vmlinux 0xa7856098 cpu_topology -EXPORT_SYMBOL_GPL vmlinux 0xa788700b copy_to_user_nofault -EXPORT_SYMBOL_GPL vmlinux 0xa79a7580 kset_find_obj -EXPORT_SYMBOL_GPL vmlinux 0xa7a2ef04 class_dev_iter_init -EXPORT_SYMBOL_GPL vmlinux 0xa7acbe9c vp_modern_queue_address -EXPORT_SYMBOL_GPL vmlinux 0xa7adac2e memremap_pages -EXPORT_SYMBOL_GPL vmlinux 0xa7cba284 housekeeping_any_cpu -EXPORT_SYMBOL_GPL vmlinux 0xa7f4e8b4 crypto_shash_finup -EXPORT_SYMBOL_GPL vmlinux 0xa800f8a6 fsl_mc_bus_dpsw_type -EXPORT_SYMBOL_GPL vmlinux 0xa81b849a devlink_reload_disable -EXPORT_SYMBOL_GPL vmlinux 0xa81b9fa6 blk_req_needs_zone_write_lock -EXPORT_SYMBOL_GPL vmlinux 0xa81c6ac0 rio_local_set_device_id -EXPORT_SYMBOL_GPL vmlinux 0xa8214dc6 handle_mm_fault -EXPORT_SYMBOL_GPL vmlinux 0xa85146e9 devm_thermal_add_hwmon_sysfs -EXPORT_SYMBOL_GPL vmlinux 0xa851973a raw_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0xa85db379 kobject_init_and_add -EXPORT_SYMBOL_GPL vmlinux 0xa862074e crypto_stats_decompress -EXPORT_SYMBOL_GPL vmlinux 0xa8729d3b of_platform_depopulate -EXPORT_SYMBOL_GPL vmlinux 0xa87d1661 __devm_reset_control_get -EXPORT_SYMBOL_GPL vmlinux 0xa89d8b3f srcu_torture_stats_print -EXPORT_SYMBOL_GPL vmlinux 0xa8a65d99 trace_get_event_file -EXPORT_SYMBOL_GPL vmlinux 0xa8b85538 imx_unregister_hw_clocks -EXPORT_SYMBOL_GPL vmlinux 0xa8bb144d __platform_create_bundle -EXPORT_SYMBOL_GPL vmlinux 0xa8db4c32 clk_register_mux_table -EXPORT_SYMBOL_GPL vmlinux 0xa8dd5d1a regulator_map_voltage_linear_range -EXPORT_SYMBOL_GPL vmlinux 0xa908efbc rhltable_init -EXPORT_SYMBOL_GPL vmlinux 0xa90a9a47 devm_spi_register_controller -EXPORT_SYMBOL_GPL vmlinux 0xa91920c3 ata_sff_error_handler -EXPORT_SYMBOL_GPL vmlinux 0xa92d0b30 gnttab_dma_alloc_pages -EXPORT_SYMBOL_GPL vmlinux 0xa9320d27 ktime_get_seconds -EXPORT_SYMBOL_GPL vmlinux 0xa9349817 pci_epf_free_space -EXPORT_SYMBOL_GPL vmlinux 0xa94af94e regmap_bulk_read -EXPORT_SYMBOL_GPL vmlinux 0xa951d17b imx_pinconf_set_scu -EXPORT_SYMBOL_GPL vmlinux 0xa96e8b4e hv_setup_vmbus_handler -EXPORT_SYMBOL_GPL vmlinux 0xa97a90b3 dev_pm_qos_add_request -EXPORT_SYMBOL_GPL vmlinux 0xa99b8e70 __SCK__tp_func_xdp_exception -EXPORT_SYMBOL_GPL vmlinux 0xa99b9bbe component_add -EXPORT_SYMBOL_GPL vmlinux 0xa99d40f1 fsverity_verify_bio -EXPORT_SYMBOL_GPL vmlinux 0xa99ef899 devlink_fmsg_bool_pair_put -EXPORT_SYMBOL_GPL vmlinux 0xa9a507b9 pm_runtime_enable -EXPORT_SYMBOL_GPL vmlinux 0xa9af7ac9 pci_find_host_bridge -EXPORT_SYMBOL_GPL vmlinux 0xa9e18049 task_handoff_unregister -EXPORT_SYMBOL_GPL vmlinux 0xa9e9670f pci_status_get_and_clear_errors -EXPORT_SYMBOL_GPL vmlinux 0xa9f797a4 mptcp_pm_get_subflows_max -EXPORT_SYMBOL_GPL vmlinux 0xa9f7c1ff iomap_file_buffered_write -EXPORT_SYMBOL_GPL vmlinux 0xa9f94b27 devlink_sb_unregister -EXPORT_SYMBOL_GPL vmlinux 0xaa055953 dw_pcie_find_ext_capability -EXPORT_SYMBOL_GPL vmlinux 0xaa0dc751 __traceiter_neigh_update -EXPORT_SYMBOL_GPL vmlinux 0xaa227878 open_related_ns -EXPORT_SYMBOL_GPL vmlinux 0xaa230f88 perf_unregister_guest_info_callbacks -EXPORT_SYMBOL_GPL vmlinux 0xaa399aea __fscrypt_prepare_rename -EXPORT_SYMBOL_GPL vmlinux 0xaa3a10c2 pm_clk_init -EXPORT_SYMBOL_GPL vmlinux 0xaa4c2210 __mmc_send_status -EXPORT_SYMBOL_GPL vmlinux 0xaa54c8ca pinctrl_pm_select_default_state -EXPORT_SYMBOL_GPL vmlinux 0xaa6651c1 xenbus_dev_is_online -EXPORT_SYMBOL_GPL vmlinux 0xaa6a50f9 __static_key_deferred_flush -EXPORT_SYMBOL_GPL vmlinux 0xaa6d9235 ata_sff_softreset -EXPORT_SYMBOL_GPL vmlinux 0xaa72d210 __traceiter_remove_device_from_group -EXPORT_SYMBOL_GPL vmlinux 0xaa8b9ef4 pci_hp_destroy -EXPORT_SYMBOL_GPL vmlinux 0xaaa918c9 ftrace_dump -EXPORT_SYMBOL_GPL vmlinux 0xaaad6f41 platform_msi_domain_free_irqs -EXPORT_SYMBOL_GPL vmlinux 0xaabb6f12 fat_dir_empty -EXPORT_SYMBOL_GPL vmlinux 0xaac32263 cgroup_get_from_path -EXPORT_SYMBOL_GPL vmlinux 0xaad0c3e5 perf_event_pause -EXPORT_SYMBOL_GPL vmlinux 0xaad3878c gpiochip_remove -EXPORT_SYMBOL_GPL vmlinux 0xaae24142 software_node_fwnode -EXPORT_SYMBOL_GPL vmlinux 0xaae93ef6 mctrl_gpio_init_noauto -EXPORT_SYMBOL_GPL vmlinux 0xaaeb5205 of_dma_request_slave_channel -EXPORT_SYMBOL_GPL vmlinux 0xaaec504e fwnode_graph_get_port_parent -EXPORT_SYMBOL_GPL vmlinux 0xaaefcefc pci_cfg_access_unlock -EXPORT_SYMBOL_GPL vmlinux 0xaaf566e8 serdev_device_write_flush -EXPORT_SYMBOL_GPL vmlinux 0xab02357d pci_epc_raise_irq -EXPORT_SYMBOL_GPL vmlinux 0xab060841 zynqmp_pm_query_data -EXPORT_SYMBOL_GPL vmlinux 0xab1136df dpbp_get_attributes -EXPORT_SYMBOL_GPL vmlinux 0xab173686 tracing_snapshot_cond_disable -EXPORT_SYMBOL_GPL vmlinux 0xab19c089 rockchip_clk_add_lookup -EXPORT_SYMBOL_GPL vmlinux 0xab1bf40d pwm_apply_state -EXPORT_SYMBOL_GPL vmlinux 0xab1e0e93 hv_setup_kexec_handler -EXPORT_SYMBOL_GPL vmlinux 0xab31938a fuse_dev_alloc_install -EXPORT_SYMBOL_GPL vmlinux 0xab3424f6 pm_runtime_irq_safe -EXPORT_SYMBOL_GPL vmlinux 0xab3acb1c gpiod_set_raw_array_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0xab44eb9a dma_mmap_pages -EXPORT_SYMBOL_GPL vmlinux 0xab4eb595 tpm_is_tpm2 -EXPORT_SYMBOL_GPL vmlinux 0xab717dad iommu_enable_nesting -EXPORT_SYMBOL_GPL vmlinux 0xab7f853d mtk_mutex_prepare -EXPORT_SYMBOL_GPL vmlinux 0xab927586 dev_pm_genpd_add_notifier -EXPORT_SYMBOL_GPL vmlinux 0xab9bd884 perf_register_guest_info_callbacks -EXPORT_SYMBOL_GPL vmlinux 0xabb2945d subsys_find_device_by_id -EXPORT_SYMBOL_GPL vmlinux 0xabbcfbef vring_new_virtqueue -EXPORT_SYMBOL_GPL vmlinux 0xabc06071 dprc_scan_container -EXPORT_SYMBOL_GPL vmlinux 0xabc47925 pci_epf_bind -EXPORT_SYMBOL_GPL vmlinux 0xabc640f3 list_lru_isolate -EXPORT_SYMBOL_GPL vmlinux 0xabd45848 stop_machine -EXPORT_SYMBOL_GPL vmlinux 0xabd79c44 devlink_rate_leaf_destroy -EXPORT_SYMBOL_GPL vmlinux 0xabf77f4b __mdiobus_modify_changed -EXPORT_SYMBOL_GPL vmlinux 0xac0972eb icc_get -EXPORT_SYMBOL_GPL vmlinux 0xac0a83ce ata_link_online -EXPORT_SYMBOL_GPL vmlinux 0xac0ff552 pci_epc_get_msix -EXPORT_SYMBOL_GPL vmlinux 0xac1fc523 register_wide_hw_breakpoint -EXPORT_SYMBOL_GPL vmlinux 0xac2eb6c4 sk_msg_trim -EXPORT_SYMBOL_GPL vmlinux 0xac34ffbe fwnode_get_phy_node -EXPORT_SYMBOL_GPL vmlinux 0xac3b0299 gpiod_cansleep -EXPORT_SYMBOL_GPL vmlinux 0xac437fbe dw_pcie_ep_deinit_notify -EXPORT_SYMBOL_GPL vmlinux 0xac62cb5f start_poll_synchronize_srcu -EXPORT_SYMBOL_GPL vmlinux 0xac72bc6f xas_find_conflict -EXPORT_SYMBOL_GPL vmlinux 0xac7a2c98 ip6_sk_dst_lookup_flow -EXPORT_SYMBOL_GPL vmlinux 0xac7d992c __sock_recv_wifi_status -EXPORT_SYMBOL_GPL vmlinux 0xac881911 bpf_trace_run2 -EXPORT_SYMBOL_GPL vmlinux 0xac8edaba sock_map_destroy -EXPORT_SYMBOL_GPL vmlinux 0xac937bde __traceiter_fib6_table_lookup -EXPORT_SYMBOL_GPL vmlinux 0xac985bd3 sdio_memcpy_fromio -EXPORT_SYMBOL_GPL vmlinux 0xaca03d1e ehci_hub_control -EXPORT_SYMBOL_GPL vmlinux 0xacaf614b br_fdb_test_addr_hook -EXPORT_SYMBOL_GPL vmlinux 0xacb4d88c clk_rate_exclusive_put -EXPORT_SYMBOL_GPL vmlinux 0xacd49ad1 xfrm_audit_state_icvfail -EXPORT_SYMBOL_GPL vmlinux 0xad01f4af iommu_aux_detach_device -EXPORT_SYMBOL_GPL vmlinux 0xad106b52 pm_generic_poweroff_noirq -EXPORT_SYMBOL_GPL vmlinux 0xad11a07b bgmac_enet_probe -EXPORT_SYMBOL_GPL vmlinux 0xad25602f __tracepoint_sched_overutilized_tp -EXPORT_SYMBOL_GPL vmlinux 0xad35203e pci_store_saved_state -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 0xad5489c8 platform_get_resource -EXPORT_SYMBOL_GPL vmlinux 0xad56d7e2 gnttab_map_refs -EXPORT_SYMBOL_GPL vmlinux 0xad5737fc efivar_init -EXPORT_SYMBOL_GPL vmlinux 0xad5d483f crypto_register_ahash -EXPORT_SYMBOL_GPL vmlinux 0xad645234 register_switchdev_notifier -EXPORT_SYMBOL_GPL vmlinux 0xad6d4df1 efivar_entry_set -EXPORT_SYMBOL_GPL vmlinux 0xad6eb0ac devlink_dpipe_table_register -EXPORT_SYMBOL_GPL vmlinux 0xad76a3f0 __SCK__tp_func_neigh_update_done -EXPORT_SYMBOL_GPL vmlinux 0xad8579c8 devlink_trap_policers_unregister -EXPORT_SYMBOL_GPL vmlinux 0xad87847f irq_alloc_generic_chip -EXPORT_SYMBOL_GPL vmlinux 0xad8ca048 dax_writeback_mapping_range -EXPORT_SYMBOL_GPL vmlinux 0xad99b6e9 phy_remove_lookup -EXPORT_SYMBOL_GPL vmlinux 0xad9bd425 gnttab_pages_set_private -EXPORT_SYMBOL_GPL vmlinux 0xada06b64 gnttab_unmap_refs -EXPORT_SYMBOL_GPL vmlinux 0xada38766 dst_cache_destroy -EXPORT_SYMBOL_GPL vmlinux 0xada5810f sysfs_create_mount_point -EXPORT_SYMBOL_GPL vmlinux 0xadb11131 dma_wait_for_async_tx -EXPORT_SYMBOL_GPL vmlinux 0xadb1e87a pinctrl_utils_free_map -EXPORT_SYMBOL_GPL vmlinux 0xadde7858 of_property_read_variable_u64_array -EXPORT_SYMBOL_GPL vmlinux 0xadef059d find_extend_vma -EXPORT_SYMBOL_GPL vmlinux 0xadf7b61f wb_writeout_inc -EXPORT_SYMBOL_GPL vmlinux 0xadf8843d ata_pio_need_iordy -EXPORT_SYMBOL_GPL vmlinux 0xae1051b0 net_cls_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0xae157136 dm_path_uevent -EXPORT_SYMBOL_GPL vmlinux 0xae26a356 irq_chip_set_parent_state -EXPORT_SYMBOL_GPL vmlinux 0xae271f17 spi_unregister_controller -EXPORT_SYMBOL_GPL vmlinux 0xae39f80e dst_cache_init -EXPORT_SYMBOL_GPL vmlinux 0xae3ebab0 ata_sff_qc_fill_rtf -EXPORT_SYMBOL_GPL vmlinux 0xae507920 ncsi_start_dev -EXPORT_SYMBOL_GPL vmlinux 0xae5e6c09 crypto_ahash_digest -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 0xae7c231d mpi_cmp -EXPORT_SYMBOL_GPL vmlinux 0xae89ac3d l3mdev_table_lookup_unregister -EXPORT_SYMBOL_GPL vmlinux 0xaead6d55 xas_set_mark -EXPORT_SYMBOL_GPL vmlinux 0xaef521d4 irq_get_default_host -EXPORT_SYMBOL_GPL vmlinux 0xaeffc2ca rtc_alarm_irq_enable -EXPORT_SYMBOL_GPL vmlinux 0xaf076aec nd_fletcher64 -EXPORT_SYMBOL_GPL vmlinux 0xaf0b6ba7 blkg_rwstat_init -EXPORT_SYMBOL_GPL vmlinux 0xaf11c6a9 skb_zerocopy_headlen -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 0xaf5d26fd phy_modify_mmd_changed -EXPORT_SYMBOL_GPL vmlinux 0xaf793668 __alloc_percpu_gfp -EXPORT_SYMBOL_GPL vmlinux 0xaf852873 cpuidle_register_device -EXPORT_SYMBOL_GPL vmlinux 0xaf892540 led_sysfs_disable -EXPORT_SYMBOL_GPL vmlinux 0xaf8b22f2 fib_nexthop_info -EXPORT_SYMBOL_GPL vmlinux 0xaf9509f6 input_ff_flush -EXPORT_SYMBOL_GPL vmlinux 0xafb07262 __pfn_to_mfn -EXPORT_SYMBOL_GPL vmlinux 0xafb079b4 ip6_push_pending_frames -EXPORT_SYMBOL_GPL vmlinux 0xafb794c6 tegra_xusb_padctl_legacy_remove -EXPORT_SYMBOL_GPL vmlinux 0xafd8c39d ata_acpi_gtm -EXPORT_SYMBOL_GPL vmlinux 0xafdb23ec ti_sci_get_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0xafddd545 ata_id_c_string -EXPORT_SYMBOL_GPL vmlinux 0xafe3a87c scsi_host_complete_all_commands -EXPORT_SYMBOL_GPL vmlinux 0xafeae311 device_add_groups -EXPORT_SYMBOL_GPL vmlinux 0xafeb58c1 __SCK__tp_func_io_page_fault -EXPORT_SYMBOL_GPL vmlinux 0xafed1e33 ip4_datagram_release_cb -EXPORT_SYMBOL_GPL vmlinux 0xaffce8f4 dev_pm_opp_set_prop_name -EXPORT_SYMBOL_GPL vmlinux 0xb0099f79 topology_clear_scale_freq_source -EXPORT_SYMBOL_GPL vmlinux 0xb0132c31 xenbus_dev_fatal -EXPORT_SYMBOL_GPL vmlinux 0xb0177198 crypto_shash_update -EXPORT_SYMBOL_GPL vmlinux 0xb01d9d9d pci_create_slot -EXPORT_SYMBOL_GPL vmlinux 0xb0208623 pm_runtime_barrier -EXPORT_SYMBOL_GPL vmlinux 0xb0294460 crypto_register_template -EXPORT_SYMBOL_GPL vmlinux 0xb02ac411 register_xenstore_notifier -EXPORT_SYMBOL_GPL vmlinux 0xb03d0176 thermal_zone_of_get_sensor_id -EXPORT_SYMBOL_GPL vmlinux 0xb049a294 __SCK__tp_func_pelt_irq_tp -EXPORT_SYMBOL_GPL vmlinux 0xb054475e __crypto_alloc_tfm -EXPORT_SYMBOL_GPL vmlinux 0xb05b68d5 zynqmp_pm_reset_get_status -EXPORT_SYMBOL_GPL vmlinux 0xb0747ed2 rcu_cpu_stall_suppress -EXPORT_SYMBOL_GPL vmlinux 0xb077e70a clk_unprepare -EXPORT_SYMBOL_GPL vmlinux 0xb08842f7 ata_dev_pair -EXPORT_SYMBOL_GPL vmlinux 0xb08a22a3 cpufreq_show_cpus -EXPORT_SYMBOL_GPL vmlinux 0xb098f2f6 pci_probe_reset_bus -EXPORT_SYMBOL_GPL vmlinux 0xb09a09ef sock_diag_unregister_inet_compat -EXPORT_SYMBOL_GPL vmlinux 0xb0a0890c rtnl_get_net_ns_capable -EXPORT_SYMBOL_GPL vmlinux 0xb0b85f47 ring_buffer_iter_reset -EXPORT_SYMBOL_GPL vmlinux 0xb0bd77a3 ip6_datagram_release_cb -EXPORT_SYMBOL_GPL vmlinux 0xb0c10c1b bus_sort_breadthfirst -EXPORT_SYMBOL_GPL vmlinux 0xb0c1f980 msg_zerocopy_realloc -EXPORT_SYMBOL_GPL vmlinux 0xb0c51c14 vp_modern_get_num_queues -EXPORT_SYMBOL_GPL vmlinux 0xb0ca618a dev_pm_opp_sync_regulators -EXPORT_SYMBOL_GPL vmlinux 0xb0cfc7d3 devm_gpiod_get_index -EXPORT_SYMBOL_GPL vmlinux 0xb0d1656c gpio_free_array -EXPORT_SYMBOL_GPL vmlinux 0xb0d4731a __bio_crypt_clone -EXPORT_SYMBOL_GPL vmlinux 0xb0e8e671 xenbus_otherend_changed -EXPORT_SYMBOL_GPL vmlinux 0xb0f67c61 devm_hwspin_lock_free -EXPORT_SYMBOL_GPL vmlinux 0xb10148e5 dbs_update -EXPORT_SYMBOL_GPL vmlinux 0xb10a1597 ata_sff_qc_issue -EXPORT_SYMBOL_GPL vmlinux 0xb10d964d devlink_fmsg_pair_nest_end -EXPORT_SYMBOL_GPL vmlinux 0xb118208c virtqueue_add_outbuf -EXPORT_SYMBOL_GPL vmlinux 0xb119489a bio_start_io_acct_time -EXPORT_SYMBOL_GPL vmlinux 0xb11d9000 tty_dev_name_to_number -EXPORT_SYMBOL_GPL vmlinux 0xb11ddc91 usb_wait_anchor_empty_timeout -EXPORT_SYMBOL_GPL vmlinux 0xb1395360 ata_port_desc -EXPORT_SYMBOL_GPL vmlinux 0xb13e1500 usb_hcd_unmap_urb_for_dma -EXPORT_SYMBOL_GPL vmlinux 0xb14be37a ata_sff_hsm_move -EXPORT_SYMBOL_GPL vmlinux 0xb1535f32 power_supply_get_property -EXPORT_SYMBOL_GPL vmlinux 0xb1647fc2 devlink_info_version_running_put -EXPORT_SYMBOL_GPL vmlinux 0xb166c77e syscon_regmap_lookup_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0xb171a7c7 kern_mount -EXPORT_SYMBOL_GPL vmlinux 0xb17480c6 serial8250_do_shutdown -EXPORT_SYMBOL_GPL vmlinux 0xb18429eb suspend_device_irqs -EXPORT_SYMBOL_GPL vmlinux 0xb18d648f do_unbind_con_driver -EXPORT_SYMBOL_GPL vmlinux 0xb1a1b2f7 ata_scsi_slave_destroy -EXPORT_SYMBOL_GPL vmlinux 0xb1b049f3 freq_qos_remove_notifier -EXPORT_SYMBOL_GPL vmlinux 0xb1be70c6 __pm_runtime_disable -EXPORT_SYMBOL_GPL vmlinux 0xb1bed25d dpm_resume_start -EXPORT_SYMBOL_GPL vmlinux 0xb1e25684 __trace_bputs -EXPORT_SYMBOL_GPL vmlinux 0xb1f75495 tcp_is_ulp_esp -EXPORT_SYMBOL_GPL vmlinux 0xb1fc1782 pci_speed_string -EXPORT_SYMBOL_GPL vmlinux 0xb204b327 tcp_get_info -EXPORT_SYMBOL_GPL vmlinux 0xb2145ef1 rio_mport_send_doorbell -EXPORT_SYMBOL_GPL vmlinux 0xb2210d64 reset_control_deassert -EXPORT_SYMBOL_GPL vmlinux 0xb2233ff2 percpu_down_write -EXPORT_SYMBOL_GPL vmlinux 0xb22c0129 xhci_dbg_trace -EXPORT_SYMBOL_GPL vmlinux 0xb2405efc secure_tcp_seq -EXPORT_SYMBOL_GPL vmlinux 0xb24d0837 ata_host_activate -EXPORT_SYMBOL_GPL vmlinux 0xb2525cb1 led_trigger_blink_oneshot -EXPORT_SYMBOL_GPL vmlinux 0xb2586b87 dma_buf_pin -EXPORT_SYMBOL_GPL vmlinux 0xb269ebdc kernfs_notify -EXPORT_SYMBOL_GPL vmlinux 0xb26a1add elfcorehdr_addr -EXPORT_SYMBOL_GPL vmlinux 0xb26bbbdb clk_register_fractional_divider -EXPORT_SYMBOL_GPL vmlinux 0xb280319c ata_scsi_change_queue_depth -EXPORT_SYMBOL_GPL vmlinux 0xb286de7e of_genpd_parse_idle_states -EXPORT_SYMBOL_GPL vmlinux 0xb29533ee zs_malloc -EXPORT_SYMBOL_GPL vmlinux 0xb2aa142a virtqueue_detach_unused_buf -EXPORT_SYMBOL_GPL vmlinux 0xb2b3daa2 cpuidle_unregister_driver -EXPORT_SYMBOL_GPL vmlinux 0xb2b3ffa4 serdev_controller_remove -EXPORT_SYMBOL_GPL vmlinux 0xb2c1732e rcu_gp_set_torture_wait -EXPORT_SYMBOL_GPL vmlinux 0xb2c203ad __lock_page_killable -EXPORT_SYMBOL_GPL vmlinux 0xb2d1746b sbitmap_del_wait_queue -EXPORT_SYMBOL_GPL vmlinux 0xb2d75370 acpi_device_fwnode_ops -EXPORT_SYMBOL_GPL vmlinux 0xb2e764e8 suspend_valid_only_mem -EXPORT_SYMBOL_GPL vmlinux 0xb2f3bc78 fsl8250_handle_irq -EXPORT_SYMBOL_GPL vmlinux 0xb2fdd27b pci_dev_trylock -EXPORT_SYMBOL_GPL vmlinux 0xb307c909 devlink_fmsg_u64_pair_put -EXPORT_SYMBOL_GPL vmlinux 0xb30bba65 devres_add -EXPORT_SYMBOL_GPL vmlinux 0xb312ef8a tty_register_device_attr -EXPORT_SYMBOL_GPL vmlinux 0xb326c2f3 klist_iter_init -EXPORT_SYMBOL_GPL vmlinux 0xb3360932 cpufreq_register_driver -EXPORT_SYMBOL_GPL vmlinux 0xb338a8ce mtk_pinconf_bias_get_rev1 -EXPORT_SYMBOL_GPL vmlinux 0xb3511cbe devfreq_cooling_register -EXPORT_SYMBOL_GPL vmlinux 0xb35f0159 xfrm_audit_policy_add -EXPORT_SYMBOL_GPL vmlinux 0xb382df18 ata_sas_tport_add -EXPORT_SYMBOL_GPL vmlinux 0xb388f7a0 usb_create_shared_hcd -EXPORT_SYMBOL_GPL vmlinux 0xb38c13d6 crypto_aead_encrypt -EXPORT_SYMBOL_GPL vmlinux 0xb3a03caf xenbus_free_evtchn -EXPORT_SYMBOL_GPL vmlinux 0xb3bf917e tcp_enter_memory_pressure -EXPORT_SYMBOL_GPL vmlinux 0xb3c1877f __usb_create_hcd -EXPORT_SYMBOL_GPL vmlinux 0xb3d7be95 crypto_spawn_tfm -EXPORT_SYMBOL_GPL vmlinux 0xb3de97ec dw_pcie_ep_init -EXPORT_SYMBOL_GPL vmlinux 0xb3edfe97 dev_pm_opp_of_find_icc_paths -EXPORT_SYMBOL_GPL vmlinux 0xb3f07f4a __clk_determine_rate -EXPORT_SYMBOL_GPL vmlinux 0xb3fd0a55 kobject_create_and_add -EXPORT_SYMBOL_GPL vmlinux 0xb403023e ahci_do_softreset -EXPORT_SYMBOL_GPL vmlinux 0xb40d673e zynqmp_pm_pinctrl_request -EXPORT_SYMBOL_GPL vmlinux 0xb41a63b8 of_get_display_timing -EXPORT_SYMBOL_GPL vmlinux 0xb43a6bf7 xen_dbgp_reset_prep -EXPORT_SYMBOL_GPL vmlinux 0xb43f9365 ktime_get -EXPORT_SYMBOL_GPL vmlinux 0xb4429b64 acpi_dev_resource_ext_address_space -EXPORT_SYMBOL_GPL vmlinux 0xb44e18ea audit_enabled -EXPORT_SYMBOL_GPL vmlinux 0xb4504524 devm_kfree -EXPORT_SYMBOL_GPL vmlinux 0xb457dacb of_icc_bulk_get -EXPORT_SYMBOL_GPL vmlinux 0xb459852d bpf_trace_run3 -EXPORT_SYMBOL_GPL vmlinux 0xb46d3168 subsys_virtual_register -EXPORT_SYMBOL_GPL vmlinux 0xb46eccda debugfs_real_fops -EXPORT_SYMBOL_GPL vmlinux 0xb480acd1 device_show_int -EXPORT_SYMBOL_GPL vmlinux 0xb48f0638 software_node_register -EXPORT_SYMBOL_GPL vmlinux 0xb49a8705 devm_extcon_dev_free -EXPORT_SYMBOL_GPL vmlinux 0xb49d6579 switchdev_handle_port_obj_del -EXPORT_SYMBOL_GPL vmlinux 0xb4a8aa2a mmu_notifier_get_locked -EXPORT_SYMBOL_GPL vmlinux 0xb4b19455 imx8m_clk_hw_composite_flags -EXPORT_SYMBOL_GPL vmlinux 0xb4b97c90 pvclock_gtod_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0xb4c862ba clk_hw_unregister_divider -EXPORT_SYMBOL_GPL vmlinux 0xb4d773f4 rockchip_register_restart_notifier -EXPORT_SYMBOL_GPL vmlinux 0xb4db36f4 mtk_pinconf_bias_get -EXPORT_SYMBOL_GPL vmlinux 0xb4e17a43 dma_alloc_pages -EXPORT_SYMBOL_GPL vmlinux 0xb4ea7cf7 kgdb_connected -EXPORT_SYMBOL_GPL vmlinux 0xb4ed79c8 device_match_any -EXPORT_SYMBOL_GPL vmlinux 0xb4eda0da ring_buffer_event_length -EXPORT_SYMBOL_GPL vmlinux 0xb501b2df nd_cmd_dimm_desc -EXPORT_SYMBOL_GPL vmlinux 0xb51fbd64 edac_op_state -EXPORT_SYMBOL_GPL vmlinux 0xb529d446 ohci_hub_status_data -EXPORT_SYMBOL_GPL vmlinux 0xb52ebad8 spi_setup -EXPORT_SYMBOL_GPL vmlinux 0xb53983f0 cpu_latency_qos_remove_request -EXPORT_SYMBOL_GPL vmlinux 0xb539e2fc psil_set_new_ep_config -EXPORT_SYMBOL_GPL vmlinux 0xb54093ac mtk_pinconf_drive_get_rev1 -EXPORT_SYMBOL_GPL vmlinux 0xb55769d2 __pci_hp_register -EXPORT_SYMBOL_GPL vmlinux 0xb5597dd5 scsi_bus_type -EXPORT_SYMBOL_GPL vmlinux 0xb55de460 HYPERVISOR_dm_op -EXPORT_SYMBOL_GPL vmlinux 0xb5629e03 sdio_retune_hold_now -EXPORT_SYMBOL_GPL vmlinux 0xb564e4a0 blk_trace_remove -EXPORT_SYMBOL_GPL vmlinux 0xb569fa84 spi_new_device -EXPORT_SYMBOL_GPL vmlinux 0xb56b31ec acpi_dev_resume -EXPORT_SYMBOL_GPL vmlinux 0xb5716ac7 dm_internal_resume_fast -EXPORT_SYMBOL_GPL vmlinux 0xb59580a8 inet6_csk_addr2sockaddr -EXPORT_SYMBOL_GPL vmlinux 0xb5a83e35 gnttab_setup_auto_xlat_frames -EXPORT_SYMBOL_GPL vmlinux 0xb5a8c226 acpi_gsi_to_irq -EXPORT_SYMBOL_GPL vmlinux 0xb5b6fb04 hv_get_vpreg -EXPORT_SYMBOL_GPL vmlinux 0xb5b73dc2 sdio_retune_crc_enable -EXPORT_SYMBOL_GPL vmlinux 0xb5b82311 clk_hw_register_gate2 -EXPORT_SYMBOL_GPL vmlinux 0xb5ce4f27 pci_max_pasids -EXPORT_SYMBOL_GPL vmlinux 0xb5dc824c verify_pkcs7_signature -EXPORT_SYMBOL_GPL vmlinux 0xb5e7579b driver_create_file -EXPORT_SYMBOL_GPL vmlinux 0xb5ebde6b dma_get_merge_boundary -EXPORT_SYMBOL_GPL vmlinux 0xb5f23ad9 devm_remove_action -EXPORT_SYMBOL_GPL vmlinux 0xb5f566e5 device_match_devt -EXPORT_SYMBOL_GPL vmlinux 0xb5f8ccbc icc_put -EXPORT_SYMBOL_GPL vmlinux 0xb6048535 __devm_reset_control_bulk_get -EXPORT_SYMBOL_GPL vmlinux 0xb60de2b7 pci_sriov_set_totalvfs -EXPORT_SYMBOL_GPL vmlinux 0xb6101009 sysfs_create_link -EXPORT_SYMBOL_GPL vmlinux 0xb6259df6 pci_assign_unassigned_bus_resources -EXPORT_SYMBOL_GPL vmlinux 0xb6261484 register_die_notifier -EXPORT_SYMBOL_GPL vmlinux 0xb633d378 fscrypt_set_bio_crypt_ctx_bh -EXPORT_SYMBOL_GPL vmlinux 0xb634c66e gnttab_unmap_refs_async -EXPORT_SYMBOL_GPL vmlinux 0xb6357e53 cpuidle_enable_device -EXPORT_SYMBOL_GPL vmlinux 0xb6410433 mpi_addm -EXPORT_SYMBOL_GPL vmlinux 0xb655f91b pci_epc_get_next_free_bar -EXPORT_SYMBOL_GPL vmlinux 0xb6597758 regmap_get_raw_read_max -EXPORT_SYMBOL_GPL vmlinux 0xb67008c3 clk_hw_get_num_parents -EXPORT_SYMBOL_GPL vmlinux 0xb6787346 sfp_unregister_socket -EXPORT_SYMBOL_GPL vmlinux 0xb681146f usb_register_driver -EXPORT_SYMBOL_GPL vmlinux 0xb6850ab1 generic_online_page -EXPORT_SYMBOL_GPL vmlinux 0xb68a4f15 fscrypt_fname_siphash -EXPORT_SYMBOL_GPL vmlinux 0xb6a06025 d_walk -EXPORT_SYMBOL_GPL vmlinux 0xb6b352d4 of_genpd_remove_last -EXPORT_SYMBOL_GPL vmlinux 0xb6bf9581 __put_task_struct -EXPORT_SYMBOL_GPL vmlinux 0xb6c9a3c4 cpufreq_unregister_driver -EXPORT_SYMBOL_GPL vmlinux 0xb6d05ed7 __devm_regmap_init_spi -EXPORT_SYMBOL_GPL vmlinux 0xb6dc53c9 usb_find_alt_setting -EXPORT_SYMBOL_GPL vmlinux 0xb6deb9b7 spi_take_timestamp_pre -EXPORT_SYMBOL_GPL vmlinux 0xb6e155b9 gpiod_is_active_low -EXPORT_SYMBOL_GPL vmlinux 0xb6e6d99d clk_disable -EXPORT_SYMBOL_GPL vmlinux 0xb6ea6f44 regmap_field_bulk_alloc -EXPORT_SYMBOL_GPL vmlinux 0xb6ebf523 driver_find_device -EXPORT_SYMBOL_GPL vmlinux 0xb6f385a1 cpufreq_freq_attr_scaling_boost_freqs -EXPORT_SYMBOL_GPL vmlinux 0xb701f948 transport_configure_device -EXPORT_SYMBOL_GPL vmlinux 0xb710f43a fsnotify_alloc_user_group -EXPORT_SYMBOL_GPL vmlinux 0xb7329c06 clk_set_phase -EXPORT_SYMBOL_GPL vmlinux 0xb73713d7 nvmem_add_cell_lookups -EXPORT_SYMBOL_GPL vmlinux 0xb73a6601 mmu_notifier_put -EXPORT_SYMBOL_GPL vmlinux 0xb7515d7e __clk_get_hw -EXPORT_SYMBOL_GPL vmlinux 0xb762931c rcu_read_unlock_trace_special -EXPORT_SYMBOL_GPL vmlinux 0xb778ddc6 iommu_report_device_fault -EXPORT_SYMBOL_GPL vmlinux 0xb77ac91c class_unregister -EXPORT_SYMBOL_GPL vmlinux 0xb782c1a3 hv_get_vpreg_128 -EXPORT_SYMBOL_GPL vmlinux 0xb7851062 usb_string -EXPORT_SYMBOL_GPL vmlinux 0xb786bf75 pci_write_msi_msg -EXPORT_SYMBOL_GPL vmlinux 0xb78e70dd crypto_spawn_tfm2 -EXPORT_SYMBOL_GPL vmlinux 0xb79e0737 vc_scrolldelta_helper -EXPORT_SYMBOL_GPL vmlinux 0xb7a387fc synchronize_rcu_tasks_rude -EXPORT_SYMBOL_GPL vmlinux 0xb7ae2d9c blkcg_policy_unregister -EXPORT_SYMBOL_GPL vmlinux 0xb7b570cf device_create_with_groups -EXPORT_SYMBOL_GPL vmlinux 0xb7b9afba sbitmap_bitmap_show -EXPORT_SYMBOL_GPL vmlinux 0xb7c45483 pinctrl_unregister -EXPORT_SYMBOL_GPL vmlinux 0xb7c69a63 unregister_vmap_purge_notifier -EXPORT_SYMBOL_GPL vmlinux 0xb7cc0cff __tracepoint_br_fdb_add -EXPORT_SYMBOL_GPL vmlinux 0xb7e27069 dmi_kobj -EXPORT_SYMBOL_GPL vmlinux 0xb7e944eb __regmap_init_mmio_clk -EXPORT_SYMBOL_GPL vmlinux 0xb7f990e9 rht_bucket_nested -EXPORT_SYMBOL_GPL vmlinux 0xb7fcd4bd of_pm_clk_add_clks -EXPORT_SYMBOL_GPL vmlinux 0xb80891b6 fsstack_copy_attr_all -EXPORT_SYMBOL_GPL vmlinux 0xb80cf61b thermal_zone_get_offset -EXPORT_SYMBOL_GPL vmlinux 0xb830236d crypto_alloc_skcipher -EXPORT_SYMBOL_GPL vmlinux 0xb83059b8 device_init_wakeup -EXPORT_SYMBOL_GPL vmlinux 0xb847585f is_hash_blacklisted -EXPORT_SYMBOL_GPL vmlinux 0xb84a94c2 pm_stay_awake -EXPORT_SYMBOL_GPL vmlinux 0xb85add15 platform_device_add_data -EXPORT_SYMBOL_GPL vmlinux 0xb87f40fe cppc_set_enable -EXPORT_SYMBOL_GPL vmlinux 0xb88356d8 device_match_of_node -EXPORT_SYMBOL_GPL vmlinux 0xb88a04b4 usb_sg_wait -EXPORT_SYMBOL_GPL vmlinux 0xb88bc47e arch_apei_report_mem_error -EXPORT_SYMBOL_GPL vmlinux 0xb88dbfce irq_set_irqchip_state -EXPORT_SYMBOL_GPL vmlinux 0xb89703dc cpufreq_frequency_table_get_index -EXPORT_SYMBOL_GPL vmlinux 0xb897c034 pci_slots_kset -EXPORT_SYMBOL_GPL vmlinux 0xb8993fac __tracepoint_remove_device_from_group -EXPORT_SYMBOL_GPL vmlinux 0xb89e69b1 jump_label_update_timeout -EXPORT_SYMBOL_GPL vmlinux 0xb8ac63b7 dev_pm_opp_get_freq -EXPORT_SYMBOL_GPL vmlinux 0xb8b2fe0a nfs_ssc_unregister -EXPORT_SYMBOL_GPL vmlinux 0xb8b8c4f0 ti_sci_release_resource -EXPORT_SYMBOL_GPL vmlinux 0xb8bfc37a devlink_remote_reload_actions_performed -EXPORT_SYMBOL_GPL vmlinux 0xb8c2a9f0 acpi_pm_wakeup_event -EXPORT_SYMBOL_GPL vmlinux 0xb8c39428 device_link_add -EXPORT_SYMBOL_GPL vmlinux 0xb8cc363a bio_alloc_kiocb -EXPORT_SYMBOL_GPL vmlinux 0xb8cd3a7f nf_logger_put -EXPORT_SYMBOL_GPL vmlinux 0xb8d310b1 crypto_chain -EXPORT_SYMBOL_GPL vmlinux 0xb8d9ae88 regmap_bulk_write -EXPORT_SYMBOL_GPL vmlinux 0xb8e51f40 devfreq_event_add_edev -EXPORT_SYMBOL_GPL vmlinux 0xb8f04bca rockchip_pcie_enable_clocks -EXPORT_SYMBOL_GPL vmlinux 0xb8f261c9 kstrdup_quotable_cmdline -EXPORT_SYMBOL_GPL vmlinux 0xb912560d static_key_disable -EXPORT_SYMBOL_GPL vmlinux 0xb9150907 sbitmap_queue_min_shallow_depth -EXPORT_SYMBOL_GPL vmlinux 0xb917b6d7 return_address -EXPORT_SYMBOL_GPL vmlinux 0xb9212db3 fuse_simple_background -EXPORT_SYMBOL_GPL vmlinux 0xb926bb57 powercap_register_zone -EXPORT_SYMBOL_GPL vmlinux 0xb9287dd1 virtio_device_freeze -EXPORT_SYMBOL_GPL vmlinux 0xb92c54c8 spi_finalize_current_message -EXPORT_SYMBOL_GPL vmlinux 0xb934f8bb fuse_conn_get -EXPORT_SYMBOL_GPL vmlinux 0xb9386092 ping_rcv -EXPORT_SYMBOL_GPL vmlinux 0xb94014a1 xenbus_dev_changed -EXPORT_SYMBOL_GPL vmlinux 0xb94f1392 fwnode_get_named_gpiod -EXPORT_SYMBOL_GPL vmlinux 0xb9577ad0 power_supply_get_property_from_supplier -EXPORT_SYMBOL_GPL vmlinux 0xb9590bfc acpi_subsys_suspend_late -EXPORT_SYMBOL_GPL vmlinux 0xb959d9cd dev_pm_opp_adjust_voltage -EXPORT_SYMBOL_GPL vmlinux 0xb9681621 xdp_do_flush -EXPORT_SYMBOL_GPL vmlinux 0xb9739926 phy_resolve_aneg_pause -EXPORT_SYMBOL_GPL vmlinux 0xb9852d11 __traceiter_mc_event -EXPORT_SYMBOL_GPL vmlinux 0xb98bb315 phy_gbit_fibre_features -EXPORT_SYMBOL_GPL vmlinux 0xb992f34e dev_pm_get_subsys_data -EXPORT_SYMBOL_GPL vmlinux 0xb99b96bb ata_ehi_clear_desc -EXPORT_SYMBOL_GPL vmlinux 0xb9ad6e36 driver_unregister -EXPORT_SYMBOL_GPL vmlinux 0xb9ae5b6b uart_xchar_out -EXPORT_SYMBOL_GPL vmlinux 0xb9b69ec1 kernfs_find_and_get_ns -EXPORT_SYMBOL_GPL vmlinux 0xb9b9df41 usb_amd_dev_put -EXPORT_SYMBOL_GPL vmlinux 0xb9bd5ae6 crypto_register_ahashes -EXPORT_SYMBOL_GPL vmlinux 0xb9bf0585 epl_get_misc_ec_err_status -EXPORT_SYMBOL_GPL vmlinux 0xb9c16f51 hv_max_vp_index -EXPORT_SYMBOL_GPL vmlinux 0xb9c425de register_syscore_ops -EXPORT_SYMBOL_GPL vmlinux 0xb9ce6243 crypto_stats_init -EXPORT_SYMBOL_GPL vmlinux 0xb9d025c9 llist_del_first -EXPORT_SYMBOL_GPL vmlinux 0xb9d9325c dm_set_target_max_io_len -EXPORT_SYMBOL_GPL vmlinux 0xb9f4db7a fuse_do_ioctl -EXPORT_SYMBOL_GPL vmlinux 0xb9fe4d56 i2c_new_client_device -EXPORT_SYMBOL_GPL vmlinux 0xb9ffaeb7 crypto_grab_skcipher -EXPORT_SYMBOL_GPL vmlinux 0xba011ff8 addrconf_prefix_rcv_add_addr -EXPORT_SYMBOL_GPL vmlinux 0xba02e447 md_stop_writes -EXPORT_SYMBOL_GPL vmlinux 0xba057786 kernel_read_file_from_path_initns -EXPORT_SYMBOL_GPL vmlinux 0xba07808c fat_sync_inode -EXPORT_SYMBOL_GPL vmlinux 0xba1d5d5b serdev_device_write_room -EXPORT_SYMBOL_GPL vmlinux 0xba2b7f64 cpufreq_generic_get -EXPORT_SYMBOL_GPL vmlinux 0xba3d4aa0 cpufreq_cpu_get -EXPORT_SYMBOL_GPL vmlinux 0xba3e8029 of_modalias_node -EXPORT_SYMBOL_GPL vmlinux 0xba515381 of_gen_pool_get -EXPORT_SYMBOL_GPL vmlinux 0xba51e9b4 class_find_device -EXPORT_SYMBOL_GPL vmlinux 0xba69feaf iommu_set_pgtable_quirks -EXPORT_SYMBOL_GPL vmlinux 0xba74f0fa sprd_pinctrl_core_probe -EXPORT_SYMBOL_GPL vmlinux 0xba781213 i2c_dw_acpi_configure -EXPORT_SYMBOL_GPL vmlinux 0xba7e8ca1 devlink_resource_register -EXPORT_SYMBOL_GPL vmlinux 0xba87872c get_kernel_pages -EXPORT_SYMBOL_GPL vmlinux 0xba87e332 rio_release_dma -EXPORT_SYMBOL_GPL vmlinux 0xbab9a9f0 maxim_charger_currents -EXPORT_SYMBOL_GPL vmlinux 0xbabb3d04 debugfs_create_symlink -EXPORT_SYMBOL_GPL vmlinux 0xbabe0c39 wbc_account_cgroup_owner -EXPORT_SYMBOL_GPL vmlinux 0xbac51a4d devm_clk_bulk_get -EXPORT_SYMBOL_GPL vmlinux 0xbaca2ef3 i2c_handle_smbus_host_notify -EXPORT_SYMBOL_GPL vmlinux 0xbad045b4 edac_mc_handle_error -EXPORT_SYMBOL_GPL vmlinux 0xbad4ef39 amba_device_alloc -EXPORT_SYMBOL_GPL vmlinux 0xbad8ad29 devm_power_supply_register -EXPORT_SYMBOL_GPL vmlinux 0xbaf2005b sdio_set_host_pm_flags -EXPORT_SYMBOL_GPL vmlinux 0xbaf22757 kvfree_call_rcu -EXPORT_SYMBOL_GPL vmlinux 0xbaf4f001 gpiod_direction_output -EXPORT_SYMBOL_GPL vmlinux 0xbaf6850c fsnotify_wait_marks_destroyed -EXPORT_SYMBOL_GPL vmlinux 0xbb061ec8 __trace_array_puts -EXPORT_SYMBOL_GPL vmlinux 0xbb0ab47b debug_locks -EXPORT_SYMBOL_GPL vmlinux 0xbb0b25d2 register_xenbus_watch -EXPORT_SYMBOL_GPL vmlinux 0xbb14a74a vp_modern_get_status -EXPORT_SYMBOL_GPL vmlinux 0xbb14e4b9 proc_create_net_single_write -EXPORT_SYMBOL_GPL vmlinux 0xbb24f372 __SCK__tp_func_attach_device_to_domain -EXPORT_SYMBOL_GPL vmlinux 0xbb509736 mddev_suspend -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 0xbb72d4ff meson_clk_dualdiv_ops -EXPORT_SYMBOL_GPL vmlinux 0xbb7a908b kthread_mod_delayed_work -EXPORT_SYMBOL_GPL vmlinux 0xbb7e7fc0 rockchip_pcie_get_phys -EXPORT_SYMBOL_GPL vmlinux 0xbb8ba13d of_console_check -EXPORT_SYMBOL_GPL vmlinux 0xbb8bd351 devm_gpiod_get -EXPORT_SYMBOL_GPL vmlinux 0xbb8f434c of_msi_configure -EXPORT_SYMBOL_GPL vmlinux 0xbb93eec5 ioasid_alloc -EXPORT_SYMBOL_GPL vmlinux 0xbb959c47 perf_pmu_unregister -EXPORT_SYMBOL_GPL vmlinux 0xbba3343e mpc8xxx_spi_rx_buf_u16 -EXPORT_SYMBOL_GPL vmlinux 0xbbb4ab02 mtk_mutex_put -EXPORT_SYMBOL_GPL vmlinux 0xbbb6a4d7 dev_pm_opp_of_add_table -EXPORT_SYMBOL_GPL vmlinux 0xbbbc2ec2 register_acpi_bus_type -EXPORT_SYMBOL_GPL vmlinux 0xbbc5be48 mptcp_token_iter_next -EXPORT_SYMBOL_GPL vmlinux 0xbbcb6fb5 xenbus_frontend_closed -EXPORT_SYMBOL_GPL vmlinux 0xbbcb9fef ata_scsi_unlock_native_capacity -EXPORT_SYMBOL_GPL vmlinux 0xbbd48342 gpiochip_is_requested -EXPORT_SYMBOL_GPL vmlinux 0xbbe56404 sprint_OID -EXPORT_SYMBOL_GPL vmlinux 0xbbf4dfbe phy_basic_t1_features -EXPORT_SYMBOL_GPL vmlinux 0xbbf7c37d sk_msg_zerocopy_from_iter -EXPORT_SYMBOL_GPL vmlinux 0xbc01cb88 spi_finalize_current_transfer -EXPORT_SYMBOL_GPL vmlinux 0xbc06f165 pci_dev_unlock -EXPORT_SYMBOL_GPL vmlinux 0xbc085de9 serdev_controller_alloc -EXPORT_SYMBOL_GPL vmlinux 0xbc106d33 dw_pcie_write_dbi -EXPORT_SYMBOL_GPL vmlinux 0xbc1b6f5c usb_kill_anchored_urbs -EXPORT_SYMBOL_GPL vmlinux 0xbc1c119a ata_std_prereset -EXPORT_SYMBOL_GPL vmlinux 0xbc295811 devm_acpi_dev_add_driver_gpios -EXPORT_SYMBOL_GPL vmlinux 0xbc2b419f mtk_pinconf_bias_set -EXPORT_SYMBOL_GPL vmlinux 0xbc2d8f8f mtk_pinconf_adv_drive_get_raw -EXPORT_SYMBOL_GPL vmlinux 0xbc3163c8 dpcon_disable -EXPORT_SYMBOL_GPL vmlinux 0xbc3f2cb0 timecounter_cyc2time -EXPORT_SYMBOL_GPL vmlinux 0xbc5b77fa pci_epc_add_epf -EXPORT_SYMBOL_GPL vmlinux 0xbc6bec66 free_percpu_irq -EXPORT_SYMBOL_GPL vmlinux 0xbc7063f0 ftrace_set_notrace -EXPORT_SYMBOL_GPL vmlinux 0xbc855703 fscrypt_symlink_getattr -EXPORT_SYMBOL_GPL vmlinux 0xbc982a93 tty_buffer_space_avail -EXPORT_SYMBOL_GPL vmlinux 0xbc99de2b efivar_entry_remove -EXPORT_SYMBOL_GPL vmlinux 0xbc9b1289 soc_device_register -EXPORT_SYMBOL_GPL vmlinux 0xbca8442f user_read -EXPORT_SYMBOL_GPL vmlinux 0xbcaa382b of_i2c_setup_smbus_alert -EXPORT_SYMBOL_GPL vmlinux 0xbcc15e75 ktime_get_coarse_with_offset -EXPORT_SYMBOL_GPL vmlinux 0xbcc27604 kthread_queue_delayed_work -EXPORT_SYMBOL_GPL vmlinux 0xbcc2965b led_trigger_write -EXPORT_SYMBOL_GPL vmlinux 0xbcc55ce7 pinctrl_remove_gpio_range -EXPORT_SYMBOL_GPL vmlinux 0xbccbe4e8 icc_get_name -EXPORT_SYMBOL_GPL vmlinux 0xbccfd4d8 register_oldmem_pfn_is_ram -EXPORT_SYMBOL_GPL vmlinux 0xbcdd5b99 iommu_group_set_name -EXPORT_SYMBOL_GPL vmlinux 0xbce7d15f epl_report_misc_ec_error -EXPORT_SYMBOL_GPL vmlinux 0xbce998d2 ata_port_abort -EXPORT_SYMBOL_GPL vmlinux 0xbcf1f0e6 zs_create_pool -EXPORT_SYMBOL_GPL vmlinux 0xbcfadf5f sk_clear_memalloc -EXPORT_SYMBOL_GPL vmlinux 0xbd0143db crypto_register_scomp -EXPORT_SYMBOL_GPL vmlinux 0xbd101674 acpi_dev_get_dma_resources -EXPORT_SYMBOL_GPL vmlinux 0xbd28f3ee scsi_flush_work -EXPORT_SYMBOL_GPL vmlinux 0xbd2e9080 phy_package_leave -EXPORT_SYMBOL_GPL vmlinux 0xbd31dae9 usb_store_new_id -EXPORT_SYMBOL_GPL vmlinux 0xbd339041 irq_chip_unmask_parent -EXPORT_SYMBOL_GPL vmlinux 0xbd3fe1e3 disable_hardirq -EXPORT_SYMBOL_GPL vmlinux 0xbd4823e5 dev_pm_opp_get_opp_count -EXPORT_SYMBOL_GPL vmlinux 0xbd5704ec __tracepoint_xdp_bulk_tx -EXPORT_SYMBOL_GPL vmlinux 0xbd5bbd28 spi_controller_dma_unmap_mem_op_data -EXPORT_SYMBOL_GPL vmlinux 0xbd5f8ed5 device_get_phy_mode -EXPORT_SYMBOL_GPL vmlinux 0xbd64ba6d rio_lock_device -EXPORT_SYMBOL_GPL vmlinux 0xbd7aaaee add_memory -EXPORT_SYMBOL_GPL vmlinux 0xbd90fa6f regmap_raw_write_async -EXPORT_SYMBOL_GPL vmlinux 0xbd92d1ea vp_modern_get_driver_features -EXPORT_SYMBOL_GPL vmlinux 0xbd98d31b security_path_rmdir -EXPORT_SYMBOL_GPL vmlinux 0xbd9f59a0 sched_trace_cfs_rq_avg -EXPORT_SYMBOL_GPL vmlinux 0xbda9897f tpm_tis_resume -EXPORT_SYMBOL_GPL vmlinux 0xbdb2217d hv_is_isolation_supported -EXPORT_SYMBOL_GPL vmlinux 0xbdb72342 __tracepoint_devlink_hwmsg -EXPORT_SYMBOL_GPL vmlinux 0xbdc504df usb_block_urb -EXPORT_SYMBOL_GPL vmlinux 0xbdc62d00 __udp_enqueue_schedule_skb -EXPORT_SYMBOL_GPL vmlinux 0xbdda2377 pci_device_is_present -EXPORT_SYMBOL_GPL vmlinux 0xbdff428a __traceiter_block_unplug -EXPORT_SYMBOL_GPL vmlinux 0xbe004643 fib6_rule_default -EXPORT_SYMBOL_GPL vmlinux 0xbe08a11f devm_regmap_field_alloc -EXPORT_SYMBOL_GPL vmlinux 0xbe17fcf1 pinctrl_dev_get_name -EXPORT_SYMBOL_GPL vmlinux 0xbe18b9bc mtk_pinconf_bias_disable_set_rev1 -EXPORT_SYMBOL_GPL vmlinux 0xbe2a3798 dev_pm_opp_find_freq_ceil -EXPORT_SYMBOL_GPL vmlinux 0xbe2fb707 gpiod_set_debounce -EXPORT_SYMBOL_GPL vmlinux 0xbe3d22d3 nvdimm_setup_pfn -EXPORT_SYMBOL_GPL vmlinux 0xbe42a853 gpiochip_irq_domain_deactivate -EXPORT_SYMBOL_GPL vmlinux 0xbe476a8a devlink_health_reporter_create -EXPORT_SYMBOL_GPL vmlinux 0xbe5e3414 k3_udma_glue_reset_rx_chn -EXPORT_SYMBOL_GPL vmlinux 0xbe687e88 wake_up_all_idle_cpus -EXPORT_SYMBOL_GPL vmlinux 0xbe6d43d7 ioasid_put -EXPORT_SYMBOL_GPL vmlinux 0xbe7b6931 dev_attr_ncq_prio_supported -EXPORT_SYMBOL_GPL vmlinux 0xbe968db5 xdp_return_frame_bulk -EXPORT_SYMBOL_GPL vmlinux 0xbe96dfd8 of_reconfig_notifier_unregister -EXPORT_SYMBOL_GPL vmlinux 0xbe9a83d5 dw_pcie_write -EXPORT_SYMBOL_GPL vmlinux 0xbe9c2c99 devm_phy_optional_get -EXPORT_SYMBOL_GPL vmlinux 0xbe9ca946 device_match_fwnode -EXPORT_SYMBOL_GPL vmlinux 0xbea16f25 dev_get_tstats64 -EXPORT_SYMBOL_GPL vmlinux 0xbea29915 serial8250_tx_chars -EXPORT_SYMBOL_GPL vmlinux 0xbea5ff1e static_key_initialized -EXPORT_SYMBOL_GPL vmlinux 0xbeaa83a2 inet6_lookup_listener -EXPORT_SYMBOL_GPL vmlinux 0xbeb16502 regmap_write -EXPORT_SYMBOL_GPL vmlinux 0xbebc133e __inet_lookup_established -EXPORT_SYMBOL_GPL vmlinux 0xbec66c3a __apei_exec_run -EXPORT_SYMBOL_GPL vmlinux 0xbec8b38e thermal_remove_hwmon_sysfs -EXPORT_SYMBOL_GPL vmlinux 0xbec9c951 pci_epc_remove_epf -EXPORT_SYMBOL_GPL vmlinux 0xbefaeb91 fwnode_handle_put -EXPORT_SYMBOL_GPL vmlinux 0xbf041102 register_vt_notifier -EXPORT_SYMBOL_GPL vmlinux 0xbf0754d5 irq_domain_disconnect_hierarchy -EXPORT_SYMBOL_GPL vmlinux 0xbf1ec829 fwnode_connection_find_match -EXPORT_SYMBOL_GPL vmlinux 0xbf2c2cf4 mtk_eint_do_init -EXPORT_SYMBOL_GPL vmlinux 0xbf3b6ce6 mmput -EXPORT_SYMBOL_GPL vmlinux 0xbf6942e4 dev_pm_genpd_set_next_wakeup -EXPORT_SYMBOL_GPL vmlinux 0xbf8e7f41 clk_hw_unregister_fixed_rate -EXPORT_SYMBOL_GPL vmlinux 0xbf963416 hypervisor_kobj -EXPORT_SYMBOL_GPL vmlinux 0xbf9e0085 sdio_retune_release -EXPORT_SYMBOL_GPL vmlinux 0xbfa33fdd tun_get_socket -EXPORT_SYMBOL_GPL vmlinux 0xbfa69769 hwspin_lock_register -EXPORT_SYMBOL_GPL vmlinux 0xbfb7f21a bpf_trace_run8 -EXPORT_SYMBOL_GPL vmlinux 0xbfbc5434 pciserial_resume_ports -EXPORT_SYMBOL_GPL vmlinux 0xbfbfad65 sock_diag_put_meminfo -EXPORT_SYMBOL_GPL vmlinux 0xbfc6d16a do_xdp_generic -EXPORT_SYMBOL_GPL vmlinux 0xbfd62666 fib_add_nexthop -EXPORT_SYMBOL_GPL vmlinux 0xbfe5616d tick_broadcast_oneshot_control -EXPORT_SYMBOL_GPL vmlinux 0xbfec3c23 inet_twsk_put -EXPORT_SYMBOL_GPL vmlinux 0xbfed2cd9 __wait_rcu_gp -EXPORT_SYMBOL_GPL vmlinux 0xbff43f3f __devm_regmap_init_mmio_clk -EXPORT_SYMBOL_GPL vmlinux 0xbff6ed18 kthread_flush_work -EXPORT_SYMBOL_GPL vmlinux 0xc002c331 devm_regmap_field_bulk_free -EXPORT_SYMBOL_GPL vmlinux 0xc006e0b1 ata_pci_bmdma_prepare_host -EXPORT_SYMBOL_GPL vmlinux 0xc008e17f acpi_dma_request_slave_chan_by_name -EXPORT_SYMBOL_GPL vmlinux 0xc01edfce devm_clk_bulk_get_all -EXPORT_SYMBOL_GPL vmlinux 0xc02a7b15 device_property_read_u16_array -EXPORT_SYMBOL_GPL vmlinux 0xc04bb7a4 __udp6_lib_lookup -EXPORT_SYMBOL_GPL vmlinux 0xc05949dc __traceiter_fdb_delete -EXPORT_SYMBOL_GPL vmlinux 0xc05993a6 devlink_port_health_reporter_create -EXPORT_SYMBOL_GPL vmlinux 0xc05cee80 ipi_get_hwirq -EXPORT_SYMBOL_GPL vmlinux 0xc06e8133 rio_mport_read_config_32 -EXPORT_SYMBOL_GPL vmlinux 0xc071a6a4 pci_disable_sriov -EXPORT_SYMBOL_GPL vmlinux 0xc0725d9c sfp_bus_find_fwnode -EXPORT_SYMBOL_GPL vmlinux 0xc07b584e dev_pm_opp_get_max_volt_latency -EXPORT_SYMBOL_GPL vmlinux 0xc088a1f9 irq_setup_alt_chip -EXPORT_SYMBOL_GPL vmlinux 0xc090c376 net_selftest_get_strings -EXPORT_SYMBOL_GPL vmlinux 0xc09bbcfb dev_pm_opp_put_opp_table -EXPORT_SYMBOL_GPL vmlinux 0xc09c39ac blk_rq_prep_clone -EXPORT_SYMBOL_GPL vmlinux 0xc0a33d60 fb_bl_default_curve -EXPORT_SYMBOL_GPL vmlinux 0xc0a3d155 k3_udma_glue_rx_get_flow_id_base -EXPORT_SYMBOL_GPL vmlinux 0xc0a71bcf hwmon_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0xc0a756b4 i2c_acpi_find_bus_speed -EXPORT_SYMBOL_GPL vmlinux 0xc0a96e14 rcu_gp_is_expedited -EXPORT_SYMBOL_GPL vmlinux 0xc0bd4ff0 acpi_dev_get_first_consumer_dev -EXPORT_SYMBOL_GPL vmlinux 0xc0cc4306 of_device_uevent_modalias -EXPORT_SYMBOL_GPL vmlinux 0xc0dcb59e edac_layer_name -EXPORT_SYMBOL_GPL vmlinux 0xc0f0458a ip_tunnel_unneed_metadata -EXPORT_SYMBOL_GPL vmlinux 0xc0f2c42e pci_epf_alloc_space -EXPORT_SYMBOL_GPL vmlinux 0xc1086e0c sysrq_toggle_support -EXPORT_SYMBOL_GPL vmlinux 0xc10adb27 iommu_iova_to_phys -EXPORT_SYMBOL_GPL vmlinux 0xc10cf004 tegra_mc_get_carveout_info -EXPORT_SYMBOL_GPL vmlinux 0xc10fddb8 name_to_dev_t -EXPORT_SYMBOL_GPL vmlinux 0xc113976e pci_epc_clear_bar -EXPORT_SYMBOL_GPL vmlinux 0xc126cbdb gnttab_dma_free_pages -EXPORT_SYMBOL_GPL vmlinux 0xc130777e vfs_getxattr -EXPORT_SYMBOL_GPL vmlinux 0xc13385fc of_clk_get_parent_name -EXPORT_SYMBOL_GPL vmlinux 0xc1543abd d_exchange -EXPORT_SYMBOL_GPL vmlinux 0xc154f7f8 rio_mport_write_config_8 -EXPORT_SYMBOL_GPL vmlinux 0xc161b633 alloc_iova_fast -EXPORT_SYMBOL_GPL vmlinux 0xc162ad48 pm_runtime_suspended_time -EXPORT_SYMBOL_GPL vmlinux 0xc1743430 cpuidle_disable_device -EXPORT_SYMBOL_GPL vmlinux 0xc17515d7 usb_hcds_loaded -EXPORT_SYMBOL_GPL vmlinux 0xc18f46bd ata_sff_port_intr -EXPORT_SYMBOL_GPL vmlinux 0xc1955660 __regmap_init_i2c -EXPORT_SYMBOL_GPL vmlinux 0xc1cc662a debugfs_create_u16 -EXPORT_SYMBOL_GPL vmlinux 0xc1d3b9e9 usb_get_from_anchor -EXPORT_SYMBOL_GPL vmlinux 0xc1dce028 k3_udma_glue_reset_tx_chn -EXPORT_SYMBOL_GPL vmlinux 0xc1edbe42 crypto_unregister_acomps -EXPORT_SYMBOL_GPL vmlinux 0xc1f2b9ec pci_ecam_map_bus -EXPORT_SYMBOL_GPL vmlinux 0xc1f535ba dev_pm_opp_remove -EXPORT_SYMBOL_GPL vmlinux 0xc1fb9a2e platform_get_irq_byname -EXPORT_SYMBOL_GPL vmlinux 0xc203115f clk_gate_restore_context -EXPORT_SYMBOL_GPL vmlinux 0xc2210a5a spi_controller_resume -EXPORT_SYMBOL_GPL vmlinux 0xc22a3091 vm_unmap_aliases -EXPORT_SYMBOL_GPL vmlinux 0xc23389e4 ethtool_set_ethtool_phy_ops -EXPORT_SYMBOL_GPL vmlinux 0xc2469abf crypto_register_akcipher -EXPORT_SYMBOL_GPL vmlinux 0xc2472388 tegra210_clk_emc_update_setting -EXPORT_SYMBOL_GPL vmlinux 0xc25b8971 hv_remove_crash_handler -EXPORT_SYMBOL_GPL vmlinux 0xc2692173 wakeup_sources_read_lock -EXPORT_SYMBOL_GPL vmlinux 0xc26b058d ata_host_resume -EXPORT_SYMBOL_GPL vmlinux 0xc289e46d cpufreq_generic_frequency_table_verify -EXPORT_SYMBOL_GPL vmlinux 0xc28ec930 ata_sas_port_resume -EXPORT_SYMBOL_GPL vmlinux 0xc2932a44 usb_hcd_unmap_urb_setup_for_dma -EXPORT_SYMBOL_GPL vmlinux 0xc2940523 of_thermal_get_ntrips -EXPORT_SYMBOL_GPL vmlinux 0xc2a3e570 errata -EXPORT_SYMBOL_GPL vmlinux 0xc2a814db tcp_memory_pressure -EXPORT_SYMBOL_GPL vmlinux 0xc2b607ae tcp_twsk_unique -EXPORT_SYMBOL_GPL vmlinux 0xc2b9773a __tracepoint_neigh_update_done -EXPORT_SYMBOL_GPL vmlinux 0xc2bc13cb pci_d3cold_disable -EXPORT_SYMBOL_GPL vmlinux 0xc2c1c427 perf_event_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0xc2ce873b stmpe_enable -EXPORT_SYMBOL_GPL vmlinux 0xc2d22c70 thermal_zone_unbind_cooling_device -EXPORT_SYMBOL_GPL vmlinux 0xc2d3a548 dev_pm_opp_of_add_table_noclk -EXPORT_SYMBOL_GPL vmlinux 0xc2d9a9d3 of_irq_parse_and_map_pci -EXPORT_SYMBOL_GPL vmlinux 0xc2de27ca hest_disable -EXPORT_SYMBOL_GPL vmlinux 0xc2ebe432 kthread_park -EXPORT_SYMBOL_GPL vmlinux 0xc2f2bc86 genphy_c45_an_disable_aneg -EXPORT_SYMBOL_GPL vmlinux 0xc2f8d3f0 usb_unpoison_anchored_urbs -EXPORT_SYMBOL_GPL vmlinux 0xc2fb055f bpf_prog_select_runtime -EXPORT_SYMBOL_GPL vmlinux 0xc3016ab4 vfs_fallocate -EXPORT_SYMBOL_GPL vmlinux 0xc3102445 vp_modern_get_features -EXPORT_SYMBOL_GPL vmlinux 0xc32e821d dev_pm_opp_find_freq_ceil_by_volt -EXPORT_SYMBOL_GPL vmlinux 0xc340e246 zynqmp_pm_request_node -EXPORT_SYMBOL_GPL vmlinux 0xc341ae6d zs_map_object -EXPORT_SYMBOL_GPL vmlinux 0xc3708747 trace_vprintk -EXPORT_SYMBOL_GPL vmlinux 0xc3805cd1 fs_ftype_to_dtype -EXPORT_SYMBOL_GPL vmlinux 0xc3827d29 virtqueue_poll -EXPORT_SYMBOL_GPL vmlinux 0xc38b092d perf_event_create_kernel_counter -EXPORT_SYMBOL_GPL vmlinux 0xc394c45a dst_blackhole_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0xc3970e92 vp_modern_queue_vector -EXPORT_SYMBOL_GPL vmlinux 0xc3ab532f genphy_c45_config_aneg -EXPORT_SYMBOL_GPL vmlinux 0xc3c4c6cc hash_algo_name -EXPORT_SYMBOL_GPL vmlinux 0xc3d51dbf tpm2_probe -EXPORT_SYMBOL_GPL vmlinux 0xc3d56277 devlink_port_region_create -EXPORT_SYMBOL_GPL vmlinux 0xc3d8b0ef dma_free_pages -EXPORT_SYMBOL_GPL vmlinux 0xc3de65ff ring_buffer_bytes_cpu -EXPORT_SYMBOL_GPL vmlinux 0xc3ea5305 iommu_default_passthrough -EXPORT_SYMBOL_GPL vmlinux 0xc40980ef vp_modern_get_queue_enable -EXPORT_SYMBOL_GPL vmlinux 0xc41dda8c of_property_read_u32_index -EXPORT_SYMBOL_GPL vmlinux 0xc4275e4d iomap_migrate_page -EXPORT_SYMBOL_GPL vmlinux 0xc428068d sata_deb_timing_long -EXPORT_SYMBOL_GPL vmlinux 0xc43235df mnt_drop_write -EXPORT_SYMBOL_GPL vmlinux 0xc43e92b9 trace_seq_bprintf -EXPORT_SYMBOL_GPL vmlinux 0xc4413f02 icc_node_del -EXPORT_SYMBOL_GPL vmlinux 0xc44d271f pm_runtime_set_autosuspend_delay -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 0xc46c3cd9 bpf_sk_storage_diag_put -EXPORT_SYMBOL_GPL vmlinux 0xc471c67a twl4030_audio_disable_resource -EXPORT_SYMBOL_GPL vmlinux 0xc48b7ccf ata_mode_string -EXPORT_SYMBOL_GPL vmlinux 0xc492788c rio_mport_read_config_8 -EXPORT_SYMBOL_GPL vmlinux 0xc4a31146 rdma_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0xc4a62256 cpuidle_register_driver -EXPORT_SYMBOL_GPL vmlinux 0xc4a72936 trusted_tpm_send -EXPORT_SYMBOL_GPL vmlinux 0xc4b1e34a platform_device_del -EXPORT_SYMBOL_GPL vmlinux 0xc4c97331 tcp_sendmsg_locked -EXPORT_SYMBOL_GPL vmlinux 0xc4cb5fb7 __fl6_sock_lookup -EXPORT_SYMBOL_GPL vmlinux 0xc4d1800e pci_epc_start -EXPORT_SYMBOL_GPL vmlinux 0xc4dec90a bus_create_file -EXPORT_SYMBOL_GPL vmlinux 0xc4ee01d2 ehci_init_driver -EXPORT_SYMBOL_GPL vmlinux 0xc4f0da12 ktime_get_with_offset -EXPORT_SYMBOL_GPL vmlinux 0xc4f99ee8 iommu_sva_unbind_gpasid -EXPORT_SYMBOL_GPL vmlinux 0xc4fb1f5c l3mdev_ifindex_lookup_by_table_id -EXPORT_SYMBOL_GPL vmlinux 0xc4fc62c5 phy_speed_down -EXPORT_SYMBOL_GPL vmlinux 0xc5137fa9 acpi_match_device -EXPORT_SYMBOL_GPL vmlinux 0xc51ab5ef alarm_restart -EXPORT_SYMBOL_GPL vmlinux 0xc51fc7f2 dprc_open -EXPORT_SYMBOL_GPL vmlinux 0xc52fbf85 palmas_ext_control_req_config -EXPORT_SYMBOL_GPL vmlinux 0xc55ff962 phy_basic_t1_features_array -EXPORT_SYMBOL_GPL vmlinux 0xc5604800 clk_set_rate_exclusive -EXPORT_SYMBOL_GPL vmlinux 0xc5648bfa dev_pm_opp_of_register_em -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 0xc58d257f devm_of_phy_get -EXPORT_SYMBOL_GPL vmlinux 0xc58dcf86 unregister_virtio_driver -EXPORT_SYMBOL_GPL vmlinux 0xc594a68c power_supply_am_i_supplied -EXPORT_SYMBOL_GPL vmlinux 0xc5a038ce dm_suspended -EXPORT_SYMBOL_GPL vmlinux 0xc5a5c678 uart_parse_earlycon -EXPORT_SYMBOL_GPL vmlinux 0xc5aadd87 of_prop_next_u32 -EXPORT_SYMBOL_GPL vmlinux 0xc5b429b3 of_clk_src_simple_get -EXPORT_SYMBOL_GPL vmlinux 0xc5b6c8a2 fsl_mc_device_add -EXPORT_SYMBOL_GPL vmlinux 0xc5bd136e iopf_queue_remove_device -EXPORT_SYMBOL_GPL vmlinux 0xc5bd748d dw_pcie_ep_init_notify -EXPORT_SYMBOL_GPL vmlinux 0xc5bfe58d devlink_param_register -EXPORT_SYMBOL_GPL vmlinux 0xc5d4a13c __traceiter_kfree_skb -EXPORT_SYMBOL_GPL vmlinux 0xc5f65dd5 dma_get_any_slave_channel -EXPORT_SYMBOL_GPL vmlinux 0xc617f82c unregister_oom_notifier -EXPORT_SYMBOL_GPL vmlinux 0xc64e07c2 of_clk_src_onecell_get -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 0xc6779093 ring_buffer_record_enable -EXPORT_SYMBOL_GPL vmlinux 0xc684112c __clk_hw_register_divider -EXPORT_SYMBOL_GPL vmlinux 0xc689f9b8 pinctrl_utils_add_map_mux -EXPORT_SYMBOL_GPL vmlinux 0xc68e3bbc of_property_read_u64_index -EXPORT_SYMBOL_GPL vmlinux 0xc691fd42 crypto_comp_decompress -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 0xc6b1c10d timer_unstable_counter_workaround -EXPORT_SYMBOL_GPL vmlinux 0xc6b22704 edac_device_handle_ue_count -EXPORT_SYMBOL_GPL vmlinux 0xc6c358b3 serdev_device_set_parity -EXPORT_SYMBOL_GPL vmlinux 0xc6c75bb0 ata_ehi_push_desc -EXPORT_SYMBOL_GPL vmlinux 0xc6c82478 usb_hub_find_child -EXPORT_SYMBOL_GPL vmlinux 0xc6dcf2e5 pinctrl_find_gpio_range_from_pin -EXPORT_SYMBOL_GPL vmlinux 0xc6dde4fb devm_of_clk_add_hw_provider -EXPORT_SYMBOL_GPL vmlinux 0xc6def34b gnttab_empty_grant_references -EXPORT_SYMBOL_GPL vmlinux 0xc6dfc6e9 rio_register_mport -EXPORT_SYMBOL_GPL vmlinux 0xc6e5bcf3 linear_range_get_selector_within -EXPORT_SYMBOL_GPL vmlinux 0xc6ed902e sysfs_remove_bin_file -EXPORT_SYMBOL_GPL vmlinux 0xc6fe5f7f crypto_grab_aead -EXPORT_SYMBOL_GPL vmlinux 0xc7061ef3 iova_cache_put -EXPORT_SYMBOL_GPL vmlinux 0xc70c2c76 fixed_phy_unregister -EXPORT_SYMBOL_GPL vmlinux 0xc70ce129 ahci_reset_controller -EXPORT_SYMBOL_GPL vmlinux 0xc714d8fb rio_request_mport_dma -EXPORT_SYMBOL_GPL vmlinux 0xc7153a03 kobject_move -EXPORT_SYMBOL_GPL vmlinux 0xc71e64a9 snmp_get_cpu_field -EXPORT_SYMBOL_GPL vmlinux 0xc7213f26 acpi_dev_pm_attach -EXPORT_SYMBOL_GPL vmlinux 0xc724cb60 __traceiter_sched_overutilized_tp -EXPORT_SYMBOL_GPL vmlinux 0xc732ef2f dev_pm_opp_get_sharing_cpus -EXPORT_SYMBOL_GPL vmlinux 0xc734a4b2 phy_reset -EXPORT_SYMBOL_GPL vmlinux 0xc738ff53 device_node_to_regmap -EXPORT_SYMBOL_GPL vmlinux 0xc73d15b0 serdev_device_alloc -EXPORT_SYMBOL_GPL vmlinux 0xc756b223 regmap_parse_val -EXPORT_SYMBOL_GPL vmlinux 0xc759f0e4 debugfs_create_x16 -EXPORT_SYMBOL_GPL vmlinux 0xc77d1468 modify_user_hw_breakpoint -EXPORT_SYMBOL_GPL vmlinux 0xc7a154cf __blk_req_zone_write_lock -EXPORT_SYMBOL_GPL vmlinux 0xc7a1840e llist_add_batch -EXPORT_SYMBOL_GPL vmlinux 0xc7a2b117 ipv6_stub -EXPORT_SYMBOL_GPL vmlinux 0xc7a7e770 clk_bulk_enable -EXPORT_SYMBOL_GPL vmlinux 0xc7c23ff0 xenbus_exists -EXPORT_SYMBOL_GPL vmlinux 0xc7cbee9d gpiod_set_raw_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0xc7ceeab7 __fscrypt_prepare_readdir -EXPORT_SYMBOL_GPL vmlinux 0xc7d5a2ad sk_msg_alloc -EXPORT_SYMBOL_GPL vmlinux 0xc7d644c6 devm_gpiochip_add_data_with_key -EXPORT_SYMBOL_GPL vmlinux 0xc7e64fc2 asn1_encode_integer -EXPORT_SYMBOL_GPL vmlinux 0xc7f9458e i2c_dw_prepare_clk -EXPORT_SYMBOL_GPL vmlinux 0xc7fa4aa9 kobj_ns_drop -EXPORT_SYMBOL_GPL vmlinux 0xc8033bb0 rtnl_delete_link -EXPORT_SYMBOL_GPL vmlinux 0xc80376b6 devlink_param_unregister -EXPORT_SYMBOL_GPL vmlinux 0xc819de65 fib_nh_common_release -EXPORT_SYMBOL_GPL vmlinux 0xc81c29dd of_irq_to_resource -EXPORT_SYMBOL_GPL vmlinux 0xc82b3a88 __SCK__tp_func_rpm_resume -EXPORT_SYMBOL_GPL vmlinux 0xc82c721f klist_remove -EXPORT_SYMBOL_GPL vmlinux 0xc83355f3 gov_attr_set_put -EXPORT_SYMBOL_GPL vmlinux 0xc83433e4 mnt_want_write -EXPORT_SYMBOL_GPL vmlinux 0xc839c1ce trace_seq_to_user -EXPORT_SYMBOL_GPL vmlinux 0xc84d500d ahci_platform_enable_phys -EXPORT_SYMBOL_GPL vmlinux 0xc84df99f rio_mport_get_feature -EXPORT_SYMBOL_GPL vmlinux 0xc8594d3d reset_control_acquire -EXPORT_SYMBOL_GPL vmlinux 0xc864852f regulator_map_voltage_iterate -EXPORT_SYMBOL_GPL vmlinux 0xc87dd725 k3_udma_glue_pop_rx_chn -EXPORT_SYMBOL_GPL vmlinux 0xc8864f60 housekeeping_affine -EXPORT_SYMBOL_GPL vmlinux 0xc8c3f221 sysfs_remove_files -EXPORT_SYMBOL_GPL vmlinux 0xc8d4ec4d __traceiter_block_split -EXPORT_SYMBOL_GPL vmlinux 0xc8ddd5b5 kstrdup_quotable -EXPORT_SYMBOL_GPL vmlinux 0xc903f456 __traceiter_tcp_bad_csum -EXPORT_SYMBOL_GPL vmlinux 0xc91fdf58 percpu_ref_is_zero -EXPORT_SYMBOL_GPL vmlinux 0xc93ee1e7 usb_phy_roothub_init -EXPORT_SYMBOL_GPL vmlinux 0xc9510bab bus_get_device_klist -EXPORT_SYMBOL_GPL vmlinux 0xc9561772 fb_destroy_modelist -EXPORT_SYMBOL_GPL vmlinux 0xc956b009 device_reprobe -EXPORT_SYMBOL_GPL vmlinux 0xc95fb268 pci_hp_add -EXPORT_SYMBOL_GPL vmlinux 0xc9641b48 visitor32 -EXPORT_SYMBOL_GPL vmlinux 0xc97b4088 mmc_pwrseq_register -EXPORT_SYMBOL_GPL vmlinux 0xc97b5389 hwspin_lock_unregister -EXPORT_SYMBOL_GPL vmlinux 0xc97f110a raw_seq_start -EXPORT_SYMBOL_GPL vmlinux 0xc9827693 __bpf_call_base -EXPORT_SYMBOL_GPL vmlinux 0xc9829a82 pinctrl_force_sleep -EXPORT_SYMBOL_GPL vmlinux 0xc98675dc sysfs_remove_link_from_group -EXPORT_SYMBOL_GPL vmlinux 0xc987b4b2 vchan_init -EXPORT_SYMBOL_GPL vmlinux 0xc98c9bb5 ipv4_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0xc996415d virtqueue_is_broken -EXPORT_SYMBOL_GPL vmlinux 0xc9999e85 of_dma_configure_id -EXPORT_SYMBOL_GPL vmlinux 0xc9c1b449 dm_internal_suspend_noflush -EXPORT_SYMBOL_GPL vmlinux 0xc9cb86d3 iptunnel_handle_offloads -EXPORT_SYMBOL_GPL vmlinux 0xc9ec4e21 free_percpu -EXPORT_SYMBOL_GPL vmlinux 0xc9f25c89 pwm_capture -EXPORT_SYMBOL_GPL vmlinux 0xc9f63979 devres_find -EXPORT_SYMBOL_GPL vmlinux 0xc9f84e5f blk_bio_list_merge -EXPORT_SYMBOL_GPL vmlinux 0xc9fb00f7 pl320_ipc_transmit -EXPORT_SYMBOL_GPL vmlinux 0xc9fd634a usb_role_switch_put -EXPORT_SYMBOL_GPL vmlinux 0xca05d8a2 i2c_match_id -EXPORT_SYMBOL_GPL vmlinux 0xca0a215e cgroup_get_e_css -EXPORT_SYMBOL_GPL vmlinux 0xca0f628d xhci_reset_bandwidth -EXPORT_SYMBOL_GPL vmlinux 0xca2b03bb devm_pwm_get -EXPORT_SYMBOL_GPL vmlinux 0xca32b133 vchan_tx_desc_free -EXPORT_SYMBOL_GPL vmlinux 0xca392405 skb_zerocopy -EXPORT_SYMBOL_GPL vmlinux 0xca4541c6 da903x_update -EXPORT_SYMBOL_GPL vmlinux 0xca454a34 vt_get_leds -EXPORT_SYMBOL_GPL vmlinux 0xca54e479 imx_check_clk_hws -EXPORT_SYMBOL_GPL vmlinux 0xca61b474 subsys_interface_register -EXPORT_SYMBOL_GPL vmlinux 0xca7b7ab7 tty_port_tty_hangup -EXPORT_SYMBOL_GPL vmlinux 0xca7d8764 kthread_freezable_should_stop -EXPORT_SYMBOL_GPL vmlinux 0xca876085 da903x_writes -EXPORT_SYMBOL_GPL vmlinux 0xca88acf7 ethnl_cable_test_step -EXPORT_SYMBOL_GPL vmlinux 0xca896e01 iomap_swapfile_activate -EXPORT_SYMBOL_GPL vmlinux 0xca916870 xenbus_dev_resume -EXPORT_SYMBOL_GPL vmlinux 0xca9a1d5e ring_buffer_free -EXPORT_SYMBOL_GPL vmlinux 0xcabe04de cpuidle_resume_and_unlock -EXPORT_SYMBOL_GPL vmlinux 0xcaca1fbf blkcg_root_css -EXPORT_SYMBOL_GPL vmlinux 0xcacfcbb3 pm_generic_freeze_noirq -EXPORT_SYMBOL_GPL vmlinux 0xcae01540 dev_pm_qos_remove_notifier -EXPORT_SYMBOL_GPL vmlinux 0xcae7ce5d fsl_mc_get_version -EXPORT_SYMBOL_GPL vmlinux 0xcaeac8e7 misc_cg_uncharge -EXPORT_SYMBOL_GPL vmlinux 0xcaeeee86 pm_generic_thaw -EXPORT_SYMBOL_GPL vmlinux 0xcaf1d958 evtchn_get -EXPORT_SYMBOL_GPL vmlinux 0xcaf2235b sysfs_chmod_file -EXPORT_SYMBOL_GPL vmlinux 0xcaf37326 tcp_unregister_congestion_control -EXPORT_SYMBOL_GPL vmlinux 0xcaf99cf2 devm_otg_ulpi_create -EXPORT_SYMBOL_GPL vmlinux 0xcb15eee9 sdhci_pci_get_data -EXPORT_SYMBOL_GPL vmlinux 0xcb15f510 inet_twsk_hashdance -EXPORT_SYMBOL_GPL vmlinux 0xcb2bfe2b nvmem_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0xcb306a66 devm_devfreq_event_remove_edev -EXPORT_SYMBOL_GPL vmlinux 0xcb475107 crypto_hash_alg_has_setkey -EXPORT_SYMBOL_GPL vmlinux 0xcb520532 xdp_rxq_info_unreg -EXPORT_SYMBOL_GPL vmlinux 0xcb561441 mem_dump_obj -EXPORT_SYMBOL_GPL vmlinux 0xcb56af14 gpiochip_add_data_with_key -EXPORT_SYMBOL_GPL vmlinux 0xcb7b8b4d usb_lock_device_for_reset -EXPORT_SYMBOL_GPL vmlinux 0xcb87c3f9 usb_choose_configuration -EXPORT_SYMBOL_GPL vmlinux 0xcb8bf2f2 msi_desc_to_pci_sysdata -EXPORT_SYMBOL_GPL vmlinux 0xcb9da5ff xfrm_state_afinfo_get_rcu -EXPORT_SYMBOL_GPL vmlinux 0xcba53891 vfs_removexattr -EXPORT_SYMBOL_GPL vmlinux 0xcba8cd3c devm_init_badblocks -EXPORT_SYMBOL_GPL vmlinux 0xcbb0000e ata_host_alloc_pinfo -EXPORT_SYMBOL_GPL vmlinux 0xcbb38aa6 user_destroy -EXPORT_SYMBOL_GPL vmlinux 0xcbd74b74 irq_gc_mask_set_bit -EXPORT_SYMBOL_GPL vmlinux 0xcbd9b2c8 sbitmap_queue_wake_up -EXPORT_SYMBOL_GPL vmlinux 0xcbe54a4f simple_attr_write_signed -EXPORT_SYMBOL_GPL vmlinux 0xcbe56bc2 zs_get_total_pages -EXPORT_SYMBOL_GPL vmlinux 0xcc043902 devm_gpio_request -EXPORT_SYMBOL_GPL vmlinux 0xcc0fd0a7 k3_ringacc_ring_push_head -EXPORT_SYMBOL_GPL vmlinux 0xcc2dbfd8 irq_domain_check_msi_remap -EXPORT_SYMBOL_GPL vmlinux 0xcc35a39e fscrypt_get_symlink -EXPORT_SYMBOL_GPL vmlinux 0xcc3681fb iomap_zero_range -EXPORT_SYMBOL_GPL vmlinux 0xcc39c03e nvmem_unregister -EXPORT_SYMBOL_GPL vmlinux 0xcc470afa clk_divider_ops -EXPORT_SYMBOL_GPL vmlinux 0xcc4e00f1 blk_mq_quiesce_queue_nowait -EXPORT_SYMBOL_GPL vmlinux 0xcc62908a fsnotify_put_group -EXPORT_SYMBOL_GPL vmlinux 0xcc6d7376 alarm_forward_now -EXPORT_SYMBOL_GPL vmlinux 0xcc74bc26 btree_visitor -EXPORT_SYMBOL_GPL vmlinux 0xcc8e8d36 dst_cache_get_ip4 -EXPORT_SYMBOL_GPL vmlinux 0xcc8f2d7b skcipher_walk_async -EXPORT_SYMBOL_GPL vmlinux 0xcc9268fc hwpoison_filter_enable -EXPORT_SYMBOL_GPL vmlinux 0xcc935375 walk_iomem_res_desc -EXPORT_SYMBOL_GPL vmlinux 0xccae625a usb_kill_urb -EXPORT_SYMBOL_GPL vmlinux 0xccbc3483 led_trigger_unregister -EXPORT_SYMBOL_GPL vmlinux 0xcccfb2fa sata_deb_timing_hotplug -EXPORT_SYMBOL_GPL vmlinux 0xccd86806 ata_id_string -EXPORT_SYMBOL_GPL vmlinux 0xccde6e10 fwnode_graph_get_endpoint_by_id -EXPORT_SYMBOL_GPL vmlinux 0xcceecdd7 auxiliary_device_init -EXPORT_SYMBOL_GPL vmlinux 0xccf27a26 __mmc_poll_for_busy -EXPORT_SYMBOL_GPL vmlinux 0xccf52bc9 sfp_upstream_start -EXPORT_SYMBOL_GPL vmlinux 0xccfda02c dev_pm_opp_get_level -EXPORT_SYMBOL_GPL vmlinux 0xcd03b5a7 acpi_gpiochip_request_interrupts -EXPORT_SYMBOL_GPL vmlinux 0xcd070c22 clk_hw_get_flags -EXPORT_SYMBOL_GPL vmlinux 0xcd0c9dbc dprc_get_obj_region -EXPORT_SYMBOL_GPL vmlinux 0xcd1bdc1a regmap_multi_reg_write -EXPORT_SYMBOL_GPL vmlinux 0xcd1d1f7a bio_iov_iter_get_pages -EXPORT_SYMBOL_GPL vmlinux 0xcd208e62 pci_epf_destroy -EXPORT_SYMBOL_GPL vmlinux 0xcd2389f2 call_srcu -EXPORT_SYMBOL_GPL vmlinux 0xcd24e146 hash_digest_size -EXPORT_SYMBOL_GPL vmlinux 0xcd2641e9 regmap_field_free -EXPORT_SYMBOL_GPL vmlinux 0xcd3d26e7 device_add_properties -EXPORT_SYMBOL_GPL vmlinux 0xcd3d8c0d regulator_enable -EXPORT_SYMBOL_GPL vmlinux 0xcd3e5c7c acpi_release_memory -EXPORT_SYMBOL_GPL vmlinux 0xcd475a1a put_device -EXPORT_SYMBOL_GPL vmlinux 0xcd593dac pci_platform_power_transition -EXPORT_SYMBOL_GPL vmlinux 0xcd60eca4 evm_verifyxattr -EXPORT_SYMBOL_GPL vmlinux 0xcd6bedae mtk_pinconf_drive_set_rev1 -EXPORT_SYMBOL_GPL vmlinux 0xcd6f2dc9 nf_log_buf_add -EXPORT_SYMBOL_GPL vmlinux 0xcd759b82 k3_ringacc_ring_reset -EXPORT_SYMBOL_GPL vmlinux 0xcd76e6f0 phy_power_on -EXPORT_SYMBOL_GPL vmlinux 0xcd787344 sdio_f0_readb -EXPORT_SYMBOL_GPL vmlinux 0xcd834829 sdio_readw -EXPORT_SYMBOL_GPL vmlinux 0xcd85f1d8 gpiod_export -EXPORT_SYMBOL_GPL vmlinux 0xcd8ae3f8 clk_hw_register -EXPORT_SYMBOL_GPL vmlinux 0xcd8b1638 kthread_use_mm -EXPORT_SYMBOL_GPL vmlinux 0xcd910be7 ti_sci_get_num_resources -EXPORT_SYMBOL_GPL vmlinux 0xcd91b127 system_highpri_wq -EXPORT_SYMBOL_GPL vmlinux 0xcd9cd2ff wakeme_after_rcu -EXPORT_SYMBOL_GPL vmlinux 0xcda1ddb2 nfs42_ssc_unregister -EXPORT_SYMBOL_GPL vmlinux 0xcda2aaba k3_udma_glue_tx_dma_to_cppi5_addr -EXPORT_SYMBOL_GPL vmlinux 0xcdae17b8 phy_speed_up -EXPORT_SYMBOL_GPL vmlinux 0xcdb6adcc ras_userspace_consumers -EXPORT_SYMBOL_GPL vmlinux 0xcdbcdfd8 decrypt_blob -EXPORT_SYMBOL_GPL vmlinux 0xcdc56106 pcie_port_bus_type -EXPORT_SYMBOL_GPL vmlinux 0xcdc86b55 sched_clock -EXPORT_SYMBOL_GPL vmlinux 0xcdca3691 nr_irqs -EXPORT_SYMBOL_GPL vmlinux 0xcdd22f26 gen10g_config_aneg -EXPORT_SYMBOL_GPL vmlinux 0xcde1991e pci_bus_add_device -EXPORT_SYMBOL_GPL vmlinux 0xcde1a10f devm_platform_ioremap_resource -EXPORT_SYMBOL_GPL vmlinux 0xcde26600 cppc_get_transition_latency -EXPORT_SYMBOL_GPL vmlinux 0xcde3aa67 ata_pci_sff_prepare_host -EXPORT_SYMBOL_GPL vmlinux 0xcdf29cdc usb_amd_pt_check_port -EXPORT_SYMBOL_GPL vmlinux 0xcdf5ab5a klist_prev -EXPORT_SYMBOL_GPL vmlinux 0xcdfeaf9b debugfs_attr_write_signed -EXPORT_SYMBOL_GPL vmlinux 0xce0a4020 xenbus_directory -EXPORT_SYMBOL_GPL vmlinux 0xce0cd398 spi_slave_abort -EXPORT_SYMBOL_GPL vmlinux 0xce1796b7 fsl_mc_bus_dpdbg_type -EXPORT_SYMBOL_GPL vmlinux 0xce1aa671 get_net_ns -EXPORT_SYMBOL_GPL vmlinux 0xce1d7f2a crypto_unregister_scomps -EXPORT_SYMBOL_GPL vmlinux 0xce1df780 blk_req_zone_write_trylock -EXPORT_SYMBOL_GPL vmlinux 0xce26f272 desc_to_gpio -EXPORT_SYMBOL_GPL vmlinux 0xce2b8729 __rio_local_read_config_32 -EXPORT_SYMBOL_GPL vmlinux 0xce316d7e zynqmp_pm_set_sd_tapdelay -EXPORT_SYMBOL_GPL vmlinux 0xce3b4f77 regulator_bulk_force_disable -EXPORT_SYMBOL_GPL vmlinux 0xce3fdc7c badblocks_set -EXPORT_SYMBOL_GPL vmlinux 0xce4ea0f6 syscon_regmap_lookup_by_phandle_args -EXPORT_SYMBOL_GPL vmlinux 0xce5640e2 driver_for_each_device -EXPORT_SYMBOL_GPL vmlinux 0xce56c86d __bio_add_page -EXPORT_SYMBOL_GPL vmlinux 0xce598ef2 unregister_kretprobe -EXPORT_SYMBOL_GPL vmlinux 0xce66e975 sk_msg_return -EXPORT_SYMBOL_GPL vmlinux 0xce68484b dma_max_mapping_size -EXPORT_SYMBOL_GPL vmlinux 0xce689722 ping_seq_start -EXPORT_SYMBOL_GPL vmlinux 0xce6db656 rcu_is_watching -EXPORT_SYMBOL_GPL vmlinux 0xce767634 __hwspin_lock_timeout -EXPORT_SYMBOL_GPL vmlinux 0xce7890df tty_put_char -EXPORT_SYMBOL_GPL vmlinux 0xceac8674 zynqmp_pm_read_pggs -EXPORT_SYMBOL_GPL vmlinux 0xceb1f126 mpi_read_raw_data -EXPORT_SYMBOL_GPL vmlinux 0xcecef772 gpiod_set_raw_array_value -EXPORT_SYMBOL_GPL vmlinux 0xcedc4ac4 sdio_release_host -EXPORT_SYMBOL_GPL vmlinux 0xcee1641c kgdb_unregister_nmi_console -EXPORT_SYMBOL_GPL vmlinux 0xcee40e32 nvdimm_pmem_region_create -EXPORT_SYMBOL_GPL vmlinux 0xcee88e7a of_overlay_fdt_apply -EXPORT_SYMBOL_GPL vmlinux 0xceed8c16 __set_phys_to_machine -EXPORT_SYMBOL_GPL vmlinux 0xcef3e1f9 sata_async_notification -EXPORT_SYMBOL_GPL vmlinux 0xcef911d3 stmpe_block_read -EXPORT_SYMBOL_GPL vmlinux 0xceff843a rio_free_net -EXPORT_SYMBOL_GPL vmlinux 0xcf006a71 perf_tp_event -EXPORT_SYMBOL_GPL vmlinux 0xcf0fbbf0 devm_mbox_controller_register -EXPORT_SYMBOL_GPL vmlinux 0xcf111eac usb_autopm_get_interface_no_resume -EXPORT_SYMBOL_GPL vmlinux 0xcf12c55a device_find_child -EXPORT_SYMBOL_GPL vmlinux 0xcf15793c dev_pm_opp_of_get_opp_desc_node -EXPORT_SYMBOL_GPL vmlinux 0xcf2233db to_of_pinfo -EXPORT_SYMBOL_GPL vmlinux 0xcf2c679a tpm_get_timeouts -EXPORT_SYMBOL_GPL vmlinux 0xcf2ca640 fscrypt_drop_inode -EXPORT_SYMBOL_GPL vmlinux 0xcf4742c9 hisi_clk_init -EXPORT_SYMBOL_GPL vmlinux 0xcf49e503 class_dev_iter_next -EXPORT_SYMBOL_GPL vmlinux 0xcf6e859b of_irq_get -EXPORT_SYMBOL_GPL vmlinux 0xcf7116ca dma_release_channel -EXPORT_SYMBOL_GPL vmlinux 0xcf7f66f9 imx_dev_clk_hw_pll14xx -EXPORT_SYMBOL_GPL vmlinux 0xcf8113fc skb_segment -EXPORT_SYMBOL_GPL vmlinux 0xcf818838 usb_deregister_device_driver -EXPORT_SYMBOL_GPL vmlinux 0xcf888a2b da9052_adc_manual_read -EXPORT_SYMBOL_GPL vmlinux 0xcf9a8d9f regulator_set_suspend_voltage -EXPORT_SYMBOL_GPL vmlinux 0xcfa7a5f5 tpm_chip_register -EXPORT_SYMBOL_GPL vmlinux 0xcfbd5912 devfreq_get_devfreq_by_node -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 0xcfd4ca4d gpiod_put_array -EXPORT_SYMBOL_GPL vmlinux 0xcff596e5 fat_flush_inodes -EXPORT_SYMBOL_GPL vmlinux 0xcffc18da inet_hashinfo_init -EXPORT_SYMBOL_GPL vmlinux 0xcffd793e hyperv_report_panic -EXPORT_SYMBOL_GPL vmlinux 0xd006026f blk_mq_quiesce_queue -EXPORT_SYMBOL_GPL vmlinux 0xd00c2c93 elv_rqhash_del -EXPORT_SYMBOL_GPL vmlinux 0xd00ca941 tty_buffer_unlock_exclusive -EXPORT_SYMBOL_GPL vmlinux 0xd017f663 acpi_subsys_complete -EXPORT_SYMBOL_GPL vmlinux 0xd019ca7b ptp_classify_raw -EXPORT_SYMBOL_GPL vmlinux 0xd02474d1 serial8250_read_char -EXPORT_SYMBOL_GPL vmlinux 0xd026d518 HYPERVISOR_vcpu_op -EXPORT_SYMBOL_GPL vmlinux 0xd03e83e9 k3_ringacc_dmarings_init -EXPORT_SYMBOL_GPL vmlinux 0xd03eaf4c schedule_hrtimeout_range -EXPORT_SYMBOL_GPL vmlinux 0xd042e59d blk_clear_pm_only -EXPORT_SYMBOL_GPL vmlinux 0xd0458ccb xenbus_strstate -EXPORT_SYMBOL_GPL vmlinux 0xd04aedfd __SCK__tp_func_arm_event -EXPORT_SYMBOL_GPL vmlinux 0xd06524ba raw_notifier_chain_unregister -EXPORT_SYMBOL_GPL vmlinux 0xd067d3c5 system_freezable_power_efficient_wq -EXPORT_SYMBOL_GPL vmlinux 0xd06d23be fsl_mc_populate_irq_pool -EXPORT_SYMBOL_GPL vmlinux 0xd07aee8b regulator_unregister_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0xd0816ec5 sdio_get_host_pm_caps -EXPORT_SYMBOL_GPL vmlinux 0xd09911a6 acpi_dev_get_irq_type -EXPORT_SYMBOL_GPL vmlinux 0xd099cbb2 lwtunnel_build_state -EXPORT_SYMBOL_GPL vmlinux 0xd0a3a5ba iommu_dev_enable_feature -EXPORT_SYMBOL_GPL vmlinux 0xd0a42ab6 acpi_spi_count_resources -EXPORT_SYMBOL_GPL vmlinux 0xd0ab220a irq_domain_simple_ops -EXPORT_SYMBOL_GPL vmlinux 0xd0af4f23 rt_mutex_lock_killable -EXPORT_SYMBOL_GPL vmlinux 0xd0c05159 emergency_restart -EXPORT_SYMBOL_GPL vmlinux 0xd0cce3b9 iommu_sva_get_pasid -EXPORT_SYMBOL_GPL vmlinux 0xd0cfe194 regulator_desc_list_voltage_linear -EXPORT_SYMBOL_GPL vmlinux 0xd0d156e9 __rht_bucket_nested -EXPORT_SYMBOL_GPL vmlinux 0xd0d34d93 blk_queue_max_zone_append_sectors -EXPORT_SYMBOL_GPL vmlinux 0xd0db0f12 run_dax -EXPORT_SYMBOL_GPL vmlinux 0xd0dbbc9c input_ff_destroy -EXPORT_SYMBOL_GPL vmlinux 0xd0df1055 mbox_controller_unregister -EXPORT_SYMBOL_GPL vmlinux 0xd0f15b6d skb_consume_udp -EXPORT_SYMBOL_GPL vmlinux 0xd10456e9 pin_user_pages_fast -EXPORT_SYMBOL_GPL vmlinux 0xd10c4733 __traceiter_block_bio_remap -EXPORT_SYMBOL_GPL vmlinux 0xd10f9314 gpiod_get_value -EXPORT_SYMBOL_GPL vmlinux 0xd11004b5 devres_get -EXPORT_SYMBOL_GPL vmlinux 0xd1132159 perf_event_read_value -EXPORT_SYMBOL_GPL vmlinux 0xd11556e5 cpci_hp_unregister_bus -EXPORT_SYMBOL_GPL vmlinux 0xd1185de9 irq_domain_add_legacy -EXPORT_SYMBOL_GPL vmlinux 0xd1205aa3 max8997_bulk_read -EXPORT_SYMBOL_GPL vmlinux 0xd1386738 x509_cert_parse -EXPORT_SYMBOL_GPL vmlinux 0xd1481de7 mpi_clear -EXPORT_SYMBOL_GPL vmlinux 0xd14d01ad find_vpid -EXPORT_SYMBOL_GPL vmlinux 0xd159586c net_prio_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0xd15f7f85 i2c_mux_del_adapters -EXPORT_SYMBOL_GPL vmlinux 0xd16a8cef __tracepoint_add_device_to_group -EXPORT_SYMBOL_GPL vmlinux 0xd16dac31 usb_submit_urb -EXPORT_SYMBOL_GPL vmlinux 0xd17d2a22 phy_basic_features -EXPORT_SYMBOL_GPL vmlinux 0xd1a1ba20 inet_csk_get_port -EXPORT_SYMBOL_GPL vmlinux 0xd1a9ca15 __SCK__tp_func_neigh_update -EXPORT_SYMBOL_GPL vmlinux 0xd1ab5d22 sock_diag_unregister -EXPORT_SYMBOL_GPL vmlinux 0xd1c630a4 md_bitmap_resize -EXPORT_SYMBOL_GPL vmlinux 0xd1c7c855 cpu_subsys -EXPORT_SYMBOL_GPL vmlinux 0xd1cbc23c add_timer_on -EXPORT_SYMBOL_GPL vmlinux 0xd1dff251 tcp_cong_avoid_ai -EXPORT_SYMBOL_GPL vmlinux 0xd1e9271b ti_sci_inta_msi_domain_alloc_irqs -EXPORT_SYMBOL_GPL vmlinux 0xd1efe190 bpf_map_inc -EXPORT_SYMBOL_GPL vmlinux 0xd1f2eee2 nf_logger_find_get -EXPORT_SYMBOL_GPL vmlinux 0xd20a8b63 lp8788_read_multi_bytes -EXPORT_SYMBOL_GPL vmlinux 0xd217e9e6 trace_set_clr_event -EXPORT_SYMBOL_GPL vmlinux 0xd21b61bd async_schedule_node_domain -EXPORT_SYMBOL_GPL vmlinux 0xd21cf945 devlink_port_params_register -EXPORT_SYMBOL_GPL vmlinux 0xd21f1d35 __SCK__tp_func_tcp_send_reset -EXPORT_SYMBOL_GPL vmlinux 0xd2261544 __clk_hw_register_gate -EXPORT_SYMBOL_GPL vmlinux 0xd22907e2 tegra_xusb_padctl_legacy_probe -EXPORT_SYMBOL_GPL vmlinux 0xd230f903 tps65912_device_exit -EXPORT_SYMBOL_GPL vmlinux 0xd2423f76 i2c_acpi_get_i2c_resource -EXPORT_SYMBOL_GPL vmlinux 0xd24bd5f0 __traceiter_pelt_rt_tp -EXPORT_SYMBOL_GPL vmlinux 0xd253e2b4 crypto_ahash_final -EXPORT_SYMBOL_GPL vmlinux 0xd260af0d ring_buffer_write -EXPORT_SYMBOL_GPL vmlinux 0xd270e977 pci_bridge_emul_conf_write -EXPORT_SYMBOL_GPL vmlinux 0xd273b1b1 __round_jiffies_up_relative -EXPORT_SYMBOL_GPL vmlinux 0xd27ada9c crypto_dequeue_request -EXPORT_SYMBOL_GPL vmlinux 0xd27e3669 spi_mem_dirmap_read -EXPORT_SYMBOL_GPL vmlinux 0xd27f215d gnttab_alloc_grant_references -EXPORT_SYMBOL_GPL vmlinux 0xd299b9ec xas_split_alloc -EXPORT_SYMBOL_GPL vmlinux 0xd299d020 __rt_mutex_init -EXPORT_SYMBOL_GPL vmlinux 0xd29e0550 __nf_ip6_route -EXPORT_SYMBOL_GPL vmlinux 0xd2a0a90b irq_set_chained_handler_and_data -EXPORT_SYMBOL_GPL vmlinux 0xd2a4f02b dev_pm_domain_detach -EXPORT_SYMBOL_GPL vmlinux 0xd2b10a05 ata_timing_find_mode -EXPORT_SYMBOL_GPL vmlinux 0xd2b1e5ce clk_hw_unregister_mux -EXPORT_SYMBOL_GPL vmlinux 0xd2bf2351 acpi_get_first_physical_node -EXPORT_SYMBOL_GPL vmlinux 0xd2f5052c rio_mport_chk_dev_access -EXPORT_SYMBOL_GPL vmlinux 0xd2fab2f5 serial8250_rpm_put -EXPORT_SYMBOL_GPL vmlinux 0xd2fe7e3f task_active_pid_ns -EXPORT_SYMBOL_GPL vmlinux 0xd309bbfe br_ip6_fragment -EXPORT_SYMBOL_GPL vmlinux 0xd312781d mmu_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0xd314c0d4 __vfs_removexattr_noperm -EXPORT_SYMBOL_GPL vmlinux 0xd31a2ac5 ring_buffer_oldest_event_ts -EXPORT_SYMBOL_GPL vmlinux 0xd31c8614 device_get_dma_attr -EXPORT_SYMBOL_GPL vmlinux 0xd320ebaf pci_epc_get_first_free_bar -EXPORT_SYMBOL_GPL vmlinux 0xd3239ac9 perf_event_disable -EXPORT_SYMBOL_GPL vmlinux 0xd3250c2c devm_krealloc -EXPORT_SYMBOL_GPL vmlinux 0xd3274778 switchdev_port_attr_set -EXPORT_SYMBOL_GPL vmlinux 0xd32ba944 pingv6_prot -EXPORT_SYMBOL_GPL vmlinux 0xd33ada8b cci_probed -EXPORT_SYMBOL_GPL vmlinux 0xd344d693 kobject_rename -EXPORT_SYMBOL_GPL vmlinux 0xd344f554 ata_sff_prereset -EXPORT_SYMBOL_GPL vmlinux 0xd3485f2b acpi_bind_one -EXPORT_SYMBOL_GPL vmlinux 0xd3488d30 irq_domain_alloc_irqs_parent -EXPORT_SYMBOL_GPL vmlinux 0xd34ec5ee iommu_detach_group -EXPORT_SYMBOL_GPL vmlinux 0xd356f54a mbox_flush -EXPORT_SYMBOL_GPL vmlinux 0xd35827e1 meson_pmx_get_func_name -EXPORT_SYMBOL_GPL vmlinux 0xd35e52a9 ip_route_output_tunnel -EXPORT_SYMBOL_GPL vmlinux 0xd364ed42 dma_need_sync -EXPORT_SYMBOL_GPL vmlinux 0xd36760ef __usb_get_extra_descriptor -EXPORT_SYMBOL_GPL vmlinux 0xd384e4a9 __traceiter_neigh_event_send_dead -EXPORT_SYMBOL_GPL vmlinux 0xd39da584 sk_msg_return_zero -EXPORT_SYMBOL_GPL vmlinux 0xd39e9848 put_itimerspec64 -EXPORT_SYMBOL_GPL vmlinux 0xd3ba1c5e dma_request_chan_by_mask -EXPORT_SYMBOL_GPL vmlinux 0xd3baf9f4 rtc_read_alarm -EXPORT_SYMBOL_GPL vmlinux 0xd3c38c51 power_supply_unregister -EXPORT_SYMBOL_GPL vmlinux 0xd3c4ca3f switchdev_handle_port_attr_set -EXPORT_SYMBOL_GPL vmlinux 0xd3e397b0 clk_register_gate -EXPORT_SYMBOL_GPL vmlinux 0xd3e61671 led_set_brightness -EXPORT_SYMBOL_GPL vmlinux 0xd3ec851c __traceiter_unmap -EXPORT_SYMBOL_GPL vmlinux 0xd3f0cd42 misc_cg_res_total_usage -EXPORT_SYMBOL_GPL vmlinux 0xd3feef79 blk_add_driver_data -EXPORT_SYMBOL_GPL vmlinux 0xd4034828 system_freezable_wq -EXPORT_SYMBOL_GPL vmlinux 0xd426b4e0 blocking_notifier_chain_unregister -EXPORT_SYMBOL_GPL vmlinux 0xd426dbc4 erst_get_record_count -EXPORT_SYMBOL_GPL vmlinux 0xd42f1d4e show_rcu_tasks_rude_gp_kthread -EXPORT_SYMBOL_GPL vmlinux 0xd441c7b8 fwnode_create_software_node -EXPORT_SYMBOL_GPL vmlinux 0xd441f30d tty_find_polling_driver -EXPORT_SYMBOL_GPL vmlinux 0xd44a5eac kgdb_register_nmi_console -EXPORT_SYMBOL_GPL vmlinux 0xd4651c3c usb_unanchor_urb -EXPORT_SYMBOL_GPL vmlinux 0xd46af5ef cppc_get_perf_ctrs -EXPORT_SYMBOL_GPL vmlinux 0xd47239ec blk_mq_hctx_set_fq_lock_class -EXPORT_SYMBOL_GPL vmlinux 0xd47344cc spi_register_controller -EXPORT_SYMBOL_GPL vmlinux 0xd477fac8 bpf_map_inc_not_zero -EXPORT_SYMBOL_GPL vmlinux 0xd47f9ac8 bsg_register_queue -EXPORT_SYMBOL_GPL vmlinux 0xd4935851 __SCK__tp_func_suspend_resume -EXPORT_SYMBOL_GPL vmlinux 0xd4950e76 devm_power_supply_get_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0xd4a32881 bgmac_adjust_link -EXPORT_SYMBOL_GPL vmlinux 0xd4a960b7 __traceiter_br_fdb_update -EXPORT_SYMBOL_GPL vmlinux 0xd4add8cc genphy_c45_pma_setup_forced -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 0xd4c7250c ti_sci_inta_msi_get_virq -EXPORT_SYMBOL_GPL vmlinux 0xd4cbdbe3 __SCK__tp_func_devlink_trap_report -EXPORT_SYMBOL_GPL vmlinux 0xd4d006c8 ehci_adjust_port_wakeup_flags -EXPORT_SYMBOL_GPL vmlinux 0xd4e6d7e0 linear_range_get_value -EXPORT_SYMBOL_GPL vmlinux 0xd4ea94b2 pinctrl_get_group_pins -EXPORT_SYMBOL_GPL vmlinux 0xd4f5bfa5 iommu_queue_iopf -EXPORT_SYMBOL_GPL vmlinux 0xd4fd8a76 rockchip_clk_init -EXPORT_SYMBOL_GPL vmlinux 0xd4ffec62 ata_dev_set_feature -EXPORT_SYMBOL_GPL vmlinux 0xd51243eb pm_generic_suspend_late -EXPORT_SYMBOL_GPL vmlinux 0xd52f3386 __traceiter_br_fdb_external_learn_add -EXPORT_SYMBOL_GPL vmlinux 0xd5301b2c linear_range_get_max_value -EXPORT_SYMBOL_GPL vmlinux 0xd531a1d1 __devm_irq_alloc_descs -EXPORT_SYMBOL_GPL vmlinux 0xd53e33ce dax_inode -EXPORT_SYMBOL_GPL vmlinux 0xd542ff0f __traceiter_neigh_cleanup_and_release -EXPORT_SYMBOL_GPL vmlinux 0xd5474690 usb_role_switch_set_role -EXPORT_SYMBOL_GPL vmlinux 0xd55ad93b iommu_group_get_iommudata -EXPORT_SYMBOL_GPL vmlinux 0xd5619a6a virtqueue_kick_prepare -EXPORT_SYMBOL_GPL vmlinux 0xd563610c hwspin_lock_free -EXPORT_SYMBOL_GPL vmlinux 0xd56f092c lwtunnel_cmp_encap -EXPORT_SYMBOL_GPL vmlinux 0xd57fbd31 hwrng_unregister -EXPORT_SYMBOL_GPL vmlinux 0xd5807af3 k3_ringacc_ring_pop -EXPORT_SYMBOL_GPL vmlinux 0xd595b865 da903x_reads -EXPORT_SYMBOL_GPL vmlinux 0xd59a1587 linkmode_resolve_pause -EXPORT_SYMBOL_GPL vmlinux 0xd5a6498c srcu_init_notifier_head -EXPORT_SYMBOL_GPL vmlinux 0xd5bdca64 da903x_set_bits -EXPORT_SYMBOL_GPL vmlinux 0xd5c2ce13 dev_pm_qos_hide_latency_limit -EXPORT_SYMBOL_GPL vmlinux 0xd5e5136e acpi_driver_match_device -EXPORT_SYMBOL_GPL vmlinux 0xd5e5d4a8 of_platform_default_populate -EXPORT_SYMBOL_GPL vmlinux 0xd5f091e1 device_store_int -EXPORT_SYMBOL_GPL vmlinux 0xd5f8fca9 l3mdev_master_ifindex_rcu -EXPORT_SYMBOL_GPL vmlinux 0xd5fdf2a6 dax_supported -EXPORT_SYMBOL_GPL vmlinux 0xd6138ab6 devm_hwspin_lock_request -EXPORT_SYMBOL_GPL vmlinux 0xd61e312a ata_port_wait_eh -EXPORT_SYMBOL_GPL vmlinux 0xd6344b97 fwnode_usb_role_switch_get -EXPORT_SYMBOL_GPL vmlinux 0xd64ed259 __memcat_p -EXPORT_SYMBOL_GPL vmlinux 0xd651a6d7 pcie_update_link_speed -EXPORT_SYMBOL_GPL vmlinux 0xd6623f08 usb_alloc_urb -EXPORT_SYMBOL_GPL vmlinux 0xd67364f7 eventfd_ctx_fdget -EXPORT_SYMBOL_GPL vmlinux 0xd67d2ec4 pci_sriov_get_totalvfs -EXPORT_SYMBOL_GPL vmlinux 0xd68e1b5f mtk_pinconf_adv_pull_get -EXPORT_SYMBOL_GPL vmlinux 0xd6ad0d2c is_dock_device -EXPORT_SYMBOL_GPL vmlinux 0xd6b2d2f8 pm_runtime_force_resume -EXPORT_SYMBOL_GPL vmlinux 0xd6b60fea l3mdev_link_scope_lookup -EXPORT_SYMBOL_GPL vmlinux 0xd6d4e005 i2c_acpi_client_count -EXPORT_SYMBOL_GPL vmlinux 0xd6d8f6b3 topology_set_scale_freq_source -EXPORT_SYMBOL_GPL vmlinux 0xd6e2ad29 regulator_sync_voltage -EXPORT_SYMBOL_GPL vmlinux 0xd6ef8815 extcon_set_property_sync -EXPORT_SYMBOL_GPL vmlinux 0xd713343c pci_epc_map_addr -EXPORT_SYMBOL_GPL vmlinux 0xd7133e0b iommu_unmap -EXPORT_SYMBOL_GPL vmlinux 0xd717da5b skb_zerocopy_iter_stream -EXPORT_SYMBOL_GPL vmlinux 0xd7269c64 osc_sb_native_usb4_control -EXPORT_SYMBOL_GPL vmlinux 0xd7274b91 usb_altnum_to_altsetting -EXPORT_SYMBOL_GPL vmlinux 0xd7293ffc percpu_ref_reinit -EXPORT_SYMBOL_GPL vmlinux 0xd72bb441 wm8350_device_init -EXPORT_SYMBOL_GPL vmlinux 0xd72f9edc devm_regmap_add_irq_chip_fwnode -EXPORT_SYMBOL_GPL vmlinux 0xd72feba2 xenbus_read_driver_state -EXPORT_SYMBOL_GPL vmlinux 0xd733b74a serial8250_rx_chars -EXPORT_SYMBOL_GPL vmlinux 0xd7399d2a efivar_entry_iter_end -EXPORT_SYMBOL_GPL vmlinux 0xd74e400f show_rcu_tasks_classic_gp_kthread -EXPORT_SYMBOL_GPL vmlinux 0xd75b20aa rsa_parse_priv_key -EXPORT_SYMBOL_GPL vmlinux 0xd768e985 regulator_has_full_constraints -EXPORT_SYMBOL_GPL vmlinux 0xd7713252 tpm_chip_start -EXPORT_SYMBOL_GPL vmlinux 0xd774957d mpi_write_to_sgl -EXPORT_SYMBOL_GPL vmlinux 0xd77f04e5 freq_qos_remove_request -EXPORT_SYMBOL_GPL vmlinux 0xd7813389 acpi_pci_check_ejectable -EXPORT_SYMBOL_GPL vmlinux 0xd7822952 mctrl_gpio_free -EXPORT_SYMBOL_GPL vmlinux 0xd7839df5 locks_release_private -EXPORT_SYMBOL_GPL vmlinux 0xd786e87d kobject_uevent_env -EXPORT_SYMBOL_GPL vmlinux 0xd7c68e15 regmap_reinit_cache -EXPORT_SYMBOL_GPL vmlinux 0xd7c91b63 tegra210_sata_pll_hw_control_enable -EXPORT_SYMBOL_GPL vmlinux 0xd7cea889 edac_mod_work -EXPORT_SYMBOL_GPL vmlinux 0xd7cf28f5 crypto_ahash_setkey -EXPORT_SYMBOL_GPL vmlinux 0xd7d7f2a7 devlink_port_health_reporter_destroy -EXPORT_SYMBOL_GPL vmlinux 0xd7d809ce rhashtable_insert_slow -EXPORT_SYMBOL_GPL vmlinux 0xd7dccd23 __SCK__tp_func_xhci_dbg_quirks -EXPORT_SYMBOL_GPL vmlinux 0xd8037995 power_supply_put_battery_info -EXPORT_SYMBOL_GPL vmlinux 0xd82be748 extcon_get_extcon_dev -EXPORT_SYMBOL_GPL vmlinux 0xd835a50e is_swiotlb_active -EXPORT_SYMBOL_GPL vmlinux 0xd8406d2c serial8250_handle_irq -EXPORT_SYMBOL_GPL vmlinux 0xd84319df wm831x_reg_read -EXPORT_SYMBOL_GPL vmlinux 0xd84827f7 tcp_get_syncookie_mss -EXPORT_SYMBOL_GPL vmlinux 0xd84b4389 dev_pm_opp_attach_genpd -EXPORT_SYMBOL_GPL vmlinux 0xd84d35bd dax_read_lock -EXPORT_SYMBOL_GPL vmlinux 0xd84f5932 dmaengine_desc_set_metadata_len -EXPORT_SYMBOL_GPL vmlinux 0xd855dff7 lwtunnel_state_alloc -EXPORT_SYMBOL_GPL vmlinux 0xd864a090 fsl_mc_resource_free -EXPORT_SYMBOL_GPL vmlinux 0xd8680123 crypto_shoot_alg -EXPORT_SYMBOL_GPL vmlinux 0xd871d335 gpiod_disable_hw_timestamp_ns -EXPORT_SYMBOL_GPL vmlinux 0xd878d557 xhci_resume -EXPORT_SYMBOL_GPL vmlinux 0xd87f0cf8 k3_ringacc_ring_cfg -EXPORT_SYMBOL_GPL vmlinux 0xd87fc0a0 usb_amd_prefetch_quirk -EXPORT_SYMBOL_GPL vmlinux 0xd88472ff dma_buf_unpin -EXPORT_SYMBOL_GPL vmlinux 0xd88dcb66 dma_buf_mmap -EXPORT_SYMBOL_GPL vmlinux 0xd8a65afc sdio_writew -EXPORT_SYMBOL_GPL vmlinux 0xd8b93e03 dev_err_probe -EXPORT_SYMBOL_GPL vmlinux 0xd8bf9885 kthread_queue_work -EXPORT_SYMBOL_GPL vmlinux 0xd8c8ee95 icc_sync_state -EXPORT_SYMBOL_GPL vmlinux 0xd8cea844 ping_unhash -EXPORT_SYMBOL_GPL vmlinux 0xd8d68ab1 dmi_memdev_type -EXPORT_SYMBOL_GPL vmlinux 0xd8d9e5e8 i2c_client_type -EXPORT_SYMBOL_GPL vmlinux 0xd8fbb14d net_cls_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0xd90a93a7 k3_udma_glue_rx_get_irq -EXPORT_SYMBOL_GPL vmlinux 0xd91dbd1f xdp_alloc_skb_bulk -EXPORT_SYMBOL_GPL vmlinux 0xd92ef192 security_kernel_post_load_data -EXPORT_SYMBOL_GPL vmlinux 0xd93a5cb1 efivar_variable_is_removable -EXPORT_SYMBOL_GPL vmlinux 0xd94967b1 bpf_prog_add -EXPORT_SYMBOL_GPL vmlinux 0xd9583c4d fw_devlink_purge_absent_suppliers -EXPORT_SYMBOL_GPL vmlinux 0xd96a41ea device_for_each_child -EXPORT_SYMBOL_GPL vmlinux 0xd96babb4 interval_tree_iter_next -EXPORT_SYMBOL_GPL vmlinux 0xd980fe14 trace_event_buffer_reserve -EXPORT_SYMBOL_GPL vmlinux 0xd987e091 regulator_get_voltage_sel_regmap -EXPORT_SYMBOL_GPL vmlinux 0xd98df44c ata_platform_remove_one -EXPORT_SYMBOL_GPL vmlinux 0xd9a54502 device_property_read_string_array -EXPORT_SYMBOL_GPL vmlinux 0xd9a958b5 hvc_alloc -EXPORT_SYMBOL_GPL vmlinux 0xd9abfd38 fwnode_get_nth_parent -EXPORT_SYMBOL_GPL vmlinux 0xd9c7bf68 crypto_shash_setkey -EXPORT_SYMBOL_GPL vmlinux 0xd9d0557e extcon_get_edev_name -EXPORT_SYMBOL_GPL vmlinux 0xd9d7c39f clean_acked_data_disable -EXPORT_SYMBOL_GPL vmlinux 0xd9da4610 regulator_get_exclusive -EXPORT_SYMBOL_GPL vmlinux 0xd9e24457 ring_buffer_peek -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 0xda0db255 ip6_route_output_flags_noref -EXPORT_SYMBOL_GPL vmlinux 0xda251827 relay_flush -EXPORT_SYMBOL_GPL vmlinux 0xda265bd4 tpm_chip_stop -EXPORT_SYMBOL_GPL vmlinux 0xda2d6e92 blk_queue_set_zoned -EXPORT_SYMBOL_GPL vmlinux 0xda320d31 sfp_module_start -EXPORT_SYMBOL_GPL vmlinux 0xda8e1302 software_node_find_by_name -EXPORT_SYMBOL_GPL vmlinux 0xda932e3a debugfs_file_get -EXPORT_SYMBOL_GPL vmlinux 0xda974345 md_find_rdev_rcu -EXPORT_SYMBOL_GPL vmlinux 0xdaa06dc1 acpi_lpat_raw_to_temp -EXPORT_SYMBOL_GPL vmlinux 0xdaacfd1b devm_regulator_register_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0xdab04193 i2c_mux_add_adapter -EXPORT_SYMBOL_GPL vmlinux 0xdab2ca05 pinctrl_utils_add_config -EXPORT_SYMBOL_GPL vmlinux 0xdab3558d unregister_wide_hw_breakpoint -EXPORT_SYMBOL_GPL vmlinux 0xdab5a1eb interval_tree_insert -EXPORT_SYMBOL_GPL vmlinux 0xdab7bc9f usb_phy_set_charger_current -EXPORT_SYMBOL_GPL vmlinux 0xdad22e80 hrtimer_init_sleeper -EXPORT_SYMBOL_GPL vmlinux 0xdaf4dfb3 fb_mode_option -EXPORT_SYMBOL_GPL vmlinux 0xdafb082f is_skb_forwardable -EXPORT_SYMBOL_GPL vmlinux 0xdb0e2958 __raw_v6_lookup -EXPORT_SYMBOL_GPL vmlinux 0xdb100f58 vring_create_virtqueue -EXPORT_SYMBOL_GPL vmlinux 0xdb149adf spi_sync -EXPORT_SYMBOL_GPL vmlinux 0xdb227ea1 device_bind_driver -EXPORT_SYMBOL_GPL vmlinux 0xdb294892 vtime_guest_enter -EXPORT_SYMBOL_GPL vmlinux 0xdb5ffa6f ata_bmdma_status -EXPORT_SYMBOL_GPL vmlinux 0xdb63a944 acpi_lpat_get_conversion_table -EXPORT_SYMBOL_GPL vmlinux 0xdb6d85a6 net_selftest -EXPORT_SYMBOL_GPL vmlinux 0xdb82f71f sbitmap_init_node -EXPORT_SYMBOL_GPL vmlinux 0xdb8a1b3f usermodehelper_read_trylock -EXPORT_SYMBOL_GPL vmlinux 0xdb8cff51 irq_generic_chip_ops -EXPORT_SYMBOL_GPL vmlinux 0xdb9c6881 __wake_up_pollfree -EXPORT_SYMBOL_GPL vmlinux 0xdba2516b rockchip_pcie_cfg_configuration_accesses -EXPORT_SYMBOL_GPL vmlinux 0xdbab5ccd get_net_ns_by_pid -EXPORT_SYMBOL_GPL vmlinux 0xdbae935f devm_regulator_bulk_get -EXPORT_SYMBOL_GPL vmlinux 0xdbb037ad crypto_drop_spawn -EXPORT_SYMBOL_GPL vmlinux 0xdbb739b6 pci_disable_rom -EXPORT_SYMBOL_GPL vmlinux 0xdbb85f15 __netif_set_xps_queue -EXPORT_SYMBOL_GPL vmlinux 0xdbb88a05 net_ns_get_ownership -EXPORT_SYMBOL_GPL vmlinux 0xdbcc1e9e led_set_brightness_nopm -EXPORT_SYMBOL_GPL vmlinux 0xdbcea4ba usb_intf_get_dma_device -EXPORT_SYMBOL_GPL vmlinux 0xdbdb0e8b request_any_context_irq -EXPORT_SYMBOL_GPL vmlinux 0xdbdff0d5 icc_link_create -EXPORT_SYMBOL_GPL vmlinux 0xdbe5d0ae btree_init -EXPORT_SYMBOL_GPL vmlinux 0xdbe8aa89 handle_fasteoi_mask_irq -EXPORT_SYMBOL_GPL vmlinux 0xdbe8d8a0 __SCK__tp_func_cpu_frequency -EXPORT_SYMBOL_GPL vmlinux 0xdbec3e5a devfreq_cooling_unregister -EXPORT_SYMBOL_GPL vmlinux 0xdbeeece6 tracepoint_probe_unregister -EXPORT_SYMBOL_GPL vmlinux 0xdbf658f0 ahci_platform_get_resources -EXPORT_SYMBOL_GPL vmlinux 0xdbf7cb70 mpi_get_nbits -EXPORT_SYMBOL_GPL vmlinux 0xdc02eb39 dmi_available -EXPORT_SYMBOL_GPL vmlinux 0xdc082ebb perf_pmu_migrate_context -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 0xdc43bdc6 pci_vpd_find_ro_info_keyword -EXPORT_SYMBOL_GPL vmlinux 0xdc45a5db edac_stop_work -EXPORT_SYMBOL_GPL vmlinux 0xdc4f4996 verify_signature -EXPORT_SYMBOL_GPL vmlinux 0xdc6596fa irq_set_parent -EXPORT_SYMBOL_GPL vmlinux 0xdc6699cb acpi_dev_free_resource_list -EXPORT_SYMBOL_GPL vmlinux 0xdc717cca mtk_pinconf_adv_drive_get -EXPORT_SYMBOL_GPL vmlinux 0xdc7df67f apei_exec_ctx_init -EXPORT_SYMBOL_GPL vmlinux 0xdc8032c1 of_icc_get_from_provider -EXPORT_SYMBOL_GPL vmlinux 0xdc8085a0 kthread_cancel_delayed_work_sync -EXPORT_SYMBOL_GPL vmlinux 0xdc825d6c usb_amd_quirk_pll_disable -EXPORT_SYMBOL_GPL vmlinux 0xdc841b74 misc_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0xdc8764c2 ncsi_vlan_rx_kill_vid -EXPORT_SYMBOL_GPL vmlinux 0xdc925ac7 genpd_dev_pm_attach_by_id -EXPORT_SYMBOL_GPL vmlinux 0xdc97af2e syscore_suspend -EXPORT_SYMBOL_GPL vmlinux 0xdc9fa232 raw_notifier_chain_register -EXPORT_SYMBOL_GPL vmlinux 0xdcb94cee regmap_fields_update_bits_base -EXPORT_SYMBOL_GPL vmlinux 0xdce41ff5 __ata_change_queue_depth -EXPORT_SYMBOL_GPL vmlinux 0xdd0534a5 pci_epc_mem_alloc_addr -EXPORT_SYMBOL_GPL vmlinux 0xdd0762df set_worker_desc -EXPORT_SYMBOL_GPL vmlinux 0xdd083cf6 uart_handle_dcd_change -EXPORT_SYMBOL_GPL vmlinux 0xdd19751f exportfs_encode_inode_fh -EXPORT_SYMBOL_GPL vmlinux 0xdd1d9d1f fixed_phy_change_carrier -EXPORT_SYMBOL_GPL vmlinux 0xdd2088f0 bio_start_io_acct -EXPORT_SYMBOL_GPL vmlinux 0xdd2eb580 pci_find_ht_capability -EXPORT_SYMBOL_GPL vmlinux 0xdd31d030 gnttab_foreach_grant_in_range -EXPORT_SYMBOL_GPL vmlinux 0xdd36445d devm_regulator_bulk_register_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0xdd391eff profile_event_unregister -EXPORT_SYMBOL_GPL vmlinux 0xdd4522fb dev_pm_genpd_remove_notifier -EXPORT_SYMBOL_GPL vmlinux 0xdd56d177 device_store_bool -EXPORT_SYMBOL_GPL vmlinux 0xdd626ee3 fuse_len_args -EXPORT_SYMBOL_GPL vmlinux 0xdd69cfc2 device_change_owner -EXPORT_SYMBOL_GPL vmlinux 0xdd6ddcec __traceiter_error_report_end -EXPORT_SYMBOL_GPL vmlinux 0xdd6e64a1 iommu_device_link -EXPORT_SYMBOL_GPL vmlinux 0xdd78abbe ata_sas_async_probe -EXPORT_SYMBOL_GPL vmlinux 0xdd7a897e inet6_compat_ioctl -EXPORT_SYMBOL_GPL vmlinux 0xdd81810f crypto_stats_rng_generate -EXPORT_SYMBOL_GPL vmlinux 0xdd81d8f6 __SCK__tp_func_block_bio_complete -EXPORT_SYMBOL_GPL vmlinux 0xdd860d8a __devres_alloc_node -EXPORT_SYMBOL_GPL vmlinux 0xdd866340 firmware_request_nowarn -EXPORT_SYMBOL_GPL vmlinux 0xdd8854ee unix_inq_len -EXPORT_SYMBOL_GPL vmlinux 0xdd9de92b iomap_readahead -EXPORT_SYMBOL_GPL vmlinux 0xdd9e1132 ata_sff_dev_classify -EXPORT_SYMBOL_GPL vmlinux 0xddb6f79d fsl_mc_bus_dpbp_type -EXPORT_SYMBOL_GPL vmlinux 0xddb93c8c crypto_type_has_alg -EXPORT_SYMBOL_GPL vmlinux 0xddb962b0 acpi_ec_remove_query_handler -EXPORT_SYMBOL_GPL vmlinux 0xddb973f1 extcon_get_property -EXPORT_SYMBOL_GPL vmlinux 0xddbeeecc pci_lock_rescan_remove -EXPORT_SYMBOL_GPL vmlinux 0xddc276a4 locks_alloc_lock -EXPORT_SYMBOL_GPL vmlinux 0xddd24343 fwnode_count_parents -EXPORT_SYMBOL_GPL vmlinux 0xdde0b071 rtc_initialize_alarm -EXPORT_SYMBOL_GPL vmlinux 0xdde5bb65 acpi_initialize_hp_context -EXPORT_SYMBOL_GPL vmlinux 0xdde75155 trace_put_event_file -EXPORT_SYMBOL_GPL vmlinux 0xddea0f62 strp_done -EXPORT_SYMBOL_GPL vmlinux 0xddf27076 lp8788_update_bits -EXPORT_SYMBOL_GPL vmlinux 0xddf32520 __tracepoint_powernv_throttle -EXPORT_SYMBOL_GPL vmlinux 0xddf6efef amba_bustype -EXPORT_SYMBOL_GPL vmlinux 0xddfe5659 dma_buf_detach -EXPORT_SYMBOL_GPL vmlinux 0xde0f7437 usb_check_bulk_endpoints -EXPORT_SYMBOL_GPL vmlinux 0xde15fcac ata_sff_lost_interrupt -EXPORT_SYMBOL_GPL vmlinux 0xde20856d scsi_schedule_eh -EXPORT_SYMBOL_GPL vmlinux 0xde2ecab0 usb_hcd_link_urb_to_ep -EXPORT_SYMBOL_GPL vmlinux 0xde371d2b iommu_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0xde4a4c18 __devm_rtc_register_device -EXPORT_SYMBOL_GPL vmlinux 0xde53d23f of_changeset_action -EXPORT_SYMBOL_GPL vmlinux 0xde614720 edac_device_free_ctl_info -EXPORT_SYMBOL_GPL vmlinux 0xde6f1851 TSS_checkhmac1 -EXPORT_SYMBOL_GPL vmlinux 0xde6f7c6b pinconf_generic_dt_node_to_map -EXPORT_SYMBOL_GPL vmlinux 0xde76ec9a regulator_bulk_unregister_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0xde86edc9 pernet_ops_rwsem -EXPORT_SYMBOL_GPL vmlinux 0xde8897f8 regmap_field_alloc -EXPORT_SYMBOL_GPL vmlinux 0xde94a046 xfrm_state_mtu -EXPORT_SYMBOL_GPL vmlinux 0xde9a98ca page_cache_sync_ra -EXPORT_SYMBOL_GPL vmlinux 0xde9ab8c7 xenbus_rm -EXPORT_SYMBOL_GPL vmlinux 0xdeab8d5e memunmap_pages -EXPORT_SYMBOL_GPL vmlinux 0xded8c271 cookie_tcp_reqsk_alloc -EXPORT_SYMBOL_GPL vmlinux 0xdedaf427 efivar_entry_size -EXPORT_SYMBOL_GPL vmlinux 0xdef4ed67 usb_anchor_suspend_wakeups -EXPORT_SYMBOL_GPL vmlinux 0xdef7df61 device_match_name -EXPORT_SYMBOL_GPL vmlinux 0xdeffa0a7 edac_raw_mc_handle_error -EXPORT_SYMBOL_GPL vmlinux 0xdeffc0bc devlink_dpipe_entry_ctx_append -EXPORT_SYMBOL_GPL vmlinux 0xdf0c757f ata_tf_to_fis -EXPORT_SYMBOL_GPL vmlinux 0xdf0f75c6 eventfd_signal -EXPORT_SYMBOL_GPL vmlinux 0xdf2738bb cpu_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0xdf347687 acpi_register_gsi -EXPORT_SYMBOL_GPL vmlinux 0xdf456a69 iommu_uapi_sva_bind_gpasid -EXPORT_SYMBOL_GPL vmlinux 0xdf466d00 driver_register -EXPORT_SYMBOL_GPL vmlinux 0xdf6f0211 kobj_sysfs_ops -EXPORT_SYMBOL_GPL vmlinux 0xdf6fe125 sbitmap_add_wait_queue -EXPORT_SYMBOL_GPL vmlinux 0xdf79d312 __serdev_device_driver_register -EXPORT_SYMBOL_GPL vmlinux 0xdf945fab generic_fsdax_supported -EXPORT_SYMBOL_GPL vmlinux 0xdfa296f3 devm_clk_hw_get_clk -EXPORT_SYMBOL_GPL vmlinux 0xdfb6bb1b dax_attribute_group -EXPORT_SYMBOL_GPL vmlinux 0xdfc0f435 of_genpd_add_provider_onecell -EXPORT_SYMBOL_GPL vmlinux 0xdfcb6c90 mctrl_gpio_set -EXPORT_SYMBOL_GPL vmlinux 0xdff58297 input_class -EXPORT_SYMBOL_GPL vmlinux 0xe01191c9 poll_state_synchronize_srcu -EXPORT_SYMBOL_GPL vmlinux 0xe012e25f clk_regmap_divider_ops -EXPORT_SYMBOL_GPL vmlinux 0xe01cecd7 usb_hcd_giveback_urb -EXPORT_SYMBOL_GPL vmlinux 0xe01f4cb0 irq_force_affinity -EXPORT_SYMBOL_GPL vmlinux 0xe021f37d free_iova_fast -EXPORT_SYMBOL_GPL vmlinux 0xe0304236 usb_reset_configuration -EXPORT_SYMBOL_GPL vmlinux 0xe0387a53 ti_sci_inta_msi_domain_free_irqs -EXPORT_SYMBOL_GPL vmlinux 0xe05c888a usb_put_phy -EXPORT_SYMBOL_GPL vmlinux 0xe05e2f85 nexthop_free_rcu -EXPORT_SYMBOL_GPL vmlinux 0xe063a106 debugfs_create_size_t -EXPORT_SYMBOL_GPL vmlinux 0xe064c1d5 crypto_grab_spawn -EXPORT_SYMBOL_GPL vmlinux 0xe0775f91 usb_put_dev -EXPORT_SYMBOL_GPL vmlinux 0xe07e9de6 blk_ksm_init -EXPORT_SYMBOL_GPL vmlinux 0xe08e9244 divider_round_rate_parent -EXPORT_SYMBOL_GPL vmlinux 0xe0919767 of_mpc8xxx_spi_probe -EXPORT_SYMBOL_GPL vmlinux 0xe09532ab vfs_listxattr -EXPORT_SYMBOL_GPL vmlinux 0xe0b1c103 clk_set_max_rate -EXPORT_SYMBOL_GPL vmlinux 0xe0c0c8e4 console_drivers -EXPORT_SYMBOL_GPL vmlinux 0xe0c1c3b8 rio_dma_prep_slave_sg -EXPORT_SYMBOL_GPL vmlinux 0xe0c5b110 regmap_mmio_attach_clk -EXPORT_SYMBOL_GPL vmlinux 0xe0c89524 dpbp_reset -EXPORT_SYMBOL_GPL vmlinux 0xe0cbc545 dev_pm_domain_set -EXPORT_SYMBOL_GPL vmlinux 0xe0d5ae4a power_supply_register_no_ws -EXPORT_SYMBOL_GPL vmlinux 0xe0dccc79 blk_trace_setup -EXPORT_SYMBOL_GPL vmlinux 0xe0e13edf blk_rq_err_bytes -EXPORT_SYMBOL_GPL vmlinux 0xe0e3147c HYPERVISOR_sched_op -EXPORT_SYMBOL_GPL vmlinux 0xe0f03179 rio_route_add_entry -EXPORT_SYMBOL_GPL vmlinux 0xe0f88472 pci_add_dynid -EXPORT_SYMBOL_GPL vmlinux 0xe0fcb0c4 sdio_claim_host -EXPORT_SYMBOL_GPL vmlinux 0xe0ffe63c dev_get_regmap -EXPORT_SYMBOL_GPL vmlinux 0xe10cd6ad erst_get_record_id_begin -EXPORT_SYMBOL_GPL vmlinux 0xe110e953 thermal_zone_get_slope -EXPORT_SYMBOL_GPL vmlinux 0xe13cd265 list_lru_count_node -EXPORT_SYMBOL_GPL vmlinux 0xe15bf104 sysfs_remove_mount_point -EXPORT_SYMBOL_GPL vmlinux 0xe1768920 usb_register_dev -EXPORT_SYMBOL_GPL vmlinux 0xe1775ee7 dm_get_reserved_bio_based_ios -EXPORT_SYMBOL_GPL vmlinux 0xe179e13e sk_psock_init -EXPORT_SYMBOL_GPL vmlinux 0xe17cdb70 device_set_wakeup_capable -EXPORT_SYMBOL_GPL vmlinux 0xe184eda9 pci_find_ext_capability -EXPORT_SYMBOL_GPL vmlinux 0xe18bb38f irq_chip_get_parent_state -EXPORT_SYMBOL_GPL vmlinux 0xe1a1de74 tcp_reno_cong_avoid -EXPORT_SYMBOL_GPL vmlinux 0xe1a3006f devm_regulator_put -EXPORT_SYMBOL_GPL vmlinux 0xe1a763df sched_set_normal -EXPORT_SYMBOL_GPL vmlinux 0xe1abeb31 regulator_set_voltage -EXPORT_SYMBOL_GPL vmlinux 0xe1ac5d63 mdiobus_modify -EXPORT_SYMBOL_GPL vmlinux 0xe1ac773e tick_nohz_full_mask -EXPORT_SYMBOL_GPL vmlinux 0xe1bd6c99 rio_init_mports -EXPORT_SYMBOL_GPL vmlinux 0xe1c63523 blk_ksm_get_slot_idx -EXPORT_SYMBOL_GPL vmlinux 0xe1c7b5af irq_domain_free_irqs_common -EXPORT_SYMBOL_GPL vmlinux 0xe1ed0623 xas_find -EXPORT_SYMBOL_GPL vmlinux 0xe1f898db nf_checksum_partial -EXPORT_SYMBOL_GPL vmlinux 0xe1f9d03c icc_nodes_remove -EXPORT_SYMBOL_GPL vmlinux 0xe2066b06 ping_get_port -EXPORT_SYMBOL_GPL vmlinux 0xe20de221 acpi_dev_get_memory_resources -EXPORT_SYMBOL_GPL vmlinux 0xe20e8e8a usb_role_switch_find_by_fwnode -EXPORT_SYMBOL_GPL vmlinux 0xe2249dde nf_queue_entry_free -EXPORT_SYMBOL_GPL vmlinux 0xe22d2654 tcpv6_prot -EXPORT_SYMBOL_GPL vmlinux 0xe233762a input_event_from_user -EXPORT_SYMBOL_GPL vmlinux 0xe23add94 devm_of_pwm_get -EXPORT_SYMBOL_GPL vmlinux 0xe2403acb wm831x_reg_write -EXPORT_SYMBOL_GPL vmlinux 0xe24da7d0 fib_nl_newrule -EXPORT_SYMBOL_GPL vmlinux 0xe256e14d irq_chip_eoi_parent -EXPORT_SYMBOL_GPL vmlinux 0xe26c789a regmap_add_irq_chip -EXPORT_SYMBOL_GPL vmlinux 0xe274ca37 iommu_register_device_fault_handler -EXPORT_SYMBOL_GPL vmlinux 0xe280e1dc xfrm_audit_state_notfound_simple -EXPORT_SYMBOL_GPL vmlinux 0xe281979f __phy_modify_mmd -EXPORT_SYMBOL_GPL vmlinux 0xe28dbe68 sdio_writel -EXPORT_SYMBOL_GPL vmlinux 0xe2981140 spi_statistics_add_transfer_stats -EXPORT_SYMBOL_GPL vmlinux 0xe29f9311 tegra_mc_probe_device -EXPORT_SYMBOL_GPL vmlinux 0xe2b18a3e iopf_queue_flush_dev -EXPORT_SYMBOL_GPL vmlinux 0xe2b1d103 wm8350_read_auxadc -EXPORT_SYMBOL_GPL vmlinux 0xe2b256ff tcp_register_ulp -EXPORT_SYMBOL_GPL vmlinux 0xe2b3207a unregister_switchdev_notifier -EXPORT_SYMBOL_GPL vmlinux 0xe2b36dda blk_lld_busy -EXPORT_SYMBOL_GPL vmlinux 0xe2b44808 __traceiter_sched_cpu_capacity_tp -EXPORT_SYMBOL_GPL vmlinux 0xe2bc0559 wakeup_sources_walk_start -EXPORT_SYMBOL_GPL vmlinux 0xe2ccbad6 iomap_invalidatepage -EXPORT_SYMBOL_GPL vmlinux 0xe2ce2b4d evm_set_key -EXPORT_SYMBOL_GPL vmlinux 0xe3005e0b __fib_lookup -EXPORT_SYMBOL_GPL vmlinux 0xe31315a4 spi_delay_exec -EXPORT_SYMBOL_GPL vmlinux 0xe31afef7 mmc_cmdq_enable -EXPORT_SYMBOL_GPL vmlinux 0xe33a99f8 hwpoison_filter -EXPORT_SYMBOL_GPL vmlinux 0xe35a2e1e fsl_mc_bus_dpci_type -EXPORT_SYMBOL_GPL vmlinux 0xe35f92b1 crypto_alloc_ahash -EXPORT_SYMBOL_GPL vmlinux 0xe36f5762 __irq_domain_alloc_fwnode -EXPORT_SYMBOL_GPL vmlinux 0xe37ea4ce meson_clk_cpu_dyndiv_ops -EXPORT_SYMBOL_GPL vmlinux 0xe3840e18 secure_ipv4_port_ephemeral -EXPORT_SYMBOL_GPL vmlinux 0xe397caf5 seq_buf_printf -EXPORT_SYMBOL_GPL vmlinux 0xe399acc2 usb_hcd_unlink_urb_from_ep -EXPORT_SYMBOL_GPL vmlinux 0xe39d0794 usb_phy_roothub_exit -EXPORT_SYMBOL_GPL vmlinux 0xe39e86cc pskb_put -EXPORT_SYMBOL_GPL vmlinux 0xe3a0d960 meson_clk_pll_ops -EXPORT_SYMBOL_GPL vmlinux 0xe3b09712 kprobe_event_delete -EXPORT_SYMBOL_GPL vmlinux 0xe3b7a1cf ata_bmdma_irq_clear -EXPORT_SYMBOL_GPL vmlinux 0xe3b8af9a dprc_remove_devices -EXPORT_SYMBOL_GPL vmlinux 0xe3dd1cd4 blk_mq_alloc_request_hctx -EXPORT_SYMBOL_GPL vmlinux 0xe3e770ee pci_remove_root_bus -EXPORT_SYMBOL_GPL vmlinux 0xe3eb6d86 rio_mport_get_efb -EXPORT_SYMBOL_GPL vmlinux 0xe409cb3b tty_ldisc_receive_buf -EXPORT_SYMBOL_GPL vmlinux 0xe40bb23e devlink_health_reporter_priv -EXPORT_SYMBOL_GPL vmlinux 0xe40df45e edac_pci_create_generic_ctl -EXPORT_SYMBOL_GPL vmlinux 0xe41a32f9 ata_acpi_gtm_xfermask -EXPORT_SYMBOL_GPL vmlinux 0xe4248980 cper_estatus_print -EXPORT_SYMBOL_GPL vmlinux 0xe42a49ec pinctrl_find_and_add_gpio_range -EXPORT_SYMBOL_GPL vmlinux 0xe42c6b53 __traceiter_devlink_hwerr -EXPORT_SYMBOL_GPL vmlinux 0xe4309905 syscore_resume -EXPORT_SYMBOL_GPL vmlinux 0xe4534090 fwnode_get_next_child_node -EXPORT_SYMBOL_GPL vmlinux 0xe46000de fib_rules_seq_read -EXPORT_SYMBOL_GPL vmlinux 0xe47471ce ata_pci_sff_activate_host -EXPORT_SYMBOL_GPL vmlinux 0xe48252de dev_attr_unload_heads -EXPORT_SYMBOL_GPL vmlinux 0xe48e632b sdio_signal_irq -EXPORT_SYMBOL_GPL vmlinux 0xe491e700 unregister_kprobes -EXPORT_SYMBOL_GPL vmlinux 0xe4971ade tracing_alloc_snapshot -EXPORT_SYMBOL_GPL vmlinux 0xe4b064f9 pcie_link_speed -EXPORT_SYMBOL_GPL vmlinux 0xe4b51f36 __netpoll_free -EXPORT_SYMBOL_GPL vmlinux 0xe4b818c3 phy_speed_to_str -EXPORT_SYMBOL_GPL vmlinux 0xe4b93f27 public_key_verify_signature -EXPORT_SYMBOL_GPL vmlinux 0xe4c11261 clk_hw_rate_is_protected -EXPORT_SYMBOL_GPL vmlinux 0xe4c2c66c rtc_ktime_to_tm -EXPORT_SYMBOL_GPL vmlinux 0xe4d61269 iommu_map -EXPORT_SYMBOL_GPL vmlinux 0xe4de72d1 dev_pm_enable_wake_irq -EXPORT_SYMBOL_GPL vmlinux 0xe4e48b12 swphy_validate_state -EXPORT_SYMBOL_GPL vmlinux 0xe4ec2985 xas_find_marked -EXPORT_SYMBOL_GPL vmlinux 0xe4ec6aa5 inet6_hash_connect -EXPORT_SYMBOL_GPL vmlinux 0xe4ee0943 sbitmap_queue_resize -EXPORT_SYMBOL_GPL vmlinux 0xe4f92456 pci_epc_unmap_addr -EXPORT_SYMBOL_GPL vmlinux 0xe52dc8b0 pci_epc_set_msix -EXPORT_SYMBOL_GPL vmlinux 0xe53ff564 of_clk_parent_fill -EXPORT_SYMBOL_GPL vmlinux 0xe545d83a fwnode_handle_get -EXPORT_SYMBOL_GPL vmlinux 0xe54ff166 tegra_mc_get_emem_device_count -EXPORT_SYMBOL_GPL vmlinux 0xe5516728 k3_udma_glue_tx_get_irq -EXPORT_SYMBOL_GPL vmlinux 0xe55a9158 device_show_ulong -EXPORT_SYMBOL_GPL vmlinux 0xe55f4814 bus_unregister -EXPORT_SYMBOL_GPL vmlinux 0xe572098f blk_mq_queue_inflight -EXPORT_SYMBOL_GPL vmlinux 0xe575eeaf wm8350_gpio_config -EXPORT_SYMBOL_GPL vmlinux 0xe5777c39 bpf_trace_run12 -EXPORT_SYMBOL_GPL vmlinux 0xe57d2d68 mpc8xxx_spi_probe -EXPORT_SYMBOL_GPL vmlinux 0xe5883bd9 class_compat_unregister -EXPORT_SYMBOL_GPL vmlinux 0xe59eafa0 devm_memremap_pages -EXPORT_SYMBOL_GPL vmlinux 0xe5a6644e qcom_smem_state_register -EXPORT_SYMBOL_GPL vmlinux 0xe5a925d3 zynqmp_pm_init_finalize -EXPORT_SYMBOL_GPL vmlinux 0xe5aa1091 blk_poll -EXPORT_SYMBOL_GPL vmlinux 0xe5ab5880 devlink_dpipe_table_counter_enabled -EXPORT_SYMBOL_GPL vmlinux 0xe5cb1943 hisi_clk_register_divider -EXPORT_SYMBOL_GPL vmlinux 0xe5d0164f acpi_get_psd_map -EXPORT_SYMBOL_GPL vmlinux 0xe5d6080c hisi_clk_register_phase -EXPORT_SYMBOL_GPL vmlinux 0xe5ef05f5 dma_vmap_noncontiguous -EXPORT_SYMBOL_GPL vmlinux 0xe5f39aae security_path_link -EXPORT_SYMBOL_GPL vmlinux 0xe60632a9 edac_queue_work -EXPORT_SYMBOL_GPL vmlinux 0xe60a5e8d pids_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0xe61803ce vtime_guest_exit -EXPORT_SYMBOL_GPL vmlinux 0xe6239f29 inet_hashinfo2_init_mod -EXPORT_SYMBOL_GPL vmlinux 0xe628bb9f phy_fibre_port_array -EXPORT_SYMBOL_GPL vmlinux 0xe636a9bf ata_sff_wait_ready -EXPORT_SYMBOL_GPL vmlinux 0xe6417bf9 devm_ti_sci_get_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0xe646c0b3 vfs_test_lock -EXPORT_SYMBOL_GPL vmlinux 0xe654cc9d xenbus_dev_probe -EXPORT_SYMBOL_GPL vmlinux 0xe6600e2b inet_csk_clone_lock -EXPORT_SYMBOL_GPL vmlinux 0xe6806fc0 acpi_subsys_runtime_resume -EXPORT_SYMBOL_GPL vmlinux 0xe6988044 security_inode_mkdir -EXPORT_SYMBOL_GPL vmlinux 0xe6a58074 wm831x_reg_unlock -EXPORT_SYMBOL_GPL vmlinux 0xe6c63957 netlink_remove_tap -EXPORT_SYMBOL_GPL vmlinux 0xe6c82769 mpc8xxx_spi_tx_buf_u32 -EXPORT_SYMBOL_GPL vmlinux 0xe6ca20d2 __page_file_mapping -EXPORT_SYMBOL_GPL vmlinux 0xe6d714e9 dev_pm_opp_set_opp -EXPORT_SYMBOL_GPL vmlinux 0xe6e17a6a gpiochip_line_is_open_drain -EXPORT_SYMBOL_GPL vmlinux 0xe6e40502 rcu_get_gp_seq -EXPORT_SYMBOL_GPL vmlinux 0xe6e988c5 k3_ringacc_get_tisci_dev_id -EXPORT_SYMBOL_GPL vmlinux 0xe6f83837 acpi_bus_attach_private_data -EXPORT_SYMBOL_GPL vmlinux 0xe700d767 reset_control_bulk_deassert -EXPORT_SYMBOL_GPL vmlinux 0xe703fd0e devm_hwspin_lock_register -EXPORT_SYMBOL_GPL vmlinux 0xe71d9448 iommu_attach_device -EXPORT_SYMBOL_GPL vmlinux 0xe7230589 pwm_request_from_chip -EXPORT_SYMBOL_GPL vmlinux 0xe72d1012 anon_inode_getfile -EXPORT_SYMBOL_GPL vmlinux 0xe74b981a serdev_device_write_buf -EXPORT_SYMBOL_GPL vmlinux 0xe74bae62 is_software_node -EXPORT_SYMBOL_GPL vmlinux 0xe7513943 regmap_get_raw_write_max -EXPORT_SYMBOL_GPL vmlinux 0xe753b68d devlink_fmsg_arr_pair_nest_end -EXPORT_SYMBOL_GPL vmlinux 0xe7611c18 spi_unregister_device -EXPORT_SYMBOL_GPL vmlinux 0xe7611e2f i2c_unregister_device -EXPORT_SYMBOL_GPL vmlinux 0xe764cd4a inode_sb_list_add -EXPORT_SYMBOL_GPL vmlinux 0xe769232e sprint_symbol_no_offset -EXPORT_SYMBOL_GPL vmlinux 0xe7812e14 serial8250_clear_and_reinit_fifos -EXPORT_SYMBOL_GPL vmlinux 0xe783e261 sysfs_emit -EXPORT_SYMBOL_GPL vmlinux 0xe78a5836 of_clk_get_parent_count -EXPORT_SYMBOL_GPL vmlinux 0xe78b6c4e pwm_request -EXPORT_SYMBOL_GPL vmlinux 0xe791454c clk_register_hisi_phase -EXPORT_SYMBOL_GPL vmlinux 0xe791df1f rcu_nocb_cpu_deoffload -EXPORT_SYMBOL_GPL vmlinux 0xe7936243 zynqmp_pm_clock_getstate -EXPORT_SYMBOL_GPL vmlinux 0xe794144b devlink_params_register -EXPORT_SYMBOL_GPL vmlinux 0xe7962b23 devm_hwmon_device_register_with_info -EXPORT_SYMBOL_GPL vmlinux 0xe79abdb3 devres_release_group -EXPORT_SYMBOL_GPL vmlinux 0xe7a6b69b amba_device_add -EXPORT_SYMBOL_GPL vmlinux 0xe7ade705 tty_prepare_flip_string -EXPORT_SYMBOL_GPL vmlinux 0xe7d5da33 __page_file_index -EXPORT_SYMBOL_GPL vmlinux 0xe7d6d2d4 filter_match_preds -EXPORT_SYMBOL_GPL vmlinux 0xe7d9a2b0 pm_runtime_allow -EXPORT_SYMBOL_GPL vmlinux 0xe7da6889 blk_crypto_evict_key -EXPORT_SYMBOL_GPL vmlinux 0xe7da9cb5 fb_deferred_io_init -EXPORT_SYMBOL_GPL vmlinux 0xe7e30f1e mmu_interval_read_begin -EXPORT_SYMBOL_GPL vmlinux 0xe7ec6560 lp8788_read_byte -EXPORT_SYMBOL_GPL vmlinux 0xe8033b83 usb_phy_roothub_suspend -EXPORT_SYMBOL_GPL vmlinux 0xe818b32b ata_bmdma_interrupt -EXPORT_SYMBOL_GPL vmlinux 0xe8196468 crypto_unregister_ahashes -EXPORT_SYMBOL_GPL vmlinux 0xe84d0b1b device_add -EXPORT_SYMBOL_GPL vmlinux 0xe84f6e5c pciserial_remove_ports -EXPORT_SYMBOL_GPL vmlinux 0xe8537795 devm_regulator_irq_helper -EXPORT_SYMBOL_GPL vmlinux 0xe85a9fd3 cpu_cluster_pm_exit -EXPORT_SYMBOL_GPL vmlinux 0xe85aecd3 ima_inode_hash -EXPORT_SYMBOL_GPL vmlinux 0xe85c09b7 fscrypt_mergeable_bio -EXPORT_SYMBOL_GPL vmlinux 0xe862c4b7 dpm_suspend_start -EXPORT_SYMBOL_GPL vmlinux 0xe86779d2 sysfs_rename_link_ns -EXPORT_SYMBOL_GPL vmlinux 0xe86c9aaa tcp_slow_start -EXPORT_SYMBOL_GPL vmlinux 0xe86d3a0f bus_remove_file -EXPORT_SYMBOL_GPL vmlinux 0xe887f3ff devm_gpiod_get_array -EXPORT_SYMBOL_GPL vmlinux 0xe89c5dd7 nvmem_cell_read_u64 -EXPORT_SYMBOL_GPL vmlinux 0xe8b29998 devfreq_event_enable_edev -EXPORT_SYMBOL_GPL vmlinux 0xe8b813bd dm_post_suspending -EXPORT_SYMBOL_GPL vmlinux 0xe8c0065d memory_group_register_static -EXPORT_SYMBOL_GPL vmlinux 0xe8cd0119 debugfs_create_file_size -EXPORT_SYMBOL_GPL vmlinux 0xe8ce33f4 acomp_request_alloc -EXPORT_SYMBOL_GPL vmlinux 0xe8d34ce9 fsl_mc_resource_allocate -EXPORT_SYMBOL_GPL vmlinux 0xe8eac26f inet_twsk_purge -EXPORT_SYMBOL_GPL vmlinux 0xe90c7659 k3_udma_glue_rx_dma_to_cppi5_addr -EXPORT_SYMBOL_GPL vmlinux 0xe911df29 eventfd_ctx_do_read -EXPORT_SYMBOL_GPL vmlinux 0xe91749e4 cpufreq_dbs_governor_init -EXPORT_SYMBOL_GPL vmlinux 0xe93e49c3 devres_free -EXPORT_SYMBOL_GPL vmlinux 0xe947d4ba pwm_get_chip_data -EXPORT_SYMBOL_GPL vmlinux 0xe94e8040 spi_mem_dtr_supports_op -EXPORT_SYMBOL_GPL vmlinux 0xe956a75c pl320_ipc_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0xe966d419 genphy_c45_an_config_aneg -EXPORT_SYMBOL_GPL vmlinux 0xe98f55f2 arm_smccc_get_version -EXPORT_SYMBOL_GPL vmlinux 0xe9954eb7 irq_domain_remove -EXPORT_SYMBOL_GPL vmlinux 0xe9c9a317 iommu_capable -EXPORT_SYMBOL_GPL vmlinux 0xe9ce14e2 gpiod_direction_input -EXPORT_SYMBOL_GPL vmlinux 0xe9d1b7cf irq_to_pcap -EXPORT_SYMBOL_GPL vmlinux 0xe9d4d7d5 irq_chip_disable_parent -EXPORT_SYMBOL_GPL vmlinux 0xe9d63a0d k3_udma_glue_enable_tx_chn -EXPORT_SYMBOL_GPL vmlinux 0xe9da7590 fuse_direct_io -EXPORT_SYMBOL_GPL vmlinux 0xe9f21df8 tegra_bpmp_free_mrq -EXPORT_SYMBOL_GPL vmlinux 0xe9f9a2c2 usb_add_hcd -EXPORT_SYMBOL_GPL vmlinux 0xea018bbb mpi_test_bit -EXPORT_SYMBOL_GPL vmlinux 0xea09d34c of_dma_simple_xlate -EXPORT_SYMBOL_GPL vmlinux 0xea124bd1 gcd -EXPORT_SYMBOL_GPL vmlinux 0xea1c5b82 gpiod_get_array_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0xea38036f ring_buffer_entries -EXPORT_SYMBOL_GPL vmlinux 0xea3a23f3 public_key_free -EXPORT_SYMBOL_GPL vmlinux 0xea43ab08 genphy_c45_check_and_restart_aneg -EXPORT_SYMBOL_GPL vmlinux 0xea45bdd7 gpiochip_add_pingroup_range -EXPORT_SYMBOL_GPL vmlinux 0xea480d03 devm_platform_get_irqs_affinity -EXPORT_SYMBOL_GPL vmlinux 0xea50dad3 ahci_ignore_sss -EXPORT_SYMBOL_GPL vmlinux 0xea52509a icmp_build_probe -EXPORT_SYMBOL_GPL vmlinux 0xea53dbe1 rio_add_net -EXPORT_SYMBOL_GPL vmlinux 0xea665228 cgroup_get_from_id -EXPORT_SYMBOL_GPL vmlinux 0xea6af025 to_nvdimm_bus_dev -EXPORT_SYMBOL_GPL vmlinux 0xea6d4b47 pinctrl_select_default_state -EXPORT_SYMBOL_GPL vmlinux 0xea981995 max8997_update_reg -EXPORT_SYMBOL_GPL vmlinux 0xea9b83a9 mtk_pinconf_bias_disable_set -EXPORT_SYMBOL_GPL vmlinux 0xeaa9b86c acpi_dev_clear_dependencies -EXPORT_SYMBOL_GPL vmlinux 0xeab58e25 phy_modify_changed -EXPORT_SYMBOL_GPL vmlinux 0xeabb4853 ata_scsi_ioctl -EXPORT_SYMBOL_GPL vmlinux 0xeabfc71b badblocks_check -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 0xead796f8 umd_load_blob -EXPORT_SYMBOL_GPL vmlinux 0xeadc7438 inet6_destroy_sock -EXPORT_SYMBOL_GPL vmlinux 0xeae0f496 clean_acked_data_flush -EXPORT_SYMBOL_GPL vmlinux 0xeaeb43da da903x_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0xeaf0a57c look_up_OID -EXPORT_SYMBOL_GPL vmlinux 0xeaf8469d hv_do_fast_hypercall8 -EXPORT_SYMBOL_GPL vmlinux 0xeb05cec0 blk_mq_sched_try_insert_merge -EXPORT_SYMBOL_GPL vmlinux 0xeb36690c fl6_merge_options -EXPORT_SYMBOL_GPL vmlinux 0xeb3d95f2 ethnl_cable_test_fault_length -EXPORT_SYMBOL_GPL vmlinux 0xeb3f8de5 netdev_rx_handler_unregister -EXPORT_SYMBOL_GPL vmlinux 0xeb4221e4 trace_clock -EXPORT_SYMBOL_GPL vmlinux 0xeb437430 tpm_pm_resume -EXPORT_SYMBOL_GPL vmlinux 0xeb485f38 sk_psock_tls_strp_read -EXPORT_SYMBOL_GPL vmlinux 0xeb4d060e tps6586x_clr_bits -EXPORT_SYMBOL_GPL vmlinux 0xeb663489 regmap_multi_reg_write_bypassed -EXPORT_SYMBOL_GPL vmlinux 0xeb67bb5f rio_map_inb_region -EXPORT_SYMBOL_GPL vmlinux 0xeb75bdba vring_transport_features -EXPORT_SYMBOL_GPL vmlinux 0xeb78b1ed unregister_kprobe -EXPORT_SYMBOL_GPL vmlinux 0xeb86793a usb_alloc_dev -EXPORT_SYMBOL_GPL vmlinux 0xeb908530 devm_tegra_memory_controller_get -EXPORT_SYMBOL_GPL vmlinux 0xeb95f084 bus_set_iommu -EXPORT_SYMBOL_GPL vmlinux 0xeb9db8a1 nd_blk_memremap_flags -EXPORT_SYMBOL_GPL vmlinux 0xeba34185 nf_ct_hook -EXPORT_SYMBOL_GPL vmlinux 0xebac51c5 serial8250_update_uartclk -EXPORT_SYMBOL_GPL vmlinux 0xebbccf7b clean_acked_data_enable -EXPORT_SYMBOL_GPL vmlinux 0xebc81133 __fscrypt_prepare_setattr -EXPORT_SYMBOL_GPL vmlinux 0xebc9a09f lock_system_sleep -EXPORT_SYMBOL_GPL vmlinux 0xebd04081 sched_trace_rq_nr_running -EXPORT_SYMBOL_GPL vmlinux 0xebd2c817 get_dev_pagemap -EXPORT_SYMBOL_GPL vmlinux 0xebd4cc11 mctrl_gpio_enable_ms -EXPORT_SYMBOL_GPL vmlinux 0xebe3ed7a balloon_page_alloc -EXPORT_SYMBOL_GPL vmlinux 0xebf69888 usb_get_intf -EXPORT_SYMBOL_GPL vmlinux 0xebfd9156 ahci_init_controller -EXPORT_SYMBOL_GPL vmlinux 0xec06451d balloon_page_list_dequeue -EXPORT_SYMBOL_GPL vmlinux 0xec35da64 crypto_stats_rng_seed -EXPORT_SYMBOL_GPL vmlinux 0xec452f2c scsi_host_busy_iter -EXPORT_SYMBOL_GPL vmlinux 0xec4642ac rio_dev_put -EXPORT_SYMBOL_GPL vmlinux 0xec5668f6 dax_zero_page_range -EXPORT_SYMBOL_GPL vmlinux 0xec5a0254 ip6_route_output_flags -EXPORT_SYMBOL_GPL vmlinux 0xec5ad73b trace_seq_bitmask -EXPORT_SYMBOL_GPL vmlinux 0xec5cd37a dev_pm_opp_find_freq_floor -EXPORT_SYMBOL_GPL vmlinux 0xec6b90fd mptcp_get_reset_option -EXPORT_SYMBOL_GPL vmlinux 0xec6f50a0 rio_release_outb_dbell -EXPORT_SYMBOL_GPL vmlinux 0xec7052ee iptunnel_metadata_reply -EXPORT_SYMBOL_GPL vmlinux 0xec76873e devm_gpio_request_one -EXPORT_SYMBOL_GPL vmlinux 0xec774acb cpufreq_frequency_table_verify -EXPORT_SYMBOL_GPL vmlinux 0xec8b2fa5 pinctrl_utils_add_map_configs -EXPORT_SYMBOL_GPL vmlinux 0xec8d00b8 fsverity_prepare_setattr -EXPORT_SYMBOL_GPL vmlinux 0xeca821e5 mmc_regulator_set_vqmmc -EXPORT_SYMBOL_GPL vmlinux 0xecb50d9d of_pci_get_max_link_speed -EXPORT_SYMBOL_GPL vmlinux 0xecb671fc tegra210_sata_pll_hw_sequence_start -EXPORT_SYMBOL_GPL vmlinux 0xecba68e3 gnttab_batch_map -EXPORT_SYMBOL_GPL vmlinux 0xecd4ffea debugfs_create_bool -EXPORT_SYMBOL_GPL vmlinux 0xecd8f23d xenbus_read -EXPORT_SYMBOL_GPL vmlinux 0xecd9dbb1 md_bitmap_load -EXPORT_SYMBOL_GPL vmlinux 0xecda4429 dw_pcie_ep_exit -EXPORT_SYMBOL_GPL vmlinux 0xece12a10 pci_epc_destroy -EXPORT_SYMBOL_GPL vmlinux 0xecf05548 devres_open_group -EXPORT_SYMBOL_GPL vmlinux 0xecf1f53a __irq_resolve_mapping -EXPORT_SYMBOL_GPL vmlinux 0xecf90f2d inet_csk_route_req -EXPORT_SYMBOL_GPL vmlinux 0xecfdcdbc devlink_trap_groups_unregister -EXPORT_SYMBOL_GPL vmlinux 0xed0ad311 sysfs_group_change_owner -EXPORT_SYMBOL_GPL vmlinux 0xed0d6caf sata_scr_read -EXPORT_SYMBOL_GPL vmlinux 0xed165aa7 devm_clk_register -EXPORT_SYMBOL_GPL vmlinux 0xed17d2b3 adp5520_set_bits -EXPORT_SYMBOL_GPL vmlinux 0xed213129 i2c_root_adapter -EXPORT_SYMBOL_GPL vmlinux 0xed23548c pinctrl_dev_get_devname -EXPORT_SYMBOL_GPL vmlinux 0xed2d0942 devm_regmap_init_vexpress_config -EXPORT_SYMBOL_GPL vmlinux 0xed39b7b8 parse_OID -EXPORT_SYMBOL_GPL vmlinux 0xed480ab9 kernel_kobj -EXPORT_SYMBOL_GPL vmlinux 0xed53ae08 tpm_pcr_extend -EXPORT_SYMBOL_GPL vmlinux 0xed64eb9a nf_hook_entries_insert_raw -EXPORT_SYMBOL_GPL vmlinux 0xed826da9 clk_hw_unregister_gate -EXPORT_SYMBOL_GPL vmlinux 0xed8e1ea9 gpiochip_irq_unmap -EXPORT_SYMBOL_GPL vmlinux 0xed926ca6 mmc_app_cmd -EXPORT_SYMBOL_GPL vmlinux 0xed98ee14 pinctrl_force_default -EXPORT_SYMBOL_GPL vmlinux 0xeda05701 fat_time_unix2fat -EXPORT_SYMBOL_GPL vmlinux 0xeda9f6b9 pinctrl_lookup_state -EXPORT_SYMBOL_GPL vmlinux 0xedbfe874 __sync_filesystem -EXPORT_SYMBOL_GPL vmlinux 0xedc8730a sk_clone_lock -EXPORT_SYMBOL_GPL vmlinux 0xedcde91b regulator_set_voltage_sel_regmap -EXPORT_SYMBOL_GPL vmlinux 0xedd00dc2 filemap_range_needs_writeback -EXPORT_SYMBOL_GPL vmlinux 0xedf96f3f of_irq_find_parent -EXPORT_SYMBOL_GPL vmlinux 0xee038534 devm_nvmem_device_put -EXPORT_SYMBOL_GPL vmlinux 0xee1c4658 nvdimm_delete -EXPORT_SYMBOL_GPL vmlinux 0xee1f5126 __tracepoint_neigh_timer_handler -EXPORT_SYMBOL_GPL vmlinux 0xee25feb1 ata_scsi_queuecmd -EXPORT_SYMBOL_GPL vmlinux 0xee2b5af4 compat_only_sysfs_link_entry_to_kobj -EXPORT_SYMBOL_GPL vmlinux 0xee38deed cpufreq_dbs_governor_limits -EXPORT_SYMBOL_GPL vmlinux 0xee38ef57 register_switchdev_blocking_notifier -EXPORT_SYMBOL_GPL vmlinux 0xee5018ef init_iova_domain -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 0xee6dc3df devlink_port_param_value_changed -EXPORT_SYMBOL_GPL vmlinux 0xee7c189a iommu_device_register -EXPORT_SYMBOL_GPL vmlinux 0xee865e9e __platform_driver_probe -EXPORT_SYMBOL_GPL vmlinux 0xee90288a regulator_set_voltage_time -EXPORT_SYMBOL_GPL vmlinux 0xee9377e0 usb_sg_cancel -EXPORT_SYMBOL_GPL vmlinux 0xee99f5b3 ata_sff_irq_on -EXPORT_SYMBOL_GPL vmlinux 0xeebd3610 debugfs_create_file -EXPORT_SYMBOL_GPL vmlinux 0xeed0cea4 kernel_read_file_from_fd -EXPORT_SYMBOL_GPL vmlinux 0xeed6771e crypto_alloc_tfm_node -EXPORT_SYMBOL_GPL vmlinux 0xeedd987e phy_10gbit_features_array -EXPORT_SYMBOL_GPL vmlinux 0xeedfcec3 task_work_run -EXPORT_SYMBOL_GPL vmlinux 0xeeea63b3 efivar_entry_find -EXPORT_SYMBOL_GPL vmlinux 0xeefb429d pci_cfg_access_trylock -EXPORT_SYMBOL_GPL vmlinux 0xeeff9d1a device_remove_bin_file -EXPORT_SYMBOL_GPL vmlinux 0xef0c1e70 ip6_dst_lookup_tunnel -EXPORT_SYMBOL_GPL vmlinux 0xef1af0d0 dpm_for_each_dev -EXPORT_SYMBOL_GPL vmlinux 0xef1cc10a xen_dbgp_external_startup -EXPORT_SYMBOL_GPL vmlinux 0xef1f6e23 apei_resources_request -EXPORT_SYMBOL_GPL vmlinux 0xef261e1f phy_set_speed -EXPORT_SYMBOL_GPL vmlinux 0xef294842 fwnode_remove_software_node -EXPORT_SYMBOL_GPL vmlinux 0xef29fcdd clk_bulk_put -EXPORT_SYMBOL_GPL vmlinux 0xef464c28 getboottime64 -EXPORT_SYMBOL_GPL vmlinux 0xef491d5a mddev_unlock -EXPORT_SYMBOL_GPL vmlinux 0xef547465 usb_disable_xhci_ports -EXPORT_SYMBOL_GPL vmlinux 0xef558dbb devm_request_pci_bus_resources -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 0xef7bb1bd usb_autopm_get_interface_async -EXPORT_SYMBOL_GPL vmlinux 0xef91f0b2 usb_anchor_resume_wakeups -EXPORT_SYMBOL_GPL vmlinux 0xef95ffba vp_modern_config_vector -EXPORT_SYMBOL_GPL vmlinux 0xef9d2cd6 bpf_map_put -EXPORT_SYMBOL_GPL vmlinux 0xef9fb372 clkdev_hw_create -EXPORT_SYMBOL_GPL vmlinux 0xefa2c27d register_tracepoint_module_notifier -EXPORT_SYMBOL_GPL vmlinux 0xefa541b4 blk_mq_update_nr_hw_queues -EXPORT_SYMBOL_GPL vmlinux 0xefb0a16d net_rwsem -EXPORT_SYMBOL_GPL vmlinux 0xefbbd0cf xas_split -EXPORT_SYMBOL_GPL vmlinux 0xefdc2c54 iopf_queue_add_device -EXPORT_SYMBOL_GPL vmlinux 0xefe634aa ping_init_sock -EXPORT_SYMBOL_GPL vmlinux 0xefeafcf1 edac_has_mcs -EXPORT_SYMBOL_GPL vmlinux 0xeffdc408 mmu_notifier_unregister -EXPORT_SYMBOL_GPL vmlinux 0xf02582d9 blk_set_pm_only -EXPORT_SYMBOL_GPL vmlinux 0xf04429b4 acpi_bus_get_status_handle -EXPORT_SYMBOL_GPL vmlinux 0xf0525f5d ata_host_start -EXPORT_SYMBOL_GPL vmlinux 0xf05a52fe asn1_encode_oid -EXPORT_SYMBOL_GPL vmlinux 0xf05fbf09 pci_pio_to_address -EXPORT_SYMBOL_GPL vmlinux 0xf06139c8 clk_hw_round_rate -EXPORT_SYMBOL_GPL vmlinux 0xf06222d3 crypto_stats_akcipher_verify -EXPORT_SYMBOL_GPL vmlinux 0xf0696401 acpi_pci_detect_ejectable -EXPORT_SYMBOL_GPL vmlinux 0xf06b259d __vfs_setxattr_noperm -EXPORT_SYMBOL_GPL vmlinux 0xf080991b power_supply_set_battery_charged -EXPORT_SYMBOL_GPL vmlinux 0xf08b372c dax_copy_from_iter -EXPORT_SYMBOL_GPL vmlinux 0xf0910075 sfp_bus_del_upstream -EXPORT_SYMBOL_GPL vmlinux 0xf0a0db3a devm_hwmon_device_register_with_groups -EXPORT_SYMBOL_GPL vmlinux 0xf0a22986 devres_for_each_res -EXPORT_SYMBOL_GPL vmlinux 0xf0a77688 posix_clock_unregister -EXPORT_SYMBOL_GPL vmlinux 0xf0be6309 irq_gc_set_wake -EXPORT_SYMBOL_GPL vmlinux 0xf0beee45 sysfs_remove_file_ns -EXPORT_SYMBOL_GPL vmlinux 0xf0c02be1 gpiochip_remove_pin_ranges -EXPORT_SYMBOL_GPL vmlinux 0xf0efba1f dev_pm_put_subsys_data -EXPORT_SYMBOL_GPL vmlinux 0xf0f5b8bb usb_autopm_put_interface_async -EXPORT_SYMBOL_GPL vmlinux 0xf102aa8c ata_scsi_dma_need_drain -EXPORT_SYMBOL_GPL vmlinux 0xf1077c9c thermal_zone_device_update -EXPORT_SYMBOL_GPL vmlinux 0xf10cdf16 skcipher_walk_aead_decrypt -EXPORT_SYMBOL_GPL vmlinux 0xf1146cf9 tcp_rate_check_app_limited -EXPORT_SYMBOL_GPL vmlinux 0xf12180fd imx_1443x_dram_pll -EXPORT_SYMBOL_GPL vmlinux 0xf128685e iomap_seek_data -EXPORT_SYMBOL_GPL vmlinux 0xf12c3bd6 sdio_disable_func -EXPORT_SYMBOL_GPL vmlinux 0xf132a6a4 nvdimm_name -EXPORT_SYMBOL_GPL vmlinux 0xf1475ac4 fscrypt_ioctl_remove_key_all_users -EXPORT_SYMBOL_GPL vmlinux 0xf1492f4b pinctrl_enable -EXPORT_SYMBOL_GPL vmlinux 0xf14e294c inet6_hash -EXPORT_SYMBOL_GPL vmlinux 0xf14e9625 rhashtable_walk_peek -EXPORT_SYMBOL_GPL vmlinux 0xf153d0ae debugfs_create_regset32 -EXPORT_SYMBOL_GPL vmlinux 0xf158e91e dm_table_set_type -EXPORT_SYMBOL_GPL vmlinux 0xf15b900c reset_controller_register -EXPORT_SYMBOL_GPL vmlinux 0xf16694ff skb_tstamp_tx -EXPORT_SYMBOL_GPL vmlinux 0xf16e029b xdp_convert_zc_to_xdp_frame -EXPORT_SYMBOL_GPL vmlinux 0xf17f1a52 pci_epc_get_msi -EXPORT_SYMBOL_GPL vmlinux 0xf184d189 kernel_power_off -EXPORT_SYMBOL_GPL vmlinux 0xf19d5dcb clk_register_divider_table -EXPORT_SYMBOL_GPL vmlinux 0xf1a30b94 devm_spi_mem_dirmap_create -EXPORT_SYMBOL_GPL vmlinux 0xf1b0f146 i2c_adapter_depth -EXPORT_SYMBOL_GPL vmlinux 0xf1b1432d of_get_named_gpio_flags -EXPORT_SYMBOL_GPL vmlinux 0xf1c7e8b4 __iomap_dio_rw -EXPORT_SYMBOL_GPL vmlinux 0xf1cfd6c3 gpiod_set_array_value -EXPORT_SYMBOL_GPL vmlinux 0xf1e44592 sdio_enable_func -EXPORT_SYMBOL_GPL vmlinux 0xf2002d3a crypto_alloc_base -EXPORT_SYMBOL_GPL vmlinux 0xf21e1f9b disable_percpu_irq -EXPORT_SYMBOL_GPL vmlinux 0xf22017f3 xhci_shutdown -EXPORT_SYMBOL_GPL vmlinux 0xf2253e58 devm_led_trigger_register -EXPORT_SYMBOL_GPL vmlinux 0xf2328da1 unix_peer_get -EXPORT_SYMBOL_GPL vmlinux 0xf23de224 add_page_wait_queue -EXPORT_SYMBOL_GPL vmlinux 0xf23ffdfe debugfs_create_atomic_t -EXPORT_SYMBOL_GPL vmlinux 0xf241e46f topology_set_thermal_pressure -EXPORT_SYMBOL_GPL vmlinux 0xf247376e cpufreq_dbs_governor_exit -EXPORT_SYMBOL_GPL vmlinux 0xf2475838 phy_driver_is_genphy_10g -EXPORT_SYMBOL_GPL vmlinux 0xf2616206 blk_mark_disk_dead -EXPORT_SYMBOL_GPL vmlinux 0xf2688949 balloon_page_list_enqueue -EXPORT_SYMBOL_GPL vmlinux 0xf27312e9 cros_ec_check_features -EXPORT_SYMBOL_GPL vmlinux 0xf27bf4cd tracing_cond_snapshot_data -EXPORT_SYMBOL_GPL vmlinux 0xf27d0a7b gnttab_grant_foreign_access_ref -EXPORT_SYMBOL_GPL vmlinux 0xf28560d2 cpci_hp_register_bus -EXPORT_SYMBOL_GPL vmlinux 0xf28aac31 wakeup_source_unregister -EXPORT_SYMBOL_GPL vmlinux 0xf2967796 ring_buffer_record_on -EXPORT_SYMBOL_GPL vmlinux 0xf29c80dc fuse_file_poll -EXPORT_SYMBOL_GPL vmlinux 0xf2a7067a raw_seq_next -EXPORT_SYMBOL_GPL vmlinux 0xf2a7caa0 device_get_named_child_node -EXPORT_SYMBOL_GPL vmlinux 0xf2b33cb7 memory_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0xf2bf4fd3 usb_free_urb -EXPORT_SYMBOL_GPL vmlinux 0xf2c1f48c sysfs_update_groups -EXPORT_SYMBOL_GPL vmlinux 0xf2f8753d sata_link_debounce -EXPORT_SYMBOL_GPL vmlinux 0xf2fb61bd vprintk_default -EXPORT_SYMBOL_GPL vmlinux 0xf30a5502 cpufreq_enable_boost_support -EXPORT_SYMBOL_GPL vmlinux 0xf311e156 key_being_used_for -EXPORT_SYMBOL_GPL vmlinux 0xf3148bb4 devm_of_led_get -EXPORT_SYMBOL_GPL vmlinux 0xf31632e0 ezx_pcap_read -EXPORT_SYMBOL_GPL vmlinux 0xf3199384 __pm_runtime_idle -EXPORT_SYMBOL_GPL vmlinux 0xf31b3fd1 workqueue_set_max_active -EXPORT_SYMBOL_GPL vmlinux 0xf324d696 of_clk_hw_register -EXPORT_SYMBOL_GPL vmlinux 0xf3258a51 usb_hcd_platform_shutdown -EXPORT_SYMBOL_GPL vmlinux 0xf32bdc5d unregister_xenstore_notifier -EXPORT_SYMBOL_GPL vmlinux 0xf331236f btree_geo32 -EXPORT_SYMBOL_GPL vmlinux 0xf341e994 disk_uevent -EXPORT_SYMBOL_GPL vmlinux 0xf34534fe tcp_reno_undo_cwnd -EXPORT_SYMBOL_GPL vmlinux 0xf3454948 devm_release_action -EXPORT_SYMBOL_GPL vmlinux 0xf352023f memory_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0xf356299e iommu_uapi_cache_invalidate -EXPORT_SYMBOL_GPL vmlinux 0xf35730ac device_get_next_child_node -EXPORT_SYMBOL_GPL vmlinux 0xf3698d5c devm_nvmem_device_get -EXPORT_SYMBOL_GPL vmlinux 0xf3797506 mpi_ec_deinit -EXPORT_SYMBOL_GPL vmlinux 0xf37d9c6f platform_get_irq -EXPORT_SYMBOL_GPL vmlinux 0xf3808cb1 get_state_synchronize_rcu -EXPORT_SYMBOL_GPL vmlinux 0xf386bbb4 housekeeping_cpumask -EXPORT_SYMBOL_GPL vmlinux 0xf393cddf __clk_hw_register_fixed_rate -EXPORT_SYMBOL_GPL vmlinux 0xf399b2ed pinconf_generic_parse_dt_config -EXPORT_SYMBOL_GPL vmlinux 0xf39e27c1 rio_enable_rx_tx_port -EXPORT_SYMBOL_GPL vmlinux 0xf3aa42b0 iommu_sva_free_pasid -EXPORT_SYMBOL_GPL vmlinux 0xf3b451ca kdb_poll_funcs -EXPORT_SYMBOL_GPL vmlinux 0xf3bbc4d4 ahci_pmp_retry_srst_ops -EXPORT_SYMBOL_GPL vmlinux 0xf3cdb851 skcipher_walk_complete -EXPORT_SYMBOL_GPL vmlinux 0xf3e66a97 radix_tree_preloads -EXPORT_SYMBOL_GPL vmlinux 0xf3e7a810 mtk_pinconf_drive_set -EXPORT_SYMBOL_GPL vmlinux 0xf3ee385a cpufreq_cooling_register -EXPORT_SYMBOL_GPL vmlinux 0xf40d612b component_add_typed -EXPORT_SYMBOL_GPL vmlinux 0xf40ff3e5 clk_regmap_mux_ops -EXPORT_SYMBOL_GPL vmlinux 0xf4202bed pinmux_generic_get_function_name -EXPORT_SYMBOL_GPL vmlinux 0xf434b5da bio_clone_blkg_association -EXPORT_SYMBOL_GPL vmlinux 0xf44d04df fbcon_modechange_possible -EXPORT_SYMBOL_GPL vmlinux 0xf4689d50 linkmode_set_pause -EXPORT_SYMBOL_GPL vmlinux 0xf47654df irq_check_status_bit -EXPORT_SYMBOL_GPL vmlinux 0xf477aec6 usb_alloc_streams -EXPORT_SYMBOL_GPL vmlinux 0xf47ead96 da903x_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0xf482adb0 regulator_is_equal -EXPORT_SYMBOL_GPL vmlinux 0xf48876e5 xdp_return_frame -EXPORT_SYMBOL_GPL vmlinux 0xf4a00349 __tracepoint_block_rq_insert -EXPORT_SYMBOL_GPL vmlinux 0xf4a06cde of_fdt_unflatten_tree -EXPORT_SYMBOL_GPL vmlinux 0xf4acfb41 do_unregister_con_driver -EXPORT_SYMBOL_GPL vmlinux 0xf4af35c2 rcu_gp_is_normal -EXPORT_SYMBOL_GPL vmlinux 0xf4bc88b9 ata_sas_queuecmd -EXPORT_SYMBOL_GPL vmlinux 0xf4c02a29 badblocks_clear -EXPORT_SYMBOL_GPL vmlinux 0xf4cd9f8f reset_control_bulk_release -EXPORT_SYMBOL_GPL vmlinux 0xf4cdbb7e of_clk_add_hw_provider -EXPORT_SYMBOL_GPL vmlinux 0xf4d8aeb7 regulator_register_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0xf4db84d7 of_usb_get_dr_mode_by_phy -EXPORT_SYMBOL_GPL vmlinux 0xf4e10062 i2c_add_numbered_adapter -EXPORT_SYMBOL_GPL vmlinux 0xf4e26971 tps80031_ext_power_req_config -EXPORT_SYMBOL_GPL vmlinux 0xf5029e65 pinctrl_find_gpio_range_from_pin_nolock -EXPORT_SYMBOL_GPL vmlinux 0xf522a44a dma_get_slave_channel -EXPORT_SYMBOL_GPL vmlinux 0xf532b28f ata_sas_sync_probe -EXPORT_SYMBOL_GPL vmlinux 0xf53bf590 xhci_gen_setup -EXPORT_SYMBOL_GPL vmlinux 0xf54b563e iommu_domain_alloc -EXPORT_SYMBOL_GPL vmlinux 0xf54bd49b lcm -EXPORT_SYMBOL_GPL vmlinux 0xf553318d cpuidle_pause_and_lock -EXPORT_SYMBOL_GPL vmlinux 0xf556ad9d atomic_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0xf562e103 crypto_unregister_scomp -EXPORT_SYMBOL_GPL vmlinux 0xf56eb278 devm_tegra_core_dev_init_opp_table -EXPORT_SYMBOL_GPL vmlinux 0xf5708cc0 dev_pm_opp_put_regulators -EXPORT_SYMBOL_GPL vmlinux 0xf578c4d3 rdev_clear_badblocks -EXPORT_SYMBOL_GPL vmlinux 0xf57b23e3 devm_regulator_register -EXPORT_SYMBOL_GPL vmlinux 0xf57f38c6 virtqueue_disable_cb -EXPORT_SYMBOL_GPL vmlinux 0xf58b2add inet_ctl_sock_create -EXPORT_SYMBOL_GPL vmlinux 0xf5a041f1 nfs_ssc_client_tbl -EXPORT_SYMBOL_GPL vmlinux 0xf5a3ba99 linear_range_values_in_range -EXPORT_SYMBOL_GPL vmlinux 0xf5a691cd invalidate_bh_lrus -EXPORT_SYMBOL_GPL vmlinux 0xf5a9b5ff bd_link_disk_holder -EXPORT_SYMBOL_GPL vmlinux 0xf5b6905d tps6586x_writes -EXPORT_SYMBOL_GPL vmlinux 0xf5be348e pm_clk_create -EXPORT_SYMBOL_GPL vmlinux 0xf5d2ccca usb_disable_lpm -EXPORT_SYMBOL_GPL vmlinux 0xf5f370e0 async_schedule_node -EXPORT_SYMBOL_GPL vmlinux 0xf5f4b586 clk_mux_val_to_index -EXPORT_SYMBOL_GPL vmlinux 0xf5fd71c2 dev_pm_opp_set_supported_hw -EXPORT_SYMBOL_GPL vmlinux 0xf613562c pfn_to_online_page -EXPORT_SYMBOL_GPL vmlinux 0xf619986d of_pwm_get -EXPORT_SYMBOL_GPL vmlinux 0xf61c580a power_supply_register -EXPORT_SYMBOL_GPL vmlinux 0xf61c6b74 hv_do_hypercall -EXPORT_SYMBOL_GPL vmlinux 0xf62a28cf thermal_zone_device_disable -EXPORT_SYMBOL_GPL vmlinux 0xf63beab4 devm_led_classdev_unregister -EXPORT_SYMBOL_GPL vmlinux 0xf6460a06 sata_lpm_ignore_phy_events -EXPORT_SYMBOL_GPL vmlinux 0xf648f7ec vchan_find_desc -EXPORT_SYMBOL_GPL vmlinux 0xf64df8d5 proc_dou8vec_minmax -EXPORT_SYMBOL_GPL vmlinux 0xf663ee2f pcap_adc_sync -EXPORT_SYMBOL_GPL vmlinux 0xf672e7db dma_buf_attach -EXPORT_SYMBOL_GPL vmlinux 0xf676154b altr_sysmgr_regmap_lookup_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0xf676946d __traceiter_pelt_dl_tp -EXPORT_SYMBOL_GPL vmlinux 0xf69baabc n_tty_inherit_ops -EXPORT_SYMBOL_GPL vmlinux 0xf69f616c tegra_bpmp_transfer_atomic -EXPORT_SYMBOL_GPL vmlinux 0xf6a04d97 hvc_instantiate -EXPORT_SYMBOL_GPL vmlinux 0xf6a07c25 ip6_datagram_connect -EXPORT_SYMBOL_GPL vmlinux 0xf6a28554 region_intersects -EXPORT_SYMBOL_GPL vmlinux 0xf6ab873b devm_platform_ioremap_resource_byname -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 0xf6ceb6a8 vp_modern_set_queue_size -EXPORT_SYMBOL_GPL vmlinux 0xf6dead3a tick_nohz_dep_set_task -EXPORT_SYMBOL_GPL vmlinux 0xf6e874f5 ata_timing_merge -EXPORT_SYMBOL_GPL vmlinux 0xf6f16c56 rcu_barrier_tasks -EXPORT_SYMBOL_GPL vmlinux 0xf6f21dde shmem_zero_setup -EXPORT_SYMBOL_GPL vmlinux 0xf70e4a4d preempt_schedule_notrace -EXPORT_SYMBOL_GPL vmlinux 0xf712c230 tty_release_struct -EXPORT_SYMBOL_GPL vmlinux 0xf72a65ea tty_get_char_size -EXPORT_SYMBOL_GPL vmlinux 0xf72d69ed perf_get_aux -EXPORT_SYMBOL_GPL vmlinux 0xf730fb4a qcom_smem_state_update_bits -EXPORT_SYMBOL_GPL vmlinux 0xf73b40e5 fsl_mc_bus_dprc_type -EXPORT_SYMBOL_GPL vmlinux 0xf73e03f6 device_create_bin_file -EXPORT_SYMBOL_GPL vmlinux 0xf7455c16 input_event_to_user -EXPORT_SYMBOL_GPL vmlinux 0xf748cee1 dm_noflush_suspending -EXPORT_SYMBOL_GPL vmlinux 0xf749debc md5_zero_message_hash -EXPORT_SYMBOL_GPL vmlinux 0xf74bb274 mod_delayed_work_on -EXPORT_SYMBOL_GPL vmlinux 0xf74bdf57 usb_phy_roothub_resume -EXPORT_SYMBOL_GPL vmlinux 0xf74e7c93 jump_label_rate_limit -EXPORT_SYMBOL_GPL vmlinux 0xf761f0f5 vga_default_device -EXPORT_SYMBOL_GPL vmlinux 0xf764d5e4 pci_find_next_ext_capability -EXPORT_SYMBOL_GPL vmlinux 0xf770927f pinconf_generic_dt_free_map -EXPORT_SYMBOL_GPL vmlinux 0xf772241e netif_carrier_event -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 0xf795543f inode_dax -EXPORT_SYMBOL_GPL vmlinux 0xf79b2cde irq_chip_request_resources_parent -EXPORT_SYMBOL_GPL vmlinux 0xf7a49c6a report_iommu_fault -EXPORT_SYMBOL_GPL vmlinux 0xf7a66a54 mbox_chan_txdone -EXPORT_SYMBOL_GPL vmlinux 0xf7aa6df1 phy_pm_runtime_get -EXPORT_SYMBOL_GPL vmlinux 0xf7ad28d3 udp_bpf_update_proto -EXPORT_SYMBOL_GPL vmlinux 0xf7b5777c devm_pci_epc_destroy -EXPORT_SYMBOL_GPL vmlinux 0xf7b93d5d devm_gpiod_get_array_optional -EXPORT_SYMBOL_GPL vmlinux 0xf7bc95b0 devlink_fmsg_pair_nest_start -EXPORT_SYMBOL_GPL vmlinux 0xf7c3f1e1 nvdimm_flush -EXPORT_SYMBOL_GPL vmlinux 0xf7c3f273 xen_resume_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0xf7d961d8 clk_hw_unregister_composite -EXPORT_SYMBOL_GPL vmlinux 0xf7df82c2 spi_mem_driver_register_with_owner -EXPORT_SYMBOL_GPL vmlinux 0xf7e3d457 inet6_sock_destruct -EXPORT_SYMBOL_GPL vmlinux 0xf80a13f2 inet6_csk_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0xf8220aa4 devm_ti_sci_get_handle -EXPORT_SYMBOL_GPL vmlinux 0xf8284f47 nf_route -EXPORT_SYMBOL_GPL vmlinux 0xf82f3657 work_on_cpu -EXPORT_SYMBOL_GPL vmlinux 0xf831840d xenbus_dev_error -EXPORT_SYMBOL_GPL vmlinux 0xf8333ba4 virtqueue_get_vring_size -EXPORT_SYMBOL_GPL vmlinux 0xf83acd1b attribute_container_register -EXPORT_SYMBOL_GPL vmlinux 0xf83d8661 bpf_event_output -EXPORT_SYMBOL_GPL vmlinux 0xf84337cf regulator_list_voltage_pickable_linear_range -EXPORT_SYMBOL_GPL vmlinux 0xf8457c23 rockchip_pcie_parse_dt -EXPORT_SYMBOL_GPL vmlinux 0xf849d2f0 blkg_rwstat_recursive_sum -EXPORT_SYMBOL_GPL vmlinux 0xf852d746 __tracepoint_tcp_send_reset -EXPORT_SYMBOL_GPL vmlinux 0xf856df2d ata_scsi_port_error_handler -EXPORT_SYMBOL_GPL vmlinux 0xf8634815 acpi_subsys_runtime_suspend -EXPORT_SYMBOL_GPL vmlinux 0xf86b7109 rhashtable_init -EXPORT_SYMBOL_GPL vmlinux 0xf86d2411 dma_buf_dynamic_attach -EXPORT_SYMBOL_GPL vmlinux 0xf88aedad fib6_check_nexthop -EXPORT_SYMBOL_GPL vmlinux 0xf88be2d9 xdp_do_redirect -EXPORT_SYMBOL_GPL vmlinux 0xf8a0d92d sdev_evt_send_simple -EXPORT_SYMBOL_GPL vmlinux 0xf8a79cf1 gpiochip_generic_config -EXPORT_SYMBOL_GPL vmlinux 0xf8c67cae usb_check_int_endpoints -EXPORT_SYMBOL_GPL vmlinux 0xf8c85c19 iommu_map_sg -EXPORT_SYMBOL_GPL vmlinux 0xf8e2a0b3 virtqueue_kick -EXPORT_SYMBOL_GPL vmlinux 0xf8f3a0fb ata_ratelimit -EXPORT_SYMBOL_GPL vmlinux 0xf8ff6fd8 dm_report_zones -EXPORT_SYMBOL_GPL vmlinux 0xf900c77d zynqmp_pm_clock_disable -EXPORT_SYMBOL_GPL vmlinux 0xf904c5b5 tpm_put_ops -EXPORT_SYMBOL_GPL vmlinux 0xf9093f5b __tracepoint_cpu_frequency -EXPORT_SYMBOL_GPL vmlinux 0xf90d1413 pm_clk_runtime_suspend -EXPORT_SYMBOL_GPL vmlinux 0xf918ab21 pci_user_write_config_word -EXPORT_SYMBOL_GPL vmlinux 0xf91ff456 bpfilter_ops -EXPORT_SYMBOL_GPL vmlinux 0xf938ccb4 blk_mq_rdma_map_queues -EXPORT_SYMBOL_GPL vmlinux 0xf93d1178 fib_rules_lookup -EXPORT_SYMBOL_GPL vmlinux 0xf93d1370 rdev_get_regmap -EXPORT_SYMBOL_GPL vmlinux 0xf945d8d3 pci_num_vf -EXPORT_SYMBOL_GPL vmlinux 0xf94df47e lochnagar_update_config -EXPORT_SYMBOL_GPL vmlinux 0xf95220fd regmap_raw_write -EXPORT_SYMBOL_GPL vmlinux 0xf95322f4 kthread_parkme -EXPORT_SYMBOL_GPL vmlinux 0xf955e9c5 bprintf -EXPORT_SYMBOL_GPL vmlinux 0xf9640fac divider_determine_rate -EXPORT_SYMBOL_GPL vmlinux 0xf9663251 mtk_pinconf_bias_set_rev1 -EXPORT_SYMBOL_GPL vmlinux 0xf967422b HYPERVISOR_xen_version -EXPORT_SYMBOL_GPL vmlinux 0xf96aa9ac of_dma_controller_register -EXPORT_SYMBOL_GPL vmlinux 0xf97a4b7c tegra_bpmp_mrq_return -EXPORT_SYMBOL_GPL vmlinux 0xf996cd06 sysfs_merge_group -EXPORT_SYMBOL_GPL vmlinux 0xf9a054b5 __round_jiffies -EXPORT_SYMBOL_GPL vmlinux 0xf9a3c5dc zynqmp_pm_load_pdi -EXPORT_SYMBOL_GPL vmlinux 0xf9aa6f73 __traceiter_rpm_idle -EXPORT_SYMBOL_GPL vmlinux 0xf9adb7e3 debugfs_create_x8 -EXPORT_SYMBOL_GPL vmlinux 0xf9b34a0b iopf_queue_free -EXPORT_SYMBOL_GPL vmlinux 0xf9b761dd i2c_new_dummy_device -EXPORT_SYMBOL_GPL vmlinux 0xf9bfdf94 msg_zerocopy_put_abort -EXPORT_SYMBOL_GPL vmlinux 0xf9c18bfb of_nvmem_device_get -EXPORT_SYMBOL_GPL vmlinux 0xf9c6578c mtk_build_eint -EXPORT_SYMBOL_GPL vmlinux 0xf9ca64eb synth_event_add_val -EXPORT_SYMBOL_GPL vmlinux 0xf9cf806f ahci_platform_disable_clks -EXPORT_SYMBOL_GPL vmlinux 0xf9d3612d extcon_unregister_notifier_all -EXPORT_SYMBOL_GPL vmlinux 0xf9d36db8 tty_ldisc_flush -EXPORT_SYMBOL_GPL vmlinux 0xf9d4f347 pci_set_pcie_reset_state -EXPORT_SYMBOL_GPL vmlinux 0xf9ebe553 pci_bridge_emul_init -EXPORT_SYMBOL_GPL vmlinux 0xf9f0ecff __traceiter_sched_util_est_cfs_tp -EXPORT_SYMBOL_GPL vmlinux 0xfa015b6f iommu_group_add_device -EXPORT_SYMBOL_GPL vmlinux 0xfa0ce48f usb_hcd_end_port_resume -EXPORT_SYMBOL_GPL vmlinux 0xfa1eb910 unregister_syscore_ops -EXPORT_SYMBOL_GPL vmlinux 0xfa349688 aer_recover_queue -EXPORT_SYMBOL_GPL vmlinux 0xfa377994 cpu_latency_qos_update_request -EXPORT_SYMBOL_GPL vmlinux 0xfa3ce3e7 devm_thermal_of_cooling_device_register -EXPORT_SYMBOL_GPL vmlinux 0xfa3e5208 scsi_target_block -EXPORT_SYMBOL_GPL vmlinux 0xfa3ff5f1 pm_runtime_force_suspend -EXPORT_SYMBOL_GPL vmlinux 0xfa49f5a7 xas_load -EXPORT_SYMBOL_GPL vmlinux 0xfa501632 devm_usb_get_phy_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0xfa666974 queue_work_node -EXPORT_SYMBOL_GPL vmlinux 0xfa690589 netdev_cmd_to_name -EXPORT_SYMBOL_GPL vmlinux 0xfa6fbec2 irq_domain_get_irq_data -EXPORT_SYMBOL_GPL vmlinux 0xfa89073e irq_chip_set_affinity_parent -EXPORT_SYMBOL_GPL vmlinux 0xfa8ebf34 sysfs_unbreak_active_protection -EXPORT_SYMBOL_GPL vmlinux 0xfa9a6dd1 xenbus_map_ring_valloc -EXPORT_SYMBOL_GPL vmlinux 0xfaa9523f acpi_dev_get_resources -EXPORT_SYMBOL_GPL vmlinux 0xfab30dc0 mdio_bus_exit -EXPORT_SYMBOL_GPL vmlinux 0xfab45096 alarm_cancel -EXPORT_SYMBOL_GPL vmlinux 0xfab53ed9 pinctrl_gpio_can_use_line -EXPORT_SYMBOL_GPL vmlinux 0xfab89172 efivar_entry_add -EXPORT_SYMBOL_GPL vmlinux 0xfab93567 sock_prot_inuse_get -EXPORT_SYMBOL_GPL vmlinux 0xfac146bd pci_create_root_bus -EXPORT_SYMBOL_GPL vmlinux 0xfad28451 pci_user_read_config_dword -EXPORT_SYMBOL_GPL vmlinux 0xfad381a0 dw_pcie_own_conf_map_bus -EXPORT_SYMBOL_GPL vmlinux 0xfad9c827 kill_dax -EXPORT_SYMBOL_GPL vmlinux 0xfae1e571 of_irq_get_byname -EXPORT_SYMBOL_GPL vmlinux 0xfb16b2c9 __alloc_pages_bulk -EXPORT_SYMBOL_GPL vmlinux 0xfb32b30f ring_buffer_read_prepare_sync -EXPORT_SYMBOL_GPL vmlinux 0xfb35ef97 mmc_regulator_get_supply -EXPORT_SYMBOL_GPL vmlinux 0xfb4514ea ata_dev_next -EXPORT_SYMBOL_GPL vmlinux 0xfb45d3b3 crypto_hash_walk_first -EXPORT_SYMBOL_GPL vmlinux 0xfb49a73d devm_ti_sci_get_of_resource -EXPORT_SYMBOL_GPL vmlinux 0xfb633120 badblocks_show -EXPORT_SYMBOL_GPL vmlinux 0xfb6cfd3c extcon_get_edev_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0xfb6eedf9 power_group_name -EXPORT_SYMBOL_GPL vmlinux 0xfb770d41 paste_selection -EXPORT_SYMBOL_GPL vmlinux 0xfb7af082 acpi_subsys_restore_early -EXPORT_SYMBOL_GPL vmlinux 0xfb7e4073 devm_nvdimm_memremap -EXPORT_SYMBOL_GPL vmlinux 0xfb863865 dev_pm_opp_register_set_opp_helper -EXPORT_SYMBOL_GPL vmlinux 0xfb881b62 kill_pid_usb_asyncio -EXPORT_SYMBOL_GPL vmlinux 0xfb88e450 __kthread_should_park -EXPORT_SYMBOL_GPL vmlinux 0xfb8918e7 irq_chip_retrigger_hierarchy -EXPORT_SYMBOL_GPL vmlinux 0xfb9762d4 ahci_dev_classify -EXPORT_SYMBOL_GPL vmlinux 0xfba64d77 crypto_aead_setauthsize -EXPORT_SYMBOL_GPL vmlinux 0xfbbd41ca no_action -EXPORT_SYMBOL_GPL vmlinux 0xfbc54c70 perf_event_refresh -EXPORT_SYMBOL_GPL vmlinux 0xfbcb4d21 pm_schedule_suspend -EXPORT_SYMBOL_GPL vmlinux 0xfbd332ef mmc_get_ext_csd -EXPORT_SYMBOL_GPL vmlinux 0xfbd94732 dprc_set_obj_irq -EXPORT_SYMBOL_GPL vmlinux 0xfbdc4644 devlink_is_reload_failed -EXPORT_SYMBOL_GPL vmlinux 0xfbe4fb7e usb_autopm_put_interface_no_suspend -EXPORT_SYMBOL_GPL vmlinux 0xfbe58a57 of_fwnode_ops -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 0xfc11015d extcon_sync -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 0xfc37d4a8 ata_sas_scsi_ioctl -EXPORT_SYMBOL_GPL vmlinux 0xfc3b4246 acpi_bus_update_power -EXPORT_SYMBOL_GPL vmlinux 0xfc789ca4 cpuidle_unregister -EXPORT_SYMBOL_GPL vmlinux 0xfc797c22 pci_common_swizzle -EXPORT_SYMBOL_GPL vmlinux 0xfc9477b5 zynqmp_pm_set_pll_frac_data -EXPORT_SYMBOL_GPL vmlinux 0xfc98bd95 devm_devfreq_event_add_edev -EXPORT_SYMBOL_GPL vmlinux 0xfc9a4dcc amba_ahb_device_add_res -EXPORT_SYMBOL_GPL vmlinux 0xfcbe985f serial8250_do_set_mctrl -EXPORT_SYMBOL_GPL vmlinux 0xfcbfec70 add_memory_driver_managed -EXPORT_SYMBOL_GPL vmlinux 0xfcc1edd3 memory_block_size_bytes -EXPORT_SYMBOL_GPL vmlinux 0xfccb1239 dequeue_signal -EXPORT_SYMBOL_GPL vmlinux 0xfcf9ef73 hw_protection_shutdown -EXPORT_SYMBOL_GPL vmlinux 0xfd031d27 iomap_is_partially_uptodate -EXPORT_SYMBOL_GPL vmlinux 0xfd068326 register_kretprobes -EXPORT_SYMBOL_GPL vmlinux 0xfd15d1ed em_dev_unregister_perf_domain -EXPORT_SYMBOL_GPL vmlinux 0xfd164ecc follow_pte -EXPORT_SYMBOL_GPL vmlinux 0xfd195774 k3_udma_glue_disable_tx_chn -EXPORT_SYMBOL_GPL vmlinux 0xfd2be3d4 device_move -EXPORT_SYMBOL_GPL vmlinux 0xfd38af55 gpiod_get_index -EXPORT_SYMBOL_GPL vmlinux 0xfd39aa89 class_for_each_device -EXPORT_SYMBOL_GPL vmlinux 0xfd3ccfbc tc3589x_reg_read -EXPORT_SYMBOL_GPL vmlinux 0xfd3ce8e5 edac_pci_handle_pe -EXPORT_SYMBOL_GPL vmlinux 0xfd3dabb9 crypto_register_aeads -EXPORT_SYMBOL_GPL vmlinux 0xfd547dd3 pm_genpd_init -EXPORT_SYMBOL_GPL vmlinux 0xfd54a762 mtk_pinconf_bias_disable_get_rev1 -EXPORT_SYMBOL_GPL vmlinux 0xfd7243c7 erst_disable -EXPORT_SYMBOL_GPL vmlinux 0xfd868f01 dpcon_close -EXPORT_SYMBOL_GPL vmlinux 0xfd911c9c ksm_madvise -EXPORT_SYMBOL_GPL vmlinux 0xfd926daa __traceiter_detach_device_from_domain -EXPORT_SYMBOL_GPL vmlinux 0xfd93fa8c hisi_reset_init -EXPORT_SYMBOL_GPL vmlinux 0xfd97674b devlink_param_value_changed -EXPORT_SYMBOL_GPL vmlinux 0xfd9fca61 ata_bmdma_start -EXPORT_SYMBOL_GPL vmlinux 0xfda15bd0 mtk_mutex_get -EXPORT_SYMBOL_GPL vmlinux 0xfdbd7a17 crypto_get_attr_type -EXPORT_SYMBOL_GPL vmlinux 0xfdc0214f mtk_eint_do_resume -EXPORT_SYMBOL_GPL vmlinux 0xfdc68764 tpm_get_random -EXPORT_SYMBOL_GPL vmlinux 0xfddd5425 of_prop_next_string -EXPORT_SYMBOL_GPL vmlinux 0xfde9357d regulator_desc_list_voltage_linear_range -EXPORT_SYMBOL_GPL vmlinux 0xfdea02f1 usb_remove_hcd -EXPORT_SYMBOL_GPL vmlinux 0xfdeae90c usb_hcd_pci_shutdown -EXPORT_SYMBOL_GPL vmlinux 0xfdec60c1 crypto_unregister_rng -EXPORT_SYMBOL_GPL vmlinux 0xfdeea8d4 sdio_writesb -EXPORT_SYMBOL_GPL vmlinux 0xfdf11232 devres_remove -EXPORT_SYMBOL_GPL vmlinux 0xfdf3b906 rtnl_put_cacheinfo -EXPORT_SYMBOL_GPL vmlinux 0xfe0329aa clk_fixed_factor_ops -EXPORT_SYMBOL_GPL vmlinux 0xfe0e7cd3 apei_exec_post_unmap_gars -EXPORT_SYMBOL_GPL vmlinux 0xfe117601 devm_pm_opp_set_supported_hw -EXPORT_SYMBOL_GPL vmlinux 0xfe1a7a7b mpi_point_release -EXPORT_SYMBOL_GPL vmlinux 0xfe1c2106 xfrm_audit_state_delete -EXPORT_SYMBOL_GPL vmlinux 0xfe2863ed phy_set_media -EXPORT_SYMBOL_GPL vmlinux 0xfe31dc04 pinctrl_dev_get_drvdata -EXPORT_SYMBOL_GPL vmlinux 0xfe369e2e inet6_sk_rebuild_header -EXPORT_SYMBOL_GPL vmlinux 0xfe43b623 regulator_disable_regmap -EXPORT_SYMBOL_GPL vmlinux 0xfe476039 ktime_get_resolution_ns -EXPORT_SYMBOL_GPL vmlinux 0xfe57db15 blocking_notifier_call_chain_robust -EXPORT_SYMBOL_GPL vmlinux 0xfe7fecbd skb_append_pagefrags -EXPORT_SYMBOL_GPL vmlinux 0xfe81cf0f rt_mutex_unlock -EXPORT_SYMBOL_GPL vmlinux 0xfe8aeccd devm_usb_get_phy_by_node -EXPORT_SYMBOL_GPL vmlinux 0xfe8cdb84 ring_buffer_alloc_read_page -EXPORT_SYMBOL_GPL vmlinux 0xfe8e7d9b percpu_up_write -EXPORT_SYMBOL_GPL vmlinux 0xfe990052 gpio_free -EXPORT_SYMBOL_GPL vmlinux 0xfe9a620a of_address_to_resource -EXPORT_SYMBOL_GPL vmlinux 0xfea0d971 btree_init_mempool -EXPORT_SYMBOL_GPL vmlinux 0xfea7d21c adp5520_write -EXPORT_SYMBOL_GPL vmlinux 0xfeaf040a sdio_set_block_size -EXPORT_SYMBOL_GPL vmlinux 0xfec3bf84 icst_clk_setup -EXPORT_SYMBOL_GPL vmlinux 0xfed11ed1 usb_mon_deregister -EXPORT_SYMBOL_GPL vmlinux 0xfed5c2d5 bpf_prog_free -EXPORT_SYMBOL_GPL vmlinux 0xfeda7840 regulator_get_voltage_rdev -EXPORT_SYMBOL_GPL vmlinux 0xfede9222 __tracepoint_suspend_resume -EXPORT_SYMBOL_GPL vmlinux 0xfedfbcf4 of_led_get -EXPORT_SYMBOL_GPL vmlinux 0xfee721c6 extcon_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0xfeeecd05 apei_read -EXPORT_SYMBOL_GPL vmlinux 0xfef02c31 crypto_unregister_algs -EXPORT_SYMBOL_GPL vmlinux 0xff0521fc devlink_rate_leaf_create -EXPORT_SYMBOL_GPL vmlinux 0xff05fa13 vring_interrupt -EXPORT_SYMBOL_GPL vmlinux 0xff0e28b6 fib_rules_unregister -EXPORT_SYMBOL_GPL vmlinux 0xff1666f3 reset_control_bulk_assert -EXPORT_SYMBOL_GPL vmlinux 0xff19dfb4 gpiod_get_raw_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0xff21a562 spi_bus_lock -EXPORT_SYMBOL_GPL vmlinux 0xff291ecf clk_unregister_divider -EXPORT_SYMBOL_GPL vmlinux 0xff2d1457 mbox_request_channel -EXPORT_SYMBOL_GPL vmlinux 0xff3cb15c nfnl_ct_hook -EXPORT_SYMBOL_GPL vmlinux 0xff42c374 usb_role_switch_get_role -EXPORT_SYMBOL_GPL vmlinux 0xff4b0be6 skb_scrub_packet -EXPORT_SYMBOL_GPL vmlinux 0xff55c706 kgdb_unregister_io_module -EXPORT_SYMBOL_GPL vmlinux 0xff76b82a kernfs_get -EXPORT_SYMBOL_GPL vmlinux 0xff7e33bf mpi_sub_ui -EXPORT_SYMBOL_GPL vmlinux 0xff81487d gpiod_remove_lookup_table -EXPORT_SYMBOL_GPL vmlinux 0xff867cc1 bpf_offload_dev_netdev_register -EXPORT_SYMBOL_GPL vmlinux 0xff9e23d1 hugetlb_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0xffae8e8b nsecs_to_jiffies -EXPORT_SYMBOL_GPL vmlinux 0xffbcb5a4 __pneigh_lookup -EXPORT_SYMBOL_GPL vmlinux 0xffbe3b03 ata_pci_bmdma_clear_simplex -EXPORT_SYMBOL_GPL vmlinux 0xffc0483c spi_get_device_id -EXPORT_SYMBOL_GPL vmlinux 0xffc0fe2c ata_bmdma_dumb_qc_prep -EXPORT_SYMBOL_GPL vmlinux 0xffdab6ff of_pci_dma_range_parser_init -EXPORT_SYMBOL_GPL vmlinux 0xffddcf71 fwnode_property_read_u8_array -EXPORT_SYMBOL_GPL vmlinux 0xffecee3a devlink_traps_register -EXPORT_SYMBOL_GPL vmlinux 0xffeec2ff genpd_dev_pm_attach -FIRMWARE_LOADER_PRIVATE EXPORT_SYMBOL_GPL 0xd3ae7756 fw_fallback_config vmlinux -IIO_ADISLIB EXPORT_SYMBOL 0x56750e87 adis_debugfs_reg_access drivers/iio/imu/adis_lib -IIO_ADISLIB EXPORT_SYMBOL 0xba4d4557 __adis_enable_irq drivers/iio/imu/adis_lib -IIO_ADISLIB EXPORT_SYMBOL_GPL 0x1ed3fc10 devm_adis_probe_trigger drivers/iio/imu/adis_lib -IIO_ADISLIB EXPORT_SYMBOL_GPL 0x27ca4ec8 adis_init drivers/iio/imu/adis_lib -IIO_ADISLIB EXPORT_SYMBOL_GPL 0x28635c44 adis_single_conversion drivers/iio/imu/adis_lib -IIO_ADISLIB EXPORT_SYMBOL_GPL 0x295b8cc4 adis_update_scan_mode drivers/iio/imu/adis_lib -IIO_ADISLIB EXPORT_SYMBOL_GPL 0x677f5dd1 __adis_write_reg drivers/iio/imu/adis_lib -IIO_ADISLIB EXPORT_SYMBOL_GPL 0xaccf881d devm_adis_setup_buffer_and_trigger drivers/iio/imu/adis_lib -IIO_ADISLIB EXPORT_SYMBOL_GPL 0xaf617448 __adis_update_bits_base drivers/iio/imu/adis_lib -IIO_ADISLIB EXPORT_SYMBOL_GPL 0xbab18c86 __adis_read_reg drivers/iio/imu/adis_lib -IIO_ADISLIB EXPORT_SYMBOL_GPL 0xec974502 __adis_initial_startup drivers/iio/imu/adis_lib -IIO_ADISLIB EXPORT_SYMBOL_GPL 0xfd5c3a34 __adis_check_status drivers/iio/imu/adis_lib -IIO_ADIS_LIB EXPORT_SYMBOL_GPL 0xa1564589 __adis_reset drivers/iio/imu/adis_lib -IIO_HID EXPORT_SYMBOL 0x35e9f662 hid_sensor_parse_common_attributes drivers/iio/common/hid-sensors/hid-sensor-iio-common -IIO_HID EXPORT_SYMBOL 0x3cf72ad6 hid_sensor_pm_ops drivers/iio/common/hid-sensors/hid-sensor-trigger -IIO_HID EXPORT_SYMBOL 0x4ae650db hid_sensor_read_raw_hyst_rel_value drivers/iio/common/hid-sensors/hid-sensor-iio-common -IIO_HID EXPORT_SYMBOL 0x57824b39 hid_sensor_write_samp_freq_value drivers/iio/common/hid-sensors/hid-sensor-iio-common -IIO_HID EXPORT_SYMBOL 0x7c208f8a 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 0x8bcbdbea hid_sensor_setup_trigger drivers/iio/common/hid-sensors/hid-sensor-trigger -IIO_HID EXPORT_SYMBOL 0x8c1769de hid_sensor_read_raw_hyst_value drivers/iio/common/hid-sensors/hid-sensor-iio-common -IIO_HID EXPORT_SYMBOL 0x8fa94187 hid_sensor_remove_trigger drivers/iio/common/hid-sensors/hid-sensor-trigger -IIO_HID EXPORT_SYMBOL 0x98698533 hid_sensor_write_raw_hyst_rel_value drivers/iio/common/hid-sensors/hid-sensor-iio-common -IIO_HID EXPORT_SYMBOL 0xbe225a1b hid_sensor_convert_timestamp drivers/iio/common/hid-sensors/hid-sensor-iio-common -IIO_HID EXPORT_SYMBOL 0xc5e8081f hid_sensor_power_state drivers/iio/common/hid-sensors/hid-sensor-trigger -IIO_HID EXPORT_SYMBOL 0xcbb8eda2 hid_sensor_read_samp_freq_value drivers/iio/common/hid-sensors/hid-sensor-iio-common -IIO_HID_ATTRIBUTES EXPORT_SYMBOL 0x074f4f55 hid_sensor_set_report_latency drivers/iio/common/hid-sensors/hid-sensor-iio-common -IIO_HID_ATTRIBUTES EXPORT_SYMBOL 0xaf0eb989 hid_sensor_read_poll_value drivers/iio/common/hid-sensors/hid-sensor-iio-common -IIO_HID_ATTRIBUTES EXPORT_SYMBOL 0xf09eec18 hid_sensor_batch_mode_supported drivers/iio/common/hid-sensors/hid-sensor-iio-common -IIO_HID_ATTRIBUTES EXPORT_SYMBOL 0xff17047d hid_sensor_get_report_latency drivers/iio/common/hid-sensors/hid-sensor-iio-common -LTC2497 EXPORT_SYMBOL 0x132acf31 ltc2497core_probe drivers/iio/adc/ltc2497-core -LTC2497 EXPORT_SYMBOL 0x8215c65a ltc2497core_remove drivers/iio/adc/ltc2497-core -MCB EXPORT_SYMBOL_GPL 0x2a0a8bf6 mcb_alloc_bus drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0x2e4c449b mcb_release_bus drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0x3a95e0c9 mcb_bus_add_devices drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0x516c85e2 mcb_get_irq drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0x9d48878f mcb_device_register drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0x9f521a27 mcb_get_resource drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0xab77a122 mcb_alloc_dev drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0xabc1e113 mcb_free_dev drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0xac34b5d9 mcb_bus_get drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0xb5721c21 mcb_request_mem drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0xba669e09 mcb_unregister_driver drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0xc8e40cf6 mcb_bus_put drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0xcc1613a4 chameleon_parse_cells drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0xd6c2411b __mcb_register_driver drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0xeb2c8905 mcb_release_mem drivers/mcb/mcb -NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x2517f481 nvme_ctrl_from_file drivers/nvme/host/nvme-core -NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x47e2a2fa nvme_command_effects drivers/nvme/host/nvme-core -NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x4a6cdc4d nvme_find_get_ns drivers/nvme/host/nvme-core -NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0xa2b8be2a nvme_put_ns drivers/nvme/host/nvme-core -NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0xc0622268 nvme_execute_passthru_rq drivers/nvme/host/nvme-core -PMBUS EXPORT_SYMBOL_GPL 0x1958ca1e pmbus_check_byte_register drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0x24d76da2 pmbus_set_page drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0x2bd9a9b8 pmbus_read_byte_data drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0x3f42b314 pmbus_update_byte_data drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0x4ed22f3d pmbus_write_word_data drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0x6a8baf29 pmbus_check_word_register drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0x748a93dc pmbus_clear_cache drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0x7a21fa44 pmbus_write_byte drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0x855ede96 pmbus_write_byte_data drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0x85a4b690 pmbus_get_fan_rate_device drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0x93983b61 pmbus_get_debugfs_dir drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0x9fb6c93b pmbus_get_driver_info drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0xc1ad1138 pmbus_update_fan drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0xdaf49b6b pmbus_clear_faults drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0xdd5cc8e3 pmbus_do_probe drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0xdee79735 pmbus_set_update drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0xe671a6c4 pmbus_regulator_ops drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0xe98072bd pmbus_get_fan_rate_cached drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0xeedd724f pmbus_read_word_data drivers/hwmon/pmbus/pmbus_core -SND_HDA_SCODEC_CS35L41 EXPORT_SYMBOL_GPL 0xaaa75295 cs35l41_hda_probe sound/pci/hda/snd-hda-scodec-cs35l41 -SND_HDA_SCODEC_CS35L41 EXPORT_SYMBOL_GPL 0xf2e4338d 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 0xd4dd559e sof_xtensa_arch_ops sound/soc/sof/xtensa/snd-sof-xtensa-dsp -SOUNDWIRE_INTEL_INIT EXPORT_SYMBOL 0x23ac1c15 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 0x82355ed8 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 0xb6e2c7e8 sdw_intel_exit drivers/soundwire/soundwire-intel -SOUNDWIRE_INTEL_INIT EXPORT_SYMBOL 0xc083b6b5 sdw_intel_probe drivers/soundwire/soundwire-intel -USB_STORAGE EXPORT_SYMBOL_GPL 0x06ef40af usb_stor_bulk_transfer_sg drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x0b433261 usb_stor_adjust_quirks drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x0da4fceb usb_stor_bulk_transfer_buf drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x11aa33d9 usb_stor_access_xfer_buf drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x12b27245 usb_stor_resume drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x1bc3edc2 usb_stor_sense_invalidCDB drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x4fbea824 usb_stor_bulk_srb drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x58290b86 usb_stor_probe1 drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x641ebcbf usb_stor_control_msg drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x6511bd1e usb_stor_Bulk_reset drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x6d6ed1f1 usb_stor_suspend drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x7880c2c4 usb_stor_clear_halt drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x7fd595cb usb_stor_post_reset drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x9894f85f usb_stor_reset_resume drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0xa3f7d83d usb_stor_disconnect drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0xbf3537d3 usb_stor_probe2 drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0xc2addbe0 usb_stor_pre_reset drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0xcb507256 usb_stor_ctrl_transfer drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0xd92ce718 usb_stor_transparent_scsi_command drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0xe16b1bc0 usb_stor_Bulk_transport drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0xe48635cc usb_stor_CB_transport drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0xe774d208 usb_stor_host_template_init drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0xf4e2a13a usb_stor_CB_reset drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0xf8c2ef78 fill_inquiry_response drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0xfcf1e0df usb_stor_set_xfer_buf drivers/usb/storage/usb-storage reverted: --- linux-nvidia-tegra-5.15.0/debian.nvidia-tegra/abi/arm64/nvidia-tegra-rt.compiler +++ linux-nvidia-tegra-5.15.0.orig/debian.nvidia-tegra/abi/arm64/nvidia-tegra-rt.compiler @@ -1 +0,0 @@ -GCC: (Ubuntu 11.4.0-1ubuntu1~22.04) 11.4.0 reverted: --- linux-nvidia-tegra-5.15.0/debian.nvidia-tegra/abi/arm64/nvidia-tegra-rt.modules +++ linux-nvidia-tegra-5.15.0.orig/debian.nvidia-tegra/abi/arm64/nvidia-tegra-rt.modules @@ -1,6870 +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 -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 -cec-gpio -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 -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-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-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 -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 -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 -irqbypass -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 -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 -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-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-audio-graph-card2 -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-asrc -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-adx -snd-soc-tegra210-ahub -snd-soc-tegra210-amx -snd-soc-tegra210-dmic -snd-soc-tegra210-i2s -snd-soc-tegra210-mixer -snd-soc-tegra210-mvc -snd-soc-tegra210-ope -snd-soc-tegra210-sfc -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 -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 -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_accessory -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_vsock_virtio_transport -vmw_vsock_virtio_transport_common -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 -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 -zynqmp-aes-gcm -zynqmp-dpsub -zynqmp-fpga -zynqmp_dma reverted: --- linux-nvidia-tegra-5.15.0/debian.nvidia-tegra/abi/arm64/nvidia-tegra-rt.modules.builtin +++ linux-nvidia-tegra-5.15.0.orig/debian.nvidia-tegra/abi/arm64/nvidia-tegra-rt.modules.builtin @@ -1,480 +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_misc -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-mux -i2c-mux-gpio -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 -jbd2 -jitterentropy_rng -kgdboc -kpp -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 -ntfs -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-epl -tegra-hsierrrptinj -tegra-mc -tegra-tcu -tegra124-cpufreq -tegra186-emc -tegra186-gpc-dma -tegra194-cbb -tegra20-apb-dma -tegra20-cpufreq -tegra234-cbb -thermal -ti-msgmgr -ti_sci -timer-tegra186 -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-nvidia-tegra-5.15.0/debian.nvidia-tegra/abi/arm64/nvidia-tegra-rt.retpoline +++ linux-nvidia-tegra-5.15.0.orig/debian.nvidia-tegra/abi/arm64/nvidia-tegra-rt.retpoline @@ -1 +0,0 @@ -# RETPOLINE NOT ENABLED reverted: --- linux-nvidia-tegra-5.15.0/debian.nvidia-tegra/abi/arm64/nvidia-tegra.compiler +++ linux-nvidia-tegra-5.15.0.orig/debian.nvidia-tegra/abi/arm64/nvidia-tegra.compiler @@ -1 +0,0 @@ -GCC: (Ubuntu 11.4.0-1ubuntu1~22.04) 11.4.0 reverted: --- linux-nvidia-tegra-5.15.0/debian.nvidia-tegra/abi/arm64/nvidia-tegra.modules +++ linux-nvidia-tegra-5.15.0.orig/debian.nvidia-tegra/abi/arm64/nvidia-tegra.modules @@ -1,6869 +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 -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 -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-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-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 -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 -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 -irqbypass -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 -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 -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-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-audio-graph-card2 -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-asrc -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-adx -snd-soc-tegra210-ahub -snd-soc-tegra210-amx -snd-soc-tegra210-dmic -snd-soc-tegra210-i2s -snd-soc-tegra210-mixer -snd-soc-tegra210-mvc -snd-soc-tegra210-ope -snd-soc-tegra210-sfc -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 -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 -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_accessory -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_vsock_virtio_transport -vmw_vsock_virtio_transport_common -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 -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 -zynqmp-aes-gcm -zynqmp-dpsub -zynqmp-fpga -zynqmp_dma reverted: --- linux-nvidia-tegra-5.15.0/debian.nvidia-tegra/abi/arm64/nvidia-tegra.modules.builtin +++ linux-nvidia-tegra-5.15.0.orig/debian.nvidia-tegra/abi/arm64/nvidia-tegra.modules.builtin @@ -1,480 +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_misc -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-mux -i2c-mux-gpio -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 -jbd2 -jitterentropy_rng -kgdboc -kpp -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 -ntfs -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-epl -tegra-hsierrrptinj -tegra-mc -tegra-tcu -tegra124-cpufreq -tegra186-emc -tegra186-gpc-dma -tegra194-cbb -tegra20-apb-dma -tegra20-cpufreq -tegra234-cbb -thermal -ti-msgmgr -ti_sci -timer-tegra186 -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-nvidia-tegra-5.15.0/debian.nvidia-tegra/abi/arm64/nvidia-tegra.retpoline +++ linux-nvidia-tegra-5.15.0.orig/debian.nvidia-tegra/abi/arm64/nvidia-tegra.retpoline @@ -1 +0,0 @@ -# RETPOLINE NOT ENABLED reverted: --- linux-nvidia-tegra-5.15.0/debian.nvidia-tegra/abi/fwinfo +++ linux-nvidia-tegra-5.15.0.orig/debian.nvidia-tegra/abi/fwinfo @@ -1,1863 +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/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/brcmfmac4335-sdio.bin -firmware: brcm/brcmfmac43430a0-sdio.bin -firmware: brcm/brcmfmac43430b0-sdio.bin -firmware: brcm/brcmfmac43456-sdio.bin -firmware: brcm/brcmfmac4350-pcie.bin -firmware: brcm/brcmfmac4350c2-pcie.bin -firmware: brcm/brcmfmac43569.bin -firmware: brcm/brcmfmac4358-pcie.bin -firmware: brcm/brcmfmac4359-pcie.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/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: cypress/cyfmac43012-sdio.bin -firmware: cypress/cyfmac43340-sdio.bin -firmware: cypress/cyfmac43362-sdio.bin -firmware: cypress/cyfmac4339-sdio.bin -firmware: cypress/cyfmac43430-sdio.bin -firmware: cypress/cyfmac43455-sdio.bin -firmware: cypress/cyfmac4354-sdio.bin -firmware: cypress/cyfmac4356-pcie.bin -firmware: cypress/cyfmac4356-sdio.bin -firmware: cypress/cyfmac43570-pcie.bin -firmware: cypress/cyfmac4359-sdio.bin -firmware: cypress/cyfmac4373-sdio.bin -firmware: cypress/cyfmac4373.bin -firmware: cypress/cyfmac54591-pcie.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: idt82p33xxx.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: 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/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/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: 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: 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: 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: 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: 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-nvidia-tegra-5.15.0/debian.nvidia-tegra/abi/version +++ linux-nvidia-tegra-5.15.0.orig/debian.nvidia-tegra/abi/version @@ -1 +0,0 @@ -5.15.0-1021.21 diff -u linux-nvidia-tegra-5.15.0/debian.nvidia-tegra/changelog linux-nvidia-tegra-5.15.0/debian.nvidia-tegra/changelog --- linux-nvidia-tegra-5.15.0/debian.nvidia-tegra/changelog +++ linux-nvidia-tegra-5.15.0/debian.nvidia-tegra/changelog @@ -1,3 +1,2139 @@ +linux-nvidia-tegra (5.15.0-1025.25) jammy; urgency=medium + + * jammy/linux-nvidia-tegra: 5.15.0-1025.25 -proposed tracker (LP: #2063258) + + * apply NVIDIA patches April 6-16, 2024 (LP: #2061900) + - NVIDIA: SAUCE: phy: xusb: Disable USB2 tracking for T234 + - NVIDIA: SAUCE: enable handling of macronix block protection + - PCI: dwc: Restore MSI Receiver mask during resume + + * apply NVIDIA patches Mar 22 - April 5, 2024 (LP: #2060337) + - NVIDIA: SAUCE: arm64: configs: enable hidraw + - NVIDIA: SAUCE: PCI: tegra194: Fix probe path for Endpoint mode + - NVIDIA: SAUCE: arm64: defconfig: Enable DMATEST + - NVIDIA: SAUCE: arm64: configs: Enable CONFIG_CRYPTO_USER_API_* as module + - NVIDIA: SAUCE: soc/tegra: fuse: Update Tegra234 nvmem keepout list + - NVIDIA: SAUCE: soc/tegra: fuse: Remove security_mode fuse from keepout list + - [Config] Enable DMATEST + + -- Jacob Martin Tue, 23 Apr 2024 15:45:58 -0500 + +linux-nvidia-tegra (5.15.0-1024.24) jammy; urgency=medium + + * jammy/linux-nvidia-tegra: 5.15.0-1024.24 -proposed tracker (LP: #2061683) + + * Packaging resync (LP: #1786013) + - [Packaging] drop getabis data + + [ Ubuntu: 5.15.0-1061.69 ] + + * jammy/linux-realtime: 5.15.0-1061.69 -proposed tracker (LP: #2061497) + * jammy/linux: 5.15.0-105.115 -proposed tracker (LP: #2061372) + * Jammy update: v5.15.149 upstream stable release (LP: #2059014) // CIFS + stopped working/is unstable with kernel update to 5.15.0-102.112 + (LP: #2060780) + - smb3: Replace smb2pdu 1-element arrays with flex-arrays + + [ Ubuntu: 5.15.0-1059.67 ] + + * jammy/linux-realtime: 5.15.0-1059.67 -proposed tracker (LP: #2059663) + * Packaging resync (LP: #1786013) + - [Packaging]: realtime: drop getabis data + * jammy/linux: 5.15.0-103.113 -proposed tracker (LP: #2059683) + * Packaging resync (LP: #1786013) + - [Packaging] drop getabis data + * Remove getabis scripts (LP: #2059143) + - [Packaging] Remove getabis + * CVE-2023-24023 + - Bluetooth: Add more enc key size check + * CVE-2023-52600 + - jfs: fix uaf in jfs_evict_inode + * Jammy update: v5.15.149 upstream stable release (LP: #2059014) // + CVE-2023-52603 + - UBSAN: array-index-out-of-bounds in dtSplitRoot + * CVE-2024-26581 + - netfilter: nft_set_rbtree: skip end interval element from gc + + -- Jacob Martin Mon, 15 Apr 2024 15:35:14 -0500 + +linux-nvidia-tegra (5.15.0-1023.23) jammy; urgency=medium + + * jammy/linux-nvidia-tegra: 5.15.0-1023.23 -proposed tracker (LP: #2059811) + + * Packaging resync (LP: #1786013) + - [Packaging] drop ABI data + - [Packaging] debian.nvidia-tegra/dkms-versions -- update from kernel-versions + (main/2024.03.04) + + * linux: please move erofs.ko (CONFIG_EROFS for EROFS support) from linux- + modules-extra to linux-modules (LP: #2054809) + - [Packaging]: nvidia-tegra: Include erofs in linux-modules instead of linux- + modules-extra + + * linux: please move dmi-sysfs.ko (CONFIG_DMI_SYSFS for SMBIOS support) from + linux-modules-extra to linux-modules (LP: #2045561) + - [Packaging]: nvidia-tegra: Move dmi-sysfs.ko into linux-modules + + * apply nvidia-tegra patches 2024 Mar 9-20 (LP: #2058550) + - drm: Call drm_atomic_helper_shutdown() at shutdown time for misc drivers + - NVIDIA: SAUCE: drm: Call drm_dev_unregister() at shutdown for AST + - NVIDIA: SAUCE: arch: arm64: Update CONFIG_LSM in defconfig + - NVIDIA: SAUCE: pinctrl: tegra: Add config property GPIO mode + + * apply nvidia-tegra patches 2024 Mar 8 (LP: #2056594) + - NVIDIA: SAUCE: phy: tegra194-p2u: Fix device-tree backward compatibility + + * apply nvidia-tegra patches 2024 Mar 1-7 (LP: #2056486) + - docs: tegra194-hte.rst: don't include gpiolib.c twice + - tegra194-hte.rst: fix reference to its binding + - gpiolib: cdev: fix null pointer dereference in linereq_free() + - gpiolib: cdev: simplify linereq_free + - gpiolib: cdev: simplify parameter in call to hte_edge_setup + - gpiolib: cdev: replace if-else chains with switches + - gpiolib: cdev: simplify line event identification + - gpiolib: cdev: consolidate edge detector configuration flags + - gpiolib: cdev: compile out HTE unless CONFIG_HTE selected + - gpiolib: cdev: Fix typo in kernel doc for struct line + - MAINTAINERS: Add HTE/timestamp subsystem details + - dt-bindings: timestamp: Add Tegra234 support + - dt-bindings: timestamp: Deprecate nvidia,slices property + - arm64: tegra: Add Tegra234 GTE nodes + - hte: Re-phrase tegra API document + - hte: Add Tegra234 provider + - hte: Deprecate nvidia,slices property + - hte: handle nvidia,gpio-controller property + - gpio: tegra186: Add Tegra234 hte support + - hte: tegra: fix 'struct of_device_id' build error + - hte: tegra-194: Fix off by one in tegra_hte_map_to_line_id() + - hte: Use device_match_of_node() + - hte: tegra-194: Use proper includes + - NVIDIA: SAUCE: hte: modify gpio controller match function + - NVIDIA: SAUCE: WAR: tee: optee: Fix race condition + - kbuild: Modify default INSTALL_MOD_DIR from extra to updates + + * apply nvidia-tegra patches 2024 Feb 6-29 (LP: #2055468) + - NVIDIA: SAUCE: mmc: host: program SPARE0 register field even if supplies are + not populated + - NVIDIA: SAUCE: arm64: configs: enable joystick driver + - NVIDIA: SAUCE: arm64: configs: Enable aQuantia driver in rel-36. + - NVIDIA: SAUCE: spi: Remove compatible string for T234 + - NVIDIA: SAUCE: arm64: configs: enable Android configs + + [ Ubuntu: 5.15.0-1058.66 ] + + * jammy/linux-realtime: 5.15.0-1058.66 -proposed tracker (LP: #2055612) + * Packaging resync (LP: #1786013) + - [Packaging] drop ABI data + - debian.realtime/dkms-versions -- update from kernel-versions + (main/2024.03.04) + * linux: please move erofs.ko (CONFIG_EROFS for EROFS support) from linux- + modules-extra to linux-modules (LP: #2054809) + - [Packaging]: realtime: Include erofs in linux-modules instead of linux- + modules-extra + * linux: please move dmi-sysfs.ko (CONFIG_DMI_SYSFS for SMBIOS support) from + linux-modules-extra to linux-modules (LP: #2045561) + - [Packaging]: realtime: Move dmi-sysfs.ko into linux-modules + * 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-1057.64 ] + + * jammy/linux-realtime: 5.15.0-1057.64 -proposed tracker (LP: #2056006) + * jammy/linux: 5.15.0-101.111 -proposed tracker (LP: #2056026) + * Packaging resync (LP: #1786013) + - [Packaging] update annotations scripts + - debian/dkms-versions -- update from kernel-versions (main/s2024.02.05) + * CVE-2024-24855 + - scsi: lpfc: Fix a possible data race in lpfc_unregister_fcf_rescan() + * CVE-2024-1086 + - netfilter: nf_tables: reject QUEUE/DROP verdict parameters + * CVE-2024-1085 + - netfilter: nf_tables: check if catch-all set element is active in next + generation + * CVE-2023-32247 + - ksmbd: destroy expired sessions + * CVE-2023-23000 + - phy: tegra: xusb: Fix return value of tegra_xusb_find_port_node function + + [ Ubuntu: 5.15.0-1056.63 ] + + * jammy/linux-realtime: 5.15.0-1056.63 -proposed tracker (LP: #2052069) + * 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 + + -- Jacob Martin Fri, 29 Mar 2024 15:57:13 -0500 + linux-nvidia-tegra (5.15.0-1022.22) jammy; urgency=medium * jammy/linux-nvidia-tegra: 5.15.0-1022.22 -proposed tracker (LP: #2053284) diff -u linux-nvidia-tegra-5.15.0/debian.nvidia-tegra/config/annotations linux-nvidia-tegra-5.15.0/debian.nvidia-tegra/config/annotations --- linux-nvidia-tegra-5.15.0/debian.nvidia-tegra/config/annotations +++ linux-nvidia-tegra-5.15.0/debian.nvidia-tegra/config/annotations @@ -9,6 +9,9 @@ CONFIG_ACCESSIBILITY policy<{'arm64': 'n'}> CONFIG_ACCESSIBILITY note<'LP: #1967702'> +CONFIG_DMATEST policy<{'arm64': 'm'}> +CONFIG_DMATEST note<'LP: #2060337'> + CONFIG_LATENCYTOP policy<{'arm64': 'y'}> CONFIG_LATENCYTOP note<'https://lists.ubuntu.com/archives/kernel-team/2014-July/045006.html, LP#1655986'> diff -u linux-nvidia-tegra-5.15.0/debian.nvidia-tegra/control.d/nvidia-tegra.inclusion-list linux-nvidia-tegra-5.15.0/debian.nvidia-tegra/control.d/nvidia-tegra.inclusion-list --- linux-nvidia-tegra-5.15.0/debian.nvidia-tegra/control.d/nvidia-tegra.inclusion-list +++ linux-nvidia-tegra-5.15.0/debian.nvidia-tegra/control.d/nvidia-tegra.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 @@ -231,6 +232,7 @@ fs/dlm/dlm.ko fs/ecryptfs/* fs/efivarfs/* +fs/erofs/* fs/exofs/libore.ko fs/ext4/* fs/fat/* reverted: --- linux-nvidia-tegra-5.15.0/debian.nvidia-tegra/etc/getabis +++ linux-nvidia-tegra-5.15.0.orig/debian.nvidia-tegra/etc/getabis @@ -1,25 +0,0 @@ -getabis_ppa="${HOME}/.getabis.jammy-nvidia-tegra" -getabis_source="$(dpkg-parsechangelog -l$DEBIAN/changelog -SSource)" - -if ! [ -e "${getabis_ppa}" ] ; then - cat <&2 -Error: No private PPA URL(s) found, unable to fetch ABI information. - -This kernel is built and delivered using private PPA(s). You need to add the -PPA repo URL(s) (including the username and password) to the file -${getabis_ppa}. - -One URL per line, like: - -https://:@private-ppa.launchpad.net///ubuntu - -EOF - exit 1 -fi - -readarray -t repo_list < <(sed "s,\s*$,/pool/main/l/${getabis_source}," \ - "${getabis_ppa}") - -package_prefixes linux-buildinfo - -getall arm64 nvidia-tegra nvidia-tegra-rt diff -u linux-nvidia-tegra-5.15.0/debian.nvidia-tegra/reconstruct linux-nvidia-tegra-5.15.0/debian.nvidia-tegra/reconstruct --- linux-nvidia-tegra-5.15.0/debian.nvidia-tegra/reconstruct +++ linux-nvidia-tegra-5.15.0/debian.nvidia-tegra/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' @@ -19,7 +18,6 @@ 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 +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' @@ -52,8 +48,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/gpio/nvidia,tegra186-gpio.txt' @@ -100,6 +94,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-nvidia-tegra-5.15.0/debian.nvidia-tegra/tracking-bug linux-nvidia-tegra-5.15.0/debian.nvidia-tegra/tracking-bug --- linux-nvidia-tegra-5.15.0/debian.nvidia-tegra/tracking-bug +++ linux-nvidia-tegra-5.15.0/debian.nvidia-tegra/tracking-bug @@ -1 +1 @@ -2053284 d2024.02.07-1 +2063258 d2024.02.29-3 reverted: --- linux-nvidia-tegra-5.15.0/debian.realtime/abi/abiname +++ linux-nvidia-tegra-5.15.0.orig/debian.realtime/abi/abiname @@ -1 +0,0 @@ -1054 reverted: --- linux-nvidia-tegra-5.15.0/debian.realtime/abi/amd64/realtime +++ linux-nvidia-tegra-5.15.0.orig/debian.realtime/abi/amd64/realtime @@ -1,26357 +0,0 @@ -CRYPTO_INTERNAL EXPORT_SYMBOL_GPL 0x10e1f831 crypto_cipher_decrypt_one vmlinux -CRYPTO_INTERNAL EXPORT_SYMBOL_GPL 0x13988c1b crypto_cipher_encrypt_one vmlinux -CRYPTO_INTERNAL EXPORT_SYMBOL_GPL 0xd0723c95 crypto_cipher_setkey vmlinux -CXL EXPORT_SYMBOL_GPL 0x1a73a524 to_cxl_nvdimm_bridge drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x1b32e0bb __cxl_driver_register drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x2a6cc665 devm_cxl_add_memdev drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x37ebc4e3 cxl_driver_unregister drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x3a19f18c to_cxl_nvdimm drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x43028cb4 is_cxl_nvdimm drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x4f258b3e to_cxl_decoder drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x59944d7e cxl_map_device_regs drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x6d4f4a83 devm_cxl_add_decoder drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x751b1b1d cxl_bus_type drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x7835d134 cxl_add_dport drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x8592246c cxl_probe_device_regs drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x88f80d67 is_root_decoder drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x95176e0c cxl_map_component_regs drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xa7aca922 cxl_probe_component_regs drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xaf218041 devm_cxl_add_nvdimm_bridge drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xfd2ca260 devm_cxl_add_port drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xfdfd78c7 devm_cxl_add_nvdimm drivers/cxl/core/cxl_core -EXPORT_SYMBOL arch/x86/crypto/chacha-x86_64 0x220b49ab chacha_crypt_arch -EXPORT_SYMBOL arch/x86/crypto/chacha-x86_64 0xdc94f829 chacha_init_arch -EXPORT_SYMBOL arch/x86/crypto/chacha-x86_64 0xdd8ec6bd hchacha_block_arch -EXPORT_SYMBOL arch/x86/crypto/curve25519-x86_64 0x3c74a43e curve25519_base_arch -EXPORT_SYMBOL arch/x86/crypto/curve25519-x86_64 0xc832c670 curve25519_arch -EXPORT_SYMBOL arch/x86/crypto/poly1305-x86_64 0xd9ec23eb poly1305_update_arch -EXPORT_SYMBOL arch/x86/crypto/poly1305-x86_64 0xe1df0e1b poly1305_init_arch -EXPORT_SYMBOL arch/x86/crypto/poly1305-x86_64 0xfaeb41b2 poly1305_final_arch -EXPORT_SYMBOL arch/x86/kvm/kvm 0x4ddb2f99 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 0x06065610 crypto_nhpoly1305_final_helper -EXPORT_SYMBOL crypto/nhpoly1305 0x85567c63 crypto_nhpoly1305_setkey -EXPORT_SYMBOL crypto/nhpoly1305 0x9fa7b984 crypto_nhpoly1305_final -EXPORT_SYMBOL crypto/nhpoly1305 0xa49d9901 crypto_nhpoly1305_update -EXPORT_SYMBOL crypto/nhpoly1305 0xbe1ccbea crypto_nhpoly1305_init -EXPORT_SYMBOL crypto/nhpoly1305 0xecaecb1c crypto_nhpoly1305_update_helper -EXPORT_SYMBOL crypto/sha3_generic 0xafeb8256 crypto_sha3_final -EXPORT_SYMBOL crypto/sha3_generic 0xb2e73aef crypto_sha3_init -EXPORT_SYMBOL crypto/sha3_generic 0xf751148a crypto_sha3_update -EXPORT_SYMBOL crypto/sm2_generic 0x7eef2abd sm2_compute_z_digest -EXPORT_SYMBOL crypto/sm3_generic 0x69c1ce92 crypto_sm3_update -EXPORT_SYMBOL crypto/sm3_generic 0x95ebb6d4 crypto_sm3_finup -EXPORT_SYMBOL crypto/sm3_generic 0xd5229abb crypto_sm3_final -EXPORT_SYMBOL crypto/xor 0x5b6c00e6 xor_blocks -EXPORT_SYMBOL drivers/acpi/nfit/nfit 0x06848c60 to_nfit_uuid -EXPORT_SYMBOL drivers/acpi/video 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 0x90015ad2 acpi_video_get_levels -EXPORT_SYMBOL drivers/acpi/video 0xc881ba13 acpi_video_get_edid -EXPORT_SYMBOL drivers/acpi/video 0xe92ca535 acpi_video_set_dmi_backlight_type -EXPORT_SYMBOL drivers/atm/suni 0x3947b88b suni_init -EXPORT_SYMBOL drivers/atm/uPD98402 0x3986cb11 uPD98402_init -EXPORT_SYMBOL drivers/bcma/bcma 0x73765423 bcma_core_irq -EXPORT_SYMBOL drivers/bcma/bcma 0x82a1e5e1 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 0x4a980d61 pi_connect -EXPORT_SYMBOL drivers/block/paride/paride 0x545b5376 pi_init -EXPORT_SYMBOL drivers/block/paride/paride 0x5b989194 pi_disconnect -EXPORT_SYMBOL drivers/block/paride/paride 0x605c8b33 pi_write_regr -EXPORT_SYMBOL drivers/block/paride/paride 0x7c7c10b3 pi_schedule_claimed -EXPORT_SYMBOL drivers/block/paride/paride 0x7e4fe5b2 pi_do_claimed -EXPORT_SYMBOL drivers/block/paride/paride 0xa0ed1d5c pi_read_regr -EXPORT_SYMBOL drivers/block/paride/paride 0xb21ba07d pi_unregister_driver -EXPORT_SYMBOL drivers/block/paride/paride 0xcf1e6e1a pi_read_block -EXPORT_SYMBOL drivers/block/paride/paride 0xddd80227 paride_register -EXPORT_SYMBOL drivers/block/paride/paride 0xe3f09048 pi_release -EXPORT_SYMBOL drivers/block/paride/paride 0xec3f82e0 pi_write_block -EXPORT_SYMBOL drivers/block/paride/paride 0xfa0d1d5a paride_unregister -EXPORT_SYMBOL drivers/bluetooth/btbcm 0xa042ba64 btbcm_patchram -EXPORT_SYMBOL drivers/bluetooth/btrsi 0x2d1c1597 rsi_bt_ops -EXPORT_SYMBOL drivers/bus/mhi/host/mhi 0xabad52a6 mhi_sync_power_up -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x03bc993e ipmi_set_my_LUN -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x04697f79 ipmi_add_smi -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 0xb1f0c424 ipmi_get_smi_info -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xd43b09e4 ipmi_smi_watcher_register -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xd54a5050 ipmi_unregister_for_cmd -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xe0cab0b6 ipmi_smi_watcher_unregister -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xe4330a39 ipmi_unregister_smi -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xe4f4665b ipmi_validate_addr -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xec1c2a90 ipmi_get_my_address -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xf388b18b ipmi_destroy_user -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xf5531bea ipmi_poll_interface -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xfaaa4831 ipmi_set_my_address -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xfe0f2369 ipmi_get_maintenance_mode -EXPORT_SYMBOL drivers/char/nvram 0x3ef38dc9 arch_nvram_ops -EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x29fde0ed st33zp24_pm_suspend -EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x60740e5f st33zp24_remove -EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0xb2d48dbe st33zp24_probe -EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0xc43fa783 st33zp24_pm_resume -EXPORT_SYMBOL drivers/char/xillybus/xillybus_class 0x0099a702 xillybus_find_inode -EXPORT_SYMBOL drivers/char/xillybus/xillybus_class 0x5cbc8828 xillybus_cleanup_chrdev -EXPORT_SYMBOL drivers/char/xillybus/xillybus_class 0xb99b423f xillybus_init_chrdev -EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x25978d50 xillybus_isr -EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x50d2d2d0 xillybus_init_endpoint -EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x8cad55ef xillybus_endpoint_remove -EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x9d0fcd62 xillybus_endpoint_discovery -EXPORT_SYMBOL drivers/crypto/atmel-i2c 0x1a24bb7c atmel_i2c_probe -EXPORT_SYMBOL drivers/crypto/atmel-i2c 0x3c3801ba atmel_i2c_enqueue -EXPORT_SYMBOL drivers/crypto/atmel-i2c 0x708c1757 atmel_i2c_send_receive -EXPORT_SYMBOL drivers/crypto/atmel-i2c 0x80a11b1d atmel_i2c_init_read_cmd -EXPORT_SYMBOL drivers/crypto/atmel-i2c 0xc71ed50c atmel_i2c_init_genkey_cmd -EXPORT_SYMBOL drivers/crypto/atmel-i2c 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 0x09ad8d58 fw_core_handle_response -EXPORT_SYMBOL drivers/firewire/firewire-core 0x0bc6094c fw_core_remove_descriptor -EXPORT_SYMBOL drivers/firewire/firewire-core 0x1abd05f2 fw_iso_buffer_destroy -EXPORT_SYMBOL drivers/firewire/firewire-core 0x1b32cde7 fw_device_enable_phys_dma -EXPORT_SYMBOL drivers/firewire/firewire-core 0x1eec9dc9 fw_card_initialize -EXPORT_SYMBOL drivers/firewire/firewire-core 0x231e5c16 fw_iso_context_stop -EXPORT_SYMBOL drivers/firewire/firewire-core 0x26125fce fw_core_handle_bus_reset -EXPORT_SYMBOL drivers/firewire/firewire-core 0x2885fec5 fw_get_request_speed -EXPORT_SYMBOL drivers/firewire/firewire-core 0x34d35a53 fw_send_response -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 0x41ff3319 fw_run_transaction -EXPORT_SYMBOL drivers/firewire/firewire-core 0x4ee68a81 fw_schedule_bus_reset -EXPORT_SYMBOL drivers/firewire/firewire-core 0x5c80d24d fw_iso_context_queue -EXPORT_SYMBOL drivers/firewire/firewire-core 0x6dc50487 fw_csr_string -EXPORT_SYMBOL drivers/firewire/firewire-core 0x7608486c fw_iso_context_queue_flush -EXPORT_SYMBOL drivers/firewire/firewire-core 0x78748f86 fw_iso_buffer_init -EXPORT_SYMBOL drivers/firewire/firewire-core 0x859639ac fw_iso_context_create -EXPORT_SYMBOL drivers/firewire/firewire-core 0x86468d44 fw_rcode_string -EXPORT_SYMBOL drivers/firewire/firewire-core 0x8865760f fw_fill_response -EXPORT_SYMBOL drivers/firewire/firewire-core 0x898e517d fw_core_add_address_handler -EXPORT_SYMBOL drivers/firewire/firewire-core 0x9d276270 fw_bus_type -EXPORT_SYMBOL drivers/firewire/firewire-core 0xaa603d1a fw_iso_context_destroy -EXPORT_SYMBOL drivers/firewire/firewire-core 0xabc2e85b fw_core_remove_address_handler -EXPORT_SYMBOL drivers/firewire/firewire-core 0xaedf84ce fw_high_memory_region -EXPORT_SYMBOL drivers/firewire/firewire-core 0xc74871a9 fw_iso_context_start -EXPORT_SYMBOL drivers/firewire/firewire-core 0xd231d376 fw_iso_context_flush_completions -EXPORT_SYMBOL drivers/firewire/firewire-core 0xd9151d84 fw_send_request -EXPORT_SYMBOL drivers/firewire/firewire-core 0xe3fde125 fw_csr_iterator_next -EXPORT_SYMBOL drivers/firewire/firewire-core 0xe6862a4a fw_iso_resource_manage -EXPORT_SYMBOL drivers/firewire/firewire-core 0xe6a2b07a fw_core_handle_request -EXPORT_SYMBOL drivers/firewire/firewire-core 0xe80e5087 fw_csr_iterator_init -EXPORT_SYMBOL drivers/firewire/firewire-core 0xe9d18c03 fw_core_remove_card -EXPORT_SYMBOL drivers/firewire/firewire-core 0xf4ef5887 fw_cancel_transaction -EXPORT_SYMBOL drivers/firewire/firewire-core 0xfb17a279 fw_card_add -EXPORT_SYMBOL drivers/fpga/dfl 0x3deb9ae5 dfl_driver_unregister -EXPORT_SYMBOL drivers/fpga/dfl 0x71667a30 __dfl_driver_register -EXPORT_SYMBOL drivers/gpu/drm/drm 0x002a1fcf drm_framebuffer_plane_width -EXPORT_SYMBOL drivers/gpu/drm/drm 0x015e9139 drm_client_modeset_dpms -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0177520c drm_hdmi_vendor_infoframe_from_display_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0x017e341b drm_get_edid_switcheroo -EXPORT_SYMBOL drivers/gpu/drm/drm 0x01c65eb2 drm_modeset_backoff -EXPORT_SYMBOL drivers/gpu/drm/drm 0x02be55b7 drm_crtc_vblank_reset -EXPORT_SYMBOL drivers/gpu/drm/drm 0x03c63897 __drm_get_edid_firmware_path -EXPORT_SYMBOL drivers/gpu/drm/drm 0x03cc4f22 drm_property_create_range -EXPORT_SYMBOL drivers/gpu/drm/drm 0x051042aa __drm_atomic_helper_disable_plane -EXPORT_SYMBOL drivers/gpu/drm/drm 0x05680216 drm_gem_shmem_vmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0x057db7fd drm_bridge_chain_mode_valid -EXPORT_SYMBOL drivers/gpu/drm/drm 0x057e6556 drm_connector_attach_vrr_capable_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x05be5652 drm_plane_create_color_properties -EXPORT_SYMBOL drivers/gpu/drm/drm 0x06279cac drm_syncobj_create -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0637b79f drm_ioctl_permit -EXPORT_SYMBOL drivers/gpu/drm/drm 0x06a4b264 drm_property_create_bool -EXPORT_SYMBOL drivers/gpu/drm/drm 0x070b28aa drm_ht_remove_item -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0729fd49 drm_vma_offset_manager_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm 0x07a820cd drm_dev_has_vblank -EXPORT_SYMBOL drivers/gpu/drm/drm 0x090cc9e7 drm_gem_dma_resv_wait -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0979a3c8 drm_crtc_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x09f4a040 drm_connector_attach_hdr_output_metadata_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0a0c7a1d drm_bridge_chain_disable -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0a72f765 drm_clflush_virt_range -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0b101d25 drm_modeset_unlock_all -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0cc9189d drm_panel_remove -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0d9b4753 drm_mode_equal -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0de5bc09 drm_gem_shmem_print_info -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0eef228f drm_mode_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0f2ce142 drm_connector_list_iter_next -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0f67e5ae drm_mode_get_tile_group -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 0x0ff56c88 drm_object_property_get_value -EXPORT_SYMBOL drivers/gpu/drm/drm 0x101fb81a drm_property_create -EXPORT_SYMBOL drivers/gpu/drm/drm 0x107742a9 drm_get_subpixel_order_name -EXPORT_SYMBOL drivers/gpu/drm/drm 0x109459a5 drm_crtc_vblank_waitqueue -EXPORT_SYMBOL drivers/gpu/drm/drm 0x10f14a4b drm_gem_fence_array_add -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1282908e drm_edid_to_speaker_allocation -EXPORT_SYMBOL drivers/gpu/drm/drm 0x131935d6 drm_dev_register -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1321d061 drm_gem_prime_import -EXPORT_SYMBOL drivers/gpu/drm/drm 0x13371b74 drm_ioctl_kernel -EXPORT_SYMBOL drivers/gpu/drm/drm 0x137043ec drm_vma_offset_add -EXPORT_SYMBOL drivers/gpu/drm/drm 0x14b31b0e drm_hdmi_avi_infoframe_colorspace -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1632ceb6 drm_crtc_vblank_helper_get_vblank_timestamp -EXPORT_SYMBOL drivers/gpu/drm/drm 0x16bb5e6f drm_connector_list_update -EXPORT_SYMBOL drivers/gpu/drm/drm 0x176934f1 drm_event_reserve_init_locked -EXPORT_SYMBOL drivers/gpu/drm/drm 0x17c37790 drm_gem_lock_reservations -EXPORT_SYMBOL drivers/gpu/drm/drm 0x17df0bc2 __drmm_encoder_alloc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x18170734 drm_client_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0x18b4c3f4 drm_property_add_enum -EXPORT_SYMBOL drivers/gpu/drm/drm 0x190d98bd drm_is_current_master -EXPORT_SYMBOL drivers/gpu/drm/drm 0x191010bb drm_display_info_set_bus_formats -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1915532f drm_atomic_add_affected_planes -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1a411479 drm_syncobj_free -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1b7a4232 drm_property_blob_put -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1b8cbe92 drm_gem_shmem_vunmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1c0416cf drm_plane_create_zpos_immutable_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1c0477f6 drm_gem_dmabuf_vunmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1c4f3368 drm_atomic_bridge_chain_post_disable -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1c925d6e drm_atomic_bridge_chain_enable -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1ce03458 drm_read -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1e271de2 drm_panel_prepare -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1f601745 drm_atomic_set_mode_prop_for_crtc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1fa2f7f4 drm_dev_set_unique -EXPORT_SYMBOL drivers/gpu/drm/drm 0x20489245 drm_gem_shmem_purge -EXPORT_SYMBOL drivers/gpu/drm/drm 0x20e2554e drm_client_modeset_commit_locked -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2183c08c drm_mm_scan_add_block -EXPORT_SYMBOL drivers/gpu/drm/drm 0x22afc3e1 drm_atomic_set_mode_for_crtc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x23f654d8 drm_edid_to_sad -EXPORT_SYMBOL drivers/gpu/drm/drm 0x241c20b4 drm_syncobj_find -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2454c1b7 drm_atomic_get_new_bridge_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2468072c drm_gem_shmem_put_pages -EXPORT_SYMBOL drivers/gpu/drm/drm 0x24792e22 drm_connector_attach_dp_subconnector_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x24993e50 drm_edid_are_equal -EXPORT_SYMBOL drivers/gpu/drm/drm 0x24a474e3 drm_vblank_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x24bbb176 drm_connector_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x24c2b0d5 drm_mode_duplicate -EXPORT_SYMBOL drivers/gpu/drm/drm 0x24d124ac drm_mode_equal_no_clocks_no_stereo -EXPORT_SYMBOL drivers/gpu/drm/drm 0x24fd531a drm_mode_crtc_set_gamma_size -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2533aff1 drm_hdmi_avi_infoframe_bars -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2581ab64 drm_syncobj_add_point -EXPORT_SYMBOL drivers/gpu/drm/drm 0x25b95a26 drm_hdmi_infoframe_set_hdr_metadata -EXPORT_SYMBOL drivers/gpu/drm/drm 0x25da4a4b drm_property_create_enum -EXPORT_SYMBOL drivers/gpu/drm/drm 0x25daad93 __drm_mm_interval_first -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2619d1b4 drm_panel_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x26856046 drm_send_event -EXPORT_SYMBOL drivers/gpu/drm/drm 0x26cb9927 drm_object_attach_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x26dff4ec drm_plane_enable_fb_damage_clips -EXPORT_SYMBOL drivers/gpu/drm/drm 0x27300e6d drm_crtc_set_max_vblank_count -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 0x287a404f drm_gem_prime_mmap -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 0x2abe9a19 drm_gem_shmem_purge_locked -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2b7e3112 drm_connector_list_iter_begin -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2c9ba1d5 drm_atomic_get_connector_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2cc448d9 drm_mode_create_content_type_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2d50570f drm_rect_calc_hscale -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2df21747 drm_connector_list_iter_end -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2ed3c600 drm_mode_debug_printmodeline -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2ee4a790 drm_add_override_edid_modes -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2f2c53a5 drm_gem_shmem_pin -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2f9b15a6 drm_client_framebuffer_flush -EXPORT_SYMBOL drivers/gpu/drm/drm 0x306a940f drm_plane_force_disable -EXPORT_SYMBOL drivers/gpu/drm/drm 0x306cdbb2 drm_connector_attach_content_type_property -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 0x346f6f5f drm_framebuffer_unregister_private -EXPORT_SYMBOL drivers/gpu/drm/drm 0x36186d24 drm_crtc_send_vblank_event -EXPORT_SYMBOL drivers/gpu/drm/drm 0x36f26505 drm_display_mode_from_cea_vic -EXPORT_SYMBOL drivers/gpu/drm/drm 0x37c8ecff drm_syncobj_get_handle -EXPORT_SYMBOL drivers/gpu/drm/drm 0x39f07c76 drm_hdmi_avi_infoframe_quant_range -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3a3faadc drm_connector_attach_max_bpc_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3ab06b83 drm_master_internal_release -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 0x3b1b5be5 drm_mode_validate_driver -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3ba17eab drm_ht_insert_item -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3de7accb drm_atomic_set_fb_for_plane -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3e275ae1 drm_gem_handle_delete -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3e70b30b drm_warn_on_modeset_not_all_locked -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3e886f0c drm_i2c_encoder_detect -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3f405489 __drm_printfn_err -EXPORT_SYMBOL drivers/gpu/drm/drm 0x406a6378 drm_hdmi_avi_infoframe_content_type -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4076bbaa drm_mode_create_aspect_ratio_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4084ed3a drm_gem_vmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0x41cc11d3 drm_gem_prime_export -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4400a247 drm_mode_validate_ycbcr420 -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4403a9c3 drm_mode_get_hv_timing -EXPORT_SYMBOL drivers/gpu/drm/drm 0x440a652d drm_property_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm 0x44a2cadb drm_prime_sg_to_dma_addr_array -EXPORT_SYMBOL drivers/gpu/drm/drm 0x44fad501 drm_universal_plane_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4575a0ca drm_mode_set_crtcinfo -EXPORT_SYMBOL drivers/gpu/drm/drm 0x45c4b0da drm_crtc_vblank_helper_get_vblank_timestamp_internal -EXPORT_SYMBOL drivers/gpu/drm/drm 0x46d18810 drm_any_plane_has_format -EXPORT_SYMBOL drivers/gpu/drm/drm 0x472953b3 drm_panel_enable -EXPORT_SYMBOL drivers/gpu/drm/drm 0x47b01985 drm_gem_object_lookup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x47b50288 drm_crtc_vblank_put -EXPORT_SYMBOL drivers/gpu/drm/drm 0x47d771e8 drm_syncobj_replace_fence -EXPORT_SYMBOL drivers/gpu/drm/drm 0x48903341 drm_atomic_nonblocking_commit -EXPORT_SYMBOL drivers/gpu/drm/drm 0x48b13a66 drm_property_blob_get -EXPORT_SYMBOL drivers/gpu/drm/drm 0x48d8e395 drm_atomic_state_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x496cbc54 __drmm_add_action -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4977caf0 devm_aperture_acquire_from_firmware -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4a35d30d drm_mode_set_name -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4a73b4b0 drm_atomic_get_old_private_obj_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4a7d75b0 drm_memcpy_from_wc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4ae7eeb8 drm_mode_create_tile_group -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4b7ebf95 drm_mm_remove_node -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4b893159 drm_gem_mmap_obj -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4c008f25 drm_connector_set_vrr_capable_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4cab0d24 drm_connector_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4d2f3bc0 drm_get_format_info -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4d5b53ec drm_atomic_get_new_private_obj_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4e3ce66e drm_mode_put_tile_group -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4f18a150 __drm_debug -EXPORT_SYMBOL drivers/gpu/drm/drm 0x50674de7 drm_timeout_abs_to_jiffies -EXPORT_SYMBOL drivers/gpu/drm/drm 0x51091d26 drm_poll -EXPORT_SYMBOL drivers/gpu/drm/drm 0x512316e5 drm_atomic_add_affected_connectors -EXPORT_SYMBOL drivers/gpu/drm/drm 0x513072fe __drm_puts_seq_file -EXPORT_SYMBOL drivers/gpu/drm/drm 0x513a198f drm_debugfs_create_files -EXPORT_SYMBOL drivers/gpu/drm/drm 0x516a0afb drm_atomic_get_crtc_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0x51a2077f drm_atomic_set_crtc_for_plane -EXPORT_SYMBOL drivers/gpu/drm/drm 0x51bbf3a9 drm_mode_create_from_cmdline_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0x51d4353b drm_av_sync_delay -EXPORT_SYMBOL drivers/gpu/drm/drm 0x51ff1c40 drm_client_buffer_vmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0x520b118c drm_encoder_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x521ad6d0 drm_puts -EXPORT_SYMBOL drivers/gpu/drm/drm 0x52625840 drm_vma_offset_lookup_locked -EXPORT_SYMBOL drivers/gpu/drm/drm 0x52ac9274 drm_dev_unplug -EXPORT_SYMBOL drivers/gpu/drm/drm 0x53ba9dd9 drm_dev_get -EXPORT_SYMBOL drivers/gpu/drm/drm 0x54261414 drm_gem_create_mmap_offset_size -EXPORT_SYMBOL drivers/gpu/drm/drm 0x54563054 drm_plane_get_damage_clips -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5480b229 drm_aperture_remove_conflicting_pci_framebuffers -EXPORT_SYMBOL drivers/gpu/drm/drm 0x54f1575e drm_plane_create_blend_mode_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5605a39f drm_panel_unprepare -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5675f661 drm_dev_printk -EXPORT_SYMBOL drivers/gpu/drm/drm 0x57480b0b drm_crtc_vblank_count -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 0x57da0d31 __drmm_universal_plane_alloc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x58264002 drm_client_register -EXPORT_SYMBOL drivers/gpu/drm/drm 0x59056243 drm_mm_replace_node -EXPORT_SYMBOL drivers/gpu/drm/drm 0x590e2cf2 drm_atomic_normalize_zpos -EXPORT_SYMBOL drivers/gpu/drm/drm 0x59687e98 drm_event_reserve_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x59ef86da drm_flip_work_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5a0cfbeb drm_gem_vm_close -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5bcd13fe drm_client_framebuffer_create -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5be45ed7 __drmm_add_action_or_reset -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5cd8b3cb drm_mode_is_420_also -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5de9ef7c drm_modeset_unlock -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5e93bab6 drm_clflush_pages -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5f458343 drm_writeback_prepare_job -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5f7985a5 drm_mm_scan_remove_block -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5fabaa4e drm_gem_handle_create -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5fb17f90 drm_release_noglobal -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5fdd4478 drm_atomic_check_only -EXPORT_SYMBOL drivers/gpu/drm/drm 0x604bf403 drm_atomic_private_obj_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x609ad771 drm_dev_dbg -EXPORT_SYMBOL drivers/gpu/drm/drm 0x634a8b14 drm_mode_create -EXPORT_SYMBOL drivers/gpu/drm/drm 0x63ca5c90 drm_print_regset32 -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6423cfb4 drm_mode_config_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6447b5a1 drm_prime_gem_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm 0x64539074 drm_bridge_chain_mode_set -EXPORT_SYMBOL drivers/gpu/drm/drm 0x646933a5 drm_atomic_set_fence_for_plane -EXPORT_SYMBOL drivers/gpu/drm/drm 0x64a23256 drm_compat_ioctl -EXPORT_SYMBOL drivers/gpu/drm/drm 0x65702bd6 drm_default_rgb_quant_range -EXPORT_SYMBOL drivers/gpu/drm/drm 0x67529a8a drm_color_lut_check -EXPORT_SYMBOL drivers/gpu/drm/drm 0x67a859c5 drm_modeset_acquire_fini -EXPORT_SYMBOL drivers/gpu/drm/drm 0x68c5290b drm_mode_create_tv_margin_properties -EXPORT_SYMBOL drivers/gpu/drm/drm 0x68cce4d5 drm_client_modeset_probe -EXPORT_SYMBOL drivers/gpu/drm/drm 0x68de1e72 drm_gem_free_mmap_offset -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6911df09 drm_dev_unregister -EXPORT_SYMBOL drivers/gpu/drm/drm 0x692823ec drm_gem_dmabuf_vmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0x697b280e drm_encoder_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6aaaab31 drm_property_replace_blob -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6b13384d drm_modeset_lock_single_interruptible -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6b4d1f69 drm_send_event_locked -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6cbd8a90 drmm_kmalloc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6cc79cd3 drm_vma_node_revoke -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6dd74036 drm_gem_create_mmap_offset -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 0x6f086456 drm_i2c_encoder_restore -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7010b8ef drm_plane_create_scaling_filter_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x70595d40 drm_crtc_check_viewport -EXPORT_SYMBOL drivers/gpu/drm/drm 0x70d5cf31 drm_mode_create_scaling_mode_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x710e99ae drm_gtf_mode_complex -EXPORT_SYMBOL drivers/gpu/drm/drm 0x713b826c drm_framebuffer_remove -EXPORT_SYMBOL drivers/gpu/drm/drm 0x72fd6a62 drm_connector_set_panel_orientation_with_quirk -EXPORT_SYMBOL drivers/gpu/drm/drm 0x73a53763 drm_i2c_encoder_prepare -EXPORT_SYMBOL drivers/gpu/drm/drm 0x741eaa8f drm_gem_put_pages -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7513d4f0 drm_vblank_work_flush -EXPORT_SYMBOL drivers/gpu/drm/drm 0x757601d0 drm_calc_timestamping_constants -EXPORT_SYMBOL drivers/gpu/drm/drm 0x75d47361 drm_client_rotation -EXPORT_SYMBOL drivers/gpu/drm/drm 0x76a2078c __drm_atomic_helper_set_config -EXPORT_SYMBOL drivers/gpu/drm/drm 0x76c0566f drm_sysfs_hotplug_event -EXPORT_SYMBOL drivers/gpu/drm/drm 0x774793b6 drm_gem_vm_open -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7857fdbd drm_plane_create_alpha_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7b5242f3 drm_prime_sg_to_page_array -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7ba1fc14 drm_gem_map_dma_buf -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7cbaceb5 drm_connector_update_edid_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7d23965b drm_gem_get_pages -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7db22bcb drm_gem_object_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7dde8815 drm_panel_get_modes -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7e19aad1 drm_connector_set_panel_orientation -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7e93650f drm_writeback_signal_completion -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7e9e1d8a drm_i2c_encoder_save -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7edf470b drm_edid_duplicate -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7f576d83 drm_client_modeset_check -EXPORT_SYMBOL drivers/gpu/drm/drm 0x801e92b6 drm_atomic_print_new_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8061b86e drm_mode_config_reset -EXPORT_SYMBOL drivers/gpu/drm/drm 0x81992424 drm_edid_header_is_valid -EXPORT_SYMBOL drivers/gpu/drm/drm 0x81ab03c7 drm_gem_object_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x829e1746 drm_atomic_bridge_chain_pre_enable -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8333bf86 drm_atomic_get_private_obj_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0x83b1b0f5 drm_event_cancel_free -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8488f69f drm_connector_attach_colorspace_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8563a554 drm_ht_remove -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8565d488 drm_vblank_work_schedule -EXPORT_SYMBOL drivers/gpu/drm/drm 0x866f94cd drm_gem_prime_fd_to_handle -EXPORT_SYMBOL drivers/gpu/drm/drm 0x86822f2e drmm_mode_config_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x871ab41a drm_rect_intersect -EXPORT_SYMBOL drivers/gpu/drm/drm 0x87290e33 drm_crtc_from_index -EXPORT_SYMBOL drivers/gpu/drm/drm 0x88014ecd drm_plane_create_zpos_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x891fc03a drm_property_create_signed_range -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8a699fc8 drm_ioctl -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8a9a3ee5 drm_plane_get_damage_clips_count -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8c369a51 drm_property_lookup_blob -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8d059863 drm_property_create_blob -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8d72789e drm_edid_is_valid -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8d89f094 drm_mode_parse_command_line_for_connector -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8eb17363 drm_driver_legacy_fb_format -EXPORT_SYMBOL drivers/gpu/drm/drm 0x911ca826 drm_atomic_state_default_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0x91c1718e drm_crtc_init_with_planes -EXPORT_SYMBOL drivers/gpu/drm/drm 0x91fec1cc drm_rect_calc_vscale -EXPORT_SYMBOL drivers/gpu/drm/drm 0x92218500 __drmm_crtc_alloc_with_planes -EXPORT_SYMBOL drivers/gpu/drm/drm 0x93669390 drm_mode_is_420_only -EXPORT_SYMBOL drivers/gpu/drm/drm 0x94300cbe drm_mode_object_find -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9548422a drm_mode_set_config_internal -EXPORT_SYMBOL drivers/gpu/drm/drm 0x955b8841 drm_bridge_chain_mode_fixup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9586e106 drm_mode_find_dmt -EXPORT_SYMBOL drivers/gpu/drm/drm 0x95dbc76d drm_ht_create -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9776e460 drm_flip_work_queue_task -EXPORT_SYMBOL drivers/gpu/drm/drm 0x98bbcb59 drm_i2c_encoder_mode_set -EXPORT_SYMBOL drivers/gpu/drm/drm 0x999fd72f drm_flip_work_commit -EXPORT_SYMBOL drivers/gpu/drm/drm 0x99fd20aa drm_rect_clip_scaled -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9a2cd6e7 drm_mode_create_dvi_i_properties -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 0x9c918659 drm_mode_create_dp_colorspace_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9cd37cdf drm_bridge_remove -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9ce050be drm_mode_copy -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9d1c0c48 drm_property_create_object -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9e9c1e19 drm_client_dev_hotplug -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 0xa1c93a5b drm_vma_node_is_allowed -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa2b4c914 drmm_kfree -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa31ffe12 drm_gem_dmabuf_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa36f5abf drm_file_get_master -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa3f27207 drm_gem_dmabuf_export -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa47d4b1c drm_framebuffer_plane_height -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa4b48f92 drm_modeset_acquire_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa4ca7a68 drm_atomic_bridge_chain_disable -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa803beb6 drm_atomic_private_obj_fini -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa855aefe drm_crtc_vblank_on -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa879f1ff drm_mode_create_tv_properties -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa898e33a drm_crtc_commit_wait -EXPORT_SYMBOL drivers/gpu/drm/drm 0xaaa6474d drm_framebuffer_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xaae9c469 drm_hdmi_avi_infoframe_from_display_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0xac300f7b drm_mode_probed_add -EXPORT_SYMBOL drivers/gpu/drm/drm 0xac65b06e drm_connector_unregister -EXPORT_SYMBOL drivers/gpu/drm/drm 0xacc186f7 drm_plane_from_index -EXPORT_SYMBOL drivers/gpu/drm/drm 0xad19c6d7 drm_mode_plane_set_obj_prop -EXPORT_SYMBOL drivers/gpu/drm/drm 0xad4e902b drm_color_ctm_s31_32_to_qm_n -EXPORT_SYMBOL drivers/gpu/drm/drm 0xae050d7b drm_gem_fence_array_add_implicit -EXPORT_SYMBOL drivers/gpu/drm/drm 0xae277372 __drm_crtc_commit_free -EXPORT_SYMBOL drivers/gpu/drm/drm 0xaf8641d4 drm_modeset_lock_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb044aa96 drm_connector_has_possible_encoder -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 0xb0b83ea4 drm_noop -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb11ac7a7 __drm_err -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb20bc2bd drm_plane_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb22dfd68 drm_format_info_min_pitch -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb25cf684 drm_connector_attach_encoder -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb2a7322a drm_vma_offset_remove -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb30234a8 drm_crtc_vblank_restore -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb3275f1a drm_modeset_lock -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb373b4ff drm_connector_set_path_property -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 0xb40d7e8b drm_object_property_set_value -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb4dbc34f drm_gem_shmem_madvise -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb5ee2708 drm_syncobj_find_fence -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb6127243 drm_need_swiotlb -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb6581bb9 drm_master_internal_acquire -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb6e7db61 drm_bridge_chain_post_disable -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb7af0f16 drm_vblank_work_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb93f277f drm_plane_create_rotation_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb9cad492 __drm_atomic_state_free -EXPORT_SYMBOL drivers/gpu/drm/drm 0xba0e8f74 drm_gtf_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0xba3b9c5c drm_mode_prune_invalid -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbb12a013 drm_invalid_op -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbc1c6806 drm_crtc_arm_vblank_event -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbcb54fb7 drm_state_dump -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbd0e68a6 drm_framebuffer_lookup -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbd6fc95e drm_put_dev -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbdb866a1 drm_probe_ddc -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbdff7541 drm_panel_add -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbe0ce352 drm_crtc_vblank_count_and_time -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbf2c7b19 drm_wait_one_vblank -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbfa66453 drm_gem_prime_import_dev -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc0c7c431 drm_connector_set_link_status_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc1a1f192 drm_connector_attach_scaling_mode_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc2ee3161 drm_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc43a5aa2 drm_sysfs_connector_status_event -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc4d68701 drm_framebuffer_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc4f01766 drm_i2c_encoder_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc539351e drm_property_create_bitmask -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc6db618b drm_writeback_connector_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc7dcd9d2 drm_modeset_lock_all_ctx -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc8aa1559 drm_writeback_get_out_fence -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc919af72 drm_dev_enter -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc92129df drm_panel_of_backlight -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc9b06df5 drm_gem_vunmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc9c54c5e drm_master_put -EXPORT_SYMBOL drivers/gpu/drm/drm 0xca190085 drm_format_info_block_height -EXPORT_SYMBOL drivers/gpu/drm/drm 0xca8a543c drm_crtc_create_scaling_filter_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcadb73a8 drm_gem_shmem_get_pages -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcb2340b8 drm_rect_debug_print -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcb936943 drm_gem_cma_prime_import_sg_table_vmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcbe29dcf drm_client_modeset_commit -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcbfb0c92 drm_vma_offset_manager_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xccc59759 drm_format_info_block_width -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcd97f34c __devm_drm_dev_alloc -EXPORT_SYMBOL drivers/gpu/drm/drm 0xce2b399e drm_send_event_timestamp_locked -EXPORT_SYMBOL drivers/gpu/drm/drm 0xce3b8987 drm_i2c_encoder_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcf11a549 drm_flip_work_allocate_task -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcf9699c7 drm_connector_attach_content_protection_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd05fda43 drm_prime_get_contiguous_size -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd1173bbd drm_crtc_vblank_get -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd13f9985 drm_edid_block_valid -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd3378b4b drm_mode_object_get -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd3b9da2f drm_connector_attach_edid_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd3c4ed18 drm_gem_shmem_unpin -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd512c054 drm_set_preferred_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd5716774 drm_connector_set_tile_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd5e76b11 drm_i2c_encoder_mode_fixup -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd659904c drm_add_modes_noedid -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd6602c61 drm_client_buffer_vunmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd680a377 drm_gem_object_free -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd798ffd5 drm_vblank_work_cancel_sync -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd7a4f7d9 drm_client_framebuffer_delete -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd7a9cf42 drm_mode_validate_size -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd9cf7acb drm_syncobj_get_fd -EXPORT_SYMBOL drivers/gpu/drm/drm 0xda0fd2be drm_atomic_set_crtc_for_connector -EXPORT_SYMBOL drivers/gpu/drm/drm 0xda10162a drm_gem_unlock_reservations -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdbd366a5 drm_i2c_encoder_commit -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdc2c2ea4 drm_flip_work_queue -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdccc5e95 drm_mode_create_suggested_offset_properties -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdcf8e2a5 drm_i2c_encoder_dpms -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdd671fc8 drm_detect_hdmi_monitor -EXPORT_SYMBOL drivers/gpu/drm/drm 0xded69086 drm_writeback_cleanup_job -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdee31381 drm_crtc_wait_one_vblank -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 0xe05d6425 drm_connector_register -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe0d53c93 drm_aperture_remove_conflicting_framebuffers -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe2b4b41f drm_handle_vblank -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe2e68fd0 drm_get_edid -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe2f5e5bd drm_atomic_get_bridge_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe317082a __drm_printfn_info -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe3c303a5 drm_atomic_get_old_connector_for_encoder -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe426c686 drm_connector_atomic_hdr_metadata_equal -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe4c48e0e drm_modeset_lock_all -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe4ebe4f9 drm_atomic_get_new_connector_for_encoder -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe5e54150 drm_crtc_handle_vblank -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe6bbd1bc drm_gem_map_detach -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe6faf305 drm_hdcp_update_content_protection -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe86fdc66 drm_bridge_add -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe87a34db drm_flip_work_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe8a034df drm_dev_exit -EXPORT_SYMBOL drivers/gpu/drm/drm 0xea00fe81 __drm_printfn_coredump -EXPORT_SYMBOL drivers/gpu/drm/drm 0xeb2cc84c drm_open -EXPORT_SYMBOL drivers/gpu/drm/drm 0xeba2b50c drm_atomic_state_alloc -EXPORT_SYMBOL drivers/gpu/drm/drm 0xec12af74 __drm_dbg -EXPORT_SYMBOL drivers/gpu/drm/drm 0xecee39bb drm_crtc_vblank_off -EXPORT_SYMBOL drivers/gpu/drm/drm 0xed1fe9b4 drm_gem_prime_handle_to_fd -EXPORT_SYMBOL drivers/gpu/drm/drm 0xed390815 drm_prime_pages_to_sg -EXPORT_SYMBOL drivers/gpu/drm/drm 0xed4e67f2 drm_mode_is_420 -EXPORT_SYMBOL drivers/gpu/drm/drm 0xeea2c86d drm_plane_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf0517d7a drm_mm_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf0c38a16 drm_panel_disable -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf121d628 drm_atomic_get_plane_state -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 0xf262d7b3 drm_gem_map_attach -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf2f9bcde drm_gem_unmap_dma_buf -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf37f6a4a drm_dev_alloc -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf386694d drm_bridge_chain_pre_enable -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf3c9ed6c drm_bridge_chain_enable -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf406e46a drm_get_connector_type_name -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf43db614 drm_gem_mmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf448d3a8 drm_connector_init_with_ddc -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf4b954ab drm_atomic_commit -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf4de3173 drm_master_get -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf58cd6bc drm_dev_put -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf59ab41d drm_mode_create_hdmi_colorspace_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf5ed09a2 drm_add_edid_modes -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf606024e drm_connector_attach_tv_margin_properties -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf61cb19b drm_crtc_enable_color_mgmt -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf681ba82 drm_atomic_state_default_clear -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf812e181 drm_vma_node_allow -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf824c7db __drm_printfn_debug -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf8a6261d drm_debugfs_remove_files -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf9b8bdee drm_atomic_state_clear -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfb6334bb drm_client_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfbd6bdbc drm_gem_dmabuf_mmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfbda7e07 drm_property_replace_global_blob -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfbfdf8fd drm_modeset_drop_locks -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfcb05b2a drm_gem_private_object_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfd0cdbd0 drm_bridge_attach -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfd858e79 drm_crtc_accurate_vblank_count -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfdad0bb1 drm_atomic_bridge_chain_check -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfde41d23 drm_gem_cma_print_info -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfdfc48b8 drm_gem_objects_lookup -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfe1eb248 drm_cvt_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfeb953b1 __drm_printfn_seq_file -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfebb2dce drm_atomic_add_encoder_bridges -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfebc2ca1 drm_writeback_queue_job -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfee84344 drm_mode_object_put -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfef2aa1f drm_atomic_get_old_bridge_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x003b5b10 drm_fb_helper_hotplug_event -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x004d4534 drm_gem_fb_vmap -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x00cc453c drm_dp_send_real_edid_checksum -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x011f8cb3 drm_atomic_helper_fake_vblank -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x01c4bba9 drm_dp_lttpr_max_link_rate -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x028d31f0 drm_gem_simple_kms_duplicate_shadow_plane_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x040355f6 drm_dp_mst_dsc_aux_for_port -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x044e80fe drm_kms_helper_poll_fini -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x048d068f drm_dp_read_desc -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x05aabe93 drm_atomic_helper_suspend -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x071f2b70 drm_dp_mst_detect_port -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x07a00858 drm_fb_memcpy_dstclip -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0ab4f79a drm_dp_find_vcpi_slots -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0c741c5f drm_fb_helper_lastclose -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0c8c7b62 drm_atomic_helper_check_plane_damage -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0d2b9af1 drm_dp_lttpr_link_train_channel_eq_delay -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0e9940f3 drm_helper_crtc_in_use -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x10ebb560 drm_atomic_helper_wait_for_fences -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x114a7c9e drm_dp_aux_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x114d456c drm_crtc_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x13ea466a drm_atomic_helper_commit_cleanup_done -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x15dbd045 drm_helper_force_disable_all -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 0x180b9bf9 drm_panel_bridge_connector -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x183e1c66 __drm_atomic_helper_connector_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x18c81839 drm_helper_hpd_irq_event -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x19ef60b7 drm_atomic_helper_damage_merged -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1a5bf3ca drm_dsc_dp_rc_buffer_size -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1a6649b0 drm_fb_helper_fini -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1aaff00a drm_dp_dual_mode_get_tmds_output -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 0x1b7f05c7 drm_atomic_helper_crtc_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1cf77981 drm_dp_update_payload_part2 -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1d8996e3 __drmm_simple_encoder_alloc -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1f4ae96d drm_dp_cec_set_edid -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1fd8f217 drm_kms_helper_poll_disable -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x231c968e drm_dp_dpcd_read_link_status -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x23961837 drm_dp_downstream_max_bpc -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x24dc8584 drm_gem_fb_vunmap -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2595dab8 drm_fbdev_generic_setup -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2597860c drm_atomic_get_mst_topology_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x25b4dceb drm_panel_bridge_add -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x260d92ba drm_dp_pcon_reset_frl_config -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x26815dbc drm_dp_link_rate_to_bw_code -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x285aa2f6 drm_edp_backlight_set_level -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x28878328 devm_drm_panel_bridge_add_typed -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x29164368 drm_dp_cec_unset_edid -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2980a6d7 drm_dp_pcon_convert_rgb_to_ycbcr -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2ae99309 drm_dp_pcon_hdmi_link_active -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2b755dc9 drm_atomic_helper_connector_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2db6ede0 drm_atomic_helper_setup_commit -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2e86401d drm_dp_read_sink_count -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2fa94ef2 drm_dp_downstream_444_to_420_conversion -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x31330eb1 __drm_atomic_helper_plane_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x34041c13 drm_dp_pcon_pps_default -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3419e4e8 drm_dp_stop_crc -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x351151d7 drm_atomic_helper_bridge_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x36677891 drm_dp_pcon_frl_configure_2 -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x38f57b66 drm_fb_helper_unregister_fbi -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x392a838b drm_dp_downstream_max_dotclock -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3ab6e69c drm_atomic_helper_page_flip_target -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3b27a0db drm_crtc_helper_set_config -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3b48b848 __drm_atomic_helper_plane_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3c448923 drm_dp_mst_get_vcpi_slots -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3d63c98e drm_atomic_helper_connector_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3de83ca0 drm_scdc_write -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x40e12fab drm_atomic_helper_check -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x41350e91 drm_scdc_set_high_tmds_clock_ratio -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4230d96a drm_edp_backlight_disable -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x425a945d drm_atomic_helper_cleanup_planes -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x444d2bef drm_dp_mst_topology_mgr_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4603c416 drm_dp_pcon_dsc_bpp_incr -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x468bc3f5 drm_atomic_helper_commit_hw_done -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x47442e50 drm_dp_dpcd_write -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x475e9880 drm_dp_mst_connector_early_unregister -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x47c6183e drm_atomic_helper_damage_iter_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4a3e41d7 drm_dp_get_vc_payload_bw -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4aa0da8c drm_kms_helper_hotplug_event -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4adb0c5e drm_gem_fb_create_handle -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4aed0e43 drm_dp_read_downstream_info -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4b8505bd drm_atomic_helper_wait_for_vblanks -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4b90fdd6 drm_dp_read_lttpr_phy_caps -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4d79a610 drm_fb_helper_fill_info -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4e41ad5c drm_fb_xrgb8888_to_rgb565 -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4f76b9c6 drm_atomic_helper_check_modeset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4f9b40ca drm_dp_read_dpcd_caps -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x50839113 drm_simple_display_pipe_attach_bridge -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x51581d47 drm_dp_link_train_channel_eq_delay -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x517c4f8a __drm_atomic_helper_bridge_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x52256d1b __drm_atomic_helper_bridge_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x52c4ec8a __drm_gem_destroy_shadow_plane_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x52cea252 drm_atomic_helper_bridge_propagate_bus_fmt -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x533c1e0e drm_kms_helper_poll_enable -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x535155a4 drm_gem_simple_kms_cleanup_shadow_fb -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x537b8893 drm_fb_blit_rect_dstclip -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x538be129 drm_dp_pcon_frl_configure_1 -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x538f92c0 drm_dp_atomic_release_vcpi_slots -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5407ae9e drm_dp_get_dual_mode_type_name -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5557652d drm_fb_helper_prepare -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x56a663e9 drm_dp_dsc_sink_line_buf_depth -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x575ec308 drm_mode_config_helper_suspend -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x57e5f318 drm_dp_start_crc -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 0x59b7789f drm_gem_destroy_shadow_plane_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x59f27ed7 drm_dp_pcon_enc_is_dsc_1_2 -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5a1c7c91 drm_dp_dual_mode_max_tmds_clock -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5a4734d1 drm_kms_helper_is_poll_worker -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5ae1bccd drm_gem_cleanup_shadow_fb -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5bf22783 drm_dp_read_sink_count_cap -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5d0d4096 drm_atomic_helper_swap_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5d59260c __drm_atomic_helper_connector_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5df98a5a drm_dp_read_mst_cap -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5dfc3a9c drm_helper_disable_unused_functions -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5ee3d4fe drm_dp_mst_atomic_enable_dsc -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x61ca7c4d drm_atomic_helper_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x625734e5 drm_fb_helper_cfb_fillrect -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x63a477fb drm_dp_downstream_min_tmds_clock -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x63b44eac drm_dp_mst_hpd_irq -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x63eeebc1 drm_dp_mst_dump_topology -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x648d953b drm_dsc_dp_pps_header_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x64ab9dc1 drm_atomic_helper_commit_planes -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x66035cf8 drm_dp_read_lttpr_common_caps -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6733f9c6 drm_kms_helper_poll_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x68d8dce7 drm_dp_downstream_is_tmds -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x68ec55fb drm_atomic_helper_commit_tail_rpm -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x691af3e9 drm_dp_pcon_hdmi_frl_link_error_count -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 0x6bd0de2d drm_helper_probe_detect -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6c40177b drm_crtc_helper_set_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x70074dbf drm_fb_helper_restore_fbdev_mode_unlocked -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7044ae9d drm_lspcon_set_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7053fa72 drm_dp_get_pcon_max_frl_bw -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x723c0bff drm_panel_dp_aux_backlight -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7291ce9c drm_dp_dual_mode_detect -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x72deac2c drm_dp_downstream_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x73011db0 drm_dp_bw_code_to_link_rate -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7320ea24 drm_dp_aux_unregister -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x73860830 drm_fb_helper_set_suspend_unlocked -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 0x7741db89 drm_dp_atomic_find_vcpi_slots -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x776eb7fc drm_dp_dpcd_read_phy_link_status -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x777cb528 drm_gem_reset_shadow_plane -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7801ca65 drm_dp_dual_mode_write -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x79406c25 drm_atomic_helper_calc_timestamping_constants -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x79a73976 drm_fb_helper_cfb_imageblit -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7a7278db drm_fb_helper_sys_copyarea -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7ad01407 drm_gem_simple_kms_destroy_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 0x7ee4092e drm_atomic_helper_bridge_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7f11c8f9 drm_atomic_helper_wait_for_dependencies -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7f5f371b drm_atomic_helper_disable_all -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8197c3eb drm_self_refresh_helper_alter_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 0x838a8fa0 drm_fb_memcpy -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x840757b2 drm_atomic_helper_check_plane_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x843ddc21 drm_dp_pcon_is_frl_ready -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x84fd25c9 drm_dp_remote_aux_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x85418bb6 drm_dp_set_phy_test_pattern -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x86854484 drm_gem_fb_begin_cpu_access -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x87770c37 __drm_atomic_helper_private_obj_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x883f4acd drm_dp_mst_get_edid -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x894b1f57 drm_dp_get_adjust_request_post_cursor -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x89d100ba drm_fb_xrgb8888_to_rgb888_dstclip -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8ad045cf __drm_atomic_helper_plane_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8bd4690f drm_edp_backlight_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8ca2d9e4 drm_dp_calc_pbn_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8d6b2eb7 drm_dp_mst_allocate_vcpi -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8d701329 drm_dp_clock_recovery_ok -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8e00254c drm_atomic_helper_dirtyfb -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8f1b9b3f drm_dp_downstream_debug -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8f3dd56c drm_atomic_helper_disable_planes_on_crtc -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8f5c7a9e drm_helper_resume_force_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x926b64fc drm_gem_duplicate_shadow_plane_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x944099cd drm_dp_mst_atomic_check -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x947ea26b drm_dp_check_act_status -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x95621c7c drm_dp_cec_irq -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x980ba8cc drm_atomic_helper_crtc_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x98e8e25d drm_gem_simple_kms_prepare_shadow_fb -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x991aed68 drm_gem_simple_kms_reset_shadow_plane -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9bbefe85 drm_atomic_helper_async_commit -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9bc17713 drm_atomic_helper_set_config -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9c5e6547 drm_scdc_read -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9c876e1a drm_atomic_helper_connector_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9d671888 drm_dp_update_payload_part1 -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9da34f33 drm_fb_helper_debug_enter -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9f2d5515 drm_simple_display_pipe_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9f4eeb7f drm_dp_mst_topology_mgr_resume -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9fc0edeb drm_helper_encoder_in_use -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa0a3f0c4 drm_dp_mst_get_port_malloc -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa0d040d4 drm_scdc_set_scrambling -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa0e99729 drm_dp_get_phy_test_pattern -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa1fefe6a drm_dp_psr_setup_time -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa27e4953 drm_dp_mst_topology_mgr_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa415c42f drm_helper_connector_dpms -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa4c1bec4 drm_gem_fb_end_cpu_access -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa4e689a4 drm_atomic_helper_prepare_planes -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa551432e drm_fb_helper_sys_read -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa5632390 drm_fb_helper_sys_fillrect -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa5675d85 drm_dp_cec_register_connector -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa56d50fe drm_fb_helper_sys_imageblit -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa5ad7598 drm_mode_config_helper_resume -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa68b4f63 drm_dp_send_query_stream_enc_status -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa717dab9 drm_fb_helper_set_suspend -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa843606e drm_dp_dsc_sink_supported_input_bpcs -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa8a78eff drm_gem_fb_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa9dd19f7 __drm_atomic_helper_connector_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xac3dbfa7 drm_atomic_helper_commit_planes_on_crtc -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xadaacf1c drm_fb_helper_sys_write -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xae96cf80 drm_fb_helper_debug_leave -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xaf267620 drm_dp_lttpr_count -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb0bb2987 drm_atomic_helper_plane_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb0c4e9b4 drm_dp_mst_reset_vcpi_slots -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb1a44d4c drm_atomic_helper_page_flip -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb3d429ad drm_dp_set_subconnector_property -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb71edb66 drm_atomic_helper_async_check -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb8a32129 drm_gem_prepare_shadow_fb -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb8e8d91a drm_fb_helper_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb95f543e drm_atomic_helper_commit_tail -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbafd9d9c drm_gem_simple_display_pipe_prepare_fb -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbb35c692 drm_atomic_helper_crtc_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbd466fae drm_fb_helper_cfb_copyarea -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbd85d163 drm_dp_mst_connector_late_register -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbf182336 drm_lspcon_get_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc020c0c1 drm_dp_pcon_dsc_max_slice_width -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc0556ff7 __drm_atomic_helper_connector_state_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc0c6c996 drm_fb_helper_blank -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc14b1553 drm_self_refresh_helper_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc1c442b5 drm_atomic_helper_bridge_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc42887b5 drm_dp_mst_deallocate_vcpi -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc42d00c5 drm_atomic_helper_disable_plane -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc5023d79 drm_fb_helper_ioctl -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc5c22554 __drm_atomic_helper_crtc_state_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc5c99a79 drm_dp_get_adjust_request_voltage -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc67a779d drm_dp_mst_topology_state_funcs -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc79ecffb drm_dp_downstream_is_type -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc7c091b0 drm_atomic_helper_commit_modeset_enables -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc7c4cb28 drm_dp_link_train_clock_recovery_delay -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc7dcf057 drm_atomic_helper_plane_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc85e28e8 drm_fb_xrgb8888_to_rgb565_dstclip -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xca36c746 drm_self_refresh_helper_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xca77e6e2 drm_dp_pcon_frl_prepare -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcdcea9e1 __drm_gem_reset_shadow_plane -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcf945e32 drm_atomic_helper_update_legacy_modeset_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd1cca0c7 drm_dp_send_power_updown_phy -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd2d129de drm_fb_helper_output_poll_changed -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd496b9ad drm_dp_dual_mode_read -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd4983d85 drm_fb_swab -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd5d01e5d drm_helper_move_panel_connectors_to_head -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd7038905 drm_fb_helper_set_par -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdbc3c128 drm_fb_blit_dstclip -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdcf0193d drm_dp_dpcd_read -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xde3afdeb drm_dp_mst_add_affected_dsc_crtcs -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdebeccd9 drm_helper_mode_fill_fb_struct -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdf0d9f24 drm_panel_bridge_add_typed -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdf3397d1 drm_dp_dual_mode_set_tmds_output -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe077f1ba __drm_atomic_helper_crtc_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe1f3c668 __drm_gem_duplicate_shadow_plane_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe3b2490f drm_helper_probe_single_connector_modes -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe3d827d6 drm_fb_helper_check_var -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe3f293dd drm_atomic_helper_commit_modeset_disables -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe4496eae drm_dp_cec_unregister_connector -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe47c0f9f drm_atomic_helper_commit_duplicated_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe4ba5f0b drm_simple_encoder_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe5319f47 drm_atomic_helper_commit -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe5351750 drm_fb_helper_setcmap -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe5360b84 drm_dp_pcon_dsc_max_slices -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe5563d70 drm_atomic_helper_plane_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe5a7186d __drm_atomic_helper_plane_state_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe691a3fe drm_dp_aux_register -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe83c0723 drm_atomic_helper_resume -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe9770332 drm_panel_bridge_remove -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe98db0ac drm_dp_pcon_hdmi_link_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe9cee4ac drm_fb_helper_pan_display -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe9d00de3 drm_dp_mst_topology_mgr_set_mst -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xeae6d715 drm_atomic_helper_check_planes -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xeb96a3f2 __drm_atomic_helper_crtc_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xecb24d69 drm_dp_downstream_id -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xed412ecf drm_atomic_helper_connector_tv_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xed751c77 drm_fb_helper_deferred_io -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xedc6e9f3 drm_primary_helper_funcs -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xedcf81ce drm_dp_channel_eq_ok -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xef282782 drm_atomic_helper_update_plane -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xef51aee7 drm_dp_mst_topology_mgr_suspend -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf2dae470 drm_fb_helper_alloc_fbi -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf3448450 drm_self_refresh_helper_update_avg_times -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf37d677e drm_dp_pcon_frl_enable -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf3eefa4e __drm_atomic_helper_crtc_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf44bf101 drm_atomic_helper_wait_for_flip_done -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf4e929a0 drm_edp_backlight_enable -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 0xf82d452e drm_atomic_helper_shutdown -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf865cbbd devm_drm_panel_bridge_add -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf9a4bf18 drm_dp_pcon_pps_override_buf -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfa247198 drm_fb_helper_initial_config -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfb1a7a5a drm_dp_downstream_rgb_to_ycbcr_conversion -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfbda61d7 drm_dp_vsc_sdp_log -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfc796cc9 drm_scdc_get_scrambling_status -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfd27e280 drm_dp_mst_put_port_malloc -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfd456698 drm_primary_helper_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfe12bcb9 drm_dsc_compute_rc_parameters -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfe7273fd drm_dp_pcon_pps_override_param -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x0523bb6e mipi_dbi_command_read -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x06341bc3 mipi_dbi_dev_init_with_formats -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x07f43bc9 mipi_dbi_poweron_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x0a18d206 mipi_dbi_enable_flush -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x1257d702 mipi_dbi_dev_init -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x1ec8049e mipi_dbi_command_buf -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x21af5170 mipi_dbi_pipe_disable -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x26730d46 mipi_dbi_pipe_update -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x3d560fa1 mipi_dbi_command_stackbuf -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x5c9d77c4 mipi_dbi_debugfs_init -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x66347c85 mipi_dbi_spi_transfer -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x7342d5c3 mipi_dbi_poweron_conditional_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x75c4d116 mipi_dbi_spi_cmd_max_speed -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xaac8caa4 mipi_dbi_display_is_on -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xc4761e47 mipi_dbi_spi_init -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xccc57c5f mipi_dbi_hw_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xcdf6ecc5 mipi_dbi_buf_copy -EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0x2311231f drm_gem_ttm_mmap -EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0x69cd4560 drm_gem_ttm_vunmap -EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0x82c4fcf3 drm_gem_ttm_vmap -EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0xd9795b08 drm_gem_ttm_print_info -EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0xfb08b3f2 drm_gem_ttm_dumb_map_offset -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x029605e2 drm_gem_vram_offset -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x19b1f279 drm_gem_vram_fill_create_dumb -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x36cde28f drm_gem_vram_simple_display_pipe_cleanup_fb -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x371fcf05 drm_gem_vram_driver_dumb_create -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x518eb12f drm_gem_vram_simple_display_pipe_prepare_fb -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x5a7041b4 drm_gem_vram_vunmap -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x5b415c8e drm_gem_vram_vmap -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x5f69c692 drm_gem_vram_pin -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x763d78e4 drm_gem_vram_plane_helper_prepare_fb -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x96b65c9a drm_vram_helper_mode_valid -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x99064e29 drmm_vram_helper_init -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x9de3901b drm_gem_vram_put -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xab4d45d5 drm_gem_vram_create -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xae799006 drm_vram_mm_debugfs_init -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xc892e7d6 drm_gem_vram_plane_helper_cleanup_fb -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xcff018e4 drm_gem_vram_unpin -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x033cc422 drm_sched_stop -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x11785a39 drm_sched_increase_karma_ext -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x1bee44c2 to_drm_sched_fence -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x2855c433 drm_sched_pick_best -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x2d5d99f6 drm_sched_resubmit_jobs_ext -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x3192645a drm_sched_dependency_optimized -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x3a5490fb drm_sched_entity_destroy -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x612e9450 drm_sched_entity_push_job -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x702ccd0a drm_sched_fini -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x7d5b9296 drm_sched_entity_flush -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x7d65d6e1 drm_sched_entity_fini -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x7fffa929 drm_sched_job_cleanup -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x8878c511 drm_sched_increase_karma -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x9ed2bf0d drm_sched_resume_timeout -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x9f703dbe drm_sched_suspend_timeout -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xa90330ea drm_sched_start -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xaf2c4324 drm_sched_job_init -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xce082de1 drm_sched_entity_init -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xd47f855f drm_sched_reset_karma -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xdca5a833 drm_sched_fault -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xde474bf7 drm_sched_resubmit_jobs -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xeeb1ea2c drm_sched_init -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xf37a0e3d drm_sched_entity_set_priority -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xf7a58636 drm_sched_entity_modify_sched -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x01196faa ttm_bo_mem_space -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x075ac4d9 ttm_bo_init_reserved -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x100496c4 ttm_device_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x11ba6a84 ttm_device_swapout -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x124221e1 ttm_bo_vmap -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x13cd002d ttm_bo_vunmap -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x17c33d19 ttm_eu_reserve_buffers -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x18078c5e ttm_range_man_fini -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1cf72aec ttm_eu_backoff_reservation -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1e64a3b5 ttm_bo_kunmap -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2548a125 ttm_bo_vm_dummy_page -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x31cd072d ttm_bo_vm_close -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x33bf88aa ttm_bo_put -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x33c111a8 ttm_bo_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x34ac7bf7 ttm_tt_fini -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x3e195c18 ttm_bo_vm_access -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x409da459 ttm_agp_unbind -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x447dcdc1 ttm_resource_free -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4bc318f0 ttm_bo_vm_fault -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x56fdfed5 ttm_tt_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x578a0993 ttm_device_fini -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x64684a06 ttm_bo_lock_delayed_workqueue -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6536031b ttm_kmap_iter_iomap_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x69aa2673 ttm_kmap_iter_tt_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6ebcadff ttm_agp_is_bound -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7bfe6c3e ttm_range_man_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7f26df3a ttm_resource_manager_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x84ea7877 ttm_bo_unlock_delayed_workqueue -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x88b180aa ttm_move_memcpy -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x89457af8 ttm_resource_manager_debug -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8b5bbb1f ttm_eu_fence_buffer_objects -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8e13b9b8 ttm_global_swapout -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x9074fb54 ttm_sg_tt_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x914a77d7 ttm_tt_destroy_common -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x93cbec7e ttm_pool_alloc -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x93d76df9 ttm_bo_unmap_virtual -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x97473735 ttm_bo_move_to_lru_tail -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x9b667b7d ttm_io_prot -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x9b957d19 ttm_bo_eviction_valuable -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x9f3e6354 ttm_bo_mmap_obj -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xaaddf444 ttm_agp_bind -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb2bc2bff ttm_bo_move_accel_cleanup -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb3fe94a7 ttm_bo_vm_open -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb753ca08 ttm_bo_mem_compat -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb9b6bee2 ttm_bo_vm_reserve -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xbb0b9fdc ttm_glob -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xbfa9f174 ttm_bo_validate -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc195f854 ttm_tt_populate -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc7956ffe ttm_bo_vm_fault_reserved -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc813d70d ttm_resource_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd4c200d8 ttm_resource_manager_evict_all -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xdd3aa680 ttm_pool_free -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xed0e84e7 ttm_pool_debugfs -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf46f886c ttm_agp_destroy -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf599cf43 ttm_bo_wait -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf5c5d568 ttm_bo_move_memcpy -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xfaaf869a ttm_agp_tt_create -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xfb4a3166 ttm_bo_bulk_move_lru_tail -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xff4679a7 ttm_bo_kmap -EXPORT_SYMBOL drivers/gpu/drm/vmwgfx/vmwgfx 0x1ea8d6d0 ttm_mem_glob -EXPORT_SYMBOL drivers/gpu/drm/vmwgfx/vmwgfx 0x2978cb2f ttm_mem_global_free -EXPORT_SYMBOL drivers/gpu/drm/vmwgfx/vmwgfx 0x446c961c ttm_base_object_noref_lookup -EXPORT_SYMBOL drivers/gpu/drm/vmwgfx/vmwgfx 0x6052860c ttm_round_pot -EXPORT_SYMBOL drivers/gpu/drm/vmwgfx/vmwgfx 0x6e6a10a4 ttm_mem_global_alloc -EXPORT_SYMBOL drivers/hid/hid 0x49bebf5b hid_bus_type -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x05847366 ishtp_start -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x14125f2e ishtp_set_rx_ring_size -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x170c3d8d ishtp_recv -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x1e421cdb ishtp_set_drvdata -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x26a9ace6 ishtp_reset_handler -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x2968e8bd ishtp_get_ishtp_device -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x2ab63ae9 ishtp_set_connection_state -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x2d7fe871 ishtp_device -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x2f514fdc ishtp_cl_unlink -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x30e8bec1 ishtp_set_tx_ring_size -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x493e8ec7 ishtp_cl_link -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x4dd13ea2 ishtp_cl_driver_unregister -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x53264167 ishtp_fw_cl_by_uuid -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x5f9b0501 ishtp_get_fw_client_id -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x6a4bb9f8 ishtp_reset_compl_handler -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x71387bd1 ishtp_get_drvdata -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x71d0f9c8 ishtp_dev_to_cl_device -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x75ef6955 ishtp_device_init -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x76515a45 ishtp_cl_get_tx_free_rings -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x7d73e83e ishtp_cl_io_rb_recycle -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x8d380ce6 ish_hw_reset -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x8dd95504 ishtp_trace_callback -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x8dda335a ishtp_cl_get_tx_free_buffer_size -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x9bd9bc5e ishtp_get_pci_device -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x9f13300a ishtp_bus_remove_all_clients -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xa38d4112 ishtp_cl_disconnect -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xa9e2e4d3 ishtp_cl_flush_queues -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xaf090f63 ishtp_put_device -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xb4a6fa6f ishtp_cl_driver_register -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xb55a2aad ishtp_register_event_cb -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xc108657e ishtp_cl_allocate -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xc810d884 ishtp_send_resume -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xd03bd39e ishtp_get_client_data -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xd2a59880 ishtp_cl_send -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xdbd7ed7a ishtp_set_client_data -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xde57ed1e ishtp_cl_tx_empty -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xe42ae669 ishtp_cl_set_fw_client_id -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xe86f6c61 ishtp_cl_connect -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xe88725ab ishtp_cl_rx_get_rb -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xefed184c ishtp_get_device -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xf2d8cebe ishtp_send_suspend -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xf6612d96 ishtp_cl_free -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xf99071d1 ishtp_fw_cl_get_client -EXPORT_SYMBOL drivers/hv/hv_vmbus 0x72ccee0e vmbus_recvpacket -EXPORT_SYMBOL drivers/hv/hv_vmbus 0xa32c1285 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 0x88c619ec 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 0x31496dbf i2c_bit_add_bus -EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0x9a960e68 i2c_bit_add_numbered_bus -EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0xbf715853 i2c_bit_algo -EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-pca 0xc7e7f272 i2c_pca_add_bus -EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-pca 0xf1e11e1d i2c_pca_add_numbered_bus -EXPORT_SYMBOL drivers/i2c/busses/i2c-amd756 0x4f304010 amd756_smbus -EXPORT_SYMBOL drivers/iio/accel/bma400_core 0xe7dc368f bma400_probe -EXPORT_SYMBOL drivers/iio/accel/bma400_core 0xecca62f3 bma400_regmap_config -EXPORT_SYMBOL drivers/iio/accel/bma400_core 0xf5afe3c9 bma400_remove -EXPORT_SYMBOL drivers/iio/accel/kxsd9 0x19b5934d kxsd9_common_probe -EXPORT_SYMBOL drivers/iio/accel/kxsd9 0x5fa731e8 kxsd9_common_remove -EXPORT_SYMBOL drivers/iio/accel/kxsd9 0xa4de2290 kxsd9_dev_pm_ops -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x0632f89c mma9551_read_config_word -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x0eb8e519 mma9551_set_device_state -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x3c6dce9f mma9551_app_reset -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x3e2ec161 mma9551_gpio_config -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x41ef446c mma9551_read_accel_scale -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x45214f17 mma9551_set_power_state -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x4af1489c mma9551_write_config_byte -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x5426dc96 mma9551_read_status_byte -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x776e3344 mma9551_read_config_words -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x8859d77e mma9551_update_config_bits -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x9bfc5d67 mma9551_write_config_words -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xb7e2d0fc mma9551_read_accel_chan -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xbcd7fe96 mma9551_sleep -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xbd09a641 mma9551_read_version -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xc7e22cbe mma9551_read_status_word -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xe388b8c2 mma9551_write_config_word -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xe5ef55a8 mma9551_read_config_byte -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xf7460b0e mma9551_read_status_words -EXPORT_SYMBOL drivers/iio/accel/st_accel 0x08554647 st_accel_get_settings -EXPORT_SYMBOL drivers/iio/accel/st_accel 0x5d653e29 st_accel_common_probe -EXPORT_SYMBOL drivers/iio/accel/st_accel 0xcbea292b 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 0x8a10867d iio_triggered_buffer_cleanup -EXPORT_SYMBOL drivers/iio/buffer/industrialio-triggered-buffer 0xce305391 iio_triggered_buffer_setup_ext -EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0x30e7bf89 iio_kfifo_allocate -EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0xac8bdd24 iio_kfifo_free -EXPORT_SYMBOL drivers/iio/chemical/bme680_core 0x1296c1ac bme680_regmap_config -EXPORT_SYMBOL drivers/iio/chemical/scd30_core 0x0e240b3b scd30_probe -EXPORT_SYMBOL drivers/iio/chemical/scd30_core 0x35570c49 scd30_resume -EXPORT_SYMBOL drivers/iio/chemical/scd30_core 0x49fa182f 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 0x31449575 ms_sensors_read_temp_and_pressure -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x42b6a050 ms_sensors_convert_and_read -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x70cb8f48 ms_sensors_ht_read_temperature -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x75ebf02c ms_sensors_show_heater -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x8e40ad09 ms_sensors_write_heater -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xaa6ac511 ms_sensors_ht_read_humidity -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xbf29a82a ms_sensors_tp_read_prom -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xe00a8b72 ms_sensors_read_serial -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xe480b64f ms_sensors_show_battery_low -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xe801f5ab ms_sensors_write_resolution -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x675a868b ssp_change_delay -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0xac3d0ab9 ssp_enable_sensor -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0xd7ab18d3 ssp_disable_sensor -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0xf223703a ssp_get_sensor_delay -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0xfe66a1db ssp_register_consumer -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/ssp_iio 0x17abbb15 ssp_common_buffer_postdisable -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/ssp_iio 0x5eda014a ssp_common_process_data -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/ssp_iio 0xf0e39e3e 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 0x0f389a21 st_sensors_set_enable -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x1a3b0cd2 st_sensors_set_fullscale_by_gain -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x2d61de4d st_sensors_get_settings_index -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x344881e2 st_sensors_read_info_raw -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x44c8673a st_sensors_verify_id -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x62a77a93 st_sensors_set_dataready_irq -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x7ec84ff4 st_sensors_dev_name_probe -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x854a1162 st_sensors_allocate_trigger -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x8b6208d1 st_sensors_sysfs_sampling_frequency_avail -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x8d549a92 st_sensors_debugfs_reg_access -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x90617de2 st_sensors_power_enable -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xa245ae99 st_sensors_set_axis_enable -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xb424daab st_sensors_power_disable -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xd3e31d7d st_sensors_deallocate_trigger -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xd6396f2e st_sensors_set_odr -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xe14e6f2c st_sensors_init_sensor -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xe5b7b8cb st_sensors_sysfs_scale_avail -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xe64915c8 st_sensors_validate_device -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors_i2c 0x125036c2 st_sensors_i2c_configure -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors_spi 0x8288c9a4 st_sensors_spi_configure -EXPORT_SYMBOL drivers/iio/gyro/mpu3050 0x063a055f mpu3050_dev_pm_ops -EXPORT_SYMBOL drivers/iio/gyro/mpu3050 0x5ff99054 mpu3050_common_remove -EXPORT_SYMBOL drivers/iio/gyro/mpu3050 0xa4517cc3 mpu3050_common_probe -EXPORT_SYMBOL drivers/iio/gyro/st_gyro 0x707dce74 st_gyro_common_remove -EXPORT_SYMBOL drivers/iio/gyro/st_gyro 0xc3dad58c st_gyro_common_probe -EXPORT_SYMBOL drivers/iio/gyro/st_gyro 0xfdaee8e3 st_gyro_get_settings -EXPORT_SYMBOL drivers/iio/humidity/hts221 0x66e88698 hts221_pm_ops -EXPORT_SYMBOL drivers/iio/humidity/hts221 0x8be13bf2 hts221_probe -EXPORT_SYMBOL drivers/iio/imu/bmi160/bmi160_core 0x3e6f186f bmi160_regmap_config -EXPORT_SYMBOL drivers/iio/imu/bmi160/bmi160_core 0xca19cfae bmi160_enable_irq -EXPORT_SYMBOL drivers/iio/imu/fxos8700_core 0xb27bd6c3 fxos8700_regmap_config -EXPORT_SYMBOL drivers/iio/imu/st_lsm6dsx/st_lsm6dsx 0x09e5a179 st_lsm6dsx_probe -EXPORT_SYMBOL drivers/iio/imu/st_lsm6dsx/st_lsm6dsx 0x7a0352f4 st_lsm6dsx_pm_ops -EXPORT_SYMBOL drivers/iio/industrialio 0x02083190 iio_device_alloc -EXPORT_SYMBOL drivers/iio/industrialio 0x25be6cc1 iio_trigger_poll_chained -EXPORT_SYMBOL drivers/iio/industrialio 0x2d6bcdcb iio_trigger_generic_data_rdy_poll -EXPORT_SYMBOL drivers/iio/industrialio 0x43628115 iio_device_get_clock -EXPORT_SYMBOL drivers/iio/industrialio 0x4889fd18 iio_trigger_alloc -EXPORT_SYMBOL drivers/iio/industrialio 0x5340c306 iio_device_free -EXPORT_SYMBOL drivers/iio/industrialio 0x5b9b8d06 iio_get_time_ns -EXPORT_SYMBOL drivers/iio/industrialio 0x63dd60e9 __iio_trigger_register -EXPORT_SYMBOL drivers/iio/industrialio 0x72ccec96 iio_bus_type -EXPORT_SYMBOL drivers/iio/industrialio 0x7c925391 iio_device_set_clock -EXPORT_SYMBOL drivers/iio/industrialio 0x93e365c3 iio_device_unregister -EXPORT_SYMBOL drivers/iio/industrialio 0x961f9ca0 __iio_device_register -EXPORT_SYMBOL drivers/iio/industrialio 0xa947bbe4 iio_trigger_free -EXPORT_SYMBOL drivers/iio/industrialio 0xbd265d35 iio_buffer_init -EXPORT_SYMBOL drivers/iio/industrialio 0xbf51227f iio_trigger_validate_own_device -EXPORT_SYMBOL drivers/iio/industrialio 0xc49875c7 iio_get_time_res -EXPORT_SYMBOL drivers/iio/industrialio 0xc58ebe8a iio_trigger_set_immutable -EXPORT_SYMBOL drivers/iio/industrialio 0xcfc141c6 iio_read_const_attr -EXPORT_SYMBOL drivers/iio/industrialio 0xd2e7411d iio_trigger_poll -EXPORT_SYMBOL drivers/iio/industrialio 0xd4193fca iio_push_event -EXPORT_SYMBOL drivers/iio/industrialio 0xdf76bbeb iio_pollfunc_store_time -EXPORT_SYMBOL drivers/iio/industrialio 0xf0845146 iio_trigger_using_own -EXPORT_SYMBOL drivers/iio/industrialio 0xf31f6d51 iio_trigger_unregister -EXPORT_SYMBOL drivers/iio/industrialio 0xf53802c3 iio_trigger_notify_done -EXPORT_SYMBOL drivers/iio/industrialio 0xf94c08c2 iio_read_mount_matrix -EXPORT_SYMBOL drivers/iio/industrialio-configfs 0xceb770b2 iio_configfs_subsys -EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0x72bccbd8 iio_unregister_sw_device_type -EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0x848600b4 iio_register_sw_device_type -EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0xa0a07a73 iio_sw_device_create -EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0xc2d8c91e iio_sw_device_destroy -EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0x3ff34ac5 iio_register_sw_trigger_type -EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0x7be80ce4 iio_sw_trigger_destroy -EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0xb1b8fc4e iio_unregister_sw_trigger_type -EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0xe5862d20 iio_sw_trigger_create -EXPORT_SYMBOL drivers/iio/industrialio-triggered-event 0x3e430953 iio_triggered_event_setup -EXPORT_SYMBOL drivers/iio/industrialio-triggered-event 0x73d79fa0 iio_triggered_event_cleanup -EXPORT_SYMBOL drivers/iio/light/st_uvis25_core 0xee38399b st_uvis25_pm_ops -EXPORT_SYMBOL drivers/iio/light/st_uvis25_core 0xfa2888aa st_uvis25_probe -EXPORT_SYMBOL drivers/iio/magnetometer/bmc150_magn 0x030f902a bmc150_magn_remove -EXPORT_SYMBOL drivers/iio/magnetometer/bmc150_magn 0x9257bc11 bmc150_magn_probe -EXPORT_SYMBOL drivers/iio/magnetometer/bmc150_magn 0xa50ff23c bmc150_magn_regmap_config -EXPORT_SYMBOL drivers/iio/magnetometer/bmc150_magn 0xab67e074 bmc150_magn_pm_ops -EXPORT_SYMBOL drivers/iio/magnetometer/hmc5843_core 0x79ff9094 hmc5843_common_probe -EXPORT_SYMBOL drivers/iio/magnetometer/hmc5843_core 0x826f739b hmc5843_common_remove -EXPORT_SYMBOL drivers/iio/magnetometer/hmc5843_core 0x95f07f29 hmc5843_common_resume -EXPORT_SYMBOL drivers/iio/magnetometer/hmc5843_core 0xc6130205 hmc5843_common_suspend -EXPORT_SYMBOL drivers/iio/magnetometer/st_magn 0x3e370dbe st_magn_common_probe -EXPORT_SYMBOL drivers/iio/magnetometer/st_magn 0x6c5a2342 st_magn_get_settings -EXPORT_SYMBOL drivers/iio/magnetometer/st_magn 0xb857722c st_magn_common_remove -EXPORT_SYMBOL drivers/iio/pressure/bmp280 0x2084a21a bmp280_dev_pm_ops -EXPORT_SYMBOL drivers/iio/pressure/bmp280 0x7d36088b bmp180_regmap_config -EXPORT_SYMBOL drivers/iio/pressure/bmp280 0x97b0d5e9 bmp280_regmap_config -EXPORT_SYMBOL drivers/iio/pressure/bmp280 0xb1f43aee bmp280_common_probe -EXPORT_SYMBOL drivers/iio/pressure/ms5611_core 0x956541d9 ms5611_remove -EXPORT_SYMBOL drivers/iio/pressure/ms5611_core 0xfb039784 ms5611_probe -EXPORT_SYMBOL drivers/iio/pressure/st_pressure 0x0e316c09 st_press_get_settings -EXPORT_SYMBOL drivers/iio/pressure/st_pressure 0x50ef272c st_press_common_probe -EXPORT_SYMBOL drivers/iio/pressure/st_pressure 0xbb8d57bd st_press_common_remove -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x01c3b57a ib_send_cm_drep -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x057beb2e ib_cm_init_qp_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x1e3fae1a ib_send_cm_req -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x69824a14 ibcm_reject_msg -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x7510bff8 ib_send_cm_rtu -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x820b4890 ib_cm_notify -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x86fbaaaa ib_create_cm_id -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x89d1c025 ib_send_cm_mra -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xa0e4a2e7 ib_send_cm_rep -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xb484768e ib_send_cm_dreq -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xb94216ef ib_cm_listen -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xbfe53d69 ib_send_cm_rej -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xcd522d27 ib_destroy_cm_id -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xd0bf81ad ib_send_cm_sidr_rep -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xe060f9f7 ib_send_cm_sidr_req -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xfcb5e664 ib_cm_insert_listen -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x008d849d rdma_nl_put_driver_u32 -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x00cd25ea ib_get_rdma_header_version -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x02c36efa ib_port_immutable_read -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0535a62b ib_create_srq_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x063ba3e6 rdma_resolve_ip -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x080fb5eb ib_attach_mcast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x086030de ib_process_cq_direct -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0a648e06 ib_unregister_event_handler -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0c7e00c3 ib_get_vf_config -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0c86f5cb ib_sa_register_client -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0d875e0c rdma_restrack_new -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0ebda663 rdma_find_gid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x11a4bb2a ib_dma_virt_map_sg -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x11d9428f ib_sa_get_mcmember_rec -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x134a24af rdma_rw_ctx_destroy -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x13e7eb76 ib_query_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x14981c3b ib_reg_user_mr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x165a1370 ib_drain_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1723cbdd ib_open_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x181f708b ibdev_printk -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x189defcc ib_rdmacg_try_charge -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1ac095c1 rdma_nl_multicast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1ad4da7c ibnl_put_msg -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1b037462 __rdma_block_iter_start -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1df439dd _ib_alloc_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1f8fe7f3 rdma_nl_unicast_wait -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x210e7b83 ib_register_mad_agent -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x222131ce rdma_rw_ctx_destroy_signature -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x22f3cf93 ib_pack -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2497daa8 rdma_copy_ah_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x250342a2 ibdev_info -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x255523ea ib_sg_to_pages -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x278d854c ib_sa_guid_info_rec_query -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x29044483 ib_register_event_handler -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x29bf8683 ib_advise_mr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2af38e56 ibnl_put_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2dbb3d91 ibdev_crit -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x305e5701 rdma_addr_size_kss -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x328a8295 ib_unregister_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x330e5abb rdma_rw_ctx_wrs -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x34d37d4a ib_register_client -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x35baa372 rdma_move_ah_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x36d8afc5 ib_modify_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3926a2f0 ib_find_gid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3969ea8a ib_destroy_cq_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3ab622e1 rdma_nl_put_driver_u64_hex -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3b6b64a6 rdma_user_mmap_entry_get -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3c3dfa04 ib_modify_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3d6263f2 ib_cq_pool_get -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3fc2387c ib_ud_header_unpack -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x42a8bcd0 ib_dealloc_pd_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x43180cd7 rdma_user_mmap_entry_insert -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 0x450f9cfe ib_get_eth_speed -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x45fb8985 rdma_nl_chk_listeners -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x48af17d8 ib_init_ah_attr_from_path -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4d27fe56 rdma_nl_stat_hwcounter_entry -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 0x4ee2f3ed ib_port_sysfs_get_ibdev_kobj -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x51bc07d9 ib_get_device_fw_str -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5342fe95 ib_mr_pool_init -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x53d4a468 ibdev_emerg -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5433ac9b ib_drain_sq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x549bc68c rdma_nl_unicast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x55bb02f3 ib_cache_gid_type_str -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x58174855 ib_set_vf_guid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x58df5b94 ib_get_gids_from_rdma_hdr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5ac73ceb ib_unregister_device_queued -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5cb1ed33 ib_dealloc_xrcd_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5d7c0c0e rdma_translate_ip -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5d8aabe4 __ib_alloc_pd -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5e2548f3 rdma_read_gid_hw_context -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5e4d657d rdma_link_unregister -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5e869df7 ib_alloc_xrcd_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5ef70f05 ib_find_cached_pkey -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 0x62518eb4 ib_dealloc_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x65dc718e ib_get_cached_lmc -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x65e27ad8 rdma_destroy_ah_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x66acd990 rdma_user_mmap_entry_get_pgoff -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x673da97c rdma_user_mmap_entry_remove -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6879102e ib_free_send_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x68d7f855 ib_query_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x68d90428 ib_post_send_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6a6cd456 rdma_rw_ctx_init -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6b616d97 ib_find_exact_cached_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6b958320 ib_ud_ip4_csum -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6bfa1735 ib_get_vf_guid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6f32b32c ib_query_port -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6f3614b6 rdma_is_zero_gid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6f3f104f ib_qp_usecnt_inc -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6ff8aa2f rdma_nl_put_driver_u32_hex -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x709367b5 ibdev_alert -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x70ff1982 ib_create_qp_kernel -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x71a6238d ib_alloc_mr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x72854031 ib_qp_usecnt_dec -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x72c93fb2 ib_dispatch_event -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x73baf9a2 ib_modify_qp_is_ok -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x75a729a0 rdma_nl_unregister -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x75b4eaae ib_rdmacg_uncharge -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x768eca4c rdma_set_cq_moderation -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x787ccc4c ib_get_mad_data_offset -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x78b232bc ib_get_vf_stats -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7ad83808 rdma_alloc_netdev -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7d034ff5 rdma_nl_register -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7d2084cf rdma_query_gid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7d94fc9e rdma_rw_mr_factor -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7fc676e4 ib_check_mr_status -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7fd640d4 ib_query_srq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x80d74890 rdma_read_gid_attr_ndev_rcu -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x80dffefd rdma_restrack_set_name -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x81423002 rdma_restrack_put -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x81caf17d ib_destroy_srq_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x81ce0125 __ib_create_cq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8581e56c ib_create_qp_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x86cef180 rdma_addr_size -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x86d04a2b rdma_destroy_ah_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8877f3aa ib_map_mr_sg_pi -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8a17fa5c ib_find_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8a58b920 rdma_restrack_count -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8c883d7a rdma_modify_ah -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8e54ff5a ib_set_vf_link_state -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8e7528da __rdma_block_iter_next -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8f6a699b rdma_restrack_get -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8fa9a524 ib_modify_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x90e5992e ib_destroy_qp_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x90e807c7 ib_cache_gid_parse_type_str -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x90f3ac53 roce_gid_type_mask_support -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x918b46f0 ibdev_notice -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x93db76d5 rdma_rw_ctx_post -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x93e24bea ib_create_wq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9410131e rdma_nl_put_driver_u64 -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9745fd12 rdma_hold_gid_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x97e74626 rdma_rw_ctx_signature_init -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x981158ca ib_create_ah_from_wc -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9e912f58 rdma_restrack_parent_name -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9f481271 rdma_create_user_ah -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9f8ceb37 __ib_alloc_cq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa0e4be8f ib_alloc_mr_integrity -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa3b8a951 ib_device_get_by_name -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa432baf6 ib_unpack -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa46a8968 ib_dereg_mr_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa4c51278 rdma_umap_priv_init -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa5c3311d rdma_user_mmap_entry_put -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa8a6841a ib_device_set_netdev -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xae956dce ib_rate_to_mult -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb10bc719 rdma_replace_ah_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb18ded88 rdma_restrack_get_byid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb36e4148 ib_sa_pack_path -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb4d932cd rdma_link_register -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb6885615 ib_get_cached_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb7852a05 ib_ud_header_init -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb78ee7d4 ibdev_err -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb79d5e0c ib_unregister_client -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb9a52436 rdma_get_gid_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xba43e94f rdma_query_gid_table -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbae0ac51 ib_get_rmpp_segment -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbb06c858 rdma_find_gid_by_port -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbe907c87 ib_set_device_ops -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbf7f299c ib_resize_cq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbf891fb4 ib_port_register_client_groups -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc13ee424 ib_cq_pool_put -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc2a2e7fd rdma_copy_src_l2_addr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc39b6b47 rdma_roce_rescan_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc4b0ca29 ib_register_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc4f66ddd rdma_read_gid_l2_fields -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc65ce428 ib_drain_rq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc7a80d77 ib_create_send_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc93c7deb ib_modify_qp_with_udata -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcb412e0c rdma_user_mmap_io -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcb45a3c9 rdma_dev_access_netns -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcb7103d8 ib_mr_pool_get -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcb8ff382 ib_port_unregister_client_groups -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcd11f175 ib_free_cq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcd530bc3 __ib_alloc_cq_any -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xce72b063 ib_init_ah_attr_from_wc -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcfbc053b ib_unregister_driver -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd051ab1c ib_get_net_dev_by_params -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd17bb52d ib_init_ah_from_mcmember -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd25ab998 ib_set_client_data -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd2b085ff rdma_restrack_add -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd4d58bd6 ib_mad_kernel_rmpp_agent -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd5c5cba8 rdma_nl_put_driver_string -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd5f04617 rdma_port_get_link_layer -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd6636ca6 rdma_addr_size_in6 -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd6df9ff8 ib_unregister_device_and_put -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd89df65b rdma_put_gid_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xda0baf4b rdma_restrack_del -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xda0d50ec ib_sa_cancel_query -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdad1b2ec ib_map_mr_sg -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdb43ad59 ib_unregister_mad_agent -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdb63c2b3 ib_get_cached_subnet_prefix -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdbcb6c19 ibdev_warn -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdbd8d5be ib_create_qp_security -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdda935d7 ib_get_cached_port_state -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdeeec051 ib_modify_srq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe320cbfa ib_sa_path_rec_get -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe330f8cb rdma_create_ah -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe477bc1b ib_device_get_by_netdev -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 0xe8a81088 rdma_user_mmap_entry_insert_range -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe9542a24 ib_modify_port -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe9e799fc ib_ud_header_pack -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xead9ded8 ib_free_recv_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xeb2d800b ib_close_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xeb6e5cf2 ib_detach_mcast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xebbb5a3a ib_sa_join_multicast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xeeda3478 rdma_init_netdev -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf479b3d4 rdma_query_ah -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf4e2ee98 ib_destroy_wq_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf5dedb30 rdma_node_get_transport -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf606220e rdma_move_grh_sgid_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf6ed3334 ib_event_msg -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf85bb36b ib_mr_pool_destroy -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfb4aa28c rdma_addr_cancel -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfccaeb68 ib_device_put -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfe33efb0 ib_mr_pool_put -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x1356483b uverbs_get_flags64 -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x1b54bd5d ib_copy_path_rec_from_user -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x2398eca7 ib_uverbs_flow_resources_free -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x2a35b4fe uverbs_idr_class -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x2eac9a26 uverbs_copy_to -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x487e7cdc flow_resources_alloc -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x4ad1ef6c uverbs_uobject_fd_release -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x5459bc00 uverbs_destroy_def_handler -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x55c40d3f ib_umem_odp_unmap_dma_pages -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x5a23a173 ib_umem_get -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x5a2da70c ib_umem_dmabuf_unmap_pages -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x629ddc94 ib_umem_dmabuf_map_pages -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x63057f4b ib_copy_path_rec_to_user -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x67ff2de9 ib_umem_odp_release -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x6fac2524 uverbs_get_flags32 -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x764655b2 uverbs_copy_to_struct_or_zero -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x8765fdb6 ib_umem_odp_map_dma_and_lock -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x8abc5aac ib_umem_stop_invalidation_notifier -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x92c97dd3 flow_resources_add -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x96ee14d5 uverbs_finalize_uobj_create -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x9b15b4c0 _uverbs_get_const_unsigned -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xa3a03a37 ib_umem_get_peer -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xa90081f3 uverbs_uobject_put -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xadb3405b ib_copy_qp_attr_to_user -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xafcce527 ib_umem_odp_alloc_implicit -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xb4777e50 ib_uverbs_get_ucontext_file -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xb4d027be ib_umem_find_best_pgsz -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xbde5c050 ib_unregister_peer_memory_client -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xbed24db0 ib_umem_release -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xc20a546f ib_register_peer_memory_client -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xc26e4615 ib_umem_odp_alloc_child -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xc5e424d6 ib_umem_activate_invalidation_notifier -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xca6472fa uverbs_fd_class -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xd4ae400a ib_copy_ah_attr_to_user -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xd8326608 _uverbs_alloc -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xdbc9ebff ib_umem_odp_get -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xe0a74bd3 ib_umem_dmabuf_get -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xe4a54d7a ib_umem_copy_from -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xf3d7cbf2 _uverbs_get_const_signed -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x0e54dbfe iw_cm_listen -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x127df507 iw_cm_reject -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x2953860b iw_cm_accept -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x2b3c8d9c iw_cm_connect -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x73f60acf iw_cm_disconnect -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xaca0798e iw_cm_init_qp_attr -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xe3a98299 iw_destroy_cm_id -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xec862324 iw_create_cm_id -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xf3df871f iwcm_reject_msg -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x036187a2 rdma_join_multicast -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x08ac9bc7 rdma_get_service_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x0a7760f5 rdma_set_afonly -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x0ea603cb rdma_disconnect -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x0fb941ab rdma_create_user_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x16e2fb03 rdma_connect_ece -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x18d65175 rdma_notify -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x1af36505 rdma_set_min_rnr_timer -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x1f82f563 rdma_set_service_type -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x28609bd6 rdma_destroy_qp -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x2cb86283 rdma_destroy_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x33004696 rdma_accept -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x3659be7a rdma_iw_cm_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x3a769881 rdma_connect -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x3b7fde6f rdma_create_qp -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x428d5004 rdma_accept_ece -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x541950e2 rdma_res_to_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x5f21c2a1 rdma_consumer_reject_data -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x6207b51b rdma_read_gids -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x7220439c rdma_set_reuseaddr -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x7cb6e564 rdma_resolve_addr -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x7cc10cc6 rdma_resolve_route -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x879c15c4 rdma_lock_handler -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x8c47a825 rdma_init_qp_attr -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x8e471250 rdma_listen -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x907df803 rdma_event_msg -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x97d7ec7d rdma_reject -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xa2441591 rdma_reject_msg -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xb55ff3e3 rdma_set_ib_path -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xce09cef2 rdma_connect_locked -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xd70f63c0 rdma_unlock_handler -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xd88564b2 __rdma_create_kernel_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xe8b10c3b rdma_set_ack_timeout -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xe985ec6e rdma_leave_multicast -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xfde8edb7 rdma_bind_addr -EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x0a781c90 rvt_rc_error -EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x0e385842 ib_rvt_state_ops -EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x21b3544e rvt_invalidate_rkey -EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x3793a5d8 rvt_send_complete -EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x391b1b4c rvt_mcast_find -EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x39fbc00d rvt_qp_iter -EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x407e837c rvt_fast_reg_mr -EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x463cd11b rvt_add_retry_timer_ext -EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x47497768 rvt_register_device -EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x49d9b519 rvt_unregister_device -EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x568e5499 rvt_stop_rc_timers -EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x6d9e8050 rvt_qp_iter_next -EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x85d1d450 rvt_cq_enter -EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x8e76599d rvt_add_rnr_timer -EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xa51df579 rvt_copy_sge -EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xb3d3c48a rvt_compute_aeth -EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xba56e4f4 rvt_error_qp -EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xbc80f404 rvt_restart_sge -EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xc27671e6 rvt_alloc_device -EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xc52d4bf1 rvt_rc_rnr_retry -EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xc6c5e17a rvt_del_timers_sync -EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xc98cc923 rvt_ruc_loopback -EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xcda21d4a rvt_check_ah -EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xd710f6ff rvt_lkey_ok -EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xdfbd249f rvt_comm_est -EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xe8a3e517 rvt_get_credit -EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xe9cf3e43 rvt_rnr_tbl_to_usec -EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xee8ca4b4 rvt_dealloc_device -EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xf0a32e02 rvt_init_port -EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xf1687b33 rvt_rkey_ok -EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xf9b7112a rvt_qp_iter_init -EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xfe1c233f rvt_get_rwqe -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x5986b894 rtrs_clt_request -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x8eb05697 rtrs_clt_get_permit -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x9334c1cb rtrs_clt_rdma_cq_direct -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0xb5c82f64 rtrs_clt_query -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0xdabe09d0 rtrs_clt_put_permit -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0xf6735b9f rtrs_clt_close -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0xfe5cdab1 rtrs_clt_open -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x242a8646 rtrs_addr_to_str -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x46bd3134 rtrs_ib_dev_find_or_add -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x574b487e 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 0x887302f3 rtrs_addr_to_sockaddr -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0xae1d4ef2 rtrs_rdma_dev_pd_init -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0xbf2888a1 rtrs_ib_dev_put -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x2f0646d1 rtrs_srv_resp_rdma -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x45476cad rtrs_srv_open -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x77e4047d rtrs_srv_get_path_name -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x7e69b718 rtrs_srv_close -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x9e3d993c rtrs_srv_get_queue_depth -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0xb92d30bf rtrs_srv_set_sess_priv -EXPORT_SYMBOL drivers/input/gameport/gameport 0x0e229051 gameport_start_polling -EXPORT_SYMBOL drivers/input/gameport/gameport 0x19e8dfaf gameport_unregister_port -EXPORT_SYMBOL drivers/input/gameport/gameport 0x1a842e58 gameport_stop_polling -EXPORT_SYMBOL drivers/input/gameport/gameport 0x3e608b76 gameport_unregister_driver -EXPORT_SYMBOL drivers/input/gameport/gameport 0x5f5ad89c gameport_set_phys -EXPORT_SYMBOL drivers/input/gameport/gameport 0x763cc27e __gameport_register_port -EXPORT_SYMBOL drivers/input/gameport/gameport 0x9b49bf9f gameport_close -EXPORT_SYMBOL drivers/input/gameport/gameport 0xcece40d7 gameport_open -EXPORT_SYMBOL drivers/input/gameport/gameport 0xd9220421 __gameport_register_driver -EXPORT_SYMBOL drivers/input/joystick/iforce/iforce 0x5fad59a3 iforce_process_packet -EXPORT_SYMBOL drivers/input/joystick/iforce/iforce 0x83cacea5 iforce_init_device -EXPORT_SYMBOL drivers/input/joystick/iforce/iforce 0xdca60b50 iforce_send_packet -EXPORT_SYMBOL drivers/input/matrix-keymap 0xec7d7faf matrix_keypad_build_keymap -EXPORT_SYMBOL drivers/input/misc/ad714x 0x421151a4 ad714x_enable -EXPORT_SYMBOL drivers/input/misc/ad714x 0x65c9e6eb ad714x_probe -EXPORT_SYMBOL drivers/input/misc/ad714x 0x999a3fc2 ad714x_disable -EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0x4d5fb4ca 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 0x93bda978 rmi_unregister_transport_device -EXPORT_SYMBOL drivers/input/sparse-keymap 0x07a837d3 sparse_keymap_entry_from_scancode -EXPORT_SYMBOL drivers/input/sparse-keymap 0x7dfe9949 sparse_keymap_entry_from_keycode -EXPORT_SYMBOL drivers/input/sparse-keymap 0x83949494 sparse_keymap_report_event -EXPORT_SYMBOL drivers/input/sparse-keymap 0xb047be04 sparse_keymap_report_entry -EXPORT_SYMBOL drivers/input/sparse-keymap 0xdb987d51 sparse_keymap_setup -EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0x2ae008c3 ad7879_probe -EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0xa3ab949f ad7879_pm_ops -EXPORT_SYMBOL drivers/iommu/amd/iommu_v2 0x27bb6d69 amd_iommu_init_device -EXPORT_SYMBOL drivers/iommu/amd/iommu_v2 0x3c49abaa amd_iommu_unbind_pasid -EXPORT_SYMBOL drivers/iommu/amd/iommu_v2 0x92fed2e9 amd_iommu_set_invalidate_ctx_cb -EXPORT_SYMBOL drivers/iommu/amd/iommu_v2 0xb1023671 amd_iommu_bind_pasid -EXPORT_SYMBOL drivers/iommu/amd/iommu_v2 0xbedfae0d amd_iommu_set_invalid_ppr_cb -EXPORT_SYMBOL drivers/iommu/amd/iommu_v2 0xc1b11d77 amd_iommu_free_device -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x060ffc31 capi_ctr_handle_message -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x16d3b698 capi_ctr_ready -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x34e01066 attach_capi_ctr -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xc1626321 detach_capi_ctr -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xe75d7a83 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 0x1ec98754 mISDNipac_init -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x8e2c06da mISDNisac_irq -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0xb3b84e88 mISDNipac_irq -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0xbd685c12 mISDNisac_init -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNisar 0x37df3b12 mISDNisar_irq -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNisar 0xbb5fc76e mISDNisar_init -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x03a68066 mISDN_FsmRestartTimer -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x0457565b recv_Echannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x157f9f7f mISDN_register_device -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x177176c5 create_l1 -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x19711a4e mISDN_initbchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x2348cc3c mISDN_FsmFree -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x26236de8 mISDN_clock_update -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x30d25b0d mISDN_FsmDelTimer -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x313b1fde mISDN_FsmAddTimer -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x34bb8f2b recv_Dchannel_skb -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x39c32c21 mISDNDevName4ch -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x3a3fcc0d mISDN_register_Bprotocol -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x4bb5911d get_next_bframe -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x50c2230c mISDN_FsmChangeState -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x516cf1d5 recv_Bchannel_skb -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x588886a6 l1_event -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x588a4f76 get_next_dframe -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x6047df40 mISDN_FsmInitTimer -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x61fb1a35 dchannel_senddata -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x6aa98f92 mISDN_ctrl_bchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x760345d4 mISDN_freedchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x77a2cd4d bchannel_senddata -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x82ce40b5 mISDN_unregister_device -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x920c381b bchannel_get_rxbuf -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x9c928457 mISDN_FsmNew -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xa7f1edef mISDN_clear_bchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xa907595a mISDN_freebchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xacb34ad5 recv_Dchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xae26aea4 recv_Bchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xb3874abb mISDN_unregister_Bprotocol -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xbc8ed721 queue_ch_frame -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 0xe8f617eb mISDN_unregister_clock -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xf03de899 mISDN_initdchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0x01087af0 mISDN_dsp_element_unregister -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0x93df9e4b dsp_audio_law_to_s32 -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0xb07a21b8 dsp_audio_s16_to_law -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0xb98308d8 mISDN_dsp_element_register -EXPORT_SYMBOL drivers/leds/leds-ti-lmu-common 0x54a12ec4 ti_lmu_common_set_ramp -EXPORT_SYMBOL drivers/leds/leds-ti-lmu-common 0x780ccfb2 ti_lmu_common_get_ramp_params -EXPORT_SYMBOL drivers/leds/leds-ti-lmu-common 0x7ded212d 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 0x093d7db7 dm_dirty_log_destroy -EXPORT_SYMBOL drivers/md/dm-log 0x842bf6ab dm_dirty_log_type_unregister -EXPORT_SYMBOL drivers/md/dm-log 0x9b5b4470 dm_dirty_log_type_register -EXPORT_SYMBOL drivers/md/dm-log 0xb070449f dm_dirty_log_create -EXPORT_SYMBOL drivers/md/dm-snapshot 0x2e6ed045 dm_exception_store_type_register -EXPORT_SYMBOL drivers/md/dm-snapshot 0x4fef4ef7 dm_snap_origin -EXPORT_SYMBOL drivers/md/dm-snapshot 0x977ac5e5 dm_exception_store_type_unregister -EXPORT_SYMBOL drivers/md/dm-snapshot 0xa6421581 dm_exception_store_destroy -EXPORT_SYMBOL drivers/md/dm-snapshot 0xe75e7926 dm_snap_cow -EXPORT_SYMBOL drivers/md/dm-snapshot 0xfc08e302 dm_exception_store_create -EXPORT_SYMBOL drivers/md/raid456 0x7c0c298c raid5_set_cache_size -EXPORT_SYMBOL drivers/md/raid456 0xfaad4b64 r5c_journal_mode_set -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x09ab4fe1 flexcop_eeprom_check_mac_addr -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x1e254a43 flexcop_pass_dmx_packets -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x24a86aba flexcop_device_kmalloc -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x313c2d56 flexcop_wan_set_speed -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x3a6e3480 flexcop_pass_dmx_data -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x4376b8bf flexcop_pid_feed_control -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x63a3aeb6 flexcop_sram_set_dest -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x6f58ed9c flexcop_dump_reg -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x915d946c flexcop_device_initialize -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x9d6b9754 flexcop_device_exit -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xce12cf49 flexcop_device_kfree -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xd41d947e flexcop_sram_ctrl -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xfe6fdbde flexcop_i2c_request -EXPORT_SYMBOL drivers/media/common/cx2341x 0x15ac1bd0 cx2341x_ctrl_query -EXPORT_SYMBOL drivers/media/common/cx2341x 0x28240e61 cx2341x_ctrl_get_menu -EXPORT_SYMBOL drivers/media/common/cx2341x 0x2a5995f8 cx2341x_handler_init -EXPORT_SYMBOL drivers/media/common/cx2341x 0x379a7154 cx2341x_handler_set_busy -EXPORT_SYMBOL drivers/media/common/cx2341x 0x419733d5 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 0xb2b9efb7 cx2341x_ext_ctrls -EXPORT_SYMBOL drivers/media/common/cx2341x 0xb2c2eef0 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 0x5d63c3dd cypress_load_firmware -EXPORT_SYMBOL drivers/media/common/ttpci-eeprom 0x2619ab96 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 0x477edf6e 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 0x7ac17783 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-common 0xf9e0cfee vb2_buffer_in_use -EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0x178df212 vb2_dvb_dealloc_frontends -EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0x5ff68013 vb2_dvb_find_frontend -EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0x6f101da4 vb2_dvb_get_frontend -EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0x870bb7d2 vb2_dvb_unregister_bus -EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0xdc2479df vb2_dvb_register_bus -EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0xf5a27c83 vb2_dvb_alloc_frontend -EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-memops 0xa21fa765 vb2_create_framevec -EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-memops 0xccd197c7 vb2_destroy_framevec -EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-v4l2 0xf7b77212 vb2_querybuf -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x00f5efda dvb_generic_ioctl -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x032e39ed dvb_ringbuffer_write_user -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x08733236 intlog10 -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x11dbe568 dvb_ca_en50221_release -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x1daab3c0 dvb_generic_release -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x1e605c20 dvb_ringbuffer_write -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x1f8bf920 dvb_ringbuffer_read -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x2abd3f1c dvb_remove_device -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x2e0381ef dvb_unregister_adapter -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x32015aa0 dvb_dmx_swfilter_packets -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x3408e91c dvb_dmxdev_release -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x3b93d71a dvb_frontend_sleep_until -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x3d4a4b06 dvb_register_frontend -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x4362e8f5 dvb_dmx_release -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x44f0edb6 dvb_dmx_swfilter_204 -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x52a60bbf dvb_ringbuffer_avail -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x59245e80 dvb_ringbuffer_empty -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x5f2b1d95 intlog2 -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x7039fea1 dvb_unregister_device -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x752470b9 dvb_dmx_swfilter -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x7c73a67d dvb_ringbuffer_read_user -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x7f05f801 dvb_ca_en50221_frda_irq -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x8d3811e0 dvb_ca_en50221_init -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x9d912aa8 dvb_register_adapter -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x9ecf644c dvb_dmx_swfilter_raw -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xa068fac7 dvb_dmxdev_init -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xa0789a4d dvb_ringbuffer_free -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xa3ab9d71 dvb_ca_en50221_camchange_irq -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xa6eb34bc dvb_frontend_resume -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xa72b12a0 dvb_frontend_reinitialise -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xab709cf6 dvb_unregister_frontend -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xc0d5443e dvb_frontend_detach -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xc39867cb dvb_ca_en50221_camready_irq -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xcfcc9eac dvb_ringbuffer_init -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xd30a33ae dvb_device_get -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xd874641b dvb_net_release -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xe36bf9e2 dvb_ringbuffer_flush_spinlock_wakeup -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xed6f5c51 dvb_generic_open -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xed7b6096 dvb_dmx_init -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xf5111781 dvb_frontend_suspend -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xf8f114d0 dvb_ringbuffer_flush -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xf982f454 dvb_register_device -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xfb4b7836 dvb_net_init -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x0df2a7cf au8522_analog_i2c_gate_ctrl -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x10d792cc au8522_readreg -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x3698f1da au8522_sleep -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x477d7c7e au8522_release_state -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x4d66c67c au8522_led_ctrl -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x61bab352 au8522_init -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x84922e90 au8522_writereg -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xb7f11643 au8522_get_state -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xec6d889e au8522_i2c_gate_ctrl -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24113 0x2bddc1b9 cx24113_agc_callback -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24123 0x1075ca69 cx24123_get_tuner_i2c_adapter -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x072a3e9e dib0070_ctrl_agc_filter -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x93d3dc1a dib0070_set_rf_output -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0xe67f893b dib0070_get_rf_output -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0xec9f3628 dib0070_wbd_offset -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x0f4c8932 dib0090_set_switch -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x0fe1a9ba dib0090_get_wbd_offset -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x4800b532 dib0090_gain_control -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x683c93ad dib0090_dcc_freq -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x73738113 dib0090_update_tuning_table_7090 -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x847f7649 dib0090_get_wbd_target -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x8f5ec3f6 dib0090_set_tune_state -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xb197ead3 dib0090_get_current_gain -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xbb4bd339 dib0090_set_vga -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xd8f89274 dib0090_get_tune_state -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xe3abf750 dib0090_set_dc_servo -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xe41e464e dib0090_update_rframp_7090 -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xff5c7aed dib0090_pwm_gain_reset -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x13f15a92 dib3000mc_set_config -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x156a4a27 dib3000mc_pid_parse -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0xc0980f38 dib3000mc_pid_control -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0xc94da884 dib3000mc_i2c_enumeration -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0xe5b59bad dib3000mc_get_tuner_i2c_master -EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x7feb3289 dib7000m_get_i2c_master -EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x9913a48e dib7000m_pid_filter -EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0xa1c048b0 dib7000m_pid_filter_ctrl -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x31d0149f dib9000_i2c_enumeration -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x36513e16 dib9000_set_slave_frontend -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x46e14d15 dib9000_fw_pid_filter_ctrl -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x477bc09a dib9000_set_i2c_adapter -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x73f4dadf dib9000_fw_set_component_bus_speed -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x8faf4f40 dib9000_get_component_bus_interface -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x98353e35 dib9000_set_gpio -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xa574b575 dib9000_get_i2c_master -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xac01a5dd dib9000_fw_pid_filter -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xcf93d0e4 dib9000_get_slave_frontend -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xdbf4a129 dib9000_get_tuner_interface -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xf4efeb8c dib9000_firmware_post_pll_init -EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x0835040a dibx000_i2c_set_speed -EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x40636ca7 dibx000_init_i2c_master -EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x44a6145c dibx000_exit_i2c_master -EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x48ba50b5 dibx000_get_i2c_adapter -EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0xd103bd0c dibx000_reset_i2c_master -EXPORT_SYMBOL drivers/media/dvb-frontends/dvb_dummy_fe 0x27ff057e dvb_dummy_fe_qpsk_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dvb_dummy_fe 0x8c312116 dvb_dummy_fe_ofdm_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dvb_dummy_fe 0xa89c39c9 dvb_dummy_fe_qam_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lgs8gl5 0x5843e918 lgs8gl5_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lnbh29 0xdc205616 lnbh29_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/m88ds3103 0xa131beea m88ds3103_get_agc_pwm -EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1420 0xf0455f87 s5h1420_get_tuner_i2c_adapter -EXPORT_SYMBOL drivers/media/dvb-frontends/zd1301_demod 0x91d1ec8a zd1301_demod_get_i2c_adapter -EXPORT_SYMBOL drivers/media/dvb-frontends/zd1301_demod 0xe69aa52a zd1301_demod_get_dvb_frontend -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x03377110 flexcop_dma_control_size_irq -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x8cb96810 flexcop_dma_xfer_control -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x920322e2 flexcop_dma_config -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xa4c152ee flexcop_dma_allocate -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xc03f37b1 flexcop_dma_config_timer -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xf47619e9 flexcop_dma_control_timer_irq -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xff847b15 flexcop_dma_free -EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x43debf0d bt878_stop -EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0xaf88531f bt878_start -EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0xb49b55c8 bt878_device_control -EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0xcf83ae50 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 0x3ba1e7fb bttv_get_pcidev -EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x6a5a13e8 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 0xf81ed233 bttv_sub_register -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x06d49f9c dst_comm_init -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x43a983fd dst_check_sum -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x6254b283 write_dst -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x638068fc dst_error_bailout -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x74690165 read_dst -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x767d7002 dst_error_recovery -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xad85dad6 rdc_reset_state -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xd29cb3aa dst_wait_dst_ready -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xe7fc6df5 dst_pio_disable -EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x11936665 cx18_claim_stream -EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x2cdea06d cx18_reset_ir_gpio -EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x3d6a9564 cx18_stop_v4l2_encode_stream -EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x4dcb3ad4 cx18_start_v4l2_encode_stream -EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x8c2cfc6c cx18_ext_init -EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0xae8fbd39 cx18_release_stream -EXPORT_SYMBOL drivers/media/pci/cx23885/altera-ci 0x6ff7510d altera_ci_tuner_reset -EXPORT_SYMBOL drivers/media/pci/cx23885/altera-ci 0xb04c895e 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 0x01cc7ffa cx25821_sram_channel_setup_audio -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x44b517f5 cx25821_print_irqbits -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x54e0fbf9 cx25821_sram_channel_dump_audio -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x6b9ff020 cx25821_risc_databuffer_audio -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x74bcdcc5 cx25821_set_gpiopin_direction -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x8c25e299 cx25821_dev_unregister -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xaf904b27 cx25821_riscmem_alloc -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xe9050411 cx25821_sram_channels -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xfb20f504 cx25821_dev_get -EXPORT_SYMBOL drivers/media/pci/cx88/cx88-vp3054-i2c 0x4489312e vp3054_i2c_probe -EXPORT_SYMBOL drivers/media/pci/cx88/cx88-vp3054-i2c 0x467c4e7f vp3054_i2c_remove -EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x2a972129 cx88_querycap -EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x565f854c cx88_video_mux -EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x5719d91f cx88_enum_input -EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0xe94ba4a2 cx88_set_freq -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x712f2653 cx8802_unregister_driver -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x78dcb5a8 cx8802_start_dma -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x813bb6cb cx8802_get_driver -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xa39943d6 cx8802_cancel_buffers -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xbf1cb119 cx8802_register_driver -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xe719cb6d cx8802_buf_queue -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xf44480bd cx8802_buf_prepare -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x03e45195 cx88_sram_channel_dump -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x0a853c13 cx88_newstation -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x23e0f05b cx88_shutdown -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x39e11868 cx88_get_stereo -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x42b3c73c cx88_vdev_init -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x48fd832f cx88_risc_databuffer -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x494b79dd cx88_set_scale -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x4efda1dc cx88_dsp_detect_stereo_sap -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x52b8f314 cx88_set_tvaudio -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x5edb7ae5 cx88_print_irqbits -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x6141c8c5 cx88_tuner_callback -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x6ef06bcc cx88_sram_channel_setup -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x77c31df5 cx88_set_stereo -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x85635b2e 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 0xa09dda00 cx88_ir_stop -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xa9c8b375 cx88_core_put -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xb4b6b2b4 cx88_set_tvnorm -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xcddc975b cx88_core_get -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xe1a3c3c0 cx88_wakeup -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xf52434a0 cx88_ir_start -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xfa9c9190 cx88_risc_buffer -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xfee7b3d6 cx88_core_irq -EXPORT_SYMBOL drivers/media/pci/intel/ipu6/intel-ipu6 0x0171c8b3 ipu_mmu_hw_init -EXPORT_SYMBOL drivers/media/pci/intel/ipu6/intel-ipu6 0x0fe08bb1 ipu_fw_authenticate -EXPORT_SYMBOL drivers/media/pci/intel/ipu6/intel-ipu6 0x1c7ed89c ipu_buttress_auth_done -EXPORT_SYMBOL drivers/media/pci/intel/ipu6/intel-ipu6 0x2db8419a request_cpd_fw -EXPORT_SYMBOL drivers/media/pci/intel/ipu6/intel-ipu6 0x4679788c ipu_mmu_hw_cleanup -EXPORT_SYMBOL drivers/media/pci/intel/ipu6/intel-ipu6 0x7a383fce ipu_buttress_start_tsc_sync -EXPORT_SYMBOL drivers/media/pci/intel/ipu6/intel-ipu6 0x85785da8 ipu_bus_register_driver -EXPORT_SYMBOL drivers/media/pci/intel/ipu6/intel-ipu6 0x8ccd2ad3 ipu_bus_unregister_driver -EXPORT_SYMBOL drivers/media/pci/intel/ipu6/intel-ipu6 0x97570602 ipu_configure_spc -EXPORT_SYMBOL drivers/media/pci/intel/ipu6/intel-ipu6 0xc7231f03 ipu_ver -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x14f67530 ivtv_debug -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x27e7b9cf ivtv_udma_prepare -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x3bdd51a0 ivtv_init_on_first_open -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x4a442c87 ivtv_release_stream -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x4cac405b ivtv_udma_alloc -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x70385f83 ivtv_api -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x88271c4d ivtv_set_irq_mask -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x8a279754 ivtv_firmware_check -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x8bcadbbd ivtv_ext_init -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x97619687 ivtv_reset_ir_gpio -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x9781d422 ivtv_udma_unmap -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x9828e791 ivtv_stop_v4l2_encode_stream -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x9ed71950 ivtv_udma_setup -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xa9bd9ea8 ivtv_vapi -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xaa7cf82d ivtv_clear_irq_mask -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xc5e1bed4 ivtv_claim_stream -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xc6a8e771 ivtv_vapi_result -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xc873b710 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 0x16ff33a7 saa7134_ts_register -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x2968f9c2 saa7134_pgtable_alloc -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x29b8c90c saa7134_ts_unregister -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x72172495 saa7134_pgtable_free -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x730c4be3 saa7134_boards -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x81219ecc saa7134_pgtable_build -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x97751e8c saa7134_devlist_lock -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xa51b3e39 saa7134_dmasound_init -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xa697d23b saa7134_set_gpio -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xae0e6ad5 saa7134_tvaudio_setmute -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xd3041941 saa7134_dmasound_exit -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xd76d84de saa_dsp_writel -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xd97c814e saa7134_set_dmabits -EXPORT_SYMBOL drivers/media/radio/tea575x 0x1903a39f snd_tea575x_g_tuner -EXPORT_SYMBOL drivers/media/radio/tea575x 0x1ecb36d6 snd_tea575x_set_freq -EXPORT_SYMBOL drivers/media/radio/tea575x 0x4b018b41 snd_tea575x_exit -EXPORT_SYMBOL drivers/media/radio/tea575x 0x65ba29ba snd_tea575x_s_hw_freq_seek -EXPORT_SYMBOL drivers/media/radio/tea575x 0x98f0e63d snd_tea575x_hw_init -EXPORT_SYMBOL drivers/media/radio/tea575x 0xaf4882f6 snd_tea575x_init -EXPORT_SYMBOL drivers/media/radio/tea575x 0xd318b483 snd_tea575x_enum_freq_bands -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 0x9e12e343 ir_raw_gen_pd -EXPORT_SYMBOL drivers/media/rc/rc-core 0xa8e8b8da ir_raw_handler_unregister -EXPORT_SYMBOL drivers/media/rc/rc-core 0xb5516017 ir_raw_encode_carrier -EXPORT_SYMBOL drivers/media/rc/rc-core 0xf0abe6c1 ir_raw_handler_register -EXPORT_SYMBOL drivers/media/rc/rc-core 0xf446074f ir_raw_encode_scancode -EXPORT_SYMBOL drivers/media/tuners/fc0013 0x77c2172d fc0013_rc_cal_reset -EXPORT_SYMBOL drivers/media/tuners/fc0013 0xf21f961f 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 0xddbc930a xc2028_attach -EXPORT_SYMBOL drivers/media/usb/cx231xx/cx231xx 0x56e292e0 cx231xx_register_extension -EXPORT_SYMBOL drivers/media/usb/cx231xx/cx231xx 0x6c663c5c cx231xx_unregister_extension -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x151e7bab dvb_usbv2_generic_rw -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x6c3bb97a dvb_usbv2_probe -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x784b0b07 dvb_usbv2_disconnect -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x7a40701b dvb_usbv2_reset_resume -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xb0c8c461 dvb_usbv2_generic_write_locked -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xb22699e6 dvb_usbv2_generic_write -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xd3746d51 dvb_usbv2_resume -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xd9e40521 dvb_usbv2_suspend -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xdc07c976 dvb_usbv2_generic_rw_locked -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x3a5ce33e dvb_usb_generic_rw -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x6e9fbe8b 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 0xe689e10e dvb_usb_nec_rc_key_to_event -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xf3d9d442 dvb_usb_device_init -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xf5db174a dvb_usb_generic_write -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xfc7d26a4 usb_cypress_load_firmware -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-af9005-remote 0x341530cb rc_map_af9005_table -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-af9005-remote 0x492f35d3 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 0x08772fe8 dibusb_rc_query -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x0b1b329f dibusb_i2c_algo -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x3c9d4e9c dibusb2_0_power_ctrl -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x5804d33d dibusb_power_ctrl -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x6abb26be dibusb_read_eeprom_byte -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x7532306b dibusb2_0_streaming_ctrl -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x840c92e8 dibusb_streaming_ctrl -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x85511c7f 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 0xde83dbbc dibusb_pid_filter_ctrl -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-mc-common 0x6ce1396b dibusb_dib3000mc_tuner_attach -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-mc-common 0x74749aa0 dibusb_dib3000mc_frontend_attach -EXPORT_SYMBOL drivers/media/usb/em28xx/em28xx 0x528345db em28xx_register_extension -EXPORT_SYMBOL drivers/media/usb/em28xx/em28xx 0x79ad06dc em28xx_unregister_extension -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x1e799376 go7007_alloc -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x6b2db831 go7007_boot_encoder -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x7f73efcb go7007_register_encoder -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x9a87e4d3 go7007_snd_remove -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xc180558e go7007_parse_video_stream -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xc95ccf3c go7007_read_interrupt -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xd2a9c1af go7007_update_board -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xd945ec41 go7007_read_addr -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xfa853dd9 go7007_snd_init -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x0a787655 gspca_suspend -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x21c5fdcc gspca_disconnect -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x335329b8 gspca_dev_probe -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x675f73dc gspca_dev_probe2 -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x7060ef61 gspca_expo_autogain -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x9344de21 gspca_frame_add -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x9670af2c gspca_debug -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xa4a81c9b gspca_resume -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xdb699dc6 gspca_coarse_grained_expo_autogain -EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0x07413576 tm6000_init_digital_mode -EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0x1b764113 tm6000_unregister_extension -EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0xa61599e1 tm6000_register_extension -EXPORT_SYMBOL drivers/media/usb/ttusb-dec/ttusbdecfe 0xc1e97ac9 ttusbdecfe_dvbt_attach -EXPORT_SYMBOL drivers/media/usb/ttusb-dec/ttusbdecfe 0xea2e7b03 ttusbdecfe_dvbs_attach -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0x0164dc2c v4l2_async_register_subdev -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0x2243e790 v4l2_async_subdev_notifier_register -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0x2caa9f2c v4l2_async_notifier_register -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0x7eadb119 v4l2_async_unregister_subdev -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0x8c537575 v4l2_async_notifier_unregister -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0xef64e613 v4l2_async_notifier_init -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x1c9391b4 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 0x4e326ec9 v4l2_m2m_mmap -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x5352d022 v4l2_m2m_resume -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x84ffce5c v4l2_m2m_buf_done_and_job_finish -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x94557ce8 v4l2_m2m_get_vq -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0xf626dd03 v4l2_m2m_suspend -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0614dd5a v4l2_video_std_frame_period -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x076cac20 v4l2_s_ext_ctrls -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x07f89835 v4l2_ctrl_sub_ev_ops -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x082737e8 v4l2_ctrl_merge -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0860f81a v4l2_ctrl_g_ctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0875c357 video_device_release -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0a702578 v4l2_ctrl_notify -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0b733463 v4l2_ctrl_new_std_menu -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0c039c20 v4l2_ctrl_new_std_menu_items -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x123959a1 v4l2_type_names -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x15396093 v4l2_g_ext_ctrls -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x154c29a1 __v4l2_ctrl_s_ctrl_string -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x16244fe5 v4l2_prio_check -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x17bf8364 v4l2_ctrl_new_custom -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x18e93730 v4l2_ctrl_cluster -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1c172112 __v4l2_ctrl_s_ctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2342f1ae v4l2_prio_open -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x270373fa v4l2_ctrl_subscribe_event -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x28b12cc9 v4l2_format_info -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2a2b8473 __v4l2_ctrl_s_ctrl_compound -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2ba78c01 v4l2_ctrl_find -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 0x343d582a __v4l2_ctrl_modify_range -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3a0c6eca v4l2_subdev_init -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3adbd595 v4l2_field_names -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3b53cc56 video_unregister_device -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3bdd0f94 v4l2_prio_change -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4943591f v4l2_queryctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4e4b668c v4l2_ctrl_log_status -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x52805949 v4l2_ctrl_add_handler -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x5ecc777b v4l2_ctrl_activate -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x791cab23 v4l2_subdev_call_wrappers -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7d33d1c1 v4l2_s_ctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7e51ad27 __video_register_device -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8106095a v4l2_prio_max -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x83319f36 v4l2_ctrl_request_setup -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8430b1bf v4l2_ctrl_new_fwnode_properties -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x84bd170d video_ioctl2 -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x887882f3 video_device_release_empty -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x89d151d2 v4l2_ctrl_new_int_menu -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x89e3897d v4l2_ctrl_query_fill -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8f6490a7 v4l2_ctrl_g_ctrl_int64 -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x96278fea v4l2_ctrl_subdev_log_status -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x9a14ead8 v4l2_ctrl_auto_cluster -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa46f007e v4l2_ctrl_new_std_compound -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa6c05570 v4l2_ctrl_poll -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xaa41bf41 v4l2_ctrl_handler_free -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xab66b23a v4l2_ctrl_handler_log_status -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xabbd35c7 video_device_alloc -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xaf160ac9 v4l2_ctrl_new_std -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb379af10 __v4l2_ctrl_grab -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb77b0159 v4l2_prio_init -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb89de50c v4l2_try_ext_ctrls -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb94bfcd8 v4l2_ctrl_request_complete -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xbc5671dc v4l_printk_ioctl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xbd02cd8e v4l2_ctrl_handler_setup -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xbe99cbc7 v4l2_querymenu -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xbeaf4b58 __v4l2_ctrl_s_ctrl_int64 -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xcda04a5b v4l2_prio_close -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd16d9c01 v4l2_ctrl_get_int_menu -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xdc7e0128 v4l2_ctrl_fill -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe096405f v4l2_query_ext_ctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe2b92059 v4l2_video_std_construct -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 0xf5c483ac v4l2_ctrl_subdev_subscribe_event -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf6e0f477 video_devdata -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf755963b v4l2_g_ctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf933449e v4l2_ctrl_handler_init_class -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xfabc8807 v4l2_ctrl_radio_filter -EXPORT_SYMBOL drivers/memstick/core/memstick 0x0e8f3828 memstick_free_host -EXPORT_SYMBOL drivers/memstick/core/memstick 0x2c388617 memstick_new_req -EXPORT_SYMBOL drivers/memstick/core/memstick 0x353f03ef memstick_add_host -EXPORT_SYMBOL drivers/memstick/core/memstick 0x4a4e5778 memstick_init_req_sg -EXPORT_SYMBOL drivers/memstick/core/memstick 0x51693ce3 memstick_detect_change -EXPORT_SYMBOL drivers/memstick/core/memstick 0x5ea713d5 memstick_register_driver -EXPORT_SYMBOL drivers/memstick/core/memstick 0x82d9d7b5 memstick_next_req -EXPORT_SYMBOL drivers/memstick/core/memstick 0xae50437c memstick_init_req -EXPORT_SYMBOL drivers/memstick/core/memstick 0xb7fffeba memstick_set_rw_addr -EXPORT_SYMBOL drivers/memstick/core/memstick 0xcff1c239 memstick_resume_host -EXPORT_SYMBOL drivers/memstick/core/memstick 0xdc55ea42 memstick_alloc_host -EXPORT_SYMBOL drivers/memstick/core/memstick 0xe2238610 memstick_remove_host -EXPORT_SYMBOL drivers/memstick/core/memstick 0xe6ef296f memstick_suspend_host -EXPORT_SYMBOL drivers/memstick/core/memstick 0xf14e05af memstick_unregister_driver -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x06995c43 mpt_findImVolumes -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x0d657cdb mpt_detach -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x1880fb47 mpt_reset_register -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x19d4eb80 mpt_suspend -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x1c321589 mpt_resume -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x2d0523c3 mpt_put_msg_frame -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x309d9802 mpt_free_fw_memory -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x32aeed10 mpt_send_handshake_request -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x34216c52 mpt_clear_taskmgmt_in_progress_flag -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x34bed4c4 mptbase_sas_persist_operation -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x3b38ba73 mpt_Soft_Hard_ResetHandler -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x502108d0 mpt_fwfault_debug -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x5c9b24db mpt_free_msg_frame -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x5d3e7826 mpt_get_msg_frame -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x60110a3d mpt_raid_phys_disk_get_num_paths -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 0x844c6809 mpt_put_msg_frame_hi_pri -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x879997c8 mpt_raid_phys_disk_pg1 -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x93a52008 mpt_register -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x981efe92 mpt_deregister -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x9ea088ea mpt_alloc_fw_memory -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xb3d7dc47 mpt_event_register -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xb4d07853 mpt_GetIocState -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xb56a9246 mpt_set_taskmgmt_in_progress_flag -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xc047d49c mpt_halt_firmware -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xc11f8a89 mpt_raid_phys_disk_pg0 -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xc2f69aa8 mpt_print_ioc_summary -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xd6d691d6 mpt_HardResetHandler -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xdc2a636c mpt_device_driver_register -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xdd805159 ioc_list -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xdf59ebab mpt_attach -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xe45c6518 mpt_config -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xe6c1e126 mpt_event_deregister -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xfdd985c3 mpt_verify_adapter -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x055e630e mptscsih_taskmgmt_response_code -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x1e5aae2c mptscsih_shutdown -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x2a29d264 mptscsih_get_scsi_lookup -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x2b577afb mptscsih_raid_id_to_num -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x2b78d7f6 mptscsih_suspend -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x3b2d5294 mptscsih_taskmgmt_complete -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x49120f5c mptscsih_slave_destroy -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x505107e7 mptscsih_IssueTaskMgmt -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x54554bc0 mptscsih_remove -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x5c12d136 mptscsih_abort -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x60c6f51d mptscsih_resume -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x62bb27a6 mptscsih_scandv_complete -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x6c778294 mptscsih_ioc_reset -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x81f6395e mptscsih_slave_configure -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x82d5c930 mptscsih_io_done -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x99e6ad70 mptscsih_bios_param -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x9eb7e8b4 mptscsih_flush_running_cmds -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xa1601624 mptscsih_change_queue_depth -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xa342a286 mptscsih_event_process -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xaaa38527 mptscsih_is_phys_disk -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xb94c0035 mptscsih_bus_reset -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xbbcfd4eb mptscsih_info -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xc06e2057 mptscsih_host_attrs -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xcec8bf39 mptscsih_show_info -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xd54d9d1d mptscsih_qcmd -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xe4f6ea24 mptscsih_host_reset -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xe722bb25 mptscsih_dev_reset -EXPORT_SYMBOL drivers/mfd/axp20x 0x699b9e13 axp20x_device_remove -EXPORT_SYMBOL drivers/mfd/axp20x 0xa4ab2ac1 axp20x_match_device -EXPORT_SYMBOL drivers/mfd/axp20x 0xfb12491d axp20x_device_probe -EXPORT_SYMBOL drivers/mfd/dln2 0x1beec0a2 dln2_register_event_cb -EXPORT_SYMBOL drivers/mfd/dln2 0x2f579336 dln2_unregister_event_cb -EXPORT_SYMBOL drivers/mfd/dln2 0x56a55b7c dln2_transfer -EXPORT_SYMBOL drivers/mfd/htc-pasic3 0xcc3f97cc pasic3_write_register -EXPORT_SYMBOL drivers/mfd/htc-pasic3 0xe9e58299 pasic3_read_register -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x09d5a83e mc13xxx_irq_unmask -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x14390543 mc13xxx_reg_rmw -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x294194a2 mc13xxx_lock -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x61f464b7 mc13xxx_reg_write -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x7176a6ee mc13xxx_irq_mask -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x7d3d2a72 mc13xxx_irq_request -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x7fbf8a5f mc13xxx_irq_free -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x943805fa mc13xxx_reg_read -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xbd400b55 mc13xxx_unlock -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xf271933a mc13xxx_get_flags -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xff19b5e9 mc13xxx_irq_status -EXPORT_SYMBOL drivers/mfd/tps65010 0x02d4ad0f tps65013_set_low_pwr -EXPORT_SYMBOL drivers/mfd/tps65010 0x0c6ad2cf tps65010_config_vdcdc2 -EXPORT_SYMBOL drivers/mfd/tps65010 0x28485130 tps65010_config_vregs1 -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 0x4a01d99e wm1811_regmap_config -EXPORT_SYMBOL drivers/mfd/wm8994 0x77c56720 wm8994_irq_init -EXPORT_SYMBOL drivers/mfd/wm8994 0x97c2a376 wm8994_irq_exit -EXPORT_SYMBOL drivers/mfd/wm8994 0xa4d81432 wm8994_base_regmap_config -EXPORT_SYMBOL drivers/mfd/wm8994 0xd563dbb3 wm8958_regmap_config -EXPORT_SYMBOL drivers/mfd/wm8994 0xe759602a wm8994_regmap_config -EXPORT_SYMBOL drivers/misc/ad525x_dpot 0x7790059e ad_dpot_probe -EXPORT_SYMBOL drivers/misc/ad525x_dpot 0x7907c0d5 ad_dpot_remove -EXPORT_SYMBOL drivers/misc/altera-stapl/altera-stapl 0x5bafa76e altera_init -EXPORT_SYMBOL drivers/misc/c2port/core 0x21009e20 c2port_device_unregister -EXPORT_SYMBOL drivers/misc/c2port/core 0xfb2d3782 c2port_device_register -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 0x2b87f72c __tracepoint_mei_pci_cfg_read -EXPORT_SYMBOL drivers/misc/mei/mei 0x3534eeec __tracepoint_mei_reg_read -EXPORT_SYMBOL drivers/misc/mei/mei 0x3b0a488d __SCT__tp_func_mei_reg_read -EXPORT_SYMBOL drivers/misc/mei/mei 0x3fc5cdc4 __traceiter_mei_reg_write -EXPORT_SYMBOL drivers/misc/mei/mei 0x9674bf06 __tracepoint_mei_reg_write -EXPORT_SYMBOL drivers/misc/mei/mei 0xbb8eb64e __SCK__tp_func_mei_reg_write -EXPORT_SYMBOL drivers/misc/mei/mei 0xcb110fc2 __traceiter_mei_pci_cfg_read -EXPORT_SYMBOL drivers/misc/mei/mei 0xcdd22b13 __SCK__tp_func_mei_reg_read -EXPORT_SYMBOL drivers/misc/mei/mei 0xd9a48b32 __SCK__tp_func_mei_pci_cfg_read -EXPORT_SYMBOL drivers/misc/mei/mei 0xddf4c988 __traceiter_mei_reg_read -EXPORT_SYMBOL drivers/misc/tifm_core 0x0ffb277f tifm_queue_work -EXPORT_SYMBOL drivers/misc/tifm_core 0x11c7d9e4 tifm_map_sg -EXPORT_SYMBOL drivers/misc/tifm_core 0x17e07cae tifm_free_adapter -EXPORT_SYMBOL drivers/misc/tifm_core 0x30e08526 tifm_free_device -EXPORT_SYMBOL drivers/misc/tifm_core 0x5c511996 tifm_alloc_adapter -EXPORT_SYMBOL drivers/misc/tifm_core 0x780801f1 tifm_unregister_driver -EXPORT_SYMBOL drivers/misc/tifm_core 0x85e7b67d tifm_add_adapter -EXPORT_SYMBOL drivers/misc/tifm_core 0x8f2e1166 tifm_unmap_sg -EXPORT_SYMBOL drivers/misc/tifm_core 0xa4386e8e tifm_register_driver -EXPORT_SYMBOL drivers/misc/tifm_core 0xcdae11fc tifm_remove_adapter -EXPORT_SYMBOL drivers/misc/tifm_core 0xe26fcdb8 tifm_has_ms_pif -EXPORT_SYMBOL drivers/misc/tifm_core 0xf290af4a tifm_eject -EXPORT_SYMBOL drivers/misc/tifm_core 0xf9609b90 tifm_alloc_device -EXPORT_SYMBOL drivers/mmc/host/cqhci 0x0e2a4cb5 cqhci_pltfm_init -EXPORT_SYMBOL drivers/mmc/host/cqhci 0x43e4af63 cqhci_irq -EXPORT_SYMBOL drivers/mmc/host/cqhci 0xc581fd1a cqhci_resume -EXPORT_SYMBOL drivers/mmc/host/cqhci 0xdaf5fa5d cqhci_deactivate -EXPORT_SYMBOL drivers/mmc/host/cqhci 0xe603bbb3 cqhci_init -EXPORT_SYMBOL drivers/mmc/host/of_mmc_spi 0x368c3a93 mmc_spi_put_pdata -EXPORT_SYMBOL drivers/mmc/host/of_mmc_spi 0x9ebd24b1 mmc_spi_get_pdata -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x4722438b cfi_varsize_frob -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x480a6af9 cfi_fixup -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x48342196 cfi_send_gen_cmd -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xc357ca95 cfi_build_cmd -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xd7f702e0 cfi_merge_status -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xe0f8bfbf cfi_build_cmd_addr -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xe3d67251 cfi_read_pri -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xff9fa623 cfi_udelay -EXPORT_SYMBOL drivers/mtd/chips/chipreg 0x3b08f870 unregister_mtd_chip_driver -EXPORT_SYMBOL drivers/mtd/chips/chipreg 0x9f1c0c9d register_mtd_chip_driver -EXPORT_SYMBOL drivers/mtd/chips/chipreg 0xaeb16f5e do_map_probe -EXPORT_SYMBOL drivers/mtd/chips/chipreg 0xbd0e80d8 map_destroy -EXPORT_SYMBOL drivers/mtd/chips/gen_probe 0x7fdb828d mtd_do_chip_probe -EXPORT_SYMBOL drivers/mtd/lpddr/lpddr_cmds 0x0a2dd7a0 lpddr_cmdset -EXPORT_SYMBOL drivers/mtd/maps/map_funcs 0xf2bc09d9 simple_map_init -EXPORT_SYMBOL drivers/mtd/mtd 0x27adb4bf mtd_concat_create -EXPORT_SYMBOL drivers/mtd/mtd 0x2ce56a27 mtd_concat_destroy -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x0a39bdf0 nand_ecc_cleanup_ctx -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x131d0277 nand_ecc_sw_bch_get_engine -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x20194fb1 nand_ecc_sw_bch_cleanup_ctx -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x3e6d7db8 nand_ecc_get_sw_engine -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x5b86f732 nand_ecc_get_on_die_hw_engine -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x65f2c037 nand_ecc_sw_hamming_cleanup_ctx -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x680617b3 nand_ecc_init_ctx -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x6b113aee nand_ecc_sw_hamming_correct -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x6cadfa92 nand_ecc_sw_bch_calculate -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x6d862997 nand_ecc_sw_hamming_get_engine -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x773d14a9 nand_ecc_prepare_io_req -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x7818196c nand_ecc_sw_bch_correct -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x83f13aa7 nand_ecc_is_strong_enough -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xb37b58d2 nand_ecc_sw_bch_init_ctx -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xd7a808be of_get_nand_ecc_user_config -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xdd76570e nand_ecc_sw_hamming_calculate -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xe436ba31 nand_ecc_sw_hamming_init_ctx -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xe6db989b ecc_sw_hamming_correct -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xeac88729 nand_ecc_finish_io_req -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xff4351b0 ecc_sw_hamming_calculate -EXPORT_SYMBOL drivers/mtd/nand/onenand/onenand 0x519a6452 onenand_addr -EXPORT_SYMBOL drivers/mtd/nand/onenand/onenand 0xd6115f09 flexonenand_region -EXPORT_SYMBOL drivers/mtd/nand/raw/denali 0x1e5d9662 denali_init -EXPORT_SYMBOL drivers/mtd/nand/raw/denali 0x30db096f denali_calc_ecc_bytes -EXPORT_SYMBOL drivers/mtd/nand/raw/denali 0xd4189e31 denali_remove -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x05372946 rawnand_sw_bch_init -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x0ab540ab nand_write_page_raw -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x0dd51c1e nand_write_oob_std -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x1191a861 rawnand_sw_hamming_cleanup -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x2819a706 rawnand_sw_bch_cleanup -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x2c303d96 nand_scan_with_ids -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x4cc20319 nand_read_page_raw -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x512caf28 rawnand_sw_bch_correct -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x68070671 rawnand_sw_hamming_init -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x8accbfc7 rawnand_dt_parse_gpio_cs -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x8b9e948b nand_get_set_features_notsupp -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x8ecbb3b8 nand_check_erased_ecc_chunk -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xa2fe1111 nand_read_oob_std -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xa4263d95 nand_monolithic_write_page_raw -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xa64c0c5c rawnand_sw_hamming_calculate -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xc3a634ce nand_monolithic_read_page_raw -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xd1263633 rawnand_sw_hamming_correct -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xf7b55827 nand_create_bbt -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x1bedd3d3 arcnet_timeout -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x2cd436e7 arc_bcast_proto -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x6534792a arcnet_debug -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x7646bb2b free_arcdev -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x7a986dc4 arcnet_unregister_proto -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x8130673c arc_proto_map -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x86b78259 arcnet_send_packet -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x87edef26 alloc_arcdev -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x8dcb7e4b arc_proto_default -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xc87d556c arcnet_open -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xd9450795 arc_raw_proto -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xecb730b0 arcnet_interrupt -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xf628979e arcnet_close -EXPORT_SYMBOL drivers/net/arcnet/com20020 0x36d66ccf com20020_netdev_ops -EXPORT_SYMBOL drivers/net/arcnet/com20020 0x3bd39382 com20020_found -EXPORT_SYMBOL drivers/net/arcnet/com20020 0x546dda8c com20020_check -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x0228e43f b53_phylink_mac_config -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x0a531edd b53_get_ethtool_stats -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x12af2ac1 b53_fdb_add -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x1aead677 b53_brcm_hdr_setup -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x24a02954 b53_get_tag_protocol -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x26e16f99 b53_get_sset_count -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x2a7061bd b53_vlan_filtering -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x343278f4 b53_phylink_mac_link_state -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x353630b4 b53_mdb_add -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x372e7532 b53_phylink_validate -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x37d70737 b53_br_set_stp_state -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x441b14c8 b53_vlan_add -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x4a23be51 b53_phylink_mac_an_restart -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x4dbdbd82 b53_mirror_add -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x5af66c31 b53_configure_vlan -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x61ebe5c9 b53_enable_port -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x6900856e b53_set_mac_eee -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x6ce549c9 b53_get_ethtool_phy_stats -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x79231d42 b53_fdb_dump -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x7bccf863 b53_phylink_mac_link_up -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x7cb8a3a8 b53_get_strings -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x7d32c9e0 b53_switch_detect -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x7e967db8 b53_vlan_del -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x80ed3e54 b53_switch_register -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x87349597 b53_mdb_del -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x92e1b394 b53_mirror_del -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x96e3e6b5 b53_port_event -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xa3dfb109 b53_get_mac_eee -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xa5eab1a5 b53_eee_enable_set -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xb66394d4 b53_br_join -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xb9c68351 b53_br_flags -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xc824fa86 b53_phylink_mac_link_down -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xcaa9ba18 b53_br_leave -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xd518294b b53_imp_vlan_setup -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xe144cf0e b53_setup_devlink_resources -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xe2e54567 b53_disable_port -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xe8347585 b53_br_flags_pre -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xe9f2c43a b53_fdb_del -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xef7b7b2a b53_switch_alloc -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xfa5eb767 b53_br_fast_age -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xfb93dd61 b53_eee_init -EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x5f902259 b53_serdes_config -EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x8a77b763 b53_serdes_link_set -EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x95043d65 b53_serdes_link_state -EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x9ba1eab4 b53_serdes_phylink_validate -EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0xb4d933dc b53_serdes_an_restart -EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0xb995ea56 b53_serdes_init -EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0x108985bd lan9303_shutdown -EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0x65d9c28b lan9303_probe -EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0x7d71405c lan9303_remove -EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0xada83f40 lan9303_register_set -EXPORT_SYMBOL drivers/net/dsa/microchip/ksz8795 0x2ad2e1c5 ksz8_switch_register -EXPORT_SYMBOL drivers/net/dsa/microchip/ksz9477 0x76c08c15 ksz9477_switch_register -EXPORT_SYMBOL drivers/net/dsa/microchip/ksz_common 0x1d91913c ksz_switch_register -EXPORT_SYMBOL drivers/net/dsa/microchip/ksz_common 0x3524ff2d ksz_switch_remove -EXPORT_SYMBOL drivers/net/dsa/microchip/ksz_common 0x605abafd ksz_switch_alloc -EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0x2f995aea vsc73xx_probe -EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0x92fc1208 vsc73xx_shutdown -EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0x99d242fe vsc73xx_is_addr_valid -EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0xb93c14fc vsc73xx_remove -EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0x0e9d8ac0 xrs700x_switch_remove -EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0x6bf09b54 xrs700x_switch_register -EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0x6d3969cb xrs700x_switch_alloc -EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0x83b7b667 xrs7003f_info -EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0x8972bf7e xrs7004f_info -EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0xb25facfa xrs7003e_info -EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0xb89aa5e3 xrs7004e_info -EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0xfb8d2299 xrs700x_switch_shutdown -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x119721ac ei_interrupt -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x57cf5886 NS8390_init -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x5dc3c961 ei_netdev_ops -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x8db8bce3 ei_poll -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xa2326d7e ei_start_xmit -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xb0c094c5 __alloc_ei_netdev -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xb19f8746 ei_tx_timeout -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xb7d1d2db ei_close -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xdb396ea6 ei_get_stats -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xdb6cd61c ei_open -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xf9916f93 ei_set_multicast_list -EXPORT_SYMBOL drivers/net/ethernet/broadcom/bnxt/bnxt_en 0x535b7fdb bnxt_ulp_probe -EXPORT_SYMBOL drivers/net/ethernet/broadcom/cnic 0x12e9b1a6 cnic_register_driver -EXPORT_SYMBOL drivers/net/ethernet/broadcom/cnic 0x636af174 cnic_unregister_driver -EXPORT_SYMBOL drivers/net/ethernet/cavium/common/cavium_ptp 0xcf7a52dd cavium_ptp_get -EXPORT_SYMBOL drivers/net/ethernet/cavium/common/cavium_ptp 0xe2989b97 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 0x3dce88ef cxgb3_free_stid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x4cfa7d21 t3_l2t_send_slow -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x4e28804d dev2t3cdev -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x62a87b7a cxgb3_queue_tid_release -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x656955fd cxgb3_remove_tid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x7a79ba1d t3_l2t_send_event -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x7c523566 t3_register_cpl_handler -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x8ed0bdd8 cxgb3_alloc_atid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x95a8b2e9 cxgb3_alloc_stid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x973d8961 cxgb3_insert_tid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xb83df09e cxgb3_unregister_client -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xe93418a5 t3_l2e_free -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xf12a24f1 t3_l2t_get -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xf7312c20 cxgb3_ofld_send -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xfbb1835c cxgb3_register_client -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xfce06540 cxgb3_free_atid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x021654f9 cxgb4_clip_release -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x08ca102f cxgb4_clip_get -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x0f1a5528 cxgb4_unregister_uld -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x0f5fee15 cxgb4_write_sgl -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x113d347d cxgb4_create_server -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x12b1c18b cxgb4_l2t_send -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x12dd023e cxgb4_select_ntuple -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x1705b388 cxgb4_remove_server -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x170db706 cxgb4_check_l2t_valid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x19f9bc32 cxgb4_port_viid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x1f1ddf0b cxgb4_free_atid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x22aca07e cxgb4_free_stid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x26509d93 cxgb4_flush_eq_cache -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x2661572c cxgb4_update_root_dev_clip -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x33ace8d6 cxgb4_ofld_send -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x387eac6f t4_cleanup_clip_tbl -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x397a6291 cxgb4_remove_tid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x4658e4e2 cxgb4_crypto_send -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x50ee5c07 cxgb4_best_aligned_mtu -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x60c7445c cxgb4_l2t_get -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x64ba93dc cxgb4_register_uld -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x663acf33 cxgb4_l2t_alloc_switching -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x79796913 cxgb4_iscsi_init -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x8082cac7 cxgb4_map_skb -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x82f6c9c7 cxgb4_ring_tx_db -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x8ccdb126 cxgb4_smt_alloc_switching -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x8f2377be cxgb4_get_srq_entry -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x957cd018 cxgb4_alloc_stid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x9c5457f1 cxgb4_pktgl_to_skb -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa3c4aaf4 cxgb4_sync_txq_pidx -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa93a062c cxgb4_create_server_filter -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xb46c3604 cxgb4_reclaim_completed_tx -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xb559a31f cxgb4_read_tpte -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xc0125983 cxgb4_create_server6 -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xc4489165 cxgb4_port_idx -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd5839154 cxgb4_bar2_sge_qregs -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd69a0294 cxgb4_best_mtu -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xdaab13b9 cxgb4_get_tcp_stats -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xdd266f2b cxgb4_alloc_sftid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xdd79bbbb cxgb4_smt_release -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xdf4d8f2a cxgb4_read_sge_timestamp -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xe0208c31 cxgb4_l2t_release -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xe2933c15 cxgb4_port_e2cchan -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xe813c357 cxgb4_dbfifo_count -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xe8f89132 cxgb4_immdata_send -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xecd44337 cxgb4_remove_server_filter -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xed5e82b4 cxgb4_alloc_atid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xfbed81d1 cxgb4_inline_tx_skb -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xff497241 cxgb4_port_chan -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xfff0a5a8 cxgb4_write_partial_sgl -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 0x291aefe7 cxgb_find_route6 -EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x35223319 cxgbi_ppm_ppod_release -EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x5bb03da1 cxgbi_ppm_ppods_reserve -EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x6342a25d cxgb_find_route -EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x77576d50 cxgbi_ppm_release -EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x9afc5431 cxgbi_ppm_init -EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0xed9684de cxgbi_ppm_make_ppod_hdr -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x2143b269 enic_api_devcmd_proxy_by_index -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x2df15928 vnic_dev_unregister -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x35ce0520 vnic_dev_get_res_count -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x3cc70afa vnic_dev_register -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x9a3deb74 vnic_dev_get_res -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xf4230960 vnic_dev_get_pdev -EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0x1b6cedc7 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 0xd5238d7d be_roce_unregister_driver -EXPORT_SYMBOL drivers/net/ethernet/intel/iavf/iavf 0x3df3f461 iavf_unregister_client -EXPORT_SYMBOL drivers/net/ethernet/intel/iavf/iavf 0x5a08f854 iavf_register_client -EXPORT_SYMBOL drivers/net/ethernet/marvell/prestera/prestera 0x5799e064 prestera_device_unregister -EXPORT_SYMBOL drivers/net/ethernet/marvell/prestera/prestera 0x809b696b prestera_device_register -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x036e4a40 mlx4_gen_pkey_eqe -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x039e2b9b get_phv_bit -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x05709dba mlx4_SET_PORT_user_mac -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x092177e5 mlx4_max_tc -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0d8e83a8 mlx4_get_slave_port_state -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x13eafe20 mlx4_sync_pkey_table -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x203d961f mlx4_SET_PORT_PRIO2TC -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x20f01604 mlx4_SET_VPORT_QOS_get -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2351a8f6 mlx4_get_cpu_rmap -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x26458c98 mlx4_is_eq_shared -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x321c3cc2 mlx4_test_async -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4d3a9074 mlx4_release_eq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x581004e5 mlx4_get_slave_pkey_gid_tbl_len -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5a4b0c87 mlx4_SET_PORT_SCHEDULER -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5bfd892f mlx4_SET_PORT_general -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5d31dca9 mlx4_get_is_vlan_offload_disabled -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6c746326 mlx4_test_interrupt -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7567baad mlx4_gen_port_state_change_eqe -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x78c4381e mlx4_SET_MCAST_FLTR -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x799f3b75 mlx4_get_slave_node_guid -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7acbf463 mlx4_gen_slaves_port_mgt_ev -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7bd07a03 mlx4_SET_PORT_fcs_check -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7fdde0b4 mlx4_handle_eth_header_mcast_prio -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8267e32e mlx4_query_diag_counters -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x90703edb mlx4_assign_eq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9366a4c4 mlx4_ALLOCATE_VPP_set -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa0e848d1 mlx4_is_slave_active -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa416e218 mlx4_ALLOCATE_VPP_get -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa46d637a mlx4_eq_get_irq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa53f1ac0 mlx4_get_module_info -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xad23bf1c mlx4_get_eqs_per_port -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xad945cc3 mlx4_get_roce_gid_from_slave -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xaedc588c mlx4_get_slave_from_roce_gid -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb265b1ba mlx4_SET_PORT_VXLAN -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb6ff14fd mlx4_SET_PORT_user_mtu -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc6906aa4 set_and_calc_slave_port_state -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcaecf3b8 mlx4_get_parav_qkey -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xccdccc54 mlx4_SET_VPORT_QOS_set -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcdc53078 mlx4_gen_guid_change_eqe -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe7b96fbd mlx4_SET_PORT_qpn_calc -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xec8cfc9f mlx4_is_eq_vector_valid -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xedb14687 mlx4_SET_PORT_BEACON -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf1559103 mlx4_put_slave_node_guid -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfb3844e4 mlx4_tunnel_steer_add -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfe755ca6 set_phv_bit -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0174a9dd mlx5_fpga_mem_write -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0461221b mlx5_fc_create -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0845b038 __tracepoint_mlx5_fs_set_fte -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x08ff2405 mlx5_core_detach_mcg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x09374cde mlx5_mpfs_add_mac -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x09851b00 mlx5_core_create_cq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0a41feb4 mlx5_eswitch_get_core_dev -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0f37485e __traceiter_mlx5_fs_del_rule -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0f89af2a __traceiter_mlx5_fs_add_fg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x113fbbe7 mlx5_fpga_sbu_conn_destroy -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1199e9e7 mlx5_lag_get_peer_mdev -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1268e221 mlx5_eq_notifier_unregister -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x13866150 mlx5_lag_is_shared_fdb -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x162566b7 mlx5_put_uars_page -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x180a44f6 __traceiter_mlx5_fs_del_ft -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x19ff2c80 mlx5_rsc_dump_next -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1b0f8cd4 __SCK__tp_func_mlx5_fs_set_fte -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1b435806 __tracepoint_mlx5_fs_add_fg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1b70e499 mlx5_core_destroy_tir -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1b973113 mlx5_eq_get_eqe -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1c1e8610 mlx5_core_query_mkey -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1deebcf1 mlx5_rl_add_rate -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x20073b31 __traceiter_mlx5_fw -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2269d639 mlx5_notifier_register -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x24e6745e mlx5_free_bfreg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x277bfa95 mlx5_core_query_rq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2f4226b4 mlx5_core_roce_gid_set -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x33cd83ca mlx5_lag_get_roce_netdev -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x36b4a52e mlx5_comp_irq_get_affinity_mask -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3a03c987 mlx5_notifier_unregister -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3bd3c096 mlx5_core_create_tir -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3c22be35 mlx5_packet_reformat_dealloc -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3de7e21e __SCK__tp_func_mlx5_fs_add_fg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x412c65cb mlx5_cmd_exec_polling -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x424f9644 mlx5_modify_header_dealloc -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x42ab4162 mlx5_cmd_init_async_ctx -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x47271224 __tracepoint_mlx5_fs_add_rule -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x47f1d8ee mlx5_destroy_flow_group -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x48754516 mlx5_destroy_flow_table -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x48ea22c0 mlx5_eswitch_add_send_to_vport_rule -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4c1880d5 mlx5_cmd_alloc_uar -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x504149c1 mlx5_create_flow_table -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x52b0bd3d mlx5_lag_is_sriov -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x535017a7 __traceiter_mlx5_fs_add_ft -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5562311c mlx5_lag_get_slave_port -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x55824d90 mlx5_eq_create_generic -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x55f353e2 mlx5_eswitch_get_vport_metadata_for_match -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5b1ec8e0 mlx5_alloc_bfreg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5b5afdfd __SCK__tp_func_mlx5_fs_del_rule -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5befde19 __traceiter_mlx5_fs_add_rule -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5c08a38c __SCK__tp_func_mlx5_fs_add_ft -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5d19cfbc mlx5_get_uars_page -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5de381ab mlx5_cmd_free_uar -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 0x6152bfff mlx5_core_destroy_tis -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x623d0dde mlx5_rdma_rn_get_params -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x62c65d63 mlx5_eswitch_vport_match_metadata_enabled -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 0x65b47490 mlx5_fs_add_rx_underlay_qpn -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6924663d mlx5_core_modify_rq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x692f4239 __SCK__tp_func_mlx5_fw -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6a79cb0f mlx5_create_auto_grouped_flow_table -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6e35a58a mlx5_core_create_psv -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x72e6c83f mlx5_mpfs_del_mac -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7347d24c mlx5_core_dealloc_pd -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x75a2a283 mlx5_rsc_dump_cmd_create -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7a072183 mlx5_create_lag_demux_flow_table -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7a6e4054 mlx5_del_flow_rules -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7aac1994 __tracepoint_mlx5_fs_add_ft -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7c03d0d4 mlx5_core_destroy_rqt -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7eef76ca mlx5_eswitch_get_encap_mode -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7f6fc7f1 mlx5_core_query_cq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x81e965e2 mlx5_fc_destroy -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x82f43410 __SCK__tp_func_mlx5_fs_del_fte -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x841efa4a mlx5_add_flow_rules -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x85042445 mlx5_packet_reformat_alloc -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8715e4c2 mlx5_core_alloc_transport_domain -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x879f3ee1 mlx5_modify_header_alloc -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8880e85b mlx5_debug_qp_add -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8e8673cd mlx5_core_attach_mcg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8e9fcdf6 mlx5_vector2eqn -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8fd15d51 mlx5_core_create_rqt -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x90d9d42a mlx5_core_modify_cq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x91be08fc __tracepoint_mlx5_fs_del_fte -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x94f355dd __SCK__tp_func_mlx5_fs_del_fg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9532776c mlx5_fc_query -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x95669e51 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 0x9723fc84 mlx5_nic_vport_disable_roce -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x97308052 mlx5_cmd_destroy_vport_lag -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x99ae69cb __traceiter_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 0xa1cd8530 mlx5_lag_query_cong_counters -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa1d50771 mlx5_eq_update_ci -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa2adb9d5 mlx5_fpga_get_sbu_caps -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa50f2706 mlx5_core_destroy_rq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa5de33a3 mlx5_rl_remove_rate_raw -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa93ceb1e mlx5_lag_is_active -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa96c6a30 mlx5_get_fdb_sub_ns -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xab972155 mlx5_core_destroy_psv -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xaca711b4 mlx5_eq_disable -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xacfe8a18 __SCT__tp_func_mlx5_fs_del_fte -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xad6815cd mlx5_rsc_dump_cmd_destroy -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb06c0bfd __SCT__tp_func_mlx5_fs_set_fte -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb1e98a0c mlx5_eswitch_vport_rep -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb257efc5 __tracepoint_mlx5_fs_del_fg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb4e976bb __SCT__tp_func_mlx5_fs_add_ft -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb5d07f2b mlx5_core_dealloc_transport_domain -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb8c1a2d8 mlx5_fs_remove_rx_underlay_qpn -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbc8a7791 mlx5_core_modify_sq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbd02a3cd mlx5_core_query_vendor_id -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbde1ab3a mlx5_eswitch_register_vport_reps -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc046c9f1 __tracepoint_mlx5_fw -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc063ca75 __traceiter_mlx5_fs_del_fg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc23a2d5d mlx5_fpga_sbu_conn_create -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc2f20eb7 mlx5_debugfs_root -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc5cad659 mlx5_rl_add_rate_raw -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc6ce380a mlx5_core_create_mkey -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc6d0aca6 mlx5_rl_remove_rate -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc7d6af27 mlx5_core_create_rq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc86b1d72 mlx5_debug_qp_remove -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc96de3c5 mlx5_cmd_exec_cb -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc9dbbafb mlx5_core_modify_tis -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 0xcbeef8ed mlx5_buf_alloc -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xccb1f193 mlx5_core_alloc_pd -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd202432e mlx5_cmd_exec -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd3b8ae57 __tracepoint_mlx5_fs_del_ft -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd4d3804f mlx5_create_flow_group -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xda3adca3 mlx5_query_ib_port_oper -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xda917d54 mlx5_qp_debugfs_init -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 0xdc0d784e mlx5_core_destroy_mkey -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 0xdff8af3f mlx5_eswitch_unregister_vport_reps -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 0xe4668144 mlx5_core_create_tis -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe5743b5b mlx5_core_modify_cq_moderation -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe641d5ae mlx5_eq_notifier_register -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe9a6ae7b mlx5_core_destroy_cq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xeb539ee1 mlx5_rl_is_in_range -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xed5ab232 mlx5_cmd_create_vport_lag -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xede83257 mlx5_eq_destroy_generic -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xee88f64b __SCK__tp_func_mlx5_fs_add_rule -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xef972ab7 mlx5_qp_debugfs_cleanup -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf092ac94 mlx5_cmd_cleanup_async_ctx -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf2d5eb39 mlx5_core_query_sq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf2f51992 __tracepoint_mlx5_fs_del_rule -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf420ca86 mlx5_fpga_sbu_conn_sendmsg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf51c144f __SCK__tp_func_mlx5_fs_del_ft -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf54c5603 __traceiter_mlx5_fs_set_fte -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf5fd6f4b mlx5_eswitch_get_vport_metadata_for_set -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf643ad93 mlx5_comp_vectors_count -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf74c4a37 mlx5_get_flow_namespace -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfc42fd78 mlx5_lag_is_roce -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfc6b4399 mlx5_fpga_mem_read -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfcffa806 mlx5_eq_enable -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfdd96d9e mlx5_eswitch_get_proto_dev -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfe3ae5b2 mlx5_eswitch_reg_c1_loopback_enabled -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfff5703e mlx5_lag_is_master -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxfw/mlxfw 0x7d75fbe7 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 0x15f3f96f mlxsw_core_bus_device_register -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x1614e485 mlxsw_core_rx_listener_unregister -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x18b0ad00 mlxsw_afa_block_append_police -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x19fa5852 mlxsw_core_flush_owq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x1c6605f6 mlxsw_afa_block_append_qos_switch_prio -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x1cb8f858 mlxsw_reg_trans_query -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 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 0x30ca0933 mlxsw_afa_block_append_mirror -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 0x3289633c mlxsw_env_get_module_eeprom -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 0x4dd6f954 mlxsw_core_trap_state_set -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x586dd8a8 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 0x5be8ff11 mlxsw_core_skb_receive -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x5cf3dd79 mlxsw_core_bus_device_unregister -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x5ff17b5c mlxsw_afa_block_destroy -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x618a30ab mlxsw_afa_block_commit -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x61ea9293 mlxsw_core_event_listener_register -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x63874d4c mlxsw_core_port_driver_priv -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x65e16da4 mlxsw_afk_key_info_get -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x6771c4cf mlxsw_afa_create -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x692ac04e mlxsw_afk_create -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 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 0x905e6477 mlxsw_core_trap_unregister -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 0xb754651a mlxsw_core_driver_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 0xbb9a0f4f mlxsw_core_skb_transmit -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 0xbfd5b106 mlxsw_core_rx_listener_register -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xc1ec3b4c mlxsw_core_port_devlink_port_get -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 0xca815490 mlxsw_core_port_eth_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 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 0xd4c97df5 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 0xd8002aba mlxsw_core_trap_register -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 0x3f3174d6 mlxsw_i2c_driver_unregister -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_i2c 0x4e4e9d12 mlxsw_i2c_driver_register -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_pci 0x75853f68 mlxsw_pci_driver_unregister -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_pci 0xbfaf0021 mlxsw_pci_driver_register -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x0d96f809 ocelot_can_inject -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x0eb068b3 ocelot_port_lag_leave -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x12e070f1 ocelot_port_inject_frame -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x14b0b2a6 ocelot_mrp_del -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x14e0ad2f ocelot_sb_occ_max_clear -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x15e95cbe ocelot_vlan_del -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x1b1c4c73 ocelot_sb_occ_snapshot -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x1d835d82 ocelot_vcap_filter_del -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x22992acd ocelot_bridge_stp_state_set -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x271bf513 ocelot_vcap_filter_add -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 0x29f28b99 ocelot_ptp_settime64 -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x2d47eeaa ocelot_sb_pool_set -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x2e19fbd1 ocelot_port_lag_join -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x301c0723 ocelot_sb_port_pool_set -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x374f055b ocelot_get_strings -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x46e5eaf5 ocelot_port_lag_change -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x4c50cf6f ocelot_port_mdb_add -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x4cdd7666 ocelot_vlan_add -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x5366966c ocelot_ptp_adjfine -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x538f3626 ocelot_fdb_dump -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x55b470f7 ocelot_drain_cpu_queue -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x56f19524 ocelot_mrp_add_ring_role -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x582f183a ocelot_mrp_del_ring_role -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x5c815be5 ocelot_sb_tc_pool_bind_get -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x5dd8868f ocelot_port_bridge_leave -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x6045cefa ocelot_deinit_port -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x60958951 ocelot_devlink_sb_unregister -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x66d1f40e ocelot_init_timestamp -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x6a63d46f ocelot_sb_tc_pool_bind_set -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x6e19e218 ocelot_port_policer_add -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x6fb5ac6a ocelot_port_set_maxlen -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x71244c5c ocelot_port_bridge_flags -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7e7652c5 ocelot_xtr_poll_frame -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x83ceee22 ocelot_set_ageing_time -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x84fd4a34 ocelot_port_vlan_filtering -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x870b361d ocelot_mrp_add -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x8a85c6a8 ocelot_vcap_block_find_filter_by_id -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x8eb14c33 ocelot_sb_port_pool_get -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x94746266 ocelot_ptp_gettime64 -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x9808e6a1 ocelot_apply_bridge_fwd_mask -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x995d8cc1 ocelot_mact_forget -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x9fd8f18b ocelot_deinit_timestamp -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xa307b775 ocelot_port_policer_del -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xac922c1c ocelot_get_ethtool_stats -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb1b043c4 ocelot_get_ts_info -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb509e756 ocelot_ptp_adjtime -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xbaa7c3a9 ocelot_devlink_sb_register -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xbd06cd3f ocelot_mact_learn -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xbfab4282 ocelot_port_pre_bridge_flags -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xbffa48a5 ocelot_get_max_mtu -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xc02e36ea ocelot_get_sset_count -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xc806b8f5 ocelot_ptp_verify -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xcc6eebc7 ocelot_fdb_del -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xd1b7b9d4 ocelot_get_txtstamp -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xd27ba363 ocelot_ptp_enable -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xd2df513b ocelot_sb_occ_tc_port_bind_get -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xd4b825ab ocelot_hwstamp_set -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xd4d14c6e ocelot_deinit -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xd81b2b6a ocelot_port_txtstamp_request -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xda1b1f2e ocelot_port_mdb_del -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xdb1764b3 ocelot_hwstamp_get -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xdd782f12 ocelot_init_port -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xddaeed30 ocelot_vlan_prepare -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xe134f5a9 ocelot_init -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xe2fd838e ocelot_port_bridge_join -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xe4b05ff5 ocelot_fdb_add -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xfab9bce4 ocelot_sb_pool_get -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xfeb001db ocelot_sb_occ_port_pool_get -EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x46e8aa37 qed_get_fcoe_ops -EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x4f264472 qed_put_iscsi_ops -EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 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 0xaa7a145e qed_get_iscsi_ops -EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0xf6afedf8 qed_get_rdma_ops -EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0xfad8b399 qed_get_eth_ops -EXPORT_SYMBOL drivers/net/ethernet/qlogic/qede/qede 0xb81196df qede_rdma_unregister_driver -EXPORT_SYMBOL drivers/net/ethernet/qlogic/qede/qede 0xc792d751 qede_rdma_register_driver -EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x47cb0377 hdlcdrv_unregister -EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x940ea0c6 hdlcdrv_transmitter -EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0xb56ffd7c hdlcdrv_register -EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0xbbf0190c hdlcdrv_receiver -EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0xcae8f5ea hdlcdrv_arbitrate -EXPORT_SYMBOL drivers/net/mdio 0x3e17f466 mdio_set_flag -EXPORT_SYMBOL drivers/net/mdio 0x424a69a2 mdio45_ethtool_ksettings_get_npage -EXPORT_SYMBOL drivers/net/mdio 0x60443957 mdio45_probe -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 0x0d0f0eca mdiobb_write -EXPORT_SYMBOL drivers/net/mdio/mdio-bitbang 0x1edb51e1 free_mdio_bitbang -EXPORT_SYMBOL drivers/net/mdio/mdio-bitbang 0x684a815b alloc_mdio_bitbang -EXPORT_SYMBOL drivers/net/mdio/mdio-bitbang 0x7324d0ea mdiobb_read -EXPORT_SYMBOL drivers/net/mdio/mdio-cavium 0x3d8b9636 cavium_mdiobus_write -EXPORT_SYMBOL drivers/net/mdio/mdio-cavium 0xd8e3b979 cavium_mdiobus_read -EXPORT_SYMBOL drivers/net/mii 0x0a82b7a5 generic_mii_ioctl -EXPORT_SYMBOL drivers/net/mii 0x55517951 mii_nway_restart -EXPORT_SYMBOL drivers/net/mii 0x5f2231e1 mii_ethtool_set_link_ksettings -EXPORT_SYMBOL drivers/net/mii 0x63248993 mii_check_link -EXPORT_SYMBOL drivers/net/mii 0x83dce2ec mii_check_gmii_support -EXPORT_SYMBOL drivers/net/mii 0xa2f23067 mii_link_ok -EXPORT_SYMBOL drivers/net/mii 0xa76bb236 mii_check_media -EXPORT_SYMBOL drivers/net/mii 0xe959d823 mii_ethtool_get_link_ksettings -EXPORT_SYMBOL drivers/net/mii 0xeef8d2cc mii_ethtool_sset -EXPORT_SYMBOL drivers/net/mii 0xfc871408 mii_ethtool_gset -EXPORT_SYMBOL drivers/net/pcs/pcs-lynx 0xcb6894ec lynx_pcs_create -EXPORT_SYMBOL drivers/net/pcs/pcs-lynx 0xead7311f lynx_pcs_destroy -EXPORT_SYMBOL drivers/net/phy/bcm-phy-lib 0x0187fee3 bcm54xx_auxctl_write -EXPORT_SYMBOL drivers/net/ppp/pppox 0x729a26c7 pppox_ioctl -EXPORT_SYMBOL drivers/net/ppp/pppox 0xa9f29ebf pppox_unbind_sock -EXPORT_SYMBOL drivers/net/ppp/pppox 0xc463b219 register_pppox_proto -EXPORT_SYMBOL drivers/net/ppp/pppox 0xce847f93 pppox_compat_ioctl -EXPORT_SYMBOL drivers/net/ppp/pppox 0xe0ff7a18 unregister_pppox_proto -EXPORT_SYMBOL drivers/net/sungem_phy 0x6d055c78 sungem_phy_probe -EXPORT_SYMBOL drivers/net/team/team 0x4540e716 team_modeop_port_enter -EXPORT_SYMBOL drivers/net/team/team 0x6cc46589 team_mode_unregister -EXPORT_SYMBOL drivers/net/team/team 0x89bc7460 team_options_unregister -EXPORT_SYMBOL drivers/net/team/team 0x9d5b5eae team_options_change_check -EXPORT_SYMBOL drivers/net/team/team 0xbdaa08a6 team_mode_register -EXPORT_SYMBOL drivers/net/team/team 0xcb1378ea team_option_inst_set_change -EXPORT_SYMBOL drivers/net/team/team 0xd0e4dcb0 team_options_register -EXPORT_SYMBOL drivers/net/team/team 0xe61f39c1 team_modeop_port_change_dev_addr -EXPORT_SYMBOL drivers/net/usb/usbnet 0x17f88fb9 usbnet_manage_power -EXPORT_SYMBOL drivers/net/usb/usbnet 0x475e07db usbnet_link_change -EXPORT_SYMBOL drivers/net/usb/usbnet 0xa1f47aff usbnet_device_suggests_idle -EXPORT_SYMBOL drivers/net/wan/hdlc 0x194c91b4 alloc_hdlcdev -EXPORT_SYMBOL drivers/net/wan/hdlc 0x33b640b0 hdlc_open -EXPORT_SYMBOL drivers/net/wan/hdlc 0x3753c355 hdlc_ioctl -EXPORT_SYMBOL drivers/net/wan/hdlc 0x3c4ca16e detach_hdlc_protocol -EXPORT_SYMBOL drivers/net/wan/hdlc 0x3e1925f4 register_hdlc_protocol -EXPORT_SYMBOL drivers/net/wan/hdlc 0x41b56ff5 unregister_hdlc_protocol -EXPORT_SYMBOL drivers/net/wan/hdlc 0x487af506 hdlc_start_xmit -EXPORT_SYMBOL drivers/net/wan/hdlc 0x83f5f96a hdlc_close -EXPORT_SYMBOL drivers/net/wan/hdlc 0xd3147316 attach_hdlc_protocol -EXPORT_SYMBOL drivers/net/wan/hdlc 0xe9f91630 unregister_hdlc_device -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x058cee2c ath_hw_cycle_counters_update -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x0a2a6ea9 ath_is_mybeacon -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x108b188f ath_is_49ghz_allowed -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x1837dadd ath_hw_keyreset -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x2630dfd5 ath_hw_get_listen_time -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x3eb25e69 ath_hw_keysetmac -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x43158970 ath_printk -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x4571aea8 ath_is_world_regd -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x4fe740bb ath_hw_setbssidmask -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x68bc17e3 ath_key_config -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x6b95e9b1 dfs_pattern_detector_init -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xa0522d02 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 0xb6588ba6 ath_bus_type_strings -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xcec8983c ath_key_delete -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xda9f3670 ath_regd_init -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xf98605d5 ath_regd_get_band_ctl -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xfad7b94d ath_rxbuf_alloc -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x015e5db2 ath10k_debug_mask -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x21b0f16f ath10k_ce_cancel_send_next -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x2804ea3e ath10k_ce_completed_send_next_nolock -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x3b614214 ath10k_ce_dump_registers -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x3e1a7930 ath10k_htc_tx_completion_handler -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x4318aaaf ath10k_coredump_get_mem_layout -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x45163f26 ath10k_core_napi_enable -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x476fc9db ath10k_core_fetch_board_file -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x4bf4b918 ath10k_core_free_board_files -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x4f5e1924 ath10k_ce_num_free_src_entries -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x510e6edc ath10k_core_unregister -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x55c77e5c ath10k_ce_alloc_pipe -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x5742f945 ath10k_ce_completed_recv_next_nolock -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x58dfc214 ath10k_ce_free_rri -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x5a13f7e4 ath10k_info -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x5ac24954 ath10k_htt_txrx_compl_task -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x5ff4dd90 ath10k_core_stop -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x604b8da0 ath10k_core_register -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x64bd8230 ath10k_ce_deinit_pipe -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x66f0472d ath10k_err -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x6e180494 ath10k_warn -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x74df55ed ath10k_mac_tx_push_pending -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x78101a38 ath10k_core_start -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x7f3bd20f ath10k_ce_send_nolock -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x8312b142 ath10k_htt_rx_pktlog_completion_handler -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x861ca842 ath10k_core_start_recovery -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x86b31284 __ath10k_ce_rx_num_free_bufs -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x8ca4ff41 ath10k_core_destroy -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x9430810e ath10k_ce_enable_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x94f6d8e9 ath10k_ce_revoke_recv_next -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x9a8ff006 ath10k_htt_rx_hl_indication -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x9c3d79df __tracepoint_ath10k_log_dbg -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x9df97b92 ath10k_htc_notify_tx_completion -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xa1cca7e4 ath10k_ce_alloc_rri -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xa24812a8 ath10k_ce_rx_update_write_idx -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xa5d61c71 ath10k_bmi_read_memory -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xa7a65043 ath10k_ce_per_engine_service -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xa991fc78 ath10k_ce_send -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xabfc7745 ath10k_htc_process_trailer -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xacc699c9 ath10k_print_driver_info -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xae35ed90 __ath10k_ce_send_revert -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xb12825ae ath10k_coredump_new -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xb2f722d1 ath10k_core_check_dt -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xb63106d0 ath10k_htt_t2h_msg_handler -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xbdd67477 ath10k_ce_per_engine_service_any -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xc1ce44a4 ath10k_ce_disable_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xccdce3ed ath10k_ce_disable_interrupt -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xcf4e8d25 ath10k_ce_enable_interrupt -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xd74746cc ath10k_ce_rx_post_buf -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xd9d74381 ath10k_htc_rx_completion_handler -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xe329acd4 ath10k_ce_completed_send_next -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xe7511aee ath10k_ce_free_pipe -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xf21b95ef ath10k_core_napi_sync_disable -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xf3967115 ath10k_ce_init_pipe -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xf5b65bb0 ath10k_ce_completed_recv_next -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xf6a5729d ath10k_bmi_start -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xfd51805e ath10k_htt_hif_tx_complete -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xfd7e7b37 ath10k_core_create -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x014eb11d ath11k_core_deinit -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x2061e1ba ath11k_hal_srng_init -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x2d0317b3 ath11k_ce_rx_post_buf -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x30a5910a ath11k_hal_srng_deinit -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x44927563 ath11k_core_free -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x5e2cc684 ath11k_ce_per_engine_service -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x5e448ad7 ath11k_ce_cleanup_pipes -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x633791c0 ath11k_ce_get_shadow_config -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x680b95c6 ath11k_debugfs_soc_destroy -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x6e0d0525 ath11k_core_resume -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x756affee ath11k_core_pre_init -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x75b22c03 ath11k_ce_alloc_pipes -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x881d508c ath11k_dp_service_srng -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x8ae6ce58 ath11k_core_alloc -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x8b2d359b ath11k_core_suspend -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x9c51bcc4 ath11k_debug_mask -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xb6402017 ath11k_info -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xb6908f05 ath11k_ce_free_pipes -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xc0fd6a24 ath11k_warn -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xc8a98a46 ath11k_ce_get_attr_flags -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xd22c6a95 ath11k_core_init -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xf0197188 ath11k_cold_boot_cal -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xf934c504 ath11k_err -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xff978d32 ath11k_qmi_deinit_service -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x05aca9f0 ath6kl_core_create -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x1354043d ath6kl_warn -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x1d325130 ath6kl_hif_intr_bh_handler -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x22536b18 ath6kl_cfg80211_resume -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x3502feef ath6kl_info -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x3cb5060f ath6kl_core_tx_complete -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x91cfb84a ath6kl_hif_rw_comp_handler -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x950f2895 ath6kl_core_init -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xb2821fe6 ath6kl_core_destroy -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xb881b1a9 ath6kl_printk -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xb9a689dd ath6kl_err -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xd7221091 ath6kl_cfg80211_suspend -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xda0baa2b ath6kl_read_tgt_stats -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xdd0b507c ath6kl_stop_txrx -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xfbf1140d ath6kl_core_cleanup -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xfecdcfef ath6kl_core_rx_complete -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x0d4e29d7 ath9k_cmn_setup_ht_cap -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x0f7c5877 ath9k_cmn_debug_phy_err -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x132465d1 ath9k_cmn_spectral_deinit_debug -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x19bf4daa ath9k_cmn_reload_chainmask -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x329b14ba ath_cmn_process_fft -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x33a9cd4d ath9k_cmn_process_rate -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x43f7fc1e ath9k_cmn_get_hw_crypto_keytype -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x59e5a4e5 ath9k_cmn_init_crypto -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x5a3875dd ath9k_cmn_debug_recv -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x68b288d7 ath9k_cmn_get_channel -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x776bdd49 ath9k_cmn_spectral_init_debug -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x7eb0354e ath9k_cmn_update_txpow -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x91131df4 ath9k_cmn_init_channels_rates -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xa64168df ath9k_cmn_beacon_config_sta -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xb0fc5c8f ath9k_cmn_process_rssi -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xb429f2ee ath9k_cmn_rx_accept -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xb6af5e90 ath9k_cmn_beacon_config_ap -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xb76fccc7 ath9k_cmn_debug_stat_rx -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xb7ff3a86 ath9k_cmn_debug_base_eeprom -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xc1c4ee49 ath9k_cmn_debug_modal_eeprom -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xcb6defcd ath9k_cmn_beacon_config_adhoc -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xd2981357 ath9k_cmn_count_streams -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xe0e0a32a ath9k_cmn_spectral_scan_trigger -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xe1ed6da3 ath9k_cmn_spectral_scan_config -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xf57f65e1 ath9k_cmn_rx_skb_postprocess -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x016d742f ath9k_hw_settsf64 -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x03c36d72 ath9k_hw_gpio_request_out -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x04394b80 ath9k_hw_reset_tsf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x064a2d9d ath9k_hw_btcoex_init_2wire -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0ae6d44b ath9k_hw_intrpend -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0d6f0112 ath9k_hw_btcoex_enable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0db979c8 ath9k_hw_setuprxdesc -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0edc370b ath9k_hw_btcoex_bt_stomp -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0f77dafc ath9k_hw_get_tsf_offset -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x11be75e0 ath9k_hw_btcoex_init_mci -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1507b4a7 ath9k_hw_addrxbuf_edma -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x174dc85c ath9k_hw_getchan_noise -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x17a3ba95 ath9k_hw_getnf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x17cabbc3 ath9k_hw_phy_disable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1a94ba6b ar9003_hw_disable_phy_restart -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1ad69c62 ar9003_mci_get_next_gpm_offset -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1c68e9b7 ath9k_hw_disable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1c6b0182 ath9k_hw_gen_timer_start -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1d48a54c ath9k_hw_btcoex_deinit -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x22ac56c4 ath9k_hw_set_txq_props -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2566aae5 ath9k_hw_ani_monitor -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x25d1d5e1 ath9k_hw_set_tx_filter -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x292edd2d ath9k_hw_init_btcoex_hw -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x318a4ddd ath9k_hw_computetxtime -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x330c538d ar9003_paprd_create_curve -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x343970a8 ar9003_paprd_enable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3519da58 ath9k_hw_gettsf32 -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x367cbd66 ath9k_hw_resettxqueue -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3cc69fd6 ath9k_hw_deinit -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3d0c0f15 ath_gen_timer_alloc -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3d235342 ath9k_hw_resume_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3e3cfd96 ath9k_hw_kill_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x431f64da ar9003_mci_setup -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x43c4d101 ath9k_hw_numtxpending -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4979da02 ar9003_paprd_setup_gain_table -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x577e7451 ath9k_hw_set_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5b2c077c ath9k_hw_process_rxdesc_edma -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5d4db03a ar9003_paprd_populate_single_table -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5d97020c ath9k_hw_check_nav -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5ebc5444 ath9k_hw_set_gpio -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x63989d93 ath9k_hw_set_tsfadjust -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x673f59cc ath9k_hw_set_txpowerlimit -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x69b55645 ath9k_hw_setmcastfilter -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6cff0907 ath9k_hw_init -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6d6a9a99 ath9k_hw_getrxfilter -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x70c8773a ath9k_hw_gpio_request_in -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7104c06e ath9k_hw_wait -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x76942815 ath9k_hw_disable_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7824d12e ath9k_hw_gen_timer_stop -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7a91d6bd ar9003_paprd_is_done -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7ba1fcce ath9k_hw_stop_dma_queue -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7bb08283 ath9k_hw_reset_calvalid -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7d6a5a9f ath9k_hw_btcoex_init_3wire -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7f30fc93 ath9k_hw_stopdmarecv -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x837cb3be ar9003_mci_get_interrupt -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x84632cb9 ath9k_hw_putrxbuf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x88521883 ath9k_hw_btcoex_init_scheme -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x901e6770 ath9k_hw_write_associd -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x97e23d35 ath9k_hw_loadnf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9bf36f77 ath9k_hw_disable_mib_counters -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa4366f32 ar9003_is_paprd_enabled -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa50e2510 ath9k_hw_setpower -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa53885f2 ath9k_hw_setrxabort -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa56026ad ath9k_hw_abortpcurecv -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa5b16552 ath9k_hw_set_rx_bufsize -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa61ade99 ath9k_hw_gpio_free -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xaa2d1408 ath9k_hw_wow_apply_pattern -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xaa923797 ath9k_hw_setuptxqueue -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xab6977e9 ar9003_mci_state -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xae94a32d ath9k_hw_updatetxtriglevel -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xafd97302 ath9k_hw_releasetxqueue -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb1c4b367 ar9003_hw_bb_watchdog_dbg_info -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb62bc1db ath9k_hw_gettxbuf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb6a6005a ar9003_mci_set_bt_version -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb6e2315c ath9k_hw_init_global_settings -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb86541b1 ath9k_hw_puttxbuf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb8ccfcb9 ath9k_hw_bstuck_nfcal -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbb348f32 ar9003_mci_send_message -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbbfcd1cd ath_gen_timer_free -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbd44476a ath9k_hw_startpcureceive -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbf264321 ath9k_hw_setup_statusring -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbff6655e ath9k_hw_check_alive -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc10928c1 ath9k_hw_btcoex_set_concur_txprio -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc130e362 ath9k_hw_rxprocdesc -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc14f3806 ar9003_hw_bb_watchdog_check -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc2dd56c8 ath_gen_timer_isr -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc865dfa9 ar9003_mci_send_wlan_channels -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc93b7a68 ath9k_hw_name -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc9835dc6 ath9k_hw_setopmode -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xcd66c5fd ath9k_hw_btcoex_disable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd500a132 ath9k_hw_set_sta_beacon_timers -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd6f4e48e ath9k_hw_reset -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd912c8ec ath9k_hw_beaconinit -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd93c2392 ath9k_hw_txstart -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xdc72654e ath9k_hw_setrxfilter -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe3c50f83 ath9k_hw_wow_enable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe5e7d79a ar9003_mci_cleanup -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe61c040b ath9k_hw_get_txq_props -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe69ff4f7 ath9k_hw_btcoex_set_weight -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xeb0c067e ath9k_hw_setantenna -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf1df4d41 ath9k_hw_beaconq_setup -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf1ef7894 ar9003_get_pll_sqsum_dvc -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf3666a61 ath9k_hw_gpio_get -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf3892825 ath9k_hw_enable_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf57a5c88 ar9003_paprd_init_table -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf6f2a1ef ath9k_hw_gettsf64 -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xfb37f28b ath9k_hw_abort_tx_dma -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xff72594e ath9k_hw_wow_wakeup -EXPORT_SYMBOL drivers/net/wireless/atmel/atmel 0x1ad9c68a atmel_open -EXPORT_SYMBOL drivers/net/wireless/atmel/atmel 0x43e56477 init_atmel_card -EXPORT_SYMBOL drivers/net/wireless/atmel/atmel 0x7c9b15a6 stop_atmel_card -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x0a45afb9 brcmu_pktq_mdeq -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x1906648e brcmu_boardrev_str -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x2320237a brcmu_pktq_penq_head -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x37bd6e5b brcmu_pktq_flush -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x47e05481 brcmu_pktq_pdeq_tail -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x5b698a0f brcmu_pktq_penq -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x688a8130 brcmu_pktq_pdeq_match -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x72c5e761 brcmu_pkt_buf_free_skb -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x97a01e33 brcmu_pktq_pdeq -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xa17c0ccf brcmu_dotrev_str -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xc3a24a7e brcmu_pkt_buf_get_skb -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xd6217d91 brcmu_d11_attach -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xd8967ef6 brcmu_pktq_init -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xec8526ab brcmu_pktq_pflush -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xf7fdd7a6 brcmu_pktq_peek_tail -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xf9cb942a brcmu_pktq_mlen -EXPORT_SYMBOL drivers/net/wireless/cisco/airo 0x2bbe8b66 stop_airo_card -EXPORT_SYMBOL drivers/net/wireless/cisco/airo 0x81b7082b init_airo_card -EXPORT_SYMBOL drivers/net/wireless/cisco/airo 0xb02155e8 reset_airo_card -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x06adc4fd libipw_get_channel -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x07582e01 libipw_get_geo -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x17d35e3f libipw_wx_set_encode -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x25fa8319 libipw_channel_to_freq -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x27a1b709 libipw_freq_to_channel -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x295e5914 libipw_txb_free -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x45c0b517 libipw_is_valid_channel -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x5a0af306 libipw_wx_get_scan -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x6392a7a0 alloc_libipw -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x67b326a6 libipw_get_channel_flags -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x6916ad01 libipw_wx_get_encodeext -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x7374b8d8 free_libipw -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x8f604c9d libipw_networks_age -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x93f56456 libipw_rx_mgt -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x9b803aeb libipw_channel_to_index -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xa6ebbf11 libipw_wx_set_encodeext -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xa9371dae libipw_rx -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xca02608d libipw_xmit -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xdcd4e9c6 libipw_set_geo -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xe4324a17 libipw_wx_get_encode -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x022fcd2f il_send_bt_config -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x030a8ca7 il_tx_cmd_complete -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x06fc2817 il_connection_init_rx_config -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x0821ec29 il_dbgfs_register -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x083904d7 il_dbgfs_unregister -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x09bec118 il_read_targ_mem -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x0ed0cc0b il_eeprom_query16 -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x117663f7 il_check_rxon_cmd -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x13a02f66 il_tx_queue_free -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1550a55a il_mac_change_interface -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x17cb3cf1 _il_poll_bit -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x190ceff7 il_set_tx_power -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1b574b47 il_mac_config -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1b60e1df il_send_cmd_pdu -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1c569533 il_usecs_to_beacons -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1d9ad1bd il_clear_bit -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1f18dfb0 il_get_passive_dwell_time -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1f54d54d il_send_rxon_timing -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x24642ae8 il_alloc_txq_mem -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x24656338 il_get_free_ucode_key_idx -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x25815a99 il_hdl_pm_sleep -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x29684bcb il_mac_bss_info_changed -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2b7d2133 il_send_cmd -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2bf7eea6 il_queue_space -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2d5dfcc6 il_setup_watchdog -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3478d107 il_irq_handle_error -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x36eb99af il_mac_sta_remove -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3d46b0c2 il_pm_ops -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3dc6b8ce il_rx_queue_space -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x40763bdd il_wr_prph -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x416bd26a il_debug_level -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x433a6a44 il_force_reset -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x45969b29 il_get_active_dwell_time -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x496c2110 il_cmd_queue_free -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x4afab1e3 _il_apm_stop -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x4c315f5f il_fill_probe_req -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x4e197151 il_init_geos -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x58c021a1 il_set_rxon_channel -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x58dbe94c il_send_cmd_sync -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6059a5d3 il_apm_stop -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x63fa0277 il_get_single_channel_number -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x65c04196 il_power_update_mode -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x67463fdf il_rx_queue_update_write_ptr -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6d26b9af il_set_rate -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6d473d88 il_eeprom_query_addr -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6de8d4cd il_txq_update_write_ptr -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x709a62a2 il_mac_conf_tx -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7107d032 il_add_station_common -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7817f894 il_restore_stations -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7dde6497 il_init_channel_map -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7f530395 il_get_lowest_plcp -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x80f23250 il_hdl_spectrum_measurement -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x843b6ec3 il_scan_cancel -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x867f95ff il_leds_init -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x887130f3 il_clear_ucode_stations -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x89941294 il_add_beacon_time -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x8fa2347b il_set_bit -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x91063dc5 il_hdl_error -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x915b5dde il_send_lq_cmd -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x937dc459 il_mac_remove_interface -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9cc714af il_bg_watchdog -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9d10b193 il_send_stats_request -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9e0615c2 il_cmd_queue_unmap -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa00c5274 il_mac_flush -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa18e9169 il_set_rxon_ht -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa438e5de il_hdl_pm_debug_stats -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa5291342 il_eeprom_init -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xae2f9fdf il_set_rxon_hwcrypto -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xae77bb28 il_free_txq_mem -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb16a6dad il_write_targ_mem -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb192a319 il_apm_init -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb4f9f5b0 il_setup_scan_deferred_work -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb5ff60b4 il_update_stats -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb65510a3 il_get_cmd_string -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb7bd33ff il_isr -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb9cb5c1d il_send_cmd_pdu_async -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xbbe15a9c il_set_decrypted_flag -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc0a6f01e il_init_scan_params -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc4eacb61 il_full_rxon_required -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc71d66e8 il_poll_bit -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc98d13e4 il_scan_cancel_timeout -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xcac95801 il_is_ht40_tx_allowed -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xcd54cde9 il_hdl_csa -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd0ad51b3 il_chswitch_done -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd2d3fa6a il_mac_add_interface -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xda09e911 il_tx_queue_reset -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xdb84811e il_send_add_sta -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xdeaa7f85 il_power_initialize -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe20e23f4 il_tx_cmd_protection -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe4a54eb0 il_mac_reset_tsf -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe543dc95 il_eeprom_free -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe58d8ac1 il_free_channel_map -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe6ad33d4 il_rx_queue_alloc -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe7469aa2 il_tx_queue_unmap -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe8512a64 il_cancel_scan_deferred_work -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xea54d41a il_tx_queue_init -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xec140699 il_set_flags_for_band -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xec4ca3f3 il_free_geos -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xee59a49e il_rd_prph -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xefeec970 il_get_channel_info -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf0f7a417 il_mac_hw_scan -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf587e405 il_setup_rx_scan_handlers -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf70a693b il_bcast_addr -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xfba6a2e3 il_leds_exit -EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x16bd7f3b __traceiter_iwlwifi_dev_ucode_event -EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x313ae269 __SCK__tp_func_iwlwifi_dev_ucode_cont_event -EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x332d9714 __SCK__tp_func_iwlwifi_dev_ucode_event -EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x38688d65 __SCT__tp_func_iwlwifi_dev_ucode_wrap_event -EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x3a2a40a5 __SCT__tp_func_iwlwifi_dev_ucode_cont_event -EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x3b415c0d __tracepoint_iwlwifi_dev_ucode_wrap_event -EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x6c99ae02 __tracepoint_iwlwifi_dev_ucode_event -EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xa6b69e53 __SCK__tp_func_iwlwifi_dev_ucode_wrap_event -EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xaccd2037 __tracepoint_iwlwifi_dev_ucode_cont_event -EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xb89f87da __traceiter_iwlwifi_dev_ucode_cont_event -EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xd81e2f28 __SCT__tp_func_iwlwifi_dev_ucode_event -EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xf1ec4a80 __traceiter_iwlwifi_dev_ucode_wrap_event -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x014f7cc5 hostap_free_data -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x0898e111 hostap_80211_ops -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x096d6c02 hostap_init_ap_proc -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x13abdd5a hostap_dump_tx_header -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x1785a3d0 hostap_check_sta_fw_version -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x184fdadf hostap_set_auth_algs -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x200e233c hostap_remove_proc -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x21def532 hostap_set_antsel -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x27adb521 hostap_set_string -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x2c0be337 hostap_80211_rx -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x48631be6 hostap_info_process -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x75679c1e hostap_get_porttype -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x75934c58 hostap_set_multicast_list_queue -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x75c6aba3 hostap_setup_dev -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x77bbba41 hostap_info_init -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x77c107ee hostap_set_word -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x78c8c2e0 hostap_set_hostapd -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x79befb99 hostap_set_encryption -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x7f571567 hostap_set_hostapd_sta -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x7fb75891 hostap_dump_rx_header -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x854e5693 hostap_set_roaming -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x8746e680 hostap_init_data -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x983f9d35 hostap_init_proc -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xb4b77c8b hostap_80211_get_hdrlen -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xc2fa592a hostap_master_start_xmit -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xc77306ec prism2_update_comms_qual -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xd9eea3bd hostap_remove_interface -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xeb59b7da hostap_handle_sta_tx_exc -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xf2caee6d hostap_add_interface -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x074b713e __orinoco_ev_rx -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x135943c9 orinoco_if_del -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x21214ee2 orinoco_down -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x27ad2faf free_orinocodev -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x43df9b9a hermes_struct_init -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x4a5b542e __orinoco_ev_info -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x5e32f980 orinoco_tx_timeout -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x6d285759 orinoco_change_mtu -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x7282e9bd orinoco_process_xmit_skb -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x7e400d71 orinoco_open -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x8462f899 orinoco_up -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xa63b6f55 orinoco_set_multicast_list -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xe8cd393f orinoco_init -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xec9fbf21 orinoco_stop -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xfde33112 orinoco_if_add -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xff6e458a alloc_orinocodev -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xffe27bca orinoco_interrupt -EXPORT_SYMBOL drivers/net/wireless/mediatek/mt76/mt76 0x2cba6595 mt76_wcid_key_setup -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/btcoexist/btcoexist 0x4509cad7 rtl_btc_get_ops_pointer -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x08aac0c3 rtl92c_phy_set_bw_mode -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x0d20abb3 rtl92ce_phy_set_rf_on -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x17c18915 rtl92c_phy_set_txpower_level -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x1bb29cd1 rtl92c_phy_set_io -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x2327d91c _rtl92c_phy_calculate_bit_shift -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x238588d0 rtl92c_dm_init_rate_adaptive_mask -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x314faaab rtl92c_fill_h2c_cmd -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x345fcc23 rtl92c_set_fw_pwrmode_cmd -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x3492d1ee rtl92c_set_fw_joinbss_report_cmd -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x35b7e01a rtl92c_dm_check_txpower_tracking -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x374d60d9 rtl92c_dm_rf_saving -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x3b10847a rtl92c_firmware_selfreset -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x3c3513fb rtl92c_phy_lc_calibrate -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x3f5fec7d rtl92c_phy_update_txpower_dbm -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x421d6425 rtl92c_dm_init_edca_turbo -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x4eedca26 rtl92c_bt_rssi_state_change -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x5f98b087 rtl92c_download_fw -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x6774ffdf rtl92c_dm_write_dig -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x6e8e7bb9 rtl92c_dm_bt_coexist -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x7d5270cf _rtl92c_phy_set_rf_sleep -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x84a5ad76 _rtl92c_phy_bb8192c_config_parafile -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x87aac99f _rtl92c_phy_rf_serial_write -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x87c0de8a _rtl92c_phy_fw_rf_serial_read -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x8a099dce rtl92c_dm_init -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x8dc6f68a rtl92c_phy_sw_chnl_callback -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x95b8899d rtl92c_phy_sw_chnl -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x9858ace4 rtl8192_phy_check_is_legal_rfpath -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xaae0617e _rtl92c_phy_init_bb_rf_register_definition -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xada92042 rtl92c_phy_rf_config -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xb388f937 rtl92c_phy_set_rfpath_switch -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xb77cc73e rtl92c_dm_watchdog -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xbd948c8c _rtl92c_phy_txpwr_idx_to_dbm -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xcba6ebca rtl92c_phy_ap_calibrate -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xcd85eaa6 rtl92c_phy_query_bb_reg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xd633b2bf _rtl92c_phy_dbm_to_txpwr_idx -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xd6961450 rtl92c_phy_set_bb_reg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xd9a4165c _rtl92c_store_pwrindex_diffrate_offset -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xdbe62739 _rtl92c_phy_fw_rf_serial_write -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xe8a2a15f rtl92c_set_fw_rsvdpagepkt -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xef262eb6 rtl92c_phy_iq_calibrate -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xfea068e2 _rtl92c_phy_rf_serial_read -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xffce8dee rtl92c_phy_set_io_cmd -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x508a297b rtl_pci_probe -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x7d67990c rtl_pci_resume -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x91c5304b rtl_pci_disconnect -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0xf784b697 rtl_pci_suspend -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x0c8b5054 rtl_usb_probe -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x1cbe86a4 rtl_usb_disconnect -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x4cc4d021 rtl_usb_resume -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0xfc78c630 rtl_usb_suspend -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x04cc471c efuse_power_switch -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x09bb3047 rtl_dm_diginit -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0b038e24 channel5g_80m -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x11fdefc9 rtl_cam_add_one_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x1928025f efuse_shadow_read -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x1b945315 rtl_addr_delay -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x1d3dcc2b rtl_c2hcmd_enqueue -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x1e5c42e1 rtl_ps_disable_nic -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x30a956d7 rtl_query_rxpwrpercentage -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x3fc976ce rtl_process_phyinfo -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x54824f58 channel5g -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x54e2e603 rtl_get_tcb_desc -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x58a2adce rtl_cam_mark_invalid -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x5c9b2aa8 rtl_init_rfkill -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x66f3d988 rtl_cam_get_free_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7098605c rtl_rfreg_delay -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x712fb64c rtl_bb_delay -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x721f42f1 rtl_collect_scan_list -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x8ace4789 rtl_signal_scale_mapping -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x8be71db4 rtl_mrate_idx_to_arfr_id -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x8e463c9b rtl_cmd_send_packet -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x8ea60059 rtl_fw_cb -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x8f40016a efuse_read_1byte -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x93312b74 rtl_hal_pwrseqcmdparsing -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xaf6d48aa rtlwifi_rate_mapping -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xb0d1ae6e rtl_cam_delete_one_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xbe96464f rtl_cam_del_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xbf049e4e rtl_rx_ampdu_apply -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc36711ef rtl_ps_enable_nic -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc58ce55f efuse_one_byte_read -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xd8b717c5 rtl_send_smps_action -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xe5c7a086 rtl_phy_scan_operation_backup -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xe60a7883 rtl_cam_reset_all_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xebedfe5f rtl_wowlan_fw_cb -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xed3e2d33 rtl_efuse_shadow_map_update -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xed7c8cf2 rtl_evm_db_to_percentage -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xfa7f92d1 rtl_cam_empty_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8723d 0xbfa73835 rtw8723d_hw_spec -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8821c 0x22674fb8 rtw8821c_hw_spec -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8822b 0x54474287 rtw8822b_hw_spec -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8822c 0xbb8529b9 rtw8822c_hw_spec -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x0c65360d rtw_tx_report_enqueue -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x0e15e1d6 rtw_fw_c2h_cmd_rx_irqsafe -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x0f1edc29 rtw_phy_pwrtrack_thermal_changed -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x0fbe2c2e rtw_ops -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x15d60133 rtw_phy_write_rf_reg_sipi -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x1a0dc079 rtw_bf_enable_bfee_su -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x1c5192c5 rtw_phy_pwrtrack_get_pwridx -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x2a1dba8c rtw_bf_cfg_csi_rate -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x318650d0 rtw_unregister_hw -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 0x3718411c rtw_core_init -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x3c472c0f rtw_dump_reg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x3e785c4c __rtw_dbg -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 0x48128b93 rtw_phy_config_swing_table -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x49100fee rtw_fw_inform_rfk_status -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x4b62630b rtw_power_mode_change -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x4ebc74cb rtw_phy_load_tables -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x502cf274 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 0x53398d19 rtw_restore_reg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x557ef7e7 rtw_bf_set_gid_table -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x58210e60 rtw_rate_section -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x5c44560e rtw_set_channel_mac -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x5e94db19 rtw_phy_init -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x60f7e986 rtw_coex_read_indirect_reg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x65f805a0 rtw_coex_write_scbd -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x689c2949 rtw_register_hw -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x72b7f5b2 rtw_core_deinit -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x7ae6ebfa rtw_phy_pwrtrack_get_delta -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x80f3ddee rtw_phy_set_tx_power_level -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x85698a82 rtw_fw_c2h_cmd_isr -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x88bcccb8 rtw_coex_write_indirect_reg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x8ff6978a rtw_rx_fill_rx_status -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x92114095 rtw_bf_remove_bfee_mu -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x931901a2 rtw_phy_cfg_rf -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x9a100b5e rtw_phy_read_rf -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x9f32ea58 rtw_parse_tbl_txpwr_lmt -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xa39994e0 rtw_phy_pwrtrack_need_iqk -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xa663c0f3 rtw_tx_fill_tx_desc -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xa9803db1 rtw_bf_enable_bfee_mu -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xae1abb08 check_hw_ready -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xb8254e29 rtw_dump_fw -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xbc4b1719 rtw_parse_tbl_bb_pg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xbd71a1c3 rtw_tx_write_data_h2c_get -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xc09fafbe rtw_phy_cfg_bb -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xc44c2d85 rtw_phy_pwrtrack_avg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xc7924b84 rtw_parse_tbl_phy_cond -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xc9a3d5a4 rtw_phy_parsing_cfo -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xcaa28335 rtw_phy_pwrtrack_need_lck -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xcee45de4 rtw_tx_write_data_rsvd_page_get -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xd1a2dd21 rtw_rx_stats -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xd281742c rtw_phy_write_rf_reg_mix -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xe73275bf rtw_fw_do_iqk -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xe965919e rtw_bf_phy_init -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xeca86b9a rtw_phy_get_tx_power_index -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xee10a73c rtw_read8_physical_efuse -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xef7bdf62 rtw_phy_cfg_agc -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xf9ae5d4e rtw_chip_info_setup -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xfab06e79 rtw_phy_cfg_mac -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xfb5293c4 rtw_bf_remove_bfee_su -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_pci 0x1a46189e rtw_pci_probe -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_pci 0x49daec92 rtw_pm_ops -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_pci 0x63997365 rtw_pci_remove -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_pci 0xfe1a8aca rtw_pci_shutdown -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x0eaa532c __rtw89_debug -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x17d12be5 rtw89_core_napi_init -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x1a6f91dd rtw89_core_napi_stop -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x1e309cdf rtw89_core_query_rxdesc -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x1f430018 rtw89_mac_set_err_status -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x27408690 rtw89_ser_notify -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x3e708e46 rtw89_core_napi_start -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x3fb108d2 rtw89_core_register -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x461f43df rtw89_core_init -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x49f4de15 rtw89_core_unregister -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x50d670d3 rtw89_core_napi_deinit -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x5aa14e0c rtw89_core_fill_txdesc -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x6054b4b1 rtw89_phy_read_rf -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x6768302d rtw89_phy_write_rf -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x744beef1 rtw89_chip_info_setup -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x794e7d34 rtw89_core_rx -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xa58af035 rtw89_core_deinit -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xb5154d5f rtw8852a_chip_info -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xd57e8376 rtw89_mac_get_err_status -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xe3f57b04 rtw89_debug_mask -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xe65e95b0 rtw89_ops -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x53537f7a rtw89_pm_ops -EXPORT_SYMBOL drivers/net/wireless/rsi/rsi_91x 0x78dc95d1 rsi_config_wowlan -EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x2dbf7a4c wlcore_tx_complete -EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x50a46ece wl1271_free_tx_id -EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0xae6f3404 wl12xx_is_dummy_packet -EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0xbb1140e6 wlcore_calc_packet_alignment -EXPORT_SYMBOL drivers/nfc/fdp/fdp 0x2437a2f2 fdp_nci_remove -EXPORT_SYMBOL drivers/nfc/fdp/fdp 0xc2018aac fdp_nci_probe -EXPORT_SYMBOL drivers/nfc/microread/microread 0x0d536351 microread_probe -EXPORT_SYMBOL drivers/nfc/microread/microread 0x4631e5ee microread_remove -EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0x2d22b209 nxp_nci_fw_recv_frame -EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0x51683df1 nxp_nci_probe -EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0x6f0e7307 nxp_nci_remove -EXPORT_SYMBOL drivers/nfc/pn533/pn533 0x81be5c8e pn533_recv_frame -EXPORT_SYMBOL drivers/nfc/pn544/pn544 0x1a2a6b60 pn544_hci_remove -EXPORT_SYMBOL drivers/nfc/pn544/pn544 0x38ec6f92 pn544_hci_probe -EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x774203fc s3fwrn5_phy_set_wake -EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x9f70d88d s3fwrn5_recv_frame -EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0xab987c3e s3fwrn5_probe -EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0xb92e4113 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/s3fwrn5/s3fwrn5 0xf5943dd4 s3fwrn5_remove -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x1551d20c ndlc_send -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x1d0bcd86 ndlc_remove -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x1e2f9438 st_nci_se_init -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x2281ec62 st_nci_se_deinit -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x8e9c1665 ndlc_recv -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xb5e793cc ndlc_open -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xe4a6c8c1 st_nci_vendor_cmds_init -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xe5c36314 st_nci_se_io -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xf952439c ndlc_probe -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xfd2d4718 ndlc_close -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x09b9f722 st21nfca_apdu_reader_event_received -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x17fb38c2 st21nfca_se_deinit -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x1eccdb38 st21nfca_hci_loopback_event_received -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x296b44c8 st21nfca_hci_se_io -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x43523f0d st21nfca_dep_init -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x52be3fde st21nfca_hci_enable_se -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x5893d90a st21nfca_im_send_dep_req -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xa62cafda st21nfca_dep_event_received -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xa9f014eb st21nfca_hci_disable_se -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xacad1642 st21nfca_im_send_atr_req -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xacd8c8a2 st21nfca_hci_probe -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xb5e10ae5 st21nfca_se_init -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xd7ef73b6 st21nfca_dep_deinit -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xde83e435 st21nfca_tm_send_dep_res -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xe18307e4 st21nfca_vendor_cmds_init -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xe8eee6f1 st21nfca_connectivity_event_received -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xebfd64e4 st21nfca_hci_discover_se -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xf717460d st21nfca_hci_remove -EXPORT_SYMBOL drivers/ntb/ntb 0x151a9967 ntb_clear_ctx -EXPORT_SYMBOL drivers/ntb/ntb 0x209b35cb ntb_msi_setup_mws -EXPORT_SYMBOL drivers/ntb/ntb 0x2be77793 ntb_msg_event -EXPORT_SYMBOL drivers/ntb/ntb 0x6231963b ntbm_msi_free_irq -EXPORT_SYMBOL drivers/ntb/ntb 0x6a3d8c38 ntbm_msi_request_threaded_irq -EXPORT_SYMBOL drivers/ntb/ntb 0x7117bbdd ntb_default_peer_port_number -EXPORT_SYMBOL drivers/ntb/ntb 0x7e74a7a8 ntb_msi_peer_addr -EXPORT_SYMBOL drivers/ntb/ntb 0x7ff0df62 ntb_msi_peer_trigger -EXPORT_SYMBOL drivers/ntb/ntb 0x80b063d9 ntb_link_event -EXPORT_SYMBOL drivers/ntb/ntb 0xa045203d ntb_db_event -EXPORT_SYMBOL drivers/ntb/ntb 0xa3ee29db ntb_default_port_number -EXPORT_SYMBOL drivers/ntb/ntb 0xa7b0b710 ntb_msi_init -EXPORT_SYMBOL drivers/ntb/ntb 0xa86f8274 ntb_unregister_client -EXPORT_SYMBOL drivers/ntb/ntb 0xb1fa5361 __ntb_register_client -EXPORT_SYMBOL drivers/ntb/ntb 0xbd01b9ae ntb_set_ctx -EXPORT_SYMBOL drivers/ntb/ntb 0xcbcfdfbc ntb_default_peer_port_idx -EXPORT_SYMBOL drivers/ntb/ntb 0xdc02217b ntb_unregister_device -EXPORT_SYMBOL drivers/ntb/ntb 0xe94b9ec7 ntb_msi_clear_mws -EXPORT_SYMBOL drivers/ntb/ntb 0xee6b6d5e ntb_register_device -EXPORT_SYMBOL drivers/ntb/ntb 0xf75307f7 ntb_default_peer_port_count -EXPORT_SYMBOL drivers/nvdimm/nd_btt 0x0833d2d4 nvdimm_namespace_attach_btt -EXPORT_SYMBOL drivers/nvdimm/nd_btt 0x50cfa3e7 nvdimm_namespace_detach_btt -EXPORT_SYMBOL drivers/parport/parport 0x0ef3a1d0 parport_claim -EXPORT_SYMBOL drivers/parport/parport 0x135bbb04 parport_find_number -EXPORT_SYMBOL drivers/parport/parport 0x1dad1f58 parport_unregister_driver -EXPORT_SYMBOL drivers/parport/parport 0x1dd3ca0d parport_wait_event -EXPORT_SYMBOL drivers/parport/parport 0x23ef82fa parport_register_dev_model -EXPORT_SYMBOL drivers/parport/parport 0x29bfcd6f parport_wait_peripheral -EXPORT_SYMBOL drivers/parport/parport 0x3c4b1e92 parport_ieee1284_epp_read_data -EXPORT_SYMBOL drivers/parport/parport 0x429e11cd parport_ieee1284_epp_write_data -EXPORT_SYMBOL drivers/parport/parport 0x4d2a941b parport_ieee1284_interrupt -EXPORT_SYMBOL drivers/parport/parport 0x509e1f33 parport_ieee1284_read_nibble -EXPORT_SYMBOL drivers/parport/parport 0x51d34fdc parport_ieee1284_write_compat -EXPORT_SYMBOL drivers/parport/parport 0x563707f3 parport_negotiate -EXPORT_SYMBOL drivers/parport/parport 0x5e2fbea7 parport_write -EXPORT_SYMBOL drivers/parport/parport 0x5e3a3912 parport_irq_handler -EXPORT_SYMBOL drivers/parport/parport 0x61c573fb __parport_register_driver -EXPORT_SYMBOL drivers/parport/parport 0x62257c06 parport_announce_port -EXPORT_SYMBOL drivers/parport/parport 0x62e6a5c2 parport_ieee1284_epp_write_addr -EXPORT_SYMBOL drivers/parport/parport 0x7ab4e174 parport_set_timeout -EXPORT_SYMBOL drivers/parport/parport 0x7b222abd parport_put_port -EXPORT_SYMBOL drivers/parport/parport 0x80cb60d9 parport_register_port -EXPORT_SYMBOL drivers/parport/parport 0x975fb9aa parport_ieee1284_epp_read_addr -EXPORT_SYMBOL drivers/parport/parport 0xa79f63b6 parport_find_base -EXPORT_SYMBOL drivers/parport/parport 0xb958ec71 parport_claim_or_block -EXPORT_SYMBOL drivers/parport/parport 0xc8fa20a9 parport_ieee1284_ecp_write_addr -EXPORT_SYMBOL drivers/parport/parport 0xdf662686 parport_get_port -EXPORT_SYMBOL drivers/parport/parport 0xe7ea94f3 parport_remove_port -EXPORT_SYMBOL drivers/parport/parport 0xe88294a6 parport_ieee1284_ecp_write_data -EXPORT_SYMBOL drivers/parport/parport 0xea850600 parport_ieee1284_read_byte -EXPORT_SYMBOL drivers/parport/parport 0xeb57d18a parport_ieee1284_ecp_read_data -EXPORT_SYMBOL drivers/parport/parport 0xeee66dfb parport_unregister_device -EXPORT_SYMBOL drivers/parport/parport 0xf0b9314a parport_del_port -EXPORT_SYMBOL drivers/parport/parport 0xf38fd5ee parport_release -EXPORT_SYMBOL drivers/parport/parport 0xfbf1f34d parport_read -EXPORT_SYMBOL drivers/parport/parport_pc 0x2867fd7b parport_pc_unregister_port -EXPORT_SYMBOL drivers/parport/parport_pc 0x8b22576f parport_pc_probe_port -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x08b213d4 pcmcia_loop_config -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x0947fe0c pcmcia_request_io -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x24e9fbce pcmcia_enable_device -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x44bd219a pcmcia_disable_device -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x45f543e6 pcmcia_dev_present -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x4ae3432f pcmcia_unregister_driver -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x4ff22e08 pcmcia_request_irq -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x7259acb8 pcmcia_get_mac_from_cis -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x76d173b8 pcmcia_get_tuple -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x8144ab4e pcmcia_map_mem_page -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x84f45227 pcmcia_request_window -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x870a1565 pcmcia_register_driver -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xbb312663 pcmcia_parse_tuple -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xce917710 pcmcia_read_config_byte -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xe1ee1a87 pcmcia_fixup_iowidth -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xe819f404 pcmcia_loop_tuple -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xebcafbf5 pcmcia_release_window -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xf1910f69 pcmcia_write_config_byte -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xf489c6de pcmcia_fixup_vpp -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x0175a8d5 pcmcia_parse_events -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x212db8d2 pcmcia_socket_list -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x318a9168 pcmcia_register_socket -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x5aa85385 pcmcia_unregister_socket -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x8b1edc6d pcmcia_put_socket -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xc76d4150 pcmcia_get_socket -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xc89a8749 pcmcia_socket_class -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xcf97f3bd dead_socket -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xd1cef1ea pccard_register_pcmcia -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xd3fbeae3 pcmcia_parse_uevents -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xe83c9098 pcmcia_reset_card -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xf430565c pcmcia_get_socket_by_nr -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xfd39fefa pcmcia_socket_list_rwsem -EXPORT_SYMBOL drivers/pcmcia/pcmcia_rsrc 0x53039129 pccard_nonstatic_ops -EXPORT_SYMBOL drivers/pcmcia/pcmcia_rsrc 0xa67d2f79 pccard_static_ops -EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0x10275578 cros_ec_resume -EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0x91b796c4 cros_ec_suspend -EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0xadd015d8 cros_ec_unregister -EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0xe8bd8daa cros_ec_register -EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0xf25aacf5 cros_ec_irq_thread -EXPORT_SYMBOL drivers/platform/chrome/cros_ec_lpcs 0xaa1c36de cros_ec_lpc_io_bytes_mec -EXPORT_SYMBOL drivers/platform/chrome/cros_ec_lpcs 0xc4ebc6b3 cros_ec_lpc_mec_init -EXPORT_SYMBOL drivers/platform/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 0x471bfbbf __wmi_driver_register -EXPORT_SYMBOL drivers/platform/x86/wmi 0xec2a9ba4 wmi_driver_unregister -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x055de6d9 rpmsg_create_ept -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x089b72b6 rpmsg_send -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x0f0e9eeb rpmsg_send_offchannel -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x1f5f51b8 rpmsg_trysendto -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x44b35ccf rpmsg_find_device -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x48d6e4a9 rpmsg_register_device -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x49dfbbbd rpmsg_unregister_device -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x5e85e659 rpmsg_sendto -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x65dcd482 unregister_rpmsg_driver -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x6a410ad2 rpmsg_poll -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xb15e2cb5 __register_rpmsg_driver -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xb905329e rpmsg_destroy_ept -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xc38f3d4a rpmsg_create_channel -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xcefb5338 rpmsg_trysend -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xcf5d7e12 rpmsg_trysend_offchannel -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xd020fbad rpmsg_release_channel -EXPORT_SYMBOL drivers/rpmsg/rpmsg_ns 0x43681f5b rpmsg_ns_register_device -EXPORT_SYMBOL drivers/scsi/53c700 0x3d9cece0 NCR_700_intr -EXPORT_SYMBOL drivers/scsi/53c700 0x94ea0cbb NCR_700_release -EXPORT_SYMBOL drivers/scsi/53c700 0xebe081dc NCR_700_detect -EXPORT_SYMBOL drivers/scsi/esp_scsi 0x4a29ab38 scsi_esp_intr -EXPORT_SYMBOL drivers/scsi/esp_scsi 0x4ff5c067 scsi_esp_template -EXPORT_SYMBOL drivers/scsi/esp_scsi 0x7a29b2ab scsi_esp_unregister -EXPORT_SYMBOL drivers/scsi/esp_scsi 0xceec0b9a scsi_esp_cmd -EXPORT_SYMBOL drivers/scsi/esp_scsi 0xdbfd44f9 scsi_esp_register -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x18a74c66 fcoe_ctlr_els_send -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x1ec6414d fcoe_ctlr_link_up -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x5779bbf1 fcoe_ctlr_destroy -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x6d7dfacf fcoe_ctlr_recv -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xa6ae83fe fcoe_ctlr_init -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xcb9c1fd2 fcoe_ctlr_link_down -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xd2808606 fcoe_transport_attach -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xda3be6a4 fcoe_fcf_get_selected -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xf1e26c47 fcoe_transport_detach -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xfbce09d0 fcoe_ctlr_set_fip_mode -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xfc8fd3e5 fcoe_ctlr_recv_flogi -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x009c9aad fc_set_rport_loss_tmo -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x10257b0d fc_lport_destroy -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x11515074 fc_disc_init -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x13eeff69 fc_seq_set_resp -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 0x25010f6a fc_lport_reset -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x29a9945a fc_exch_mgr_list_clone -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x2a05d86a fc_slave_alloc -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x3098068d fc_vport_id_lookup -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x31b1608d fc_lport_notifier_head -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x32a46946 fc_elsct_send -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x35f31f36 fc_seq_send -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x3851e2fd fc_vport_setlink -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x3e77dd8a fc_lport_config -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x48104b84 fc_get_host_stats -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x4877f703 fc_exch_update_stats -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x48bb33a9 fc_rport_terminate_io -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x4c024ffd libfc_vport_create -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x4c577d1d fc_fabric_login -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x4f04df9c fc_get_host_port_state -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x511b2e69 fc_lport_set_local_id -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x523a83d8 fc_lport_bsg_request -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x53c01fbc fc_rport_recv_req -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x5d0901eb fc_linkup -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x5eec4c59 fc_fabric_logoff -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x5f974288 fc_exch_mgr_free -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x631ab5f9 fc_set_mfs -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x63c09b1c fc_fc4_deregister_provider -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x69073eaf fc_elsct_init -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x697fdcba fc_rport_create -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x6b78bb3a fc_rport_login -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x6fddf938 fc_lport_recv -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x71287500 fc_exch_recv -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7578372c fc_eh_device_reset -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 0x811811e0 fc_exch_done -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8217650d fc_rport_logoff -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x93a49274 fc_fc4_register_provider -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x97b79120 fc_frame_alloc_fill -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9809b220 fc_fcp_init -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9b07fa06 fc_rport_lookup -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9d50ed7e fc_rport_destroy -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9e815651 fc_get_host_speed -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 0xa31fdf56 fc_eh_abort -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa3c943a6 fc_queuecommand -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa6fb01b4 fc_fcp_destroy -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa718854d fc_exch_init -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb0ddd5a1 fc_rport_flush_queue -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xbe8ff499 fc_linkdown -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc3275d87 fc_exch_mgr_reset -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc6c71d5b fc_seq_assign -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc87f2a9a fc_lport_init -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xca81018f _fc_frame_alloc -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xdce2c8d5 fc_lport_iterate -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe26981ed fc_fill_hdr -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf2dd7a48 fc_disc_config -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf2ef259b fc_lport_flogi_resp -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf3ff6a8a fc_exch_seq_send -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf49081fa fc_eh_host_reset -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf5dbd4bf fc_exch_mgr_alloc -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xfa4667d1 fc_seq_release -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xfb0ab29b fc_exch_mgr_add -EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x4a8e3d34 try_test_sas_gpio_gp_bit -EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x65cd3c5e sas_suspend_ha -EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x993e5511 sas_prep_resume_ha -EXPORT_SYMBOL drivers/scsi/libsas/libsas 0xa7767d14 sas_resume_ha -EXPORT_SYMBOL drivers/scsi/megaraid/megaraid_mm 0x3f92c221 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 0x16e48336 qlt_free_cmd -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x188e8eef qlt_enable_vha -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x1901f460 qlt_unreg_sess -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x19710b75 qlt_free_mcmd -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x464bf9f5 qlt_stop_phase2 -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x490fc17f qlt_rdy_to_xfer -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x7e3da1ac qlt_lport_deregister -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x9c78a466 qlt_lport_register -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xab5f42a6 qlt_xmit_response -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xf0619419 qlt_stop_phase1 -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xf2daa9a4 qlt_xmit_tm_rsp -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xfdd6652b qlt_abort_cmd -EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x1f55cd70 qlogicfas408_ihandl -EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x234e676e qlogicfas408_disable_ints -EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x3667b188 qlogicfas408_abort -EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x3fd8cd71 qlogicfas408_detect -EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x6813e92f qlogicfas408_host_reset -EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x7737c031 qlogicfas408_queuecommand -EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x7f577752 qlogicfas408_biosparam -EXPORT_SYMBOL drivers/scsi/qlogicfas408 0xaa3b4628 qlogicfas408_info -EXPORT_SYMBOL drivers/scsi/qlogicfas408 0xe76b3b20 qlogicfas408_get_chip_type -EXPORT_SYMBOL drivers/scsi/qlogicfas408 0xf2b95199 qlogicfas408_setup -EXPORT_SYMBOL drivers/scsi/raid_class 0x19385983 raid_class_release -EXPORT_SYMBOL drivers/scsi/raid_class 0x3e1d870f raid_class_attach -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x0ed98e1f fc_block_scsi_eh -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x25d433ab fc_attach_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x27cb63a7 fc_block_rport -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x35ab3bf8 fc_remote_port_add -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x375f8bbd fc_get_event_number -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x39539282 fc_remote_port_rolechg -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x39a79a31 fc_vport_terminate -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x51b574b2 fc_remove_host -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x5428424b fc_eh_timed_out -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x78708345 fc_host_post_fc_event -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x8d1f7130 fc_host_fpin_rcv -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x98968b6f fc_vport_create -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x9ee0a606 fc_find_rport_by_wwpn -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xa214bc16 fc_remote_port_delete -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xb29b38a3 scsi_is_fc_rport -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xc7476f71 fc_host_post_vendor_event -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xcd0da69f fc_host_post_event -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xfaef4cdb fc_release_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x08865495 sas_remove_children -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x1794af13 scsi_is_sas_phy -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x179da51a sas_get_address -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x17a875b5 sas_phy_alloc -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x2008cc7f sas_phy_add -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x2dd63640 sas_port_delete -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x3886740e sas_rphy_remove -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x42b49ffd sas_port_mark_backlink -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x4bb41ae8 sas_rphy_delete -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x58c438b5 sas_attach_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x58f75ba0 scsi_is_sas_port -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x76430273 sas_port_delete_phy -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x7b375de8 sas_port_add_phy -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x7e7e5663 sas_port_alloc_num -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x8326599a sas_expander_alloc -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x881715e2 sas_read_port_mode_page -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x967cca4d sas_rphy_unlink -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xa0b356ca sas_end_device_alloc -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xa1e68e90 sas_port_free -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xa21dca73 sas_rphy_add -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xa612978d sas_release_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xad61fb24 scsi_is_sas_rphy -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xb8b11248 sas_remove_host -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xd018183a sas_port_alloc -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xdf2a1813 sas_port_add -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xe3645979 sas_phy_free -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xf08b01c0 sas_phy_delete -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xf0a6ca02 sas_port_get_phy -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xf653f541 sas_rphy_free -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x06e457df spi_release_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x2164ff2e spi_schedule_dv_device -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x2fba84b1 spi_dv_device -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x3686ea09 spi_print_msg -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x4722e828 spi_attach_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x66578928 spi_display_xfer_agreement -EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x405b6e05 srp_parse_tmo -EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x5ddbd91d srp_rport_put -EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x6b42298c srp_start_tl_fail_timers -EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x7d4c6c0e srp_rport_get -EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0xcfe2e199 srp_reconnect_rport -EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0xdfd56090 srp_timed_out -EXPORT_SYMBOL drivers/scsi/ufs/tc-dwc-g210 0x26fae9bc tc_dwc_g210_config_20_bit -EXPORT_SYMBOL drivers/scsi/ufs/tc-dwc-g210 0xaaba1a7b tc_dwc_g210_config_40_bit -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0x25359681 ufshcd_alloc_host -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0x2b969c82 ufshcd_system_suspend -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0x418ae038 ufshcd_runtime_suspend -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0x58766bb5 ufshcd_map_desc_id_to_length -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0x7b5a5410 ufshcd_runtime_resume -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0x7fd91395 ufshcd_shutdown -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0x85bad0b4 ufshcd_get_local_unipro_ver -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0xd7061c01 ufshcd_system_resume -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-dwc 0x3e5b5744 ufshcd_dwc_link_startup_notify -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-dwc 0xf9e79e61 ufshcd_dwc_dme_set_attrs -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 0x68772745 qmi_decode_message -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x7533dc52 qmi_txn_wait -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x76dd5755 qmi_add_lookup -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x7bba5292 qmi_txn_cancel -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xb1e4d2e4 qmi_send_indication -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xb4560321 qmi_handle_init -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xd74f6cd8 qmi_txn_init -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xe95d5167 qmi_send_response -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xf50f2013 qmi_add_server -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xfd0cab9c qmi_send_request -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xfe32f9cf qmi_handle_release -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x0a474cc3 sdw_bus_prep_clk_stop -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x0ac3df2f sdw_write -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x12f15c3f sdw_slave_add -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x166001fa sdw_read -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 0x2e1d8ddf sdw_write_no_pm -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x2e93d8a5 sdw_master_read_prop -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x3321d7dc sdw_stream_remove_slave -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x3b0a8582 sdw_startup_stream -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x42a7f4f5 sdw_read_no_pm -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x4574ccc2 sdw_update_no_pm -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x4891059b sdw_compare_devid -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x4cde88bf sdw_disable_stream -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x508520c4 sdw_bread_no_pm_unlocked -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x512a61f9 sdw_stream_add_slave -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x60e31fbb sdw_find_col_index -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x692dbd7a sdw_bus_master_delete -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x693f7b96 sdw_update -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x6cbd5b5a sdw_bwrite_no_pm_unlocked -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x6f95b16b sdw_shutdown_stream -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x6fc1f8de sdw_stream_remove_master -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x71891d59 sdw_deprepare_stream -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x72fb8605 sdw_extract_slave_id -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x86a279b1 sdw_slave_read_prop -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x8e35a7cc sdw_nread -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x9e122d79 sdw_alloc_stream -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xa6fdeb9b sdw_clear_slave_status -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xa89e90c8 sdw_stream_add_master -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xb7d161ae sdw_bus_clk_stop -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xba54b904 sdw_cols -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xbbec2c2e sdw_enable_stream -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xbdbe3027 sdw_bus_master_add -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xc635dfdb sdw_nwrite -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xda5bce09 sdw_release_stream -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xf1d73a21 sdw_bus_exit_clk_stop -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xf53ba0b8 sdw_rows -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xfa06b987 sdw_handle_slave_status -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x056d26d9 sdw_cdns_config_stream -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x0921f190 cdns_xfer_msg_defer -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x15d60618 sdw_cdns_init -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x1ad673d4 cdns_bus_conf -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x34712074 sdw_cdns_irq -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x61a5daf9 sdw_cdns_is_clock_stop -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x74a5d55e sdw_cdns_alloc_pdi -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x882f7bf5 cdns_set_sdw_stream -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x9ba135f3 sdw_cdns_probe -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x9e8654c9 sdw_cdns_check_self_clearing_bits -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xbb49d707 sdw_cdns_enable_interrupt -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xc711b69e sdw_cdns_clock_restart -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xd1c7b9ce sdw_cdns_exit_reset -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xd6457457 sdw_cdns_pdi_init -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xec1b0d56 cdns_xfer_msg -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xee4e14c9 cdns_reset_page_addr -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xfd6e9fee sdw_cdns_clock_stop -EXPORT_SYMBOL drivers/soundwire/soundwire-generic-allocation 0x4bc997ac sdw_compute_params -EXPORT_SYMBOL drivers/ssb/ssb 0x014becc7 ssb_pmu_set_ldo_voltage -EXPORT_SYMBOL drivers/ssb/ssb 0x11abdad1 ssb_bus_may_powerdown -EXPORT_SYMBOL drivers/ssb/ssb 0x22640660 ssb_pcihost_register -EXPORT_SYMBOL drivers/ssb/ssb 0x234109bb ssb_bus_sdiobus_register -EXPORT_SYMBOL drivers/ssb/ssb 0x37e03226 ssb_clockspeed -EXPORT_SYMBOL drivers/ssb/ssb 0x3a517acf ssb_dma_translation -EXPORT_SYMBOL drivers/ssb/ssb 0x40e5a3f3 ssb_device_enable -EXPORT_SYMBOL drivers/ssb/ssb 0x4c4e181c ssb_pcicore_dev_irqvecs_enable -EXPORT_SYMBOL drivers/ssb/ssb 0x6596c413 ssb_bus_resume -EXPORT_SYMBOL drivers/ssb/ssb 0x66557beb ssb_pmu_set_ldo_paref -EXPORT_SYMBOL drivers/ssb/ssb 0x687bea72 ssb_bus_powerup -EXPORT_SYMBOL drivers/ssb/ssb 0x6dd95827 ssb_bus_unregister -EXPORT_SYMBOL drivers/ssb/ssb 0x71f2b56e ssb_device_disable -EXPORT_SYMBOL drivers/ssb/ssb 0x7538d661 __ssb_driver_register -EXPORT_SYMBOL drivers/ssb/ssb 0x8a296381 ssb_bus_suspend -EXPORT_SYMBOL drivers/ssb/ssb 0xa173c812 ssb_chipco_gpio_control -EXPORT_SYMBOL drivers/ssb/ssb 0xa877b94e ssb_device_is_enabled -EXPORT_SYMBOL drivers/ssb/ssb 0xcb17f1cb ssb_admatch_base -EXPORT_SYMBOL drivers/ssb/ssb 0xcd9c05da ssb_commit_settings -EXPORT_SYMBOL drivers/ssb/ssb 0xdfc7c6ef ssb_admatch_size -EXPORT_SYMBOL drivers/ssb/ssb 0xe8e89d7d ssb_set_devtypedata -EXPORT_SYMBOL drivers/ssb/ssb 0xe9a217fa ssb_driver_unregister -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x02c15b36 fbtft_write_spi -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x16ad6c45 fbtft_write_vmem16_bus8 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x1b469d59 fbtft_write_reg16_bus16 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x1c8169de fbtft_unregister_backlight -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x2e7b5fff fbtft_unregister_framebuffer -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x4b32f58a fbtft_remove_common -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x4b6bad60 fbtft_write_reg16_bus8 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x4dd01b44 fbtft_init_display -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x5046846f fbtft_dbg_hex -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x53048604 fbtft_write_buf_dc -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x768bb2f1 fbtft_write_reg8_bus8 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x83922ede fbtft_probe_common -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x942336b4 fbtft_write_gpio16_wr -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x992574fc fbtft_write_reg8_bus9 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x9ce39d15 fbtft_read_spi -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xa5948f4b fbtft_write_vmem8_bus8 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xbbdfa0a5 fbtft_write_spi_emulate_9 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xc36c9b4b fbtft_write_vmem16_bus9 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xc67272d5 fbtft_framebuffer_release -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xc9532f74 fbtft_register_framebuffer -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xd9d0ccff fbtft_framebuffer_alloc -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xdcbce574 fbtft_write_vmem16_bus16 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xe1e3f699 fbtft_register_backlight -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xeb3be690 fbtft_write_gpio8_wr -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xec97e5f5 fbtft_write_gpio16_wr_latched -EXPORT_SYMBOL drivers/staging/greybus/gb-audio-codec 0xa5940e86 gbaudio_register_module -EXPORT_SYMBOL drivers/staging/greybus/gb-audio-codec 0xa9669911 gbaudio_module_update -EXPORT_SYMBOL drivers/staging/greybus/gb-audio-codec 0xe1667dc0 gbaudio_unregister_module -EXPORT_SYMBOL drivers/staging/iio/addac/adt7316 0xcb352f84 adt7316_probe -EXPORT_SYMBOL drivers/staging/iio/meter/ade7854 0x39d61650 ade7854_probe -EXPORT_SYMBOL drivers/staging/media/zoran/videocodec 0x368b53c5 videocodec_attach -EXPORT_SYMBOL drivers/staging/media/zoran/videocodec 0x635ec1f4 videocodec_register -EXPORT_SYMBOL drivers/staging/media/zoran/videocodec 0xce0101af videocodec_detach -EXPORT_SYMBOL drivers/staging/media/zoran/videocodec 0xf9530469 videocodec_unregister -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x002ce865 rtllib_wx_set_freq -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x057ce950 rtllib_legal_channel -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x0598f845 rtllib_wx_set_gen_ie -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x0b9cc8ab rtllib_MgntDisconnect -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x12cd8ab3 rtllib_wx_get_rts -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x1749e4e3 rtllib_EnableIntelPromiscuousMode -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x18dbaa39 rtllib_wx_set_wap -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x19ed71e8 rtllib_rx -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x22166084 rt_global_debug_component -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x243a4fe5 rtllib_wx_get_essid -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x25474f09 free_rtllib -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x2bd8a1c6 rtllib_xmit -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x3245019c rtllib_stop_send_beacons -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x32f28be5 rtllib_wx_set_encode -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x38022f20 rtllib_wx_set_rate -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x451eb46f RemovePeerTS -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x47ef9d96 rtllib_get_beacon -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x53ce325f rtllib_wx_get_power -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x5b5b5c8e rtllib_wx_set_encode_ext -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x5d8e761b rtllib_wx_get_freq -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x65a0b15e rtllib_wx_get_rate -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x689bb17c rtllib_wx_get_name -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x69b8a4b5 rtllib_start_scan_syncro -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x701f03f4 rtllib_sta_ps_send_null_frame -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x749cecef alloc_rtllib -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x79f65742 rtllib_wx_set_mlme -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x7c0000ca rtllib_stop_scan -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x84a631b3 rtllib_DisableIntelPromiscuousMode -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x8aecf692 rtllib_act_scanning -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x938e4c0a dot11d_init -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x93dab140 rtllib_wx_set_essid -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x94f93c7c rtllib_wx_get_encode -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x9fb3b460 rtllib_wx_get_mode -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xa05fa13d rtllib_wx_set_rawtx -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xa26aee98 rtllib_start_send_beacons -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xa9aae8ee rtllib_wx_set_scan -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xac3d2ce3 notify_wx_assoc_event -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xae695a75 HT_update_self_and_peer_setting -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xbcbdc269 rtllib_softmac_start_protocol -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xc2112a1e rtllib_wx_set_mode -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xcb05fecf rtllib_wx_set_auth -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xd25ed6c3 rtllib_wx_get_wap -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xd848f649 rtllib_wx_set_rts -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xdf78f620 rtllib_wlan_frequencies -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xe0db0b85 rtllib_stop_scan_syncro -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xe38786ad rtllib_softmac_stop_protocol -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xe42eccfa rtllib_wx_set_power -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xebd080e8 dot11d_channel_map -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xf4087690 rtllib_wx_get_scan -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xf8a4db3f rtllib_ps_tx_ack -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xfd4f7d82 rtllib_reset_queue -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x004d8ec6 ieee80211_wx_get_rate_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x023f80aa dot11d_update_country_ie -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x04dc25fd SendDisassociation_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x0ca1b7f0 ieee80211_softmac_scan_syncro_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x0e371f1c ieee80211_wx_set_rts_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x0ea2fda5 dot11d_get_max_tx_pwr_in_dbm -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x0f603d53 ieee80211_wx_set_power_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x12d8192c ieee80211_rx_mgt_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x1d66a0ff ieee80211_is_shortslot_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x1f380b4d ieee80211_stop_scan_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x237d66b3 ieee80211_wx_get_power_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x26d69d4c ieee80211_wake_queue_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x2c63acff ieee80211_wx_set_rawtx_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x3043a6d7 ieee80211_wx_set_freq_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x43bbc1b7 ieee80211_wx_get_essid_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x446b5f01 ieee80211_wpa_supplicant_ioctl_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x47aa2487 is_legal_channel -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x4a8cc2cf ieee80211_stop_send_beacons_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x4b52615d ieee80211_wx_set_mode_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x560c37d4 rtl8192u_dot11d_init -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x5a5eb6f4 ieee80211_wx_set_auth_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x5ad809d2 ieee80211_wx_get_scan_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x61e87a4b ieee80211_softmac_start_protocol_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x69620a3a ieee80211_start_send_beacons_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x6fa69a57 ieee80211_wx_set_essid_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x72d83215 ieee80211_get_beacon_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x76833c8f ieee80211_wx_get_wap_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7af6689a ieee80211_wx_get_encode_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7f5b2bab dot11d_scan_complete -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x81ec9689 ieee80211_disassociate_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x886fa191 notify_wx_assoc_event_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x8c696d5b ieee80211_txb_free_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x8f970ae3 ieee80211_wx_get_mode_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x91561d43 ieee80211_wx_set_gen_ie_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x918429d0 ieee80211_softmac_stop_protocol_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x91c41b07 ieee80211_rx_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x9e1d626c ieee80211_wx_set_scan_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa6fb10cd HTUpdateSelfAndPeerSetting -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xaa1619e5 ieee80211_wx_get_rts_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xae51f89d ieee80211_ps_tx_ack_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb0a9eb34 ieee80211_softmac_xmit_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb6934f05 to_legal_channel -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xba5c5c9e ieee80211_wx_get_name_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc0df9de8 ieee80211_reset_queue_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc370a43e ieee80211_wlan_frequencies_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc488e578 ieee80211_wx_set_rate_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc9f32881 ieee80211_wx_get_encode_ext_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xcd5caa5f dot11d_reset -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd0e43c70 ieee80211_wx_set_encode_ext_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd2a23a76 ieee80211_wx_set_wap_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd464f43a ieee80211_wx_set_mlme_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xdad097b9 ieee80211_wx_set_encode_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xddf2783d ieee80211_start_scan_syncro_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe014b11d ieee80211_stop_queue_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xecc5fb1b ieee80211_is_54g_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf486cd69 ieee80211_wx_get_freq_rsl -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x01a8fcf8 iscsit_get_datain_values -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x0b2acc85 iscsit_release_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x0c3cb4b1 iscsit_increment_maxcmdsn -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x0c450cc2 iscsit_build_task_mgt_rsp -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x0fe4fefd iscsit_build_reject -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x17004ea0 iscsit_build_r2ts_for_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x177fdc74 iscsit_check_dataout_payload -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x229343e3 iscsit_add_cmd_to_immediate_queue -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x2870af85 iscsit_process_scsi_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x3eb342ec __iscsit_check_dataout_hdr -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x435d9e71 iscsit_aborted_task -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x4ab0383e iscsi_target_check_login_request -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x4f341081 iscsit_add_reject -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x508e0960 iscsit_free_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x5b8cfb4c iscsit_find_cmd_from_itt -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x612c5089 iscsit_build_datain_pdu -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x718ba986 iscsit_setup_nop_out -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x789aeae0 iscsit_logout_post_handler -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x7db93ee3 iscsit_stop_dataout_timer -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x801e6716 iscsit_unregister_transport -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x806af320 iscsit_register_transport -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x85264e4d iscsit_build_text_rsp -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x89bfe2b6 iscsit_set_unsolicited_dataout -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x8afa07d0 iscsit_reject_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x921c1ae7 iscsit_process_text_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x98cce0bc iscsit_response_queue -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x9d9cf592 iscsit_build_nopin_rsp -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xa26dadab iscsit_handle_snack -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xa2e946a8 iscsit_find_cmd_from_itt_or_dump -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xab5d9883 iscsit_build_logout_rsp -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xae883e19 iscsit_setup_text_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xb5b74b2b iscsit_process_nop_out -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xb83baebd iscsit_build_rsp_pdu -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xbad86cc1 iscsit_setup_scsi_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xbad8935c iscsit_allocate_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xc298deb7 iscsit_queue_rsp -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xce8b0f44 iscsi_change_param_sprintf -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xcf35f6e3 iscsit_handle_task_mgt_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xd9088165 iscsit_immediate_queue -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xe4f0854e iscsit_sequence_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xe658edc9 iscsit_check_dataout_hdr -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xf02ed42f iscsit_handle_logout_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xf34332f0 iscsi_find_param_from_key -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xf9f7393b iscsit_cause_connection_reinstatement -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xfa0ba345 iscsit_tmr_post_handler -EXPORT_SYMBOL drivers/target/target_core_mod 0x03db8231 transport_generic_handle_tmr -EXPORT_SYMBOL drivers/target/target_core_mod 0x03ec4409 sbc_get_device_type -EXPORT_SYMBOL drivers/target/target_core_mod 0x0607c476 transport_init_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x067cc39d transport_backend_register -EXPORT_SYMBOL drivers/target/target_core_mod 0x0837df41 sbc_attrib_attrs -EXPORT_SYMBOL drivers/target/target_core_mod 0x0871ffd6 transport_set_vpd_ident -EXPORT_SYMBOL drivers/target/target_core_mod 0x0bd9a1ff target_depend_item -EXPORT_SYMBOL drivers/target/target_core_mod 0x0c693df9 core_tpg_check_initiator_node_acl -EXPORT_SYMBOL drivers/target/target_core_mod 0x0e1a86a3 sbc_get_write_same_sectors -EXPORT_SYMBOL drivers/target/target_core_mod 0x10da4d9d target_configure_unmap_from_queue -EXPORT_SYMBOL drivers/target/target_core_mod 0x11297ddf transport_generic_new_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x142072c0 transport_set_vpd_assoc -EXPORT_SYMBOL drivers/target/target_core_mod 0x16d266ca target_backend_unregister -EXPORT_SYMBOL drivers/target/target_core_mod 0x1a6ba8a3 target_complete_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x1b212812 passthrough_attrib_attrs -EXPORT_SYMBOL drivers/target/target_core_mod 0x1dc78635 core_tpg_set_initiator_node_tag -EXPORT_SYMBOL drivers/target/target_core_mod 0x2b3d1d16 target_unregister_template -EXPORT_SYMBOL drivers/target/target_core_mod 0x2b4784d5 transport_alloc_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x2d1dfdb3 target_send_busy -EXPORT_SYMBOL drivers/target/target_core_mod 0x35fd1719 transport_handle_cdb_direct -EXPORT_SYMBOL drivers/target/target_core_mod 0x360166e7 target_stop_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x3a20a9d7 transport_set_vpd_ident_type -EXPORT_SYMBOL drivers/target/target_core_mod 0x3a5e78cf transport_kunmap_data_sg -EXPORT_SYMBOL drivers/target/target_core_mod 0x3e06cf7d target_cmd_init_cdb -EXPORT_SYMBOL drivers/target/target_core_mod 0x43f6c87c transport_register_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x44fe4856 transport_lookup_cmd_lun -EXPORT_SYMBOL drivers/target/target_core_mod 0x49871984 target_setup_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x4b96df31 transport_alloc_session_tags -EXPORT_SYMBOL drivers/target/target_core_mod 0x4bedd28c transport_copy_sense_to_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x4e805c02 target_complete_cmd_with_length -EXPORT_SYMBOL drivers/target/target_core_mod 0x4ef28f1f target_register_template -EXPORT_SYMBOL drivers/target/target_core_mod 0x5253ba55 transport_wait_for_tasks -EXPORT_SYMBOL drivers/target/target_core_mod 0x5670e2e2 target_tpg_has_node_acl -EXPORT_SYMBOL drivers/target/target_core_mod 0x57bc7a66 __target_init_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x5877997a target_submit_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x5ad543e4 transport_lookup_tmr_lun -EXPORT_SYMBOL drivers/target/target_core_mod 0x5f19e8e5 core_alua_check_nonop_delay -EXPORT_SYMBOL drivers/target/target_core_mod 0x638bffb7 target_free_sgl -EXPORT_SYMBOL drivers/target/target_core_mod 0x63d01daa target_get_sess_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x65b3a2e8 target_put_sess_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x6889b8fa target_show_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x6e4d38db sbc_dif_verify -EXPORT_SYMBOL drivers/target/target_core_mod 0x747aaca5 core_allocate_nexus_loss_ua -EXPORT_SYMBOL drivers/target/target_core_mod 0x7a1d0d3c target_alloc_sgl -EXPORT_SYMBOL drivers/target/target_core_mod 0x85f8b48c target_to_linux_sector -EXPORT_SYMBOL drivers/target/target_core_mod 0x8878e6e6 spc_parse_cdb -EXPORT_SYMBOL drivers/target/target_core_mod 0x8a466972 core_tmr_alloc_req -EXPORT_SYMBOL drivers/target/target_core_mod 0x92823e3e target_lun_is_rdonly -EXPORT_SYMBOL drivers/target/target_core_mod 0x929d98ac transport_send_check_condition_and_sense -EXPORT_SYMBOL drivers/target/target_core_mod 0x98d39bfb target_execute_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x99eec119 transport_deregister_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x9b95b451 spc_emulate_report_luns -EXPORT_SYMBOL drivers/target/target_core_mod 0x9ede2f81 spc_emulate_evpd_83 -EXPORT_SYMBOL drivers/target/target_core_mod 0x9f6041bf __transport_register_session -EXPORT_SYMBOL drivers/target/target_core_mod 0xa1a03a72 transport_free_session -EXPORT_SYMBOL drivers/target/target_core_mod 0xa49b5f87 transport_kmap_data_sg -EXPORT_SYMBOL drivers/target/target_core_mod 0xa5537b23 transport_generic_request_failure -EXPORT_SYMBOL drivers/target/target_core_mod 0xa58a5fe0 core_tpg_set_initiator_node_queue_depth -EXPORT_SYMBOL drivers/target/target_core_mod 0xa61519c6 core_tpg_deregister -EXPORT_SYMBOL drivers/target/target_core_mod 0xab2b4a7e target_undepend_item -EXPORT_SYMBOL drivers/target/target_core_mod 0xab73c28e sbc_dif_copy_prot -EXPORT_SYMBOL drivers/target/target_core_mod 0xac42942d passthrough_parse_cdb -EXPORT_SYMBOL drivers/target/target_core_mod 0xad18ffba target_set_cmd_data_length -EXPORT_SYMBOL drivers/target/target_core_mod 0xb966662e transport_generic_free_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0xbd32884b target_submit_tmr -EXPORT_SYMBOL drivers/target/target_core_mod 0xc64ed882 sbc_parse_cdb -EXPORT_SYMBOL drivers/target/target_core_mod 0xcaa96b15 core_tpg_register -EXPORT_SYMBOL drivers/target/target_core_mod 0xd1315891 target_put_nacl -EXPORT_SYMBOL drivers/target/target_core_mod 0xd1934a28 spc_emulate_inquiry_std -EXPORT_SYMBOL drivers/target/target_core_mod 0xd3d004ab target_nacl_find_deve -EXPORT_SYMBOL drivers/target/target_core_mod 0xd6329b05 target_show_dynamic_sessions -EXPORT_SYMBOL drivers/target/target_core_mod 0xd818a4c4 transport_deregister_session_configfs -EXPORT_SYMBOL drivers/target/target_core_mod 0xe07fb109 target_remove_session -EXPORT_SYMBOL drivers/target/target_core_mod 0xeb69d98c target_wait_for_sess_cmds -EXPORT_SYMBOL drivers/target/target_core_mod 0xec10930a core_tpg_get_initiator_node_acl -EXPORT_SYMBOL drivers/target/target_core_mod 0xeeb44d0e target_complete_cmd_with_sense -EXPORT_SYMBOL drivers/target/target_core_mod 0xf0756b0c target_cmd_parse_cdb -EXPORT_SYMBOL drivers/target/target_core_mod 0xf3c2dfe0 transport_set_vpd_proto_id -EXPORT_SYMBOL drivers/target/target_core_mod 0xfae1c4f5 passthrough_pr_attrib_attrs -EXPORT_SYMBOL drivers/thermal/intel/int340x_thermal/acpi_thermal_rel 0x111eefed acpi_parse_art -EXPORT_SYMBOL drivers/thermal/intel/int340x_thermal/acpi_thermal_rel 0x1887763e acpi_thermal_rel_misc_device_add -EXPORT_SYMBOL drivers/thermal/intel/int340x_thermal/acpi_thermal_rel 0x86c998e6 acpi_thermal_rel_misc_device_remove -EXPORT_SYMBOL drivers/thermal/intel/int340x_thermal/acpi_thermal_rel 0xf0f9fe0d acpi_parse_trt -EXPORT_SYMBOL drivers/usb/class/cdc-wdm 0x4b480916 usb_cdc_wdm_register -EXPORT_SYMBOL drivers/usb/gadget/libcomposite 0x1ed020f6 usb_os_desc_prepare_interf_dir -EXPORT_SYMBOL drivers/usb/host/sl811-hcd 0x9f7c6ad7 sl811h_driver -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x0ed8ef10 usb_wwan_dtr_rts -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x1dd0f92b usb_wwan_chars_in_buffer -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x679c2362 usb_wwan_write -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x8e0a63b5 usb_wwan_close -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x95bb60da usb_wwan_suspend -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x96c93b10 usb_wwan_resume -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xa9d6dedb usb_wwan_port_remove -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xc1a076db usb_wwan_write_room -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xcba7d654 usb_wwan_open -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xf0b1994b usb_wwan_tiocmget -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xfad0d56d usb_wwan_tiocmset -EXPORT_SYMBOL drivers/usb/serial/usbserial 0x006fdfee usb_serial_resume -EXPORT_SYMBOL drivers/usb/serial/usbserial 0xf9252280 usb_serial_suspend -EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x14d2a51f mdev_register_driver -EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x24f1efb5 mdev_parent_dev -EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x2ace654b mdev_register_device -EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x51786026 mdev_get_type_group_id -EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x759c5e6a mtype_get_type_group_id -EXPORT_SYMBOL drivers/vfio/mdev/mdev 0xbe5e9557 mdev_unregister_driver -EXPORT_SYMBOL drivers/vfio/mdev/mdev 0xcc4504c0 mtype_get_parent_dev -EXPORT_SYMBOL drivers/vfio/mdev/mdev 0xfe09600c mdev_unregister_device -EXPORT_SYMBOL drivers/vhost/vhost 0x29c1e1b7 vhost_chr_write_iter -EXPORT_SYMBOL drivers/vhost/vhost 0x5d61e417 vhost_chr_poll -EXPORT_SYMBOL drivers/vhost/vringh 0x02ef488c vringh_notify_enable_iotlb -EXPORT_SYMBOL drivers/vhost/vringh 0x1beba022 vringh_init_iotlb -EXPORT_SYMBOL drivers/vhost/vringh 0x22460328 vringh_complete_user -EXPORT_SYMBOL drivers/vhost/vringh 0x275f36a1 vringh_need_notify_kern -EXPORT_SYMBOL drivers/vhost/vringh 0x2ba32d2b vringh_getdesc_user -EXPORT_SYMBOL drivers/vhost/vringh 0x3b304ebb vringh_iov_push_user -EXPORT_SYMBOL drivers/vhost/vringh 0x4311cd91 vringh_iov_pull_user -EXPORT_SYMBOL drivers/vhost/vringh 0x44786f74 vringh_abandon_user -EXPORT_SYMBOL drivers/vhost/vringh 0x6452f2f2 vringh_abandon_kern -EXPORT_SYMBOL drivers/vhost/vringh 0x660779c8 vringh_kiov_advance -EXPORT_SYMBOL drivers/vhost/vringh 0x67a5d577 vringh_init_user -EXPORT_SYMBOL drivers/vhost/vringh 0x6c06989a vringh_complete_multi_user -EXPORT_SYMBOL drivers/vhost/vringh 0x761f1823 vringh_iov_push_iotlb -EXPORT_SYMBOL drivers/vhost/vringh 0x7bc94276 vringh_abandon_iotlb -EXPORT_SYMBOL drivers/vhost/vringh 0x7e5ecd67 vringh_need_notify_iotlb -EXPORT_SYMBOL drivers/vhost/vringh 0x7f283692 vringh_need_notify_user -EXPORT_SYMBOL drivers/vhost/vringh 0x944da08b vringh_notify_disable_iotlb -EXPORT_SYMBOL drivers/vhost/vringh 0x952c7672 vringh_complete_iotlb -EXPORT_SYMBOL drivers/vhost/vringh 0x958d172f vringh_getdesc_kern -EXPORT_SYMBOL drivers/vhost/vringh 0x97fa07e9 vringh_iov_push_kern -EXPORT_SYMBOL drivers/vhost/vringh 0x9cee9a53 vringh_complete_kern -EXPORT_SYMBOL drivers/vhost/vringh 0x9de0039a vringh_notify_enable_kern -EXPORT_SYMBOL drivers/vhost/vringh 0xb902e316 vringh_notify_disable_user -EXPORT_SYMBOL drivers/vhost/vringh 0xbd368e60 vringh_init_kern -EXPORT_SYMBOL drivers/vhost/vringh 0xc2d93a72 vringh_getdesc_iotlb -EXPORT_SYMBOL drivers/vhost/vringh 0xc7c55fca vringh_iov_pull_iotlb -EXPORT_SYMBOL drivers/vhost/vringh 0xde804bb9 vringh_iov_pull_kern -EXPORT_SYMBOL drivers/vhost/vringh 0xe175e325 vringh_notify_disable_kern -EXPORT_SYMBOL drivers/vhost/vringh 0xe18bc990 vringh_notify_enable_user -EXPORT_SYMBOL drivers/vhost/vringh 0xe3eeb439 vringh_set_iotlb -EXPORT_SYMBOL drivers/video/backlight/lcd 0x125e6503 devm_lcd_device_unregister -EXPORT_SYMBOL drivers/video/backlight/lcd 0x1478e5d0 lcd_device_register -EXPORT_SYMBOL drivers/video/backlight/lcd 0x714d1b6d devm_lcd_device_register -EXPORT_SYMBOL drivers/video/backlight/lcd 0x95090e0b lcd_device_unregister -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x04f66c56 svga_tilecursor -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x17f3f471 svga_set_default_seq_regs -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x1be6dc30 svga_set_textmode_vga_regs -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x2c6be2ef svga_tilecopy -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x4ab38ef2 svga_set_default_crt_regs -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x4e171ba4 svga_tileblit -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x592d2746 svga_get_tilemax -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x83a41489 svga_set_timings -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x84c337c2 svga_wcrt_multi -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x84c97d2a svga_match_format -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xb0ab2b2e svga_check_timings -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xb2a317f4 svga_get_caps -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xb853da3f 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 0xf3cfbe8e svga_settile -EXPORT_SYMBOL drivers/video/fbdev/core/syscopyarea 0xe2b29bb8 sys_copyarea -EXPORT_SYMBOL drivers/video/fbdev/core/sysfillrect 0xde4aa4ca sys_fillrect -EXPORT_SYMBOL drivers/video/fbdev/core/sysimgblt 0x8724c304 sys_imageblit -EXPORT_SYMBOL drivers/video/fbdev/cyber2000fb 0x0cc3ede5 cyber2000fb_detach -EXPORT_SYMBOL drivers/video/fbdev/cyber2000fb 0x36595abc 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 0xe2304303 mac_map_monitor_sense -EXPORT_SYMBOL drivers/video/fbdev/macmodes 0xf8d2006b mac_find_mode -EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0xa62b38b9 g450_mnp2f -EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0xd1497c5b matroxfb_g450_setpll_cond -EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0xe3dcc77f matroxfb_g450_setclk -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x2a1cc89b DAC1064_global_restore -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x464745e1 matrox_G100 -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0xd5e18c9b DAC1064_global_init -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0xe26295a6 matrox_mystique -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_Ti3026 0x2be4b087 matrox_millennium -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_accel 0x8246095c matrox_cfbX_init -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x4a50ee55 matroxfb_register_driver -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x558a35d9 matroxfb_wait_for_sync -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0xab2a419a matroxfb_unregister_driver -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0xb0969026 matroxfb_enable_irq -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_g450 0x54ac124d matroxfb_g450_shutdown -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_g450 0x57713fba matroxfb_g450_connect -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x25cf8049 matroxfb_PLL_calcclock -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x42124adb matroxfb_read_pins -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x616a9ff9 matroxfb_vgaHWinit -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x750376aa matroxfb_DAC_out -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xbb3796a0 matroxfb_DAC_in -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xcdc90c64 matroxfb_var2my -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xd815d2de matroxfb_vgaHWrestore -EXPORT_SYMBOL drivers/video/fbdev/sis/sisfb 0x3037658e sis_malloc -EXPORT_SYMBOL drivers/video/fbdev/sis/sisfb 0xfe963115 sis_free -EXPORT_SYMBOL drivers/video/vgastate 0x686de290 restore_vga -EXPORT_SYMBOL drivers/video/vgastate 0xe7a2620e save_vga -EXPORT_SYMBOL drivers/virt/vboxguest/vboxguest 0x021cc9da vbg_hgcm_disconnect -EXPORT_SYMBOL drivers/virt/vboxguest/vboxguest 0x260590c0 vbg_err -EXPORT_SYMBOL drivers/virt/vboxguest/vboxguest 0x4d71f9be vbg_hgcm_call -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 0x96f664ca vbg_put_gdev -EXPORT_SYMBOL drivers/virt/vboxguest/vboxguest 0x9c072aa8 vbg_status_code_to_errno -EXPORT_SYMBOL drivers/virt/vboxguest/vboxguest 0xa6d005c7 vbg_get_gdev -EXPORT_SYMBOL drivers/virt/vboxguest/vboxguest 0xadd4c263 vbg_hgcm_connect -EXPORT_SYMBOL drivers/virtio/virtio_dma_buf 0x03e3a750 virtio_dma_buf_get_uuid -EXPORT_SYMBOL drivers/virtio/virtio_dma_buf 0x0d4f72d2 virtio_dma_buf_attach -EXPORT_SYMBOL drivers/virtio/virtio_dma_buf 0x8cb96334 virtio_dma_buf_export -EXPORT_SYMBOL drivers/virtio/virtio_dma_buf 0xda9734d7 is_virtio_dma_buf -EXPORT_SYMBOL drivers/w1/slaves/w1_ds2780 0x3acf5575 w1_ds2780_io -EXPORT_SYMBOL drivers/w1/slaves/w1_ds2780 0x4ad20c3b w1_ds2780_eeprom_cmd -EXPORT_SYMBOL drivers/w1/slaves/w1_ds2781 0x17b63295 w1_ds2781_io -EXPORT_SYMBOL drivers/w1/slaves/w1_ds2781 0xac270a71 w1_ds2781_eeprom_cmd -EXPORT_SYMBOL drivers/w1/wire 0x12311294 w1_remove_master_device -EXPORT_SYMBOL drivers/w1/wire 0x4149eb9b w1_unregister_family -EXPORT_SYMBOL drivers/w1/wire 0x9c012b6a w1_add_master_device -EXPORT_SYMBOL drivers/w1/wire 0xd1ee008f w1_register_family -EXPORT_SYMBOL drivers/watchdog/iTCO_vendor_support 0x04e133fc iTCO_vendor_check_noreboot_on -EXPORT_SYMBOL drivers/watchdog/iTCO_vendor_support 0x75bec08d iTCO_vendor_pre_stop -EXPORT_SYMBOL drivers/watchdog/iTCO_vendor_support 0xc8930f32 iTCO_vendor_pre_start -EXPORT_SYMBOL drivers/watchdog/iTCO_vendor_support 0xed2a3373 iTCO_vendorsupport -EXPORT_SYMBOL fs/fscache/fscache 0x005d1cac fscache_fsdef_index -EXPORT_SYMBOL fs/fscache/fscache 0x00b32018 __fscache_uncache_all_inode_pages -EXPORT_SYMBOL fs/fscache/fscache 0x057574a1 fscache_init_cache -EXPORT_SYMBOL fs/fscache/fscache 0x0c30019c fscache_operation_init -EXPORT_SYMBOL fs/fscache/fscache 0x1488d469 fscache_mark_pages_cached -EXPORT_SYMBOL fs/fscache/fscache 0x24c70570 __fscache_acquire_cookie -EXPORT_SYMBOL fs/fscache/fscache 0x29012c3c __fscache_relinquish_cookie -EXPORT_SYMBOL fs/fscache/fscache 0x2a23ce34 __fscache_begin_read_operation -EXPORT_SYMBOL fs/fscache/fscache 0x2e1e20bf fscache_object_init -EXPORT_SYMBOL fs/fscache/fscache 0x31d630be __fscache_register_netfs -EXPORT_SYMBOL fs/fscache/fscache 0x36ca09e2 fscache_object_mark_killed -EXPORT_SYMBOL fs/fscache/fscache 0x392b25cf fscache_put_operation -EXPORT_SYMBOL fs/fscache/fscache 0x497c081f __fscache_check_page_write -EXPORT_SYMBOL fs/fscache/fscache 0x4d720bf5 fscache_object_destroy -EXPORT_SYMBOL fs/fscache/fscache 0x4d9a1584 fscache_add_cache -EXPORT_SYMBOL fs/fscache/fscache 0x5877cc87 fscache_check_aux -EXPORT_SYMBOL fs/fscache/fscache 0x5cec200f __fscache_attr_changed -EXPORT_SYMBOL fs/fscache/fscache 0x5d6fd441 fscache_io_error -EXPORT_SYMBOL fs/fscache/fscache 0x744ba0e6 fscache_object_lookup_negative -EXPORT_SYMBOL fs/fscache/fscache 0x74530ecd fscache_op_debug_id -EXPORT_SYMBOL fs/fscache/fscache 0x79427b29 fscache_object_retrying_stale -EXPORT_SYMBOL fs/fscache/fscache 0x844efce0 __fscache_check_consistency -EXPORT_SYMBOL fs/fscache/fscache 0x8696731a __fscache_write_page -EXPORT_SYMBOL fs/fscache/fscache 0x8d518c30 fscache_op_complete -EXPORT_SYMBOL fs/fscache/fscache 0x8ede3a5a __fscache_wait_on_invalidate -EXPORT_SYMBOL fs/fscache/fscache 0x940996f5 __fscache_maybe_release_page -EXPORT_SYMBOL fs/fscache/fscache 0x982d6e08 fscache_enqueue_operation -EXPORT_SYMBOL fs/fscache/fscache 0x992ea1e1 __fscache_invalidate -EXPORT_SYMBOL fs/fscache/fscache 0x9c285d6c __fscache_update_cookie -EXPORT_SYMBOL fs/fscache/fscache 0xa140d59a fscache_mark_page_cached -EXPORT_SYMBOL fs/fscache/fscache 0xa5004f87 fscache_cache_cleared_wq -EXPORT_SYMBOL fs/fscache/fscache 0xaad43438 __fscache_readpages_cancel -EXPORT_SYMBOL fs/fscache/fscache 0xb4496edf __fscache_wait_on_page_write -EXPORT_SYMBOL fs/fscache/fscache 0xb91eb175 __fscache_enable_cookie -EXPORT_SYMBOL fs/fscache/fscache 0xbd3daed1 __fscache_disable_cookie -EXPORT_SYMBOL fs/fscache/fscache 0xc72d587b __fscache_unregister_netfs -EXPORT_SYMBOL fs/fscache/fscache 0xd725879f fscache_withdraw_cache -EXPORT_SYMBOL fs/fscache/fscache 0xe567c88e __fscache_read_or_alloc_page -EXPORT_SYMBOL fs/fscache/fscache 0xeff1538d __fscache_alloc_page -EXPORT_SYMBOL fs/fscache/fscache 0xf77aeb31 __fscache_uncache_page -EXPORT_SYMBOL fs/fscache/fscache 0xfbfd46c0 fscache_obtained_object -EXPORT_SYMBOL fs/fscache/fscache 0xfff8b9cb __fscache_read_or_alloc_pages -EXPORT_SYMBOL fs/netfs/netfs 0x11236586 netfs_stats_show -EXPORT_SYMBOL fs/netfs/netfs 0x55fb9863 netfs_subreq_terminated -EXPORT_SYMBOL fs/netfs/netfs 0x98fc384b netfs_write_begin -EXPORT_SYMBOL fs/netfs/netfs 0xd93bbc2f netfs_readahead -EXPORT_SYMBOL fs/netfs/netfs 0xdae46992 netfs_readpage -EXPORT_SYMBOL fs/ocfs2/cluster/ocfs2_nodemanager 0xbfd7d7a2 o2hb_global_heartbeat_active -EXPORT_SYMBOL fs/quota/quota_tree 0x3784dfde qtree_delete_dquot -EXPORT_SYMBOL fs/quota/quota_tree 0x44b2e8fa qtree_release_dquot -EXPORT_SYMBOL fs/quota/quota_tree 0x88752a07 qtree_read_dquot -EXPORT_SYMBOL fs/quota/quota_tree 0x9b80f5cd qtree_get_next_id -EXPORT_SYMBOL fs/quota/quota_tree 0xd5cf2197 qtree_write_dquot -EXPORT_SYMBOL fs/quota/quota_tree 0xfeeb943f qtree_entry_unused -EXPORT_SYMBOL lib/crc-itu-t 0x09a34a2b crc_itu_t -EXPORT_SYMBOL lib/crc-itu-t 0xd819a524 crc_itu_t_table -EXPORT_SYMBOL lib/crc7 0x65aaf037 crc7_be_syndrome_table -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 0x34b59d21 lc_seq_printf_stats -EXPORT_SYMBOL lib/lru_cache 0x4522d82a lc_reset -EXPORT_SYMBOL lib/lru_cache 0x4cf5f5a8 lc_is_used -EXPORT_SYMBOL lib/lru_cache 0x5752f31b lc_del -EXPORT_SYMBOL lib/lru_cache 0x7257beee lc_element_by_index -EXPORT_SYMBOL lib/lru_cache 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 0xda3ef2c0 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 0x0bfb3937 lowpan_unregister_netdev -EXPORT_SYMBOL net/6lowpan/6lowpan 0x4daf7914 lowpan_nhc_add -EXPORT_SYMBOL net/6lowpan/6lowpan 0x55dfed0f lowpan_register_netdevice -EXPORT_SYMBOL net/6lowpan/6lowpan 0xd754a6d8 lowpan_register_netdev -EXPORT_SYMBOL net/6lowpan/6lowpan 0xeedf297a lowpan_unregister_netdevice -EXPORT_SYMBOL net/6lowpan/6lowpan 0xfed7b9b6 lowpan_nhc_del -EXPORT_SYMBOL net/802/p8022 0x4457c921 unregister_8022_client -EXPORT_SYMBOL net/802/p8022 0xb1989e7b register_8022_client -EXPORT_SYMBOL net/802/psnap 0x502168c4 register_snap_client -EXPORT_SYMBOL net/802/psnap 0x5bf282a7 unregister_snap_client -EXPORT_SYMBOL net/9p/9pnet 0x03c5c849 p9_client_getlock_dotl -EXPORT_SYMBOL net/9p/9pnet 0x041921ec p9_client_wstat -EXPORT_SYMBOL net/9p/9pnet 0x0b327c7a p9_client_attach -EXPORT_SYMBOL net/9p/9pnet 0x1018ade3 p9_client_open -EXPORT_SYMBOL net/9p/9pnet 0x1032ac76 p9_client_lock_dotl -EXPORT_SYMBOL net/9p/9pnet 0x11a651e3 v9fs_unregister_trans -EXPORT_SYMBOL net/9p/9pnet 0x1cee2aa1 p9_req_put -EXPORT_SYMBOL net/9p/9pnet 0x1cf8bf1e p9_client_fcreate -EXPORT_SYMBOL net/9p/9pnet 0x2345811e p9_is_proto_dotl -EXPORT_SYMBOL net/9p/9pnet 0x24e2391a v9fs_get_default_trans -EXPORT_SYMBOL net/9p/9pnet 0x2b4a9c72 p9_client_clunk -EXPORT_SYMBOL net/9p/9pnet 0x3221fae9 p9_client_create -EXPORT_SYMBOL net/9p/9pnet 0x35f0cbd6 p9_client_symlink -EXPORT_SYMBOL net/9p/9pnet 0x3d73a797 p9_errstr2errno -EXPORT_SYMBOL net/9p/9pnet 0x40081174 p9_client_create_dotl -EXPORT_SYMBOL net/9p/9pnet 0x4f66ff6d p9_client_stat -EXPORT_SYMBOL net/9p/9pnet 0x53345c85 p9_client_begin_disconnect -EXPORT_SYMBOL net/9p/9pnet 0x5e18bbf6 p9_client_unlinkat -EXPORT_SYMBOL net/9p/9pnet 0x64661e6e p9_is_proto_dotu -EXPORT_SYMBOL net/9p/9pnet 0x64789efd p9_client_read_once -EXPORT_SYMBOL net/9p/9pnet 0x6560f51b p9dirent_read -EXPORT_SYMBOL net/9p/9pnet 0x67b82891 p9_client_setattr -EXPORT_SYMBOL net/9p/9pnet 0x6eece32f p9_client_mknod_dotl -EXPORT_SYMBOL net/9p/9pnet 0x76226851 p9_client_link -EXPORT_SYMBOL net/9p/9pnet 0x7ff86673 p9_client_fsync -EXPORT_SYMBOL net/9p/9pnet 0x82cd1aae p9_tag_lookup -EXPORT_SYMBOL net/9p/9pnet 0x859aa20f p9_client_cb -EXPORT_SYMBOL net/9p/9pnet 0x87ae923f p9_client_rename -EXPORT_SYMBOL net/9p/9pnet 0x8edc133f p9_client_walk -EXPORT_SYMBOL net/9p/9pnet 0x9421e2ab p9_client_disconnect -EXPORT_SYMBOL net/9p/9pnet 0x960518f2 p9_client_renameat -EXPORT_SYMBOL net/9p/9pnet 0x984c5e73 p9_fcall_fini -EXPORT_SYMBOL net/9p/9pnet 0xab34efd6 p9_release_pages -EXPORT_SYMBOL net/9p/9pnet 0xad1aba64 p9_client_destroy -EXPORT_SYMBOL net/9p/9pnet 0xaea5e2a8 p9_show_client_options -EXPORT_SYMBOL net/9p/9pnet 0xb20f80d9 p9_client_mkdir_dotl -EXPORT_SYMBOL net/9p/9pnet 0xb79f25fd p9_parse_header -EXPORT_SYMBOL net/9p/9pnet 0xb97c0aeb v9fs_get_trans_by_name -EXPORT_SYMBOL net/9p/9pnet 0xbacccac4 v9fs_register_trans -EXPORT_SYMBOL net/9p/9pnet 0xc2699f13 p9_client_getattr_dotl -EXPORT_SYMBOL net/9p/9pnet 0xc40557a0 p9_client_read -EXPORT_SYMBOL net/9p/9pnet 0xc5a43328 p9_client_write -EXPORT_SYMBOL net/9p/9pnet 0xc6af3e08 p9_client_statfs -EXPORT_SYMBOL net/9p/9pnet 0xd384c683 p9stat_free -EXPORT_SYMBOL net/9p/9pnet 0xd43d59bb p9_client_readlink -EXPORT_SYMBOL net/9p/9pnet 0xdbf57fcf p9_client_readdir -EXPORT_SYMBOL net/9p/9pnet 0xe58a3360 p9_error_init -EXPORT_SYMBOL net/9p/9pnet 0xf4c85fae p9stat_read -EXPORT_SYMBOL net/9p/9pnet 0xf725d764 p9_client_remove -EXPORT_SYMBOL net/appletalk/appletalk 0x1c22e757 alloc_ltalkdev -EXPORT_SYMBOL net/appletalk/appletalk 0x51208172 atrtr_get_dev -EXPORT_SYMBOL net/appletalk/appletalk 0xb5d7e275 atalk_find_dev_addr -EXPORT_SYMBOL net/appletalk/appletalk 0xeae2c96d aarp_send_ddp -EXPORT_SYMBOL net/atm/atm 0x0167ee5f atm_dev_signal_change -EXPORT_SYMBOL net/atm/atm 0x16b2758e register_atm_ioctl -EXPORT_SYMBOL net/atm/atm 0x171e5594 atm_dev_deregister -EXPORT_SYMBOL net/atm/atm 0x24f24186 atm_alloc_charge -EXPORT_SYMBOL net/atm/atm 0x2cc2d52d vcc_hash -EXPORT_SYMBOL net/atm/atm 0x380e2fb8 atm_init_aal5 -EXPORT_SYMBOL net/atm/atm 0x4443d399 atm_proc_root -EXPORT_SYMBOL net/atm/atm 0x49d23fc0 atm_dev_lookup -EXPORT_SYMBOL net/atm/atm 0x4abb8f7f atm_charge -EXPORT_SYMBOL net/atm/atm 0x64ec32d1 deregister_atm_ioctl -EXPORT_SYMBOL net/atm/atm 0x80c599d7 atm_dev_register -EXPORT_SYMBOL net/atm/atm 0x9feaf287 sonet_subtract_stats -EXPORT_SYMBOL net/atm/atm 0xaa024146 sonet_copy_stats -EXPORT_SYMBOL net/atm/atm 0xae134e9a vcc_insert_socket -EXPORT_SYMBOL net/atm/atm 0xb72c4750 vcc_sklist_lock -EXPORT_SYMBOL net/atm/atm 0xbfa7d61f vcc_process_recv_queue -EXPORT_SYMBOL net/atm/atm 0xeab564b6 vcc_release_async -EXPORT_SYMBOL net/atm/atm 0xf49bc67a atm_pcr_goal -EXPORT_SYMBOL net/atm/atm 0xfdcdf13c atm_dev_release_vccs -EXPORT_SYMBOL net/ax25/ax25 0x02905063 ax25_find_cb -EXPORT_SYMBOL net/ax25/ax25 0x096b9793 ax25_send_frame -EXPORT_SYMBOL net/ax25/ax25 0x101a7e75 ax25_ip_xmit -EXPORT_SYMBOL net/ax25/ax25 0x14cecd59 ax25_display_timer -EXPORT_SYMBOL net/ax25/ax25 0x242852b9 ax25_uid_policy -EXPORT_SYMBOL net/ax25/ax25 0x3b323840 ax25_header_ops -EXPORT_SYMBOL net/ax25/ax25 0x4502c65a asc2ax -EXPORT_SYMBOL net/ax25/ax25 0x53dea1ff ax2asc -EXPORT_SYMBOL net/ax25/ax25 0x5b3af82d ax25_listen_release -EXPORT_SYMBOL net/ax25/ax25 0x8ede9e26 ax25_protocol_release -EXPORT_SYMBOL net/ax25/ax25 0xb032f5d8 ax25_linkfail_release -EXPORT_SYMBOL net/ax25/ax25 0xb86d9e3e ax25_linkfail_register -EXPORT_SYMBOL net/ax25/ax25 0xbb4d2334 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 0x00ad6ba6 l2cap_is_socket -EXPORT_SYMBOL net/bluetooth/bluetooth 0x03f7ee5f bt_accept_enqueue -EXPORT_SYMBOL net/bluetooth/bluetooth 0x0718b8b7 bt_info -EXPORT_SYMBOL net/bluetooth/bluetooth 0x0b9e839b hci_release_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0x0c31bf9d hci_unregister_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0x19e5c3bd hci_recv_diag -EXPORT_SYMBOL net/bluetooth/bluetooth 0x1a6c3d3a l2cap_unregister_user -EXPORT_SYMBOL net/bluetooth/bluetooth 0x214e4265 bt_warn -EXPORT_SYMBOL net/bluetooth/bluetooth 0x299a05f2 hci_conn_security -EXPORT_SYMBOL net/bluetooth/bluetooth 0x2a3712f5 hci_set_fw_info -EXPORT_SYMBOL net/bluetooth/bluetooth 0x310fa2d5 hci_conn_check_secure -EXPORT_SYMBOL net/bluetooth/bluetooth 0x3ed00a67 hci_resume_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0x3f41b1bb bt_sock_register -EXPORT_SYMBOL net/bluetooth/bluetooth 0x4455ed76 bt_procfs_cleanup -EXPORT_SYMBOL net/bluetooth/bluetooth 0x456d5b02 bt_accept_dequeue -EXPORT_SYMBOL net/bluetooth/bluetooth 0x47a1eb92 l2cap_register_user -EXPORT_SYMBOL net/bluetooth/bluetooth 0x49634f19 bt_procfs_init -EXPORT_SYMBOL net/bluetooth/bluetooth 0x4adce0ad __hci_cmd_sync -EXPORT_SYMBOL net/bluetooth/bluetooth 0x51b5a0e9 hci_mgmt_chan_register -EXPORT_SYMBOL net/bluetooth/bluetooth 0x5361af77 hci_cmd_sync -EXPORT_SYMBOL net/bluetooth/bluetooth 0x636b4f3d l2cap_chan_close -EXPORT_SYMBOL net/bluetooth/bluetooth 0x64efef66 bt_sock_poll -EXPORT_SYMBOL net/bluetooth/bluetooth 0x6c5802a7 bt_accept_unlink -EXPORT_SYMBOL net/bluetooth/bluetooth 0x6d4292e0 hci_conn_switch_role -EXPORT_SYMBOL net/bluetooth/bluetooth 0x76769e2c __hci_cmd_send -EXPORT_SYMBOL net/bluetooth/bluetooth 0x7716a89c bt_sock_wait_state -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 0x80da9516 bt_sock_stream_recvmsg -EXPORT_SYMBOL net/bluetooth/bluetooth 0x8ef70b91 hci_free_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0x8fea24bd bt_sock_unregister -EXPORT_SYMBOL net/bluetooth/bluetooth 0x96889102 bt_sock_ioctl -EXPORT_SYMBOL net/bluetooth/bluetooth 0x99627045 hci_reset_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0x99aa6333 hci_suspend_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0xa1d91d6f bt_sock_unlink -EXPORT_SYMBOL net/bluetooth/bluetooth 0xa6f05678 hci_register_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0xad3b7efd bt_sock_link -EXPORT_SYMBOL net/bluetooth/bluetooth 0xb1f39b8b hci_unregister_cb -EXPORT_SYMBOL net/bluetooth/bluetooth 0xb5236cb5 hci_set_hw_info -EXPORT_SYMBOL net/bluetooth/bluetooth 0xb5c5bbcb l2cap_conn_put -EXPORT_SYMBOL net/bluetooth/bluetooth 0xb65491f2 bt_sock_reclassify_lock -EXPORT_SYMBOL net/bluetooth/bluetooth 0xbc2574a3 hci_get_route -EXPORT_SYMBOL net/bluetooth/bluetooth 0xbfc1c9af bt_sock_wait_ready -EXPORT_SYMBOL net/bluetooth/bluetooth 0xc150aaa2 l2cap_conn_get -EXPORT_SYMBOL net/bluetooth/bluetooth 0xc81619bf bt_sock_recvmsg -EXPORT_SYMBOL net/bluetooth/bluetooth 0xcb23bd6c __hci_cmd_sync_ev -EXPORT_SYMBOL net/bluetooth/bluetooth 0xcf439006 hci_register_cb -EXPORT_SYMBOL net/bluetooth/bluetooth 0xd183c2f8 hci_recv_frame -EXPORT_SYMBOL net/bluetooth/bluetooth 0xd7613212 bt_err_ratelimited -EXPORT_SYMBOL net/bluetooth/bluetooth 0xdbc8c0d8 hci_alloc_dev_priv -EXPORT_SYMBOL net/bluetooth/bluetooth 0xddacccf6 bt_warn_ratelimited -EXPORT_SYMBOL net/bluetooth/bluetooth 0xf307f569 hci_mgmt_chan_unregister -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x1d6f9248 ebt_unregister_template -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x253684f7 ebt_register_template -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x2a4b2694 ebt_unregister_table_pre_exit -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x5d92060f ebt_register_table -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xca0ae825 ebt_unregister_table -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xf8fb678a 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 0x55674d8e caif_connect_client -EXPORT_SYMBOL net/caif/caif 0x63c0e55d get_cfcnfg -EXPORT_SYMBOL net/caif/caif 0x6c5b5096 cfcnfg_add_phy_layer -EXPORT_SYMBOL net/caif/caif 0x6ebb849f caif_enroll_dev -EXPORT_SYMBOL net/caif/caif 0x839ddb7b cfcnfg_set_phy_state -EXPORT_SYMBOL net/caif/caif 0x9e3e305d cfpkt_set_prio -EXPORT_SYMBOL net/caif/caif 0xb7b6874e caif_free_client -EXPORT_SYMBOL net/caif/caif 0xf9daf376 caif_disconnect_client -EXPORT_SYMBOL net/can/can 0x124cce00 can_rx_unregister -EXPORT_SYMBOL net/can/can 0x56763101 can_proto_register -EXPORT_SYMBOL net/can/can 0x7e4d4ea7 can_sock_destruct -EXPORT_SYMBOL net/can/can 0x873aec91 can_proto_unregister -EXPORT_SYMBOL net/can/can 0xd2456212 can_send -EXPORT_SYMBOL net/can/can 0xdaff287d can_rx_register -EXPORT_SYMBOL net/ceph/libceph 0x0959eb6b ceph_osdc_wait_request -EXPORT_SYMBOL net/ceph/libceph 0x0ae48a25 ceph_print_client_options -EXPORT_SYMBOL net/ceph/libceph 0x0bf06565 ceph_monc_do_statfs -EXPORT_SYMBOL net/ceph/libceph 0x0c1b315a ceph_pg_pool_name_by_id -EXPORT_SYMBOL net/ceph/libceph 0x0c801ae1 ceph_auth_verify_authorizer_reply -EXPORT_SYMBOL net/ceph/libceph 0x0ed9416a ceph_osdc_sync -EXPORT_SYMBOL net/ceph/libceph 0x0f00c707 osd_req_op_extent_osd_data -EXPORT_SYMBOL net/ceph/libceph 0x10a900b2 ceph_copy_user_to_page_vector -EXPORT_SYMBOL net/ceph/libceph 0x1339359d ceph_monc_init -EXPORT_SYMBOL net/ceph/libceph 0x13772943 ceph_osdc_get_request -EXPORT_SYMBOL net/ceph/libceph 0x165b1948 ceph_pagelist_free_reserve -EXPORT_SYMBOL net/ceph/libceph 0x18537aa7 ceph_pg_to_acting_primary -EXPORT_SYMBOL net/ceph/libceph 0x1afd914b ceph_con_close -EXPORT_SYMBOL net/ceph/libceph 0x1cfaf1d4 ceph_osdc_watch -EXPORT_SYMBOL net/ceph/libceph 0x2087719e ceph_oid_copy -EXPORT_SYMBOL net/ceph/libceph 0x2101cbc9 ceph_oid_destroy -EXPORT_SYMBOL net/ceph/libceph 0x229c8a94 osd_req_op_cls_request_data_pages -EXPORT_SYMBOL net/ceph/libceph 0x23d0502c ceph_msg_put -EXPORT_SYMBOL net/ceph/libceph 0x252cc97c ceph_pg_poolid_by_name -EXPORT_SYMBOL net/ceph/libceph 0x26fa54d2 ceph_osdc_unwatch -EXPORT_SYMBOL net/ceph/libceph 0x2a6ad5fb osd_req_op_extent_osd_data_bio -EXPORT_SYMBOL net/ceph/libceph 0x2a983d26 ceph_pagelist_release -EXPORT_SYMBOL net/ceph/libceph 0x2b81aa92 ceph_cls_set_cookie -EXPORT_SYMBOL net/ceph/libceph 0x2e3e1016 ceph_monc_got_map -EXPORT_SYMBOL net/ceph/libceph 0x30643508 ceph_msg_get -EXPORT_SYMBOL net/ceph/libceph 0x352d699d ceph_parse_param -EXPORT_SYMBOL net/ceph/libceph 0x37df7a09 ceph_cls_assert_locked -EXPORT_SYMBOL net/ceph/libceph 0x380de13a ceph_osdc_alloc_messages -EXPORT_SYMBOL net/ceph/libceph 0x38f2d94e ceph_file_to_extents -EXPORT_SYMBOL net/ceph/libceph 0x39aea5fc ceph_put_page_vector -EXPORT_SYMBOL net/ceph/libceph 0x3c8d7111 ceph_get_num_objects -EXPORT_SYMBOL net/ceph/libceph 0x3d27bb8d osd_req_op_extent_osd_data_pagelist -EXPORT_SYMBOL net/ceph/libceph 0x3e6594b4 osd_req_op_cls_response_data_pages -EXPORT_SYMBOL net/ceph/libceph 0x417a9131 ceph_oloc_destroy -EXPORT_SYMBOL net/ceph/libceph 0x425739fa ceph_osdc_notify_ack -EXPORT_SYMBOL net/ceph/libceph 0x4354bce0 ceph_check_fsid -EXPORT_SYMBOL net/ceph/libceph 0x440a6ad0 ceph_monc_renew_subs -EXPORT_SYMBOL net/ceph/libceph 0x466b85b8 libceph_compatible -EXPORT_SYMBOL net/ceph/libceph 0x47f6ad24 ceph_osdc_copy_from -EXPORT_SYMBOL net/ceph/libceph 0x4887e0a6 ceph_msg_data_add_pagelist -EXPORT_SYMBOL net/ceph/libceph 0x4b36fe0a ceph_msg_data_add_pages -EXPORT_SYMBOL net/ceph/libceph 0x50603ce3 ceph_decode_entity_addrvec -EXPORT_SYMBOL net/ceph/libceph 0x53511ded ceph_osdc_alloc_request -EXPORT_SYMBOL net/ceph/libceph 0x54a89f5a ceph_osdc_call -EXPORT_SYMBOL net/ceph/libceph 0x55842243 ceph_osdc_flush_notifies -EXPORT_SYMBOL net/ceph/libceph 0x57baf885 ceph_str_hash -EXPORT_SYMBOL net/ceph/libceph 0x5aa4b9f4 ceph_osdc_put_request -EXPORT_SYMBOL net/ceph/libceph 0x5aeeee62 ceph_oid_aprintf -EXPORT_SYMBOL net/ceph/libceph 0x5b64f358 ceph_monc_blocklist_add -EXPORT_SYMBOL net/ceph/libceph 0x5b890ab3 ceph_alloc_page_vector -EXPORT_SYMBOL net/ceph/libceph 0x5df49a54 ceph_copy_to_page_vector -EXPORT_SYMBOL net/ceph/libceph 0x6131a1c2 osd_req_op_cls_request_data_bvecs -EXPORT_SYMBOL net/ceph/libceph 0x61dbf7c0 ceph_osdc_maybe_request_map -EXPORT_SYMBOL net/ceph/libceph 0x63758856 ceph_str_hash_name -EXPORT_SYMBOL net/ceph/libceph 0x6381f622 ceph_osdc_notify -EXPORT_SYMBOL net/ceph/libceph 0x67d7fc98 ceph_con_init -EXPORT_SYMBOL net/ceph/libceph 0x681702f0 ceph_msg_data_add_bvecs -EXPORT_SYMBOL net/ceph/libceph 0x6a5494ca osd_req_op_alloc_hint_init -EXPORT_SYMBOL net/ceph/libceph 0x6a6825d3 osd_req_op_extent_osd_data_pages -EXPORT_SYMBOL net/ceph/libceph 0x6a7a38a0 ceph_pr_addr -EXPORT_SYMBOL net/ceph/libceph 0x6d007973 ceph_auth_handle_svc_reply_more -EXPORT_SYMBOL net/ceph/libceph 0x6f0c47f3 ceph_cls_lock -EXPORT_SYMBOL net/ceph/libceph 0x728e677f ceph_msg_data_add_bio -EXPORT_SYMBOL net/ceph/libceph 0x779309b0 ceph_msg_new -EXPORT_SYMBOL net/ceph/libceph 0x78124e47 ceph_osdc_clear_abort_err -EXPORT_SYMBOL net/ceph/libceph 0x7bfd55a6 osd_req_op_extent_dup_last -EXPORT_SYMBOL net/ceph/libceph 0x7c0bf5b7 ceph_monc_get_version -EXPORT_SYMBOL net/ceph/libceph 0x7cc9f7d7 ceph_pg_pool_flags -EXPORT_SYMBOL net/ceph/libceph 0x7d8a5335 ceph_client_gid -EXPORT_SYMBOL net/ceph/libceph 0x818f7181 ceph_msg_new2 -EXPORT_SYMBOL net/ceph/libceph 0x81ae4c49 ceph_wait_for_latest_osdmap -EXPORT_SYMBOL net/ceph/libceph 0x86fca7e4 ceph_put_snap_context -EXPORT_SYMBOL net/ceph/libceph 0x8bb708a8 ceph_osdc_update_epoch_barrier -EXPORT_SYMBOL net/ceph/libceph 0x8c2bb6e4 ceph_osdc_start_request -EXPORT_SYMBOL net/ceph/libceph 0x8f75f105 osd_req_op_xattr_init -EXPORT_SYMBOL net/ceph/libceph 0x93bf40e2 osd_req_op_extent_osd_data_bvec_pos -EXPORT_SYMBOL net/ceph/libceph 0x977d7a7e ceph_cls_unlock -EXPORT_SYMBOL net/ceph/libceph 0x987d3968 ceph_alloc_options -EXPORT_SYMBOL net/ceph/libceph 0x996999e8 ceph_auth_get_authorizer -EXPORT_SYMBOL net/ceph/libceph 0x9976195c ceph_destroy_client -EXPORT_SYMBOL net/ceph/libceph 0x9a672261 ceph_auth_invalidate_authorizer -EXPORT_SYMBOL net/ceph/libceph 0x9ad2a83e ceph_monc_get_version_async -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 0x9ccb7edf ceph_cls_lock_info -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 0xa0b825f1 ceph_osdc_abort_requests -EXPORT_SYMBOL net/ceph/libceph 0xa1fe48f0 osd_req_op_cls_init -EXPORT_SYMBOL net/ceph/libceph 0xa3d2ac34 ceph_osdc_cancel_request -EXPORT_SYMBOL net/ceph/libceph 0xa698f998 ceph_free_lockers -EXPORT_SYMBOL net/ceph/libceph 0xa77212f9 ceph_monc_validate_auth -EXPORT_SYMBOL net/ceph/libceph 0xaa93e5a4 ceph_msg_dump -EXPORT_SYMBOL net/ceph/libceph 0xad703657 ceph_auth_destroy_authorizer -EXPORT_SYMBOL net/ceph/libceph 0xae55085d osd_req_op_extent_update -EXPORT_SYMBOL net/ceph/libceph 0xafb8a407 ceph_msgr_flush -EXPORT_SYMBOL net/ceph/libceph 0xb190860f ceph_auth_handle_svc_reply_done -EXPORT_SYMBOL net/ceph/libceph 0xb54676fa ceph_msg_type_name -EXPORT_SYMBOL net/ceph/libceph 0xb57a9435 osd_req_op_extent_osd_data_bvecs -EXPORT_SYMBOL net/ceph/libceph 0xb5a5005d ceph_client_addr -EXPORT_SYMBOL net/ceph/libceph 0xb72c162e ceph_buffer_release -EXPORT_SYMBOL net/ceph/libceph 0xb908ca4b ceph_con_keepalive -EXPORT_SYMBOL net/ceph/libceph 0xb9cac91a ceph_zero_page_vector_range -EXPORT_SYMBOL net/ceph/libceph 0xbaff4965 ceph_open_session -EXPORT_SYMBOL net/ceph/libceph 0xbbae0c03 osd_req_op_cls_request_data_pagelist -EXPORT_SYMBOL net/ceph/libceph 0xbca5f4a8 ceph_object_locator_to_pg -EXPORT_SYMBOL net/ceph/libceph 0xbd2f79ae ceph_oloc_copy -EXPORT_SYMBOL net/ceph/libceph 0xbe3879aa ceph_get_snap_context -EXPORT_SYMBOL net/ceph/libceph 0xbe869781 osd_req_op_raw_data_in_pages -EXPORT_SYMBOL net/ceph/libceph 0xbf2cb7dc ceph_auth_add_authorizer_challenge -EXPORT_SYMBOL net/ceph/libceph 0xc07086dc ceph_copy_from_page_vector -EXPORT_SYMBOL net/ceph/libceph 0xc17fe9bf osd_req_op_extent_init -EXPORT_SYMBOL net/ceph/libceph 0xc21d4e16 ceph_monc_want_map -EXPORT_SYMBOL net/ceph/libceph 0xc366bfa1 ceph_pagelist_truncate -EXPORT_SYMBOL net/ceph/libceph 0xc3f3d282 __ceph_open_session -EXPORT_SYMBOL net/ceph/libceph 0xc6f6cfb4 ceph_cls_break_lock -EXPORT_SYMBOL net/ceph/libceph 0xca80437b ceph_extent_to_file -EXPORT_SYMBOL net/ceph/libceph 0xcb2c598c ceph_monc_stop -EXPORT_SYMBOL net/ceph/libceph 0xcd9eebd0 ceph_con_open -EXPORT_SYMBOL net/ceph/libceph 0xcfcb341d ceph_osdc_list_watchers -EXPORT_SYMBOL net/ceph/libceph 0xcfd8f731 ceph_auth_handle_bad_authorizer -EXPORT_SYMBOL net/ceph/libceph 0xd020a7d8 ceph_auth_is_authenticated -EXPORT_SYMBOL net/ceph/libceph 0xd4d736db ceph_destroy_options -EXPORT_SYMBOL net/ceph/libceph 0xd4eb7735 ceph_decode_entity_addr -EXPORT_SYMBOL net/ceph/libceph 0xd52b078b ceph_con_send -EXPORT_SYMBOL net/ceph/libceph 0xd595dc75 ceph_release_page_vector -EXPORT_SYMBOL net/ceph/libceph 0xd641d624 ceph_reset_client_addr -EXPORT_SYMBOL net/ceph/libceph 0xde286e46 ceph_parse_mon_ips -EXPORT_SYMBOL net/ceph/libceph 0xdf6ef4a1 ceph_oid_printf -EXPORT_SYMBOL net/ceph/libceph 0xdfc091f9 ceph_entity_type_name -EXPORT_SYMBOL net/ceph/libceph 0xe43d6ef7 ceph_compare_options -EXPORT_SYMBOL net/ceph/libceph 0xe76e7226 ceph_pagelist_alloc -EXPORT_SYMBOL net/ceph/libceph 0xed2ee816 ceph_monc_open_session -EXPORT_SYMBOL net/ceph/libceph 0xede415f8 __ceph_auth_get_authorizer -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 0xf0f1b192 ceph_osdc_new_request -EXPORT_SYMBOL net/ceph/libceph 0xf254297e ceph_addr_is_blank -EXPORT_SYMBOL net/ceph/libceph 0xf636d73b osd_req_op_init -EXPORT_SYMBOL net/ceph/libceph 0xf928d380 ceph_create_client -EXPORT_SYMBOL net/ceph/libceph 0xfdc18596 ceph_monc_wait_osdmap -EXPORT_SYMBOL net/dccp/dccp_ipv4 0x1909b625 dccp_syn_ack_timeout -EXPORT_SYMBOL net/dccp/dccp_ipv4 0x5975cfce dccp_req_err -EXPORT_SYMBOL net/hsr/hsr 0x2f96899e hsr_get_version -EXPORT_SYMBOL net/hsr/hsr 0xefca5f11 is_hsr_master -EXPORT_SYMBOL net/ieee802154/ieee802154 0x00944962 wpan_phy_register -EXPORT_SYMBOL net/ieee802154/ieee802154 0x1d12582a wpan_phy_find -EXPORT_SYMBOL net/ieee802154/ieee802154 0x4a067846 wpan_phy_for_each -EXPORT_SYMBOL net/ieee802154/ieee802154 0x5626bc76 wpan_phy_unregister -EXPORT_SYMBOL net/ieee802154/ieee802154 0x77f4301e wpan_phy_new -EXPORT_SYMBOL net/ieee802154/ieee802154 0xda2c7ca7 wpan_phy_free -EXPORT_SYMBOL net/ipv4/fou 0x1757d1a4 fou_encap_hlen -EXPORT_SYMBOL net/ipv4/fou 0x95605ab8 __gue_build_header -EXPORT_SYMBOL net/ipv4/fou 0xd68c1e99 __fou_build_header -EXPORT_SYMBOL net/ipv4/fou 0xf13914b3 gue_encap_hlen -EXPORT_SYMBOL net/ipv4/gre 0xb8d163a8 gre_parse_header -EXPORT_SYMBOL net/ipv4/ip_tunnel 0x5abf359b ip_tunnel_encap_del_ops -EXPORT_SYMBOL net/ipv4/ip_tunnel 0x80b230cc ip_tunnel_get_iflink -EXPORT_SYMBOL net/ipv4/ip_tunnel 0x9e8dff30 ip_tunnel_get_link_net -EXPORT_SYMBOL net/ipv4/ip_tunnel 0xa19516f1 ip_tunnel_encap_add_ops -EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x0fa4de30 arpt_register_table -EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x2de76d14 arpt_unregister_table_pre_exit -EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x67783497 arpt_unregister_table -EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0xfc190d50 arpt_do_table -EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x0180e975 ipt_do_table -EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x86534ebc ipt_unregister_table_exit -EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0xa7af4fe8 ipt_register_table -EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0xe0759505 ipt_unregister_table_pre_exit -EXPORT_SYMBOL net/ipv4/tunnel4 0xe160f1cb xfrm4_tunnel_deregister -EXPORT_SYMBOL net/ipv4/tunnel4 0xf8fa329a xfrm4_tunnel_register -EXPORT_SYMBOL net/ipv4/udp_tunnel 0x5536b455 udp_sock_create4 -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x0f74dcef ip6_tnl_change_mtu -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x2362334f ip6_tnl_encap_del_ops -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x411befcc ip6_tnl_encap_add_ops -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x5f716141 ip6_tnl_xmit -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x751f26f8 ip6_tnl_get_iflink -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x86261183 ip6_tnl_get_link_net -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x8db22cbc ip6_tnl_get_cap -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x99b3e0d8 ip6_tnl_parse_tlv_enc_lim -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xe9832cb5 ip6_tnl_rcv -EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x31c309dd ip6t_do_table -EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x795ca12d ip6t_unregister_table_pre_exit -EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x902e69d5 ip6t_unregister_table_exit -EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0xcac87311 ip6t_register_table -EXPORT_SYMBOL net/ipv6/tunnel6 0xd04bdbe5 xfrm6_tunnel_deregister -EXPORT_SYMBOL net/ipv6/tunnel6 0xe17dc425 xfrm6_tunnel_register -EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0x97f6bfd4 xfrm6_tunnel_spi_lookup -EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0xd1f2c9bd xfrm6_tunnel_alloc_spi -EXPORT_SYMBOL net/lapb/lapb 0x34b20976 lapb_setparms -EXPORT_SYMBOL net/lapb/lapb 0x3ee887bb lapb_getparms -EXPORT_SYMBOL net/lapb/lapb 0x5b4adb6c lapb_connect_request -EXPORT_SYMBOL net/lapb/lapb 0xa6a3eb73 lapb_data_received -EXPORT_SYMBOL net/lapb/lapb 0xb93e8a8c lapb_register -EXPORT_SYMBOL net/lapb/lapb 0xba1dff99 lapb_data_request -EXPORT_SYMBOL net/lapb/lapb 0xe3c847e4 lapb_disconnect_request -EXPORT_SYMBOL net/lapb/lapb 0xf033e282 lapb_unregister -EXPORT_SYMBOL net/llc/llc 0x1b418937 llc_set_station_handler -EXPORT_SYMBOL net/llc/llc 0x30148cc9 llc_sap_find -EXPORT_SYMBOL net/llc/llc 0x315f7f03 llc_mac_hdr_init -EXPORT_SYMBOL net/llc/llc 0x38b92846 llc_remove_pack -EXPORT_SYMBOL net/llc/llc 0x4f774eaf llc_sap_close -EXPORT_SYMBOL net/llc/llc 0x52d7b2fd llc_sap_list -EXPORT_SYMBOL net/llc/llc 0xbf12fa40 llc_add_pack -EXPORT_SYMBOL net/llc/llc 0xd63c8227 llc_sap_open -EXPORT_SYMBOL net/llc/llc 0xf3252d63 llc_build_and_send_ui_pkt -EXPORT_SYMBOL net/mac80211/mac80211 0x063f5308 ieee80211_get_tkip_p1k_iv -EXPORT_SYMBOL net/mac80211/mac80211 0x07b2c62e ieee80211_sta_block_awake -EXPORT_SYMBOL net/mac80211/mac80211 0x0a11231d ieee80211_nullfunc_get -EXPORT_SYMBOL net/mac80211/mac80211 0x0ad51986 ieee80211_get_fils_discovery_tmpl -EXPORT_SYMBOL net/mac80211/mac80211 0x0f75dabd ieee80211_disable_rssi_reports -EXPORT_SYMBOL net/mac80211/mac80211 0x11476043 ieee80211_sta_set_buffered -EXPORT_SYMBOL net/mac80211/mac80211 0x12950d23 ieee80211_sched_scan_stopped -EXPORT_SYMBOL net/mac80211/mac80211 0x13bbe3f9 ieee80211_unreserve_tid -EXPORT_SYMBOL net/mac80211/mac80211 0x179c4289 ieee80211_pspoll_get -EXPORT_SYMBOL net/mac80211/mac80211 0x183dcd3b ieee80211_get_key_rx_seq -EXPORT_SYMBOL net/mac80211/mac80211 0x1930645f ieee80211_stop_rx_ba_session -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 0x1e1b4a3c ieee80211_rx_ba_timer_expired -EXPORT_SYMBOL net/mac80211/mac80211 0x23fb0395 ieee80211_sta_uapsd_trigger -EXPORT_SYMBOL net/mac80211/mac80211 0x296dd8d9 ieee80211_unregister_hw -EXPORT_SYMBOL net/mac80211/mac80211 0x29bb07c0 ieee80211_nan_func_terminated -EXPORT_SYMBOL net/mac80211/mac80211 0x2b349b6b ieee80211_sta_ps_transition -EXPORT_SYMBOL net/mac80211/mac80211 0x2cadb72a ieee80211_free_txskb -EXPORT_SYMBOL net/mac80211/mac80211 0x2dbe8fae ieee80211_beacon_get_template -EXPORT_SYMBOL net/mac80211/mac80211 0x316c2c41 ieee80211_tx_prepare_skb -EXPORT_SYMBOL net/mac80211/mac80211 0x32a8994e ieee80211_beacon_update_cntdwn -EXPORT_SYMBOL net/mac80211/mac80211 0x36ca504f ieee80211_sta_pspoll -EXPORT_SYMBOL net/mac80211/mac80211 0x38215ac5 ieee80211_get_buffered_bc -EXPORT_SYMBOL net/mac80211/mac80211 0x392115b4 ieee80211_tx_status -EXPORT_SYMBOL net/mac80211/mac80211 0x394a373a ieee80211_tx_status_8023 -EXPORT_SYMBOL net/mac80211/mac80211 0x4426c7b6 ieee80211_beacon_set_cntdwn -EXPORT_SYMBOL net/mac80211/mac80211 0x4499bb04 __ieee80211_get_radio_led_name -EXPORT_SYMBOL net/mac80211/mac80211 0x46a1daaa ieee80211_rate_control_register -EXPORT_SYMBOL net/mac80211/mac80211 0x4802dd8c __ieee80211_create_tpt_led_trigger -EXPORT_SYMBOL net/mac80211/mac80211 0x4911ba15 ieee80211_reserve_tid -EXPORT_SYMBOL net/mac80211/mac80211 0x4cfb24dd ieee80211_rate_control_unregister -EXPORT_SYMBOL net/mac80211/mac80211 0x50078d32 ieee80211_stop_tx_ba_cb_irqsafe -EXPORT_SYMBOL net/mac80211/mac80211 0x5237d615 ieee80211_send_bar -EXPORT_SYMBOL net/mac80211/mac80211 0x549fa907 ieee80211_iter_keys_rcu -EXPORT_SYMBOL net/mac80211/mac80211 0x58d07415 ieee80211_register_hw -EXPORT_SYMBOL net/mac80211/mac80211 0x5c82fdb4 ieee80211_enable_rssi_reports -EXPORT_SYMBOL net/mac80211/mac80211 0x5ce3ea2c ieee80211_stop_queues -EXPORT_SYMBOL net/mac80211/mac80211 0x5f5578f2 ieee80211_tx_status_ext -EXPORT_SYMBOL net/mac80211/mac80211 0x5f8abbd8 ieee80211_report_low_ack -EXPORT_SYMBOL net/mac80211/mac80211 0x5f9b44e3 __ieee80211_get_tx_led_name -EXPORT_SYMBOL net/mac80211/mac80211 0x6338de5f ieee80211_cqm_beacon_loss_notify -EXPORT_SYMBOL net/mac80211/mac80211 0x6b0955de rate_control_set_rates -EXPORT_SYMBOL net/mac80211/mac80211 0x6db677f4 ieee80211_beacon_loss -EXPORT_SYMBOL net/mac80211/mac80211 0x6fd17e85 wiphy_to_ieee80211_hw -EXPORT_SYMBOL net/mac80211/mac80211 0x7bf60c37 ieee80211_sta_eosp -EXPORT_SYMBOL net/mac80211/mac80211 0x7d0cb73a ieee80211_find_sta -EXPORT_SYMBOL net/mac80211/mac80211 0x87da2171 ieee80211_radar_detected -EXPORT_SYMBOL net/mac80211/mac80211 0x893aadba ieee80211_rx_napi -EXPORT_SYMBOL net/mac80211/mac80211 0x8a00166f ieee80211_rx_irqsafe -EXPORT_SYMBOL net/mac80211/mac80211 0x8a74cca1 __ieee80211_get_assoc_led_name -EXPORT_SYMBOL net/mac80211/mac80211 0x8ba348d8 ieee80211_scan_completed -EXPORT_SYMBOL net/mac80211/mac80211 0x8cd5ed11 ieee80211_txq_airtime_check -EXPORT_SYMBOL net/mac80211/mac80211 0x8eb77414 ieee80211_csa_finish -EXPORT_SYMBOL net/mac80211/mac80211 0x8fefec0f ieee80211_return_txq -EXPORT_SYMBOL net/mac80211/mac80211 0x92198b5e ieee80211_txq_may_transmit -EXPORT_SYMBOL net/mac80211/mac80211 0x93844c27 ieee80211_txq_get_depth -EXPORT_SYMBOL net/mac80211/mac80211 0x95b75d62 ieee80211_alloc_hw_nm -EXPORT_SYMBOL net/mac80211/mac80211 0x98f4364b ieee80211_connection_loss -EXPORT_SYMBOL net/mac80211/mac80211 0x991a0ca0 ieee80211_parse_p2p_noa -EXPORT_SYMBOL net/mac80211/mac80211 0x9d5ebaf4 ieee80211_queue_work -EXPORT_SYMBOL net/mac80211/mac80211 0xa1f2f482 ieee80211_sta_register_airtime -EXPORT_SYMBOL net/mac80211/mac80211 0xa3c6f847 ieee80211_probereq_get -EXPORT_SYMBOL net/mac80211/mac80211 0xa5259657 ieee80211_ctstoself_duration -EXPORT_SYMBOL net/mac80211/mac80211 0xa59dab4d ieee80211_start_tx_ba_session -EXPORT_SYMBOL net/mac80211/mac80211 0xab4840a2 ieee80211_restart_hw -EXPORT_SYMBOL net/mac80211/mac80211 0xaba02dd2 ieee80211_report_wowlan_wakeup -EXPORT_SYMBOL net/mac80211/mac80211 0xad0fa769 ieee80211_ctstoself_get -EXPORT_SYMBOL net/mac80211/mac80211 0xb113ba18 ieee80211_get_unsol_bcast_probe_resp_tmpl -EXPORT_SYMBOL net/mac80211/mac80211 0xb3a1d734 ieee80211_wake_queue -EXPORT_SYMBOL net/mac80211/mac80211 0xb7c860a9 ieee80211_proberesp_get -EXPORT_SYMBOL net/mac80211/mac80211 0xb931242c ieee80211_cqm_rssi_notify -EXPORT_SYMBOL net/mac80211/mac80211 0xba826e4a ieee80211_stop_tx_ba_session -EXPORT_SYMBOL net/mac80211/mac80211 0xbb095fa4 ieee80211_schedule_txq -EXPORT_SYMBOL net/mac80211/mac80211 0xbc0f25eb ieee80211_beacon_get_tim -EXPORT_SYMBOL net/mac80211/mac80211 0xbd78e114 ieee80211_rts_get -EXPORT_SYMBOL net/mac80211/mac80211 0xbd78f337 ieee80211_chswitch_done -EXPORT_SYMBOL net/mac80211/mac80211 0xc2385720 ieee80211_next_txq -EXPORT_SYMBOL net/mac80211/mac80211 0xc7e6c936 ieee80211_queue_stopped -EXPORT_SYMBOL net/mac80211/mac80211 0xc81854ea ieee80211_get_tx_rates -EXPORT_SYMBOL net/mac80211/mac80211 0xc88816e4 ieee80211_free_hw -EXPORT_SYMBOL net/mac80211/mac80211 0xc91f669d ieee80211_disconnect -EXPORT_SYMBOL net/mac80211/mac80211 0xc9238220 ieee80211_send_eosp_nullfunc -EXPORT_SYMBOL net/mac80211/mac80211 0xcb558051 __ieee80211_get_rx_led_name -EXPORT_SYMBOL net/mac80211/mac80211 0xcc041a54 ieee80211_beacon_cntdwn_is_complete -EXPORT_SYMBOL net/mac80211/mac80211 0xccc68466 ieee80211_start_tx_ba_cb_irqsafe -EXPORT_SYMBOL net/mac80211/mac80211 0xd0e9b707 ieee80211_rx_list -EXPORT_SYMBOL net/mac80211/mac80211 0xd6943c4d ieee80211_tx_dequeue -EXPORT_SYMBOL net/mac80211/mac80211 0xdd5313da ieee80211_txq_schedule_start -EXPORT_SYMBOL net/mac80211/mac80211 0xdd718144 ieee80211_mark_rx_ba_filtered_frames -EXPORT_SYMBOL net/mac80211/mac80211 0xe3405c6e ieee80211_queue_delayed_work -EXPORT_SYMBOL net/mac80211/mac80211 0xe5752af3 ieee80211_get_bssid -EXPORT_SYMBOL net/mac80211/mac80211 0xe775a2a9 ieee80211_get_tkip_p2k -EXPORT_SYMBOL net/mac80211/mac80211 0xe8a85d24 ieee80211_wake_queues -EXPORT_SYMBOL net/mac80211/mac80211 0xe8d00948 ieee80211_tdls_oper_request -EXPORT_SYMBOL net/mac80211/mac80211 0xe9cc253d ieee80211_iter_keys -EXPORT_SYMBOL net/mac80211/mac80211 0xee6d38fb ieee80211_generic_frame_duration -EXPORT_SYMBOL net/mac80211/mac80211 0xf0870041 ieee80211_tx_rate_update -EXPORT_SYMBOL net/mac80211/mac80211 0xf575ddb6 ieee80211_tx_status_irqsafe -EXPORT_SYMBOL net/mac80211/mac80211 0xf6b64ddd ieee80211_sched_scan_results -EXPORT_SYMBOL net/mac80211/mac80211 0xf7543c49 ieee80211_nan_func_match -EXPORT_SYMBOL net/mac80211/mac80211 0xfa288f88 ieee80211_manage_rx_ba_offl -EXPORT_SYMBOL net/mac80211/mac80211 0xfa42c482 ieee80211_ap_probereq_get -EXPORT_SYMBOL net/mac80211/mac80211 0xfb090d49 ieee80211_rts_duration -EXPORT_SYMBOL net/mac80211/mac80211 0xff12e34b ieee80211_stop_queue -EXPORT_SYMBOL net/mac802154/mac802154 0x082de1ea ieee802154_register_hw -EXPORT_SYMBOL net/mac802154/mac802154 0x12f4fd1c ieee802154_stop_queue -EXPORT_SYMBOL net/mac802154/mac802154 0x358b882c ieee802154_wake_queue -EXPORT_SYMBOL net/mac802154/mac802154 0x851beaa8 ieee802154_alloc_hw -EXPORT_SYMBOL net/mac802154/mac802154 0x8ec9cbb0 ieee802154_xmit_complete -EXPORT_SYMBOL net/mac802154/mac802154 0x95429827 ieee802154_free_hw -EXPORT_SYMBOL net/mac802154/mac802154 0xdaf3d0d6 ieee802154_rx_irqsafe -EXPORT_SYMBOL net/mac802154/mac802154 0xfd610cc9 ieee802154_unregister_hw -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x07aa8fc8 ip_vs_tcp_conn_listen -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x0f525b60 register_ip_vs_app_inc -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x2b531e9a ip_vs_nfct_expect_related -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x352b47c3 ip_vs_conn_out_get -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x383a5afa ip_vs_conn_new -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x3d5f28fb unregister_ip_vs_app -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x47e54535 unregister_ip_vs_scheduler -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x57a6405d ip_vs_conn_in_get -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x59782189 ip_vs_conn_put -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x7c36dab4 register_ip_vs_scheduler -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x843aa294 ip_vs_new_conn_out -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xa222e489 ip_vs_proto_get -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xc07ec530 ip_vs_scheduler_err -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xc3ddc46b register_ip_vs_app -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xd831a1a2 ip_vs_proto_name -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xfe5cc51a ip_vs_proto_data_get -EXPORT_SYMBOL net/netfilter/nf_conntrack 0x3b08a8f0 nf_ct_destroy -EXPORT_SYMBOL net/netfilter/nf_conntrack 0xdb9e1363 nf_ct_ext_add -EXPORT_SYMBOL net/netfilter/nf_conntrack_pptp 0xf2a36612 pptp_msg_name -EXPORT_SYMBOL net/netfilter/nf_nat 0x05f6c2fb nf_nat_setup_info -EXPORT_SYMBOL net/netfilter/nf_nat 0x212b4322 nf_nat_follow_master -EXPORT_SYMBOL net/netfilter/nf_nat 0x47d1f896 nf_nat_mangle_udp_packet -EXPORT_SYMBOL net/netfilter/nf_nat 0xb3e7aba8 __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 0x2f01f9d0 xt_find_match -EXPORT_SYMBOL net/netfilter/x_tables 0x3bf9d084 xt_check_table_hooks -EXPORT_SYMBOL net/netfilter/x_tables 0x3fda6d9f xt_unregister_match -EXPORT_SYMBOL net/netfilter/x_tables 0x42ec3ef3 xt_register_match -EXPORT_SYMBOL net/netfilter/x_tables 0x48012e28 xt_check_proc_name -EXPORT_SYMBOL net/netfilter/x_tables 0x50873741 xt_compat_init_offsets -EXPORT_SYMBOL net/netfilter/x_tables 0x57a23282 xt_unregister_targets -EXPORT_SYMBOL net/netfilter/x_tables 0x5be50423 xt_unregister_target -EXPORT_SYMBOL net/netfilter/x_tables 0x60cf5df0 xt_register_target -EXPORT_SYMBOL net/netfilter/x_tables 0x67a86f36 xt_unregister_matches -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 0xb885d1c7 xt_find_table -EXPORT_SYMBOL net/netfilter/x_tables 0xcb3e91cc xt_counters_alloc -EXPORT_SYMBOL net/netfilter/x_tables 0xd30c9ac2 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 0xedc6a072 xt_register_targets -EXPORT_SYMBOL net/netfilter/x_tables 0xfef779fa xt_find_jump_offset -EXPORT_SYMBOL net/nfc/hci/hci 0x0ba65579 nfc_hci_recv_frame -EXPORT_SYMBOL net/nfc/hci/hci 0x1e7ba8cb nfc_hci_connect_gate -EXPORT_SYMBOL net/nfc/hci/hci 0x40058578 nfc_hci_get_clientdata -EXPORT_SYMBOL net/nfc/hci/hci 0x47e62770 nfc_hci_free_device -EXPORT_SYMBOL net/nfc/hci/hci 0x4f0c28e7 nfc_hci_target_discovered -EXPORT_SYMBOL net/nfc/hci/hci 0x56947656 nfc_hci_set_param -EXPORT_SYMBOL net/nfc/hci/hci 0x6a5c8582 nfc_llc_start -EXPORT_SYMBOL net/nfc/hci/hci 0x73e23689 nfc_hci_reset_pipes_per_host -EXPORT_SYMBOL net/nfc/hci/hci 0x74fe3670 nfc_hci_result_to_errno -EXPORT_SYMBOL net/nfc/hci/hci 0x84d60e7f nfc_hci_set_clientdata -EXPORT_SYMBOL net/nfc/hci/hci 0x96be40af nfc_hci_reset_pipes -EXPORT_SYMBOL net/nfc/hci/hci 0x9c7d5e62 nfc_hci_disconnect_all_gates -EXPORT_SYMBOL net/nfc/hci/hci 0x9d8e91bc nfc_hci_unregister_device -EXPORT_SYMBOL net/nfc/hci/hci 0x9e382e5d nfc_hci_get_param -EXPORT_SYMBOL net/nfc/hci/hci 0xa4e9b658 nfc_hci_register_device -EXPORT_SYMBOL net/nfc/hci/hci 0xabd828bd nfc_hci_send_event -EXPORT_SYMBOL net/nfc/hci/hci 0xc70606f1 nfc_hci_driver_failure -EXPORT_SYMBOL net/nfc/hci/hci 0xcc422ea9 nfc_hci_allocate_device -EXPORT_SYMBOL net/nfc/hci/hci 0xd0dc969c nfc_llc_stop -EXPORT_SYMBOL net/nfc/hci/hci 0xd15c0af7 nfc_hci_send_cmd -EXPORT_SYMBOL net/nfc/hci/hci 0xd1753080 nfc_hci_disconnect_gate -EXPORT_SYMBOL net/nfc/hci/hci 0xdd231c55 nfc_hci_sak_to_protocol -EXPORT_SYMBOL net/nfc/hci/hci 0xfb3227e5 nfc_hci_send_cmd_async -EXPORT_SYMBOL net/nfc/nci/nci 0x09cadb9b nci_allocate_device -EXPORT_SYMBOL net/nfc/nci/nci 0x19631c8f nci_hci_open_pipe -EXPORT_SYMBOL net/nfc/nci/nci 0x1b8b8a3f nci_unregister_device -EXPORT_SYMBOL net/nfc/nci/nci 0x297a285a nci_core_cmd -EXPORT_SYMBOL net/nfc/nci/nci 0x3767b699 nci_send_data -EXPORT_SYMBOL net/nfc/nci/nci 0x3ea4d0b1 nci_core_reset -EXPORT_SYMBOL net/nfc/nci/nci 0x447b45be nci_get_conn_info_by_dest_type_params -EXPORT_SYMBOL net/nfc/nci/nci 0x553f2aa8 nci_recv_frame -EXPORT_SYMBOL net/nfc/nci/nci 0x5cbd53fe nci_hci_send_event -EXPORT_SYMBOL net/nfc/nci/nci 0x6d3826f2 nci_send_cmd -EXPORT_SYMBOL net/nfc/nci/nci 0x7127e32b nci_hci_clear_all_pipes -EXPORT_SYMBOL net/nfc/nci/nci 0x739d7e89 nci_nfcc_loopback -EXPORT_SYMBOL net/nfc/nci/nci 0x74cc0060 nci_core_conn_create -EXPORT_SYMBOL net/nfc/nci/nci 0x754003a4 nci_core_init -EXPORT_SYMBOL net/nfc/nci/nci 0x7d02a00f nci_hci_connect_gate -EXPORT_SYMBOL net/nfc/nci/nci 0x80646ee6 nci_free_device -EXPORT_SYMBOL net/nfc/nci/nci 0x81d05bc0 nci_send_frame -EXPORT_SYMBOL net/nfc/nci/nci 0x88800f8f nci_nfcee_discover -EXPORT_SYMBOL net/nfc/nci/nci 0x8a6b834e nci_hci_send_cmd -EXPORT_SYMBOL net/nfc/nci/nci 0x9b45a335 nci_nfcee_mode_set -EXPORT_SYMBOL net/nfc/nci/nci 0xa18fc926 nci_conn_max_data_pkt_payload_size -EXPORT_SYMBOL net/nfc/nci/nci 0xba490602 nci_to_errno -EXPORT_SYMBOL net/nfc/nci/nci 0xbabe8100 nci_core_conn_close -EXPORT_SYMBOL net/nfc/nci/nci 0xbcdefecd nci_prop_cmd -EXPORT_SYMBOL net/nfc/nci/nci 0xbd563b59 nci_hci_dev_session_init -EXPORT_SYMBOL net/nfc/nci/nci 0xc3a08e32 nci_hci_set_param -EXPORT_SYMBOL net/nfc/nci/nci 0xe13c0e8c nci_set_config -EXPORT_SYMBOL net/nfc/nci/nci 0xe4cc1e9f nci_req_complete -EXPORT_SYMBOL net/nfc/nci/nci 0xf08a3205 nci_register_device -EXPORT_SYMBOL net/nfc/nci/nci 0xfe4c3b9b nci_hci_get_param -EXPORT_SYMBOL net/nfc/nfc 0x03c148c2 __nfc_alloc_vendor_cmd_reply_skb -EXPORT_SYMBOL net/nfc/nfc 0x08356aa0 nfc_targets_found -EXPORT_SYMBOL net/nfc/nfc 0x19d9be7b nfc_unregister_device -EXPORT_SYMBOL net/nfc/nfc 0x1d53a1d7 nfc_add_se -EXPORT_SYMBOL net/nfc/nfc 0x3d53a456 nfc_find_se -EXPORT_SYMBOL net/nfc/nfc 0x57146710 nfc_se_transaction -EXPORT_SYMBOL net/nfc/nfc 0x5b427cb2 nfc_tm_data_received -EXPORT_SYMBOL net/nfc/nfc 0x7017a5a9 nfc_proto_register -EXPORT_SYMBOL net/nfc/nfc 0x786edbf6 nfc_allocate_device -EXPORT_SYMBOL net/nfc/nfc 0x81a72194 nfc_driver_failure -EXPORT_SYMBOL net/nfc/nfc 0x8b818cf5 nfc_class -EXPORT_SYMBOL net/nfc/nfc 0x8c3c88d5 nfc_se_connectivity -EXPORT_SYMBOL net/nfc/nfc 0x8ca91b82 nfc_tm_deactivated -EXPORT_SYMBOL net/nfc/nfc 0x9091a3c7 nfc_fw_download_done -EXPORT_SYMBOL net/nfc/nfc 0x92685d7b nfc_register_device -EXPORT_SYMBOL net/nfc/nfc 0x92f7e4c8 nfc_alloc_recv_skb -EXPORT_SYMBOL net/nfc/nfc 0x9cf182dc nfc_target_lost -EXPORT_SYMBOL net/nfc/nfc 0xbccf3f93 nfc_send_to_raw_sock -EXPORT_SYMBOL net/nfc/nfc 0xbf4175ae nfc_set_remote_general_bytes -EXPORT_SYMBOL net/nfc/nfc 0xc343c3c0 nfc_tm_activated -EXPORT_SYMBOL net/nfc/nfc 0xc4dae385 nfc_vendor_cmd_reply -EXPORT_SYMBOL net/nfc/nfc 0xd7c098ca nfc_get_local_general_bytes -EXPORT_SYMBOL net/nfc/nfc 0xded5b33e nfc_dep_link_is_up -EXPORT_SYMBOL net/nfc/nfc 0xe722b083 nfc_remove_se -EXPORT_SYMBOL net/nfc/nfc 0xf8917ab0 nfc_proto_unregister -EXPORT_SYMBOL net/nfc/nfc_digital 0x26fd0ed4 nfc_digital_register_device -EXPORT_SYMBOL net/nfc/nfc_digital 0x281b450b nfc_digital_unregister_device -EXPORT_SYMBOL net/nfc/nfc_digital 0x4dce5a13 nfc_digital_free_device -EXPORT_SYMBOL net/nfc/nfc_digital 0x99a5704f nfc_digital_allocate_device -EXPORT_SYMBOL net/phonet/phonet 0x2e361944 pn_sock_unhash -EXPORT_SYMBOL net/phonet/phonet 0x4cc22c8c phonet_proto_register -EXPORT_SYMBOL net/phonet/phonet 0x6fc9f42d phonet_stream_ops -EXPORT_SYMBOL net/phonet/phonet 0x88bc01d7 pn_sock_get_port -EXPORT_SYMBOL net/phonet/phonet 0x993e72d3 pn_skb_send -EXPORT_SYMBOL net/phonet/phonet 0xe8693b55 phonet_header_ops -EXPORT_SYMBOL net/phonet/phonet 0xeed65808 pn_sock_hash -EXPORT_SYMBOL net/phonet/phonet 0xfd1c99eb phonet_proto_unregister -EXPORT_SYMBOL net/rxrpc/rxrpc 0x1546da1a rxrpc_kernel_new_call_notification -EXPORT_SYMBOL net/rxrpc/rxrpc 0x1845bdec rxrpc_kernel_get_peer -EXPORT_SYMBOL net/rxrpc/rxrpc 0x19619ec4 key_type_rxrpc -EXPORT_SYMBOL net/rxrpc/rxrpc 0x1e3113de rxrpc_get_server_data_key -EXPORT_SYMBOL net/rxrpc/rxrpc 0x1fc3cf07 rxrpc_kernel_end_call -EXPORT_SYMBOL net/rxrpc/rxrpc 0x31bf3ca3 rxrpc_debug_id -EXPORT_SYMBOL net/rxrpc/rxrpc 0x3a09607e rxrpc_kernel_begin_call -EXPORT_SYMBOL net/rxrpc/rxrpc 0x3eedc602 rxrpc_kernel_charge_accept -EXPORT_SYMBOL net/rxrpc/rxrpc 0x4d8466b6 rxrpc_kernel_check_life -EXPORT_SYMBOL net/rxrpc/rxrpc 0x52f4b287 rxrpc_sock_set_min_security_level -EXPORT_SYMBOL net/rxrpc/rxrpc 0x580e6309 rxrpc_kernel_send_data -EXPORT_SYMBOL net/rxrpc/rxrpc 0x64e2e0f6 rxrpc_kernel_get_epoch -EXPORT_SYMBOL net/rxrpc/rxrpc 0x7da20ebc rxrpc_get_null_key -EXPORT_SYMBOL net/rxrpc/rxrpc 0x96e40ed7 rxrpc_kernel_set_max_life -EXPORT_SYMBOL net/rxrpc/rxrpc 0x9b4015a5 rxrpc_kernel_abort_call -EXPORT_SYMBOL net/rxrpc/rxrpc 0x9d1ec07c rxrpc_kernel_recv_data -EXPORT_SYMBOL net/rxrpc/rxrpc 0xbad43a88 rxrpc_kernel_set_tx_length -EXPORT_SYMBOL net/rxrpc/rxrpc 0xf49989c5 rxrpc_kernel_get_srtt -EXPORT_SYMBOL net/rxrpc/rxrpc 0xf8e98c12 rxrpc_kernel_get_reply_time -EXPORT_SYMBOL net/sctp/sctp 0x5ecaf297 sctp_do_peeloff -EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0xe6a7bde1 gss_pseudoflavor_to_service -EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0xf0f9463b gss_mech_get -EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0xf9e43bc1 gss_mech_put -EXPORT_SYMBOL net/sunrpc/sunrpc 0x05c58790 xdr_restrict_buflen -EXPORT_SYMBOL net/sunrpc/sunrpc 0x21f02323 svc_pool_stats_open -EXPORT_SYMBOL net/sunrpc/sunrpc 0x5b51afce get_srcport -EXPORT_SYMBOL net/sunrpc/sunrpc 0xda9c8418 xdr_truncate_encode -EXPORT_SYMBOL net/tipc/tipc 0x3510e390 tipc_dump_done -EXPORT_SYMBOL net/tipc/tipc 0x8dc9350b tipc_dump_start -EXPORT_SYMBOL net/tipc/tipc 0xccef0648 tipc_nl_sk_walk -EXPORT_SYMBOL net/tipc/tipc 0xdc6a52f7 tipc_sk_fill_sock_diag -EXPORT_SYMBOL net/tls/tls 0x1035dc7f tls_get_record -EXPORT_SYMBOL net/wireless/cfg80211 0x0249a3ed cfg80211_inform_bss_data -EXPORT_SYMBOL net/wireless/cfg80211 0x02fbfe46 cfg80211_tdls_oper_request -EXPORT_SYMBOL net/wireless/cfg80211 0x072c4701 cfg80211_pmksa_candidate_notify -EXPORT_SYMBOL net/wireless/cfg80211 0x09a16d23 cfg80211_crit_proto_stopped -EXPORT_SYMBOL net/wireless/cfg80211 0x0a750640 cfg80211_stop_iface -EXPORT_SYMBOL net/wireless/cfg80211 0x0d4d9477 cfg80211_cac_event -EXPORT_SYMBOL net/wireless/cfg80211 0x117aca91 cfg80211_merge_profile -EXPORT_SYMBOL net/wireless/cfg80211 0x15a37cf3 cfg80211_calculate_bitrate -EXPORT_SYMBOL net/wireless/cfg80211 0x170b20ba cfg80211_send_layer2_update -EXPORT_SYMBOL net/wireless/cfg80211 0x1879fcbd bridge_tunnel_header -EXPORT_SYMBOL net/wireless/cfg80211 0x1ad86232 regulatory_pre_cac_allowed -EXPORT_SYMBOL net/wireless/cfg80211 0x1ce2497f reg_query_regdb_wmm -EXPORT_SYMBOL net/wireless/cfg80211 0x20d73c5f cfg80211_port_authorized -EXPORT_SYMBOL net/wireless/cfg80211 0x228fd51b cfg80211_del_sta_sinfo -EXPORT_SYMBOL net/wireless/cfg80211 0x2310adee ieee80211_bss_get_elem -EXPORT_SYMBOL net/wireless/cfg80211 0x23519232 cfg80211_assoc_timeout -EXPORT_SYMBOL net/wireless/cfg80211 0x23d97320 regulatory_set_wiphy_regd_sync -EXPORT_SYMBOL net/wireless/cfg80211 0x23f54088 cfg80211_cqm_beacon_loss_notify -EXPORT_SYMBOL net/wireless/cfg80211 0x26897bb3 cfg80211_unregister_wdev -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 0x29c1d6e5 cfg80211_sched_scan_results -EXPORT_SYMBOL net/wireless/cfg80211 0x2a5d816f cfg80211_chandef_valid -EXPORT_SYMBOL net/wireless/cfg80211 0x2a61e0de cfg80211_rx_unprot_mlme_mgmt -EXPORT_SYMBOL net/wireless/cfg80211 0x2e4999f5 cfg80211_rx_spurious_frame -EXPORT_SYMBOL net/wireless/cfg80211 0x31c9b9ed cfg80211_abandon_assoc -EXPORT_SYMBOL net/wireless/cfg80211 0x32e76bdc cfg80211_chandef_usable -EXPORT_SYMBOL net/wireless/cfg80211 0x3362f881 cfg80211_sched_scan_stopped_locked -EXPORT_SYMBOL net/wireless/cfg80211 0x38ba8364 cfg80211_report_wowlan_wakeup -EXPORT_SYMBOL net/wireless/cfg80211 0x39142aa8 cfg80211_bss_flush -EXPORT_SYMBOL net/wireless/cfg80211 0x3be83808 cfg80211_put_bss -EXPORT_SYMBOL net/wireless/cfg80211 0x3cfc22c5 cfg80211_radar_event -EXPORT_SYMBOL net/wireless/cfg80211 0x3d8e5894 cfg80211_chandef_compatible -EXPORT_SYMBOL net/wireless/cfg80211 0x3fd5cd0b cfg80211_ref_bss -EXPORT_SYMBOL net/wireless/cfg80211 0x403b5505 cfg80211_scan_done -EXPORT_SYMBOL net/wireless/cfg80211 0x41c62de5 cfg80211_remain_on_channel_expired -EXPORT_SYMBOL net/wireless/cfg80211 0x43afadee ieee80211_radiotap_iterator_init -EXPORT_SYMBOL net/wireless/cfg80211 0x48e7b644 cfg80211_nan_func_terminated -EXPORT_SYMBOL net/wireless/cfg80211 0x49e061f4 cfg80211_new_sta -EXPORT_SYMBOL net/wireless/cfg80211 0x4ba2d49f wiphy_unregister -EXPORT_SYMBOL net/wireless/cfg80211 0x4e8d60c3 cfg80211_iftype_allowed -EXPORT_SYMBOL net/wireless/cfg80211 0x524c3c15 wiphy_free -EXPORT_SYMBOL net/wireless/cfg80211 0x57dc9bec __cfg80211_send_event_skb -EXPORT_SYMBOL net/wireless/cfg80211 0x59842db6 wiphy_new_nm -EXPORT_SYMBOL net/wireless/cfg80211 0x5a2f7c80 cfg80211_get_station -EXPORT_SYMBOL net/wireless/cfg80211 0x5c3d69d8 cfg80211_notify_new_peer_candidate -EXPORT_SYMBOL net/wireless/cfg80211 0x62d33e9a regulatory_hint -EXPORT_SYMBOL net/wireless/cfg80211 0x62fd5161 cfg80211_chandef_dfs_required -EXPORT_SYMBOL net/wireless/cfg80211 0x652aeedf ieee80211_mandatory_rates -EXPORT_SYMBOL net/wireless/cfg80211 0x66259e78 ieee80211_get_hdrlen_from_skb -EXPORT_SYMBOL net/wireless/cfg80211 0x674388c5 cfg80211_gtk_rekey_notify -EXPORT_SYMBOL net/wireless/cfg80211 0x69a9258b cfg80211_classify8021d -EXPORT_SYMBOL net/wireless/cfg80211 0x69b18f43 rfc1042_header -EXPORT_SYMBOL net/wireless/cfg80211 0x6bedf402 ieee80211_freq_khz_to_channel -EXPORT_SYMBOL net/wireless/cfg80211 0x6e0ca484 cfg80211_reg_can_beacon_relax -EXPORT_SYMBOL net/wireless/cfg80211 0x6f62e87a ieee80211_get_channel_khz -EXPORT_SYMBOL net/wireless/cfg80211 0x76c231e0 cfg80211_register_netdevice -EXPORT_SYMBOL net/wireless/cfg80211 0x77b84843 wiphy_rfkill_start_polling -EXPORT_SYMBOL net/wireless/cfg80211 0x782e0514 get_wiphy_regdom -EXPORT_SYMBOL net/wireless/cfg80211 0x78e347fc cfg80211_external_auth_request -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 0x7ba70b87 cfg80211_cqm_rssi_notify -EXPORT_SYMBOL net/wireless/cfg80211 0x7bbb70a7 cfg80211_get_bss -EXPORT_SYMBOL net/wireless/cfg80211 0x7c3ac925 ieee80211_get_vht_max_nss -EXPORT_SYMBOL net/wireless/cfg80211 0x7ef39823 ieee80211_hdrlen -EXPORT_SYMBOL net/wireless/cfg80211 0x81874735 ieee80211_get_response_rate -EXPORT_SYMBOL net/wireless/cfg80211 0x83f13198 cfg80211_roamed -EXPORT_SYMBOL net/wireless/cfg80211 0x85c5d445 cfg80211_ch_switch_notify -EXPORT_SYMBOL net/wireless/cfg80211 0x897d1342 cfg80211_reg_can_beacon -EXPORT_SYMBOL net/wireless/cfg80211 0x8a54a5dd cfg80211_check_combinations -EXPORT_SYMBOL net/wireless/cfg80211 0x8b41367d cfg80211_cqm_txe_notify -EXPORT_SYMBOL net/wireless/cfg80211 0x8badd64b cfg80211_michael_mic_failure -EXPORT_SYMBOL net/wireless/cfg80211 0x8fa02936 cfg80211_free_nan_func -EXPORT_SYMBOL net/wireless/cfg80211 0x8fb4d0bd cfg80211_iter_combinations -EXPORT_SYMBOL net/wireless/cfg80211 0x9273b277 __cfg80211_alloc_event_skb -EXPORT_SYMBOL net/wireless/cfg80211 0x9aef2ec1 cfg80211_mgmt_tx_status -EXPORT_SYMBOL net/wireless/cfg80211 0x9b060a1a cfg80211_auth_timeout -EXPORT_SYMBOL net/wireless/cfg80211 0x9d6cba30 cfg80211_find_elem_match -EXPORT_SYMBOL net/wireless/cfg80211 0x9efdf4f3 cfg80211_check_station_change -EXPORT_SYMBOL net/wireless/cfg80211 0xa712c344 cfg80211_report_obss_beacon_khz -EXPORT_SYMBOL net/wireless/cfg80211 0xa739393e wiphy_apply_custom_regulatory -EXPORT_SYMBOL net/wireless/cfg80211 0xace90636 ieee80211_amsdu_to_8023s -EXPORT_SYMBOL net/wireless/cfg80211 0xae3210fd cfg80211_inform_bss_frame_data -EXPORT_SYMBOL net/wireless/cfg80211 0xb57925a9 cfg80211_get_drvinfo -EXPORT_SYMBOL net/wireless/cfg80211 0xb5c6e734 cfg80211_bss_iter -EXPORT_SYMBOL net/wireless/cfg80211 0xb64e0b1a cfg80211_rx_unexpected_4addr_frame -EXPORT_SYMBOL net/wireless/cfg80211 0xb719a8db wiphy_rfkill_set_hw_state_reason -EXPORT_SYMBOL net/wireless/cfg80211 0xb73aafb1 ieee80211_chandef_to_operating_class -EXPORT_SYMBOL net/wireless/cfg80211 0xb892557e cfg80211_nan_match -EXPORT_SYMBOL net/wireless/cfg80211 0xb9da263c ieee80211_get_num_supported_channels -EXPORT_SYMBOL net/wireless/cfg80211 0xbb6eb929 cfg80211_rx_mgmt_khz -EXPORT_SYMBOL net/wireless/cfg80211 0xbe8e3031 cfg80211_unlink_bss -EXPORT_SYMBOL net/wireless/cfg80211 0xbeb75f39 ieee80211_data_to_8023_exthdr -EXPORT_SYMBOL net/wireless/cfg80211 0xbfbdd69d cfg80211_connect_done -EXPORT_SYMBOL net/wireless/cfg80211 0xc00e59f2 cfg80211_conn_failed -EXPORT_SYMBOL net/wireless/cfg80211 0xc1b99792 ieee80211_channel_to_freq_khz -EXPORT_SYMBOL net/wireless/cfg80211 0xc405bdf0 cfg80211_any_usable_channels -EXPORT_SYMBOL net/wireless/cfg80211 0xc5dcacef ieee80211_operating_class_to_band -EXPORT_SYMBOL net/wireless/cfg80211 0xc64d2714 wiphy_register -EXPORT_SYMBOL net/wireless/cfg80211 0xc64e473e cfg80211_tx_mgmt_expired -EXPORT_SYMBOL net/wireless/cfg80211 0xc787a20e cfg80211_ready_on_channel -EXPORT_SYMBOL net/wireless/cfg80211 0xc816c160 cfg80211_rx_assoc_resp -EXPORT_SYMBOL net/wireless/cfg80211 0xcc1a7c48 cfg80211_is_element_inherited -EXPORT_SYMBOL net/wireless/cfg80211 0xce93c1b0 cfg80211_ibss_joined -EXPORT_SYMBOL net/wireless/cfg80211 0xd11e9e95 freq_reg_info -EXPORT_SYMBOL net/wireless/cfg80211 0xd22e2b5e cfg80211_probe_status -EXPORT_SYMBOL net/wireless/cfg80211 0xd2c0122c cfg80211_disconnected -EXPORT_SYMBOL net/wireless/cfg80211 0xd2dc3ae0 cfg80211_sta_opmode_change_notify -EXPORT_SYMBOL net/wireless/cfg80211 0xd4d966ea __cfg80211_alloc_reply_skb -EXPORT_SYMBOL net/wireless/cfg80211 0xd56d55f3 ieee80211_get_mesh_hdrlen -EXPORT_SYMBOL net/wireless/cfg80211 0xdba126c1 reg_initiator_name -EXPORT_SYMBOL net/wireless/cfg80211 0xdf5ad77b cfg80211_rx_mlme_mgmt -EXPORT_SYMBOL net/wireless/cfg80211 0xe1df3693 cfg80211_update_owe_info_event -EXPORT_SYMBOL net/wireless/cfg80211 0xe1f93842 cfg80211_rx_control_port -EXPORT_SYMBOL net/wireless/cfg80211 0xe334e6df cfg80211_sinfo_alloc_tid_stats -EXPORT_SYMBOL net/wireless/cfg80211 0xe9dd3058 cfg80211_tx_mlme_mgmt -EXPORT_SYMBOL net/wireless/cfg80211 0xef265f27 cfg80211_chandef_create -EXPORT_SYMBOL net/wireless/cfg80211 0xef826a17 cfg80211_ft_event -EXPORT_SYMBOL net/wireless/cfg80211 0xf30eaf17 regulatory_set_wiphy_regd -EXPORT_SYMBOL net/wireless/cfg80211 0xf447170d cfg80211_control_port_tx_status -EXPORT_SYMBOL net/wireless/cfg80211 0xf5596d89 cfg80211_get_p2p_attr -EXPORT_SYMBOL net/wireless/cfg80211 0xf5672962 cfg80211_cqm_pktloss_notify -EXPORT_SYMBOL net/wireless/cfg80211 0xf988b52e cfg80211_sched_scan_stopped -EXPORT_SYMBOL net/wireless/cfg80211 0xfa471515 cfg80211_bss_color_notify -EXPORT_SYMBOL net/wireless/cfg80211 0xff0d4759 cfg80211_ch_switch_started_notify -EXPORT_SYMBOL net/wireless/lib80211 0x152272aa lib80211_register_crypto_ops -EXPORT_SYMBOL net/wireless/lib80211 0x7004c00a lib80211_crypt_delayed_deinit -EXPORT_SYMBOL net/wireless/lib80211 0xa3309fe2 lib80211_get_crypto_ops -EXPORT_SYMBOL net/wireless/lib80211 0xb64e7f95 lib80211_crypt_info_free -EXPORT_SYMBOL net/wireless/lib80211 0xe15bfdc7 lib80211_unregister_crypto_ops -EXPORT_SYMBOL net/wireless/lib80211 0xfc6218b4 lib80211_crypt_info_init -EXPORT_SYMBOL sound/ac97_bus 0x20590a8c ac97_bus_type -EXPORT_SYMBOL sound/core/oss/snd-mixer-oss 0xf8b4f599 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 0x485c4be8 snd_seq_create_kernel_client -EXPORT_SYMBOL sound/core/seq/snd-seq 0x5ac6c02d 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 0x8ebf05b7 snd_seq_kernel_client_enqueue -EXPORT_SYMBOL sound/core/seq/snd-seq 0xb479854f 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-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 0x199bf95f snd_midi_event_no_status -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x4cd8b2ce snd_midi_event_reset_decode -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x882c2468 snd_midi_event_encode_byte -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0xa4500576 snd_midi_event_free -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0xc0943ce5 snd_midi_event_new -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0xea1e8b55 snd_midi_event_reset_encode -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0xf7097b72 snd_midi_event_decode -EXPORT_SYMBOL sound/core/seq/snd-seq-virmidi 0xc66a03e6 snd_virmidi_new -EXPORT_SYMBOL sound/core/snd 0x04fbb000 snd_jack_set_key -EXPORT_SYMBOL sound/core/snd 0x060b22aa snd_ctl_remove_id -EXPORT_SYMBOL sound/core/snd 0x0e21239c snd_ctl_unregister_ioctl -EXPORT_SYMBOL sound/core/snd 0x13a06fe6 snd_ctl_notify -EXPORT_SYMBOL sound/core/snd 0x14925319 snd_device_free -EXPORT_SYMBOL sound/core/snd 0x165306d3 snd_ctl_add -EXPORT_SYMBOL sound/core/snd 0x16f2bc55 snd_card_free_when_closed -EXPORT_SYMBOL sound/core/snd 0x18e1683f snd_dma_program -EXPORT_SYMBOL sound/core/snd 0x191e88cf snd_dma_pointer -EXPORT_SYMBOL sound/core/snd 0x195b9eb1 snd_ctl_make_virtual_master -EXPORT_SYMBOL sound/core/snd 0x198788b4 snd_lookup_oss_minor_data -EXPORT_SYMBOL sound/core/snd 0x1997f11c snd_mixer_oss_notify_callback -EXPORT_SYMBOL sound/core/snd 0x1ab3ed30 snd_jack_new -EXPORT_SYMBOL sound/core/snd 0x1afa5d52 snd_jack_add_new_kctl -EXPORT_SYMBOL sound/core/snd 0x1b0db625 snd_register_device -EXPORT_SYMBOL sound/core/snd 0x243c4686 snd_card_register -EXPORT_SYMBOL sound/core/snd 0x24a94b26 snd_info_get_line -EXPORT_SYMBOL sound/core/snd 0x25299de3 snd_ctl_find_id -EXPORT_SYMBOL sound/core/snd 0x2a862c64 _snd_ctl_add_follower -EXPORT_SYMBOL sound/core/snd 0x32a6383c snd_ctl_unregister_ioctl_compat -EXPORT_SYMBOL sound/core/snd 0x342a2354 copy_to_user_fromio -EXPORT_SYMBOL sound/core/snd 0x3971b4df snd_ecards_limit -EXPORT_SYMBOL sound/core/snd 0x3a2f865a snd_power_wait -EXPORT_SYMBOL sound/core/snd 0x3efe6614 snd_ctl_find_numid -EXPORT_SYMBOL sound/core/snd 0x4316b950 snd_card_file_add -EXPORT_SYMBOL sound/core/snd 0x4563f1ce snd_ctl_notify_one -EXPORT_SYMBOL sound/core/snd 0x470d8135 snd_ctl_remove -EXPORT_SYMBOL sound/core/snd 0x47ea2bac snd_ctl_register_ioctl_compat -EXPORT_SYMBOL sound/core/snd 0x4a3ea5c0 snd_request_card -EXPORT_SYMBOL sound/core/snd 0x553171e9 snd_info_create_module_entry -EXPORT_SYMBOL sound/core/snd 0x627accba snd_ctl_register_ioctl -EXPORT_SYMBOL sound/core/snd 0x6bcbfbc9 snd_device_register -EXPORT_SYMBOL sound/core/snd 0x70c15ac1 snd_dma_disable -EXPORT_SYMBOL sound/core/snd 0x719c418c snd_seq_root -EXPORT_SYMBOL sound/core/snd 0x73076315 snd_pci_quirk_lookup_id -EXPORT_SYMBOL sound/core/snd 0x73fcf68f snd_component_add -EXPORT_SYMBOL sound/core/snd 0x7708c7fa snd_ctl_rename_id -EXPORT_SYMBOL sound/core/snd 0x86eadb12 snd_ctl_new1 -EXPORT_SYMBOL sound/core/snd 0x89eef52f snd_card_free -EXPORT_SYMBOL sound/core/snd 0x8c32b2bb snd_card_set_id -EXPORT_SYMBOL sound/core/snd 0x8df3789f snd_oss_info_register -EXPORT_SYMBOL sound/core/snd 0x8f595b11 snd_major -EXPORT_SYMBOL sound/core/snd 0x985709d9 snd_info_free_entry -EXPORT_SYMBOL sound/core/snd 0x9e6d79f8 snd_info_get_str -EXPORT_SYMBOL sound/core/snd 0x9eaf21d1 snd_ctl_free_one -EXPORT_SYMBOL sound/core/snd 0x9eec1437 snd_ctl_boolean_mono_info -EXPORT_SYMBOL sound/core/snd 0xaac63f71 snd_info_register -EXPORT_SYMBOL sound/core/snd 0xb0a099ba snd_pci_quirk_lookup -EXPORT_SYMBOL sound/core/snd 0xb2e5ae4a snd_lookup_minor_data -EXPORT_SYMBOL sound/core/snd 0xb61ee6f8 snd_ctl_replace -EXPORT_SYMBOL sound/core/snd 0xb97641e3 snd_card_file_remove -EXPORT_SYMBOL sound/core/snd 0xc2c6cf77 snd_unregister_oss_device -EXPORT_SYMBOL sound/core/snd 0xc5a6d10b release_and_free_resource -EXPORT_SYMBOL sound/core/snd 0xcc6a729f snd_ctl_enum_info -EXPORT_SYMBOL sound/core/snd 0xd3f368a4 snd_card_new -EXPORT_SYMBOL sound/core/snd 0xd47805be snd_info_create_card_entry -EXPORT_SYMBOL sound/core/snd 0xd8bb2741 snd_jack_set_parent -EXPORT_SYMBOL sound/core/snd 0xd94f6366 snd_unregister_device -EXPORT_SYMBOL sound/core/snd 0xdd7b5c18 snd_device_new -EXPORT_SYMBOL sound/core/snd 0xe99183ad snd_card_disconnect -EXPORT_SYMBOL sound/core/snd 0xf7f9a86b snd_register_oss_device -EXPORT_SYMBOL sound/core/snd 0xfa59a240 snd_jack_report -EXPORT_SYMBOL sound/core/snd 0xfc242aa9 snd_ctl_boolean_stereo_info -EXPORT_SYMBOL sound/core/snd 0xfffd89db copy_from_user_toio -EXPORT_SYMBOL sound/core/snd-compress 0x7f366ad5 snd_compr_free_pages -EXPORT_SYMBOL sound/core/snd-compress 0xafec1abd snd_compr_malloc_pages -EXPORT_SYMBOL sound/core/snd-hwdep 0xde11b6e3 snd_hwdep_new -EXPORT_SYMBOL sound/core/snd-pcm 0x008ef2de snd_pcm_new_stream -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 0x08059adf snd_dma_alloc_pages_fallback -EXPORT_SYMBOL sound/core/snd-pcm 0x082a8980 snd_pcm_lib_free_pages -EXPORT_SYMBOL sound/core/snd-pcm 0x0b77c7d2 snd_pcm_set_managed_buffer_all -EXPORT_SYMBOL sound/core/snd-pcm 0x11eba48e snd_pcm_create_iec958_consumer_hw_params -EXPORT_SYMBOL sound/core/snd-pcm 0x1d027e4b snd_pcm_format_signed -EXPORT_SYMBOL sound/core/snd-pcm 0x1f782316 snd_pcm_hw_constraint_minmax -EXPORT_SYMBOL sound/core/snd-pcm 0x20e7dc22 snd_pcm_hw_constraint_ratdens -EXPORT_SYMBOL sound/core/snd-pcm 0x245cc3cf snd_pcm_suspend_all -EXPORT_SYMBOL sound/core/snd-pcm 0x30d85a2c snd_pcm_release_substream -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 0x3a82aa2b snd_sgbuf_get_addr -EXPORT_SYMBOL sound/core/snd-pcm 0x3e476bdb snd_pcm_create_iec958_consumer -EXPORT_SYMBOL sound/core/snd-pcm 0x4544f012 snd_pcm_lib_mmap_iomem -EXPORT_SYMBOL sound/core/snd-pcm 0x46b8ac4c snd_pcm_lib_get_vmalloc_page -EXPORT_SYMBOL sound/core/snd-pcm 0x48af0e06 snd_pcm_hw_constraint_msbits -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 0x5864e6c5 snd_pcm_hw_refine -EXPORT_SYMBOL sound/core/snd-pcm 0x5d1b24cb snd_pcm_new -EXPORT_SYMBOL sound/core/snd-pcm 0x5e7f4920 snd_pcm_format_set_silence -EXPORT_SYMBOL sound/core/snd-pcm 0x5f00b950 snd_pcm_lib_malloc_pages -EXPORT_SYMBOL sound/core/snd-pcm 0x61c231f4 snd_dma_alloc_pages -EXPORT_SYMBOL sound/core/snd-pcm 0x650f8603 snd_pcm_format_silence_64 -EXPORT_SYMBOL sound/core/snd-pcm 0x68a24153 snd_pcm_format_physical_width -EXPORT_SYMBOL sound/core/snd-pcm 0x69255f54 snd_pcm_hw_limit_rates -EXPORT_SYMBOL sound/core/snd-pcm 0x6e2e464f snd_sgbuf_get_page -EXPORT_SYMBOL sound/core/snd-pcm 0x6ef8fcd8 snd_pcm_format_linear -EXPORT_SYMBOL sound/core/snd-pcm 0x6fdb23a0 snd_pcm_hw_rule_add -EXPORT_SYMBOL sound/core/snd-pcm 0x70f49f81 snd_dma_buffer_mmap -EXPORT_SYMBOL sound/core/snd-pcm 0x7733f062 snd_pcm_lib_ioctl -EXPORT_SYMBOL sound/core/snd-pcm 0x814b931f snd_pcm_stop -EXPORT_SYMBOL sound/core/snd-pcm 0x834dc955 snd_pcm_format_size -EXPORT_SYMBOL sound/core/snd-pcm 0x8cbff17b snd_pcm_lib_preallocate_pages -EXPORT_SYMBOL sound/core/snd-pcm 0x8f953851 snd_dma_free_pages -EXPORT_SYMBOL sound/core/snd-pcm 0x90358715 snd_pcm_set_managed_buffer -EXPORT_SYMBOL sound/core/snd-pcm 0x94098ff8 snd_interval_list -EXPORT_SYMBOL sound/core/snd-pcm 0x9b3af5c4 snd_pcm_hw_constraint_ranges -EXPORT_SYMBOL sound/core/snd-pcm 0xa1978312 snd_pcm_lib_free_vmalloc_buffer -EXPORT_SYMBOL sound/core/snd-pcm 0xa546fa70 snd_pcm_hw_constraint_step -EXPORT_SYMBOL sound/core/snd-pcm 0xa61aa028 snd_pcm_format_unsigned -EXPORT_SYMBOL sound/core/snd-pcm 0xa840229c snd_pcm_kernel_ioctl -EXPORT_SYMBOL sound/core/snd-pcm 0xab526125 snd_pcm_hw_constraint_pow2 -EXPORT_SYMBOL sound/core/snd-pcm 0xac437f7b snd_interval_ratnum -EXPORT_SYMBOL sound/core/snd-pcm 0xb7104c6e snd_pcm_hw_constraint_list -EXPORT_SYMBOL sound/core/snd-pcm 0xb9638db4 snd_pcm_rate_to_rate_bit -EXPORT_SYMBOL sound/core/snd-pcm 0xb9e37e81 snd_pcm_period_elapsed_under_stream_lock -EXPORT_SYMBOL sound/core/snd-pcm 0xbd22ef9e snd_pcm_hw_param_last -EXPORT_SYMBOL sound/core/snd-pcm 0xbe85bb16 snd_pcm_hw_constraint_integer -EXPORT_SYMBOL sound/core/snd-pcm 0xc2742e2c _snd_pcm_lib_alloc_vmalloc_buffer -EXPORT_SYMBOL sound/core/snd-pcm 0xc4b09e36 snd_pcm_period_elapsed -EXPORT_SYMBOL sound/core/snd-pcm 0xc71c0c66 snd_pcm_mmap_data -EXPORT_SYMBOL sound/core/snd-pcm 0xca5a8b77 snd_sgbuf_get_chunk_size -EXPORT_SYMBOL sound/core/snd-pcm 0xd7f6eb72 snd_pcm_set_ops -EXPORT_SYMBOL sound/core/snd-pcm 0xde7cfbd6 snd_pcm_lib_preallocate_free_for_all -EXPORT_SYMBOL sound/core/snd-pcm 0xe126cfcf snd_pcm_lib_preallocate_pages_for_all -EXPORT_SYMBOL sound/core/snd-pcm 0xe171c0ea snd_pcm_hw_param_first -EXPORT_SYMBOL sound/core/snd-pcm 0xe56a9336 snd_pcm_format_width -EXPORT_SYMBOL sound/core/snd-pcm 0xe591334f snd_pcm_hw_constraint_ratnums -EXPORT_SYMBOL sound/core/snd-pcm 0xe8a34780 snd_pcm_open_substream -EXPORT_SYMBOL sound/core/snd-pcm 0xeb54ac85 snd_pcm_new_internal -EXPORT_SYMBOL sound/core/snd-pcm 0xed52b056 __snd_pcm_lib_xfer -EXPORT_SYMBOL sound/core/snd-pcm 0xee486d62 snd_pcm_hw_rule_noresample -EXPORT_SYMBOL sound/core/snd-pcm 0xf55be6c4 snd_pcm_hw_constraint_mask64 -EXPORT_SYMBOL sound/core/snd-pcm 0xf7dfdc2b snd_pcm_set_sync -EXPORT_SYMBOL sound/core/snd-pcm 0xff6104d0 snd_pcm_rate_bit_to_rate -EXPORT_SYMBOL sound/core/snd-rawmidi 0x038641fe snd_rawmidi_set_ops -EXPORT_SYMBOL sound/core/snd-rawmidi 0x04add6a8 snd_rawmidi_kernel_write -EXPORT_SYMBOL sound/core/snd-rawmidi 0x069cfe04 snd_rawmidi_transmit_ack -EXPORT_SYMBOL sound/core/snd-rawmidi 0x16cfce2d snd_rawmidi_kernel_release -EXPORT_SYMBOL sound/core/snd-rawmidi 0x428b83dd snd_rawmidi_info_select -EXPORT_SYMBOL sound/core/snd-rawmidi 0x4a40a1f7 snd_rawmidi_transmit_peek -EXPORT_SYMBOL sound/core/snd-rawmidi 0x5581a858 snd_rawmidi_transmit_empty -EXPORT_SYMBOL sound/core/snd-rawmidi 0x6630b1cc snd_rawmidi_transmit -EXPORT_SYMBOL sound/core/snd-rawmidi 0x7d84853d snd_rawmidi_kernel_read -EXPORT_SYMBOL sound/core/snd-rawmidi 0x80129bcc snd_rawmidi_proceed -EXPORT_SYMBOL sound/core/snd-rawmidi 0x80833081 snd_rawmidi_kernel_open -EXPORT_SYMBOL sound/core/snd-rawmidi 0xafd2f6aa snd_rawmidi_input_params -EXPORT_SYMBOL sound/core/snd-rawmidi 0xb675efe8 snd_rawmidi_new -EXPORT_SYMBOL sound/core/snd-rawmidi 0xbc4eab60 snd_rawmidi_receive -EXPORT_SYMBOL sound/core/snd-rawmidi 0xbe7f9209 snd_rawmidi_drain_output -EXPORT_SYMBOL sound/core/snd-rawmidi 0xc25531f8 snd_rawmidi_drain_input -EXPORT_SYMBOL sound/core/snd-rawmidi 0xcdd5827b snd_rawmidi_drop_output -EXPORT_SYMBOL sound/core/snd-rawmidi 0xf7e832d2 __snd_rawmidi_transmit_peek -EXPORT_SYMBOL sound/core/snd-rawmidi 0xf9b7b3ad __snd_rawmidi_transmit_ack -EXPORT_SYMBOL sound/core/snd-rawmidi 0xffc609d7 snd_rawmidi_output_params -EXPORT_SYMBOL sound/core/snd-seq-device 0x091def1c snd_seq_autoload_exit -EXPORT_SYMBOL sound/core/snd-seq-device 0x202e145d 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 0x1455d000 snd_timer_resolution -EXPORT_SYMBOL sound/core/snd-timer 0x17532b92 snd_timer_open -EXPORT_SYMBOL sound/core/snd-timer 0x2dc9e2c2 snd_timer_instance_free -EXPORT_SYMBOL sound/core/snd-timer 0x4a119231 snd_timer_notify -EXPORT_SYMBOL sound/core/snd-timer 0x4d063472 snd_timer_global_register -EXPORT_SYMBOL sound/core/snd-timer 0x680c2be8 snd_timer_interrupt -EXPORT_SYMBOL sound/core/snd-timer 0x9860d15a snd_timer_global_new -EXPORT_SYMBOL sound/core/snd-timer 0x9ede85f1 snd_timer_continue -EXPORT_SYMBOL sound/core/snd-timer 0xb5d7391e snd_timer_start -EXPORT_SYMBOL sound/core/snd-timer 0xc47603a9 snd_timer_global_free -EXPORT_SYMBOL sound/core/snd-timer 0xcd21e94d snd_timer_new -EXPORT_SYMBOL sound/core/snd-timer 0xe3a3d25b snd_timer_close -EXPORT_SYMBOL sound/core/snd-timer 0xe499728a snd_timer_instance_new -EXPORT_SYMBOL sound/core/snd-timer 0xe82a20bb snd_timer_pause -EXPORT_SYMBOL sound/core/snd-timer 0xed239c29 snd_timer_stop -EXPORT_SYMBOL sound/drivers/mpu401/snd-mpu401-uart 0x22cea786 snd_mpu401_uart_new -EXPORT_SYMBOL sound/drivers/mpu401/snd-mpu401-uart 0x6d629c59 snd_mpu401_uart_interrupt_tx -EXPORT_SYMBOL sound/drivers/mpu401/snd-mpu401-uart 0xc0fec227 snd_mpu401_uart_interrupt -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x05060a19 snd_opl3_regmap -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x1e6e03fc snd_opl3_interrupt -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x27b1d6e6 snd_opl3_timer_new -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x4a701b64 snd_opl3_load_patch -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x7a767a49 snd_opl3_reset -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x81590a01 snd_opl3_find_patch -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x8728bb06 snd_opl3_init -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xb3b04db2 snd_opl3_new -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xe21be3cc snd_opl3_create -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xfbb1d371 snd_opl3_hwdep_new -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x226138b0 snd_vx_threaded_irq_handler -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x3800b088 snd_vx_dsp_load -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x3e0385b5 snd_vx_setup_firmware -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x497bcafe snd_vx_load_boot_image -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x4e33e8b4 snd_vx_suspend -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x674b40c8 snd_vx_dsp_boot -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x9b7b7cce snd_vx_resume -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xbfc5113a snd_vx_free_firmware -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xc959cada snd_vx_check_reg_bit -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xf1f04d23 snd_vx_irq_handler -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xf37a9219 snd_vx_create -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x03671aaf avc_general_get_sig_fmt -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x10ad399c iso_packets_buffer_init -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x13b344ed amdtp_stream_add_pcm_hw_constraints -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x182f09cb fw_iso_resources_allocate -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x20254e45 amdtp_syt_intervals -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x21e5d2d2 amdtp_stream_init -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x289efd03 avc_general_get_plug_info -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x3b44e64a fcp_avc_transaction -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x3c42bc28 fw_iso_resources_destroy -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x419b47a3 fcp_bus_reset -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x42f2ada5 amdtp_stream_destroy -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x470d4437 amdtp_stream_pcm_abort -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x5013a419 cmp_connection_reserve -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x53ca18e8 amdtp_rate_table -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x54cc70ab amdtp_stream_set_parameters -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x5fc90f81 fw_iso_resources_init -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x6691096e fw_iso_resources_update -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x705f87f8 cmp_connection_release -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x7c55880b iso_packets_buffer_destroy -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x7e8efb90 cmp_connection_update -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x94b9907f amdtp_stream_pcm_prepare -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x960a72c6 amdtp_stream_get_max_payload -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xa514b226 fw_iso_resources_free -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xae72942d avc_general_set_sig_fmt -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xb4f541ab amdtp_stream_update -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xb522e0db cmp_connection_check_used -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xbdd4c03e cmp_connection_init -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xc9e926b2 cmp_connection_establish -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xd967c13a cmp_connection_destroy -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xe3de356d cmp_connection_break -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xfaf3b8bf snd_fw_transaction -EXPORT_SYMBOL sound/i2c/other/snd-ak4113 0x5693de1f snd_ak4113_resume -EXPORT_SYMBOL sound/i2c/other/snd-ak4113 0x6cdeeed3 snd_ak4113_suspend -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x18e25abb snd_ak4114_external_rate -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x52df4878 snd_ak4114_resume -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x6e98e286 snd_ak4114_check_rate_and_errors -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x85363c7b snd_ak4114_reinit -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xa54fa9d4 snd_ak4114_reg_write -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xe125c5e5 snd_ak4114_build -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xe594e49d snd_ak4114_create -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xfaccb106 snd_ak4114_suspend -EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0x6f35a8ae snd_ak4117_reinit -EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0x793a4821 snd_ak4117_check_rate_and_errors -EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0x8c96e47a snd_ak4117_build -EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0x93bb0a76 snd_ak4117_external_rate -EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0xcfd1ed71 snd_ak4117_create -EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0xf1365ddb snd_ak4117_reg_write -EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x16b65dc7 snd_akm4xxx_init -EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x242a8da5 snd_akm4xxx_build_controls -EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0xae8abce3 snd_akm4xxx_write -EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0xd68c53a8 snd_akm4xxx_reset -EXPORT_SYMBOL sound/i2c/other/snd-pt2258 0x9772c9ef snd_pt2258_reset -EXPORT_SYMBOL sound/i2c/other/snd-pt2258 0xd2c29f82 snd_pt2258_build_controls -EXPORT_SYMBOL sound/i2c/snd-cs8427 0x0dc33aa2 snd_cs8427_iec958_active -EXPORT_SYMBOL sound/i2c/snd-cs8427 0x47456ef7 snd_cs8427_iec958_build -EXPORT_SYMBOL sound/i2c/snd-cs8427 0x6f13b412 snd_cs8427_reg_write -EXPORT_SYMBOL sound/i2c/snd-cs8427 0x7fa9692b snd_cs8427_init -EXPORT_SYMBOL sound/i2c/snd-cs8427 0xefa3d0cb snd_cs8427_create -EXPORT_SYMBOL sound/i2c/snd-cs8427 0xffc94c33 snd_cs8427_iec958_pcm -EXPORT_SYMBOL sound/i2c/snd-i2c 0x0b114767 snd_i2c_sendbytes -EXPORT_SYMBOL sound/i2c/snd-i2c 0x61e773e5 snd_i2c_device_create -EXPORT_SYMBOL sound/i2c/snd-i2c 0x66ade3b6 snd_i2c_readbytes -EXPORT_SYMBOL sound/i2c/snd-i2c 0x6dfb1437 snd_i2c_probeaddr -EXPORT_SYMBOL sound/i2c/snd-i2c 0x9b1064e6 snd_i2c_device_free -EXPORT_SYMBOL sound/i2c/snd-i2c 0xbb08548f snd_i2c_bus_create -EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x0a46248e snd_sbmixer_new -EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x0c6bedaa snd_sbdsp_command -EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x0ff241d3 snd_sbmixer_write -EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x1669787a snd_sbmixer_add_ctl -EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x29b13d15 snd_sbmixer_suspend -EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x329582f4 snd_sbdsp_get_byte -EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x769989d6 snd_sbmixer_resume -EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x8818e020 snd_sbdsp_reset -EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x9706fea5 snd_sbmixer_read -EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xb16b510f snd_sbdsp_create -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x086448d5 snd_ac97_get_short_name -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x0e365d4d snd_ac97_pcm_double_rate_rules -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x168d2113 snd_ac97_mixer -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x1b91cb6f snd_ac97_write -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x2fbd7947 snd_ac97_update -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x56c16569 snd_ac97_write_cache -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x59c26aaf snd_ac97_update_power -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x63e485a0 snd_ac97_tune_hardware -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x6f554309 snd_ac97_read -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x8a73c3d4 snd_ac97_update_bits -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x8b99ad14 snd_ac97_set_rate -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xcb453aef snd_ac97_bus -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xcb6b955f snd_ac97_pcm_assign -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xd62de8fe snd_ac97_resume -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xdf1a03f7 snd_ac97_suspend -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xdf52f3a1 snd_ac97_pcm_close -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xf5d2c2da snd_ac97_pcm_open -EXPORT_SYMBOL sound/pci/asihpi/snd-asihpi 0xb99cb4eb hpi_send_recv -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x14bf99c9 snd_emu10k1_synth_bzero -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x26f27898 snd_emu10k1_synth_copy_from_user -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x336eee6f snd_emu10k1_memblk_map -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x610b4302 snd_emu10k1_ptr_write -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x727ba8c9 snd_emu10k1_synth_alloc -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x969c9cdc snd_emu10k1_synth_free -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x981490ab snd_emu10k1_voice_alloc -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xae21ca49 snd_emu10k1_voice_free -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xf26ac4c7 snd_emu10k1_ptr_read -EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0x5b3c5a6a snd_ice1712_akm4xxx_build_controls -EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0x7535b388 snd_ice1712_akm4xxx_free -EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0xefe97237 snd_ice1712_akm4xxx_init -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x2213b5fa oxygen_pci_pm -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x331e19c1 oxygen_write32_masked -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x48a66ac3 oxygen_pci_probe -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x56fc8047 oxygen_read8 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x5c14657b oxygen_write_ac97 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x5c1db341 oxygen_update_dac_routing -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x5f94c027 oxygen_write_ac97_masked -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x5fbaac5e oxygen_write16_masked -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x619c928c oxygen_write8 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x703aea23 oxygen_write_i2c -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x83689727 oxygen_write_spi -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x837840fe oxygen_read32 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x8c0198a5 oxygen_write8_masked -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x95676691 oxygen_write32 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x9622d389 oxygen_pci_shutdown -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xa887e299 oxygen_write_uart -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xa88a2651 oxygen_reset_uart -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xab424076 oxygen_read_ac97 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xb26d0265 oxygen_write16 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xeb4452f9 oxygen_read16 -EXPORT_SYMBOL sound/pci/trident/snd-trident 0x00efe1c0 snd_trident_free_voice -EXPORT_SYMBOL sound/pci/trident/snd-trident 0x1db0ac99 snd_trident_write_voice_regs -EXPORT_SYMBOL sound/pci/trident/snd-trident 0x6730f84c snd_trident_start_voice -EXPORT_SYMBOL sound/pci/trident/snd-trident 0x723d50e7 snd_trident_stop_voice -EXPORT_SYMBOL sound/pci/trident/snd-trident 0x78c2831d snd_trident_alloc_voice -EXPORT_SYMBOL sound/soc/amd/acp_audio_dma 0xea74f232 bt_uart_enable -EXPORT_SYMBOL sound/soc/codecs/snd-soc-adau1372 0x967238ab adau1372_probe -EXPORT_SYMBOL sound/soc/codecs/snd-soc-lpass-wsa-macro 0xf8eb236b wsa_macro_set_spkr_mode -EXPORT_SYMBOL sound/soc/codecs/snd-soc-pcm3060 0x0524f085 pcm3060_regmap -EXPORT_SYMBOL sound/soc/codecs/snd-soc-pcm3060 0xd57c08cf pcm3060_probe -EXPORT_SYMBOL sound/soc/codecs/snd-soc-rt715 0xed2acb24 hda_to_sdw -EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic23 0x39dd1709 tlv320aic23_probe -EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic23 0xaa15d8a3 tlv320aic23_regmap -EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic32x4 0x338c26f8 aic32x4_probe -EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic32x4 0xc00f454f aic32x4_remove -EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic32x4 0xc82a3e72 aic32x4_regmap_config -EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic3x 0x39f789af aic3x_remove -EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic3x 0x4fbf353b 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 0x4c171ff0 wcd_dt_parse_mbhc_data -EXPORT_SYMBOL sound/soc/codecs/snd-soc-wcd-mbhc 0x789ebe56 wcd_mbhc_set_hph_type -EXPORT_SYMBOL sound/soc/codecs/snd-soc-wcd-mbhc 0xa5758a49 wcd_mbhc_get_hph_type -EXPORT_SYMBOL sound/soc/codecs/snd-soc-wcd-mbhc 0xb38890ad wcd_mbhc_start -EXPORT_SYMBOL sound/soc/codecs/snd-soc-wcd-mbhc 0xd094df47 wcd_mbhc_deinit -EXPORT_SYMBOL sound/soc/codecs/snd-soc-wcd-mbhc 0xd64cd146 wcd_mbhc_init -EXPORT_SYMBOL sound/soc/codecs/snd-soc-wcd-mbhc 0xe2beca26 wcd_mbhc_stop -EXPORT_SYMBOL sound/soc/snd-soc-core 0x1ea62af4 snd_soc_alloc_ac97_component -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x029030e6 sof_io_read -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x037d57cf snd_sof_runtime_suspend -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x0721cb6c snd_sof_dsp_update_bits_unlocked -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x0725f133 snd_sof_create_page_table -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x0a3219ff snd_sof_ipc_valid -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x0b39c4d9 snd_sof_init_trace -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x0c5bfc83 sof_machine_check -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x0cc934e2 snd_sof_prepare -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x12aef736 snd_sof_pcm_period_elapsed -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x138014d1 snd_sof_ipc_init -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x17319a93 sof_block_read -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x1d22a5ea sof_ipc_tx_message_no_pm -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x26a48082 sof_block_write -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x2e8fcec7 snd_sof_load_firmware_raw -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x346c8daf sof_io_read64 -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x3bb1afda sof_pcm_dai_link_fixup -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x3fd5a4a0 sof_mailbox_read -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x415cb728 snd_sof_get_status -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x48c18a56 snd_sof_trace_notify_for_error -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x4c4433c5 sof_mailbox_write -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x4d93e465 snd_sof_device_probe -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x51ba94ec snd_sof_ipc_msgs_rx -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x531ba83a snd_sof_run_firmware -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x54949443 snd_sof_device_shutdown -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x5ab691c8 snd_sof_runtime_idle -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x5cda29df snd_sof_runtime_resume -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x5d3f4da0 snd_sof_handle_fw_exception -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x5dd1a583 snd_sof_pci_update_bits -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x673df307 snd_sof_dsp_update_bits64 -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x6bccbdc2 snd_sof_device_remove -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x6c8203ca sof_machine_register -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x80107d09 snd_sof_fw_parse_ext_data -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x80a8b307 snd_sof_load_firmware_memcpy -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x874fdc1e snd_sof_dsp_update_bits64_unlocked -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x881d1dbd snd_sof_dsp_update_bits_forced -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x8b04e404 snd_sof_ipc_free -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x8bf6abe0 snd_sof_free_trace -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x9332330c snd_sof_dsp_mailbox_init -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x94858a22 sof_io_write64 -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x9b8a6617 snd_sof_complete -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x9c34c066 snd_sof_ipc_stream_posn -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x9ee519a8 snd_sof_dsp_update_bits -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xa6e7f982 snd_sof_device_probe_completed -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xa829117f sof_fw_ready -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xab39fe36 snd_sof_resume -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xad97a0d8 sof_dai_get_mclk -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xb7e8287f snd_sof_ipc_set_get_comp_data -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xbe42b624 sof_io_write -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xc1503a12 sof_dai_get_bclk -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xcfdc5f98 sof_ipc_tx_message -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xd3acab28 snd_sof_fw_unload -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xd96ac88d sof_machine_unregister -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xd984f9b0 snd_sof_release_trace -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xd9bbb9b5 snd_sof_parse_module_memcpy -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xda5ceec4 snd_sof_suspend -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xdc972852 snd_sof_load_topology -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xddcc11db snd_sof_ipc_reply -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xe43e615b snd_sof_dsp_panic -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xe8d2f778 snd_sof_dsp_only_d0i3_compatible_stream_active -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xecea7fd9 snd_sof_load_firmware -EXPORT_SYMBOL sound/soundcore 0x1a9a5f17 register_sound_dsp -EXPORT_SYMBOL sound/soundcore 0x3487b846 register_sound_special -EXPORT_SYMBOL sound/soundcore 0x7afc9d8a unregister_sound_mixer -EXPORT_SYMBOL sound/soundcore 0x83afdb15 register_sound_special_device -EXPORT_SYMBOL sound/soundcore 0x99c95fa5 unregister_sound_special -EXPORT_SYMBOL sound/soundcore 0xcd083b10 unregister_sound_dsp -EXPORT_SYMBOL sound/soundcore 0xd0351ca7 register_sound_mixer -EXPORT_SYMBOL sound/soundcore 0xd5002b3a sound_class -EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x11d49184 snd_emux_terminate_all -EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x5278b03e snd_emux_lock_voice -EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x5847c595 snd_emux_unlock_voice -EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x655cb202 snd_sf_linear_to_log -EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x846a554f snd_emux_new -EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x8821354e snd_emux_free -EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0xed00d60b snd_emux_register -EXPORT_SYMBOL sound/synth/snd-util-mem 0x0089f525 snd_util_mem_avail -EXPORT_SYMBOL sound/synth/snd-util-mem 0x1353f622 snd_util_memhdr_new -EXPORT_SYMBOL sound/synth/snd-util-mem 0x44048a97 snd_util_memhdr_free -EXPORT_SYMBOL sound/synth/snd-util-mem 0x65b34d81 snd_util_mem_alloc -EXPORT_SYMBOL sound/synth/snd-util-mem 0xb04eb093 __snd_util_memblk_new -EXPORT_SYMBOL sound/synth/snd-util-mem 0xb2feb4aa __snd_util_mem_alloc -EXPORT_SYMBOL sound/synth/snd-util-mem 0xc63ff58b __snd_util_mem_free -EXPORT_SYMBOL sound/synth/snd-util-mem 0xfabeca7c 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 0xdf6f22d4 __snd_usbmidi_create -EXPORT_SYMBOL vmlinux 0x000503eb bdi_put -EXPORT_SYMBOL vmlinux 0x000cdac6 rtnl_unicast -EXPORT_SYMBOL vmlinux 0x00148653 vsnprintf -EXPORT_SYMBOL vmlinux 0x001944de arp_tbl -EXPORT_SYMBOL vmlinux 0x0028c2d1 max8925_set_bits -EXPORT_SYMBOL vmlinux 0x00410f85 get_ipc_ns_exported -EXPORT_SYMBOL vmlinux 0x0046c70d ethtool_op_get_ts_info -EXPORT_SYMBOL vmlinux 0x0051d9e9 scsi_scan_target -EXPORT_SYMBOL vmlinux 0x008879ca skb_flow_dissect_meta -EXPORT_SYMBOL vmlinux 0x0098a3f5 netif_rx -EXPORT_SYMBOL vmlinux 0x00a4b044 amd_iommu_deactivate_guest_mode -EXPORT_SYMBOL vmlinux 0x00a4eb7d proto_unregister -EXPORT_SYMBOL vmlinux 0x00a85d36 __sk_mem_raise_allocated -EXPORT_SYMBOL vmlinux 0x00b4e615 posix_acl_equiv_mode -EXPORT_SYMBOL vmlinux 0x00d58525 proc_douintvec -EXPORT_SYMBOL vmlinux 0x00d7e722 vme_lm_count -EXPORT_SYMBOL vmlinux 0x00d87531 xa_find -EXPORT_SYMBOL vmlinux 0x00e1ede8 seq_read -EXPORT_SYMBOL vmlinux 0x01000e51 schedule -EXPORT_SYMBOL vmlinux 0x010ca75c do_clone_file_range -EXPORT_SYMBOL vmlinux 0x0110b0ce _dev_info -EXPORT_SYMBOL vmlinux 0x01219d3e jbd2_journal_restart -EXPORT_SYMBOL vmlinux 0x0132d9b5 vme_bus_type -EXPORT_SYMBOL vmlinux 0x0147812c kblockd_mod_delayed_work_on -EXPORT_SYMBOL vmlinux 0x014c5aa0 agp_bridge -EXPORT_SYMBOL vmlinux 0x01546453 try_to_release_page -EXPORT_SYMBOL vmlinux 0x015af7f4 system_state -EXPORT_SYMBOL vmlinux 0x01757935 rdmacg_register_device -EXPORT_SYMBOL vmlinux 0x017de3d5 nr_cpu_ids -EXPORT_SYMBOL vmlinux 0x018574a1 mb_cache_entry_delete -EXPORT_SYMBOL vmlinux 0x0188cd88 vme_alloc_consistent -EXPORT_SYMBOL vmlinux 0x0199c3bd ethtool_intersect_link_masks -EXPORT_SYMBOL vmlinux 0x019c9465 __invalidate_device -EXPORT_SYMBOL vmlinux 0x01b0231c mark_buffer_dirty_inode -EXPORT_SYMBOL vmlinux 0x01bf55fc paddr_vmcoreinfo_note -EXPORT_SYMBOL vmlinux 0x01c851d6 lockref_mark_dead -EXPORT_SYMBOL vmlinux 0x01cb9f09 skb_queue_purge -EXPORT_SYMBOL vmlinux 0x01ec1c1a devm_pci_alloc_host_bridge -EXPORT_SYMBOL vmlinux 0x01ecd485 pci_iomap -EXPORT_SYMBOL vmlinux 0x01f5dff7 dma_fence_wait_any_timeout -EXPORT_SYMBOL vmlinux 0x0203129b fs_lookup_param -EXPORT_SYMBOL vmlinux 0x0209f3a7 secure_ipv6_port_ephemeral -EXPORT_SYMBOL vmlinux 0x020dbf27 bitmap_alloc -EXPORT_SYMBOL vmlinux 0x021f1378 jbd2_journal_start_reserved -EXPORT_SYMBOL vmlinux 0x0228925f iowrite64_hi_lo -EXPORT_SYMBOL vmlinux 0x02347bff down_write_killable -EXPORT_SYMBOL vmlinux 0x0237b57a arch_unregister_cpu -EXPORT_SYMBOL vmlinux 0x023d1b90 wrmsr_on_cpu -EXPORT_SYMBOL vmlinux 0x0248efd3 kstrtobool_from_user -EXPORT_SYMBOL vmlinux 0x024be123 blkdev_compat_ptr_ioctl -EXPORT_SYMBOL vmlinux 0x0256a1af sk_reset_timer -EXPORT_SYMBOL vmlinux 0x0261aedb mdiobus_read -EXPORT_SYMBOL vmlinux 0x0262dd6b unregister_qdisc -EXPORT_SYMBOL vmlinux 0x0267d866 pci_bus_read_config_byte -EXPORT_SYMBOL vmlinux 0x0274dc2b netif_get_num_default_rss_queues -EXPORT_SYMBOL vmlinux 0x029382b7 dquot_quota_off -EXPORT_SYMBOL vmlinux 0x0296695f refcount_warn_saturate -EXPORT_SYMBOL vmlinux 0x029841a7 sk_wait_data -EXPORT_SYMBOL vmlinux 0x02b83857 inet_frag_reasm_finish -EXPORT_SYMBOL vmlinux 0x02b8ab42 sg_copy_to_buffer -EXPORT_SYMBOL vmlinux 0x02c1170b ip_getsockopt -EXPORT_SYMBOL vmlinux 0x02c656b6 acpi_enable_all_runtime_gpes -EXPORT_SYMBOL vmlinux 0x02d5247e component_match_add_release -EXPORT_SYMBOL vmlinux 0x02de634b mr_dump -EXPORT_SYMBOL vmlinux 0x02e63c48 dma_map_page_attrs -EXPORT_SYMBOL vmlinux 0x032ea827 skb_prepare_seq_read -EXPORT_SYMBOL vmlinux 0x0334795d icst307_s2div -EXPORT_SYMBOL vmlinux 0x0334da4e scsi_command_size_tbl -EXPORT_SYMBOL vmlinux 0x0335d435 block_page_mkwrite -EXPORT_SYMBOL vmlinux 0x034a2bdb __cleancache_invalidate_inode -EXPORT_SYMBOL vmlinux 0x0355142b devm_devfreq_unregister_opp_notifier -EXPORT_SYMBOL vmlinux 0x035ace06 jbd2_journal_destroy -EXPORT_SYMBOL vmlinux 0x0360d67f make_flow_keys_digest -EXPORT_SYMBOL vmlinux 0x0362f9a8 __x86_indirect_thunk_r12 -EXPORT_SYMBOL vmlinux 0x0366307a console_suspend_enabled -EXPORT_SYMBOL vmlinux 0x037a0cba kfree -EXPORT_SYMBOL vmlinux 0x0380d1af tcp_v4_connect -EXPORT_SYMBOL vmlinux 0x03815f35 ledtrig_disk_activity -EXPORT_SYMBOL vmlinux 0x038640d0 radix_tree_tag_set -EXPORT_SYMBOL vmlinux 0x038a0b41 ndo_dflt_fdb_add -EXPORT_SYMBOL vmlinux 0x0397edd5 fb_edid_to_monspecs -EXPORT_SYMBOL vmlinux 0x039e1156 security_inode_notifysecctx -EXPORT_SYMBOL vmlinux 0x03bbb8ab __skb_gro_checksum_complete -EXPORT_SYMBOL vmlinux 0x03bf0e5a acpi_walk_resource_buffer -EXPORT_SYMBOL vmlinux 0x03c23695 pci_bus_find_capability -EXPORT_SYMBOL vmlinux 0x03c9ae17 devfreq_resume_device -EXPORT_SYMBOL vmlinux 0x03fd2571 vm_unmap_ram -EXPORT_SYMBOL vmlinux 0x04083e9e pci_ep_cfs_add_epc_group -EXPORT_SYMBOL vmlinux 0x0426512d d_add_ci -EXPORT_SYMBOL vmlinux 0x04275d65 jbd2_journal_load -EXPORT_SYMBOL vmlinux 0x0430414e mipi_dsi_dcs_set_display_on -EXPORT_SYMBOL vmlinux 0x04353a4e __d_lookup_done -EXPORT_SYMBOL vmlinux 0x0439c72b __cond_resched_rwlock_read -EXPORT_SYMBOL vmlinux 0x04482cdb __refrigerator -EXPORT_SYMBOL vmlinux 0x0449ba10 filemap_fault -EXPORT_SYMBOL vmlinux 0x044d2017 i2c_smbus_write_word_data -EXPORT_SYMBOL vmlinux 0x0450a10f uart_remove_one_port -EXPORT_SYMBOL vmlinux 0x04514cad xfrm_state_flush -EXPORT_SYMBOL vmlinux 0x045ea7f3 skb_copy_and_hash_datagram_iter -EXPORT_SYMBOL vmlinux 0x0460fd02 phy_get_pause -EXPORT_SYMBOL vmlinux 0x0461ab8e __splice_from_pipe -EXPORT_SYMBOL vmlinux 0x0462be0f phy_resume -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 0x049965a6 free_inode_nonrcu -EXPORT_SYMBOL vmlinux 0x04af44ea flow_block_cb_lookup -EXPORT_SYMBOL vmlinux 0x04bb717d uart_register_driver -EXPORT_SYMBOL vmlinux 0x04c62fd7 __memset -EXPORT_SYMBOL vmlinux 0x04cfa64e netif_device_attach -EXPORT_SYMBOL vmlinux 0x04d8c750 release_perfctr_nmi -EXPORT_SYMBOL vmlinux 0x04d9bf4e blk_set_stacking_limits -EXPORT_SYMBOL vmlinux 0x04dbfda6 __mutex_rt_init -EXPORT_SYMBOL vmlinux 0x04e266c6 __vlan_find_dev_deep_rcu -EXPORT_SYMBOL vmlinux 0x04ea5d10 ksize -EXPORT_SYMBOL vmlinux 0x04f92a91 param_set_long -EXPORT_SYMBOL vmlinux 0x050877b9 dmi_first_match -EXPORT_SYMBOL vmlinux 0x051af5c1 scsi_track_queue_full -EXPORT_SYMBOL vmlinux 0x05240ee7 percpu_counter_batch -EXPORT_SYMBOL vmlinux 0x053bcc57 napi_gro_receive -EXPORT_SYMBOL vmlinux 0x054496b4 schedule_timeout_interruptible -EXPORT_SYMBOL vmlinux 0x054a153d __check_sticky -EXPORT_SYMBOL vmlinux 0x055e77e8 jiffies_64 -EXPORT_SYMBOL vmlinux 0x05629d9f xfrm6_rcv_spi -EXPORT_SYMBOL vmlinux 0x056de834 skb_trim -EXPORT_SYMBOL vmlinux 0x056e847a inet_csk_accept -EXPORT_SYMBOL vmlinux 0x057df2d9 param_set_bool -EXPORT_SYMBOL vmlinux 0x058910b8 logfc -EXPORT_SYMBOL vmlinux 0x05979f98 napi_schedule_prep -EXPORT_SYMBOL vmlinux 0x05985aa0 elv_bio_merge_ok -EXPORT_SYMBOL vmlinux 0x05a28220 bdi_alloc -EXPORT_SYMBOL vmlinux 0x05a7dbee simple_write_begin -EXPORT_SYMBOL vmlinux 0x05ae47f9 netdev_master_upper_dev_link -EXPORT_SYMBOL vmlinux 0x05af9a11 _copy_to_iter -EXPORT_SYMBOL vmlinux 0x05b630c8 udp_flush_pending_frames -EXPORT_SYMBOL vmlinux 0x05c0a75d uart_unregister_driver -EXPORT_SYMBOL vmlinux 0x05cee2d7 xsk_tx_completed -EXPORT_SYMBOL vmlinux 0x05eb7550 proc_dobool -EXPORT_SYMBOL vmlinux 0x05f606f0 genphy_setup_forced -EXPORT_SYMBOL vmlinux 0x05fa75be io_uring_get_socket -EXPORT_SYMBOL vmlinux 0x05fbefab devm_register_reboot_notifier -EXPORT_SYMBOL vmlinux 0x0603a221 scsi_get_device_flags_keyed -EXPORT_SYMBOL vmlinux 0x06052f8d __memmove -EXPORT_SYMBOL vmlinux 0x061651be strcat -EXPORT_SYMBOL vmlinux 0x0632a5ba scsi_device_set_state -EXPORT_SYMBOL vmlinux 0x0634100a bitmap_parselist_user -EXPORT_SYMBOL vmlinux 0x06408d4c __insert_inode_hash -EXPORT_SYMBOL vmlinux 0x06581df6 __mmap_lock_do_trace_start_locking -EXPORT_SYMBOL vmlinux 0x06658648 ipv6_sock_mc_drop -EXPORT_SYMBOL vmlinux 0x0668b595 _kstrtoul -EXPORT_SYMBOL vmlinux 0x067fe68b param_get_int -EXPORT_SYMBOL vmlinux 0x06a02dce phy_ethtool_get_sset_count -EXPORT_SYMBOL vmlinux 0x06a0e3ea devfreq_remove_governor -EXPORT_SYMBOL vmlinux 0x06a86bc1 iowrite16 -EXPORT_SYMBOL vmlinux 0x06bc58eb devm_request_any_context_irq -EXPORT_SYMBOL vmlinux 0x06bd88b5 ucs2_strnlen -EXPORT_SYMBOL vmlinux 0x06c48e90 genphy_soft_reset -EXPORT_SYMBOL vmlinux 0x06ce2de3 set_security_override -EXPORT_SYMBOL vmlinux 0x06f4d8df devfreq_register_opp_notifier -EXPORT_SYMBOL vmlinux 0x06f50d1b security_skb_classify_flow -EXPORT_SYMBOL vmlinux 0x06fef429 key_alloc -EXPORT_SYMBOL vmlinux 0x07069978 jbd2_trans_will_send_data_barrier -EXPORT_SYMBOL vmlinux 0x071222fe blkdev_get_by_path -EXPORT_SYMBOL vmlinux 0x07128921 page_zero_new_buffers -EXPORT_SYMBOL vmlinux 0x072506e4 nf_unregister_net_hook -EXPORT_SYMBOL vmlinux 0x072585ff bio_split -EXPORT_SYMBOL vmlinux 0x072732a2 pci_alloc_dev -EXPORT_SYMBOL vmlinux 0x072ed598 bdev_check_media_change -EXPORT_SYMBOL vmlinux 0x072f901c vme_master_rmw -EXPORT_SYMBOL vmlinux 0x0765fa52 param_ops_invbool -EXPORT_SYMBOL vmlinux 0x079f1b6f backlight_device_set_brightness -EXPORT_SYMBOL vmlinux 0x07a03a57 blackhole_netdev -EXPORT_SYMBOL vmlinux 0x07a890c8 fb_alloc_cmap -EXPORT_SYMBOL vmlinux 0x07b0adfc radix_tree_delete_item -EXPORT_SYMBOL vmlinux 0x07c0e634 jbd2_journal_get_create_access -EXPORT_SYMBOL vmlinux 0x07cc4a5d printk_timed_ratelimit -EXPORT_SYMBOL vmlinux 0x07cc8189 dquot_operations -EXPORT_SYMBOL vmlinux 0x07f57478 pci_unmap_iospace -EXPORT_SYMBOL vmlinux 0x0803e444 fuse_mount_destroy -EXPORT_SYMBOL vmlinux 0x0805f2c8 ecryptfs_get_auth_tok_key -EXPORT_SYMBOL vmlinux 0x080c36f9 security_inode_listsecurity -EXPORT_SYMBOL vmlinux 0x08218533 ns_capable -EXPORT_SYMBOL vmlinux 0x082234c3 dcache_dir_close -EXPORT_SYMBOL vmlinux 0x08249512 iwe_stream_add_point -EXPORT_SYMBOL vmlinux 0x082c3213 pci_root_buses -EXPORT_SYMBOL vmlinux 0x083488d0 __nlmsg_put -EXPORT_SYMBOL vmlinux 0x083eb21c rfkill_unregister -EXPORT_SYMBOL vmlinux 0x084421bc i2c_smbus_write_block_data -EXPORT_SYMBOL vmlinux 0x085d46a6 jbd2_transaction_committed -EXPORT_SYMBOL vmlinux 0x086b2f45 vga_get -EXPORT_SYMBOL vmlinux 0x0882a449 security_xfrm_policy_alloc -EXPORT_SYMBOL vmlinux 0x08970fb6 __hw_addr_ref_sync_dev -EXPORT_SYMBOL vmlinux 0x08a7d134 pcie_get_width_cap -EXPORT_SYMBOL vmlinux 0x08b029b9 build_skb_around -EXPORT_SYMBOL vmlinux 0x08b25048 ipv6_chk_custom_prefix -EXPORT_SYMBOL vmlinux 0x08df092a cdev_init -EXPORT_SYMBOL vmlinux 0x08e3a020 fget_raw -EXPORT_SYMBOL vmlinux 0x08e6590f bfifo_qdisc_ops -EXPORT_SYMBOL vmlinux 0x08fc74d4 inet_sendmsg -EXPORT_SYMBOL vmlinux 0x090355bb tcf_block_get_ext -EXPORT_SYMBOL vmlinux 0x09083272 pldmfw_flash_image -EXPORT_SYMBOL vmlinux 0x090e8284 generic_cont_expand_simple -EXPORT_SYMBOL vmlinux 0x09223094 read_cache_page_gfp -EXPORT_SYMBOL vmlinux 0x0927b515 vga_switcheroo_init_domain_pm_ops -EXPORT_SYMBOL vmlinux 0x092e26bf acpi_remove_address_space_handler -EXPORT_SYMBOL vmlinux 0x093712e5 acpi_purge_cached_objects -EXPORT_SYMBOL vmlinux 0x09397d1f ip_mc_inc_group -EXPORT_SYMBOL vmlinux 0x0940d6f3 default_qdisc_ops -EXPORT_SYMBOL vmlinux 0x09555857 sock_create -EXPORT_SYMBOL vmlinux 0x09769037 dmt_modes -EXPORT_SYMBOL vmlinux 0x09784ca4 tty_port_alloc_xmit_buf -EXPORT_SYMBOL vmlinux 0x098ac98a phy_read_paged -EXPORT_SYMBOL vmlinux 0x098b71c6 fb_dealloc_cmap -EXPORT_SYMBOL vmlinux 0x0998cc3c hdmi_infoframe_unpack -EXPORT_SYMBOL vmlinux 0x09a352c3 pneigh_lookup -EXPORT_SYMBOL vmlinux 0x09b1cc05 sock_enable_timestamps -EXPORT_SYMBOL vmlinux 0x09b99ec3 cdev_alloc -EXPORT_SYMBOL vmlinux 0x09c2361b crypto_sha512_finup -EXPORT_SYMBOL vmlinux 0x09d44df9 in_lock_functions -EXPORT_SYMBOL vmlinux 0x09d594f1 _dev_emerg -EXPORT_SYMBOL vmlinux 0x09f32f48 param_set_uint -EXPORT_SYMBOL vmlinux 0x0a012f73 mb_cache_entry_touch -EXPORT_SYMBOL vmlinux 0x0a0c7dd2 dev_disable_lro -EXPORT_SYMBOL vmlinux 0x0a1738f4 phy_attach_direct -EXPORT_SYMBOL vmlinux 0x0a1c4f15 ip_sock_set_pktinfo -EXPORT_SYMBOL vmlinux 0x0a1dbc76 tcp_rx_skb_cache_key -EXPORT_SYMBOL vmlinux 0x0a26f437 netif_tx_stop_all_queues -EXPORT_SYMBOL vmlinux 0x0a2d657c __scm_destroy -EXPORT_SYMBOL vmlinux 0x0a355140 tty_port_tty_set -EXPORT_SYMBOL vmlinux 0x0a52b350 unregister_console -EXPORT_SYMBOL vmlinux 0x0a59aec7 devm_get_clk_from_child -EXPORT_SYMBOL vmlinux 0x0a609167 proc_set_user -EXPORT_SYMBOL vmlinux 0x0a65d0bc netif_set_real_num_tx_queues -EXPORT_SYMBOL vmlinux 0x0a73e9f1 flow_rule_match_ip -EXPORT_SYMBOL vmlinux 0x0a770832 register_memory_notifier -EXPORT_SYMBOL vmlinux 0x0a7a274c inet_dgram_connect -EXPORT_SYMBOL vmlinux 0x0a8a2afe find_inode_rcu -EXPORT_SYMBOL vmlinux 0x0a9ba04f srso_untrain_ret -EXPORT_SYMBOL vmlinux 0x0aa309cf synchronize_hardirq -EXPORT_SYMBOL vmlinux 0x0aaccc92 pci_remap_iospace -EXPORT_SYMBOL vmlinux 0x0aaef955 mdiobus_scan -EXPORT_SYMBOL vmlinux 0x0ab1537e filemap_fdatawrite -EXPORT_SYMBOL vmlinux 0x0acf7679 dma_issue_pending_all -EXPORT_SYMBOL vmlinux 0x0ae53924 dma_set_mask -EXPORT_SYMBOL vmlinux 0x0afdd790 mr_table_dump -EXPORT_SYMBOL vmlinux 0x0b008cf4 __tracepoint_dma_fence_emit -EXPORT_SYMBOL vmlinux 0x0b1944e2 pci_disable_ptm -EXPORT_SYMBOL vmlinux 0x0b19b445 ioread8 -EXPORT_SYMBOL vmlinux 0x0b1beb31 vmalloc_32_user -EXPORT_SYMBOL vmlinux 0x0b2246fc tcp_sock_set_nodelay -EXPORT_SYMBOL vmlinux 0x0b26b8c8 acpi_run_osc -EXPORT_SYMBOL vmlinux 0x0b2fa5ff proc_dointvec_jiffies -EXPORT_SYMBOL vmlinux 0x0b2fdbc9 mmc_of_parse_voltage -EXPORT_SYMBOL vmlinux 0x0b46994d dquot_acquire -EXPORT_SYMBOL vmlinux 0x0b637410 cr4_update_irqsoff -EXPORT_SYMBOL vmlinux 0x0b6b44a2 readahead_expand -EXPORT_SYMBOL vmlinux 0x0b742fd7 simple_strtol -EXPORT_SYMBOL vmlinux 0x0b856195 dm_mq_kick_requeue_list -EXPORT_SYMBOL vmlinux 0x0b9bd02e __xa_set_mark -EXPORT_SYMBOL vmlinux 0x0ba0b938 vm_brk -EXPORT_SYMBOL vmlinux 0x0ba12c57 dma_fence_get_status -EXPORT_SYMBOL vmlinux 0x0bb002c9 bio_free_pages -EXPORT_SYMBOL vmlinux 0x0bc477a2 irq_set_irq_type -EXPORT_SYMBOL vmlinux 0x0bf3b39c proc_remove -EXPORT_SYMBOL vmlinux 0x0bfc1d1a check_zeroed_user -EXPORT_SYMBOL vmlinux 0x0c034e6c napi_disable -EXPORT_SYMBOL vmlinux 0x0c0cdfda pci_bus_set_ops -EXPORT_SYMBOL vmlinux 0x0c0f79af ZSTD_getDictID_fromFrame -EXPORT_SYMBOL vmlinux 0x0c151b0c tcp_read_sock -EXPORT_SYMBOL vmlinux 0x0c25ec48 secure_tcpv6_seq -EXPORT_SYMBOL vmlinux 0x0c274d63 dst_release -EXPORT_SYMBOL vmlinux 0x0c3690fc _raw_spin_lock_bh -EXPORT_SYMBOL vmlinux 0x0c3da649 hmm_range_fault -EXPORT_SYMBOL vmlinux 0x0c44944e __wake_up -EXPORT_SYMBOL vmlinux 0x0c48f21b scsi_print_sense_hdr -EXPORT_SYMBOL vmlinux 0x0c51a888 simple_getattr -EXPORT_SYMBOL vmlinux 0x0c6a7608 serio_bus -EXPORT_SYMBOL vmlinux 0x0c6bdc3f vme_master_read -EXPORT_SYMBOL vmlinux 0x0c8955d2 agp_generic_mask_memory -EXPORT_SYMBOL vmlinux 0x0c989f08 kernel_listen -EXPORT_SYMBOL vmlinux 0x0cb69399 seq_put_decimal_ull -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 0x0cfa5a9d i2c_smbus_read_word_data -EXPORT_SYMBOL vmlinux 0x0d07f543 get_anon_bdev -EXPORT_SYMBOL vmlinux 0x0d09ff6f dmaengine_get_unmap_data -EXPORT_SYMBOL vmlinux 0x0d0c1a4e intel_gmch_probe -EXPORT_SYMBOL vmlinux 0x0d1885db tty_devnum -EXPORT_SYMBOL vmlinux 0x0d542439 __ipv6_addr_type -EXPORT_SYMBOL vmlinux 0x0d554135 mmc_alloc_host -EXPORT_SYMBOL vmlinux 0x0d5f7ca5 tcp_get_cookie_sock -EXPORT_SYMBOL vmlinux 0x0d5fa1a3 i2c_smbus_write_byte -EXPORT_SYMBOL vmlinux 0x0d61eeee __bitmap_subset -EXPORT_SYMBOL vmlinux 0x0d9ea584 input_register_handle -EXPORT_SYMBOL vmlinux 0x0da2970f phy_ethtool_get_wol -EXPORT_SYMBOL vmlinux 0x0dbe0235 tty_vhangup -EXPORT_SYMBOL vmlinux 0x0dbee81b tcf_idr_release -EXPORT_SYMBOL vmlinux 0x0dc33326 blk_queue_io_min -EXPORT_SYMBOL vmlinux 0x0dc73495 datagram_poll -EXPORT_SYMBOL vmlinux 0x0dcd637d task_work_add -EXPORT_SYMBOL vmlinux 0x0dd5b465 config_group_init -EXPORT_SYMBOL vmlinux 0x0df208f3 devm_input_allocate_device -EXPORT_SYMBOL vmlinux 0x0e0cd3d5 tcp_openreq_init_rwin -EXPORT_SYMBOL vmlinux 0x0e139aa4 serio_close -EXPORT_SYMBOL vmlinux 0x0e17678a siphash_4u64 -EXPORT_SYMBOL vmlinux 0x0e23b37f alloc_cpumask_var_node -EXPORT_SYMBOL vmlinux 0x0e4262c6 __siphash_unaligned -EXPORT_SYMBOL vmlinux 0x0e455402 netdev_reset_tc -EXPORT_SYMBOL vmlinux 0x0e494a77 pci_scan_bridge -EXPORT_SYMBOL vmlinux 0x0e4a3e06 mdio_find_bus -EXPORT_SYMBOL vmlinux 0x0e54ec58 unlock_new_inode -EXPORT_SYMBOL vmlinux 0x0e6b82e3 pnp_is_active -EXPORT_SYMBOL vmlinux 0x0e74ad2d utf8ncursor -EXPORT_SYMBOL vmlinux 0x0e817a29 dma_fence_chain_walk -EXPORT_SYMBOL vmlinux 0x0e85d30e sock_no_linger -EXPORT_SYMBOL vmlinux 0x0ea3c74e tasklet_kill -EXPORT_SYMBOL vmlinux 0x0ea593f6 hdmi_drm_infoframe_init -EXPORT_SYMBOL vmlinux 0x0ead9398 dev_get_stats -EXPORT_SYMBOL vmlinux 0x0eb2cb34 __cleancache_init_fs -EXPORT_SYMBOL vmlinux 0x0eb6eb87 add_taint -EXPORT_SYMBOL vmlinux 0x0ec17ffa vga_switcheroo_register_audio_client -EXPORT_SYMBOL vmlinux 0x0ec3d698 file_path -EXPORT_SYMBOL vmlinux 0x0ec5babe vme_dma_free -EXPORT_SYMBOL vmlinux 0x0eccde9c touch_atime -EXPORT_SYMBOL vmlinux 0x0ed30154 sock_no_recvmsg -EXPORT_SYMBOL vmlinux 0x0ed55364 iget_failed -EXPORT_SYMBOL vmlinux 0x0ee47a77 skb_clone -EXPORT_SYMBOL vmlinux 0x0ef4f896 iw_handler_get_spy -EXPORT_SYMBOL vmlinux 0x0f049530 set_page_dirty -EXPORT_SYMBOL vmlinux 0x0f09cc34 schedule_timeout_killable -EXPORT_SYMBOL vmlinux 0x0f1ad8e2 seq_list_start_rcu -EXPORT_SYMBOL vmlinux 0x0f3bc88d dev_remove_pack -EXPORT_SYMBOL vmlinux 0x0f44ac91 rtnl_kfree_skbs -EXPORT_SYMBOL vmlinux 0x0f509529 blk_put_request -EXPORT_SYMBOL vmlinux 0x0f52adf3 sg_miter_start -EXPORT_SYMBOL vmlinux 0x0f551de9 validate_slab_cache -EXPORT_SYMBOL vmlinux 0x0f65a023 __mark_inode_dirty -EXPORT_SYMBOL vmlinux 0x0f66d979 migrate_page -EXPORT_SYMBOL vmlinux 0x0f6f76ba tcp_stream_memory_free -EXPORT_SYMBOL vmlinux 0x0f80245f neigh_sysctl_register -EXPORT_SYMBOL vmlinux 0x0f86f560 kthread_delayed_work_timer_fn -EXPORT_SYMBOL vmlinux 0x0f8880b3 user_path_at_empty -EXPORT_SYMBOL vmlinux 0x0f940157 inet_dgram_ops -EXPORT_SYMBOL vmlinux 0x0fa4ef4e blk_mq_delay_kick_requeue_list -EXPORT_SYMBOL vmlinux 0x0fa9e093 inet_addr_type_table -EXPORT_SYMBOL vmlinux 0x0fab1ab0 hdmi_spd_infoframe_pack -EXPORT_SYMBOL vmlinux 0x0fb2f8a4 mktime64 -EXPORT_SYMBOL vmlinux 0x0fcb2a79 nf_register_queue_handler -EXPORT_SYMBOL vmlinux 0x0fd074a4 proc_dostring -EXPORT_SYMBOL vmlinux 0x0fd18f81 serial8250_set_isa_configurator -EXPORT_SYMBOL vmlinux 0x0fd4bc28 gro_find_complete_by_type -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 0x1028d7c9 d_obtain_alias -EXPORT_SYMBOL vmlinux 0x1028ee95 blk_queue_update_dma_pad -EXPORT_SYMBOL vmlinux 0x1031cc35 vga_client_register -EXPORT_SYMBOL vmlinux 0x1035c7c2 __release_region -EXPORT_SYMBOL vmlinux 0x10462c7f unregister_netdevice_queue -EXPORT_SYMBOL vmlinux 0x1054912a tcf_idrinfo_destroy -EXPORT_SYMBOL vmlinux 0x1057a279 bsearch -EXPORT_SYMBOL vmlinux 0x1068004b gf128mul_bbe -EXPORT_SYMBOL vmlinux 0x106e2270 __icmp_send -EXPORT_SYMBOL vmlinux 0x107be0b0 percpu_counter_sync -EXPORT_SYMBOL vmlinux 0x107e5878 zlib_inflateEnd -EXPORT_SYMBOL vmlinux 0x10b08bd3 __xfrm_decode_session -EXPORT_SYMBOL vmlinux 0x10bcfcd5 generic_update_time -EXPORT_SYMBOL vmlinux 0x10cdce06 devm_devfreq_register_opp_notifier -EXPORT_SYMBOL vmlinux 0x10d0fd19 atomic_dec_and_mutex_lock -EXPORT_SYMBOL vmlinux 0x10d9f885 scsi_sense_desc_find -EXPORT_SYMBOL vmlinux 0x10da202a pci_free_irq -EXPORT_SYMBOL vmlinux 0x10e0f814 tcp_fastopen_defer_connect -EXPORT_SYMBOL vmlinux 0x10e6f74a free_contig_range -EXPORT_SYMBOL vmlinux 0x10f90b7f devfreq_update_target -EXPORT_SYMBOL vmlinux 0x11089ac7 _ctype -EXPORT_SYMBOL vmlinux 0x110cb7bd set_pages_wb -EXPORT_SYMBOL vmlinux 0x113a531a pci_setup_cardbus -EXPORT_SYMBOL vmlinux 0x117093be qdisc_class_hash_init -EXPORT_SYMBOL vmlinux 0x1171dce4 __SCK__tp_func_write_msr -EXPORT_SYMBOL vmlinux 0x11a33876 blk_mq_delay_run_hw_queues -EXPORT_SYMBOL vmlinux 0x11b017eb acpi_bus_register_driver -EXPORT_SYMBOL vmlinux 0x11bec7f2 ptp_cancel_worker_sync -EXPORT_SYMBOL vmlinux 0x11dec077 dquot_set_dqblk -EXPORT_SYMBOL vmlinux 0x11e0ec41 dm_read_arg -EXPORT_SYMBOL vmlinux 0x11e12b99 dev_get_by_napi_id -EXPORT_SYMBOL vmlinux 0x11e30762 chacha_block_generic -EXPORT_SYMBOL vmlinux 0x11e9ce44 mmc_detect_card_removed -EXPORT_SYMBOL vmlinux 0x11ea63ad __mod_lruvec_page_state -EXPORT_SYMBOL vmlinux 0x11edb3f4 sock_set_reuseaddr -EXPORT_SYMBOL vmlinux 0x11f4274a mipi_dsi_detach -EXPORT_SYMBOL vmlinux 0x11f47d8c utf8_strncmp -EXPORT_SYMBOL vmlinux 0x11faeb57 devm_rproc_add -EXPORT_SYMBOL vmlinux 0x12091520 bio_clone_fast -EXPORT_SYMBOL vmlinux 0x120b336a __rb_insert_augmented -EXPORT_SYMBOL vmlinux 0x1216f0d9 inet_reqsk_alloc -EXPORT_SYMBOL vmlinux 0x1220849d fb_set_var -EXPORT_SYMBOL vmlinux 0x1232a53d dns_query -EXPORT_SYMBOL vmlinux 0x123567ba dst_alloc -EXPORT_SYMBOL vmlinux 0x12482aec dquot_load_quota_sb -EXPORT_SYMBOL vmlinux 0x124bad4d kstrtobool -EXPORT_SYMBOL vmlinux 0x127a99fa fb_validate_mode -EXPORT_SYMBOL vmlinux 0x128e85d9 agp_generic_alloc_by_type -EXPORT_SYMBOL vmlinux 0x129523e9 buffer_check_dirty_writeback -EXPORT_SYMBOL vmlinux 0x129c1a72 from_kprojid -EXPORT_SYMBOL vmlinux 0x12cabc89 siphash_2u64 -EXPORT_SYMBOL vmlinux 0x12e50eac param_set_bint -EXPORT_SYMBOL vmlinux 0x12e7e360 fscrypt_decrypt_block_inplace -EXPORT_SYMBOL vmlinux 0x12eaf559 genphy_c37_read_status -EXPORT_SYMBOL vmlinux 0x12f1d219 tcf_exts_terse_dump -EXPORT_SYMBOL vmlinux 0x12f32a7b nf_log_register -EXPORT_SYMBOL vmlinux 0x12f6f69c fb_videomode_to_var -EXPORT_SYMBOL vmlinux 0x12fa1650 ppp_unregister_channel -EXPORT_SYMBOL vmlinux 0x12fc5d47 blk_queue_max_write_zeroes_sectors -EXPORT_SYMBOL vmlinux 0x130afd75 acpi_get_sleep_type_data -EXPORT_SYMBOL vmlinux 0x13110126 request_resource -EXPORT_SYMBOL vmlinux 0x13243d4b wl1251_get_platform_data -EXPORT_SYMBOL vmlinux 0x132d4428 __SCK__tp_func_dma_fence_signaled -EXPORT_SYMBOL vmlinux 0x1344d7e6 acpi_enable_gpe -EXPORT_SYMBOL vmlinux 0x134cdd34 inet_frag_rbtree_purge -EXPORT_SYMBOL vmlinux 0x1361731d md_bitmap_startwrite -EXPORT_SYMBOL vmlinux 0x136d9c39 param_set_ullong -EXPORT_SYMBOL vmlinux 0x1376eaaa skb_copy -EXPORT_SYMBOL vmlinux 0x1378acb1 dma_fence_remove_callback -EXPORT_SYMBOL vmlinux 0x138217e4 dev_get_mac_address -EXPORT_SYMBOL vmlinux 0x1389619c __max_die_per_package -EXPORT_SYMBOL vmlinux 0x139f2189 __kfifo_alloc -EXPORT_SYMBOL vmlinux 0x13c49cc2 _copy_from_user -EXPORT_SYMBOL vmlinux 0x13d0adf7 __kfifo_out -EXPORT_SYMBOL vmlinux 0x13e688db sk_stream_kill_queues -EXPORT_SYMBOL vmlinux 0x13f42152 system_entering_hibernation -EXPORT_SYMBOL vmlinux 0x141211e1 __neigh_create -EXPORT_SYMBOL vmlinux 0x141271bf acpi_dev_found -EXPORT_SYMBOL vmlinux 0x141a72b2 i2c_clients_command -EXPORT_SYMBOL vmlinux 0x1440fc3b __ip_mc_dec_group -EXPORT_SYMBOL vmlinux 0x145e9980 backlight_device_get_by_name -EXPORT_SYMBOL vmlinux 0x145f43c7 input_unregister_device -EXPORT_SYMBOL vmlinux 0x14605535 dma_fence_context_alloc -EXPORT_SYMBOL vmlinux 0x146289b7 crc16_table -EXPORT_SYMBOL vmlinux 0x146c52a1 pci_resize_resource -EXPORT_SYMBOL vmlinux 0x14786a0b configfs_depend_item -EXPORT_SYMBOL vmlinux 0x149df3d9 seq_putc -EXPORT_SYMBOL vmlinux 0x14aeec37 genlmsg_multicast_allns -EXPORT_SYMBOL vmlinux 0x14afb118 ww_mutex_lock_interruptible -EXPORT_SYMBOL vmlinux 0x14b24c2d blk_mq_tagset_busy_iter -EXPORT_SYMBOL vmlinux 0x14bb0378 super_setup_bdi_name -EXPORT_SYMBOL vmlinux 0x14c67e3e tcp_tx_delay_enabled -EXPORT_SYMBOL vmlinux 0x14ced76e nla_reserve_nohdr -EXPORT_SYMBOL vmlinux 0x14e800a0 jbd2_journal_stop -EXPORT_SYMBOL vmlinux 0x150085c0 tcp_seq_next -EXPORT_SYMBOL vmlinux 0x1512e0ea ida_destroy -EXPORT_SYMBOL vmlinux 0x151f4898 schedule_timeout_uninterruptible -EXPORT_SYMBOL vmlinux 0x1526b301 unix_tot_inflight -EXPORT_SYMBOL vmlinux 0x152c54fb tcp_initialize_rcv_mss -EXPORT_SYMBOL vmlinux 0x1535b4e5 xa_find_after -EXPORT_SYMBOL vmlinux 0x154c6338 dm_kcopyd_client_destroy -EXPORT_SYMBOL vmlinux 0x1551ff47 dquot_commit_info -EXPORT_SYMBOL vmlinux 0x1566ac68 phy_start_cable_test -EXPORT_SYMBOL vmlinux 0x15740e42 jbd2_journal_finish_inode_data_buffers -EXPORT_SYMBOL vmlinux 0x158d9c11 fwnode_graph_parse_endpoint -EXPORT_SYMBOL vmlinux 0x158fdfc0 end_buffer_read_sync -EXPORT_SYMBOL vmlinux 0x159d7dec tcp_sock_set_syncnt -EXPORT_SYMBOL vmlinux 0x15a09f2b bio_copy_data_iter -EXPORT_SYMBOL vmlinux 0x15ba50a6 jiffies -EXPORT_SYMBOL vmlinux 0x15bafe29 unregister_md_cluster_operations -EXPORT_SYMBOL vmlinux 0x15bed7a5 LZ4_decompress_safe_partial -EXPORT_SYMBOL vmlinux 0x15c81a84 __inet6_lookup_established -EXPORT_SYMBOL vmlinux 0x15f90688 slhc_init -EXPORT_SYMBOL vmlinux 0x15fef540 xsk_clear_rx_need_wakeup -EXPORT_SYMBOL vmlinux 0x16286538 iowrite64be_lo_hi -EXPORT_SYMBOL vmlinux 0x162893fd hashlen_string -EXPORT_SYMBOL vmlinux 0x16301b34 wrmsrl_on_cpu -EXPORT_SYMBOL vmlinux 0x16316a10 ZSTD_getFrameContentSize -EXPORT_SYMBOL vmlinux 0x1631e78b udp_lib_get_port -EXPORT_SYMBOL vmlinux 0x1632bc21 kvasprintf_const -EXPORT_SYMBOL vmlinux 0x164ec80b genphy_c37_config_aneg -EXPORT_SYMBOL vmlinux 0x1653371b jbd2_journal_get_undo_access -EXPORT_SYMBOL vmlinux 0x1665a4fc page_pool_alloc_pages -EXPORT_SYMBOL vmlinux 0x1676ba4e __tracepoint_module_get -EXPORT_SYMBOL vmlinux 0x167bab56 twl6040_power -EXPORT_SYMBOL vmlinux 0x167c5967 print_hex_dump -EXPORT_SYMBOL vmlinux 0x167e7f9d __get_user_1 -EXPORT_SYMBOL vmlinux 0x1693e077 write_one_page -EXPORT_SYMBOL vmlinux 0x169938c1 __sysfs_match_string -EXPORT_SYMBOL vmlinux 0x169a06c8 tcp_create_openreq_child -EXPORT_SYMBOL vmlinux 0x169bb970 jbd2_journal_inode_ranged_write -EXPORT_SYMBOL vmlinux 0x16a38872 bioset_integrity_create -EXPORT_SYMBOL vmlinux 0x16b3a86a blk_get_queue -EXPORT_SYMBOL vmlinux 0x16cdc340 acpi_get_table -EXPORT_SYMBOL vmlinux 0x16ce9826 do_wait_intr_irq -EXPORT_SYMBOL vmlinux 0x16e24e3f sg_miter_skip -EXPORT_SYMBOL vmlinux 0x16e297c3 bit_wait -EXPORT_SYMBOL vmlinux 0x16f8b463 iget5_locked -EXPORT_SYMBOL vmlinux 0x170ddf79 acpi_install_notify_handler -EXPORT_SYMBOL vmlinux 0x171291e7 pci_write_config_byte -EXPORT_SYMBOL vmlinux 0x1712df0d tcf_chain_get_by_act -EXPORT_SYMBOL vmlinux 0x1729ae50 __sk_receive_skb -EXPORT_SYMBOL vmlinux 0x173bd2b3 security_cred_getsecid -EXPORT_SYMBOL vmlinux 0x17441034 idr_get_next_ul -EXPORT_SYMBOL vmlinux 0x1752acf5 mntput -EXPORT_SYMBOL vmlinux 0x177a82c3 entry_untrain_ret -EXPORT_SYMBOL vmlinux 0x177b6d08 inet_offloads -EXPORT_SYMBOL vmlinux 0x17804a57 from_kuid_munged -EXPORT_SYMBOL vmlinux 0x1793d6bf md_wait_for_blocked_rdev -EXPORT_SYMBOL vmlinux 0x179d7fb4 i2c_register_driver -EXPORT_SYMBOL vmlinux 0x17b1e9d2 nf_unregister_sockopt -EXPORT_SYMBOL vmlinux 0x17be68ca acpi_clear_event -EXPORT_SYMBOL vmlinux 0x17cb04a7 dev_set_allmulti -EXPORT_SYMBOL vmlinux 0x17dc471b udp6_seq_ops -EXPORT_SYMBOL vmlinux 0x17dd8169 amd_iommu_flush_tlb -EXPORT_SYMBOL vmlinux 0x17f341a0 i8042_lock_chip -EXPORT_SYMBOL vmlinux 0x17f813a9 __SCT__tp_func_kmalloc -EXPORT_SYMBOL vmlinux 0x180460c8 scsi_vpd_lun_id -EXPORT_SYMBOL vmlinux 0x181590ed __sk_dst_check -EXPORT_SYMBOL vmlinux 0x18230dd6 pcix_get_mmrbc -EXPORT_SYMBOL vmlinux 0x1830c687 security_inode_copy_up -EXPORT_SYMBOL vmlinux 0x18345b8e __bitmap_replace -EXPORT_SYMBOL vmlinux 0x18545e04 cdev_add -EXPORT_SYMBOL vmlinux 0x1856f44e agp_generic_remove_memory -EXPORT_SYMBOL vmlinux 0x1872acc2 skb_mac_gso_segment -EXPORT_SYMBOL vmlinux 0x187c604d wireless_send_event -EXPORT_SYMBOL vmlinux 0x188ea314 jiffies_to_timespec64 -EXPORT_SYMBOL vmlinux 0x18a30f6e register_cdrom -EXPORT_SYMBOL vmlinux 0x18a61b84 blk_dump_rq_flags -EXPORT_SYMBOL vmlinux 0x18af785c bio_kmalloc -EXPORT_SYMBOL vmlinux 0x18b62432 sock_common_setsockopt -EXPORT_SYMBOL vmlinux 0x18b72573 register_kmmio_probe -EXPORT_SYMBOL vmlinux 0x18e4b5d9 kernel_write -EXPORT_SYMBOL vmlinux 0x18e60984 __do_once_start -EXPORT_SYMBOL vmlinux 0x18f36532 seq_open_private -EXPORT_SYMBOL vmlinux 0x190fdf5b ipv6_getsockopt -EXPORT_SYMBOL vmlinux 0x19122a44 __tracepoint_dma_fence_enable_signal -EXPORT_SYMBOL vmlinux 0x1913c909 vlan_vid_del -EXPORT_SYMBOL vmlinux 0x191b49de rproc_of_resm_mem_entry_init -EXPORT_SYMBOL vmlinux 0x191df05c security_d_instantiate -EXPORT_SYMBOL vmlinux 0x192ea14f __SCT__tp_func_dma_fence_signaled -EXPORT_SYMBOL vmlinux 0x19386bac cdrom_open -EXPORT_SYMBOL vmlinux 0x1944a87d __cpuhp_setup_state -EXPORT_SYMBOL vmlinux 0x194f18a9 inet_csk_init_xmit_timers -EXPORT_SYMBOL vmlinux 0x19543d5c eth_platform_get_mac_address -EXPORT_SYMBOL vmlinux 0x19567d06 vfio_info_cap_shift -EXPORT_SYMBOL vmlinux 0x197be344 dup_iter -EXPORT_SYMBOL vmlinux 0x197c7997 register_md_personality -EXPORT_SYMBOL vmlinux 0x1981a038 sk_capable -EXPORT_SYMBOL vmlinux 0x1984d421 out_of_line_wait_on_bit -EXPORT_SYMBOL vmlinux 0x198620d7 security_add_mnt_opt -EXPORT_SYMBOL vmlinux 0x19902482 gen_pool_has_addr -EXPORT_SYMBOL vmlinux 0x199ed0cd net_disable_timestamp -EXPORT_SYMBOL vmlinux 0x19a2c13d sk_stream_wait_close -EXPORT_SYMBOL vmlinux 0x19afea10 jbd2_journal_ack_err -EXPORT_SYMBOL vmlinux 0x19bd383b security_secmark_refcount_dec -EXPORT_SYMBOL vmlinux 0x19d07284 netlink_broadcast_filtered -EXPORT_SYMBOL vmlinux 0x19d200ec __SCT__tp_func_kmalloc_node -EXPORT_SYMBOL vmlinux 0x19df99b9 acpi_finish_gpe -EXPORT_SYMBOL vmlinux 0x19e0e077 rt_read_unlock -EXPORT_SYMBOL vmlinux 0x19e98962 inet_listen -EXPORT_SYMBOL vmlinux 0x19f19c00 __blockdev_direct_IO -EXPORT_SYMBOL vmlinux 0x19fd0fbd d_mark_dontcache -EXPORT_SYMBOL vmlinux 0x19fe5f02 icmp_ndo_send -EXPORT_SYMBOL vmlinux 0x1a08a715 vlan_filter_drop_vids -EXPORT_SYMBOL vmlinux 0x1a1bac9c ZSTD_decompressDCtx -EXPORT_SYMBOL vmlinux 0x1a45cb6c acpi_disabled -EXPORT_SYMBOL vmlinux 0x1a63af34 vga_switcheroo_process_delayed_switch -EXPORT_SYMBOL vmlinux 0x1a67b464 input_mt_sync_frame -EXPORT_SYMBOL vmlinux 0x1a70cff7 dev_mc_sync -EXPORT_SYMBOL vmlinux 0x1a79c8e9 __x86_indirect_thunk_r13 -EXPORT_SYMBOL vmlinux 0x1a981d41 tty_hangup -EXPORT_SYMBOL vmlinux 0x1a9a433c prandom_u32_state -EXPORT_SYMBOL vmlinux 0x1a9de91a nf_hook_slow -EXPORT_SYMBOL vmlinux 0x1aa9fba0 vfio_dma_rw -EXPORT_SYMBOL vmlinux 0x1aad8850 netdev_upper_get_next_dev_rcu -EXPORT_SYMBOL vmlinux 0x1ab22679 max8925_reg_read -EXPORT_SYMBOL vmlinux 0x1abbc125 generic_pipe_buf_release -EXPORT_SYMBOL vmlinux 0x1ac050df sock_set_rcvbuf -EXPORT_SYMBOL vmlinux 0x1ac4834f empty_aops -EXPORT_SYMBOL vmlinux 0x1ac5d3cb strcspn -EXPORT_SYMBOL vmlinux 0x1ac8f234 pci_remove_bus -EXPORT_SYMBOL vmlinux 0x1acdeace blk_mq_alloc_request -EXPORT_SYMBOL vmlinux 0x1b015d25 bitmap_parselist -EXPORT_SYMBOL vmlinux 0x1b0e5c58 pm_vt_switch_required -EXPORT_SYMBOL vmlinux 0x1b368896 __wait_on_bit_lock -EXPORT_SYMBOL vmlinux 0x1b45d25e pci_irq_vector -EXPORT_SYMBOL vmlinux 0x1b4aed99 pci_msix_vec_count -EXPORT_SYMBOL vmlinux 0x1b4dbca7 devm_of_find_backlight -EXPORT_SYMBOL vmlinux 0x1b597b7a swake_up_all -EXPORT_SYMBOL vmlinux 0x1b5a247d blk_queue_chunk_sectors -EXPORT_SYMBOL vmlinux 0x1b5b44de scsi_device_get -EXPORT_SYMBOL vmlinux 0x1b6314fd in_aton -EXPORT_SYMBOL vmlinux 0x1b777357 rdmacg_unregister_device -EXPORT_SYMBOL vmlinux 0x1b8b95ad i8042_unlock_chip -EXPORT_SYMBOL vmlinux 0x1ba59527 __kmalloc_node -EXPORT_SYMBOL vmlinux 0x1bb51249 tcp_have_smc -EXPORT_SYMBOL vmlinux 0x1bbc970d agp_bind_memory -EXPORT_SYMBOL vmlinux 0x1bc1cdd5 sockfd_lookup -EXPORT_SYMBOL vmlinux 0x1bc77648 input_mt_report_finger_count -EXPORT_SYMBOL vmlinux 0x1bc9bc3c inode_set_flags -EXPORT_SYMBOL vmlinux 0x1bd59dbe vme_free_consistent -EXPORT_SYMBOL vmlinux 0x1c0029be nd_pfn_validate -EXPORT_SYMBOL vmlinux 0x1c00d315 tcp_mmap -EXPORT_SYMBOL vmlinux 0x1c089372 agp_copy_info -EXPORT_SYMBOL vmlinux 0x1c20e2ff nobh_write_end -EXPORT_SYMBOL vmlinux 0x1c34f105 skb_realloc_headroom -EXPORT_SYMBOL vmlinux 0x1c52cc5c proc_dointvec_minmax -EXPORT_SYMBOL vmlinux 0x1c58427f acpi_remove_notify_handler -EXPORT_SYMBOL vmlinux 0x1c5e3878 icst525_idx2s -EXPORT_SYMBOL vmlinux 0x1c8e808d inet_csk_reqsk_queue_drop -EXPORT_SYMBOL vmlinux 0x1c960f32 fifo_create_dflt -EXPORT_SYMBOL vmlinux 0x1c9ea468 scsi_free_host_dev -EXPORT_SYMBOL vmlinux 0x1ca527fa ioread64be_hi_lo -EXPORT_SYMBOL vmlinux 0x1cb82e8b nf_unregister_net_hooks -EXPORT_SYMBOL vmlinux 0x1cbeaf0d ram_aops -EXPORT_SYMBOL vmlinux 0x1cd8438b pxm_to_node -EXPORT_SYMBOL vmlinux 0x1cdf7fc2 rename_lock -EXPORT_SYMBOL vmlinux 0x1cee4ffc pcim_iounmap -EXPORT_SYMBOL vmlinux 0x1cf6641b sock_no_sendpage_locked -EXPORT_SYMBOL vmlinux 0x1d07e365 memdup_user_nul -EXPORT_SYMBOL vmlinux 0x1d09f108 md_bitmap_update_sb -EXPORT_SYMBOL vmlinux 0x1d12950d dma_fence_enable_sw_signaling -EXPORT_SYMBOL vmlinux 0x1d17f071 input_set_min_poll_interval -EXPORT_SYMBOL vmlinux 0x1d19f77b physical_mask -EXPORT_SYMBOL vmlinux 0x1d1abdf0 acpi_get_physical_device_location -EXPORT_SYMBOL vmlinux 0x1d23c874 inet_release -EXPORT_SYMBOL vmlinux 0x1d24c881 ___ratelimit -EXPORT_SYMBOL vmlinux 0x1d2d6d15 wait_iff_congested -EXPORT_SYMBOL vmlinux 0x1d3a9983 xfrm_input_register_afinfo -EXPORT_SYMBOL vmlinux 0x1d5ad8f5 __put_page -EXPORT_SYMBOL vmlinux 0x1d6d922b tty_register_device -EXPORT_SYMBOL vmlinux 0x1d8ab309 configfs_register_subsystem -EXPORT_SYMBOL vmlinux 0x1d9866e4 pci_scan_single_device -EXPORT_SYMBOL vmlinux 0x1db7706b __copy_user_nocache -EXPORT_SYMBOL vmlinux 0x1dbac65c nf_log_unregister -EXPORT_SYMBOL vmlinux 0x1dc6c93b lookup_user_key -EXPORT_SYMBOL vmlinux 0x1dd4fc0e uart_resume_port -EXPORT_SYMBOL vmlinux 0x1dd571e6 fb_copy_cmap -EXPORT_SYMBOL vmlinux 0x1de4ccb2 get_sg_io_hdr -EXPORT_SYMBOL vmlinux 0x1e0a0c24 mod_timer_pending -EXPORT_SYMBOL vmlinux 0x1e0cd7fe acpi_detach_data -EXPORT_SYMBOL vmlinux 0x1e104055 truncate_pagecache_range -EXPORT_SYMBOL vmlinux 0x1e128aa2 jbd2_journal_dirty_metadata -EXPORT_SYMBOL vmlinux 0x1e1e140e ns_to_timespec64 -EXPORT_SYMBOL vmlinux 0x1e2bba30 __skb_recv_datagram -EXPORT_SYMBOL vmlinux 0x1e2f120a udp_sendmsg -EXPORT_SYMBOL vmlinux 0x1e508a6c seq_escape_mem -EXPORT_SYMBOL vmlinux 0x1e5b2f30 mmc_retune_pause -EXPORT_SYMBOL vmlinux 0x1e65839b __skb_warn_lro_forwarding -EXPORT_SYMBOL vmlinux 0x1e6adaa0 bitmap_print_bitmask_to_buf -EXPORT_SYMBOL vmlinux 0x1e6d26a8 strstr -EXPORT_SYMBOL vmlinux 0x1e7bc02b cros_ec_get_next_event -EXPORT_SYMBOL vmlinux 0x1e82589e device_add_disk -EXPORT_SYMBOL vmlinux 0x1e9e90c6 arp_xmit -EXPORT_SYMBOL vmlinux 0x1e9edfb7 seq_hlist_start_head_rcu -EXPORT_SYMBOL vmlinux 0x1ea1ad0e udp_pre_connect -EXPORT_SYMBOL vmlinux 0x1eaa737e xfrm_trans_queue -EXPORT_SYMBOL vmlinux 0x1eb922a3 IO_APIC_get_PCI_irq_vector -EXPORT_SYMBOL vmlinux 0x1ec045bd dquot_alloc_inode -EXPORT_SYMBOL vmlinux 0x1ec0df1b xfrm6_rcv_tnl -EXPORT_SYMBOL vmlinux 0x1ec31df4 inet_csk_reqsk_queue_drop_and_put -EXPORT_SYMBOL vmlinux 0x1ed4641f register_sysctl_table -EXPORT_SYMBOL vmlinux 0x1ed7eb60 __sg_free_table -EXPORT_SYMBOL vmlinux 0x1edb69d6 ktime_get_raw_ts64 -EXPORT_SYMBOL vmlinux 0x1ee6b5de inc_nlink -EXPORT_SYMBOL vmlinux 0x1f0fd6de vme_lm_request -EXPORT_SYMBOL vmlinux 0x1f199d24 copy_user_generic_string -EXPORT_SYMBOL vmlinux 0x1f2c973f fb_get_buffer_offset -EXPORT_SYMBOL vmlinux 0x1f48fd38 ip_mc_join_group -EXPORT_SYMBOL vmlinux 0x1f4aadcc jbd2_fc_end_commit -EXPORT_SYMBOL vmlinux 0x1f5325b7 phy_start_cable_test_tdr -EXPORT_SYMBOL vmlinux 0x1fbd16da ip_tos2prio -EXPORT_SYMBOL vmlinux 0x1fc0cc7c intel_gtt_insert_sg_entries -EXPORT_SYMBOL vmlinux 0x1fd07fff kdb_grepping_flag -EXPORT_SYMBOL vmlinux 0x1fd63b5d __mod_zone_page_state -EXPORT_SYMBOL vmlinux 0x1fde3c7d tcp_select_initial_window -EXPORT_SYMBOL vmlinux 0x1ff862f7 block_truncate_page -EXPORT_SYMBOL vmlinux 0x20000329 simple_strtoul -EXPORT_SYMBOL vmlinux 0x200b2041 in6addr_any -EXPORT_SYMBOL vmlinux 0x203c2658 inc_node_page_state -EXPORT_SYMBOL vmlinux 0x20463df4 wait_for_completion_killable -EXPORT_SYMBOL vmlinux 0x2047b507 down_write_trylock -EXPORT_SYMBOL vmlinux 0x2048c8fa dquot_transfer -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 0x206763db clk_add_alias -EXPORT_SYMBOL vmlinux 0x206ba1e4 dev_addr_add -EXPORT_SYMBOL vmlinux 0x206fd386 dma_resv_add_shared_fence -EXPORT_SYMBOL vmlinux 0x207f0906 i2c_smbus_read_i2c_block_data -EXPORT_SYMBOL vmlinux 0x20a65fca phy_drivers_register -EXPORT_SYMBOL vmlinux 0x20a789ac irq_set_chip_data -EXPORT_SYMBOL vmlinux 0x20b2e97f migrate_page_copy -EXPORT_SYMBOL vmlinux 0x20ba4f3e rdmsr_on_cpu -EXPORT_SYMBOL vmlinux 0x20bcbe4f blake2s_compress -EXPORT_SYMBOL vmlinux 0x20c383e9 blk_integrity_register -EXPORT_SYMBOL vmlinux 0x20c7feab mipi_dsi_dcs_enter_sleep_mode -EXPORT_SYMBOL vmlinux 0x20cbb30a __percpu_counter_init -EXPORT_SYMBOL vmlinux 0x20d0f519 genphy_read_abilities -EXPORT_SYMBOL vmlinux 0x20d65e40 fb_find_nearest_mode -EXPORT_SYMBOL vmlinux 0x20eadeb6 ip_compute_csum -EXPORT_SYMBOL vmlinux 0x20fff6ec ZSTD_DStreamInSize -EXPORT_SYMBOL vmlinux 0x21059cd7 audit_log_task_context -EXPORT_SYMBOL vmlinux 0x2109cea9 udp_lib_setsockopt -EXPORT_SYMBOL vmlinux 0x210c550a netdev_change_features -EXPORT_SYMBOL vmlinux 0x211130c1 alloc_cpumask_var -EXPORT_SYMBOL vmlinux 0x2121a24c udp_seq_start -EXPORT_SYMBOL vmlinux 0x2122d09d iw_handler_get_thrspy -EXPORT_SYMBOL vmlinux 0x2125d103 tcp_getsockopt -EXPORT_SYMBOL vmlinux 0x21271fd0 copy_user_enhanced_fast_string -EXPORT_SYMBOL vmlinux 0x213a738d memregion_alloc -EXPORT_SYMBOL vmlinux 0x213c044c mipi_dsi_device_register_full -EXPORT_SYMBOL vmlinux 0x213cb17d d_delete -EXPORT_SYMBOL vmlinux 0x213e4965 ps2_is_keyboard_id -EXPORT_SYMBOL vmlinux 0x216b28d2 inet_ioctl -EXPORT_SYMBOL vmlinux 0x2177bd71 acpi_disable_event -EXPORT_SYMBOL vmlinux 0x218e600b pci_add_resource_offset -EXPORT_SYMBOL vmlinux 0x21a73797 mutex_lock -EXPORT_SYMBOL vmlinux 0x21ad34a3 __f_setown -EXPORT_SYMBOL vmlinux 0x21bdb523 errseq_check_and_advance -EXPORT_SYMBOL vmlinux 0x21be37e1 hdmi_avi_infoframe_check -EXPORT_SYMBOL vmlinux 0x21bf0c9a disk_start_io_acct -EXPORT_SYMBOL vmlinux 0x21d42ce9 nla_append -EXPORT_SYMBOL vmlinux 0x21d5b2ab scsi_bios_ptable -EXPORT_SYMBOL vmlinux 0x21d887e8 cdrom_dummy_generic_packet -EXPORT_SYMBOL vmlinux 0x21e13cb3 inet_peer_xrlim_allow -EXPORT_SYMBOL vmlinux 0x21ef374c try_wait_for_completion -EXPORT_SYMBOL vmlinux 0x21f9a678 security_unix_may_send -EXPORT_SYMBOL vmlinux 0x222e7ce2 sysfs_streq -EXPORT_SYMBOL vmlinux 0x2234ca51 acpi_match_platform_list -EXPORT_SYMBOL vmlinux 0x22369d4e mmc_unregister_driver -EXPORT_SYMBOL vmlinux 0x223ada52 inet_dev_addr_type -EXPORT_SYMBOL vmlinux 0x223ee6bb dec_zone_page_state -EXPORT_SYMBOL vmlinux 0x22428281 skb_get_hash_perturb -EXPORT_SYMBOL vmlinux 0x22458943 dma_fence_allocate_private_stub -EXPORT_SYMBOL vmlinux 0x224e79e1 scsi_device_quiesce -EXPORT_SYMBOL vmlinux 0x2258b311 d_obtain_root -EXPORT_SYMBOL vmlinux 0x227641ef vmf_insert_pfn -EXPORT_SYMBOL vmlinux 0x229484cd netdev_stats_to_stats64 -EXPORT_SYMBOL vmlinux 0x229e9806 alloc_pages -EXPORT_SYMBOL vmlinux 0x22b325d5 kd_mksound -EXPORT_SYMBOL vmlinux 0x22bea96f md_unregister_thread -EXPORT_SYMBOL vmlinux 0x22de4931 amd_iommu_register_ga_log_notifier -EXPORT_SYMBOL vmlinux 0x22e1749e blk_queue_dma_alignment -EXPORT_SYMBOL vmlinux 0x230cbc95 dev_driver_string -EXPORT_SYMBOL vmlinux 0x23216abc phy_device_register -EXPORT_SYMBOL vmlinux 0x232adb3d unpin_user_pages_dirty_lock -EXPORT_SYMBOL vmlinux 0x234dbb9f rproc_elf_load_segments -EXPORT_SYMBOL vmlinux 0x235e4693 nf_log_unset -EXPORT_SYMBOL vmlinux 0x2364c85a tasklet_init -EXPORT_SYMBOL vmlinux 0x23714903 pnp_release_card_device -EXPORT_SYMBOL vmlinux 0x23799a86 rproc_da_to_va -EXPORT_SYMBOL vmlinux 0x238b099f mipi_dsi_packet_format_is_short -EXPORT_SYMBOL vmlinux 0x23a7c24d inet_csk_destroy_sock -EXPORT_SYMBOL vmlinux 0x23ab29ae pnp_start_dev -EXPORT_SYMBOL vmlinux 0x23ac7452 __qdisc_calculate_pkt_len -EXPORT_SYMBOL vmlinux 0x23b9d6e2 mangle_path -EXPORT_SYMBOL vmlinux 0x23c36d21 gen_pool_first_fit -EXPORT_SYMBOL vmlinux 0x23cf97db vm_event_states -EXPORT_SYMBOL vmlinux 0x23d42599 user_path_create -EXPORT_SYMBOL vmlinux 0x23d474de get_vm_area -EXPORT_SYMBOL vmlinux 0x23daa989 mipi_dsi_create_packet -EXPORT_SYMBOL vmlinux 0x23dc19ff brioctl_set -EXPORT_SYMBOL vmlinux 0x23dfef34 dma_pool_create -EXPORT_SYMBOL vmlinux 0x23f70d89 __neigh_event_send -EXPORT_SYMBOL vmlinux 0x23f869b0 ndisc_mc_map -EXPORT_SYMBOL vmlinux 0x23fc867c skb_flow_get_icmp_tci -EXPORT_SYMBOL vmlinux 0x23fd3028 vmalloc_node -EXPORT_SYMBOL vmlinux 0x240ad28f md_write_start -EXPORT_SYMBOL vmlinux 0x24176b47 iov_iter_get_pages -EXPORT_SYMBOL vmlinux 0x24212d86 __frontswap_invalidate_page -EXPORT_SYMBOL vmlinux 0x24238ace netdev_has_upper_dev -EXPORT_SYMBOL vmlinux 0x242d2093 jbd2__journal_restart -EXPORT_SYMBOL vmlinux 0x2431c675 scsi_host_busy -EXPORT_SYMBOL vmlinux 0x24403385 tty_register_ldisc -EXPORT_SYMBOL vmlinux 0x244af77b mmc_cqe_recovery -EXPORT_SYMBOL vmlinux 0x2459a4c2 phy_get_internal_delay -EXPORT_SYMBOL vmlinux 0x2459bbcc console_set_on_cmdline -EXPORT_SYMBOL vmlinux 0x246a0270 iov_iter_advance -EXPORT_SYMBOL vmlinux 0x2484adc3 __kfifo_to_user_r -EXPORT_SYMBOL vmlinux 0x24942dce fib_notifier_ops_register -EXPORT_SYMBOL vmlinux 0x24a40e3e vme_dma_list_exec -EXPORT_SYMBOL vmlinux 0x24a60bab skb_append -EXPORT_SYMBOL vmlinux 0x24c1fe32 put_ipc_ns -EXPORT_SYMBOL vmlinux 0x24d273d1 add_timer -EXPORT_SYMBOL vmlinux 0x24d34ae6 sock_setsockopt -EXPORT_SYMBOL vmlinux 0x24ecbd09 proc_create_single_data -EXPORT_SYMBOL vmlinux 0x24f60b5d kernel_param_lock -EXPORT_SYMBOL vmlinux 0x2505bf18 kstrtol_from_user -EXPORT_SYMBOL vmlinux 0x250ff185 xfrm_state_walk -EXPORT_SYMBOL vmlinux 0x25170cf3 mmc_gpio_get_cd -EXPORT_SYMBOL vmlinux 0x254320fc __vfs_setxattr -EXPORT_SYMBOL vmlinux 0x25735a99 xfrm_lookup_route -EXPORT_SYMBOL vmlinux 0x25820c64 fs_overflowuid -EXPORT_SYMBOL vmlinux 0x2587de88 proc_set_size -EXPORT_SYMBOL vmlinux 0x258d2f76 net_dim_get_tx_moderation -EXPORT_SYMBOL vmlinux 0x258f1c6e mmc_can_secure_erase_trim -EXPORT_SYMBOL vmlinux 0x2590ef3d default_llseek -EXPORT_SYMBOL vmlinux 0x25974000 wait_for_completion -EXPORT_SYMBOL vmlinux 0x25ad4ecb sock_no_sendpage -EXPORT_SYMBOL vmlinux 0x25b0d375 input_inject_event -EXPORT_SYMBOL vmlinux 0x25cd61f5 vma_set_file -EXPORT_SYMBOL vmlinux 0x25d0f42d request_firmware_nowait -EXPORT_SYMBOL vmlinux 0x25d343a4 alloc_skb_with_frags -EXPORT_SYMBOL vmlinux 0x25d9bfc0 add_to_pipe -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 0x25f8b180 dcb_getapp -EXPORT_SYMBOL vmlinux 0x260a095a __sg_alloc_table -EXPORT_SYMBOL vmlinux 0x263beb75 ecryptfs_get_versions -EXPORT_SYMBOL vmlinux 0x263bfcbf free_cgroup_ns -EXPORT_SYMBOL vmlinux 0x263c3152 bcmp -EXPORT_SYMBOL vmlinux 0x263ee869 iov_iter_alignment -EXPORT_SYMBOL vmlinux 0x26468ce8 scsi_change_queue_depth -EXPORT_SYMBOL vmlinux 0x264f74b8 devm_devfreq_remove_device -EXPORT_SYMBOL vmlinux 0x26558014 cdrom_release -EXPORT_SYMBOL vmlinux 0x26563bc6 dev_uc_add -EXPORT_SYMBOL vmlinux 0x2688ec10 bitmap_zalloc -EXPORT_SYMBOL vmlinux 0x26897b52 mb_cache_entry_get -EXPORT_SYMBOL vmlinux 0x268a615f genphy_read_status_fixed -EXPORT_SYMBOL vmlinux 0x26cc73c3 complete_and_exit -EXPORT_SYMBOL vmlinux 0x26e298e0 unregister_memory_notifier -EXPORT_SYMBOL vmlinux 0x26e68573 dma_fence_signal_locked -EXPORT_SYMBOL vmlinux 0x26f31afa devfreq_remove_device -EXPORT_SYMBOL vmlinux 0x26f8f0b8 iowrite16be -EXPORT_SYMBOL vmlinux 0x270a1a1b security_path_mkdir -EXPORT_SYMBOL vmlinux 0x270cf88f dump_stack_lvl -EXPORT_SYMBOL vmlinux 0x271cba95 acpi_bus_private_data_handler -EXPORT_SYMBOL vmlinux 0x271cbc6e dev_printk_emit -EXPORT_SYMBOL vmlinux 0x27276b0d twl6040_set_bits -EXPORT_SYMBOL vmlinux 0x272a8933 udp_memory_allocated -EXPORT_SYMBOL vmlinux 0x272dff91 __skb_gso_segment -EXPORT_SYMBOL vmlinux 0x2733eaf7 scsi_dev_info_list_add_keyed -EXPORT_SYMBOL vmlinux 0x27479d14 param_free_charp -EXPORT_SYMBOL vmlinux 0x274e22d9 eth_header_parse_protocol -EXPORT_SYMBOL vmlinux 0x275f3d49 hdmi_vendor_infoframe_check -EXPORT_SYMBOL vmlinux 0x276401cb eth_header -EXPORT_SYMBOL vmlinux 0x2767eac2 vfs_symlink -EXPORT_SYMBOL vmlinux 0x27756bc8 scsi_sanitize_inquiry_string -EXPORT_SYMBOL vmlinux 0x277ad81f has_capability -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 0x2798e19f __traceiter_spi_transfer_stop -EXPORT_SYMBOL vmlinux 0x27a97e31 dev_change_proto_down -EXPORT_SYMBOL vmlinux 0x27b71fd8 close_fd_get_file -EXPORT_SYMBOL vmlinux 0x27bbf221 disable_irq_nosync -EXPORT_SYMBOL vmlinux 0x27cdca93 pci_add_resource -EXPORT_SYMBOL vmlinux 0x27ede8f5 posix_acl_from_xattr -EXPORT_SYMBOL vmlinux 0x27ee9780 mipi_dsi_dcs_exit_sleep_mode -EXPORT_SYMBOL vmlinux 0x281823c5 __kfifo_out_peek -EXPORT_SYMBOL vmlinux 0x281ef716 pci_read_vpd -EXPORT_SYMBOL vmlinux 0x28212abb generic_read_dir -EXPORT_SYMBOL vmlinux 0x2823139e register_md_cluster_operations -EXPORT_SYMBOL vmlinux 0x28257f5c udp_prot -EXPORT_SYMBOL vmlinux 0x28384f76 mipi_dsi_dcs_set_tear_scanline -EXPORT_SYMBOL vmlinux 0x283b7371 __SCK__tp_func_rdpmc -EXPORT_SYMBOL vmlinux 0x284e1000 gen_pool_first_fit_order_align -EXPORT_SYMBOL vmlinux 0x284faa6b __x86_indirect_thunk_r11 -EXPORT_SYMBOL vmlinux 0x285a3027 proc_dointvec_ms_jiffies -EXPORT_SYMBOL vmlinux 0x2875a315 utf32_to_utf8 -EXPORT_SYMBOL vmlinux 0x288bcc8d devm_extcon_unregister_notifier_all -EXPORT_SYMBOL vmlinux 0x28a6c097 d_splice_alias -EXPORT_SYMBOL vmlinux 0x28e09af1 iosf_mbi_available -EXPORT_SYMBOL vmlinux 0x28e631f4 __dev_direct_xmit -EXPORT_SYMBOL vmlinux 0x28f0b536 nf_log_packet -EXPORT_SYMBOL vmlinux 0x28f4da03 dev_change_flags -EXPORT_SYMBOL vmlinux 0x28f94604 __ubsan_handle_builtin_unreachable -EXPORT_SYMBOL vmlinux 0x28f9afe9 finish_swait -EXPORT_SYMBOL vmlinux 0x290e3b71 inet_sk_rx_dst_set -EXPORT_SYMBOL vmlinux 0x29161a66 fb_is_primary_device -EXPORT_SYMBOL vmlinux 0x291ee747 csum_and_copy_to_user -EXPORT_SYMBOL vmlinux 0x2925ad18 consume_skb -EXPORT_SYMBOL vmlinux 0x29332499 __x86_indirect_thunk_rsi -EXPORT_SYMBOL vmlinux 0x2934548f __sock_i_ino -EXPORT_SYMBOL vmlinux 0x29500dba ip_frag_init -EXPORT_SYMBOL vmlinux 0x295b2fb0 bio_copy_data -EXPORT_SYMBOL vmlinux 0x295c01ad iommu_get_dma_cookie -EXPORT_SYMBOL vmlinux 0x29661ae8 tcp_release_cb -EXPORT_SYMBOL vmlinux 0x2985266f set_trace_device -EXPORT_SYMBOL vmlinux 0x2991a84d phy_print_status -EXPORT_SYMBOL vmlinux 0x299e74cd netif_set_real_num_rx_queues -EXPORT_SYMBOL vmlinux 0x29ad8e33 x86_hyper_type -EXPORT_SYMBOL vmlinux 0x29ae89e1 flow_rule_match_enc_control -EXPORT_SYMBOL vmlinux 0x29dae582 qdisc_offload_dump_helper -EXPORT_SYMBOL vmlinux 0x29e1e204 hdmi_audio_infoframe_pack -EXPORT_SYMBOL vmlinux 0x29f73867 md_bitmap_sync_with_cluster -EXPORT_SYMBOL vmlinux 0x2a1a51eb mmc_gpio_set_cd_wake -EXPORT_SYMBOL vmlinux 0x2a303d4d check_signature -EXPORT_SYMBOL vmlinux 0x2a5396c2 ip6tun_encaps -EXPORT_SYMBOL vmlinux 0x2a63d9f4 mini_qdisc_pair_swap -EXPORT_SYMBOL vmlinux 0x2a6fa0d0 __SCT__tp_func_module_get -EXPORT_SYMBOL vmlinux 0x2a8b810c km_policy_notify -EXPORT_SYMBOL vmlinux 0x2a8f61f4 rt_spin_unlock -EXPORT_SYMBOL vmlinux 0x2a928918 slhc_free -EXPORT_SYMBOL vmlinux 0x2a99ff6f dqget -EXPORT_SYMBOL vmlinux 0x2a9a3905 vme_master_get -EXPORT_SYMBOL vmlinux 0x2aa00e26 intel_scu_ipc_dev_update -EXPORT_SYMBOL vmlinux 0x2aa04b78 dev_mc_unsync -EXPORT_SYMBOL vmlinux 0x2aa8596d mipi_dsi_dcs_set_page_address -EXPORT_SYMBOL vmlinux 0x2aa9d65a dev_getbyhwaddr_rcu -EXPORT_SYMBOL vmlinux 0x2aabcdc8 vmalloc_array -EXPORT_SYMBOL vmlinux 0x2ab07e4b jbd2_journal_put_journal_head -EXPORT_SYMBOL vmlinux 0x2ae22217 i2c_del_driver -EXPORT_SYMBOL vmlinux 0x2aebe982 dev_set_mac_address_user -EXPORT_SYMBOL vmlinux 0x2b2efcc3 phy_start -EXPORT_SYMBOL vmlinux 0x2b42754b bprm_change_interp -EXPORT_SYMBOL vmlinux 0x2b4b44e7 tty_unregister_device -EXPORT_SYMBOL vmlinux 0x2b5683ee pci_try_set_mwi -EXPORT_SYMBOL vmlinux 0x2b5f512f inet6_del_offload -EXPORT_SYMBOL vmlinux 0x2b6f0962 __cpu_dying_mask -EXPORT_SYMBOL vmlinux 0x2b9695a2 d_move -EXPORT_SYMBOL vmlinux 0x2b9da7a4 genl_lock -EXPORT_SYMBOL vmlinux 0x2ba14e70 tcf_em_tree_dump -EXPORT_SYMBOL vmlinux 0x2bd541b2 ip6_fraglist_init -EXPORT_SYMBOL vmlinux 0x2bd60ab9 acpi_reset -EXPORT_SYMBOL vmlinux 0x2be68fbf xsk_tx_peek_release_desc_batch -EXPORT_SYMBOL vmlinux 0x2bed0c30 fscrypt_ioctl_get_policy -EXPORT_SYMBOL vmlinux 0x2befaecc truncate_inode_pages_final -EXPORT_SYMBOL vmlinux 0x2c256e1f input_scancode_to_scalar -EXPORT_SYMBOL vmlinux 0x2c341203 mmc_request_done -EXPORT_SYMBOL vmlinux 0x2c450e67 __do_once_slow_done -EXPORT_SYMBOL vmlinux 0x2c5528ec xfrm_lookup_with_ifid -EXPORT_SYMBOL vmlinux 0x2c595ea2 load_nls_default -EXPORT_SYMBOL vmlinux 0x2c66e68d textsearch_destroy -EXPORT_SYMBOL vmlinux 0x2c733ba8 tcf_em_unregister -EXPORT_SYMBOL vmlinux 0x2c970bf4 pcim_enable_device -EXPORT_SYMBOL vmlinux 0x2caf63d1 topology_phys_to_logical_die -EXPORT_SYMBOL vmlinux 0x2cb3f334 uart_write_wakeup -EXPORT_SYMBOL vmlinux 0x2cbc9e2d single_open -EXPORT_SYMBOL vmlinux 0x2cbcd347 kernel_getpeername -EXPORT_SYMBOL vmlinux 0x2ccd059a dim_on_top -EXPORT_SYMBOL vmlinux 0x2ccda259 phy_request_interrupt -EXPORT_SYMBOL vmlinux 0x2cd61b16 blk_mq_run_hw_queue -EXPORT_SYMBOL vmlinux 0x2cdd4fda pci_restore_state -EXPORT_SYMBOL vmlinux 0x2cec5b06 neigh_update -EXPORT_SYMBOL vmlinux 0x2cfe7e79 dst_dev_put -EXPORT_SYMBOL vmlinux 0x2d018661 __SetPageMovable -EXPORT_SYMBOL vmlinux 0x2d11c45a eth_gro_receive -EXPORT_SYMBOL vmlinux 0x2d140a58 genl_unlock -EXPORT_SYMBOL vmlinux 0x2d192c70 sg_zero_buffer -EXPORT_SYMBOL vmlinux 0x2d1f8911 setattr_prepare -EXPORT_SYMBOL vmlinux 0x2d217a17 crypto_sha1_finup -EXPORT_SYMBOL vmlinux 0x2d30596c from_kqid_munged -EXPORT_SYMBOL vmlinux 0x2d3385d3 system_wq -EXPORT_SYMBOL vmlinux 0x2d39b0a7 kstrdup -EXPORT_SYMBOL vmlinux 0x2d432bfe filemap_map_pages -EXPORT_SYMBOL vmlinux 0x2d4c773a hdmi_spd_infoframe_init -EXPORT_SYMBOL vmlinux 0x2d4daef5 find_font -EXPORT_SYMBOL vmlinux 0x2d64d3b9 dev_set_mac_address -EXPORT_SYMBOL vmlinux 0x2d6cafc3 __udp_disconnect -EXPORT_SYMBOL vmlinux 0x2d85a449 mini_qdisc_pair_block_init -EXPORT_SYMBOL vmlinux 0x2d8aec17 dev_activate -EXPORT_SYMBOL vmlinux 0x2d90db10 mipi_dsi_dcs_get_display_brightness_large -EXPORT_SYMBOL vmlinux 0x2d912bca dmi_get_bios_year -EXPORT_SYMBOL vmlinux 0x2d994605 security_inode_copy_up_xattr -EXPORT_SYMBOL vmlinux 0x2d9a9153 flow_rule_match_enc_keyid -EXPORT_SYMBOL vmlinux 0x2d9be7a1 no_seek_end_llseek -EXPORT_SYMBOL vmlinux 0x2da52ae8 vfs_statfs -EXPORT_SYMBOL vmlinux 0x2da61865 _dev_printk -EXPORT_SYMBOL vmlinux 0x2dd16564 arch_register_cpu -EXPORT_SYMBOL vmlinux 0x2dd37313 udp_seq_next -EXPORT_SYMBOL vmlinux 0x2de125c0 page_frag_alloc_align -EXPORT_SYMBOL vmlinux 0x2dee27d4 __pskb_pull_tail -EXPORT_SYMBOL vmlinux 0x2def7f76 rtc_cmos_write -EXPORT_SYMBOL vmlinux 0x2df3a103 bioset_init -EXPORT_SYMBOL vmlinux 0x2df73d41 dma_fence_array_create -EXPORT_SYMBOL vmlinux 0x2e0eeb62 netdev_lower_get_first_private_rcu -EXPORT_SYMBOL vmlinux 0x2e1ca751 clk_put -EXPORT_SYMBOL vmlinux 0x2e1d95f6 write_dirty_buffer -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 0x2e56d2e4 xp_raw_get_dma -EXPORT_SYMBOL vmlinux 0x2e570abd flow_rule_match_enc_ipv6_addrs -EXPORT_SYMBOL vmlinux 0x2e5bf904 pcie_print_link_status -EXPORT_SYMBOL vmlinux 0x2e5fe036 __skb_ext_put -EXPORT_SYMBOL vmlinux 0x2e91da43 tcp_hashinfo -EXPORT_SYMBOL vmlinux 0x2e9c1a41 security_inode_getsecctx -EXPORT_SYMBOL vmlinux 0x2ec6bba0 errseq_set -EXPORT_SYMBOL vmlinux 0x2ed85b7b follow_down -EXPORT_SYMBOL vmlinux 0x2ee4c2b1 hdmi_avi_infoframe_pack_only -EXPORT_SYMBOL vmlinux 0x2eea912c get_random_bytes_arch -EXPORT_SYMBOL vmlinux 0x2f00ae2d do_splice_direct -EXPORT_SYMBOL vmlinux 0x2f03fc4b security_secmark_refcount_inc -EXPORT_SYMBOL vmlinux 0x2f17349c __inode_add_bytes -EXPORT_SYMBOL vmlinux 0x2f191872 inode_needs_sync -EXPORT_SYMBOL vmlinux 0x2f197a80 neigh_seq_next -EXPORT_SYMBOL vmlinux 0x2f1e1311 cdc_parse_cdc_header -EXPORT_SYMBOL vmlinux 0x2f1f5123 serio_rescan -EXPORT_SYMBOL vmlinux 0x2f2e91b2 security_ib_alloc_security -EXPORT_SYMBOL vmlinux 0x2f384db3 acpi_is_video_device -EXPORT_SYMBOL vmlinux 0x2f6a1033 max8998_bulk_write -EXPORT_SYMBOL vmlinux 0x2f7754a8 dma_pool_free -EXPORT_SYMBOL vmlinux 0x2f93707d pcie_get_mps -EXPORT_SYMBOL vmlinux 0x2f96653c ata_std_end_eh -EXPORT_SYMBOL vmlinux 0x2fb38aca generic_pipe_buf_get -EXPORT_SYMBOL vmlinux 0x2fc191b8 pm860x_reg_write -EXPORT_SYMBOL vmlinux 0x2fe252cc unregister_inet6addr_notifier -EXPORT_SYMBOL vmlinux 0x2fec21fe dquot_file_open -EXPORT_SYMBOL vmlinux 0x30049c80 sock_dequeue_err_skb -EXPORT_SYMBOL vmlinux 0x301304c2 __get_user_nocheck_8 -EXPORT_SYMBOL vmlinux 0x3025319e cros_ec_query_all -EXPORT_SYMBOL vmlinux 0x302cfe01 ipv6_mc_check_mld -EXPORT_SYMBOL vmlinux 0x303665fa pcibios_resource_to_bus -EXPORT_SYMBOL vmlinux 0x304ba845 mnt_drop_write_file -EXPORT_SYMBOL vmlinux 0x305274cd devm_mfd_add_devices -EXPORT_SYMBOL vmlinux 0x3052fecd ptp_convert_timestamp -EXPORT_SYMBOL vmlinux 0x305a916c __x86_indirect_thunk_rdi -EXPORT_SYMBOL vmlinux 0x30956d3c simple_nosetlease -EXPORT_SYMBOL vmlinux 0x3096be16 names_cachep -EXPORT_SYMBOL vmlinux 0x309e0cfe mode_strip_sgid -EXPORT_SYMBOL vmlinux 0x309e6da2 vme_bus_error_handler -EXPORT_SYMBOL vmlinux 0x30a10f4c xfrm_policy_byid -EXPORT_SYMBOL vmlinux 0x30a80826 __kfifo_from_user -EXPORT_SYMBOL vmlinux 0x30acfde9 hsiphash_2u32 -EXPORT_SYMBOL vmlinux 0x30c7a9c2 cdrom_mode_sense -EXPORT_SYMBOL vmlinux 0x30ce0115 xen_alloc_unpopulated_pages -EXPORT_SYMBOL vmlinux 0x30d202a2 kernel_getsockname -EXPORT_SYMBOL vmlinux 0x30d79294 tcp_poll -EXPORT_SYMBOL vmlinux 0x30da5345 netdev_set_tc_queue -EXPORT_SYMBOL vmlinux 0x30e74134 tty_termios_copy_hw -EXPORT_SYMBOL vmlinux 0x30eb9611 zerocopy_sg_from_iter -EXPORT_SYMBOL vmlinux 0x30f214f6 serio_unregister_child_port -EXPORT_SYMBOL vmlinux 0x30fdc39e mmc_cqe_request_done -EXPORT_SYMBOL vmlinux 0x3102d70b frontswap_curr_pages -EXPORT_SYMBOL vmlinux 0x3103daa3 __xfrm_policy_check -EXPORT_SYMBOL vmlinux 0x31070745 generic_key_instantiate -EXPORT_SYMBOL vmlinux 0x310ea8b5 sync_inode_metadata -EXPORT_SYMBOL vmlinux 0x3126a9e8 siphash_1u64 -EXPORT_SYMBOL vmlinux 0x31329157 tty_port_raise_dtr_rts -EXPORT_SYMBOL vmlinux 0x314731d4 xfrm_user_policy -EXPORT_SYMBOL vmlinux 0x3150360c end_page_private_2 -EXPORT_SYMBOL vmlinux 0x3151e23c vm_map_pages_zero -EXPORT_SYMBOL vmlinux 0x31549b2a __x86_indirect_thunk_r10 -EXPORT_SYMBOL vmlinux 0x3166890f inet_protos -EXPORT_SYMBOL vmlinux 0x31680913 netdev_port_same_parent_id -EXPORT_SYMBOL vmlinux 0x31932c14 call_netdevice_notifiers -EXPORT_SYMBOL vmlinux 0x31a7e5b1 flow_block_cb_priv -EXPORT_SYMBOL vmlinux 0x31b9195c __local_bh_disable_ip -EXPORT_SYMBOL vmlinux 0x31d02e77 ppp_register_compressor -EXPORT_SYMBOL vmlinux 0x31e034fc sock_queue_rcv_skb -EXPORT_SYMBOL vmlinux 0x31ee8254 dquot_mark_dquot_dirty -EXPORT_SYMBOL vmlinux 0x31f4402e rproc_coredump_add_custom_segment -EXPORT_SYMBOL vmlinux 0x32052090 max8998_update_reg -EXPORT_SYMBOL vmlinux 0x3217ba5e pci_find_next_bus -EXPORT_SYMBOL vmlinux 0x32281af9 xfrm_input -EXPORT_SYMBOL vmlinux 0x32487870 tc_setup_cb_add -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 0x3291b00e xfrm_state_check_expire -EXPORT_SYMBOL vmlinux 0x32c32dbf mdiobus_alloc_size -EXPORT_SYMBOL vmlinux 0x32ce3777 radix_tree_preload -EXPORT_SYMBOL vmlinux 0x32db20a2 dev_addr_init -EXPORT_SYMBOL vmlinux 0x32dcb53d scsi_scan_host -EXPORT_SYMBOL vmlinux 0x32e6f1a0 acpi_video_backlight_string -EXPORT_SYMBOL vmlinux 0x32f0cdb6 param_ops_ulong -EXPORT_SYMBOL vmlinux 0x32f5911f devm_nvmem_cell_put -EXPORT_SYMBOL vmlinux 0x32f79703 xa_erase -EXPORT_SYMBOL vmlinux 0x32fb76ba phy_init_eee -EXPORT_SYMBOL vmlinux 0x32fed0e8 mmc_card_is_blockaddr -EXPORT_SYMBOL vmlinux 0x330adfb1 complete_request_key -EXPORT_SYMBOL vmlinux 0x3317daf1 iunique -EXPORT_SYMBOL vmlinux 0x3324ef3b acpi_set_firmware_waking_vector -EXPORT_SYMBOL vmlinux 0x33353723 security_locked_down -EXPORT_SYMBOL vmlinux 0x3360cbd7 rt_write_unlock -EXPORT_SYMBOL vmlinux 0x336bc18b devm_extcon_register_notifier_all -EXPORT_SYMBOL vmlinux 0x33736a1d __genradix_ptr_alloc -EXPORT_SYMBOL vmlinux 0x33768307 tcf_idr_create_from_flags -EXPORT_SYMBOL vmlinux 0x337d2221 phy_register_fixup_for_uid -EXPORT_SYMBOL vmlinux 0x338a9671 vga_switcheroo_register_client -EXPORT_SYMBOL vmlinux 0x3394f551 vga_put -EXPORT_SYMBOL vmlinux 0x3397ea3f wait_on_page_private_2 -EXPORT_SYMBOL vmlinux 0x33989706 page_mapped -EXPORT_SYMBOL vmlinux 0x339e7a97 __tracepoint_kmalloc_node -EXPORT_SYMBOL vmlinux 0x33b6af3f pci_bus_alloc_resource -EXPORT_SYMBOL vmlinux 0x33b84f74 copy_page -EXPORT_SYMBOL vmlinux 0x33f0768c cpufreq_quick_get_max -EXPORT_SYMBOL vmlinux 0x33f0d48a dma_sync_single_for_device -EXPORT_SYMBOL vmlinux 0x33f9e0fa inode_init_always -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 0x340e6655 skb_copy_and_csum_datagram_msg -EXPORT_SYMBOL vmlinux 0x3423fd49 tty_port_close -EXPORT_SYMBOL vmlinux 0x342665a1 netdev_class_create_file_ns -EXPORT_SYMBOL vmlinux 0x3427baf9 seqno_fence_ops -EXPORT_SYMBOL vmlinux 0x3430a330 skb_set_owner_w -EXPORT_SYMBOL vmlinux 0x3441445f msrs_free -EXPORT_SYMBOL vmlinux 0x34565002 netlink_rcv_skb -EXPORT_SYMBOL vmlinux 0x3470fa5f xfrm_unregister_type_offload -EXPORT_SYMBOL vmlinux 0x3475a6c6 touch_buffer -EXPORT_SYMBOL vmlinux 0x347779b3 udp_gro_complete -EXPORT_SYMBOL vmlinux 0x347c45c9 register_filesystem -EXPORT_SYMBOL vmlinux 0x347d39e7 input_get_poll_interval -EXPORT_SYMBOL vmlinux 0x348605dd bio_integrity_clone -EXPORT_SYMBOL vmlinux 0x3488451a rt_write_trylock -EXPORT_SYMBOL vmlinux 0x3489859f acpi_enter_sleep_state_s4bios -EXPORT_SYMBOL vmlinux 0x34963ae0 deactivate_locked_super -EXPORT_SYMBOL vmlinux 0x349cba85 strchr -EXPORT_SYMBOL vmlinux 0x34a121a5 devm_ioport_unmap -EXPORT_SYMBOL vmlinux 0x34a1f7e3 acpi_processor_get_psd -EXPORT_SYMBOL vmlinux 0x34a5780d xfrm_dev_state_flush -EXPORT_SYMBOL vmlinux 0x34b29ef0 qdisc_hash_add -EXPORT_SYMBOL vmlinux 0x34b99f0e thermal_zone_device_critical -EXPORT_SYMBOL vmlinux 0x34c34a34 inode_add_bytes -EXPORT_SYMBOL vmlinux 0x34c7cdbc lookup_bdev -EXPORT_SYMBOL vmlinux 0x34db050b _raw_spin_lock_irqsave -EXPORT_SYMBOL vmlinux 0x34f2e6f6 handle_edge_irq -EXPORT_SYMBOL vmlinux 0x34f3484e security_tun_dev_attach_queue -EXPORT_SYMBOL vmlinux 0x34f89363 acpi_terminate_debugger -EXPORT_SYMBOL vmlinux 0x3517383e register_reboot_notifier -EXPORT_SYMBOL vmlinux 0x351c5ccd ipv4_specific -EXPORT_SYMBOL vmlinux 0x3539f11b match_strlcpy -EXPORT_SYMBOL vmlinux 0x354b4a1e acpi_ut_trace -EXPORT_SYMBOL vmlinux 0x356461c8 rtc_time64_to_tm -EXPORT_SYMBOL vmlinux 0x35677310 proc_create_seq_private -EXPORT_SYMBOL vmlinux 0x356a6778 find_inode_nowait -EXPORT_SYMBOL vmlinux 0x356cf183 do_SAK -EXPORT_SYMBOL vmlinux 0x357e40c2 set_pages_array_uc -EXPORT_SYMBOL vmlinux 0x35846453 unregister_tcf_proto_ops -EXPORT_SYMBOL vmlinux 0x358fa58f ptp_clock_unregister -EXPORT_SYMBOL vmlinux 0x359f17b8 inet_del_offload -EXPORT_SYMBOL vmlinux 0x35a227fe md_bitmap_unplug -EXPORT_SYMBOL vmlinux 0x35a26119 update_devfreq -EXPORT_SYMBOL vmlinux 0x35a88f28 zlib_inflateInit2 -EXPORT_SYMBOL vmlinux 0x35ad4feb fwnode_mdiobus_register_phy -EXPORT_SYMBOL vmlinux 0x35b47de7 vfs_rename -EXPORT_SYMBOL vmlinux 0x35d1711f ilookup5_nowait -EXPORT_SYMBOL vmlinux 0x35dd0719 end_buffer_write_sync -EXPORT_SYMBOL vmlinux 0x3607cd9f request_key_tag -EXPORT_SYMBOL vmlinux 0x360b1afe probe_irq_mask -EXPORT_SYMBOL vmlinux 0x3625ce14 scsi_is_target_device -EXPORT_SYMBOL vmlinux 0x36283f3b md_write_inc -EXPORT_SYMBOL vmlinux 0x363f53f5 skb_vlan_pop -EXPORT_SYMBOL vmlinux 0x364192ec mmc_card_alternative_gpt_sector -EXPORT_SYMBOL vmlinux 0x365acda7 set_normalized_timespec64 -EXPORT_SYMBOL vmlinux 0x365e7911 kstrdup_const -EXPORT_SYMBOL vmlinux 0x36827e4a fwnode_mdio_find_device -EXPORT_SYMBOL vmlinux 0x3685ff3b xfrm6_protocol_register -EXPORT_SYMBOL vmlinux 0x368e59d1 mdio_device_create -EXPORT_SYMBOL vmlinux 0x36b00216 pci_disable_link_state -EXPORT_SYMBOL vmlinux 0x36b6ebbf down_killable -EXPORT_SYMBOL vmlinux 0x36b990a1 rtc_lock -EXPORT_SYMBOL vmlinux 0x36bac544 iw_handler_set_spy -EXPORT_SYMBOL vmlinux 0x36bf775e i2c_smbus_read_byte_data -EXPORT_SYMBOL vmlinux 0x37050101 __scsi_iterate_devices -EXPORT_SYMBOL vmlinux 0x3709d243 kmem_cache_alloc_node_trace -EXPORT_SYMBOL vmlinux 0x370c5762 vme_master_request -EXPORT_SYMBOL vmlinux 0x37131929 debugfs_create_automount -EXPORT_SYMBOL vmlinux 0x371bcaab pci_iounmap -EXPORT_SYMBOL vmlinux 0x372030e0 iommu_get_msi_cookie -EXPORT_SYMBOL vmlinux 0x373678c0 blk_pre_runtime_suspend -EXPORT_SYMBOL vmlinux 0x3737d9a9 ZSTD_DStreamWorkspaceBound -EXPORT_SYMBOL vmlinux 0x3744cf36 vmalloc_to_pfn -EXPORT_SYMBOL vmlinux 0x3755f990 gf128mul_init_64k_bbe -EXPORT_SYMBOL vmlinux 0x375e26a6 netif_receive_skb_core -EXPORT_SYMBOL vmlinux 0x375f57f8 _dev_crit -EXPORT_SYMBOL vmlinux 0x37746fde ZSTD_initDStream -EXPORT_SYMBOL vmlinux 0x37781ea8 ip6_dst_check -EXPORT_SYMBOL vmlinux 0x377d8004 acpi_error -EXPORT_SYMBOL vmlinux 0x37836ddc lru_cache_add -EXPORT_SYMBOL vmlinux 0x378d8b28 dma_async_tx_descriptor_init -EXPORT_SYMBOL vmlinux 0x379c5066 make_kprojid -EXPORT_SYMBOL vmlinux 0x379d9c92 nlmsg_notify -EXPORT_SYMBOL vmlinux 0x37b8b39e screen_info -EXPORT_SYMBOL vmlinux 0x37befc70 jiffies_to_msecs -EXPORT_SYMBOL vmlinux 0x37c6a8c1 vif_device_init -EXPORT_SYMBOL vmlinux 0x37cb54d3 rproc_vq_interrupt -EXPORT_SYMBOL vmlinux 0x37cbecfd mdiobus_read_nested -EXPORT_SYMBOL vmlinux 0x37d6a6c9 insert_inode_locked4 -EXPORT_SYMBOL vmlinux 0x37db8f19 dmi_get_date -EXPORT_SYMBOL vmlinux 0x3801904b fifo_set_limit -EXPORT_SYMBOL vmlinux 0x381a798a setup_max_cpus -EXPORT_SYMBOL vmlinux 0x3823fdf2 nf_getsockopt -EXPORT_SYMBOL vmlinux 0x3830c04f genphy_handle_interrupt_no_ack -EXPORT_SYMBOL vmlinux 0x3854774b kstrtoll -EXPORT_SYMBOL vmlinux 0x385b30f2 xfrm_unregister_km -EXPORT_SYMBOL vmlinux 0x385b7364 lockref_put_return -EXPORT_SYMBOL vmlinux 0x3875c8ab tcf_em_register -EXPORT_SYMBOL vmlinux 0x38869d88 kstat -EXPORT_SYMBOL vmlinux 0x3891ffc8 ecryptfs_fill_auth_tok -EXPORT_SYMBOL vmlinux 0x389617b0 LZ4_decompress_fast_continue -EXPORT_SYMBOL vmlinux 0x38a4e7f9 finish_no_open -EXPORT_SYMBOL vmlinux 0x38a71b7e pci_free_resource_list -EXPORT_SYMBOL vmlinux 0x38a75261 param_get_ulong -EXPORT_SYMBOL vmlinux 0x38a9f7c5 in6addr_loopback -EXPORT_SYMBOL vmlinux 0x38adf620 stream_open -EXPORT_SYMBOL vmlinux 0x38b88d70 ip_options_rcv_srr -EXPORT_SYMBOL vmlinux 0x38c36dff iterate_supers_type -EXPORT_SYMBOL vmlinux 0x38d18afb pci_stop_and_remove_bus_device -EXPORT_SYMBOL vmlinux 0x38eaf61e __dquot_free_space -EXPORT_SYMBOL vmlinux 0x38f48af7 put_user_ifreq -EXPORT_SYMBOL vmlinux 0x3904d895 qdisc_watchdog_init_clockid -EXPORT_SYMBOL vmlinux 0x39081193 __max_logical_packages -EXPORT_SYMBOL vmlinux 0x392b1fea wait_for_completion_io -EXPORT_SYMBOL vmlinux 0x3939f8f0 rfkill_pause_polling -EXPORT_SYMBOL vmlinux 0x39458f86 rproc_add -EXPORT_SYMBOL vmlinux 0x39461d6a in_egroup_p -EXPORT_SYMBOL vmlinux 0x39464581 param_set_int -EXPORT_SYMBOL vmlinux 0x394a1e11 phy_sfp_attach -EXPORT_SYMBOL vmlinux 0x394d5a66 send_sig_info -EXPORT_SYMBOL vmlinux 0x3950060e regset_get -EXPORT_SYMBOL vmlinux 0x3955fcf6 __kfifo_in_r -EXPORT_SYMBOL vmlinux 0x39568f0f xfrm_state_lookup_byaddr -EXPORT_SYMBOL vmlinux 0x39573884 rps_may_expire_flow -EXPORT_SYMBOL vmlinux 0x396689a1 dev_loopback_xmit -EXPORT_SYMBOL vmlinux 0x397a7677 input_allocate_device -EXPORT_SYMBOL vmlinux 0x39991865 icmp_global_allow -EXPORT_SYMBOL vmlinux 0x399ad043 __kfifo_dma_out_finish_r -EXPORT_SYMBOL vmlinux 0x39a3e731 md_set_array_sectors -EXPORT_SYMBOL vmlinux 0x39a609fb kobject_add -EXPORT_SYMBOL vmlinux 0x39b52d19 __bitmap_and -EXPORT_SYMBOL vmlinux 0x39bce3a7 tcp_prot -EXPORT_SYMBOL vmlinux 0x39c011a6 skb_copy_expand -EXPORT_SYMBOL vmlinux 0x39e3c030 do_trace_read_msr -EXPORT_SYMBOL vmlinux 0x39ef9e05 pagevec_lookup_range -EXPORT_SYMBOL vmlinux 0x3a08475f platform_thermal_notify -EXPORT_SYMBOL vmlinux 0x3a099605 __get_user_nocheck_4 -EXPORT_SYMBOL vmlinux 0x3a13f54a sgl_alloc -EXPORT_SYMBOL vmlinux 0x3a16395b backlight_device_get_by_type -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 0x3a3520c1 dev_close -EXPORT_SYMBOL vmlinux 0x3a448c37 udp_gro_receive -EXPORT_SYMBOL vmlinux 0x3a4f9d28 rng_is_initialized -EXPORT_SYMBOL vmlinux 0x3a624139 try_to_writeback_inodes_sb -EXPORT_SYMBOL vmlinux 0x3aa2c6be pci_free_irq_vectors -EXPORT_SYMBOL vmlinux 0x3ab48b54 tcp_gro_complete -EXPORT_SYMBOL vmlinux 0x3ab7b1cc scsi_set_sense_field_pointer -EXPORT_SYMBOL vmlinux 0x3aca1ad5 dev_mc_del_global -EXPORT_SYMBOL vmlinux 0x3ad7a5d5 acpi_evaluate_reference -EXPORT_SYMBOL vmlinux 0x3ada9e06 acpi_check_region -EXPORT_SYMBOL vmlinux 0x3adec90d poll_initwait -EXPORT_SYMBOL vmlinux 0x3ae79692 security_sctp_sk_clone -EXPORT_SYMBOL vmlinux 0x3ae8f6c4 kobject_set_name -EXPORT_SYMBOL vmlinux 0x3aedf59b sock_no_listen -EXPORT_SYMBOL vmlinux 0x3aefb83f vlan_for_each -EXPORT_SYMBOL vmlinux 0x3af9d96d padata_free_shell -EXPORT_SYMBOL vmlinux 0x3aff3200 acpi_evaluate_object_typed -EXPORT_SYMBOL vmlinux 0x3b029f48 acpi_install_fixed_event_handler -EXPORT_SYMBOL vmlinux 0x3b321462 LZ4_setStreamDecode -EXPORT_SYMBOL vmlinux 0x3b361b05 gnet_stats_start_copy -EXPORT_SYMBOL vmlinux 0x3b36e1b2 blk_mq_queue_stopped -EXPORT_SYMBOL vmlinux 0x3b3bfd46 neigh_table_init -EXPORT_SYMBOL vmlinux 0x3b4576d7 da903x_query_status -EXPORT_SYMBOL vmlinux 0x3b540713 __wait_on_bit -EXPORT_SYMBOL vmlinux 0x3b54e06e eisa_driver_unregister -EXPORT_SYMBOL vmlinux 0x3b644591 __bitmap_shift_left -EXPORT_SYMBOL vmlinux 0x3b689657 __traceiter_spi_transfer_start -EXPORT_SYMBOL vmlinux 0x3b6c41ea kstrtouint -EXPORT_SYMBOL vmlinux 0x3b72f08d preempt_schedule_notrace_thunk -EXPORT_SYMBOL vmlinux 0x3b83610f cpu_sibling_map -EXPORT_SYMBOL vmlinux 0x3b9144c9 acpi_get_current_resources -EXPORT_SYMBOL vmlinux 0x3ba4cf4d xfrm_policy_delete -EXPORT_SYMBOL vmlinux 0x3baae829 seq_bprintf -EXPORT_SYMBOL vmlinux 0x3bae7f06 xa_set_mark -EXPORT_SYMBOL vmlinux 0x3bc17c66 xp_raw_get_data -EXPORT_SYMBOL vmlinux 0x3bcc1803 clear_page_dirty_for_io -EXPORT_SYMBOL vmlinux 0x3bd06d7c register_mii_timestamper -EXPORT_SYMBOL vmlinux 0x3bde3f59 __devm_request_region -EXPORT_SYMBOL vmlinux 0x3be2ec54 cad_pid -EXPORT_SYMBOL vmlinux 0x3be7643e security_xfrm_policy_free -EXPORT_SYMBOL vmlinux 0x3be8b178 inode_owner_or_capable -EXPORT_SYMBOL vmlinux 0x3bf03994 tcp_v4_conn_request -EXPORT_SYMBOL vmlinux 0x3bf0b3ac sg_miter_stop -EXPORT_SYMBOL vmlinux 0x3bf54dfd scsi_host_get -EXPORT_SYMBOL vmlinux 0x3bf698f7 ip6_route_me_harder -EXPORT_SYMBOL vmlinux 0x3c17164f downgrade_write -EXPORT_SYMBOL vmlinux 0x3c185c61 page_put_link -EXPORT_SYMBOL vmlinux 0x3c1ff70d netlink_ack -EXPORT_SYMBOL vmlinux 0x3c208019 udplite_table -EXPORT_SYMBOL vmlinux 0x3c3fce39 __local_bh_enable_ip -EXPORT_SYMBOL vmlinux 0x3c3fd11d flow_rule_match_vlan -EXPORT_SYMBOL vmlinux 0x3c3ff9fd sprintf -EXPORT_SYMBOL vmlinux 0x3c427f67 cpu_die_map -EXPORT_SYMBOL vmlinux 0x3c8e8ae8 sock_wmalloc -EXPORT_SYMBOL vmlinux 0x3cbbcec0 prepare_to_wait_event -EXPORT_SYMBOL vmlinux 0x3cdc38f9 generic_delete_inode -EXPORT_SYMBOL vmlinux 0x3ce4ca6f disable_irq -EXPORT_SYMBOL vmlinux 0x3ce87539 skb_dequeue_tail -EXPORT_SYMBOL vmlinux 0x3ced0c5f tcp_md5_do_del -EXPORT_SYMBOL vmlinux 0x3cf23a54 jbd2_journal_lock_updates -EXPORT_SYMBOL vmlinux 0x3d041a98 block_is_partially_uptodate -EXPORT_SYMBOL vmlinux 0x3d19cb0d pci_release_resource -EXPORT_SYMBOL vmlinux 0x3d2007e5 fd_install -EXPORT_SYMBOL vmlinux 0x3d23b1f1 netif_carrier_on -EXPORT_SYMBOL vmlinux 0x3d3077e7 param_ops_bool -EXPORT_SYMBOL vmlinux 0x3d376e59 dma_sync_wait -EXPORT_SYMBOL vmlinux 0x3d3aaf3c sg_alloc_append_table_from_pages -EXPORT_SYMBOL vmlinux 0x3d4726b1 sync_blockdev -EXPORT_SYMBOL vmlinux 0x3d484499 input_alloc_absinfo -EXPORT_SYMBOL vmlinux 0x3d56e7b3 utf8_unload -EXPORT_SYMBOL vmlinux 0x3d59eb65 keyring_search -EXPORT_SYMBOL vmlinux 0x3d6c243b scsi_set_medium_removal -EXPORT_SYMBOL vmlinux 0x3d85413e ps2_drain -EXPORT_SYMBOL vmlinux 0x3d8dcee7 phy_attach -EXPORT_SYMBOL vmlinux 0x3d95879f mmput_async -EXPORT_SYMBOL vmlinux 0x3da171f9 pci_mem_start -EXPORT_SYMBOL vmlinux 0x3dab780f unix_attach_fds -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 0x3dbf4ab9 netdev_adjacent_change_prepare -EXPORT_SYMBOL vmlinux 0x3dc619d3 swake_up_locked -EXPORT_SYMBOL vmlinux 0x3dc8de97 file_write_and_wait_range -EXPORT_SYMBOL vmlinux 0x3dcb88a0 irq_set_handler_data -EXPORT_SYMBOL vmlinux 0x3ddc6c04 x86_bios_cpu_apicid -EXPORT_SYMBOL vmlinux 0x3dfb86b9 resource_list_create_entry -EXPORT_SYMBOL vmlinux 0x3dfc897c seq_hlist_start_head -EXPORT_SYMBOL vmlinux 0x3e044c71 tcp_filter -EXPORT_SYMBOL vmlinux 0x3e10ad94 mdiobus_setup_mdiodev_from_board_info -EXPORT_SYMBOL vmlinux 0x3e18b112 input_reset_device -EXPORT_SYMBOL vmlinux 0x3e191a59 __alloc_skb -EXPORT_SYMBOL vmlinux 0x3e3bad0a __tasklet_hi_schedule -EXPORT_SYMBOL vmlinux 0x3e797038 mutex_trylock -EXPORT_SYMBOL vmlinux 0x3ec72d38 netdev_lower_get_next -EXPORT_SYMBOL vmlinux 0x3eda70a4 netdev_name_node_alt_destroy -EXPORT_SYMBOL vmlinux 0x3edd1a72 fget -EXPORT_SYMBOL vmlinux 0x3ee8e685 __netlink_ns_capable -EXPORT_SYMBOL vmlinux 0x3eef5c32 input_close_device -EXPORT_SYMBOL vmlinux 0x3ef1adeb input_set_capability -EXPORT_SYMBOL vmlinux 0x3efd72c1 d_path -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 0x3f527ee6 skb_checksum -EXPORT_SYMBOL vmlinux 0x3f5dcfdf follow_pfn -EXPORT_SYMBOL vmlinux 0x3f72199f proc_mkdir_mode -EXPORT_SYMBOL vmlinux 0x3f89071b security_ib_pkey_access -EXPORT_SYMBOL vmlinux 0x3fa8d6d6 sock_no_connect -EXPORT_SYMBOL vmlinux 0x3fb76ace udp6_csum_init -EXPORT_SYMBOL vmlinux 0x3fbf3c89 vme_slave_set -EXPORT_SYMBOL vmlinux 0x3fc41968 radix_tree_replace_slot -EXPORT_SYMBOL vmlinux 0x3fc75b4b phy_disconnect -EXPORT_SYMBOL vmlinux 0x3fc9e4e6 dev_change_carrier -EXPORT_SYMBOL vmlinux 0x3fcf350f mpage_writepage -EXPORT_SYMBOL vmlinux 0x3fd78f3b register_chrdev_region -EXPORT_SYMBOL vmlinux 0x3fdd80a6 create_empty_buffers -EXPORT_SYMBOL vmlinux 0x3fe2ccbe memweight -EXPORT_SYMBOL vmlinux 0x3feaf1f1 lockref_get_not_dead -EXPORT_SYMBOL vmlinux 0x3feffe26 vfs_fileattr_set -EXPORT_SYMBOL vmlinux 0x3ff8ff8e module_put -EXPORT_SYMBOL vmlinux 0x3fffd6f0 pci_bus_add_devices -EXPORT_SYMBOL vmlinux 0x400c61a7 invalidate_bdev -EXPORT_SYMBOL vmlinux 0x4017047c alloc_fddidev -EXPORT_SYMBOL vmlinux 0x404b2b88 lease_modify -EXPORT_SYMBOL vmlinux 0x4055a920 acpi_remove_fixed_event_handler -EXPORT_SYMBOL vmlinux 0x405d06c1 ipv6_dev_mc_dec -EXPORT_SYMBOL vmlinux 0x405e192a sock_no_ioctl -EXPORT_SYMBOL vmlinux 0x4065550b md_cluster_ops -EXPORT_SYMBOL vmlinux 0x406df0cf vfs_get_super -EXPORT_SYMBOL vmlinux 0x407c632b pci_pme_active -EXPORT_SYMBOL vmlinux 0x4088cf7d bio_put -EXPORT_SYMBOL vmlinux 0x40973662 sysctl_udp_mem -EXPORT_SYMBOL vmlinux 0x409873e3 tty_termios_baud_rate -EXPORT_SYMBOL vmlinux 0x40a21e1b backlight_force_update -EXPORT_SYMBOL vmlinux 0x40a433a3 bpf_prog_get_type_path -EXPORT_SYMBOL vmlinux 0x40a84b02 skb_split -EXPORT_SYMBOL vmlinux 0x40a8818d rproc_detach -EXPORT_SYMBOL vmlinux 0x40a9b349 vzalloc -EXPORT_SYMBOL vmlinux 0x40c7247c si_meminfo -EXPORT_SYMBOL vmlinux 0x40d04664 console_trylock -EXPORT_SYMBOL vmlinux 0x40d37d3d blk_mq_run_hw_queues -EXPORT_SYMBOL vmlinux 0x40d59096 unregister_restart_handler -EXPORT_SYMBOL vmlinux 0x40d84a37 ZSTD_getFrameParams -EXPORT_SYMBOL vmlinux 0x40e10844 pci_set_power_state -EXPORT_SYMBOL vmlinux 0x40f37b03 nla_reserve -EXPORT_SYMBOL vmlinux 0x40f76a86 __vcalloc -EXPORT_SYMBOL vmlinux 0x412f893c page_offline_begin -EXPORT_SYMBOL vmlinux 0x4136406e genphy_restart_aneg -EXPORT_SYMBOL vmlinux 0x41482d8b strndup_user -EXPORT_SYMBOL vmlinux 0x41487e3a __netlink_kernel_create -EXPORT_SYMBOL vmlinux 0x415180c6 dev_load -EXPORT_SYMBOL vmlinux 0x4175c70a __inc_zone_page_state -EXPORT_SYMBOL vmlinux 0x41849cb3 sync_file_create -EXPORT_SYMBOL vmlinux 0x4188d439 neigh_rand_reach_time -EXPORT_SYMBOL vmlinux 0x418f4459 pnp_stop_dev -EXPORT_SYMBOL vmlinux 0x419116b1 xfrm_state_insert -EXPORT_SYMBOL vmlinux 0x41ae94cd scsicam_bios_param -EXPORT_SYMBOL vmlinux 0x41bec22d max8925_bulk_read -EXPORT_SYMBOL vmlinux 0x41c58907 scsi_is_sdev_device -EXPORT_SYMBOL vmlinux 0x41cce74d set_pages_array_wc -EXPORT_SYMBOL vmlinux 0x41dbb82c unlock_rename -EXPORT_SYMBOL vmlinux 0x41e921c5 padata_free -EXPORT_SYMBOL vmlinux 0x41ed3709 get_random_bytes -EXPORT_SYMBOL vmlinux 0x42062d92 lockref_put_or_lock -EXPORT_SYMBOL vmlinux 0x420964e3 __nla_parse -EXPORT_SYMBOL vmlinux 0x420b4ac5 flow_rule_match_ports -EXPORT_SYMBOL vmlinux 0x42160169 flush_workqueue -EXPORT_SYMBOL vmlinux 0x42181050 locks_delete_block -EXPORT_SYMBOL vmlinux 0x42269e02 dev_set_promiscuity -EXPORT_SYMBOL vmlinux 0x4230a8d7 sg_nents_for_len -EXPORT_SYMBOL vmlinux 0x424691a6 input_free_device -EXPORT_SYMBOL vmlinux 0x4248ae3c single_task_running -EXPORT_SYMBOL vmlinux 0x424d3620 zlib_inflateIncomp -EXPORT_SYMBOL vmlinux 0x42501ae8 mipi_dsi_generic_read -EXPORT_SYMBOL vmlinux 0x42517798 dm_table_event -EXPORT_SYMBOL vmlinux 0x4254d3d2 pci_disable_msi -EXPORT_SYMBOL vmlinux 0x42578e80 acpi_get_type -EXPORT_SYMBOL vmlinux 0x42595e58 vgacon_text_force -EXPORT_SYMBOL vmlinux 0x4263e17e try_module_get -EXPORT_SYMBOL vmlinux 0x4276699a devm_nvmem_unregister -EXPORT_SYMBOL vmlinux 0x427739f0 in6_dev_finish_destroy -EXPORT_SYMBOL vmlinux 0x427ea7ea simple_dentry_operations -EXPORT_SYMBOL vmlinux 0x4282d4fd dma_mmap_attrs -EXPORT_SYMBOL vmlinux 0x42867a38 security_path_rename -EXPORT_SYMBOL vmlinux 0x4298816e tcp_rtx_synack -EXPORT_SYMBOL vmlinux 0x42b19e57 eth_gro_complete -EXPORT_SYMBOL vmlinux 0x42b445d0 jbd2_journal_blocks_per_page -EXPORT_SYMBOL vmlinux 0x42c32ae1 set_pages_uc -EXPORT_SYMBOL vmlinux 0x42cf7ddc fwnode_get_mac_address -EXPORT_SYMBOL vmlinux 0x42edcaa9 nvdimm_namespace_capacity -EXPORT_SYMBOL vmlinux 0x42f0adf1 input_mt_init_slots -EXPORT_SYMBOL vmlinux 0x42f1b900 fb_pad_unaligned_buffer -EXPORT_SYMBOL vmlinux 0x42f23e86 get_bitmap_from_slot -EXPORT_SYMBOL vmlinux 0x4302d0eb free_pages -EXPORT_SYMBOL vmlinux 0x430c84e9 udp_seq_ops -EXPORT_SYMBOL vmlinux 0x4316a76d idr_alloc_cyclic -EXPORT_SYMBOL vmlinux 0x431ec3a9 __nla_validate -EXPORT_SYMBOL vmlinux 0x4320a509 mdio_driver_register -EXPORT_SYMBOL vmlinux 0x4327f88c find_vma -EXPORT_SYMBOL vmlinux 0x432a9c74 tty_name -EXPORT_SYMBOL vmlinux 0x4336fcca ucs2_as_utf8 -EXPORT_SYMBOL vmlinux 0x433cabfb acpi_decode_pld_buffer -EXPORT_SYMBOL vmlinux 0x43423265 qdisc_offload_graft_helper -EXPORT_SYMBOL vmlinux 0x434d2975 eisa_bus_type -EXPORT_SYMBOL vmlinux 0x434e1855 napi_complete_done -EXPORT_SYMBOL vmlinux 0x4351577a fb_parse_edid -EXPORT_SYMBOL vmlinux 0x437a0d6d __sock_tx_timestamp -EXPORT_SYMBOL vmlinux 0x437dcbdf pcie_ptm_enabled -EXPORT_SYMBOL vmlinux 0x438610bd security_tun_dev_alloc_security -EXPORT_SYMBOL vmlinux 0x43862f28 dev_get_by_index_rcu -EXPORT_SYMBOL vmlinux 0x4387ab6e max8998_write_reg -EXPORT_SYMBOL vmlinux 0x4387bf7d flow_indr_dev_setup_offload -EXPORT_SYMBOL vmlinux 0x43914d7e path_get -EXPORT_SYMBOL vmlinux 0x43b0c9c3 preempt_schedule -EXPORT_SYMBOL vmlinux 0x43c7e2b7 skb_clone_sk -EXPORT_SYMBOL vmlinux 0x43d22fb9 groups_alloc -EXPORT_SYMBOL vmlinux 0x43d2fb59 blk_mq_unique_tag -EXPORT_SYMBOL vmlinux 0x43d4d0b4 i2c_smbus_read_block_data -EXPORT_SYMBOL vmlinux 0x43f9a92c page_pool_alloc_frag -EXPORT_SYMBOL vmlinux 0x43f9ebc8 slhc_remember -EXPORT_SYMBOL vmlinux 0x44065819 security_dentry_init_security -EXPORT_SYMBOL vmlinux 0x44250e4c netpoll_cleanup -EXPORT_SYMBOL vmlinux 0x44290959 pmem_sector_size -EXPORT_SYMBOL vmlinux 0x442c74e4 dmaenginem_async_device_register -EXPORT_SYMBOL vmlinux 0x44414ff2 iosf_mbi_unblock_punit_i2c_access -EXPORT_SYMBOL vmlinux 0x44469a76 crc_ccitt_false_table -EXPORT_SYMBOL vmlinux 0x445eeb68 skb_push -EXPORT_SYMBOL vmlinux 0x4462d35e cpufreq_get_hw_max_freq -EXPORT_SYMBOL vmlinux 0x4467dc9c kill_block_super -EXPORT_SYMBOL vmlinux 0x44680152 vme_unregister_driver -EXPORT_SYMBOL vmlinux 0x446dc1b3 param_get_byte -EXPORT_SYMBOL vmlinux 0x44748317 grab_cache_page_write_begin -EXPORT_SYMBOL vmlinux 0x44850723 get_user_pages_locked -EXPORT_SYMBOL vmlinux 0x44902cff acpi_enable_event -EXPORT_SYMBOL vmlinux 0x4492f50b mmc_calc_max_discard -EXPORT_SYMBOL vmlinux 0x449ad0a7 memcmp -EXPORT_SYMBOL vmlinux 0x44a6e90a irq_cpu_rmap_add -EXPORT_SYMBOL vmlinux 0x44aaf30f tsc_khz -EXPORT_SYMBOL vmlinux 0x44b7cccb phy_reset_after_clk_enable -EXPORT_SYMBOL vmlinux 0x44cd98e1 tcf_classify -EXPORT_SYMBOL vmlinux 0x44e8db32 mod_node_page_state -EXPORT_SYMBOL vmlinux 0x44e9a829 match_token -EXPORT_SYMBOL vmlinux 0x45006cee default_red -EXPORT_SYMBOL vmlinux 0x45081703 ec_get_handle -EXPORT_SYMBOL vmlinux 0x450c78e4 vfs_setpos -EXPORT_SYMBOL vmlinux 0x451a179f kthread_blkcg -EXPORT_SYMBOL vmlinux 0x452ba683 ipv6_ext_hdr -EXPORT_SYMBOL vmlinux 0x453c8403 pci_msi_enabled -EXPORT_SYMBOL vmlinux 0x453e920f dev_graft_qdisc -EXPORT_SYMBOL vmlinux 0x453eee23 con_is_bound -EXPORT_SYMBOL vmlinux 0x45409e25 vfs_fsync_range -EXPORT_SYMBOL vmlinux 0x45412de0 stop_tty -EXPORT_SYMBOL vmlinux 0x4547c9e2 tty_insert_flip_string_flags -EXPORT_SYMBOL vmlinux 0x45535485 xxh32_update -EXPORT_SYMBOL vmlinux 0x456de8c2 nvdimm_namespace_locked -EXPORT_SYMBOL vmlinux 0x4578f528 __kfifo_to_user -EXPORT_SYMBOL vmlinux 0x457e6626 seq_lseek -EXPORT_SYMBOL vmlinux 0x45809819 forget_all_cached_acls -EXPORT_SYMBOL vmlinux 0x45a02f2b jbd2_complete_transaction -EXPORT_SYMBOL vmlinux 0x45b0dc42 iov_iter_pipe -EXPORT_SYMBOL vmlinux 0x45b818b7 flow_rule_match_control -EXPORT_SYMBOL vmlinux 0x45d246da node_to_cpumask_map -EXPORT_SYMBOL vmlinux 0x45e3a761 compat_ptr_ioctl -EXPORT_SYMBOL vmlinux 0x45e8d7b5 native_write_cr0 -EXPORT_SYMBOL vmlinux 0x45f891e8 xa_store_range -EXPORT_SYMBOL vmlinux 0x45fc19d2 retbleed_untrain_ret -EXPORT_SYMBOL vmlinux 0x460f4a34 flow_hash_from_keys -EXPORT_SYMBOL vmlinux 0x4617c1f8 __napi_schedule_irqoff -EXPORT_SYMBOL vmlinux 0x461d16ca sg_nents -EXPORT_SYMBOL vmlinux 0x4629334c __preempt_count -EXPORT_SYMBOL vmlinux 0x4629ed99 jbd2_journal_revoke -EXPORT_SYMBOL vmlinux 0x46336224 sock_alloc_file -EXPORT_SYMBOL vmlinux 0x4636854b reuseport_detach_prog -EXPORT_SYMBOL vmlinux 0x463b5588 make_kgid -EXPORT_SYMBOL vmlinux 0x464b16f1 __netif_schedule -EXPORT_SYMBOL vmlinux 0x465e24ff ucs2_utf8size -EXPORT_SYMBOL vmlinux 0x466b2315 xa_get_order -EXPORT_SYMBOL vmlinux 0x466c14a7 __delay -EXPORT_SYMBOL vmlinux 0x467df16d netdev_rss_key_fill -EXPORT_SYMBOL vmlinux 0x469a6ec7 tcp_parse_md5sig_option -EXPORT_SYMBOL vmlinux 0x46b20aa1 pci_alloc_irq_vectors_affinity -EXPORT_SYMBOL vmlinux 0x46c47fb6 __node_distance -EXPORT_SYMBOL vmlinux 0x46ce6dab tty_unthrottle -EXPORT_SYMBOL vmlinux 0x46cf10eb cachemode2protval -EXPORT_SYMBOL vmlinux 0x46dc55c4 dma_supported -EXPORT_SYMBOL vmlinux 0x46f31b30 module_layout -EXPORT_SYMBOL vmlinux 0x46f3c17b ipv4_dst_check -EXPORT_SYMBOL vmlinux 0x4703ff46 inet6_ioctl -EXPORT_SYMBOL vmlinux 0x4715a909 acpi_load_table -EXPORT_SYMBOL vmlinux 0x472426b6 nd_device_register -EXPORT_SYMBOL vmlinux 0x473bb417 mfd_cell_enable -EXPORT_SYMBOL vmlinux 0x4740b3bc xen_arch_unregister_cpu -EXPORT_SYMBOL vmlinux 0x476262f6 __mdiobus_read -EXPORT_SYMBOL vmlinux 0x4769309c agp_generic_enable -EXPORT_SYMBOL vmlinux 0x47709e42 free_anon_bdev -EXPORT_SYMBOL vmlinux 0x47798e74 phy_ethtool_ksettings_set -EXPORT_SYMBOL vmlinux 0x477aa687 pci_enable_device_mem -EXPORT_SYMBOL vmlinux 0x47a0e319 sock_create_lite -EXPORT_SYMBOL vmlinux 0x47afcd75 netdev_adjacent_change_commit -EXPORT_SYMBOL vmlinux 0x47bb48d1 udp_seq_stop -EXPORT_SYMBOL vmlinux 0x47bbe6aa acpi_notifier_call_chain -EXPORT_SYMBOL vmlinux 0x47c0d2e8 tty_chars_in_buffer -EXPORT_SYMBOL vmlinux 0x47c20f8a refcount_dec_not_one -EXPORT_SYMBOL vmlinux 0x47c65bfc unregister_inet6addr_validator_notifier -EXPORT_SYMBOL vmlinux 0x47cadac7 fasync_helper -EXPORT_SYMBOL vmlinux 0x47cfd825 kstrtouint_from_user -EXPORT_SYMBOL vmlinux 0x47d2ba17 flow_block_cb_free -EXPORT_SYMBOL vmlinux 0x47dc0613 crypto_sha512_update -EXPORT_SYMBOL vmlinux 0x47f71b95 i2c_transfer_buffer_flags -EXPORT_SYMBOL vmlinux 0x47f7db7b pnp_device_attach -EXPORT_SYMBOL vmlinux 0x481814c4 mb_cache_entry_find_next -EXPORT_SYMBOL vmlinux 0x4818e6b2 __SCK__tp_func_read_msr -EXPORT_SYMBOL vmlinux 0x48193639 acpi_lid_open -EXPORT_SYMBOL vmlinux 0x4829cf6b fscrypt_enqueue_decrypt_work -EXPORT_SYMBOL vmlinux 0x48384cda lock_page_memcg -EXPORT_SYMBOL vmlinux 0x4841bdee strnchr -EXPORT_SYMBOL vmlinux 0x4841d9fe __dev_get_by_flags -EXPORT_SYMBOL vmlinux 0x48476bcb intel_gtt_insert_page -EXPORT_SYMBOL vmlinux 0x4849442e netlbl_calipso_ops_register -EXPORT_SYMBOL vmlinux 0x484f6edf ktime_get_coarse_real_ts64 -EXPORT_SYMBOL vmlinux 0x4859b8bb rtc_year_days -EXPORT_SYMBOL vmlinux 0x485ddba3 dma_free_attrs -EXPORT_SYMBOL vmlinux 0x486ac6ef __tty_alloc_driver -EXPORT_SYMBOL vmlinux 0x4871d75d clk_hw_register_clkdev -EXPORT_SYMBOL vmlinux 0x487af859 __tracepoint_mmap_lock_acquire_returned -EXPORT_SYMBOL vmlinux 0x488a7d20 dquot_quota_on_mount -EXPORT_SYMBOL vmlinux 0x4894b94e tcp_v4_do_rcv -EXPORT_SYMBOL vmlinux 0x489f6e0b rdma_dim -EXPORT_SYMBOL vmlinux 0x48a81d7e vfio_group_pin_pages -EXPORT_SYMBOL vmlinux 0x48a91171 string_get_size -EXPORT_SYMBOL vmlinux 0x48abff57 md_check_no_bitmap -EXPORT_SYMBOL vmlinux 0x48b2557c nvdimm_bus_lock -EXPORT_SYMBOL vmlinux 0x48b494bc proc_dointvec_userhz_jiffies -EXPORT_SYMBOL vmlinux 0x48b5e6b8 crypto_sha256_finup -EXPORT_SYMBOL vmlinux 0x48b99a13 vme_lm_free -EXPORT_SYMBOL vmlinux 0x48bf9e12 scsi_host_lookup -EXPORT_SYMBOL vmlinux 0x48c853e4 begin_new_exec -EXPORT_SYMBOL vmlinux 0x48cedc89 sync_file_get_fence -EXPORT_SYMBOL vmlinux 0x48d50e79 amd_iommu_register_ppr_notifier -EXPORT_SYMBOL vmlinux 0x48f34bf0 dev_get_port_parent_id -EXPORT_SYMBOL vmlinux 0x49045426 icmp_err_convert -EXPORT_SYMBOL vmlinux 0x49157dc9 set_nlink -EXPORT_SYMBOL vmlinux 0x494291c7 param_ops_uint -EXPORT_SYMBOL vmlinux 0x494e3393 vm_get_page_prot -EXPORT_SYMBOL vmlinux 0x495e378d __pv_queued_spin_lock_slowpath -EXPORT_SYMBOL vmlinux 0x4962adc5 __xfrm_route_forward -EXPORT_SYMBOL vmlinux 0x49807716 inode_get_bytes -EXPORT_SYMBOL vmlinux 0x498748e6 scsi_host_alloc -EXPORT_SYMBOL vmlinux 0x498e9128 ZSTD_findDecompressedSize -EXPORT_SYMBOL vmlinux 0x499248d8 netdev_notify_peers -EXPORT_SYMBOL vmlinux 0x4992ca59 vfio_unregister_notifier -EXPORT_SYMBOL vmlinux 0x499f0ecf nd_sb_checksum -EXPORT_SYMBOL vmlinux 0x49b163b8 acpi_bus_scan -EXPORT_SYMBOL vmlinux 0x49c4bf1a __hw_addr_sync_dev -EXPORT_SYMBOL vmlinux 0x49dd995b pcix_set_mmrbc -EXPORT_SYMBOL vmlinux 0x49e41a53 input_match_device_id -EXPORT_SYMBOL vmlinux 0x49f0d4c6 acpi_bus_get_status -EXPORT_SYMBOL vmlinux 0x4a039d2d page_pool_put_page -EXPORT_SYMBOL vmlinux 0x4a0926cb dq_data_lock -EXPORT_SYMBOL vmlinux 0x4a0f807a mmc_erase -EXPORT_SYMBOL vmlinux 0x4a1e7c06 sync_filesystem -EXPORT_SYMBOL vmlinux 0x4a228135 dev_mc_init -EXPORT_SYMBOL vmlinux 0x4a3ad70e wait_for_completion_timeout -EXPORT_SYMBOL vmlinux 0x4a453f53 iowrite32 -EXPORT_SYMBOL vmlinux 0x4a4b104c mipi_dsi_dcs_set_tear_off -EXPORT_SYMBOL vmlinux 0x4a6b6078 pci_bus_read_config_dword -EXPORT_SYMBOL vmlinux 0x4a76ccde bdev_dax_pgoff -EXPORT_SYMBOL vmlinux 0x4a85f308 __block_write_full_page -EXPORT_SYMBOL vmlinux 0x4a96a8eb xxh32_digest -EXPORT_SYMBOL vmlinux 0x4aa6cbc8 flow_block_cb_setup_simple -EXPORT_SYMBOL vmlinux 0x4aaaeeef phy_start_aneg -EXPORT_SYMBOL vmlinux 0x4aba8886 set_page_dirty_lock -EXPORT_SYMBOL vmlinux 0x4abb7d10 cpu_rmap_update -EXPORT_SYMBOL vmlinux 0x4ac73e94 clk_hw_get_clk -EXPORT_SYMBOL vmlinux 0x4ad10fbd start_tty -EXPORT_SYMBOL vmlinux 0x4adb6e13 mount_nodev -EXPORT_SYMBOL vmlinux 0x4aea463f crc32_le_shift -EXPORT_SYMBOL vmlinux 0x4af50fc4 __task_pid_nr_ns -EXPORT_SYMBOL vmlinux 0x4af6ddf0 kstrtou16 -EXPORT_SYMBOL vmlinux 0x4afae344 simple_link -EXPORT_SYMBOL vmlinux 0x4afe2ac0 genlmsg_put -EXPORT_SYMBOL vmlinux 0x4aff8968 pagecache_write_begin -EXPORT_SYMBOL vmlinux 0x4b013522 pci_rebar_get_possible_sizes -EXPORT_SYMBOL vmlinux 0x4b085dbf agp3_generic_configure -EXPORT_SYMBOL vmlinux 0x4b0bcbc8 ___pskb_trim -EXPORT_SYMBOL vmlinux 0x4b0fbb75 tcp_time_wait -EXPORT_SYMBOL vmlinux 0x4b4ea070 devm_ioremap_resource -EXPORT_SYMBOL vmlinux 0x4b57a5b9 radix_tree_gang_lookup -EXPORT_SYMBOL vmlinux 0x4b5e3a47 __get_user_nocheck_1 -EXPORT_SYMBOL vmlinux 0x4b5fd49e dm_kcopyd_do_callback -EXPORT_SYMBOL vmlinux 0x4b6df007 acpi_evaluate_reg -EXPORT_SYMBOL vmlinux 0x4b750f53 _raw_spin_unlock_irq -EXPORT_SYMBOL vmlinux 0x4b7918d0 __cgroup_bpf_run_filter_skb -EXPORT_SYMBOL vmlinux 0x4b80cb66 seq_hex_dump -EXPORT_SYMBOL vmlinux 0x4b82efc0 idr_destroy -EXPORT_SYMBOL vmlinux 0x4b93a8ff dm_table_get_size -EXPORT_SYMBOL vmlinux 0x4bbc6f95 acpi_dev_hid_uid_match -EXPORT_SYMBOL vmlinux 0x4bd7cb7b gen_pool_best_fit -EXPORT_SYMBOL vmlinux 0x4bed0409 vga_switcheroo_client_fb_set -EXPORT_SYMBOL vmlinux 0x4bef1c67 empty_name -EXPORT_SYMBOL vmlinux 0x4bfcda98 noop_llseek -EXPORT_SYMBOL vmlinux 0x4c07a7e0 acpi_processor_unregister_performance -EXPORT_SYMBOL vmlinux 0x4c171ae9 xsk_clear_tx_need_wakeup -EXPORT_SYMBOL vmlinux 0x4c185017 devm_ioremap -EXPORT_SYMBOL vmlinux 0x4c236f6f __x86_indirect_thunk_r15 -EXPORT_SYMBOL vmlinux 0x4c34831e neigh_ifdown -EXPORT_SYMBOL vmlinux 0x4c38d4e0 utf8_strncasecmp_folded -EXPORT_SYMBOL vmlinux 0x4c416eb9 LZ4_decompress_fast -EXPORT_SYMBOL vmlinux 0x4c447694 clear_nlink -EXPORT_SYMBOL vmlinux 0x4c553175 __set_page_dirty_no_writeback -EXPORT_SYMBOL vmlinux 0x4c60aebd cdrom_get_media_event -EXPORT_SYMBOL vmlinux 0x4c66ea35 I_BDEV -EXPORT_SYMBOL vmlinux 0x4c685eee fib6_info_hw_flags_set -EXPORT_SYMBOL vmlinux 0x4c68ca5b tcp_add_backlog -EXPORT_SYMBOL vmlinux 0x4c733ce6 reuseport_add_sock -EXPORT_SYMBOL vmlinux 0x4c74f51c input_set_keycode -EXPORT_SYMBOL vmlinux 0x4c887fad lease_get_mtime -EXPORT_SYMBOL vmlinux 0x4c922c68 user_revoke -EXPORT_SYMBOL vmlinux 0x4c944aa5 import_iovec -EXPORT_SYMBOL vmlinux 0x4c9d28b0 phys_base -EXPORT_SYMBOL vmlinux 0x4ca44b06 dentry_path_raw -EXPORT_SYMBOL vmlinux 0x4caf2c97 vlan_uses_dev -EXPORT_SYMBOL vmlinux 0x4cb8676e simple_transaction_read -EXPORT_SYMBOL vmlinux 0x4cba441d iwe_stream_add_event -EXPORT_SYMBOL vmlinux 0x4cc046e9 flow_rule_match_ct -EXPORT_SYMBOL vmlinux 0x4cd5bc5e rdmsr_safe_regs -EXPORT_SYMBOL vmlinux 0x4ce13d70 sb_set_blocksize -EXPORT_SYMBOL vmlinux 0x4ceae601 get_cpu_entry_area -EXPORT_SYMBOL vmlinux 0x4cfe16e7 generic_splice_sendpage -EXPORT_SYMBOL vmlinux 0x4d04b915 rproc_report_crash -EXPORT_SYMBOL vmlinux 0x4d2c7133 acpi_info -EXPORT_SYMBOL vmlinux 0x4d364b0c dput -EXPORT_SYMBOL vmlinux 0x4d540e23 pnp_register_card_driver -EXPORT_SYMBOL vmlinux 0x4d55cfec kobject_del -EXPORT_SYMBOL vmlinux 0x4d869e98 devm_clk_get_optional -EXPORT_SYMBOL vmlinux 0x4d8dfded phy_support_asym_pause -EXPORT_SYMBOL vmlinux 0x4d924f20 memremap -EXPORT_SYMBOL vmlinux 0x4d9b652b rb_erase -EXPORT_SYMBOL vmlinux 0x4db83ade tcf_action_set_ctrlact -EXPORT_SYMBOL vmlinux 0x4db9f16f blkdev_issue_write_same -EXPORT_SYMBOL vmlinux 0x4dcfd55c phy_ethtool_get_stats -EXPORT_SYMBOL vmlinux 0x4dd9af05 jbd2_journal_submit_inode_data_buffers -EXPORT_SYMBOL vmlinux 0x4de87c5c pci_bus_read_config_word -EXPORT_SYMBOL vmlinux 0x4df02057 crc32_be -EXPORT_SYMBOL vmlinux 0x4df2ea84 gen_estimator_read -EXPORT_SYMBOL vmlinux 0x4df55581 md_bitmap_endwrite -EXPORT_SYMBOL vmlinux 0x4dfd71d4 sock_i_ino -EXPORT_SYMBOL vmlinux 0x4e0ce513 submit_bh -EXPORT_SYMBOL vmlinux 0x4e185ff0 eth_commit_mac_addr_change -EXPORT_SYMBOL vmlinux 0x4e18d196 qdisc_create_dflt -EXPORT_SYMBOL vmlinux 0x4e3567f7 match_int -EXPORT_SYMBOL vmlinux 0x4e36cdc4 __ubsan_handle_divrem_overflow -EXPORT_SYMBOL vmlinux 0x4e48631c devm_request_resource -EXPORT_SYMBOL vmlinux 0x4e5368f5 scsi_mode_sense -EXPORT_SYMBOL vmlinux 0x4e547048 __kmalloc_node_track_caller -EXPORT_SYMBOL vmlinux 0x4e68e9be rb_next_postorder -EXPORT_SYMBOL vmlinux 0x4e6e8ea7 fg_console -EXPORT_SYMBOL vmlinux 0x4e70eb4d page_pool_return_skb_page -EXPORT_SYMBOL vmlinux 0x4e8dfb90 xfrm_dst_ifdown -EXPORT_SYMBOL vmlinux 0x4ea25709 dql_reset -EXPORT_SYMBOL vmlinux 0x4ea31a47 security_sb_mnt_opts_compat -EXPORT_SYMBOL vmlinux 0x4eada8f7 security_secid_to_secctx -EXPORT_SYMBOL vmlinux 0x4ec54e78 bitmap_to_arr32 -EXPORT_SYMBOL vmlinux 0x4ecae36c __sync_dirty_buffer -EXPORT_SYMBOL vmlinux 0x4ed1a61b kernel_sendpage_locked -EXPORT_SYMBOL vmlinux 0x4ed3acaf vfs_clone_file_range -EXPORT_SYMBOL vmlinux 0x4ef66106 rdmacg_uncharge -EXPORT_SYMBOL vmlinux 0x4f0b9f47 dquot_get_next_id -EXPORT_SYMBOL vmlinux 0x4f1c10dc skb_find_text -EXPORT_SYMBOL vmlinux 0x4f1cd128 security_tun_dev_create -EXPORT_SYMBOL vmlinux 0x4f21f19f dev_uc_flush -EXPORT_SYMBOL vmlinux 0x4f2250ba rtc_tm_to_time64 -EXPORT_SYMBOL vmlinux 0x4f23c580 inet_bind -EXPORT_SYMBOL vmlinux 0x4f27359d jbd2_fc_wait_bufs -EXPORT_SYMBOL vmlinux 0x4f2db04a pci_clear_mwi -EXPORT_SYMBOL vmlinux 0x4f55166f acpi_set_current_resources -EXPORT_SYMBOL vmlinux 0x4f692a6d blk_mq_tag_to_rq -EXPORT_SYMBOL vmlinux 0x4f711f84 intel_scu_ipc_dev_iowrite8 -EXPORT_SYMBOL vmlinux 0x4f80d38b acpi_match_device_ids -EXPORT_SYMBOL vmlinux 0x4f9f731e remove_conflicting_pci_framebuffers -EXPORT_SYMBOL vmlinux 0x4fdcf3bc inet_get_local_port_range -EXPORT_SYMBOL vmlinux 0x4fddcf1d __mdiobus_register -EXPORT_SYMBOL vmlinux 0x4fdee897 i8042_command -EXPORT_SYMBOL vmlinux 0x4ffa4de6 phy_driver_register -EXPORT_SYMBOL vmlinux 0x50097088 security_tun_dev_free_security -EXPORT_SYMBOL vmlinux 0x5009c71d glob_match -EXPORT_SYMBOL vmlinux 0x500b7f7c tcp_v4_mtu_reduced -EXPORT_SYMBOL vmlinux 0x500ebc89 tcp_disconnect -EXPORT_SYMBOL vmlinux 0x5027bde2 acpi_acquire_mutex -EXPORT_SYMBOL vmlinux 0x503e94e3 __SCK__tp_func_module_get -EXPORT_SYMBOL vmlinux 0x50405902 security_old_inode_init_security -EXPORT_SYMBOL vmlinux 0x5055f829 __dec_node_page_state -EXPORT_SYMBOL vmlinux 0x505d9f31 pci_bus_size_bridges -EXPORT_SYMBOL vmlinux 0x50611180 set_groups -EXPORT_SYMBOL vmlinux 0x50624917 sha1_init -EXPORT_SYMBOL vmlinux 0x506dff1a __genradix_free -EXPORT_SYMBOL vmlinux 0x5071d3fe mipi_dsi_dcs_set_display_brightness_large -EXPORT_SYMBOL vmlinux 0x507eab18 wait_on_page_private_2_killable -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 0x50b04071 seq_path -EXPORT_SYMBOL vmlinux 0x50b1951b xfrm4_protocol_deregister -EXPORT_SYMBOL vmlinux 0x50b5ba5a vfs_parse_fs_param_source -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 0x50c04fa1 cdrom_get_last_written -EXPORT_SYMBOL vmlinux 0x50cf7585 hex2bin -EXPORT_SYMBOL vmlinux 0x50d035c2 vsscanf -EXPORT_SYMBOL vmlinux 0x50d68377 arch_phys_wc_del -EXPORT_SYMBOL vmlinux 0x50f91491 __genradix_ptr -EXPORT_SYMBOL vmlinux 0x51035fdd pci_bus_type -EXPORT_SYMBOL vmlinux 0x5105f112 devm_pci_remap_cfg_resource -EXPORT_SYMBOL vmlinux 0x511eec72 ip6_err_gen_icmpv6_unreach -EXPORT_SYMBOL vmlinux 0x515083bf acpi_release_mutex -EXPORT_SYMBOL vmlinux 0x5163743c iov_iter_single_seg_count -EXPORT_SYMBOL vmlinux 0x51641162 opal_unlock_from_suspend -EXPORT_SYMBOL vmlinux 0x516fc827 legacy_pic -EXPORT_SYMBOL vmlinux 0x517cff39 kmem_cache_destroy -EXPORT_SYMBOL vmlinux 0x518a00ce setup_arg_pages -EXPORT_SYMBOL vmlinux 0x519a21be __free_pages -EXPORT_SYMBOL vmlinux 0x519e20d7 vfs_iocb_iter_write -EXPORT_SYMBOL vmlinux 0x51a90ea5 generic_write_checks -EXPORT_SYMBOL vmlinux 0x51abac2c filemap_fdatawrite_wbc -EXPORT_SYMBOL vmlinux 0x51adbb81 __dev_remove_pack -EXPORT_SYMBOL vmlinux 0x51b9fd9a jbd2_journal_set_features -EXPORT_SYMBOL vmlinux 0x51c4c5a9 sock_pfree -EXPORT_SYMBOL vmlinux 0x51c8c459 vme_bus_num -EXPORT_SYMBOL vmlinux 0x51c9586c rtnl_link_get_net -EXPORT_SYMBOL vmlinux 0x51d08951 hash_and_copy_to_iter -EXPORT_SYMBOL vmlinux 0x51d12d4e acpi_pci_disabled -EXPORT_SYMBOL vmlinux 0x51d1622c jbd2_journal_inode_ranged_wait -EXPORT_SYMBOL vmlinux 0x51dc69ce fb_get_mode -EXPORT_SYMBOL vmlinux 0x51de3b22 generic_block_bmap -EXPORT_SYMBOL vmlinux 0x51ea7930 d_instantiate_new -EXPORT_SYMBOL vmlinux 0x51f298e0 intel_scu_ipc_dev_ioread8 -EXPORT_SYMBOL vmlinux 0x51f86a1a blk_limits_io_opt -EXPORT_SYMBOL vmlinux 0x5230f5d9 vga_switcheroo_register_handler -EXPORT_SYMBOL vmlinux 0x5234ab40 page_pool_destroy -EXPORT_SYMBOL vmlinux 0x523d1a52 netif_rx_any_context -EXPORT_SYMBOL vmlinux 0x5250b838 dump_skip -EXPORT_SYMBOL vmlinux 0x526eef2c hdmi_vendor_infoframe_pack -EXPORT_SYMBOL vmlinux 0x527ad371 pcibios_bus_to_resource -EXPORT_SYMBOL vmlinux 0x527e293c get_unmapped_area -EXPORT_SYMBOL vmlinux 0x52983a4f vme_master_write -EXPORT_SYMBOL vmlinux 0x52bc59ee vfs_parse_fs_string -EXPORT_SYMBOL vmlinux 0x52c70ffe xfrm_policy_destroy -EXPORT_SYMBOL vmlinux 0x52d717da xz_dec_init -EXPORT_SYMBOL vmlinux 0x52dcb85b __traceiter_kmalloc -EXPORT_SYMBOL vmlinux 0x52e1a743 find_get_pages_range_tag -EXPORT_SYMBOL vmlinux 0x52ecbc75 crc_ccitt -EXPORT_SYMBOL vmlinux 0x5304adeb vfs_unlink -EXPORT_SYMBOL vmlinux 0x530b1e98 pm_suspend -EXPORT_SYMBOL vmlinux 0x530d6fef skb_copy_header -EXPORT_SYMBOL vmlinux 0x53126ecc __percpu_counter_sum -EXPORT_SYMBOL vmlinux 0x531b604e __virt_addr_valid -EXPORT_SYMBOL vmlinux 0x532baf0d scsi_get_host_dev -EXPORT_SYMBOL vmlinux 0x532f9c04 sock_i_uid -EXPORT_SYMBOL vmlinux 0x533206b5 sort_r -EXPORT_SYMBOL vmlinux 0x5338184f ethtool_sprintf -EXPORT_SYMBOL vmlinux 0x53416e2d agp_generic_type_to_mask_type -EXPORT_SYMBOL vmlinux 0x5341b2eb __tracepoint_spi_transfer_stop -EXPORT_SYMBOL vmlinux 0x53569707 this_cpu_off -EXPORT_SYMBOL vmlinux 0x535d2f61 __nla_put_64bit -EXPORT_SYMBOL vmlinux 0x535e9301 skb_eth_pop -EXPORT_SYMBOL vmlinux 0x5376116b rproc_add_carveout -EXPORT_SYMBOL vmlinux 0x538b6d1b jbd2_journal_get_write_access -EXPORT_SYMBOL vmlinux 0x53a01baa unlock_buffer -EXPORT_SYMBOL vmlinux 0x53ae4d92 pci_dev_driver -EXPORT_SYMBOL vmlinux 0x53c9d762 __frontswap_test -EXPORT_SYMBOL vmlinux 0x53db6d12 elv_rb_del -EXPORT_SYMBOL vmlinux 0x53dd011c nvdimm_namespace_disk_name -EXPORT_SYMBOL vmlinux 0x53e01a13 __pagevec_release -EXPORT_SYMBOL vmlinux 0x53e1ab06 cred_fscmp -EXPORT_SYMBOL vmlinux 0x53e9712b kmem_cache_free_bulk -EXPORT_SYMBOL vmlinux 0x53f566a7 blkdev_issue_zeroout -EXPORT_SYMBOL vmlinux 0x53f6e417 jbd2_fc_end_commit_fallback -EXPORT_SYMBOL vmlinux 0x53fa36d1 ZSTD_decompressBlock -EXPORT_SYMBOL vmlinux 0x5400245b netdev_state_change -EXPORT_SYMBOL vmlinux 0x54005363 jbd2_journal_begin_ordered_truncate -EXPORT_SYMBOL vmlinux 0x5401b64f __find_get_block -EXPORT_SYMBOL vmlinux 0x54175c5f acpi_read_bit_register -EXPORT_SYMBOL vmlinux 0x543ef284 seq_hlist_start -EXPORT_SYMBOL vmlinux 0x54410cb3 gro_cells_receive -EXPORT_SYMBOL vmlinux 0x5445e174 set_disk_ro -EXPORT_SYMBOL vmlinux 0x544d9a01 netdev_set_num_tc -EXPORT_SYMBOL vmlinux 0x545334a1 param_get_ullong -EXPORT_SYMBOL vmlinux 0x5453c312 serio_unregister_port -EXPORT_SYMBOL vmlinux 0x545675d5 vlan_ioctl_set -EXPORT_SYMBOL vmlinux 0x54586e9c dma_fence_chain_ops -EXPORT_SYMBOL vmlinux 0x545a3c2c udp_skb_destructor -EXPORT_SYMBOL vmlinux 0x545f8e84 uart_match_port -EXPORT_SYMBOL vmlinux 0x5461a34f __tcp_md5_do_lookup -EXPORT_SYMBOL vmlinux 0x54757387 tcp_set_rcvlowat -EXPORT_SYMBOL vmlinux 0x547e3344 acpi_disable -EXPORT_SYMBOL vmlinux 0x54964b84 tcp_mtup_init -EXPORT_SYMBOL vmlinux 0x549d63b8 input_handler_for_each_handle -EXPORT_SYMBOL vmlinux 0x54a315d2 iw_handler_set_thrspy -EXPORT_SYMBOL vmlinux 0x54a674a3 pci_read_config_word -EXPORT_SYMBOL vmlinux 0x54b1fac6 __ubsan_handle_load_invalid_value -EXPORT_SYMBOL vmlinux 0x54b22bb1 __SCT__tp_func_mmap_lock_acquire_returned -EXPORT_SYMBOL vmlinux 0x54b3de23 kernel_sock_shutdown -EXPORT_SYMBOL vmlinux 0x54b9181e security_inet_conn_established -EXPORT_SYMBOL vmlinux 0x54bc523a finish_open -EXPORT_SYMBOL vmlinux 0x54bf1739 mdio_device_reset -EXPORT_SYMBOL vmlinux 0x54cfacd5 __ctzdi2 -EXPORT_SYMBOL vmlinux 0x54e2be1b udp_disconnect -EXPORT_SYMBOL vmlinux 0x54e5f44a scsi_is_host_device -EXPORT_SYMBOL vmlinux 0x54e6fcdd net_enable_timestamp -EXPORT_SYMBOL vmlinux 0x54e90464 vfio_register_notifier -EXPORT_SYMBOL vmlinux 0x54ea6dfe xen_start_flags -EXPORT_SYMBOL vmlinux 0x5506820f key_move -EXPORT_SYMBOL vmlinux 0x5506b8f7 netlbl_bitmap_setbit -EXPORT_SYMBOL vmlinux 0x550f00dc vfs_readlink -EXPORT_SYMBOL vmlinux 0x55167bb4 generic_file_llseek_size -EXPORT_SYMBOL vmlinux 0x551bd071 __rb_erase_color -EXPORT_SYMBOL vmlinux 0x551cde0b md_bitmap_end_sync -EXPORT_SYMBOL vmlinux 0x55385e2e __x86_indirect_thunk_r14 -EXPORT_SYMBOL vmlinux 0x553ecaf5 get_thermal_instance -EXPORT_SYMBOL vmlinux 0x554ae3a4 irq_poll_sched -EXPORT_SYMBOL vmlinux 0x554e858d nd_device_unregister -EXPORT_SYMBOL vmlinux 0x556422b3 ioremap_cache -EXPORT_SYMBOL vmlinux 0x556b5d62 __kfifo_dma_in_prepare_r -EXPORT_SYMBOL vmlinux 0x556cca46 x86_apple_machine -EXPORT_SYMBOL vmlinux 0x557817ae filp_close -EXPORT_SYMBOL vmlinux 0x558b281d aes_expandkey -EXPORT_SYMBOL vmlinux 0x559ff9de vfs_iter_write -EXPORT_SYMBOL vmlinux 0x55c9c642 mipi_dsi_dcs_get_display_brightness -EXPORT_SYMBOL vmlinux 0x55cb2b01 agp_generic_free_by_type -EXPORT_SYMBOL vmlinux 0x55e31703 ethtool_convert_link_mode_to_legacy_u32 -EXPORT_SYMBOL vmlinux 0x55ed161a phy_ethtool_set_wol -EXPORT_SYMBOL vmlinux 0x55f767ff input_set_timestamp -EXPORT_SYMBOL vmlinux 0x55f95e07 ioremap_prot -EXPORT_SYMBOL vmlinux 0x5619fcc7 call_fib_notifiers -EXPORT_SYMBOL vmlinux 0x561ce589 shrink_dcache_sb -EXPORT_SYMBOL vmlinux 0x563174c9 reuseport_attach_prog -EXPORT_SYMBOL vmlinux 0x5631d20d tty_port_free_xmit_buf -EXPORT_SYMBOL vmlinux 0x5635a60a vmalloc_user -EXPORT_SYMBOL vmlinux 0x563a0cf3 tcf_block_netif_keep_dst -EXPORT_SYMBOL vmlinux 0x56470118 __warn_printk -EXPORT_SYMBOL vmlinux 0x564f7608 acpi_reconfig_notifier_register -EXPORT_SYMBOL vmlinux 0x56500938 mmc_register_driver -EXPORT_SYMBOL vmlinux 0x567b7c1e vlan_vid_add -EXPORT_SYMBOL vmlinux 0x56802ae8 rps_cpu_mask -EXPORT_SYMBOL vmlinux 0x56863d6a unregister_quota_format -EXPORT_SYMBOL vmlinux 0x569131d9 nexthop_res_grp_activity_update -EXPORT_SYMBOL vmlinux 0x569baf29 _dev_warn -EXPORT_SYMBOL vmlinux 0x56af5987 qdisc_class_hash_grow -EXPORT_SYMBOL vmlinux 0x56b3873a tcp_rcv_state_process -EXPORT_SYMBOL vmlinux 0x56bb3883 vfs_ioctl -EXPORT_SYMBOL vmlinux 0x56bdbb04 pci_set_master -EXPORT_SYMBOL vmlinux 0x56c8799d scsi_kunmap_atomic_sg -EXPORT_SYMBOL vmlinux 0x56ce8630 blk_rq_map_integrity_sg -EXPORT_SYMBOL vmlinux 0x56d0cbe1 jbd2_journal_force_commit_nested -EXPORT_SYMBOL vmlinux 0x56efc56f mark_buffer_dirty -EXPORT_SYMBOL vmlinux 0x56faf6fc ip6_fraglist_prepare -EXPORT_SYMBOL vmlinux 0x570607e1 simple_transaction_get -EXPORT_SYMBOL vmlinux 0x5716e24d phy_error -EXPORT_SYMBOL vmlinux 0x57212c41 blk_mq_init_allocated_queue -EXPORT_SYMBOL vmlinux 0x572ca26b agp3_generic_tlbflush -EXPORT_SYMBOL vmlinux 0x574bca42 neigh_for_each -EXPORT_SYMBOL vmlinux 0x574bd1d5 netdev_next_lower_dev_rcu -EXPORT_SYMBOL vmlinux 0x574c2e74 bitmap_release_region -EXPORT_SYMBOL vmlinux 0x57575f08 dmaengine_put -EXPORT_SYMBOL vmlinux 0x57878145 input_register_device -EXPORT_SYMBOL vmlinux 0x578a408b ZSTD_initDCtx -EXPORT_SYMBOL vmlinux 0x5792f848 strlcpy -EXPORT_SYMBOL vmlinux 0x57b8b6fa kernel_read -EXPORT_SYMBOL vmlinux 0x57c42d7c pci_wait_for_pending_transaction -EXPORT_SYMBOL vmlinux 0x57ce12e8 register_console -EXPORT_SYMBOL vmlinux 0x57d779f1 gen_pool_first_fit_align -EXPORT_SYMBOL vmlinux 0x57e6d55f netdev_pick_tx -EXPORT_SYMBOL vmlinux 0x57e74174 inet_csk_delete_keepalive_timer -EXPORT_SYMBOL vmlinux 0x57f708f3 netdev_set_sb_channel -EXPORT_SYMBOL vmlinux 0x58004a99 n_tty_ioctl_helper -EXPORT_SYMBOL vmlinux 0x5805137c flow_rule_match_icmp -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 0x583a6752 netpoll_poll_enable -EXPORT_SYMBOL vmlinux 0x583fa3ff configfs_register_group -EXPORT_SYMBOL vmlinux 0x585b6670 kmem_cache_free -EXPORT_SYMBOL vmlinux 0x586cb3ad simple_symlink_inode_operations -EXPORT_SYMBOL vmlinux 0x586e0542 cpu_info -EXPORT_SYMBOL vmlinux 0x587b0954 kvasprintf -EXPORT_SYMBOL vmlinux 0x587f22d7 devmap_managed_key -EXPORT_SYMBOL vmlinux 0x58acf24b mdiobus_register_board_info -EXPORT_SYMBOL vmlinux 0x58b38c3b i2c_smbus_read_byte -EXPORT_SYMBOL vmlinux 0x58b4645c dev_close_many -EXPORT_SYMBOL vmlinux 0x58b73bc7 match_wildcard -EXPORT_SYMBOL vmlinux 0x58b858b5 vfs_path_lookup -EXPORT_SYMBOL vmlinux 0x58d81c35 security_task_getsecid_obj -EXPORT_SYMBOL vmlinux 0x58df4bdc fb_set_cmap -EXPORT_SYMBOL vmlinux 0x58e3306d bit_wait_io -EXPORT_SYMBOL vmlinux 0x58f772cb tcp_peek_len -EXPORT_SYMBOL vmlinux 0x58fee4b9 tcf_idr_search -EXPORT_SYMBOL vmlinux 0x591c4c20 _copy_from_iter_nocache -EXPORT_SYMBOL vmlinux 0x592d1470 mmc_erase_group_aligned -EXPORT_SYMBOL vmlinux 0x5936a87e phy_find_first -EXPORT_SYMBOL vmlinux 0x5937f655 phy_set_sym_pause -EXPORT_SYMBOL vmlinux 0x593ab919 lookup_one_positive_unlocked -EXPORT_SYMBOL vmlinux 0x593edc4b cpu_tlbstate_shared -EXPORT_SYMBOL vmlinux 0x594bf15b ioport_map -EXPORT_SYMBOL vmlinux 0x59518ab8 lock_rename -EXPORT_SYMBOL vmlinux 0x595d27da __cancel_dirty_page -EXPORT_SYMBOL vmlinux 0x595d8002 hdmi_infoframe_pack -EXPORT_SYMBOL vmlinux 0x5966197b devm_alloc_etherdev_mqs -EXPORT_SYMBOL vmlinux 0x597449ac __traceiter_module_get -EXPORT_SYMBOL vmlinux 0x59797934 ps2_handle_response -EXPORT_SYMBOL vmlinux 0x5995c2ac neigh_destroy -EXPORT_SYMBOL vmlinux 0x5995ec14 pci_request_selected_regions -EXPORT_SYMBOL vmlinux 0x599fb41c kvmalloc_node -EXPORT_SYMBOL vmlinux 0x59a2f0ee packing -EXPORT_SYMBOL vmlinux 0x59b4ac3e tcp_memory_allocated -EXPORT_SYMBOL vmlinux 0x59b65b14 ip_setsockopt -EXPORT_SYMBOL vmlinux 0x59f9a647 filemap_invalidate_lock_two -EXPORT_SYMBOL vmlinux 0x59faf9cb xfrm_find_acq_byseq -EXPORT_SYMBOL vmlinux 0x59fb2150 dm_put_device -EXPORT_SYMBOL vmlinux 0x59fe5437 neigh_proc_dointvec -EXPORT_SYMBOL vmlinux 0x5a06544b zap_page_range -EXPORT_SYMBOL vmlinux 0x5a0b73d0 zlib_deflateInit2 -EXPORT_SYMBOL vmlinux 0x5a108464 jbd2_journal_free_reserved -EXPORT_SYMBOL vmlinux 0x5a290250 hdmi_drm_infoframe_pack_only -EXPORT_SYMBOL vmlinux 0x5a2fa8dc xa_store -EXPORT_SYMBOL vmlinux 0x5a365c46 elv_rb_former_request -EXPORT_SYMBOL vmlinux 0x5a3a68de tcp_v4_send_check -EXPORT_SYMBOL vmlinux 0x5a3ee46b pci_ep_cfs_add_epf_group -EXPORT_SYMBOL vmlinux 0x5a44f8cb __crypto_memneq -EXPORT_SYMBOL vmlinux 0x5a48969f devm_pci_remap_cfgspace -EXPORT_SYMBOL vmlinux 0x5a4896a8 __put_user_2 -EXPORT_SYMBOL vmlinux 0x5a4d313e gf128mul_4k_lle -EXPORT_SYMBOL vmlinux 0x5a54dae5 __blkdev_issue_discard -EXPORT_SYMBOL vmlinux 0x5a5a2271 __cpu_online_mask -EXPORT_SYMBOL vmlinux 0x5a7cee2f ethtool_rx_flow_rule_create -EXPORT_SYMBOL vmlinux 0x5a8ae15a ZSTD_initDDict -EXPORT_SYMBOL vmlinux 0x5a921311 strncmp -EXPORT_SYMBOL vmlinux 0x5a99a0d7 flow_get_u32_dst -EXPORT_SYMBOL vmlinux 0x5a9dcd27 ip6_mtu -EXPORT_SYMBOL vmlinux 0x5ab92fb8 dev_addr_del -EXPORT_SYMBOL vmlinux 0x5ae1154b __traceiter_kfree -EXPORT_SYMBOL vmlinux 0x5af01b01 register_netdevice_notifier_dev_net -EXPORT_SYMBOL vmlinux 0x5b0193b9 pps_register_source -EXPORT_SYMBOL vmlinux 0x5b02040c pci_scan_bus -EXPORT_SYMBOL vmlinux 0x5b032e78 __SCK__tp_func_kmalloc -EXPORT_SYMBOL vmlinux 0x5b1a76a3 pci_request_irq -EXPORT_SYMBOL vmlinux 0x5b1baf03 inet_unregister_protosw -EXPORT_SYMBOL vmlinux 0x5b2afd15 __bio_clone_fast -EXPORT_SYMBOL vmlinux 0x5b36d5dd utf8agemax -EXPORT_SYMBOL vmlinux 0x5b56860c vm_munmap -EXPORT_SYMBOL vmlinux 0x5b5fe084 mdio_device_register -EXPORT_SYMBOL vmlinux 0x5b641283 arch_phys_wc_add -EXPORT_SYMBOL vmlinux 0x5b78073a acpi_device_hid -EXPORT_SYMBOL vmlinux 0x5b8239ca __x86_return_thunk -EXPORT_SYMBOL vmlinux 0x5b91352b tty_port_close_end -EXPORT_SYMBOL vmlinux 0x5b974ec5 netdev_notice -EXPORT_SYMBOL vmlinux 0x5bb471dc xfrm6_input_addr -EXPORT_SYMBOL vmlinux 0x5bb6a4c4 is_subdir -EXPORT_SYMBOL vmlinux 0x5bbbe825 jbd2_log_start_commit -EXPORT_SYMBOL vmlinux 0x5bc9f03f netif_tx_wake_queue -EXPORT_SYMBOL vmlinux 0x5bd2780f xfrm_state_free -EXPORT_SYMBOL vmlinux 0x5bd48bce __cond_resched_rwlock_write -EXPORT_SYMBOL vmlinux 0x5bd4ff88 flow_action_cookie_create -EXPORT_SYMBOL vmlinux 0x5be1b040 __skb_free_datagram_locked -EXPORT_SYMBOL vmlinux 0x5be63c5b crc32c_csum_stub -EXPORT_SYMBOL vmlinux 0x5bf32845 register_fib_notifier -EXPORT_SYMBOL vmlinux 0x5bf97660 dma_unmap_sg_attrs -EXPORT_SYMBOL vmlinux 0x5c004cea mmc_hw_reset -EXPORT_SYMBOL vmlinux 0x5c09355b flow_rule_match_enc_ip -EXPORT_SYMBOL vmlinux 0x5c0fea16 path_is_under -EXPORT_SYMBOL vmlinux 0x5c26a53b wait_for_completion_io_timeout -EXPORT_SYMBOL vmlinux 0x5c3a7eb5 bio_add_page -EXPORT_SYMBOL vmlinux 0x5c3c7387 kstrtoull -EXPORT_SYMBOL vmlinux 0x5c3f192b amd_iommu_flush_page -EXPORT_SYMBOL vmlinux 0x5c49a92f irq_domain_set_info -EXPORT_SYMBOL vmlinux 0x5c58f80b get_cached_acl_rcu -EXPORT_SYMBOL vmlinux 0x5c5b24ee dquot_resume -EXPORT_SYMBOL vmlinux 0x5c61da52 down_read_interruptible -EXPORT_SYMBOL vmlinux 0x5c7a434a seq_pad -EXPORT_SYMBOL vmlinux 0x5c7b4ad5 reuseport_detach_sock -EXPORT_SYMBOL vmlinux 0x5c858347 amd_iommu_device_info -EXPORT_SYMBOL vmlinux 0x5c8cc05c fs_context_for_mount -EXPORT_SYMBOL vmlinux 0x5cac2d72 thread_group_exited -EXPORT_SYMBOL vmlinux 0x5cd4f8e3 phy_ethtool_set_link_ksettings -EXPORT_SYMBOL vmlinux 0x5cdb4376 sock_wake_async -EXPORT_SYMBOL vmlinux 0x5cf107db vfs_mknod -EXPORT_SYMBOL vmlinux 0x5cf53ce2 input_free_minor -EXPORT_SYMBOL vmlinux 0x5cf6d9d5 udp_read_sock -EXPORT_SYMBOL vmlinux 0x5cfb26a0 acpi_enter_sleep_state -EXPORT_SYMBOL vmlinux 0x5d19021e fsync_bdev -EXPORT_SYMBOL vmlinux 0x5d364c33 tcf_block_put_ext -EXPORT_SYMBOL vmlinux 0x5d49aabc init_wait_var_entry -EXPORT_SYMBOL vmlinux 0x5d4ff1c7 flow_block_cb_alloc -EXPORT_SYMBOL vmlinux 0x5d645141 dev_get_by_name_rcu -EXPORT_SYMBOL vmlinux 0x5d711d0d netdev_name_node_alt_create -EXPORT_SYMBOL vmlinux 0x5d77bafc __ip4_datagram_connect -EXPORT_SYMBOL vmlinux 0x5d7a3dc2 amd_iommu_complete_ppr -EXPORT_SYMBOL vmlinux 0x5d8af783 is_nd_btt -EXPORT_SYMBOL vmlinux 0x5da9c973 mmc_can_trim -EXPORT_SYMBOL vmlinux 0x5db2de9a pci_assign_resource -EXPORT_SYMBOL vmlinux 0x5dd2c2bd devfreq_suspend_device -EXPORT_SYMBOL vmlinux 0x5dd7be59 pcie_get_readrq -EXPORT_SYMBOL vmlinux 0x5de0482e dev_get_phys_port_id -EXPORT_SYMBOL vmlinux 0x5dffa3bc dev_uc_unsync -EXPORT_SYMBOL vmlinux 0x5dffb495 ZSTD_decompress_usingDDict -EXPORT_SYMBOL vmlinux 0x5e0ccb9f sha1_transform -EXPORT_SYMBOL vmlinux 0x5e3626e6 tty_driver_flush_buffer -EXPORT_SYMBOL vmlinux 0x5e373fb4 gf128mul_64k_bbe -EXPORT_SYMBOL vmlinux 0x5e68ee26 rio_query_mport -EXPORT_SYMBOL vmlinux 0x5e6a27bb simple_pin_fs -EXPORT_SYMBOL vmlinux 0x5e95b1cd current_umask -EXPORT_SYMBOL vmlinux 0x5e972b59 dev_uc_sync_multiple -EXPORT_SYMBOL vmlinux 0x5e9fb502 pci_bus_read_dev_vendor_id -EXPORT_SYMBOL vmlinux 0x5eb24829 dm_shift_arg -EXPORT_SYMBOL vmlinux 0x5eb3e533 kmem_cache_alloc -EXPORT_SYMBOL vmlinux 0x5eb72963 mfd_remove_devices -EXPORT_SYMBOL vmlinux 0x5eb8905a mempool_init_node -EXPORT_SYMBOL vmlinux 0x5ebfeb59 tcf_get_next_chain -EXPORT_SYMBOL vmlinux 0x5ec4aee6 put_sg_io_hdr -EXPORT_SYMBOL vmlinux 0x5ed040b0 pm_set_vt_switch -EXPORT_SYMBOL vmlinux 0x5ed90adc int_to_scsilun -EXPORT_SYMBOL vmlinux 0x5edaaeab __register_chrdev -EXPORT_SYMBOL vmlinux 0x5ef05005 sk_common_release -EXPORT_SYMBOL vmlinux 0x5ef0982f acpi_pm_device_sleep_state -EXPORT_SYMBOL vmlinux 0x5efed977 lookup_one -EXPORT_SYMBOL vmlinux 0x5f08cf14 put_disk -EXPORT_SYMBOL vmlinux 0x5f098b2a in6addr_interfacelocal_allrouters -EXPORT_SYMBOL vmlinux 0x5f27121e locks_remove_posix -EXPORT_SYMBOL vmlinux 0x5f45c7ae blk_queue_bounce_limit -EXPORT_SYMBOL vmlinux 0x5f4629b4 inet_confirm_addr -EXPORT_SYMBOL vmlinux 0x5f5441c8 __ubsan_handle_alignment_assumption -EXPORT_SYMBOL vmlinux 0x5f56663b rdmsrl_on_cpu -EXPORT_SYMBOL vmlinux 0x5f6b889c rproc_va_to_pa -EXPORT_SYMBOL vmlinux 0x5f711af3 console_start -EXPORT_SYMBOL vmlinux 0x5f789c2d devm_clk_hw_register_clkdev -EXPORT_SYMBOL vmlinux 0x5f93525c acpi_extract_package -EXPORT_SYMBOL vmlinux 0x5f98bdb6 nf_hooks_needed -EXPORT_SYMBOL vmlinux 0x5f99383a ioread64_hi_lo -EXPORT_SYMBOL vmlinux 0x5faaf2c6 setattr_should_drop_suidgid -EXPORT_SYMBOL vmlinux 0x5fbf90c2 deactivate_super -EXPORT_SYMBOL vmlinux 0x5fc67252 ioread16_rep -EXPORT_SYMBOL vmlinux 0x5fc72f0e alloc_pages_exact -EXPORT_SYMBOL vmlinux 0x5fe13529 __SCT__tp_func_spi_transfer_start -EXPORT_SYMBOL vmlinux 0x5fe45597 nf_ip6_checksum -EXPORT_SYMBOL vmlinux 0x5fe4ab42 __mmc_claim_host -EXPORT_SYMBOL vmlinux 0x5ffbe6b0 filemap_fdatawait_range -EXPORT_SYMBOL vmlinux 0x60055ed8 vm_map_pages -EXPORT_SYMBOL vmlinux 0x6005c351 zpool_has_pool -EXPORT_SYMBOL vmlinux 0x600683d3 do_unblank_screen -EXPORT_SYMBOL vmlinux 0x600780e3 __frontswap_load -EXPORT_SYMBOL vmlinux 0x601b20c9 scsi_ioctl -EXPORT_SYMBOL vmlinux 0x601be04c fixed_size_llseek -EXPORT_SYMBOL vmlinux 0x601f665f dm_io_client_create -EXPORT_SYMBOL vmlinux 0x60214ff1 ps2_end_command -EXPORT_SYMBOL vmlinux 0x60352082 register_inet6addr_notifier -EXPORT_SYMBOL vmlinux 0x60367a7a param_ops_long -EXPORT_SYMBOL vmlinux 0x605790dc fiemap_fill_next_extent -EXPORT_SYMBOL vmlinux 0x6059fd3f pid_task -EXPORT_SYMBOL vmlinux 0x6063b589 param_set_short -EXPORT_SYMBOL vmlinux 0x6068bdfd audit_log_start -EXPORT_SYMBOL vmlinux 0x608741b5 __init_swait_queue_head -EXPORT_SYMBOL vmlinux 0x6091055c skb_seq_read -EXPORT_SYMBOL vmlinux 0x6091b333 unregister_chrdev_region -EXPORT_SYMBOL vmlinux 0x60946a87 elv_rb_latter_request -EXPORT_SYMBOL vmlinux 0x609bcd98 in6_pton -EXPORT_SYMBOL vmlinux 0x609f1c7e synchronize_net -EXPORT_SYMBOL vmlinux 0x60a32ea9 pm_power_off -EXPORT_SYMBOL vmlinux 0x60b4d3a9 netdev_has_any_upper_dev -EXPORT_SYMBOL vmlinux 0x60cd24c8 kill_pid -EXPORT_SYMBOL vmlinux 0x60d8ab30 vme_lm_get -EXPORT_SYMBOL vmlinux 0x60db808b tty_unregister_driver -EXPORT_SYMBOL vmlinux 0x610017e5 fb_pan_display -EXPORT_SYMBOL vmlinux 0x61073e4a acpi_os_map_generic_address -EXPORT_SYMBOL vmlinux 0x6109fed7 fb_blank -EXPORT_SYMBOL vmlinux 0x612175f9 ip_generic_getfrag -EXPORT_SYMBOL vmlinux 0x6125a950 __tcf_em_tree_match -EXPORT_SYMBOL vmlinux 0x6128b5fc __printk_ratelimit -EXPORT_SYMBOL vmlinux 0x61347034 mb_cache_entry_delete_or_get -EXPORT_SYMBOL vmlinux 0x61536a41 ethtool_get_phc_vclocks -EXPORT_SYMBOL vmlinux 0x615911d7 __bitmap_set -EXPORT_SYMBOL vmlinux 0x615d4287 seq_vprintf -EXPORT_SYMBOL vmlinux 0x61629e1b csum_and_copy_to_iter -EXPORT_SYMBOL vmlinux 0x6167e72c vmalloc_no_huge -EXPORT_SYMBOL vmlinux 0x617bb115 genphy_check_and_restart_aneg -EXPORT_SYMBOL vmlinux 0x61852cee rtc_add_groups -EXPORT_SYMBOL vmlinux 0x61874738 devfreq_register_notifier -EXPORT_SYMBOL vmlinux 0x618911fc numa_node -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 0x61ba4e49 gnet_stats_copy_basic -EXPORT_SYMBOL vmlinux 0x61ba914f iov_iter_revert -EXPORT_SYMBOL vmlinux 0x61bc5a03 clocksource_unregister -EXPORT_SYMBOL vmlinux 0x61d7c977 __inet_hash -EXPORT_SYMBOL vmlinux 0x61dd8f23 pin_user_pages_unlocked -EXPORT_SYMBOL vmlinux 0x61e272c9 sha256_final -EXPORT_SYMBOL vmlinux 0x61e59331 kmem_cache_create_usercopy -EXPORT_SYMBOL vmlinux 0x61e84920 sget_fc -EXPORT_SYMBOL vmlinux 0x61ea189b fb_pad_aligned_buffer -EXPORT_SYMBOL vmlinux 0x6214aef2 cpufreq_unregister_notifier -EXPORT_SYMBOL vmlinux 0x6226b9fa machine_to_phys_mapping -EXPORT_SYMBOL vmlinux 0x622729ef phy_ethtool_get_eee -EXPORT_SYMBOL vmlinux 0x6228c21f smp_call_function_single -EXPORT_SYMBOL vmlinux 0x622f49e9 xfrm_state_add -EXPORT_SYMBOL vmlinux 0x62379454 skb_abort_seq_read -EXPORT_SYMBOL vmlinux 0x6243a652 rproc_coredump_set_elf_info -EXPORT_SYMBOL vmlinux 0x6250a0ec tty_unregister_ldisc -EXPORT_SYMBOL vmlinux 0x6265d346 flow_block_cb_decref -EXPORT_SYMBOL vmlinux 0x62660d28 pnp_register_driver -EXPORT_SYMBOL vmlinux 0x626f0b6d ps2_sendbyte -EXPORT_SYMBOL vmlinux 0x62737e1d sock_unregister -EXPORT_SYMBOL vmlinux 0x62849ac7 dev_valid_name -EXPORT_SYMBOL vmlinux 0x628a2a3a simple_transaction_release -EXPORT_SYMBOL vmlinux 0x62949074 acpi_buffer_to_resource -EXPORT_SYMBOL vmlinux 0x629fcfa0 csum_and_copy_from_iter -EXPORT_SYMBOL vmlinux 0x62ac70c4 pci_disable_link_state_locked -EXPORT_SYMBOL vmlinux 0x62bca38e __skb_flow_dissect -EXPORT_SYMBOL vmlinux 0x62bf6edf utf8agemin -EXPORT_SYMBOL vmlinux 0x62d54445 no_seek_end_llseek_size -EXPORT_SYMBOL vmlinux 0x62dc1481 dst_destroy -EXPORT_SYMBOL vmlinux 0x62e1e455 skb_checksum_help -EXPORT_SYMBOL vmlinux 0x62e65b7d nf_hook_slow_list -EXPORT_SYMBOL vmlinux 0x63055519 textsearch_prepare -EXPORT_SYMBOL vmlinux 0x63187451 pcie_aspm_support_enabled -EXPORT_SYMBOL vmlinux 0x631d06aa cpu_rmap_put -EXPORT_SYMBOL vmlinux 0x631dcb26 xfrm_policy_flush -EXPORT_SYMBOL vmlinux 0x6330b71f loop_register_transfer -EXPORT_SYMBOL vmlinux 0x633bd026 serio_reconnect -EXPORT_SYMBOL vmlinux 0x63506b59 vme_register_error_handler -EXPORT_SYMBOL vmlinux 0x6356374e set_blocksize -EXPORT_SYMBOL vmlinux 0x636257f7 get_ibs_caps -EXPORT_SYMBOL vmlinux 0x637182f5 xa_destroy -EXPORT_SYMBOL vmlinux 0x6383b27c __x86_indirect_thunk_rdx -EXPORT_SYMBOL vmlinux 0x639b7d44 ndo_dflt_fdb_dump -EXPORT_SYMBOL vmlinux 0x63a5512e inet_csk_reset_keepalive_timer -EXPORT_SYMBOL vmlinux 0x63a58370 flow_action_cookie_destroy -EXPORT_SYMBOL vmlinux 0x63a7c28c bitmap_find_free_region -EXPORT_SYMBOL vmlinux 0x63aa28be scsi_device_put -EXPORT_SYMBOL vmlinux 0x63c0e48b pcie_relaxed_ordering_enabled -EXPORT_SYMBOL vmlinux 0x63c4d61f __bitmap_weight -EXPORT_SYMBOL vmlinux 0x63e8538b mmc_can_gpio_cd -EXPORT_SYMBOL vmlinux 0x63eb9355 panic_blink -EXPORT_SYMBOL vmlinux 0x63f835ba on_each_cpu_cond_mask -EXPORT_SYMBOL vmlinux 0x63ff688a scsi_dma_map -EXPORT_SYMBOL vmlinux 0x6409b7a1 pnp_request_card_device -EXPORT_SYMBOL vmlinux 0x64127b67 bitmap_find_next_zero_area_off -EXPORT_SYMBOL vmlinux 0x64177064 vga_switcheroo_lock_ddc -EXPORT_SYMBOL vmlinux 0x642eb5c6 xen_poll_irq_timeout -EXPORT_SYMBOL vmlinux 0x6434a0e0 inet_proto_csum_replace4 -EXPORT_SYMBOL vmlinux 0x6454ae74 acpi_bus_unregister_driver -EXPORT_SYMBOL vmlinux 0x645a7608 gen_pool_add_owner -EXPORT_SYMBOL vmlinux 0x64609b05 file_modified -EXPORT_SYMBOL vmlinux 0x6480ceb0 agp_allocate_memory -EXPORT_SYMBOL vmlinux 0x6481ffe0 hsiphash_1u32 -EXPORT_SYMBOL vmlinux 0x648eb59d gc_inflight_list -EXPORT_SYMBOL vmlinux 0x6498c675 amd_iommu_domain_direct_map -EXPORT_SYMBOL vmlinux 0x64999478 congestion_wait -EXPORT_SYMBOL vmlinux 0x64a9c928 default_blu -EXPORT_SYMBOL vmlinux 0x64abacfd tty_write_room -EXPORT_SYMBOL vmlinux 0x64b29938 free_task -EXPORT_SYMBOL vmlinux 0x64b8cc66 md_flush_request -EXPORT_SYMBOL vmlinux 0x64bbc288 string_unescape -EXPORT_SYMBOL vmlinux 0x64fc610f dev_get_flags -EXPORT_SYMBOL vmlinux 0x65066013 mdiobus_get_phy -EXPORT_SYMBOL vmlinux 0x6508cf2a set_posix_acl -EXPORT_SYMBOL vmlinux 0x6513a3fa fb_get_color_depth -EXPORT_SYMBOL vmlinux 0x6514c1e6 flow_get_u32_src -EXPORT_SYMBOL vmlinux 0x6517284f dquot_disable -EXPORT_SYMBOL vmlinux 0x6518c2ee neigh_parms_release -EXPORT_SYMBOL vmlinux 0x651a4139 test_taint -EXPORT_SYMBOL vmlinux 0x652032cb mac_pton -EXPORT_SYMBOL vmlinux 0x65290ec0 phy_device_create -EXPORT_SYMBOL vmlinux 0x652ce9aa nla_memcmp -EXPORT_SYMBOL vmlinux 0x653750f6 agp_enable -EXPORT_SYMBOL vmlinux 0x65408378 zlib_inflate_blob -EXPORT_SYMBOL vmlinux 0x65464c16 clkdev_drop -EXPORT_SYMBOL vmlinux 0x65487097 __x86_indirect_thunk_rax -EXPORT_SYMBOL vmlinux 0x6556f684 get_fs_type -EXPORT_SYMBOL vmlinux 0x656c1a0e string_escape_mem -EXPORT_SYMBOL vmlinux 0x656e4a6e snprintf -EXPORT_SYMBOL vmlinux 0x657806d1 get_watch_queue -EXPORT_SYMBOL vmlinux 0x657b2f67 param_set_copystring -EXPORT_SYMBOL vmlinux 0x6588c202 inet_frag_destroy -EXPORT_SYMBOL vmlinux 0x658ce1a8 xxh64_reset -EXPORT_SYMBOL vmlinux 0x65993ceb phy_set_asym_pause -EXPORT_SYMBOL vmlinux 0x659ded26 xfrm_flush_gc -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 0x65d24835 unregister_sysctl_table -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 0x65f08b9e netif_stacked_transfer_operstate -EXPORT_SYMBOL vmlinux 0x65fa93ed param_ops_short -EXPORT_SYMBOL vmlinux 0x65ff57bc dev_set_group -EXPORT_SYMBOL vmlinux 0x66126e44 put_watch_queue -EXPORT_SYMBOL vmlinux 0x6615a86d free_netdev -EXPORT_SYMBOL vmlinux 0x66246299 nf_log_set -EXPORT_SYMBOL vmlinux 0x6626afca down -EXPORT_SYMBOL vmlinux 0x66312b26 seg6_hmac_info_lookup -EXPORT_SYMBOL vmlinux 0x663182c9 acpi_get_gpe_status -EXPORT_SYMBOL vmlinux 0x663fdc58 uart_get_divisor -EXPORT_SYMBOL vmlinux 0x66628bf3 ip_tunnel_metadata_cnt -EXPORT_SYMBOL vmlinux 0x6673f96d xxh32_reset -EXPORT_SYMBOL vmlinux 0x6688d292 configfs_remove_default_groups -EXPORT_SYMBOL vmlinux 0x66a10a8e skb_queue_head -EXPORT_SYMBOL vmlinux 0x66af7755 inet_recvmsg -EXPORT_SYMBOL vmlinux 0x66b12aff tcf_exts_dump -EXPORT_SYMBOL vmlinux 0x66b196e3 __fs_parse -EXPORT_SYMBOL vmlinux 0x66b4cc41 kmemdup -EXPORT_SYMBOL vmlinux 0x66c10f99 vfio_pin_pages -EXPORT_SYMBOL vmlinux 0x66cca4f9 __x86_indirect_thunk_rcx -EXPORT_SYMBOL vmlinux 0x6706257d radix_tree_iter_resume -EXPORT_SYMBOL vmlinux 0x670ecece __x86_indirect_thunk_rbx -EXPORT_SYMBOL vmlinux 0x67144c2a inet6_csk_route_req -EXPORT_SYMBOL vmlinux 0x6729d3df __get_user_4 -EXPORT_SYMBOL vmlinux 0x673f815e agp_bridges -EXPORT_SYMBOL vmlinux 0x6741f7cc invalidate_inode_buffers -EXPORT_SYMBOL vmlinux 0x6749d53f hdmi_vendor_infoframe_init -EXPORT_SYMBOL vmlinux 0x6761e830 mpage_writepages -EXPORT_SYMBOL vmlinux 0x677cf8aa pci_enable_wake -EXPORT_SYMBOL vmlinux 0x678b8fe1 bdi_set_max_ratio -EXPORT_SYMBOL vmlinux 0x678b96ec dma_pool_alloc -EXPORT_SYMBOL vmlinux 0x67962985 pcim_iomap_table -EXPORT_SYMBOL vmlinux 0x67ad1e15 netlink_capable -EXPORT_SYMBOL vmlinux 0x67b27ec1 tty_std_termios -EXPORT_SYMBOL vmlinux 0x67b34373 reuseport_migrate_sock -EXPORT_SYMBOL vmlinux 0x67b78eb3 seq_hlist_next_rcu -EXPORT_SYMBOL vmlinux 0x67be850f pnp_possible_config -EXPORT_SYMBOL vmlinux 0x67bea56c d_set_fallthru -EXPORT_SYMBOL vmlinux 0x67c13ea0 acpi_read -EXPORT_SYMBOL vmlinux 0x67c1569d xfrm_state_update -EXPORT_SYMBOL vmlinux 0x67d3c778 __hw_addr_ref_unsync_dev -EXPORT_SYMBOL vmlinux 0x67e368a6 __nla_reserve -EXPORT_SYMBOL vmlinux 0x67ebf919 inet_stream_ops -EXPORT_SYMBOL vmlinux 0x67f2320f fs_param_is_blockdev -EXPORT_SYMBOL vmlinux 0x6819852d dcb_ieee_getapp_mask -EXPORT_SYMBOL vmlinux 0x681b6670 is_firmware_framebuffer -EXPORT_SYMBOL vmlinux 0x681ba704 cfb_imageblit -EXPORT_SYMBOL vmlinux 0x682c1583 simple_lookup -EXPORT_SYMBOL vmlinux 0x683dbc74 skb_copy_and_csum_bits -EXPORT_SYMBOL vmlinux 0x6847757e drop_super_exclusive -EXPORT_SYMBOL vmlinux 0x684b3cc8 inet_add_offload -EXPORT_SYMBOL vmlinux 0x684c5b03 ipv6_dev_find -EXPORT_SYMBOL vmlinux 0x6851664e wrmsrl_safe_on_cpu -EXPORT_SYMBOL vmlinux 0x6857d8d4 nobh_writepage -EXPORT_SYMBOL vmlinux 0x685ead1f vga_con -EXPORT_SYMBOL vmlinux 0x6860612c pci_bus_write_config_dword -EXPORT_SYMBOL vmlinux 0x686ceca5 ip_local_deliver -EXPORT_SYMBOL vmlinux 0x6872dce5 __init_rwsem -EXPORT_SYMBOL vmlinux 0x687510e2 xfrm_policy_alloc -EXPORT_SYMBOL vmlinux 0x687b6a16 kdbgetsymval -EXPORT_SYMBOL vmlinux 0x6888d175 devm_devfreq_register_notifier -EXPORT_SYMBOL vmlinux 0x6889924f of_find_mipi_dsi_device_by_node -EXPORT_SYMBOL vmlinux 0x6895a2a8 dquot_writeback_dquots -EXPORT_SYMBOL vmlinux 0x68a094c0 devfreq_unregister_notifier -EXPORT_SYMBOL vmlinux 0x68c3dfe1 skb_queue_tail -EXPORT_SYMBOL vmlinux 0x68c4b824 cpumask_any_but -EXPORT_SYMBOL vmlinux 0x68c83bd6 xfrm_unregister_type -EXPORT_SYMBOL vmlinux 0x68d78db3 gen_pool_dma_zalloc_align -EXPORT_SYMBOL vmlinux 0x68dc9947 bio_uninit -EXPORT_SYMBOL vmlinux 0x68e011d4 cros_ec_get_host_event -EXPORT_SYMBOL vmlinux 0x68e2fe7e phy_set_max_speed -EXPORT_SYMBOL vmlinux 0x68fb581a icst307_idx2s -EXPORT_SYMBOL vmlinux 0x68fd1462 agp_generic_free_gatt_table -EXPORT_SYMBOL vmlinux 0x69024dfd serio_open -EXPORT_SYMBOL vmlinux 0x690656cb uart_get_baud_rate -EXPORT_SYMBOL vmlinux 0x6917a77e __traceiter_kmem_cache_free -EXPORT_SYMBOL vmlinux 0x69267cf5 generic_shutdown_super -EXPORT_SYMBOL vmlinux 0x693b57ea __tracepoint_kfree -EXPORT_SYMBOL vmlinux 0x69414420 dev_base_lock -EXPORT_SYMBOL vmlinux 0x694cb8f7 mfd_remove_devices_late -EXPORT_SYMBOL vmlinux 0x69585523 __ksize -EXPORT_SYMBOL vmlinux 0x695b3f22 tty_port_put -EXPORT_SYMBOL vmlinux 0x696142f2 pfifo_qdisc_ops -EXPORT_SYMBOL vmlinux 0x69668826 netdev_increment_features -EXPORT_SYMBOL vmlinux 0x6967437a fs_context_for_reconfigure -EXPORT_SYMBOL vmlinux 0x6971447a rtc_month_days -EXPORT_SYMBOL vmlinux 0x697ed5f0 memcpy_and_pad -EXPORT_SYMBOL vmlinux 0x6982a9df sock_recv_errqueue -EXPORT_SYMBOL vmlinux 0x6988d0ca cpu_dr7 -EXPORT_SYMBOL vmlinux 0x698ac1b5 mempool_destroy -EXPORT_SYMBOL vmlinux 0x699d2820 unix_gc_lock -EXPORT_SYMBOL vmlinux 0x69a98eee is_bad_inode -EXPORT_SYMBOL vmlinux 0x69acdf38 memcpy -EXPORT_SYMBOL vmlinux 0x69bda0bb skb_orphan_partial -EXPORT_SYMBOL vmlinux 0x69c7564a blk_mq_start_hw_queues -EXPORT_SYMBOL vmlinux 0x69d1ae44 mdiobus_unregister -EXPORT_SYMBOL vmlinux 0x69da3f43 tty_register_driver -EXPORT_SYMBOL vmlinux 0x69dd3b5b crc32_le -EXPORT_SYMBOL vmlinux 0x69de8757 vme_check_window -EXPORT_SYMBOL vmlinux 0x6a03751f sgl_free_order -EXPORT_SYMBOL vmlinux 0x6a037cf1 mempool_kfree -EXPORT_SYMBOL vmlinux 0x6a261b78 irq_stat -EXPORT_SYMBOL vmlinux 0x6a2c9b43 amd_iommu_domain_set_gcr3 -EXPORT_SYMBOL vmlinux 0x6a42c041 mdio_device_remove -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 0x6a8183aa phy_aneg_done -EXPORT_SYMBOL vmlinux 0x6a82e3e2 __break_lease -EXPORT_SYMBOL vmlinux 0x6a9cf2aa qdisc_watchdog_cancel -EXPORT_SYMBOL vmlinux 0x6aa11aa6 sgl_free_n_order -EXPORT_SYMBOL vmlinux 0x6aa438ef tcf_qevent_handle -EXPORT_SYMBOL vmlinux 0x6ab9996c filemap_write_and_wait_range -EXPORT_SYMBOL vmlinux 0x6abb0895 config_group_init_type_name -EXPORT_SYMBOL vmlinux 0x6add5c9a dmi_find_device -EXPORT_SYMBOL vmlinux 0x6aeefac4 zlib_deflateReset -EXPORT_SYMBOL vmlinux 0x6af34f31 scsi_dma_unmap -EXPORT_SYMBOL vmlinux 0x6b10bee1 _copy_to_user -EXPORT_SYMBOL vmlinux 0x6b271451 tcp_sync_mss -EXPORT_SYMBOL vmlinux 0x6b2dc060 dump_stack -EXPORT_SYMBOL vmlinux 0x6b3a6e1f lookup_one_len_unlocked -EXPORT_SYMBOL vmlinux 0x6b3b4afe md_check_recovery -EXPORT_SYMBOL vmlinux 0x6b3d7614 unix_detach_fds -EXPORT_SYMBOL vmlinux 0x6b43d380 framebuffer_alloc -EXPORT_SYMBOL vmlinux 0x6b55acd0 rtnl_lock_killable -EXPORT_SYMBOL vmlinux 0x6b57ee8a dma_map_resource -EXPORT_SYMBOL vmlinux 0x6b644b97 phy_stop -EXPORT_SYMBOL vmlinux 0x6b73c58a __phy_write_mmd -EXPORT_SYMBOL vmlinux 0x6b788af1 skb_ensure_writable -EXPORT_SYMBOL vmlinux 0x6b853d06 ns_to_kernel_old_timeval -EXPORT_SYMBOL vmlinux 0x6b8bf149 netif_receive_skb_list -EXPORT_SYMBOL vmlinux 0x6b997634 inet_sendpage -EXPORT_SYMBOL vmlinux 0x6b9d1c95 security_req_classify_flow -EXPORT_SYMBOL vmlinux 0x6bb2b8fd scsi_target_quiesce -EXPORT_SYMBOL vmlinux 0x6bb51e65 blkdev_issue_discard -EXPORT_SYMBOL vmlinux 0x6bb7ae75 __page_frag_cache_drain -EXPORT_SYMBOL vmlinux 0x6bc3fbc0 __unregister_chrdev -EXPORT_SYMBOL vmlinux 0x6bd0e573 down_interruptible -EXPORT_SYMBOL vmlinux 0x6be1c1f8 acpi_install_method -EXPORT_SYMBOL vmlinux 0x6bf091e2 xa_clear_mark -EXPORT_SYMBOL vmlinux 0x6bf9d6e8 vme_new_dma_list -EXPORT_SYMBOL vmlinux 0x6c229c21 register_netdevice_notifier_net -EXPORT_SYMBOL vmlinux 0x6c257ac0 tty_termios_hw_change -EXPORT_SYMBOL vmlinux 0x6c28be5a vfio_info_add_capability -EXPORT_SYMBOL vmlinux 0x6c4bfb54 ip_route_input_noref -EXPORT_SYMBOL vmlinux 0x6c5dae23 scsi_kmap_atomic_sg -EXPORT_SYMBOL vmlinux 0x6c61ce70 num_registered_fb -EXPORT_SYMBOL vmlinux 0x6c68b924 mr_mfc_find_any -EXPORT_SYMBOL vmlinux 0x6c7061e7 vfs_dedupe_file_range -EXPORT_SYMBOL vmlinux 0x6c875112 devm_request_threaded_irq -EXPORT_SYMBOL vmlinux 0x6ca4a002 cookie_timestamp_decode -EXPORT_SYMBOL vmlinux 0x6cb2f5a1 cpumask_next_and -EXPORT_SYMBOL vmlinux 0x6cb46525 netlbl_catmap_walk -EXPORT_SYMBOL vmlinux 0x6cbb7577 seq_escape -EXPORT_SYMBOL vmlinux 0x6cc09945 ioread32_rep -EXPORT_SYMBOL vmlinux 0x6ce57cc2 napi_enable -EXPORT_SYMBOL vmlinux 0x6cfbb817 msi_desc_to_pci_dev -EXPORT_SYMBOL vmlinux 0x6d065ac5 input_set_max_poll_interval -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 0x6d3689d6 ata_print_version -EXPORT_SYMBOL vmlinux 0x6d58f69e agp3_generic_sizes -EXPORT_SYMBOL vmlinux 0x6d60a912 fqdir_exit -EXPORT_SYMBOL vmlinux 0x6d79473e dquot_load_quota_inode -EXPORT_SYMBOL vmlinux 0x6d7c7dcc bitmap_cut -EXPORT_SYMBOL vmlinux 0x6d9f220e phy_device_free -EXPORT_SYMBOL vmlinux 0x6dc2a96b __tracepoint_mmap_lock_start_locking -EXPORT_SYMBOL vmlinux 0x6dceeebb blk_cleanup_queue -EXPORT_SYMBOL vmlinux 0x6dcf857f uuid_null -EXPORT_SYMBOL vmlinux 0x6dd17e7b acpi_get_table_header -EXPORT_SYMBOL vmlinux 0x6df1aaf1 kernel_sigaction -EXPORT_SYMBOL vmlinux 0x6dffc152 scsi_print_sense -EXPORT_SYMBOL vmlinux 0x6e0bbb38 jbd2_journal_check_available_features -EXPORT_SYMBOL vmlinux 0x6e17248d dev_uc_add_excl -EXPORT_SYMBOL vmlinux 0x6e2575ed ip_tunnel_parse_protocol -EXPORT_SYMBOL vmlinux 0x6e273443 mipi_dsi_dcs_set_display_brightness -EXPORT_SYMBOL vmlinux 0x6e30e78c dev_uc_init -EXPORT_SYMBOL vmlinux 0x6e37c27f __netif_napi_del -EXPORT_SYMBOL vmlinux 0x6e5b8651 xz_dec_run -EXPORT_SYMBOL vmlinux 0x6e720ff2 rtnl_unlock -EXPORT_SYMBOL vmlinux 0x6e857ebc ip_options_compile -EXPORT_SYMBOL vmlinux 0x6e8b1d3e init_task -EXPORT_SYMBOL vmlinux 0x6e8e222c agp_backend_acquire -EXPORT_SYMBOL vmlinux 0x6e9594af discard_new_inode -EXPORT_SYMBOL vmlinux 0x6e9967df mmc_cqe_start_req -EXPORT_SYMBOL vmlinux 0x6e9dd606 __symbol_put -EXPORT_SYMBOL vmlinux 0x6ea1414d __skb_pad -EXPORT_SYMBOL vmlinux 0x6ea22507 rtnl_create_link -EXPORT_SYMBOL vmlinux 0x6ea7575d acpi_dispatch_gpe -EXPORT_SYMBOL vmlinux 0x6ea9363b force_sig -EXPORT_SYMBOL vmlinux 0x6ec8d7c4 dev_getfirstbyhwtype -EXPORT_SYMBOL vmlinux 0x6ed47bde xfrm_state_register_afinfo -EXPORT_SYMBOL vmlinux 0x6eedd046 inode_nohighmem -EXPORT_SYMBOL vmlinux 0x6ef55cd5 sock_common_getsockopt -EXPORT_SYMBOL vmlinux 0x6f01aba6 hdmi_infoframe_log -EXPORT_SYMBOL vmlinux 0x6f15a3a3 vfs_parse_fs_param -EXPORT_SYMBOL vmlinux 0x6f19e050 __vfs_getxattr -EXPORT_SYMBOL vmlinux 0x6f2712d4 ip6_output -EXPORT_SYMBOL vmlinux 0x6f2e8fb0 mmc_wait_for_cmd -EXPORT_SYMBOL vmlinux 0x6f41a428 acpi_get_vendor_resource -EXPORT_SYMBOL vmlinux 0x6f56b72b dma_sync_sg_for_device -EXPORT_SYMBOL vmlinux 0x6f5ab52f acpi_get_local_address -EXPORT_SYMBOL vmlinux 0x6f8f674a bpf_dispatcher_xdp_func -EXPORT_SYMBOL vmlinux 0x6f915a45 dqstats -EXPORT_SYMBOL vmlinux 0x6fa86eb1 d_instantiate -EXPORT_SYMBOL vmlinux 0x6fa9d81d skb_vlan_untag -EXPORT_SYMBOL vmlinux 0x6fb49676 queue_rcu_work -EXPORT_SYMBOL vmlinux 0x6fcb87a1 touch_softlockup_watchdog -EXPORT_SYMBOL vmlinux 0x6fe47839 flow_rule_match_basic -EXPORT_SYMBOL vmlinux 0x70002fe8 siphash_1u32 -EXPORT_SYMBOL vmlinux 0x7013dfd0 seq_release -EXPORT_SYMBOL vmlinux 0x702030d5 inet_csk_reqsk_queue_add -EXPORT_SYMBOL vmlinux 0x7023bea8 unregister_acpi_notifier -EXPORT_SYMBOL vmlinux 0x702946da ucs2_strlen -EXPORT_SYMBOL vmlinux 0x7033b62b dm_io -EXPORT_SYMBOL vmlinux 0x7038376c __get_hash_from_flowi6 -EXPORT_SYMBOL vmlinux 0x704ec254 remove_arg_zero -EXPORT_SYMBOL vmlinux 0x7054a3e4 request_dma -EXPORT_SYMBOL vmlinux 0x7062f6df dev_add_pack -EXPORT_SYMBOL vmlinux 0x706c5a65 preempt_count_sub -EXPORT_SYMBOL vmlinux 0x70848fac neigh_xmit -EXPORT_SYMBOL vmlinux 0x709021cb qdisc_warn_nonwc -EXPORT_SYMBOL vmlinux 0x70c046b9 scsi_register_interface -EXPORT_SYMBOL vmlinux 0x70c4b104 __xa_clear_mark -EXPORT_SYMBOL vmlinux 0x70c9b1a2 phy_get_c45_ids -EXPORT_SYMBOL vmlinux 0x70d19d33 pcie_capability_read_word -EXPORT_SYMBOL vmlinux 0x70e7a5b1 jbd2_journal_abort -EXPORT_SYMBOL vmlinux 0x70ec1060 max8998_bulk_read -EXPORT_SYMBOL vmlinux 0x70f006bb xfrm_policy_hash_rebuild -EXPORT_SYMBOL vmlinux 0x70f0b1fc agp_alloc_bridge -EXPORT_SYMBOL vmlinux 0x70f285b7 ipv6_skip_exthdr -EXPORT_SYMBOL vmlinux 0x710af288 wait_for_key_construction -EXPORT_SYMBOL vmlinux 0x71125f91 kernel_sendpage -EXPORT_SYMBOL vmlinux 0x7129e5f8 hex_asc -EXPORT_SYMBOL vmlinux 0x715a5ed0 vprintk -EXPORT_SYMBOL vmlinux 0x7171121c overflowgid -EXPORT_SYMBOL vmlinux 0x717cca48 proto_register -EXPORT_SYMBOL vmlinux 0x717d9536 __pskb_copy_fclone -EXPORT_SYMBOL vmlinux 0x71875dc5 __post_watch_notification -EXPORT_SYMBOL vmlinux 0x718a4693 __SCT__tp_func_mmap_lock_start_locking -EXPORT_SYMBOL vmlinux 0x71953092 nvdimm_check_and_set_ro -EXPORT_SYMBOL vmlinux 0x719a3069 d_rehash -EXPORT_SYMBOL vmlinux 0x71a672ef dmam_pool_destroy -EXPORT_SYMBOL vmlinux 0x71ba8931 xfrm_replay_seqhi -EXPORT_SYMBOL vmlinux 0x71c6a42e generic_file_fsync -EXPORT_SYMBOL vmlinux 0x71dfc095 acpi_walk_resources -EXPORT_SYMBOL vmlinux 0x71fdbdea pipe_unlock -EXPORT_SYMBOL vmlinux 0x720a27a7 __register_blkdev -EXPORT_SYMBOL vmlinux 0x7210143f abort_creds -EXPORT_SYMBOL vmlinux 0x722bacad jbd2_journal_clear_err -EXPORT_SYMBOL vmlinux 0x7235c3a0 sock_efree -EXPORT_SYMBOL vmlinux 0x7245bb44 netdev_has_upper_dev_all_rcu -EXPORT_SYMBOL vmlinux 0x7249c875 update_region -EXPORT_SYMBOL vmlinux 0x724db228 phy_mii_ioctl -EXPORT_SYMBOL vmlinux 0x724ddac7 utf8version_is_supported -EXPORT_SYMBOL vmlinux 0x725b9956 rt_spin_lock_unlock -EXPORT_SYMBOL vmlinux 0x726bc3c7 wait_for_completion_killable_timeout -EXPORT_SYMBOL vmlinux 0x7275bbc0 pci_enable_msix_range -EXPORT_SYMBOL vmlinux 0x7284f93f lookup_positive_unlocked -EXPORT_SYMBOL vmlinux 0x7291356a page_symlink -EXPORT_SYMBOL vmlinux 0x729429d3 build_skb -EXPORT_SYMBOL vmlinux 0x72b243d4 free_dma -EXPORT_SYMBOL vmlinux 0x72b9d287 default_grn -EXPORT_SYMBOL vmlinux 0x72d46f2e flow_block_cb_incref -EXPORT_SYMBOL vmlinux 0x72d79d83 pgdir_shift -EXPORT_SYMBOL vmlinux 0x72d7c3cc proc_doulongvec_minmax -EXPORT_SYMBOL vmlinux 0x72dc78de sock_no_accept -EXPORT_SYMBOL vmlinux 0x72e05643 device_match_acpi_dev -EXPORT_SYMBOL vmlinux 0x72e06e19 sock_init_data_uid -EXPORT_SYMBOL vmlinux 0x72e49323 skb_put -EXPORT_SYMBOL vmlinux 0x72ea7b2d scsi_device_type -EXPORT_SYMBOL vmlinux 0x72ec86d2 migrate_vma_pages -EXPORT_SYMBOL vmlinux 0x72ed0737 kill_anon_super -EXPORT_SYMBOL vmlinux 0x72f14ff7 acpi_get_object_info -EXPORT_SYMBOL vmlinux 0x7309b97d inet_frag_queue_insert -EXPORT_SYMBOL vmlinux 0x730eeabe genphy_aneg_done -EXPORT_SYMBOL vmlinux 0x7315a4e9 twl6030_mmc_card_detect_config -EXPORT_SYMBOL vmlinux 0x732abf5f __SCK__tp_func_dma_fence_emit -EXPORT_SYMBOL vmlinux 0x732dd326 groups_free -EXPORT_SYMBOL vmlinux 0x7338fe74 fb_firmware_edid -EXPORT_SYMBOL vmlinux 0x7357e7ab unregister_mii_timestamper -EXPORT_SYMBOL vmlinux 0x735a0bd5 native_io_delay -EXPORT_SYMBOL vmlinux 0x735caf0b tso_start -EXPORT_SYMBOL vmlinux 0x735e6a81 acpi_evaluate_integer -EXPORT_SYMBOL vmlinux 0x7369aef2 module_refcount -EXPORT_SYMBOL vmlinux 0x7372cb0f pci_save_state -EXPORT_SYMBOL vmlinux 0x737a23c8 skb_copy_datagram_from_iter -EXPORT_SYMBOL vmlinux 0x7380dffa argv_split -EXPORT_SYMBOL vmlinux 0x7396de0a add_wait_queue_exclusive -EXPORT_SYMBOL vmlinux 0x7397fd12 __sock_cmsg_send -EXPORT_SYMBOL vmlinux 0x73abb180 alloc_contig_range -EXPORT_SYMBOL vmlinux 0x73be75d4 blk_queue_flag_set -EXPORT_SYMBOL vmlinux 0x73d5710d neigh_seq_start -EXPORT_SYMBOL vmlinux 0x73dd54eb irq_fpu_usable -EXPORT_SYMBOL vmlinux 0x73de3b7c input_flush_device -EXPORT_SYMBOL vmlinux 0x73e47fec fs_context_for_submount -EXPORT_SYMBOL vmlinux 0x73f4d617 kernel_param_unlock -EXPORT_SYMBOL vmlinux 0x73fbe4b1 kernel_accept -EXPORT_SYMBOL vmlinux 0x740a1b95 reserve_evntsel_nmi -EXPORT_SYMBOL vmlinux 0x740d3a01 security_path_unlink -EXPORT_SYMBOL vmlinux 0x7410aba2 strreplace -EXPORT_SYMBOL vmlinux 0x7412ed5b kvfree_sensitive -EXPORT_SYMBOL vmlinux 0x7413793a EISA_bus -EXPORT_SYMBOL vmlinux 0x74152d55 rtnl_set_sk_err -EXPORT_SYMBOL vmlinux 0x742578a5 wait_for_random_bytes -EXPORT_SYMBOL vmlinux 0x7429e20c kstrtos8 -EXPORT_SYMBOL vmlinux 0x743448e2 configfs_unregister_subsystem -EXPORT_SYMBOL vmlinux 0x74358d81 seq_open -EXPORT_SYMBOL vmlinux 0x7437d828 agp_create_memory -EXPORT_SYMBOL vmlinux 0x743bf672 get_tree_single -EXPORT_SYMBOL vmlinux 0x74453eae set_security_override_from_ctx -EXPORT_SYMBOL vmlinux 0x744b5503 param_ops_hexint -EXPORT_SYMBOL vmlinux 0x7453d3e8 security_release_secctx -EXPORT_SYMBOL vmlinux 0x7469b14b d_alloc_anon -EXPORT_SYMBOL vmlinux 0x7469ec63 bdi_register -EXPORT_SYMBOL vmlinux 0x74728ac1 __ip_dev_find -EXPORT_SYMBOL vmlinux 0x74754435 acpi_bus_generate_netlink_event -EXPORT_SYMBOL vmlinux 0x7483dc59 pci_dev_present -EXPORT_SYMBOL vmlinux 0x7487414a blk_queue_logical_block_size -EXPORT_SYMBOL vmlinux 0x74a23dbb inet6_del_protocol -EXPORT_SYMBOL vmlinux 0x74b05b8e amd_iommu_domain_enable_v2 -EXPORT_SYMBOL vmlinux 0x74b8e674 slhc_toss -EXPORT_SYMBOL vmlinux 0x74be51c1 input_mt_drop_unused -EXPORT_SYMBOL vmlinux 0x74c134b9 __sw_hweight32 -EXPORT_SYMBOL vmlinux 0x74c38ff2 __neigh_set_probe_once -EXPORT_SYMBOL vmlinux 0x74cfbcd3 devm_backlight_device_register -EXPORT_SYMBOL vmlinux 0x74e5ff1a udpv6_encap_enable -EXPORT_SYMBOL vmlinux 0x751d81ea sock_bind_add -EXPORT_SYMBOL vmlinux 0x7530bb0c __SCT__tp_func_write_msr -EXPORT_SYMBOL vmlinux 0x75313b0c genphy_read_lpa -EXPORT_SYMBOL vmlinux 0x7538b132 agp_off -EXPORT_SYMBOL vmlinux 0x754d539c strlen -EXPORT_SYMBOL vmlinux 0x75540f8a devm_clk_get -EXPORT_SYMBOL vmlinux 0x75562ac2 ip_cmsg_recv_offset -EXPORT_SYMBOL vmlinux 0x755f4ba3 blake2s_compress_generic -EXPORT_SYMBOL vmlinux 0x755fcca8 inet_csk_prepare_forced_close -EXPORT_SYMBOL vmlinux 0x756251f2 devm_devfreq_unregister_notifier -EXPORT_SYMBOL vmlinux 0x756d333d setattr_should_drop_sgid -EXPORT_SYMBOL vmlinux 0x7573ad4e km_query -EXPORT_SYMBOL vmlinux 0x75778151 secure_tcpv6_ts_off -EXPORT_SYMBOL vmlinux 0x757e753f mipi_dsi_dcs_set_column_address -EXPORT_SYMBOL vmlinux 0x75826891 skb_free_datagram -EXPORT_SYMBOL vmlinux 0x75871f5e acpi_get_next_object -EXPORT_SYMBOL vmlinux 0x75891c23 blk_get_request -EXPORT_SYMBOL vmlinux 0x75943e25 i8253_lock -EXPORT_SYMBOL vmlinux 0x75a56c87 kmem_cache_size -EXPORT_SYMBOL vmlinux 0x75bda77a seq_hlist_next -EXPORT_SYMBOL vmlinux 0x75ca0360 unregister_nexthop_notifier -EXPORT_SYMBOL vmlinux 0x75d0deb9 nsecs_to_jiffies64 -EXPORT_SYMBOL vmlinux 0x75d499dd vmcore_add_device_dump -EXPORT_SYMBOL vmlinux 0x75db9ffd lookup_one_len -EXPORT_SYMBOL vmlinux 0x760a0f4f yield -EXPORT_SYMBOL vmlinux 0x7618af39 hdmi_infoframe_check -EXPORT_SYMBOL vmlinux 0x761a6c11 buffer_migrate_page -EXPORT_SYMBOL vmlinux 0x761b77da inet6_offloads -EXPORT_SYMBOL vmlinux 0x7624249e dim_park_tired -EXPORT_SYMBOL vmlinux 0x76286ed6 neigh_app_ns -EXPORT_SYMBOL vmlinux 0x7628f606 unregister_filesystem -EXPORT_SYMBOL vmlinux 0x763d3aed register_shrinker -EXPORT_SYMBOL vmlinux 0x7647726c handle_sysrq -EXPORT_SYMBOL vmlinux 0x7658d798 agp_alloc_page_array -EXPORT_SYMBOL vmlinux 0x765ff474 crc_t10dif_generic -EXPORT_SYMBOL vmlinux 0x7669acb1 pci_clear_master -EXPORT_SYMBOL vmlinux 0x766a0927 mempool_alloc_pages -EXPORT_SYMBOL vmlinux 0x767dce4b acpi_disable_all_gpes -EXPORT_SYMBOL vmlinux 0x767ddb02 set_memory_wc -EXPORT_SYMBOL vmlinux 0x7684abac devfreq_add_device -EXPORT_SYMBOL vmlinux 0x768b7a5f inet6_add_offload -EXPORT_SYMBOL vmlinux 0x769f6e64 errseq_check -EXPORT_SYMBOL vmlinux 0x76a8ca17 dev_get_iflink -EXPORT_SYMBOL vmlinux 0x76ae87d7 kfree_skb_reason -EXPORT_SYMBOL vmlinux 0x76b0debe pci_scan_root_bus -EXPORT_SYMBOL vmlinux 0x76bad923 scsi_eh_restore_cmnd -EXPORT_SYMBOL vmlinux 0x76c5d54a phy_write_mmd -EXPORT_SYMBOL vmlinux 0x76d3cd60 laptop_mode -EXPORT_SYMBOL vmlinux 0x76e26996 dma_resv_reserve_shared -EXPORT_SYMBOL vmlinux 0x76f3d344 inet6_release -EXPORT_SYMBOL vmlinux 0x76fb08a7 amd_iommu_unregister_ppr_notifier -EXPORT_SYMBOL vmlinux 0x77174d2b jbd2_journal_check_used_features -EXPORT_SYMBOL vmlinux 0x7732159c free_irq_cpu_rmap -EXPORT_SYMBOL vmlinux 0x77358855 iomem_resource -EXPORT_SYMBOL vmlinux 0x773fa409 __kfifo_dma_in_finish_r -EXPORT_SYMBOL vmlinux 0x77456e0a acpi_root_dir -EXPORT_SYMBOL vmlinux 0x776ca93a __clzdi2 -EXPORT_SYMBOL vmlinux 0x7791193f icst525_s2div -EXPORT_SYMBOL vmlinux 0x77916a43 i2c_put_adapter -EXPORT_SYMBOL vmlinux 0x779ea021 would_dump -EXPORT_SYMBOL vmlinux 0x77a57921 ihold -EXPORT_SYMBOL vmlinux 0x77a7c3a4 dst_init -EXPORT_SYMBOL vmlinux 0x77af5496 generic_permission -EXPORT_SYMBOL vmlinux 0x77bc13a0 strim -EXPORT_SYMBOL vmlinux 0x77c709fc pm_vt_switch_unregister -EXPORT_SYMBOL vmlinux 0x77d232ce bd_abort_claiming -EXPORT_SYMBOL vmlinux 0x77e9eb37 aes_encrypt -EXPORT_SYMBOL vmlinux 0x77f7db33 __traceiter_dma_fence_signaled -EXPORT_SYMBOL vmlinux 0x77f9de20 gnet_stats_copy_basic_hw -EXPORT_SYMBOL vmlinux 0x7807f0f8 schedule_timeout_idle -EXPORT_SYMBOL vmlinux 0x780d8d12 dev_queue_xmit -EXPORT_SYMBOL vmlinux 0x780fdfd1 intel_enable_gtt -EXPORT_SYMBOL vmlinux 0x782483f3 __devm_mdiobus_register -EXPORT_SYMBOL vmlinux 0x78259322 find_get_pages_contig -EXPORT_SYMBOL vmlinux 0x782ecdc9 fs_param_is_path -EXPORT_SYMBOL vmlinux 0x7834defd vfio_group_unpin_pages -EXPORT_SYMBOL vmlinux 0x78363144 eisa_driver_register -EXPORT_SYMBOL vmlinux 0x783debb9 get_tree_bdev -EXPORT_SYMBOL vmlinux 0x7846af3e __kfifo_len_r -EXPORT_SYMBOL vmlinux 0x7880c781 dm_kcopyd_prepare_callback -EXPORT_SYMBOL vmlinux 0x78943f0a devfreq_monitor_stop -EXPORT_SYMBOL vmlinux 0x789affb1 frontswap_tmem_exclusive_gets -EXPORT_SYMBOL vmlinux 0x789bc2dd tcp_timewait_state_process -EXPORT_SYMBOL vmlinux 0x78a16f48 aes_decrypt -EXPORT_SYMBOL vmlinux 0x78abc079 eth_header_cache -EXPORT_SYMBOL vmlinux 0x78afdcad vfs_get_fsid -EXPORT_SYMBOL vmlinux 0x78b23364 md_integrity_register -EXPORT_SYMBOL vmlinux 0x78b887ed vsprintf -EXPORT_SYMBOL vmlinux 0x78bf1340 security_sk_clone -EXPORT_SYMBOL vmlinux 0x78df6bd7 no_pci_devices -EXPORT_SYMBOL vmlinux 0x78ec1b72 jbd2_journal_invalidatepage -EXPORT_SYMBOL vmlinux 0x78f1a50c ww_mutex_unlock -EXPORT_SYMBOL vmlinux 0x790bafd4 blk_stack_limits -EXPORT_SYMBOL vmlinux 0x791062b1 blk_queue_physical_block_size -EXPORT_SYMBOL vmlinux 0x7917a0b8 kill_pgrp -EXPORT_SYMBOL vmlinux 0x791b3955 read_cache_page -EXPORT_SYMBOL vmlinux 0x791e4f95 posix_acl_chmod -EXPORT_SYMBOL vmlinux 0x79344e56 kernel_sendmsg_locked -EXPORT_SYMBOL vmlinux 0x7938305f genl_register_family -EXPORT_SYMBOL vmlinux 0x793a6392 sk_page_frag_refill -EXPORT_SYMBOL vmlinux 0x793ff62d __tty_insert_flip_char -EXPORT_SYMBOL vmlinux 0x7940069a inet_del_protocol -EXPORT_SYMBOL vmlinux 0x79426666 alloc_buffer_head -EXPORT_SYMBOL vmlinux 0x7944dedd migrate_vma_setup -EXPORT_SYMBOL vmlinux 0x7949d96c tcp_recvmsg -EXPORT_SYMBOL vmlinux 0x794d1ee4 scsi_print_result -EXPORT_SYMBOL vmlinux 0x79739c3c utf8nagemin -EXPORT_SYMBOL vmlinux 0x7984eefc key_update -EXPORT_SYMBOL vmlinux 0x79a33f85 vme_get_size -EXPORT_SYMBOL vmlinux 0x79a8d92c seq_puts -EXPORT_SYMBOL vmlinux 0x79c3ecee scsi_host_put -EXPORT_SYMBOL vmlinux 0x79c5b093 file_open_root -EXPORT_SYMBOL vmlinux 0x79c8c5fe tcp_ld_RTO_revert -EXPORT_SYMBOL vmlinux 0x79df9633 ioremap_encrypted -EXPORT_SYMBOL vmlinux 0x79ec8f93 blk_start_plug -EXPORT_SYMBOL vmlinux 0x7a0235f2 __sk_mem_reduce_allocated -EXPORT_SYMBOL vmlinux 0x7a09a064 seg6_hmac_compute -EXPORT_SYMBOL vmlinux 0x7a0da4f5 dev_open -EXPORT_SYMBOL vmlinux 0x7a0dfbf5 phy_register_fixup_for_id -EXPORT_SYMBOL vmlinux 0x7a1bcd59 gf128mul_x8_ble -EXPORT_SYMBOL vmlinux 0x7a1f83d7 bit_waitqueue -EXPORT_SYMBOL vmlinux 0x7a2af7b4 cpu_number -EXPORT_SYMBOL vmlinux 0x7a3f09ae bio_init -EXPORT_SYMBOL vmlinux 0x7a3f96fe dev_pick_tx_zero -EXPORT_SYMBOL vmlinux 0x7a4096a2 __serio_register_port -EXPORT_SYMBOL vmlinux 0x7a460fe9 tcf_action_check_ctrlact -EXPORT_SYMBOL vmlinux 0x7a53a06d flow_indr_dev_exists -EXPORT_SYMBOL vmlinux 0x7a596e1e param_get_ushort -EXPORT_SYMBOL vmlinux 0x7a6ad44e xfrm6_rcv -EXPORT_SYMBOL vmlinux 0x7a769d08 iov_iter_kvec -EXPORT_SYMBOL vmlinux 0x7a88da87 iosf_mbi_write -EXPORT_SYMBOL vmlinux 0x7a95e5ae do_settimeofday64 -EXPORT_SYMBOL vmlinux 0x7a9c0313 devm_ioremap_wc -EXPORT_SYMBOL vmlinux 0x7aa1756e kvfree -EXPORT_SYMBOL vmlinux 0x7aa60a42 sync_dirty_buffer -EXPORT_SYMBOL vmlinux 0x7ab88a45 system_freezing_cnt -EXPORT_SYMBOL vmlinux 0x7ad050b9 qid_lt -EXPORT_SYMBOL vmlinux 0x7adc0fbf rb_replace_node_rcu -EXPORT_SYMBOL vmlinux 0x7ae8e068 bioset_init_from_src -EXPORT_SYMBOL vmlinux 0x7af1772a mmc_can_gpio_ro -EXPORT_SYMBOL vmlinux 0x7af400f0 d_find_alias -EXPORT_SYMBOL vmlinux 0x7af875ed fs_param_is_blob -EXPORT_SYMBOL vmlinux 0x7aff77a3 __cpu_present_mask -EXPORT_SYMBOL vmlinux 0x7b0a99c5 i2c_verify_client -EXPORT_SYMBOL vmlinux 0x7b1c1d9c rproc_get_by_child -EXPORT_SYMBOL vmlinux 0x7b1c1f7d override_creds -EXPORT_SYMBOL vmlinux 0x7b37d4a7 _find_first_zero_bit -EXPORT_SYMBOL vmlinux 0x7b5b8f31 sha256_update -EXPORT_SYMBOL vmlinux 0x7b5f7267 import_single_range -EXPORT_SYMBOL vmlinux 0x7b722161 dma_resv_init -EXPORT_SYMBOL vmlinux 0x7ba2eb99 kmem_cache_alloc_trace -EXPORT_SYMBOL vmlinux 0x7bb50b88 acpi_write -EXPORT_SYMBOL vmlinux 0x7bbaff3f netpoll_parse_options -EXPORT_SYMBOL vmlinux 0x7bbccd05 nr_node_ids -EXPORT_SYMBOL vmlinux 0x7bc9b23e pci_msi_vec_count -EXPORT_SYMBOL vmlinux 0x7bd5bea8 netlink_ns_capable -EXPORT_SYMBOL vmlinux 0x7bd960e8 clk_bulk_get_all -EXPORT_SYMBOL vmlinux 0x7bde998d dquot_initialize -EXPORT_SYMBOL vmlinux 0x7be2767c inet_accept -EXPORT_SYMBOL vmlinux 0x7be28ddf rproc_add_subdev -EXPORT_SYMBOL vmlinux 0x7c00d4f2 pci_map_rom -EXPORT_SYMBOL vmlinux 0x7c00fa03 __getblk_gfp -EXPORT_SYMBOL vmlinux 0x7c027125 gnet_stats_start_copy_compat -EXPORT_SYMBOL vmlinux 0x7c173634 __bitmap_complement -EXPORT_SYMBOL vmlinux 0x7c245dbb pcie_capability_write_word -EXPORT_SYMBOL vmlinux 0x7c2d9960 dump_emit -EXPORT_SYMBOL vmlinux 0x7c43b7ad migrate_page_states -EXPORT_SYMBOL vmlinux 0x7c46233a cpufreq_quick_get -EXPORT_SYMBOL vmlinux 0x7c6cb9a9 sk_stop_timer -EXPORT_SYMBOL vmlinux 0x7c7143c4 md_reap_sync_thread -EXPORT_SYMBOL vmlinux 0x7c7ac353 skb_add_rx_frag -EXPORT_SYMBOL vmlinux 0x7c84755f splice_direct_to_actor -EXPORT_SYMBOL vmlinux 0x7c88f652 cdev_device_del -EXPORT_SYMBOL vmlinux 0x7c8f2909 flow_indr_dev_register -EXPORT_SYMBOL vmlinux 0x7c9ca58f __sg_page_iter_next -EXPORT_SYMBOL vmlinux 0x7cb1aea1 devlink_dpipe_header_ethernet -EXPORT_SYMBOL vmlinux 0x7cc0f7e1 security_tun_dev_attach -EXPORT_SYMBOL vmlinux 0x7cd8d75e page_offset_base -EXPORT_SYMBOL vmlinux 0x7ce18c9f from_kqid -EXPORT_SYMBOL vmlinux 0x7ce58981 kvrealloc -EXPORT_SYMBOL vmlinux 0x7cf22e35 ip_sock_set_tos -EXPORT_SYMBOL vmlinux 0x7cf35220 vme_master_free -EXPORT_SYMBOL vmlinux 0x7cf9fce2 xfrm_init_state -EXPORT_SYMBOL vmlinux 0x7cfad21b mmc_wait_for_req_done -EXPORT_SYMBOL vmlinux 0x7cfe368d net_dim_get_def_tx_moderation -EXPORT_SYMBOL vmlinux 0x7cfe6a21 filemap_fdatawrite_range -EXPORT_SYMBOL vmlinux 0x7d067b4d pci_find_bus -EXPORT_SYMBOL vmlinux 0x7d0db45c jiffies_to_clock_t -EXPORT_SYMBOL vmlinux 0x7d100823 unload_nls -EXPORT_SYMBOL vmlinux 0x7d12d76d acpi_get_parent -EXPORT_SYMBOL vmlinux 0x7d1c95f7 sk_dst_check -EXPORT_SYMBOL vmlinux 0x7d47f1ab freezing_slow_path -EXPORT_SYMBOL vmlinux 0x7d4b176a netlbl_catmap_setbit -EXPORT_SYMBOL vmlinux 0x7d5e1008 __crc32c_le_shift -EXPORT_SYMBOL vmlinux 0x7d5f14a1 pnp_get_resource -EXPORT_SYMBOL vmlinux 0x7d628444 memcpy_fromio -EXPORT_SYMBOL vmlinux 0x7d7165e4 posix_test_lock -EXPORT_SYMBOL vmlinux 0x7d74d522 kstrtoull_from_user -EXPORT_SYMBOL vmlinux 0x7d7fcc45 kernel_sock_ip_overhead -EXPORT_SYMBOL vmlinux 0x7d8c3cbe unregister_key_type -EXPORT_SYMBOL vmlinux 0x7da720b4 dma_unmap_page_attrs -EXPORT_SYMBOL vmlinux 0x7daece67 quota_send_warning -EXPORT_SYMBOL vmlinux 0x7db4b82f sock_release -EXPORT_SYMBOL vmlinux 0x7dcea120 dmam_pool_create -EXPORT_SYMBOL vmlinux 0x7dd554fc unregister_kmmio_probe -EXPORT_SYMBOL vmlinux 0x7dde98b2 udp_lib_getsockopt -EXPORT_SYMBOL vmlinux 0x7ddffab5 ipv6_chk_addr -EXPORT_SYMBOL vmlinux 0x7debb7dc jbd2_journal_errno -EXPORT_SYMBOL vmlinux 0x7dec27e8 ethtool_virtdev_set_link_ksettings -EXPORT_SYMBOL vmlinux 0x7dec3f00 pm8606_osc_enable -EXPORT_SYMBOL vmlinux 0x7deff0f3 __alloc_pages -EXPORT_SYMBOL vmlinux 0x7deff673 dm_consume_args -EXPORT_SYMBOL vmlinux 0x7e0a4444 xen_free_unpopulated_pages -EXPORT_SYMBOL vmlinux 0x7e2d0aa9 netpoll_send_udp -EXPORT_SYMBOL vmlinux 0x7e3191f6 try_to_del_timer_sync -EXPORT_SYMBOL vmlinux 0x7e40b31b page_pool_update_nid -EXPORT_SYMBOL vmlinux 0x7e585697 inet_pton_with_scope -EXPORT_SYMBOL vmlinux 0x7e61daf3 tty_port_tty_get -EXPORT_SYMBOL vmlinux 0x7e6c792e gen_pool_fixed_alloc -EXPORT_SYMBOL vmlinux 0x7e7a1fb9 inet_rtx_syn_ack -EXPORT_SYMBOL vmlinux 0x7e7bcf26 acpi_map_cpu -EXPORT_SYMBOL vmlinux 0x7e87a543 cdev_device_add -EXPORT_SYMBOL vmlinux 0x7e8e69c7 dev_mc_add -EXPORT_SYMBOL vmlinux 0x7e8e7314 blk_mq_end_request -EXPORT_SYMBOL vmlinux 0x7e94d679 __zerocopy_sg_from_iter -EXPORT_SYMBOL vmlinux 0x7ee577fe dma_fence_add_callback -EXPORT_SYMBOL vmlinux 0x7ef72444 sock_gettstamp -EXPORT_SYMBOL vmlinux 0x7ef8e8b6 __dev_kfree_skb_irq -EXPORT_SYMBOL vmlinux 0x7f02188f __msecs_to_jiffies -EXPORT_SYMBOL vmlinux 0x7f03b6a9 crc_ccitt_table -EXPORT_SYMBOL vmlinux 0x7f07418b __SCT__tp_func_kmem_cache_alloc_node -EXPORT_SYMBOL vmlinux 0x7f1333f0 rdmacg_try_charge -EXPORT_SYMBOL vmlinux 0x7f23f1c1 device_get_mac_address -EXPORT_SYMBOL vmlinux 0x7f24de73 jiffies_to_usecs -EXPORT_SYMBOL vmlinux 0x7f270918 qdisc_reset -EXPORT_SYMBOL vmlinux 0x7f3092b5 kernel_bind -EXPORT_SYMBOL vmlinux 0x7f47487a make_kuid -EXPORT_SYMBOL vmlinux 0x7f4cc545 phy_ethtool_ksettings_get -EXPORT_SYMBOL vmlinux 0x7f4f1a5f seg6_hmac_info_del -EXPORT_SYMBOL vmlinux 0x7f52071a net_dim -EXPORT_SYMBOL vmlinux 0x7f5b4fe4 sg_free_table -EXPORT_SYMBOL vmlinux 0x7f5e368a proc_create_mount_point -EXPORT_SYMBOL vmlinux 0x7f6ba87b filemap_check_errors -EXPORT_SYMBOL vmlinux 0x7f6c5cf3 netdev_lower_dev_get_private -EXPORT_SYMBOL vmlinux 0x7f6da69b rt_write_lock -EXPORT_SYMBOL vmlinux 0x7f7f7bb4 irq_poll_disable -EXPORT_SYMBOL vmlinux 0x7f9ba7c7 netdev_adjacent_change_abort -EXPORT_SYMBOL vmlinux 0x7fb05ffd f_setown -EXPORT_SYMBOL vmlinux 0x7fb16736 set_create_files_as -EXPORT_SYMBOL vmlinux 0x7fb2c0c9 fscrypt_ioctl_set_policy -EXPORT_SYMBOL vmlinux 0x7fc7a6c3 starget_for_each_device -EXPORT_SYMBOL vmlinux 0x7fe32873 rb_replace_node -EXPORT_SYMBOL vmlinux 0x7ffa06bf scsi_report_device_reset -EXPORT_SYMBOL vmlinux 0x8007263a vfs_mkobj -EXPORT_SYMBOL vmlinux 0x80116ca8 unregister_md_personality -EXPORT_SYMBOL vmlinux 0x80123448 vfs_fsync -EXPORT_SYMBOL vmlinux 0x8013de44 forget_cached_acl -EXPORT_SYMBOL vmlinux 0x801db1ba phy_do_ioctl_running -EXPORT_SYMBOL vmlinux 0x801dfd9e vme_slot_num -EXPORT_SYMBOL vmlinux 0x801ed473 mmc_of_parse_clk_phase -EXPORT_SYMBOL vmlinux 0x802bd1c6 block_commit_write -EXPORT_SYMBOL vmlinux 0x802bf8b5 sget -EXPORT_SYMBOL vmlinux 0x802ceb02 mr_fill_mroute -EXPORT_SYMBOL vmlinux 0x8031fdf3 mipi_dsi_set_maximum_return_packet_size -EXPORT_SYMBOL vmlinux 0x803ddbb6 __posix_acl_create -EXPORT_SYMBOL vmlinux 0x80432628 idr_for_each -EXPORT_SYMBOL vmlinux 0x80441e95 register_key_type -EXPORT_SYMBOL vmlinux 0x804af87c wrmsr_safe_on_cpu -EXPORT_SYMBOL vmlinux 0x80642f7c input_set_abs_params -EXPORT_SYMBOL vmlinux 0x806cdce6 tty_wait_until_sent -EXPORT_SYMBOL vmlinux 0x8073ba4e flow_rule_alloc -EXPORT_SYMBOL vmlinux 0x80809daf get_cached_acl -EXPORT_SYMBOL vmlinux 0x80852417 pci_read_config_dword -EXPORT_SYMBOL vmlinux 0x808777e8 i2c_transfer -EXPORT_SYMBOL vmlinux 0x809712ff hdmi_avi_infoframe_pack -EXPORT_SYMBOL vmlinux 0x80a717a8 __percpu_counter_compare -EXPORT_SYMBOL vmlinux 0x80b9caa7 skb_dequeue -EXPORT_SYMBOL vmlinux 0x80bb5e9c generic_perform_write -EXPORT_SYMBOL vmlinux 0x80ca5026 _bin2bcd -EXPORT_SYMBOL vmlinux 0x80d3926d scsi_eh_prep_cmnd -EXPORT_SYMBOL vmlinux 0x80d68d3e fb_register_client -EXPORT_SYMBOL vmlinux 0x80dec9d1 xattr_supported_namespace -EXPORT_SYMBOL vmlinux 0x80e5de29 dcbnl_ieee_notify -EXPORT_SYMBOL vmlinux 0x80e5f86f fscrypt_fname_alloc_buffer -EXPORT_SYMBOL vmlinux 0x80eddec9 fs_param_is_string -EXPORT_SYMBOL vmlinux 0x80f04749 __sk_queue_drop_skb -EXPORT_SYMBOL vmlinux 0x80f702d6 lockref_put_not_zero -EXPORT_SYMBOL vmlinux 0x8104bd7c scsi_block_requests -EXPORT_SYMBOL vmlinux 0x810bef7e sg_free_append_table -EXPORT_SYMBOL vmlinux 0x810d00c2 lock_sock_nested -EXPORT_SYMBOL vmlinux 0x8112b3d2 scsi_build_sense_buffer -EXPORT_SYMBOL vmlinux 0x8117de4c xfrm_policy_insert -EXPORT_SYMBOL vmlinux 0x81188c30 match_string -EXPORT_SYMBOL vmlinux 0x8125acbb mutex_lock_interruptible -EXPORT_SYMBOL vmlinux 0x8127e552 alloc_file_pseudo -EXPORT_SYMBOL vmlinux 0x812c8400 refcount_dec_and_mutex_lock -EXPORT_SYMBOL vmlinux 0x81381881 block_read_full_page -EXPORT_SYMBOL vmlinux 0x813912d8 __alloc_disk_node -EXPORT_SYMBOL vmlinux 0x81412cdf udp6_set_csum -EXPORT_SYMBOL vmlinux 0x814d1110 dma_sync_sg_for_cpu -EXPORT_SYMBOL vmlinux 0x81533963 sysfs_format_mac -EXPORT_SYMBOL vmlinux 0x815b5dd4 match_octal -EXPORT_SYMBOL vmlinux 0x815f2897 empty_zero_page -EXPORT_SYMBOL vmlinux 0x816347c6 agp_device_command -EXPORT_SYMBOL vmlinux 0x818416e1 scsi_set_sense_information -EXPORT_SYMBOL vmlinux 0x819d38fe __seq_open_private -EXPORT_SYMBOL vmlinux 0x81ac5e33 trace_print_hex_dump_seq -EXPORT_SYMBOL vmlinux 0x81c75a67 tcf_action_dump_1 -EXPORT_SYMBOL vmlinux 0x81ce9941 intel_scu_ipc_dev_writev -EXPORT_SYMBOL vmlinux 0x81dae6e1 dma_fence_default_wait -EXPORT_SYMBOL vmlinux 0x81db6ebb xz_dec_reset -EXPORT_SYMBOL vmlinux 0x81dfe236 thaw_super -EXPORT_SYMBOL vmlinux 0x81e6b37f dmi_get_system_info -EXPORT_SYMBOL vmlinux 0x81e9604f dev_get_by_name -EXPORT_SYMBOL vmlinux 0x82023dd0 pci_free_host_bridge -EXPORT_SYMBOL vmlinux 0x821185dd netif_device_detach -EXPORT_SYMBOL vmlinux 0x8213cd18 mipi_dsi_dcs_set_pixel_format -EXPORT_SYMBOL vmlinux 0x821882b3 inet_proto_csum_replace_by_diff -EXPORT_SYMBOL vmlinux 0x823c19ea iosf_mbi_unregister_pmic_bus_access_notifier_unlocked -EXPORT_SYMBOL vmlinux 0x823d5bf8 jbd2_journal_init_inode -EXPORT_SYMBOL vmlinux 0x8255a485 pm860x_reg_read -EXPORT_SYMBOL vmlinux 0x82616879 bh_uptodate_or_lock -EXPORT_SYMBOL vmlinux 0x827137d5 __xfrm_dst_lookup -EXPORT_SYMBOL vmlinux 0x8273e589 phy_loopback -EXPORT_SYMBOL vmlinux 0x828062b1 __frontswap_init -EXPORT_SYMBOL vmlinux 0x82851f85 security_sb_clone_mnt_opts -EXPORT_SYMBOL vmlinux 0x82852bde mmc_set_blocklen -EXPORT_SYMBOL vmlinux 0x82855afc security_inode_init_security -EXPORT_SYMBOL vmlinux 0x82897d12 get_user_pages -EXPORT_SYMBOL vmlinux 0x82a9d9a8 dma_async_device_register -EXPORT_SYMBOL vmlinux 0x82c87ad5 nr_online_nodes -EXPORT_SYMBOL vmlinux 0x82dfa118 get_task_cred -EXPORT_SYMBOL vmlinux 0x82ee90dc timer_delete_sync -EXPORT_SYMBOL vmlinux 0x830ee711 cdev_set_parent -EXPORT_SYMBOL vmlinux 0x831865f8 zpool_register_driver -EXPORT_SYMBOL vmlinux 0x831cc964 md_error -EXPORT_SYMBOL vmlinux 0x832701b9 __tracepoint_kmem_cache_alloc -EXPORT_SYMBOL vmlinux 0x8328342f cdrom_check_events -EXPORT_SYMBOL vmlinux 0x832b8659 __frontswap_store -EXPORT_SYMBOL vmlinux 0x833a5977 ip6_find_1stfragopt -EXPORT_SYMBOL vmlinux 0x833ed9d6 pci_enable_device -EXPORT_SYMBOL vmlinux 0x83581089 gf128mul_init_4k_lle -EXPORT_SYMBOL vmlinux 0x8378562f done_path_create -EXPORT_SYMBOL vmlinux 0x837b7b09 __dynamic_pr_debug -EXPORT_SYMBOL vmlinux 0x838beb00 ll_rw_block -EXPORT_SYMBOL vmlinux 0x838d2bc8 siphash_3u32 -EXPORT_SYMBOL vmlinux 0x83bb129d block_write_end -EXPORT_SYMBOL vmlinux 0x83c8b408 ip6_frag_next -EXPORT_SYMBOL vmlinux 0x83ebb9fc scsi_remove_device -EXPORT_SYMBOL vmlinux 0x83f1f636 mark_page_accessed -EXPORT_SYMBOL vmlinux 0x83f40893 blk_rq_map_kern -EXPORT_SYMBOL vmlinux 0x8402bb85 neigh_connected_output -EXPORT_SYMBOL vmlinux 0x840342c6 sgl_free -EXPORT_SYMBOL vmlinux 0x8403c1b0 sk_send_sigurg -EXPORT_SYMBOL vmlinux 0x84175b3f phy_ethtool_set_eee -EXPORT_SYMBOL vmlinux 0x8427cc7b _raw_spin_lock_irq -EXPORT_SYMBOL vmlinux 0x842c8e9d ioread16 -EXPORT_SYMBOL vmlinux 0x843adb8c pnp_unregister_card_driver -EXPORT_SYMBOL vmlinux 0x844b2b72 unlock_page_memcg -EXPORT_SYMBOL vmlinux 0x84823cf3 nla_strscpy -EXPORT_SYMBOL vmlinux 0x848d372e iowrite8 -EXPORT_SYMBOL vmlinux 0x84973985 nvdimm_namespace_common_probe -EXPORT_SYMBOL vmlinux 0x84a94039 md_bitmap_close_sync -EXPORT_SYMBOL vmlinux 0x84a9d6c9 param_ops_ullong -EXPORT_SYMBOL vmlinux 0x84bbcea9 mipi_dsi_dcs_get_power_mode -EXPORT_SYMBOL vmlinux 0x84c87ce3 __dynamic_dev_dbg -EXPORT_SYMBOL vmlinux 0x84d818d7 sk_stop_timer_sync -EXPORT_SYMBOL vmlinux 0x84e60f2e writeback_inodes_sb -EXPORT_SYMBOL vmlinux 0x84f94c59 radix_tree_tag_clear -EXPORT_SYMBOL vmlinux 0x8518a4a6 _raw_spin_trylock_bh -EXPORT_SYMBOL vmlinux 0x8522d6bc strncpy_from_user -EXPORT_SYMBOL vmlinux 0x85340a33 timestamp_truncate -EXPORT_SYMBOL vmlinux 0x8537bbc9 netdev_update_features -EXPORT_SYMBOL vmlinux 0x85534cac dev_uc_del -EXPORT_SYMBOL vmlinux 0x8559c1c1 rtnetlink_put_metrics -EXPORT_SYMBOL vmlinux 0x85670f1d rtnl_is_locked -EXPORT_SYMBOL vmlinux 0x85734a01 inet6_getname -EXPORT_SYMBOL vmlinux 0x8591d7d5 ledtrig_mtd_activity -EXPORT_SYMBOL vmlinux 0x8597ef71 __hw_addr_unsync_dev -EXPORT_SYMBOL vmlinux 0x85b4cf2f utf8nlen -EXPORT_SYMBOL vmlinux 0x85b5e625 rfkill_set_states -EXPORT_SYMBOL vmlinux 0x85bd1608 __request_region -EXPORT_SYMBOL vmlinux 0x85c76f5f fs_param_is_s32 -EXPORT_SYMBOL vmlinux 0x85ce1a21 phy_free_interrupt -EXPORT_SYMBOL vmlinux 0x85ce7768 mdiobus_write -EXPORT_SYMBOL vmlinux 0x85d7cb66 get_tree_nodev -EXPORT_SYMBOL vmlinux 0x85df9b6c strsep -EXPORT_SYMBOL vmlinux 0x85efc7e0 zero_pfn -EXPORT_SYMBOL vmlinux 0x85f69bfa tty_unlock -EXPORT_SYMBOL vmlinux 0x85fe6752 __tracepoint_rdpmc -EXPORT_SYMBOL vmlinux 0x86083638 ipmr_rule_default -EXPORT_SYMBOL vmlinux 0x8608afd5 xfrm_spd_getinfo -EXPORT_SYMBOL vmlinux 0x860b41bb mmc_gpiod_request_ro -EXPORT_SYMBOL vmlinux 0x8631287d netlink_net_capable -EXPORT_SYMBOL vmlinux 0x863a276a color_table -EXPORT_SYMBOL vmlinux 0x863ab3a2 rt_mutex_base_init -EXPORT_SYMBOL vmlinux 0x8644ea53 tty_port_hangup -EXPORT_SYMBOL vmlinux 0x864a807a ppp_unit_number -EXPORT_SYMBOL vmlinux 0x865416fd vme_dma_request -EXPORT_SYMBOL vmlinux 0x865aff0a i8042_remove_filter -EXPORT_SYMBOL vmlinux 0x866a62b2 gnet_stats_basic_sync_init -EXPORT_SYMBOL vmlinux 0x8675e5be inet_stream_connect -EXPORT_SYMBOL vmlinux 0x868acba5 get_options -EXPORT_SYMBOL vmlinux 0x86a44fe5 radix_tree_lookup -EXPORT_SYMBOL vmlinux 0x86b91165 agp_generic_alloc_page -EXPORT_SYMBOL vmlinux 0x86c7272b iosf_mbi_read -EXPORT_SYMBOL vmlinux 0x86cc480c ilookup5 -EXPORT_SYMBOL vmlinux 0x86cc619f security_dentry_create_files_as -EXPORT_SYMBOL vmlinux 0x86d52ba5 lookup_constant -EXPORT_SYMBOL vmlinux 0x86f27420 iosf_mbi_block_punit_i2c_access -EXPORT_SYMBOL vmlinux 0x86f499f9 tcp_parse_options -EXPORT_SYMBOL vmlinux 0x86fb4536 cpumask_any_and_distribute -EXPORT_SYMBOL vmlinux 0x86fb9b05 bitmap_parse_user -EXPORT_SYMBOL vmlinux 0x86fdf13c scsi_done -EXPORT_SYMBOL vmlinux 0x87060683 is_nd_pfn -EXPORT_SYMBOL vmlinux 0x870e7f2f netdev_emerg -EXPORT_SYMBOL vmlinux 0x8714563b csum_and_copy_from_user -EXPORT_SYMBOL vmlinux 0x871a0a39 vlan_filter_push_vids -EXPORT_SYMBOL vmlinux 0x873ade39 blk_pre_runtime_resume -EXPORT_SYMBOL vmlinux 0x875d4e1d mipi_dsi_dcs_read -EXPORT_SYMBOL vmlinux 0x8761c87b rps_needed -EXPORT_SYMBOL vmlinux 0x87706d4e __put_user_nocheck_8 -EXPORT_SYMBOL vmlinux 0x87761528 __traceiter_kmem_cache_alloc -EXPORT_SYMBOL vmlinux 0x8779c4e4 sock_kzfree_s -EXPORT_SYMBOL vmlinux 0x877ed372 put_cmsg_scm_timestamping64 -EXPORT_SYMBOL vmlinux 0x878469bd ZSTD_decompressStream -EXPORT_SYMBOL vmlinux 0x8791f4dd inet_csk_complete_hashdance -EXPORT_SYMBOL vmlinux 0x87974ea2 mmc_wait_for_req -EXPORT_SYMBOL vmlinux 0x87a08733 file_fdatawait_range -EXPORT_SYMBOL vmlinux 0x87a21cb3 __ubsan_handle_out_of_bounds -EXPORT_SYMBOL vmlinux 0x87ab9cf3 pci_pme_capable -EXPORT_SYMBOL vmlinux 0x87b86777 __inet_stream_connect -EXPORT_SYMBOL vmlinux 0x87b8798d sg_next -EXPORT_SYMBOL vmlinux 0x87cea6ae __register_binfmt -EXPORT_SYMBOL vmlinux 0x8807e556 kill_litter_super -EXPORT_SYMBOL vmlinux 0x8810754a _find_first_bit -EXPORT_SYMBOL vmlinux 0x881e697e vlan_dev_vlan_proto -EXPORT_SYMBOL vmlinux 0x88258526 key_reject_and_link -EXPORT_SYMBOL vmlinux 0x882bd766 inode_dio_wait -EXPORT_SYMBOL vmlinux 0x884f6574 textsearch_find_continuous -EXPORT_SYMBOL vmlinux 0x88590dab mipi_dsi_dcs_set_tear_on -EXPORT_SYMBOL vmlinux 0x8859996c proc_mkdir -EXPORT_SYMBOL vmlinux 0x8870c9d4 mark_buffer_write_io_error -EXPORT_SYMBOL vmlinux 0x88822d38 unregister_blocking_lsm_notifier -EXPORT_SYMBOL vmlinux 0x8888f1fe xxh32 -EXPORT_SYMBOL vmlinux 0x88a2fe53 get_phy_device -EXPORT_SYMBOL vmlinux 0x88abb78b ZSTD_insertBlock -EXPORT_SYMBOL vmlinux 0x88b72c74 genphy_write_mmd_unsupported -EXPORT_SYMBOL vmlinux 0x88c0e190 bio_chain -EXPORT_SYMBOL vmlinux 0x88c20c75 phy_read_mmd -EXPORT_SYMBOL vmlinux 0x88c88474 _atomic_dec_and_lock -EXPORT_SYMBOL vmlinux 0x88caec37 inet6_unregister_protosw -EXPORT_SYMBOL vmlinux 0x88cc9720 jbd2_journal_try_to_free_buffers -EXPORT_SYMBOL vmlinux 0x88d186f6 input_unregister_handle -EXPORT_SYMBOL vmlinux 0x88d44031 ptp_clock_event -EXPORT_SYMBOL vmlinux 0x88d48f71 dev_pre_changeaddr_notify -EXPORT_SYMBOL vmlinux 0x88dada10 kmem_cache_shrink -EXPORT_SYMBOL vmlinux 0x88db9f48 __check_object_size -EXPORT_SYMBOL vmlinux 0x88e1d0f0 page_frag_free -EXPORT_SYMBOL vmlinux 0x88f46bc0 generic_file_mmap -EXPORT_SYMBOL vmlinux 0x8905d6d6 scm_fp_dup -EXPORT_SYMBOL vmlinux 0x89226d4e skb_vlan_push -EXPORT_SYMBOL vmlinux 0x892dc6de __dynamic_netdev_dbg -EXPORT_SYMBOL vmlinux 0x892f7496 inet_select_addr -EXPORT_SYMBOL vmlinux 0x89320801 skb_kill_datagram -EXPORT_SYMBOL vmlinux 0x894e54ad skb_store_bits -EXPORT_SYMBOL vmlinux 0x89583372 inode_update_time -EXPORT_SYMBOL vmlinux 0x8990b23e param_get_bool -EXPORT_SYMBOL vmlinux 0x89b94818 wireless_spy_update -EXPORT_SYMBOL vmlinux 0x89c532a7 follow_down_one -EXPORT_SYMBOL vmlinux 0x89c90c56 dqput -EXPORT_SYMBOL vmlinux 0x89cac952 kthread_destroy_worker -EXPORT_SYMBOL vmlinux 0x89d3e782 pci_unmap_rom -EXPORT_SYMBOL vmlinux 0x89f0f9b9 kthread_create_on_cpu -EXPORT_SYMBOL vmlinux 0x89f3887c param_ops_byte -EXPORT_SYMBOL vmlinux 0x89f66d4d unpin_user_page_range_dirty_lock -EXPORT_SYMBOL vmlinux 0x8a029b19 udp_lib_unhash -EXPORT_SYMBOL vmlinux 0x8a21ca71 t10_pi_type3_crc -EXPORT_SYMBOL vmlinux 0x8a32a0eb unregister_netdev -EXPORT_SYMBOL vmlinux 0x8a35b432 sme_me_mask -EXPORT_SYMBOL vmlinux 0x8a364614 vme_dma_list_free -EXPORT_SYMBOL vmlinux 0x8a440df8 inet6_protos -EXPORT_SYMBOL vmlinux 0x8a47043d LZ4_decompress_safe_continue -EXPORT_SYMBOL vmlinux 0x8a47820b vme_slave_request -EXPORT_SYMBOL vmlinux 0x8a490c90 rfkill_set_sw_state -EXPORT_SYMBOL vmlinux 0x8a6c7139 acpi_mask_gpe -EXPORT_SYMBOL vmlinux 0x8a7094ba vm_brk_flags -EXPORT_SYMBOL vmlinux 0x8a7d1c31 high_memory -EXPORT_SYMBOL vmlinux 0x8a897530 keyring_alloc -EXPORT_SYMBOL vmlinux 0x8a99a016 mempool_free_slab -EXPORT_SYMBOL vmlinux 0x8ac3334b net_dim_get_def_rx_moderation -EXPORT_SYMBOL vmlinux 0x8ac743de sg_copy_buffer -EXPORT_SYMBOL vmlinux 0x8ae3b362 security_sctp_assoc_request -EXPORT_SYMBOL vmlinux 0x8b0088d1 LZ4_decompress_safe_usingDict -EXPORT_SYMBOL vmlinux 0x8b00c879 pcie_capability_clear_and_set_word -EXPORT_SYMBOL vmlinux 0x8b0132ff finish_wait -EXPORT_SYMBOL vmlinux 0x8b026310 __breadahead_gfp -EXPORT_SYMBOL vmlinux 0x8b07b51d flow_block_cb_is_busy -EXPORT_SYMBOL vmlinux 0x8b0d9983 neigh_carrier_down -EXPORT_SYMBOL vmlinux 0x8b4874c7 config_item_set_name -EXPORT_SYMBOL vmlinux 0x8b618d08 overflowuid -EXPORT_SYMBOL vmlinux 0x8b8059bd in_group_p -EXPORT_SYMBOL vmlinux 0x8b8560e3 flow_rule_match_enc_ports -EXPORT_SYMBOL vmlinux 0x8b88662d dma_unmap_resource -EXPORT_SYMBOL vmlinux 0x8b90c75c mmc_gpio_set_cd_isr -EXPORT_SYMBOL vmlinux 0x8b910be2 errseq_sample -EXPORT_SYMBOL vmlinux 0x8b912954 gen_pool_dma_alloc_algo -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 0x8bc15b70 xfrm_state_unregister_afinfo -EXPORT_SYMBOL vmlinux 0x8bd577d0 acpi_ut_exit -EXPORT_SYMBOL vmlinux 0x8bdfc47c __mb_cache_entry_free -EXPORT_SYMBOL vmlinux 0x8c0d2cf3 rproc_elf_find_loaded_rsc_table -EXPORT_SYMBOL vmlinux 0x8c0efbc2 locks_lock_inode_wait -EXPORT_SYMBOL vmlinux 0x8c240731 vme_init_bridge -EXPORT_SYMBOL vmlinux 0x8c49fd79 trace_raw_output_prep -EXPORT_SYMBOL vmlinux 0x8c7a02e1 scsi_print_command -EXPORT_SYMBOL vmlinux 0x8c83043f mdiobus_register_device -EXPORT_SYMBOL vmlinux 0x8c8569cb kstrtoint -EXPORT_SYMBOL vmlinux 0x8c92f1cd prepare_to_wait_exclusive -EXPORT_SYMBOL vmlinux 0x8c9e338f acpi_bios_error -EXPORT_SYMBOL vmlinux 0x8cab22b3 vfs_dedupe_file_range_one -EXPORT_SYMBOL vmlinux 0x8caf9305 uuid_is_valid -EXPORT_SYMBOL vmlinux 0x8cc2fd78 scsi_report_opcode -EXPORT_SYMBOL vmlinux 0x8cc79cab iowrite16_rep -EXPORT_SYMBOL vmlinux 0x8cda8029 xen_clear_irq_pending -EXPORT_SYMBOL vmlinux 0x8cdfa387 scsi_register_driver -EXPORT_SYMBOL vmlinux 0x8cef236a acpi_processor_notify_smm -EXPORT_SYMBOL vmlinux 0x8d0cf307 poll_freewait -EXPORT_SYMBOL vmlinux 0x8d1c2bf6 d_tmpfile -EXPORT_SYMBOL vmlinux 0x8d28744f pci_scan_root_bus_bridge -EXPORT_SYMBOL vmlinux 0x8d2892b3 tty_kref_put -EXPORT_SYMBOL vmlinux 0x8d2ff5f9 reuseport_stop_listen_sock -EXPORT_SYMBOL vmlinux 0x8d30d6ba __cleancache_init_shared_fs -EXPORT_SYMBOL vmlinux 0x8d364a43 sock_kmalloc -EXPORT_SYMBOL vmlinux 0x8d36ef0a netif_rx_ni -EXPORT_SYMBOL vmlinux 0x8d408cc0 alloc_pages_vma -EXPORT_SYMBOL vmlinux 0x8d43042a tcp_req_err -EXPORT_SYMBOL vmlinux 0x8d55bb8a qid_eq -EXPORT_SYMBOL vmlinux 0x8d60652c __SCT__tp_func_mmap_lock_released -EXPORT_SYMBOL vmlinux 0x8d6aff89 __put_user_nocheck_4 -EXPORT_SYMBOL vmlinux 0x8d73278e hex_asc_upper -EXPORT_SYMBOL vmlinux 0x8d82dc6f open_with_fake_path -EXPORT_SYMBOL vmlinux 0x8db22efe acpi_setup_gpe_for_wake -EXPORT_SYMBOL vmlinux 0x8dd22344 pci_request_selected_regions_exclusive -EXPORT_SYMBOL vmlinux 0x8ddd8aad schedule_timeout -EXPORT_SYMBOL vmlinux 0x8df4f9d7 ppp_register_channel -EXPORT_SYMBOL vmlinux 0x8df92f66 memchr_inv -EXPORT_SYMBOL vmlinux 0x8df9dd10 guid_null -EXPORT_SYMBOL vmlinux 0x8e1d3f6a ipv6_push_frag_opts -EXPORT_SYMBOL vmlinux 0x8e2a410f scsi_device_lookup -EXPORT_SYMBOL vmlinux 0x8e2c9ee8 sock_cmsg_send -EXPORT_SYMBOL vmlinux 0x8e34d50d phy_init_hw -EXPORT_SYMBOL vmlinux 0x8e3e0f7d fault_in_readable -EXPORT_SYMBOL vmlinux 0x8e3f0cba __SCK__tp_func_mmap_lock_start_locking -EXPORT_SYMBOL vmlinux 0x8e470366 ns_capable_noaudit -EXPORT_SYMBOL vmlinux 0x8e663d0f zalloc_cpumask_var_node -EXPORT_SYMBOL vmlinux 0x8e932d68 dma_ops -EXPORT_SYMBOL vmlinux 0x8e93bd24 security_secctx_to_secid -EXPORT_SYMBOL vmlinux 0x8ea8642c sock_set_priority -EXPORT_SYMBOL vmlinux 0x8eaf2a5f vga_switcheroo_unregister_handler -EXPORT_SYMBOL vmlinux 0x8ec3547b xfrm_state_lookup -EXPORT_SYMBOL vmlinux 0x8ede77b5 i2c_add_adapter -EXPORT_SYMBOL vmlinux 0x8ef4acf4 single_open_size -EXPORT_SYMBOL vmlinux 0x8f01afd6 twl6030_interrupt_mask -EXPORT_SYMBOL vmlinux 0x8f1e286c ptp_schedule_worker -EXPORT_SYMBOL vmlinux 0x8f2703b7 wbinvd_on_all_cpus -EXPORT_SYMBOL vmlinux 0x8f322f63 sk_stream_error -EXPORT_SYMBOL vmlinux 0x8f455cf4 vga_switcheroo_unregister_client -EXPORT_SYMBOL vmlinux 0x8f53760d ip_sock_set_mtu_discover -EXPORT_SYMBOL vmlinux 0x8f71033e skb_try_coalesce -EXPORT_SYMBOL vmlinux 0x8f80bf11 acpi_install_gpe_raw_handler -EXPORT_SYMBOL vmlinux 0x8f8d08b7 get_tree_keyed -EXPORT_SYMBOL vmlinux 0x8f996a30 ethtool_convert_legacy_u32_to_link_mode -EXPORT_SYMBOL vmlinux 0x8f9c199c __get_user_2 -EXPORT_SYMBOL vmlinux 0x8fa59da1 __page_cache_alloc -EXPORT_SYMBOL vmlinux 0x8fb430d3 napi_get_frags -EXPORT_SYMBOL vmlinux 0x8fb5227c serial8250_do_pm -EXPORT_SYMBOL vmlinux 0x8fbfb25f rtnl_notify -EXPORT_SYMBOL vmlinux 0x8fd1eeee copy_page_from_iter -EXPORT_SYMBOL vmlinux 0x8ff89ed0 seg6_hmac_exit -EXPORT_SYMBOL vmlinux 0x90006be6 dm_kcopyd_client_flush -EXPORT_SYMBOL vmlinux 0x902d8722 vme_slave_get -EXPORT_SYMBOL vmlinux 0x905695ab sg_copy_from_buffer -EXPORT_SYMBOL vmlinux 0x90576ec4 vmemdup_user -EXPORT_SYMBOL vmlinux 0x9057a139 unregister_netdevice_notifier_dev_net -EXPORT_SYMBOL vmlinux 0x905813e2 twl6030_mmc_card_detect -EXPORT_SYMBOL vmlinux 0x907cbe87 __put_user_ns -EXPORT_SYMBOL vmlinux 0x90a042b3 dst_cow_metrics_generic -EXPORT_SYMBOL vmlinux 0x90a35b0e ps2_init -EXPORT_SYMBOL vmlinux 0x90b0dd18 iov_iter_zero -EXPORT_SYMBOL vmlinux 0x90b19e29 tcp_ioctl -EXPORT_SYMBOL vmlinux 0x90b1db34 key_put -EXPORT_SYMBOL vmlinux 0x90b630c0 __cpuhp_remove_state -EXPORT_SYMBOL vmlinux 0x90b74017 i8042_install_filter -EXPORT_SYMBOL vmlinux 0x90bc1d28 request_partial_firmware_into_buf -EXPORT_SYMBOL vmlinux 0x90e8b733 inode_permission -EXPORT_SYMBOL vmlinux 0x90ebeef4 path_has_submounts -EXPORT_SYMBOL vmlinux 0x9101f4a1 sock_from_file -EXPORT_SYMBOL vmlinux 0x9113ebac vm_insert_pages -EXPORT_SYMBOL vmlinux 0x9116c9f7 tcp_mss_to_mtu -EXPORT_SYMBOL vmlinux 0x9128f553 udp_sk_rx_dst_set -EXPORT_SYMBOL vmlinux 0x912abcb9 xfrm4_rcv -EXPORT_SYMBOL vmlinux 0x9144e2e9 scsi_unblock_requests -EXPORT_SYMBOL vmlinux 0x914a87bc mount_bdev -EXPORT_SYMBOL vmlinux 0x914f8c6b devm_extcon_unregister_notifier -EXPORT_SYMBOL vmlinux 0x91607d95 set_memory_wb -EXPORT_SYMBOL vmlinux 0x9166fada strncpy -EXPORT_SYMBOL vmlinux 0x917396b5 vga_remove_vgacon -EXPORT_SYMBOL vmlinux 0x9176145b acpi_install_global_event_handler -EXPORT_SYMBOL vmlinux 0x91772a29 udp_ioctl -EXPORT_SYMBOL vmlinux 0x917e4c8b release_pages -EXPORT_SYMBOL vmlinux 0x91889252 add_to_page_cache_locked -EXPORT_SYMBOL vmlinux 0x9197e5ef __traceiter_dma_fence_enable_signal -EXPORT_SYMBOL vmlinux 0x919c58f3 __clzsi2 -EXPORT_SYMBOL vmlinux 0x91a08701 inet_addr_type_dev_table -EXPORT_SYMBOL vmlinux 0x91a10c61 intel_scu_ipc_dev_simple_command -EXPORT_SYMBOL vmlinux 0x91a488ac __netdev_alloc_frag_align -EXPORT_SYMBOL vmlinux 0x91a7b1da qdisc_class_hash_remove -EXPORT_SYMBOL vmlinux 0x91c0980e icst_hz -EXPORT_SYMBOL vmlinux 0x91c2cdb0 pm860x_set_bits -EXPORT_SYMBOL vmlinux 0x91d8545c dquot_destroy -EXPORT_SYMBOL vmlinux 0x91f42e88 from_kuid -EXPORT_SYMBOL vmlinux 0x91f68ea1 __hw_addr_sync -EXPORT_SYMBOL vmlinux 0x91fae966 netdev_err -EXPORT_SYMBOL vmlinux 0x922db56f netpoll_poll_disable -EXPORT_SYMBOL vmlinux 0x922f45a6 __bitmap_clear -EXPORT_SYMBOL vmlinux 0x9232bde5 gen_new_estimator -EXPORT_SYMBOL vmlinux 0x923b1276 dmaengine_get -EXPORT_SYMBOL vmlinux 0x923cbbf0 devm_clk_put -EXPORT_SYMBOL vmlinux 0x9244867a __register_nls -EXPORT_SYMBOL vmlinux 0x92502156 pps_event -EXPORT_SYMBOL vmlinux 0x9258c776 hdmi_vendor_infoframe_pack_only -EXPORT_SYMBOL vmlinux 0x92774cf8 __kfence_pool -EXPORT_SYMBOL vmlinux 0x9280d812 __traceiter_mmap_lock_start_locking -EXPORT_SYMBOL vmlinux 0x92897e3d default_idle -EXPORT_SYMBOL vmlinux 0x9291cd3b memdup_user -EXPORT_SYMBOL vmlinux 0x92997ed8 _printk -EXPORT_SYMBOL vmlinux 0x92a51e56 acpi_debug_print_raw -EXPORT_SYMBOL vmlinux 0x92a54bf2 tcf_action_update_stats -EXPORT_SYMBOL vmlinux 0x92b6c470 mmc_run_bkops -EXPORT_SYMBOL vmlinux 0x92b99a33 acpi_put_table -EXPORT_SYMBOL vmlinux 0x92b9b180 slash_name -EXPORT_SYMBOL vmlinux 0x92c59db6 pci_release_region -EXPORT_SYMBOL vmlinux 0x92d3c29b pcie_set_mps -EXPORT_SYMBOL vmlinux 0x92d4853f dma_fence_signal_timestamp -EXPORT_SYMBOL vmlinux 0x92d5838e request_threaded_irq -EXPORT_SYMBOL vmlinux 0x92d8750b mnt_set_expiry -EXPORT_SYMBOL vmlinux 0x92df52c6 mipi_dsi_attach -EXPORT_SYMBOL vmlinux 0x92e683f5 down_timeout -EXPORT_SYMBOL vmlinux 0x92e96f55 tcp_sock_set_keepintvl -EXPORT_SYMBOL vmlinux 0x92ec510d jiffies64_to_msecs -EXPORT_SYMBOL vmlinux 0x92fa5abb vme_lm_detach -EXPORT_SYMBOL vmlinux 0x92fed49c tcp_syn_ack_timeout -EXPORT_SYMBOL vmlinux 0x93022ba6 __scsi_format_command -EXPORT_SYMBOL vmlinux 0x9305f8e6 cpufreq_get -EXPORT_SYMBOL vmlinux 0x9319e53c register_framebuffer -EXPORT_SYMBOL vmlinux 0x9320b77f block_write_begin -EXPORT_SYMBOL vmlinux 0x9326007f twl6040_get_vibralr_status -EXPORT_SYMBOL vmlinux 0x933a21be ip_check_defrag -EXPORT_SYMBOL vmlinux 0x93407027 neigh_seq_stop -EXPORT_SYMBOL vmlinux 0x9364c85f vfs_mkdir -EXPORT_SYMBOL vmlinux 0x937733e3 qid_valid -EXPORT_SYMBOL vmlinux 0x9384fb27 scsi_report_bus_reset -EXPORT_SYMBOL vmlinux 0x93949afc input_mt_report_pointer_emulation -EXPORT_SYMBOL vmlinux 0x93a6e0b2 io_schedule -EXPORT_SYMBOL vmlinux 0x93b3eac3 param_get_invbool -EXPORT_SYMBOL vmlinux 0x93b3fc74 register_dcbevent_notifier -EXPORT_SYMBOL vmlinux 0x93b4ccd4 __generic_file_write_iter -EXPORT_SYMBOL vmlinux 0x93b8d43a __skb_ext_del -EXPORT_SYMBOL vmlinux 0x93ba94df param_set_invbool -EXPORT_SYMBOL vmlinux 0x93bab30c gen_pool_create -EXPORT_SYMBOL vmlinux 0x93bd14ac __vfs_removexattr -EXPORT_SYMBOL vmlinux 0x93bd97ee textsearch_unregister -EXPORT_SYMBOL vmlinux 0x93d6dd8c complete_all -EXPORT_SYMBOL vmlinux 0x93e229f9 pci_biosrom_size -EXPORT_SYMBOL vmlinux 0x9403d6de cros_ec_check_result -EXPORT_SYMBOL vmlinux 0x94150d9c dev_mc_add_global -EXPORT_SYMBOL vmlinux 0x9428f816 dim_turn -EXPORT_SYMBOL vmlinux 0x943edbba netlink_set_err -EXPORT_SYMBOL vmlinux 0x944375db _totalram_pages -EXPORT_SYMBOL vmlinux 0x944a564d is_console_locked -EXPORT_SYMBOL vmlinux 0x945fa6b9 vlan_vids_del_by_dev -EXPORT_SYMBOL vmlinux 0x9462b69a page_get_link -EXPORT_SYMBOL vmlinux 0x94662da5 register_qdisc -EXPORT_SYMBOL vmlinux 0x947a707e pcie_capability_clear_and_set_dword -EXPORT_SYMBOL vmlinux 0x947cb043 of_find_mipi_dsi_host_by_node -EXPORT_SYMBOL vmlinux 0x94932a30 block_invalidatepage -EXPORT_SYMBOL vmlinux 0x9493fc86 node_states -EXPORT_SYMBOL vmlinux 0x9495eeb4 cfb_fillrect -EXPORT_SYMBOL vmlinux 0x94961283 vunmap -EXPORT_SYMBOL vmlinux 0x9498f40a phy_support_sym_pause -EXPORT_SYMBOL vmlinux 0x94a33908 netdev_refcnt_read -EXPORT_SYMBOL vmlinux 0x94ac0296 vga_switcheroo_unlock_ddc -EXPORT_SYMBOL vmlinux 0x94afa9d4 phy_remove_link_mode -EXPORT_SYMBOL vmlinux 0x94afe826 security_socket_getpeersec_dgram -EXPORT_SYMBOL vmlinux 0x94bd4778 pci_release_selected_regions -EXPORT_SYMBOL vmlinux 0x94bf03ca utf8_to_utf32 -EXPORT_SYMBOL vmlinux 0x94c02419 __cgroup_bpf_run_filter_sock_addr -EXPORT_SYMBOL vmlinux 0x94c2174f tty_do_resize -EXPORT_SYMBOL vmlinux 0x94e50ad4 call_fib_notifier -EXPORT_SYMBOL vmlinux 0x94f46318 input_mt_get_slot_by_key -EXPORT_SYMBOL vmlinux 0x94f916e0 __traceiter_dma_fence_emit -EXPORT_SYMBOL vmlinux 0x94f96627 up_read -EXPORT_SYMBOL vmlinux 0x9507c90f copy_fsxattr_to_user -EXPORT_SYMBOL vmlinux 0x95209149 generic_file_read_iter -EXPORT_SYMBOL vmlinux 0x95480447 __skb_checksum_complete_head -EXPORT_SYMBOL vmlinux 0x954cef6f init_on_alloc -EXPORT_SYMBOL vmlinux 0x954f099c idr_preload -EXPORT_SYMBOL vmlinux 0x95747729 netif_napi_add -EXPORT_SYMBOL vmlinux 0x959916c3 migrate_page_move_mapping -EXPORT_SYMBOL vmlinux 0x9604c75a tcp_sendmsg -EXPORT_SYMBOL vmlinux 0x96050dc8 __next_node_in -EXPORT_SYMBOL vmlinux 0x96062545 pci_bus_write_config_byte -EXPORT_SYMBOL vmlinux 0x960721c0 kgdb_roundup_delay -EXPORT_SYMBOL vmlinux 0x96137d37 blk_execute_rq -EXPORT_SYMBOL vmlinux 0x9614262b xfrm_state_alloc -EXPORT_SYMBOL vmlinux 0x961596d6 __dst_destroy_metrics_generic -EXPORT_SYMBOL vmlinux 0x9625695d acpi_install_gpe_block -EXPORT_SYMBOL vmlinux 0x962c4977 clkdev_add -EXPORT_SYMBOL vmlinux 0x96562814 seq_release_private -EXPORT_SYMBOL vmlinux 0x965835fb blk_integrity_unregister -EXPORT_SYMBOL vmlinux 0x96591d1b mdiobus_free -EXPORT_SYMBOL vmlinux 0x96618e20 inetpeer_invalidate_tree -EXPORT_SYMBOL vmlinux 0x96683b50 rtnl_nla_parse_ifinfomsg -EXPORT_SYMBOL vmlinux 0x9673eb62 address_space_init_once -EXPORT_SYMBOL vmlinux 0x967a29e4 kobject_get_unless_zero -EXPORT_SYMBOL vmlinux 0x96823614 __brelse -EXPORT_SYMBOL vmlinux 0x96848186 scnprintf -EXPORT_SYMBOL vmlinux 0x9698a17a seq_read_iter -EXPORT_SYMBOL vmlinux 0x96aa23d9 mroute6_is_socket -EXPORT_SYMBOL vmlinux 0x96b29254 strncasecmp -EXPORT_SYMBOL vmlinux 0x96bad335 skb_flow_dissect_tunnel_info -EXPORT_SYMBOL vmlinux 0x96bae157 __scm_send -EXPORT_SYMBOL vmlinux 0x96beb1d2 dquot_release -EXPORT_SYMBOL vmlinux 0x96c17136 fb_var_to_videomode -EXPORT_SYMBOL vmlinux 0x96cd2b04 scsi_sense_key_string -EXPORT_SYMBOL vmlinux 0x96d4a82f ip_do_fragment -EXPORT_SYMBOL vmlinux 0x96eab78b iosf_mbi_modify -EXPORT_SYMBOL vmlinux 0x96fab350 dim_park_on_top -EXPORT_SYMBOL vmlinux 0x970130ad __cleancache_invalidate_fs -EXPORT_SYMBOL vmlinux 0x9711ec30 jbd2_journal_start -EXPORT_SYMBOL vmlinux 0x971a688d xfrm_state_lookup_byspi -EXPORT_SYMBOL vmlinux 0x973fa82e register_acpi_notifier -EXPORT_SYMBOL vmlinux 0x97422e0d qdisc_put_unlocked -EXPORT_SYMBOL vmlinux 0x9746e23a kfree_skb_partial -EXPORT_SYMBOL vmlinux 0x9746eb89 ZSTD_decompressBegin_usingDict -EXPORT_SYMBOL vmlinux 0x974873a6 is_nd_dax -EXPORT_SYMBOL vmlinux 0x97651e6c vmemmap_base -EXPORT_SYMBOL vmlinux 0x97663f05 blk_queue_max_write_same_sectors -EXPORT_SYMBOL vmlinux 0x97706cfe pps_lookup_dev -EXPORT_SYMBOL vmlinux 0x9779f7da seq_dentry -EXPORT_SYMBOL vmlinux 0x9791a195 mdiobus_unregister_device -EXPORT_SYMBOL vmlinux 0x97a57333 crc_t10dif_update -EXPORT_SYMBOL vmlinux 0x97adb487 utf8s_to_utf16s -EXPORT_SYMBOL vmlinux 0x97b197a2 __remove_inode_hash -EXPORT_SYMBOL vmlinux 0x97bdfa60 scsi_dev_info_remove_list -EXPORT_SYMBOL vmlinux 0x97e3610e devm_extcon_register_notifier -EXPORT_SYMBOL vmlinux 0x97eddd1c mark_info_dirty -EXPORT_SYMBOL vmlinux 0x97ff18c1 __phy_read_mmd -EXPORT_SYMBOL vmlinux 0x9829fc11 __kfifo_out_peek_r -EXPORT_SYMBOL vmlinux 0x982dea66 input_setup_polling -EXPORT_SYMBOL vmlinux 0x983c296b ip_mc_leave_group -EXPORT_SYMBOL vmlinux 0x98470ce7 generic_iommu_put_resv_regions -EXPORT_SYMBOL vmlinux 0x984d9d77 tcp_seq_stop -EXPORT_SYMBOL vmlinux 0x986987d8 inode_set_bytes -EXPORT_SYMBOL vmlinux 0x98698952 cros_ec_cmd_xfer -EXPORT_SYMBOL vmlinux 0x98935f71 dquot_get_state -EXPORT_SYMBOL vmlinux 0x98b044ee scsi_add_device -EXPORT_SYMBOL vmlinux 0x98c89ade security_xfrm_state_alloc -EXPORT_SYMBOL vmlinux 0x98c957f3 agp_generic_insert_memory -EXPORT_SYMBOL vmlinux 0x98d06659 __xa_alloc_cyclic -EXPORT_SYMBOL vmlinux 0x98e508ef ignore_console_lock_warning -EXPORT_SYMBOL vmlinux 0x990464a3 nvdimm_bus_unlock -EXPORT_SYMBOL vmlinux 0x99078b39 trace_print_flags_seq -EXPORT_SYMBOL vmlinux 0x9918d233 down_read -EXPORT_SYMBOL vmlinux 0x9924a574 sock_diag_put_filterinfo -EXPORT_SYMBOL vmlinux 0x9927f9f6 generic_fillattr -EXPORT_SYMBOL vmlinux 0x992ecf40 phy_connect -EXPORT_SYMBOL vmlinux 0x9939eba0 backlight_unregister_notifier -EXPORT_SYMBOL vmlinux 0x994de8d5 rt_dst_clone -EXPORT_SYMBOL vmlinux 0x99517682 udp_encap_enable -EXPORT_SYMBOL vmlinux 0x9965215b dev_set_alias -EXPORT_SYMBOL vmlinux 0x99714dd3 __netlink_dump_start -EXPORT_SYMBOL vmlinux 0x9975dc22 acpi_get_handle -EXPORT_SYMBOL vmlinux 0x998d34d4 sock_set_mark -EXPORT_SYMBOL vmlinux 0x9998c449 simple_fill_super -EXPORT_SYMBOL vmlinux 0x999e8297 vfree -EXPORT_SYMBOL vmlinux 0x99a23b3b pcix_get_max_mmrbc -EXPORT_SYMBOL vmlinux 0x99a8f696 pcim_iounmap_regions -EXPORT_SYMBOL vmlinux 0x99b5c359 dma_sync_single_for_cpu -EXPORT_SYMBOL vmlinux 0x99cf98d3 mmc_gpiod_request_cd_irq -EXPORT_SYMBOL vmlinux 0x99d472b1 net_dim_get_rx_moderation -EXPORT_SYMBOL vmlinux 0x99daa9bf try_offline_node -EXPORT_SYMBOL vmlinux 0x99f0355c current_task -EXPORT_SYMBOL vmlinux 0x99f068d5 x86_cpu_to_node_map -EXPORT_SYMBOL vmlinux 0x99f8e7e3 first_ec -EXPORT_SYMBOL vmlinux 0x99f9638f __napi_alloc_frag_align -EXPORT_SYMBOL vmlinux 0x99fb8ffa find_inode_by_ino_rcu -EXPORT_SYMBOL vmlinux 0x9a0c3a18 vme_unregister_error_handler -EXPORT_SYMBOL vmlinux 0x9a128122 mod_zone_page_state -EXPORT_SYMBOL vmlinux 0x9a1dfd65 strpbrk -EXPORT_SYMBOL vmlinux 0x9a1e618a can_nice -EXPORT_SYMBOL vmlinux 0x9a360dd9 tcf_em_tree_destroy -EXPORT_SYMBOL vmlinux 0x9a3d1320 scsi_device_resume -EXPORT_SYMBOL vmlinux 0x9a583306 netlbl_bitmap_walk -EXPORT_SYMBOL vmlinux 0x9a67762a bh_submit_read -EXPORT_SYMBOL vmlinux 0x9a73b032 ZSTD_initDStream_usingDDict -EXPORT_SYMBOL vmlinux 0x9a76316d current_time -EXPORT_SYMBOL vmlinux 0x9a900a49 __wait_on_buffer -EXPORT_SYMBOL vmlinux 0x9aa71919 refcount_dec_and_lock -EXPORT_SYMBOL vmlinux 0x9aa7c291 rproc_del -EXPORT_SYMBOL vmlinux 0x9aaeefce sysctl_nf_log_all_netns -EXPORT_SYMBOL vmlinux 0x9ad77d17 vmf_insert_mixed_mkwrite -EXPORT_SYMBOL vmlinux 0x9ad7a582 iosf_mbi_assert_punit_acquired -EXPORT_SYMBOL vmlinux 0x9ae47436 _find_last_bit -EXPORT_SYMBOL vmlinux 0x9af294a0 netdev_printk -EXPORT_SYMBOL vmlinux 0x9af8b80d netpoll_print_options -EXPORT_SYMBOL vmlinux 0x9b07c666 tty_port_block_til_ready -EXPORT_SYMBOL vmlinux 0x9b1d1a63 t10_pi_type3_ip -EXPORT_SYMBOL vmlinux 0x9b218df8 flow_rule_match_eth_addrs -EXPORT_SYMBOL vmlinux 0x9b2560b9 gf128mul_init_4k_bbe -EXPORT_SYMBOL vmlinux 0x9b33e0d7 unregister_dcbevent_notifier -EXPORT_SYMBOL vmlinux 0x9b352320 pci_enable_msi -EXPORT_SYMBOL vmlinux 0x9b3da69c xfrm_input_unregister_afinfo -EXPORT_SYMBOL vmlinux 0x9b420478 utf8_strncasecmp -EXPORT_SYMBOL vmlinux 0x9b496b21 posix_acl_alloc -EXPORT_SYMBOL vmlinux 0x9b58938b vga_switcheroo_fini_domain_pm_ops -EXPORT_SYMBOL vmlinux 0x9b595832 xfrm4_udp_encap_rcv -EXPORT_SYMBOL vmlinux 0x9b5f4fa7 jbd2_journal_extend -EXPORT_SYMBOL vmlinux 0x9b72478f acpi_unload_parent_table -EXPORT_SYMBOL vmlinux 0x9b82da55 param_ops_bint -EXPORT_SYMBOL vmlinux 0x9b8eee8e pnpacpi_protocol -EXPORT_SYMBOL vmlinux 0x9b933ce8 nf_reinject -EXPORT_SYMBOL vmlinux 0x9bb4e317 ioread32be -EXPORT_SYMBOL vmlinux 0x9bddf9e9 tcf_qevent_destroy -EXPORT_SYMBOL vmlinux 0x9be33d40 blk_queue_max_hw_sectors -EXPORT_SYMBOL vmlinux 0x9bec626b max8925_bulk_write -EXPORT_SYMBOL vmlinux 0x9bf80215 xa_load -EXPORT_SYMBOL vmlinux 0x9c0142f2 configfs_unregister_group -EXPORT_SYMBOL vmlinux 0x9c073a1d softnet_data -EXPORT_SYMBOL vmlinux 0x9c08704a mipi_dsi_dcs_soft_reset -EXPORT_SYMBOL vmlinux 0x9c27a312 __cgroup_bpf_run_filter_sk -EXPORT_SYMBOL vmlinux 0x9c365df3 dcb_ieee_getapp_dscp_prio_mask_map -EXPORT_SYMBOL vmlinux 0x9c4a6d0b request_key_with_auxdata -EXPORT_SYMBOL vmlinux 0x9c515673 bmap -EXPORT_SYMBOL vmlinux 0x9c60ad61 ip6_dst_alloc -EXPORT_SYMBOL vmlinux 0x9c65b78a csum_partial_copy_nocheck -EXPORT_SYMBOL vmlinux 0x9c69771a xfrm_policy_walk_done -EXPORT_SYMBOL vmlinux 0x9c71526d agp_generic_create_gatt_table -EXPORT_SYMBOL vmlinux 0x9c7fb5f4 netdev_bind_sb_channel_queue -EXPORT_SYMBOL vmlinux 0x9c85f906 unregister_fib_notifier -EXPORT_SYMBOL vmlinux 0x9c86b9ab fileattr_fill_flags -EXPORT_SYMBOL vmlinux 0x9c9be857 show_init_ipc_ns -EXPORT_SYMBOL vmlinux 0x9ca39bae rproc_free -EXPORT_SYMBOL vmlinux 0x9cab34a6 rfkill_set_led_trigger_name -EXPORT_SYMBOL vmlinux 0x9cb986f2 vmalloc_base -EXPORT_SYMBOL vmlinux 0x9cbd2e72 blk_sync_queue -EXPORT_SYMBOL vmlinux 0x9ccf7171 vme_dma_pci_attribute -EXPORT_SYMBOL vmlinux 0x9cd8722f init_special_inode -EXPORT_SYMBOL vmlinux 0x9cd8e7ec max8998_read_reg -EXPORT_SYMBOL vmlinux 0x9cdfb3f7 sysctl_fb_tunnels_only_for_init_net -EXPORT_SYMBOL vmlinux 0x9ced41ad __SCT__tp_func_read_msr -EXPORT_SYMBOL vmlinux 0x9cefbade may_setattr -EXPORT_SYMBOL vmlinux 0x9cfe7e69 __SCK__tp_func_spi_transfer_stop -EXPORT_SYMBOL vmlinux 0x9d099a39 acpi_remove_gpe_handler -EXPORT_SYMBOL vmlinux 0x9d0d6206 unregister_netdevice_notifier -EXPORT_SYMBOL vmlinux 0x9d2ab8ac __tasklet_schedule -EXPORT_SYMBOL vmlinux 0x9d2e7707 unregister_sysrq_key -EXPORT_SYMBOL vmlinux 0x9d5a509b tcp_check_req -EXPORT_SYMBOL vmlinux 0x9d5b583a netdev_features_change -EXPORT_SYMBOL vmlinux 0x9d61e994 ucs2_strncmp -EXPORT_SYMBOL vmlinux 0x9d64471a pnp_device_detach -EXPORT_SYMBOL vmlinux 0x9d68edf8 follow_up -EXPORT_SYMBOL vmlinux 0x9d70541a native_save_fl -EXPORT_SYMBOL vmlinux 0x9d94d126 ip_defrag -EXPORT_SYMBOL vmlinux 0x9d97ab2c audit_log_object_context -EXPORT_SYMBOL vmlinux 0x9d9ad107 down_read_trylock -EXPORT_SYMBOL vmlinux 0x9db0a34d sock_no_shutdown -EXPORT_SYMBOL vmlinux 0x9dc23eee inet6_bind -EXPORT_SYMBOL vmlinux 0x9de266bf put_devmap_managed_page -EXPORT_SYMBOL vmlinux 0x9dec2c4b __tracepoint_kmem_cache_alloc_node -EXPORT_SYMBOL vmlinux 0x9ded34ab devfreq_recommended_opp -EXPORT_SYMBOL vmlinux 0x9df5765b amd_iommu_domain_clear_gcr3 -EXPORT_SYMBOL vmlinux 0x9e0c711d vzalloc_node -EXPORT_SYMBOL vmlinux 0x9e0f42bf tcp_splice_read -EXPORT_SYMBOL vmlinux 0x9e0fa5ae hsiphash_3u32 -EXPORT_SYMBOL vmlinux 0x9e127b4e vmalloc_to_page -EXPORT_SYMBOL vmlinux 0x9e13f6f6 gf128mul_lle -EXPORT_SYMBOL vmlinux 0x9e271aec pci_write_config_dword -EXPORT_SYMBOL vmlinux 0x9e2737f0 acpi_install_interface_handler -EXPORT_SYMBOL vmlinux 0x9e282e5a prepare_kernel_cred -EXPORT_SYMBOL vmlinux 0x9e3353aa phy_mac_interrupt -EXPORT_SYMBOL vmlinux 0x9e458235 mdio_device_free -EXPORT_SYMBOL vmlinux 0x9e4b4682 blkdev_put -EXPORT_SYMBOL vmlinux 0x9e4cf34e pcim_iomap_regions -EXPORT_SYMBOL vmlinux 0x9e4faeef dm_io_client_destroy -EXPORT_SYMBOL vmlinux 0x9e556b3b inet_rcv_saddr_equal -EXPORT_SYMBOL vmlinux 0x9e61bb05 set_freezable -EXPORT_SYMBOL vmlinux 0x9e64fbfe rtc_cmos_read -EXPORT_SYMBOL vmlinux 0x9e66ebfd pci_fixup_device -EXPORT_SYMBOL vmlinux 0x9e683f75 __cpu_possible_mask -EXPORT_SYMBOL vmlinux 0x9e772f76 __blkdev_issue_zeroout -EXPORT_SYMBOL vmlinux 0x9e7d6bd0 __udelay -EXPORT_SYMBOL vmlinux 0x9e982ece inet_frags_init -EXPORT_SYMBOL vmlinux 0x9e9a3bfc tcp_setsockopt -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 0x9ec5c0b2 km_report -EXPORT_SYMBOL vmlinux 0x9ec6ca96 ktime_get_real_ts64 -EXPORT_SYMBOL vmlinux 0x9ed978de vme_lm_set -EXPORT_SYMBOL vmlinux 0x9edf1315 vme_master_mmap -EXPORT_SYMBOL vmlinux 0x9edfb4c3 __tracepoint_dma_fence_signaled -EXPORT_SYMBOL vmlinux 0x9ef0eee7 __SCT__tp_func_spi_transfer_stop -EXPORT_SYMBOL vmlinux 0x9ef3e2fe fault_in_iov_iter_readable -EXPORT_SYMBOL vmlinux 0x9ef5d3b4 blk_set_queue_depth -EXPORT_SYMBOL vmlinux 0x9f1c9db7 fwnode_get_phy_id -EXPORT_SYMBOL vmlinux 0x9f23641c mptcp_subflow_reqsk_alloc -EXPORT_SYMBOL vmlinux 0x9f2c55a6 security_inode_invalidate_secctx -EXPORT_SYMBOL vmlinux 0x9f36d708 scsi_block_when_processing_errors -EXPORT_SYMBOL vmlinux 0x9f46ced8 __sw_hweight64 -EXPORT_SYMBOL vmlinux 0x9f4af09f insert_inode_locked -EXPORT_SYMBOL vmlinux 0x9f4f0e11 tty_lock -EXPORT_SYMBOL vmlinux 0x9f4f2aa3 acpi_gbl_FADT -EXPORT_SYMBOL vmlinux 0x9f50b770 keyring_restrict -EXPORT_SYMBOL vmlinux 0x9f54ead7 gro_cells_destroy -EXPORT_SYMBOL vmlinux 0x9f6c5010 param_array_ops -EXPORT_SYMBOL vmlinux 0x9f84e34f radix_tree_gang_lookup_tag_slot -EXPORT_SYMBOL vmlinux 0x9f87b9dd scm_detach_fds -EXPORT_SYMBOL vmlinux 0x9f917d7c blk_cleanup_disk -EXPORT_SYMBOL vmlinux 0x9f984513 strrchr -EXPORT_SYMBOL vmlinux 0x9f9bd71f nf_register_net_hooks -EXPORT_SYMBOL vmlinux 0x9fa6fc14 pci_ep_cfs_remove_epc_group -EXPORT_SYMBOL vmlinux 0x9fa7184a cancel_delayed_work_sync -EXPORT_SYMBOL vmlinux 0x9fa854cf kobject_put -EXPORT_SYMBOL vmlinux 0x9faa1a76 dst_release_immediate -EXPORT_SYMBOL vmlinux 0x9fb9fafd to_nd_dax -EXPORT_SYMBOL vmlinux 0x9fbdaffc kthread_associate_blkcg -EXPORT_SYMBOL vmlinux 0x9fc9fdce __neigh_for_each_release -EXPORT_SYMBOL vmlinux 0x9fd1eec0 security_sock_rcv_skb -EXPORT_SYMBOL vmlinux 0x9fdb6ade __SCK__tp_func_kmem_cache_free -EXPORT_SYMBOL vmlinux 0x9fdecc31 unregister_netdevice_many -EXPORT_SYMBOL vmlinux 0x9fee0e30 edac_mc_find -EXPORT_SYMBOL vmlinux 0x9feed7ce timer_reduce -EXPORT_SYMBOL vmlinux 0x9ff6c878 nexthop_bucket_set_hw_flags -EXPORT_SYMBOL vmlinux 0x9ff972b6 proc_symlink -EXPORT_SYMBOL vmlinux 0x9ffa3a75 netdev_max_backlog -EXPORT_SYMBOL vmlinux 0xa0007789 phy_sfp_probe -EXPORT_SYMBOL vmlinux 0xa0020ba5 tcp_v4_syn_recv_sock -EXPORT_SYMBOL vmlinux 0xa0023e9b current_in_userns -EXPORT_SYMBOL vmlinux 0xa004e8b5 d_make_root -EXPORT_SYMBOL vmlinux 0xa00aca2a dql_completed -EXPORT_SYMBOL vmlinux 0xa00d98e5 rtnl_configure_link -EXPORT_SYMBOL vmlinux 0xa016c226 __page_symlink -EXPORT_SYMBOL vmlinux 0xa0183293 set_cached_acl -EXPORT_SYMBOL vmlinux 0xa01b346d __phy_resume -EXPORT_SYMBOL vmlinux 0xa01d3df6 font_vga_8x16 -EXPORT_SYMBOL vmlinux 0xa01d66d7 radix_tree_iter_delete -EXPORT_SYMBOL vmlinux 0xa033d747 next_arg -EXPORT_SYMBOL vmlinux 0xa03ecdcb tty_hung_up_p -EXPORT_SYMBOL vmlinux 0xa0436e98 in6addr_linklocal_allnodes -EXPORT_SYMBOL vmlinux 0xa0546fe5 nf_register_net_hook -EXPORT_SYMBOL vmlinux 0xa057df8f twl_set_regcache_bypass -EXPORT_SYMBOL vmlinux 0xa05b6be2 psched_ppscfg_precompute -EXPORT_SYMBOL vmlinux 0xa06a854d igrab -EXPORT_SYMBOL vmlinux 0xa06cc906 mr_mfc_seq_idx -EXPORT_SYMBOL vmlinux 0xa06f1872 pci_set_mwi -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 0xa0879d83 pci_request_regions_exclusive -EXPORT_SYMBOL vmlinux 0xa095e02e generic_check_addressable -EXPORT_SYMBOL vmlinux 0xa0ac3083 fs_param_is_u32 -EXPORT_SYMBOL vmlinux 0xa0ae1e73 siphash_3u64 -EXPORT_SYMBOL vmlinux 0xa0b04675 vmalloc_32 -EXPORT_SYMBOL vmlinux 0xa0c5b698 security_sk_classify_flow -EXPORT_SYMBOL vmlinux 0xa0c92578 dquot_scan_active -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 0xa0ec2129 __sk_mem_reclaim -EXPORT_SYMBOL vmlinux 0xa0fbac79 wake_up_bit -EXPORT_SYMBOL vmlinux 0xa108eb4d sysctl_optmem_max -EXPORT_SYMBOL vmlinux 0xa112301f __bforget -EXPORT_SYMBOL vmlinux 0xa116e145 dma_spin_lock -EXPORT_SYMBOL vmlinux 0xa11e76a8 dquot_claim_space_nodirty -EXPORT_SYMBOL vmlinux 0xa15a6228 jbd2_journal_init_jbd_inode -EXPORT_SYMBOL vmlinux 0xa177f2b2 elv_rb_find -EXPORT_SYMBOL vmlinux 0xa17d58a6 input_mt_destroy_slots -EXPORT_SYMBOL vmlinux 0xa1867c73 sock_recvmsg -EXPORT_SYMBOL vmlinux 0xa19002b0 xfrm_policy_walk -EXPORT_SYMBOL vmlinux 0xa1bedd72 amd_iommu_pc_get_max_counters -EXPORT_SYMBOL vmlinux 0xa1c1c874 pci_choose_state -EXPORT_SYMBOL vmlinux 0xa1ec2624 ww_mutex_lock -EXPORT_SYMBOL vmlinux 0xa1ee4d16 acpi_dev_get_first_match_dev -EXPORT_SYMBOL vmlinux 0xa2060911 inet_current_timestamp -EXPORT_SYMBOL vmlinux 0xa2326c49 acpi_remove_table_handler -EXPORT_SYMBOL vmlinux 0xa23325ef single_release -EXPORT_SYMBOL vmlinux 0xa23f500f wait_on_page_bit_killable -EXPORT_SYMBOL vmlinux 0xa23ffc04 groups_sort -EXPORT_SYMBOL vmlinux 0xa24f23d8 __request_module -EXPORT_SYMBOL vmlinux 0xa2550c6a inet_frag_find -EXPORT_SYMBOL vmlinux 0xa25b90ab utf8byte -EXPORT_SYMBOL vmlinux 0xa263892b fscrypt_fname_free_buffer -EXPORT_SYMBOL vmlinux 0xa289a949 pci_prepare_to_sleep -EXPORT_SYMBOL vmlinux 0xa28cfcc0 gen_estimator_active -EXPORT_SYMBOL vmlinux 0xa29c169b kill_fasync -EXPORT_SYMBOL vmlinux 0xa2b637a0 __dev_set_mtu -EXPORT_SYMBOL vmlinux 0xa2ba8c87 phy_attached_info -EXPORT_SYMBOL vmlinux 0xa2cf7a45 jbd2_journal_forget -EXPORT_SYMBOL vmlinux 0xa2e1cd18 d_add -EXPORT_SYMBOL vmlinux 0xa3159b5f page_mapping -EXPORT_SYMBOL vmlinux 0xa33dea74 jbd2__journal_start -EXPORT_SYMBOL vmlinux 0xa340a109 devfreq_monitor_resume -EXPORT_SYMBOL vmlinux 0xa3585372 security_socket_socketpair -EXPORT_SYMBOL vmlinux 0xa389b300 dquot_alloc -EXPORT_SYMBOL vmlinux 0xa38f21b9 amd_iommu_update_ga -EXPORT_SYMBOL vmlinux 0xa395102b pcie_port_service_register -EXPORT_SYMBOL vmlinux 0xa3b0f83e netpoll_poll_dev -EXPORT_SYMBOL vmlinux 0xa3ba60c9 xa_extract -EXPORT_SYMBOL vmlinux 0xa3be8342 __ubsan_handle_type_mismatch -EXPORT_SYMBOL vmlinux 0xa3cefaa0 blake2s_update -EXPORT_SYMBOL vmlinux 0xa3d3af2e pcim_iomap_regions_request_all -EXPORT_SYMBOL vmlinux 0xa3dd9cb6 write_inode_now -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 0xa3fd59ec key_instantiate_and_link -EXPORT_SYMBOL vmlinux 0xa3fea172 sha224_final -EXPORT_SYMBOL vmlinux 0xa40ff01b acpi_dbg_layer -EXPORT_SYMBOL vmlinux 0xa4135e8d skb_unlink -EXPORT_SYMBOL vmlinux 0xa4191c0b memset_io -EXPORT_SYMBOL vmlinux 0xa41d5113 md_update_sb -EXPORT_SYMBOL vmlinux 0xa4249127 tcp_sock_set_user_timeout -EXPORT_SYMBOL vmlinux 0xa4299114 jbd2_journal_force_commit -EXPORT_SYMBOL vmlinux 0xa436c3b6 __mmap_lock_do_trace_acquire_returned -EXPORT_SYMBOL vmlinux 0xa4395a0c tc_setup_flow_action -EXPORT_SYMBOL vmlinux 0xa44451e5 __sk_mem_schedule -EXPORT_SYMBOL vmlinux 0xa457c77b rproc_mem_entry_init -EXPORT_SYMBOL vmlinux 0xa45b30a8 phy_queue_state_machine -EXPORT_SYMBOL vmlinux 0xa45dd39f tcp_md5_hash_key -EXPORT_SYMBOL vmlinux 0xa46128dc pci_alloc_host_bridge -EXPORT_SYMBOL vmlinux 0xa46340c7 unlock_two_nondirectories -EXPORT_SYMBOL vmlinux 0xa465dab2 node_data -EXPORT_SYMBOL vmlinux 0xa47652d8 uart_add_one_port -EXPORT_SYMBOL vmlinux 0xa4838641 eth_mac_addr -EXPORT_SYMBOL vmlinux 0xa4903ee1 freeze_bdev -EXPORT_SYMBOL vmlinux 0xa4a92f9a fscrypt_encrypt_block_inplace -EXPORT_SYMBOL vmlinux 0xa4b5c4b8 input_set_poll_interval -EXPORT_SYMBOL vmlinux 0xa4b94fea iowrite8_rep -EXPORT_SYMBOL vmlinux 0xa4c2dfa5 __xfrm_state_delete -EXPORT_SYMBOL vmlinux 0xa4d4f0e6 global_cache_flush -EXPORT_SYMBOL vmlinux 0xa4db6612 tcf_idr_cleanup -EXPORT_SYMBOL vmlinux 0xa4e2210f tcf_qevent_init -EXPORT_SYMBOL vmlinux 0xa4e733ec devm_rproc_alloc -EXPORT_SYMBOL vmlinux 0xa4f4a3da inet_register_protosw -EXPORT_SYMBOL vmlinux 0xa4faf62a acpi_disable_gpe -EXPORT_SYMBOL vmlinux 0xa500382f phy_do_ioctl -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 0xa51c1d02 tcf_exts_num_actions -EXPORT_SYMBOL vmlinux 0xa52bedf6 xenbus_dev_request_and_reply -EXPORT_SYMBOL vmlinux 0xa52d4687 alloc_etherdev_mqs -EXPORT_SYMBOL vmlinux 0xa52e406e inet_twsk_deschedule_put -EXPORT_SYMBOL vmlinux 0xa53ffb32 dev_get_by_index -EXPORT_SYMBOL vmlinux 0xa543b592 fscrypt_has_permitted_context -EXPORT_SYMBOL vmlinux 0xa5526619 rb_insert_color -EXPORT_SYMBOL vmlinux 0xa568d51c dcache_readdir -EXPORT_SYMBOL vmlinux 0xa5847372 blk_mq_alloc_tag_set -EXPORT_SYMBOL vmlinux 0xa59cf817 i2c_smbus_write_i2c_block_data -EXPORT_SYMBOL vmlinux 0xa5ac3e33 ZSTD_DCtxWorkspaceBound -EXPORT_SYMBOL vmlinux 0xa5d71434 nf_ct_get_tuple_skb -EXPORT_SYMBOL vmlinux 0xa5dc425a gen_pool_for_each_chunk -EXPORT_SYMBOL vmlinux 0xa5e0729e sock_set_sndtimeo -EXPORT_SYMBOL vmlinux 0xa5e55057 rdmsrl_safe_on_cpu -EXPORT_SYMBOL vmlinux 0xa5eb52a3 tcf_idr_create -EXPORT_SYMBOL vmlinux 0xa5f6bd6e __i2c_smbus_xfer -EXPORT_SYMBOL vmlinux 0xa60ce41b flow_rule_match_ipv4_addrs -EXPORT_SYMBOL vmlinux 0xa611a889 devfreq_monitor_suspend -EXPORT_SYMBOL vmlinux 0xa61b933f skb_checksum_setup -EXPORT_SYMBOL vmlinux 0xa61ced89 qdisc_put_rtab -EXPORT_SYMBOL vmlinux 0xa6257a2f complete -EXPORT_SYMBOL vmlinux 0xa6332bc6 __tracepoint_write_msr -EXPORT_SYMBOL vmlinux 0xa63951e1 inet_add_protocol -EXPORT_SYMBOL vmlinux 0xa648e561 __ubsan_handle_shift_out_of_bounds -EXPORT_SYMBOL vmlinux 0xa64a5997 xfrm_parse_spi -EXPORT_SYMBOL vmlinux 0xa6506406 eth_header_cache_update -EXPORT_SYMBOL vmlinux 0xa6600244 ida_free -EXPORT_SYMBOL vmlinux 0xa669c4d0 register_netdevice -EXPORT_SYMBOL vmlinux 0xa681fe88 generate_random_uuid -EXPORT_SYMBOL vmlinux 0xa685b09d inet_sock_destruct -EXPORT_SYMBOL vmlinux 0xa68d8fba mmc_can_erase -EXPORT_SYMBOL vmlinux 0xa6b0b808 blk_mq_requeue_request -EXPORT_SYMBOL vmlinux 0xa6c30086 kiocb_set_cancel_fn -EXPORT_SYMBOL vmlinux 0xa6c4db57 fwnode_mdiobus_phy_device_register -EXPORT_SYMBOL vmlinux 0xa6d56888 i2c_verify_adapter -EXPORT_SYMBOL vmlinux 0xa6d830a4 phy_write_paged -EXPORT_SYMBOL vmlinux 0xa6e42324 __mdiobus_write -EXPORT_SYMBOL vmlinux 0xa6f02bd5 tcf_register_action -EXPORT_SYMBOL vmlinux 0xa6f530b2 inet_csk_clear_xmit_timers -EXPORT_SYMBOL vmlinux 0xa70fabbe release_evntsel_nmi -EXPORT_SYMBOL vmlinux 0xa70fb761 flow_keys_basic_dissector -EXPORT_SYMBOL vmlinux 0xa71d2e2c ioread16be -EXPORT_SYMBOL vmlinux 0xa72cfb7d ioremap_wt -EXPORT_SYMBOL vmlinux 0xa74469ad dquot_initialize_needed -EXPORT_SYMBOL vmlinux 0xa745e431 blk_queue_max_segments -EXPORT_SYMBOL vmlinux 0xa746f1bd tcp_seq_start -EXPORT_SYMBOL vmlinux 0xa749e507 send_sig -EXPORT_SYMBOL vmlinux 0xa74b1205 dma_set_coherent_mask -EXPORT_SYMBOL vmlinux 0xa74c9877 refcount_dec_and_rtnl_lock -EXPORT_SYMBOL vmlinux 0xa75b8609 prepare_creds -EXPORT_SYMBOL vmlinux 0xa7646880 adjust_managed_page_count -EXPORT_SYMBOL vmlinux 0xa765073d vmf_insert_mixed_prot -EXPORT_SYMBOL vmlinux 0xa76ac611 arp_send -EXPORT_SYMBOL vmlinux 0xa77748a4 d_find_any_alias -EXPORT_SYMBOL vmlinux 0xa77bfd29 register_inet6addr_validator_notifier -EXPORT_SYMBOL vmlinux 0xa77e3638 security_sock_graft -EXPORT_SYMBOL vmlinux 0xa78af5f3 ioread32 -EXPORT_SYMBOL vmlinux 0xa796679d __SCT__tp_func_dma_fence_emit -EXPORT_SYMBOL vmlinux 0xa796feab xsk_tx_release -EXPORT_SYMBOL vmlinux 0xa7ad91aa xfrm4_rcv_encap -EXPORT_SYMBOL vmlinux 0xa7bd593b tcf_exts_destroy -EXPORT_SYMBOL vmlinux 0xa7c306e2 remove_proc_entry -EXPORT_SYMBOL vmlinux 0xa7ee6a84 generic_file_readonly_mmap -EXPORT_SYMBOL vmlinux 0xa7eedcc4 call_usermodehelper -EXPORT_SYMBOL vmlinux 0xa7f56ed8 neigh_table_clear -EXPORT_SYMBOL vmlinux 0xa8024fd1 sdev_prefix_printk -EXPORT_SYMBOL vmlinux 0xa805ecfc acpi_release_global_lock -EXPORT_SYMBOL vmlinux 0xa80ce3a3 pci_disable_msix -EXPORT_SYMBOL vmlinux 0xa836ba02 wrmsr_safe_regs -EXPORT_SYMBOL vmlinux 0xa842660a to_nd_btt -EXPORT_SYMBOL vmlinux 0xa843805a get_unused_fd_flags -EXPORT_SYMBOL vmlinux 0xa84c2686 setup_new_exec -EXPORT_SYMBOL vmlinux 0xa84ce9e0 crypto_aes_inv_sbox -EXPORT_SYMBOL vmlinux 0xa8572fd9 ping_prot -EXPORT_SYMBOL vmlinux 0xa8694ecd kblockd_schedule_work -EXPORT_SYMBOL vmlinux 0xa8696f4e _dev_notice -EXPORT_SYMBOL vmlinux 0xa86dd1c6 cfb_copyarea -EXPORT_SYMBOL vmlinux 0xa8727bbd tcf_get_next_proto -EXPORT_SYMBOL vmlinux 0xa88c8d48 filemap_invalidate_unlock_two -EXPORT_SYMBOL vmlinux 0xa890a401 inet_frag_kill -EXPORT_SYMBOL vmlinux 0xa89a1cf1 ipmi_dmi_get_slave_addr -EXPORT_SYMBOL vmlinux 0xa8b8ea7a unix_get_socket -EXPORT_SYMBOL vmlinux 0xa8baf582 pci_fixup_cardbus -EXPORT_SYMBOL vmlinux 0xa8bf9b10 rproc_elf_get_boot_addr -EXPORT_SYMBOL vmlinux 0xa8caa845 clk_bulk_put_all -EXPORT_SYMBOL vmlinux 0xa8cefcfe sock_edemux -EXPORT_SYMBOL vmlinux 0xa8d02ae4 jbd2_wait_inode_data -EXPORT_SYMBOL vmlinux 0xa8d0be74 cros_ec_cmd_xfer_status -EXPORT_SYMBOL vmlinux 0xa8d44058 md_bitmap_cond_end_sync -EXPORT_SYMBOL vmlinux 0xa8de79e7 dentry_open -EXPORT_SYMBOL vmlinux 0xa8e1aaef inet_sk_set_state -EXPORT_SYMBOL vmlinux 0xa8e6933a qdf2400_e44_present -EXPORT_SYMBOL vmlinux 0xa8e76b52 __serio_register_driver -EXPORT_SYMBOL vmlinux 0xa8f6c843 ip_frag_ecn_table -EXPORT_SYMBOL vmlinux 0xa909241b pci_enable_device_io -EXPORT_SYMBOL vmlinux 0xa90b26f8 pci_request_region -EXPORT_SYMBOL vmlinux 0xa90ca0de flush_rcu_work -EXPORT_SYMBOL vmlinux 0xa916b694 strnlen -EXPORT_SYMBOL vmlinux 0xa9247e1d bio_add_pc_page -EXPORT_SYMBOL vmlinux 0xa924b4aa __traceiter_kmem_cache_alloc_node -EXPORT_SYMBOL vmlinux 0xa931af8a asm_load_gs_index -EXPORT_SYMBOL vmlinux 0xa93acd47 dquot_get_next_dqblk -EXPORT_SYMBOL vmlinux 0xa94a09bb mem_section -EXPORT_SYMBOL vmlinux 0xa95e41e9 simple_dir_inode_operations -EXPORT_SYMBOL vmlinux 0xa965ca81 reciprocal_value -EXPORT_SYMBOL vmlinux 0xa976957d bitmap_remap -EXPORT_SYMBOL vmlinux 0xa977fadd tcp_get_md5sig_pool -EXPORT_SYMBOL vmlinux 0xa9785b49 cpu_core_map -EXPORT_SYMBOL vmlinux 0xa97c6668 sock_init_data -EXPORT_SYMBOL vmlinux 0xa998bb78 __xa_alloc -EXPORT_SYMBOL vmlinux 0xa99b39c2 prandom_bytes -EXPORT_SYMBOL vmlinux 0xa9af76ef filemap_page_mkwrite -EXPORT_SYMBOL vmlinux 0xa9bd0c91 bio_alloc_bioset -EXPORT_SYMBOL vmlinux 0xa9c72303 amd_iommu_pc_get_max_banks -EXPORT_SYMBOL vmlinux 0xa9d448b5 mr_vif_seq_next -EXPORT_SYMBOL vmlinux 0xa9e8aae0 dev_get_phys_port_name -EXPORT_SYMBOL vmlinux 0xa9ee0c26 del_gendisk -EXPORT_SYMBOL vmlinux 0xaa00fdc0 ec_transaction -EXPORT_SYMBOL vmlinux 0xaa0c318b vscnprintf -EXPORT_SYMBOL vmlinux 0xaa1312b6 netif_schedule_queue -EXPORT_SYMBOL vmlinux 0xaa19e4aa _kstrtol -EXPORT_SYMBOL vmlinux 0xaa1e03ae nd_region_acquire_lane -EXPORT_SYMBOL vmlinux 0xaa341905 acpi_bios_exception -EXPORT_SYMBOL vmlinux 0xaa44a707 cpumask_next -EXPORT_SYMBOL vmlinux 0xaa4977d8 rt_read_lock -EXPORT_SYMBOL vmlinux 0xaa59704a dcache_dir_lseek -EXPORT_SYMBOL vmlinux 0xaa5bb60d ip4_datagram_connect -EXPORT_SYMBOL vmlinux 0xaa6a75ec fuse_dequeue_forget -EXPORT_SYMBOL vmlinux 0xaa6edfca dev_uc_sync -EXPORT_SYMBOL vmlinux 0xaa6f23ad rfkill_get_led_trigger_name -EXPORT_SYMBOL vmlinux 0xaa77c661 devfreq_add_governor -EXPORT_SYMBOL vmlinux 0xaa7e5aa2 twl6040_get_pll -EXPORT_SYMBOL vmlinux 0xaa8476d5 cros_ec_prepare_tx -EXPORT_SYMBOL vmlinux 0xaa889f55 dmam_alloc_attrs -EXPORT_SYMBOL vmlinux 0xaaa4b9bc hchacha_block_generic -EXPORT_SYMBOL vmlinux 0xaab07152 __traceiter_mmap_lock_released -EXPORT_SYMBOL vmlinux 0xaab07985 vfs_fadvise -EXPORT_SYMBOL vmlinux 0xaab9b631 sched_autogroup_create_attach -EXPORT_SYMBOL vmlinux 0xaacb9576 disk_stack_limits -EXPORT_SYMBOL vmlinux 0xaacd846b inc_zone_page_state -EXPORT_SYMBOL vmlinux 0xaad0ae78 __bitmap_shift_right -EXPORT_SYMBOL vmlinux 0xaad5bbb3 tty_port_close_start -EXPORT_SYMBOL vmlinux 0xaad6d92f rfkill_init_sw_state -EXPORT_SYMBOL vmlinux 0xaad8c7d6 default_wake_function -EXPORT_SYMBOL vmlinux 0xaade69eb vfs_dup_fs_context -EXPORT_SYMBOL vmlinux 0xaae39183 skb_dump -EXPORT_SYMBOL vmlinux 0xaae8ab0e acpi_bus_power_manageable -EXPORT_SYMBOL vmlinux 0xaaefccaf vfio_unpin_pages -EXPORT_SYMBOL vmlinux 0xaafdc258 strcasecmp -EXPORT_SYMBOL vmlinux 0xab0b37dd nonseekable_open -EXPORT_SYMBOL vmlinux 0xab20fe91 scsi_command_normalize_sense -EXPORT_SYMBOL vmlinux 0xab3697e4 irq_poll_init -EXPORT_SYMBOL vmlinux 0xab3b75ea vme_dma_pattern_attribute -EXPORT_SYMBOL vmlinux 0xab5ea985 security_binder_set_context_mgr -EXPORT_SYMBOL vmlinux 0xab600421 probe_irq_off -EXPORT_SYMBOL vmlinux 0xab63baa5 unregister_inetaddr_validator_notifier -EXPORT_SYMBOL vmlinux 0xab64fee6 jbd2_fc_get_buf -EXPORT_SYMBOL vmlinux 0xab65ed80 set_memory_uc -EXPORT_SYMBOL vmlinux 0xab67a0ac dql_init -EXPORT_SYMBOL vmlinux 0xab6d5b3b hex_to_bin -EXPORT_SYMBOL vmlinux 0xab767149 put_cmsg -EXPORT_SYMBOL vmlinux 0xab781570 fb_get_options -EXPORT_SYMBOL vmlinux 0xab848340 register_sysctl_paths -EXPORT_SYMBOL vmlinux 0xaba3301e dma_resv_copy_fences -EXPORT_SYMBOL vmlinux 0xabcd2a99 ip_mc_check_igmp -EXPORT_SYMBOL vmlinux 0xabd254b6 pci_bus_assign_resources -EXPORT_SYMBOL vmlinux 0xabdd2809 xp_free -EXPORT_SYMBOL vmlinux 0xabe1b043 blkdev_issue_flush -EXPORT_SYMBOL vmlinux 0xabe7823c udp_table -EXPORT_SYMBOL vmlinux 0xabeb9438 skb_flow_dissector_init -EXPORT_SYMBOL vmlinux 0xabf32f29 utf16s_to_utf8s -EXPORT_SYMBOL vmlinux 0xac079b66 read_cache_pages -EXPORT_SYMBOL vmlinux 0xac0aea99 scmd_printk -EXPORT_SYMBOL vmlinux 0xac167def locks_copy_lock -EXPORT_SYMBOL vmlinux 0xac1a55be unregister_reboot_notifier -EXPORT_SYMBOL vmlinux 0xac1f6123 free_xenballooned_pages -EXPORT_SYMBOL vmlinux 0xac2f89c8 ipv6_setsockopt -EXPORT_SYMBOL vmlinux 0xac3201b0 udp_flow_hashrnd -EXPORT_SYMBOL vmlinux 0xac48c8b3 __dev_get_by_name -EXPORT_SYMBOL vmlinux 0xac52f382 __mod_node_page_state -EXPORT_SYMBOL vmlinux 0xac537ac2 percpu_counter_destroy -EXPORT_SYMBOL vmlinux 0xac5fcec0 in4_pton -EXPORT_SYMBOL vmlinux 0xac68eb34 set_user_nice -EXPORT_SYMBOL vmlinux 0xac740c05 flow_rule_match_enc_ipv4_addrs -EXPORT_SYMBOL vmlinux 0xac85715e input_get_keycode -EXPORT_SYMBOL vmlinux 0xacab29b7 seq_hlist_start_percpu -EXPORT_SYMBOL vmlinux 0xaccfccb7 i2c_del_adapter -EXPORT_SYMBOL vmlinux 0xacd66239 backlight_device_register -EXPORT_SYMBOL vmlinux 0xacd81eb3 jbd2_inode_cache -EXPORT_SYMBOL vmlinux 0xacddc3f9 cookie_ecn_ok -EXPORT_SYMBOL vmlinux 0xacddd806 ptp_get_vclocks_index -EXPORT_SYMBOL vmlinux 0xacea8173 acpi_debug_print -EXPORT_SYMBOL vmlinux 0xacf4d843 match_strdup -EXPORT_SYMBOL vmlinux 0xacf649bf audit_log_task_info -EXPORT_SYMBOL vmlinux 0xad0413d4 match_hex -EXPORT_SYMBOL vmlinux 0xad0ecb32 __dev_kfree_skb_any -EXPORT_SYMBOL vmlinux 0xad1036a2 amd_iommu_activate_guest_mode -EXPORT_SYMBOL vmlinux 0xad157ba6 __ip_mc_inc_group -EXPORT_SYMBOL vmlinux 0xad159d85 tcf_exts_dump_stats -EXPORT_SYMBOL vmlinux 0xad194f75 kthread_create_worker -EXPORT_SYMBOL vmlinux 0xad1eb18d d_hash_and_lookup -EXPORT_SYMBOL vmlinux 0xad336233 crypto_sha256_update -EXPORT_SYMBOL vmlinux 0xad357133 __traceiter_kmalloc_node -EXPORT_SYMBOL vmlinux 0xad3d8383 sched_autogroup_detach -EXPORT_SYMBOL vmlinux 0xad536c91 x86_cpu_to_acpiid -EXPORT_SYMBOL vmlinux 0xad5a7aa7 from_kgid -EXPORT_SYMBOL vmlinux 0xad73041f autoremove_wake_function -EXPORT_SYMBOL vmlinux 0xad73c65a vlan_dev_real_dev -EXPORT_SYMBOL vmlinux 0xad7a83a4 write_cache_pages -EXPORT_SYMBOL vmlinux 0xadae6df8 blake2s_final -EXPORT_SYMBOL vmlinux 0xadba93e4 pagevec_lookup_range_tag -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 0xadceeeac set_pages_array_wb -EXPORT_SYMBOL vmlinux 0xadcf98cb dcache_dir_open -EXPORT_SYMBOL vmlinux 0xadcfff9e __skb_checksum_complete -EXPORT_SYMBOL vmlinux 0xadd139d4 rfs_needed -EXPORT_SYMBOL vmlinux 0xadd38198 bio_integrity_alloc -EXPORT_SYMBOL vmlinux 0xade454af get_user_pages_unlocked -EXPORT_SYMBOL vmlinux 0xadf3c0e9 get_tz_trend -EXPORT_SYMBOL vmlinux 0xadfdfcef __bitmap_andnot -EXPORT_SYMBOL vmlinux 0xae04012c __vmalloc -EXPORT_SYMBOL vmlinux 0xae08910b unregister_nls -EXPORT_SYMBOL vmlinux 0xae0c5761 eth_type_trans -EXPORT_SYMBOL vmlinux 0xae0fa482 dma_fence_signal_timestamp_locked -EXPORT_SYMBOL vmlinux 0xae220801 mmc_remove_host -EXPORT_SYMBOL vmlinux 0xae24d68b blk_mq_start_hw_queue -EXPORT_SYMBOL vmlinux 0xae26351a jbd2_journal_unlock_updates -EXPORT_SYMBOL vmlinux 0xae316c11 icmpv6_err_convert -EXPORT_SYMBOL vmlinux 0xae517134 sk_net_capable -EXPORT_SYMBOL vmlinux 0xae5a04bb acpi_evaluate_dsm -EXPORT_SYMBOL vmlinux 0xae658d67 blk_put_queue -EXPORT_SYMBOL vmlinux 0xae70a8fe page_symlink_inode_operations -EXPORT_SYMBOL vmlinux 0xae7f4300 vme_dma_list_add -EXPORT_SYMBOL vmlinux 0xae86d3e9 md_write_end -EXPORT_SYMBOL vmlinux 0xaea77527 sock_common_recvmsg -EXPORT_SYMBOL vmlinux 0xaeac049a generate_random_guid -EXPORT_SYMBOL vmlinux 0xaeafa389 netdev_bonding_info_change -EXPORT_SYMBOL vmlinux 0xaebd12f0 acpi_get_name -EXPORT_SYMBOL vmlinux 0xaed4a651 idr_replace -EXPORT_SYMBOL vmlinux 0xaf15abf5 pci_dev_put -EXPORT_SYMBOL vmlinux 0xaf16bad5 unix_destruct_scm -EXPORT_SYMBOL vmlinux 0xaf1a319f phy_ethtool_nway_reset -EXPORT_SYMBOL vmlinux 0xaf21911f pci_request_regions -EXPORT_SYMBOL vmlinux 0xaf354bbe cpu_tss_rw -EXPORT_SYMBOL vmlinux 0xaf3dd7dc scsi_logging_level -EXPORT_SYMBOL vmlinux 0xaf409722 neigh_proc_dointvec_jiffies -EXPORT_SYMBOL vmlinux 0xaf464d1d seq_put_decimal_ll -EXPORT_SYMBOL vmlinux 0xaf6d5700 mempool_create_node -EXPORT_SYMBOL vmlinux 0xaf897626 mipi_dsi_dcs_nop -EXPORT_SYMBOL vmlinux 0xafaa9eba sock_no_bind -EXPORT_SYMBOL vmlinux 0xafb2bce2 remove_proc_subtree -EXPORT_SYMBOL vmlinux 0xafba9e32 xfrm4_protocol_register -EXPORT_SYMBOL vmlinux 0xafc08054 dotdot_name -EXPORT_SYMBOL vmlinux 0xafc7ccf6 set_binfmt -EXPORT_SYMBOL vmlinux 0xafca46b5 mfd_cell_disable -EXPORT_SYMBOL vmlinux 0xafd0fc1c netdev_upper_dev_link -EXPORT_SYMBOL vmlinux 0xafd5ff2c amd_iommu_v2_supported -EXPORT_SYMBOL vmlinux 0xafd6f077 dquot_commit -EXPORT_SYMBOL vmlinux 0xafd744c6 __x86_indirect_thunk_rbp -EXPORT_SYMBOL vmlinux 0xafe651d5 blk_rq_append_bio -EXPORT_SYMBOL vmlinux 0xafec566c fc_mount -EXPORT_SYMBOL vmlinux 0xafed057d nf_register_sockopt -EXPORT_SYMBOL vmlinux 0xaffbb48f flow_rule_match_tcp -EXPORT_SYMBOL vmlinux 0xb007fcea seg6_hmac_net_exit -EXPORT_SYMBOL vmlinux 0xb01bebf9 xfrm_get_acqseq -EXPORT_SYMBOL vmlinux 0xb02df2d6 __traceiter_rdpmc -EXPORT_SYMBOL vmlinux 0xb0448a4e param_set_charp -EXPORT_SYMBOL vmlinux 0xb058ca07 dim_calc_stats -EXPORT_SYMBOL vmlinux 0xb05fc310 sysctl_rmem_max -EXPORT_SYMBOL vmlinux 0xb09c654b md_done_sync -EXPORT_SYMBOL vmlinux 0xb0a0da0c rational_best_approximation -EXPORT_SYMBOL vmlinux 0xb0a90db0 prepare_to_swait_event -EXPORT_SYMBOL vmlinux 0xb0cca62d lockref_get_or_lock -EXPORT_SYMBOL vmlinux 0xb0e10781 get_option -EXPORT_SYMBOL vmlinux 0xb0e534ed vme_irq_generate -EXPORT_SYMBOL vmlinux 0xb0e602eb memmove -EXPORT_SYMBOL vmlinux 0xb0eae336 fib_default_rule_add -EXPORT_SYMBOL vmlinux 0xb0f389ee utf8_normalize -EXPORT_SYMBOL vmlinux 0xb10e7df4 __kfifo_dma_in_prepare -EXPORT_SYMBOL vmlinux 0xb112cc09 remap_vmalloc_range -EXPORT_SYMBOL vmlinux 0xb11cb119 skb_copy_and_csum_dev -EXPORT_SYMBOL vmlinux 0xb121390a probe_irq_on -EXPORT_SYMBOL vmlinux 0xb12cbacb fb_unregister_client -EXPORT_SYMBOL vmlinux 0xb14ab1ef hdmi_audio_infoframe_init -EXPORT_SYMBOL vmlinux 0xb14fc46a find_next_clump8 -EXPORT_SYMBOL vmlinux 0xb1716d03 agp_generic_alloc_user -EXPORT_SYMBOL vmlinux 0xb190bfc9 ip_route_me_harder -EXPORT_SYMBOL vmlinux 0xb19a5453 __per_cpu_offset -EXPORT_SYMBOL vmlinux 0xb19b2c14 fs_param_is_fd -EXPORT_SYMBOL vmlinux 0xb1bf4398 pci_scan_slot -EXPORT_SYMBOL vmlinux 0xb1c3a01a oops_in_progress -EXPORT_SYMBOL vmlinux 0xb1cda17a tcp_md5_do_add -EXPORT_SYMBOL vmlinux 0xb1cddac9 tcp_v4_md5_lookup -EXPORT_SYMBOL vmlinux 0xb1d3a15c blk_finish_plug -EXPORT_SYMBOL vmlinux 0xb1d43827 serio_unregister_driver -EXPORT_SYMBOL vmlinux 0xb1ddf995 jiffies_64_to_clock_t -EXPORT_SYMBOL vmlinux 0xb1e67f8a key_invalidate -EXPORT_SYMBOL vmlinux 0xb219d56c wbinvd_on_cpu -EXPORT_SYMBOL vmlinux 0xb226eb2e pin_user_pages -EXPORT_SYMBOL vmlinux 0xb22be6f4 phy_modify_paged -EXPORT_SYMBOL vmlinux 0xb22e16d5 radix_tree_maybe_preload -EXPORT_SYMBOL vmlinux 0xb23007ae rt6_lookup -EXPORT_SYMBOL vmlinux 0xb23027c1 kstrtos16_from_user -EXPORT_SYMBOL vmlinux 0xb2338d81 __x86_indirect_thunk_rsp -EXPORT_SYMBOL vmlinux 0xb2376030 eth_header_parse -EXPORT_SYMBOL vmlinux 0xb23b2720 mmc_is_req_done -EXPORT_SYMBOL vmlinux 0xb2601486 __SCT__tp_func_dma_fence_enable_signal -EXPORT_SYMBOL vmlinux 0xb2628edf bio_integrity_trim -EXPORT_SYMBOL vmlinux 0xb26e133d __cleancache_put_page -EXPORT_SYMBOL vmlinux 0xb2770965 submit_bio_wait -EXPORT_SYMBOL vmlinux 0xb281a88e __netdev_notify_peers -EXPORT_SYMBOL vmlinux 0xb2b2b670 gnet_stats_copy_rate_est -EXPORT_SYMBOL vmlinux 0xb2bcb088 acpi_current_gpe_count -EXPORT_SYMBOL vmlinux 0xb2c96edc convert_art_ns_to_tsc -EXPORT_SYMBOL vmlinux 0xb2e4dc10 sock_set_keepalive -EXPORT_SYMBOL vmlinux 0xb2e6a662 fault_in_iov_iter_writeable -EXPORT_SYMBOL vmlinux 0xb2efc9e7 pipe_lock -EXPORT_SYMBOL vmlinux 0xb2f35c6a xxh64 -EXPORT_SYMBOL vmlinux 0xb2f723e9 pci_map_biosrom -EXPORT_SYMBOL vmlinux 0xb2f74fb6 intel_gmch_remove -EXPORT_SYMBOL vmlinux 0xb2fabf63 efi -EXPORT_SYMBOL vmlinux 0xb2fcb56d queue_delayed_work_on -EXPORT_SYMBOL vmlinux 0xb2fd5ceb __put_user_4 -EXPORT_SYMBOL vmlinux 0xb308c97d wait_woken -EXPORT_SYMBOL vmlinux 0xb30b9822 vme_master_set -EXPORT_SYMBOL vmlinux 0xb312f16c iterate_fd -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 0xb32af783 elv_rb_add -EXPORT_SYMBOL vmlinux 0xb32fddd2 mipi_dsi_compression_mode -EXPORT_SYMBOL vmlinux 0xb334cace take_dentry_name_snapshot -EXPORT_SYMBOL vmlinux 0xb3432b52 inet6_add_protocol -EXPORT_SYMBOL vmlinux 0xb3687850 out_of_line_wait_on_bit_lock -EXPORT_SYMBOL vmlinux 0xb3863a67 acpi_set_gpe_wake_mask -EXPORT_SYMBOL vmlinux 0xb38aef6b twl6040_clear_bits -EXPORT_SYMBOL vmlinux 0xb39f3020 rt_spin_lock -EXPORT_SYMBOL vmlinux 0xb3a2dfdf nmi_panic -EXPORT_SYMBOL vmlinux 0xb3a49aa1 unpin_user_page -EXPORT_SYMBOL vmlinux 0xb3b1753d genl_notify -EXPORT_SYMBOL vmlinux 0xb3b250e7 nf_log_trace -EXPORT_SYMBOL vmlinux 0xb3bd68cc security_secmark_relabel_packet -EXPORT_SYMBOL vmlinux 0xb3cec01f devm_pci_remap_iospace -EXPORT_SYMBOL vmlinux 0xb3d2c76d scsi_hostbyte_string -EXPORT_SYMBOL vmlinux 0xb3f49446 kstrtos8_from_user -EXPORT_SYMBOL vmlinux 0xb3f548ad kmemdup_nul -EXPORT_SYMBOL vmlinux 0xb3f604c6 path_put -EXPORT_SYMBOL vmlinux 0xb3f7646e kthread_should_stop -EXPORT_SYMBOL vmlinux 0xb4043948 acpi_execute_simple_method -EXPORT_SYMBOL vmlinux 0xb408a43a nf_log_bind_pf -EXPORT_SYMBOL vmlinux 0xb4171d2c config_item_get -EXPORT_SYMBOL vmlinux 0xb423dba1 console_blanked -EXPORT_SYMBOL vmlinux 0xb426d3c2 ptp_clock_index -EXPORT_SYMBOL vmlinux 0xb429121f netdev_master_upper_dev_get -EXPORT_SYMBOL vmlinux 0xb43412f6 dma_alloc_attrs -EXPORT_SYMBOL vmlinux 0xb454faf6 iput -EXPORT_SYMBOL vmlinux 0xb4577003 acpi_dev_present -EXPORT_SYMBOL vmlinux 0xb47b6891 mipi_dsi_dcs_write_buffer -EXPORT_SYMBOL vmlinux 0xb47cca30 csum_ipv6_magic -EXPORT_SYMBOL vmlinux 0xb481d9ae pci_disable_device -EXPORT_SYMBOL vmlinux 0xb48d4d22 security_sb_eat_lsm_opts -EXPORT_SYMBOL vmlinux 0xb492dd44 pcie_set_readrq -EXPORT_SYMBOL vmlinux 0xb4ab05b3 thaw_bdev -EXPORT_SYMBOL vmlinux 0xb4abebcd devm_ioport_map -EXPORT_SYMBOL vmlinux 0xb4ca67db blk_post_runtime_suspend -EXPORT_SYMBOL vmlinux 0xb4ceb2c8 skb_headers_offset_update -EXPORT_SYMBOL vmlinux 0xb4dd65c8 ip_sock_set_recverr -EXPORT_SYMBOL vmlinux 0xb4dec663 file_update_time -EXPORT_SYMBOL vmlinux 0xb4e37ab7 dma_fence_wait_timeout -EXPORT_SYMBOL vmlinux 0xb4f13d2a abort -EXPORT_SYMBOL vmlinux 0xb4f3c278 __inc_node_page_state -EXPORT_SYMBOL vmlinux 0xb50ef799 input_enable_softrepeat -EXPORT_SYMBOL vmlinux 0xb517e734 iov_iter_bvec -EXPORT_SYMBOL vmlinux 0xb5216dc9 mempool_init -EXPORT_SYMBOL vmlinux 0xb527621f mipi_dsi_picture_parameter_set -EXPORT_SYMBOL vmlinux 0xb528d146 generic_listxattr -EXPORT_SYMBOL vmlinux 0xb52ee8be intel_gtt_clear_range -EXPORT_SYMBOL vmlinux 0xb530efdf mipi_dsi_turn_on_peripheral -EXPORT_SYMBOL vmlinux 0xb539b838 noop_qdisc -EXPORT_SYMBOL vmlinux 0xb53a99e9 xsk_set_rx_need_wakeup -EXPORT_SYMBOL vmlinux 0xb53f2810 tcp_sockets_allocated -EXPORT_SYMBOL vmlinux 0xb5442131 mipi_dsi_dcs_get_pixel_format -EXPORT_SYMBOL vmlinux 0xb54f7d1e ilookup -EXPORT_SYMBOL vmlinux 0xb55cb18e generic_set_encrypted_ci_d_ops -EXPORT_SYMBOL vmlinux 0xb56216c6 dump_page -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 0xb5a8edeb xa_get_mark -EXPORT_SYMBOL vmlinux 0xb5aa7165 dma_pool_destroy -EXPORT_SYMBOL vmlinux 0xb5ab892d uv_undefined -EXPORT_SYMBOL vmlinux 0xb5b63711 fileattr_fill_xflags -EXPORT_SYMBOL vmlinux 0xb5bd4331 alloc_xenballooned_pages -EXPORT_SYMBOL vmlinux 0xb5c12aa9 inode_init_owner -EXPORT_SYMBOL vmlinux 0xb5e73116 flush_delayed_work -EXPORT_SYMBOL vmlinux 0xb5ece3ec arch_debugfs_dir -EXPORT_SYMBOL vmlinux 0xb5ef4f6f tcf_exts_validate -EXPORT_SYMBOL vmlinux 0xb5f219a5 fddi_type_trans -EXPORT_SYMBOL vmlinux 0xb60fca60 cont_write_begin -EXPORT_SYMBOL vmlinux 0xb61dceb6 tcp_make_synack -EXPORT_SYMBOL vmlinux 0xb633f115 irq_poll_enable -EXPORT_SYMBOL vmlinux 0xb63a2c57 __destroy_inode -EXPORT_SYMBOL vmlinux 0xb6426b5b simple_transaction_set -EXPORT_SYMBOL vmlinux 0xb6479bd8 add_wait_queue -EXPORT_SYMBOL vmlinux 0xb64b3cc2 dma_fence_array_ops -EXPORT_SYMBOL vmlinux 0xb64e5da9 is_acpi_device_node -EXPORT_SYMBOL vmlinux 0xb65476a8 vlan_vids_add_by_dev -EXPORT_SYMBOL vmlinux 0xb654ef65 acpi_os_read_port -EXPORT_SYMBOL vmlinux 0xb65a2352 jbd2_fc_begin_commit -EXPORT_SYMBOL vmlinux 0xb65fdd28 filemap_fdatawait_range_keep_errors -EXPORT_SYMBOL vmlinux 0xb66b0640 nd_region_release_lane -EXPORT_SYMBOL vmlinux 0xb674a534 acpi_unmap_cpu -EXPORT_SYMBOL vmlinux 0xb675af6f __init_waitqueue_head -EXPORT_SYMBOL vmlinux 0xb678366f int_sqrt -EXPORT_SYMBOL vmlinux 0xb679fc30 page_cache_prev_miss -EXPORT_SYMBOL vmlinux 0xb67c9280 utf8cursor -EXPORT_SYMBOL vmlinux 0xb67fec0e uuid_parse -EXPORT_SYMBOL vmlinux 0xb6833c77 iov_iter_discard -EXPORT_SYMBOL vmlinux 0xb690556d unregister_mii_tstamp_controller -EXPORT_SYMBOL vmlinux 0xb6936ffe _bcd2bin -EXPORT_SYMBOL vmlinux 0xb6a02fc2 dma_fence_init -EXPORT_SYMBOL vmlinux 0xb6a29a39 pci_reenable_device -EXPORT_SYMBOL vmlinux 0xb6a8180a __cleancache_invalidate_page -EXPORT_SYMBOL vmlinux 0xb6acaa13 phy_sfp_detach -EXPORT_SYMBOL vmlinux 0xb6b28749 balance_dirty_pages_ratelimited -EXPORT_SYMBOL vmlinux 0xb6c51781 migrate_vma_finalize -EXPORT_SYMBOL vmlinux 0xb6e36ce2 psched_ratecfg_precompute -EXPORT_SYMBOL vmlinux 0xb6eabe34 blk_queue_segment_boundary -EXPORT_SYMBOL vmlinux 0xb6eb728c acpi_register_debugger -EXPORT_SYMBOL vmlinux 0xb6f19afe input_mt_assign_slots -EXPORT_SYMBOL vmlinux 0xb6fde909 close_fd -EXPORT_SYMBOL vmlinux 0xb71589f0 skip_spaces -EXPORT_SYMBOL vmlinux 0xb71ed69f __hw_addr_unsync -EXPORT_SYMBOL vmlinux 0xb72f8efc seq_write -EXPORT_SYMBOL vmlinux 0xb73965e8 dcb_ieee_delapp -EXPORT_SYMBOL vmlinux 0xb74bcf67 inode_newsize_ok -EXPORT_SYMBOL vmlinux 0xb74e1bea truncate_inode_pages_range -EXPORT_SYMBOL vmlinux 0xb7593ddc iosf_mbi_unregister_pmic_bus_access_notifier -EXPORT_SYMBOL vmlinux 0xb759fcb9 sg_miter_next -EXPORT_SYMBOL vmlinux 0xb784154f utf8_casefold_hash -EXPORT_SYMBOL vmlinux 0xb78d85e6 sg_alloc_table_from_pages_segment -EXPORT_SYMBOL vmlinux 0xb78debe3 LZ4_decompress_fast_usingDict -EXPORT_SYMBOL vmlinux 0xb7968ebd acpi_get_hp_hw_control_from_firmware -EXPORT_SYMBOL vmlinux 0xb7b238d9 capable_wrt_inode_uidgid -EXPORT_SYMBOL vmlinux 0xb7b34f18 km_state_expired -EXPORT_SYMBOL vmlinux 0xb7b3ffcc __tracepoint_read_msr -EXPORT_SYMBOL vmlinux 0xb7b54d94 sock_no_mmap -EXPORT_SYMBOL vmlinux 0xb7b9b38c nobh_write_begin -EXPORT_SYMBOL vmlinux 0xb7c0f443 sort -EXPORT_SYMBOL vmlinux 0xb7c6db70 sysctl_max_skb_frags -EXPORT_SYMBOL vmlinux 0xb7d07ca9 cleancache_register_ops -EXPORT_SYMBOL vmlinux 0xb7e0c6d6 rproc_get_by_phandle -EXPORT_SYMBOL vmlinux 0xb7e22489 blk_queue_max_discard_sectors -EXPORT_SYMBOL vmlinux 0xb7e28fab blk_queue_flag_clear -EXPORT_SYMBOL vmlinux 0xb7eaacbc gnet_stats_copy_queue -EXPORT_SYMBOL vmlinux 0xb7ec1981 skb_flow_dissect_ct -EXPORT_SYMBOL vmlinux 0xb7ef45e4 pci_bus_claim_resources -EXPORT_SYMBOL vmlinux 0xb807e0a2 key_revoke -EXPORT_SYMBOL vmlinux 0xb8153f25 km_new_mapping -EXPORT_SYMBOL vmlinux 0xb81fa00e jbd2_journal_release_jbd_inode -EXPORT_SYMBOL vmlinux 0xb8248ac2 blk_queue_virt_boundary -EXPORT_SYMBOL vmlinux 0xb83129db ZSTD_decompressContinue -EXPORT_SYMBOL vmlinux 0xb84010a7 copy_page_to_iter -EXPORT_SYMBOL vmlinux 0xb850cd28 page_readlink -EXPORT_SYMBOL vmlinux 0xb8624ecf tcp_child_process -EXPORT_SYMBOL vmlinux 0xb8640e40 vfs_fileattr_get -EXPORT_SYMBOL vmlinux 0xb868ac5c register_sysrq_key -EXPORT_SYMBOL vmlinux 0xb86b9783 dma_find_channel -EXPORT_SYMBOL vmlinux 0xb86f74c5 free_cpumask_var -EXPORT_SYMBOL vmlinux 0xb8704394 pci_add_new_bus -EXPORT_SYMBOL vmlinux 0xb896d89b phy_detach -EXPORT_SYMBOL vmlinux 0xb89b6e6b guid_parse -EXPORT_SYMBOL vmlinux 0xb8a2eea7 __breadahead -EXPORT_SYMBOL vmlinux 0xb8ade160 input_register_handler -EXPORT_SYMBOL vmlinux 0xb8b043f2 kfree_link -EXPORT_SYMBOL vmlinux 0xb8b52036 mmc_add_host -EXPORT_SYMBOL vmlinux 0xb8b9b9bf __dynamic_ibdev_dbg -EXPORT_SYMBOL vmlinux 0xb8b9f817 kmalloc_order_trace -EXPORT_SYMBOL vmlinux 0xb8c02bd8 neigh_direct_output -EXPORT_SYMBOL vmlinux 0xb8c1382b flow_rule_match_enc_opts -EXPORT_SYMBOL vmlinux 0xb8d5b871 agp_backend_release -EXPORT_SYMBOL vmlinux 0xb8e2cf98 skb_recv_datagram -EXPORT_SYMBOL vmlinux 0xb8e7c225 tcf_action_exec -EXPORT_SYMBOL vmlinux 0xb8e7ce2c __put_user_8 -EXPORT_SYMBOL vmlinux 0xb8e87556 pci_get_class -EXPORT_SYMBOL vmlinux 0xb9056bb6 remove_conflicting_framebuffers -EXPORT_SYMBOL vmlinux 0xb907513f unpoison_memory -EXPORT_SYMBOL vmlinux 0xb907c390 noop_fsync -EXPORT_SYMBOL vmlinux 0xb90c583a udp_lib_rehash -EXPORT_SYMBOL vmlinux 0xb911bb58 minmax_running_max -EXPORT_SYMBOL vmlinux 0xb92483f2 nf_log_unbind_pf -EXPORT_SYMBOL vmlinux 0xb94339c4 qdisc_put_stab -EXPORT_SYMBOL vmlinux 0xb9478d90 hdmi_drm_infoframe_unpack_only -EXPORT_SYMBOL vmlinux 0xb966323a agp_free_memory -EXPORT_SYMBOL vmlinux 0xb97220ff bitmap_parse -EXPORT_SYMBOL vmlinux 0xb97f7045 acpi_install_gpe_handler -EXPORT_SYMBOL vmlinux 0xb98ee0f2 nd_integrity_init -EXPORT_SYMBOL vmlinux 0xb992b507 tcp_sock_set_keepcnt -EXPORT_SYMBOL vmlinux 0xb99c2504 nf_ct_attach -EXPORT_SYMBOL vmlinux 0xb9a0566f phy_trigger_machine -EXPORT_SYMBOL vmlinux 0xb9b94bd0 refcount_dec_and_lock_irqsave -EXPORT_SYMBOL vmlinux 0xb9bbaeee vga_switcheroo_client_probe_defer -EXPORT_SYMBOL vmlinux 0xb9c245e1 setattr_copy -EXPORT_SYMBOL vmlinux 0xb9c71ba4 i2c_smbus_read_i2c_block_data_or_emulated -EXPORT_SYMBOL vmlinux 0xb9e276cf wrmsr_safe_regs_on_cpu -EXPORT_SYMBOL vmlinux 0xb9e7232c blk_rq_map_user_iov -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 0xba187635 cdev_del -EXPORT_SYMBOL vmlinux 0xba2777ae clocksource_change_rating -EXPORT_SYMBOL vmlinux 0xba4702ac dcb_ieee_getapp_prio_dscp_mask_map -EXPORT_SYMBOL vmlinux 0xba497f13 loops_per_jiffy -EXPORT_SYMBOL vmlinux 0xba53adab nla_policy_len -EXPORT_SYMBOL vmlinux 0xba597afa get_tree_single_reconf -EXPORT_SYMBOL vmlinux 0xba5fe413 genl_unregister_family -EXPORT_SYMBOL vmlinux 0xba631f12 mmc_sw_reset -EXPORT_SYMBOL vmlinux 0xba637e9b xfrm_lookup -EXPORT_SYMBOL vmlinux 0xba6f868e dquot_reclaim_space_nodirty -EXPORT_SYMBOL vmlinux 0xba77a8e1 rc5t583_ext_power_req_config -EXPORT_SYMBOL vmlinux 0xba8bdc18 simple_recursive_removal -EXPORT_SYMBOL vmlinux 0xba8d1378 kern_path -EXPORT_SYMBOL vmlinux 0xba8e0d91 bio_advance -EXPORT_SYMBOL vmlinux 0xba8fbd64 _raw_spin_lock -EXPORT_SYMBOL vmlinux 0xba91c518 end_buffer_async_write -EXPORT_SYMBOL vmlinux 0xba97b99f d_invalidate -EXPORT_SYMBOL vmlinux 0xba987f29 refresh_frequency_limits -EXPORT_SYMBOL vmlinux 0xbaabb310 passthru_features_check -EXPORT_SYMBOL vmlinux 0xbab50468 ip_ct_attach -EXPORT_SYMBOL vmlinux 0xbad178ee __devm_release_region -EXPORT_SYMBOL vmlinux 0xbb034742 netdev_lower_get_next_private -EXPORT_SYMBOL vmlinux 0xbb0540aa zlib_inflateReset -EXPORT_SYMBOL vmlinux 0xbb086ce5 __cond_resched_lock -EXPORT_SYMBOL vmlinux 0xbb113a05 netdev_lower_state_changed -EXPORT_SYMBOL vmlinux 0xbb13595e smp_call_function_many -EXPORT_SYMBOL vmlinux 0xbb17cdf5 netdev_info -EXPORT_SYMBOL vmlinux 0xbb1bac24 acpi_unregister_debugger -EXPORT_SYMBOL vmlinux 0xbb24f607 init_cdrom_command -EXPORT_SYMBOL vmlinux 0xbb27114d sock_bindtoindex -EXPORT_SYMBOL vmlinux 0xbb2b13a7 unlock_page -EXPORT_SYMBOL vmlinux 0xbb35675b __bitmap_intersects -EXPORT_SYMBOL vmlinux 0xbb3fe705 nf_ip_checksum -EXPORT_SYMBOL vmlinux 0xbb4f4766 simple_write_to_buffer -EXPORT_SYMBOL vmlinux 0xbb5ed0e3 xfrm_trans_queue_net -EXPORT_SYMBOL vmlinux 0xbb8ac9e5 skb_csum_hwoffload_help -EXPORT_SYMBOL vmlinux 0xbb8e169a vga_switcheroo_handler_flags -EXPORT_SYMBOL vmlinux 0xbba89de6 rfkill_alloc -EXPORT_SYMBOL vmlinux 0xbba89e2c ptp_find_pin_unlocked -EXPORT_SYMBOL vmlinux 0xbbe2bfe8 dev_pm_opp_unregister_notifier -EXPORT_SYMBOL vmlinux 0xbbe80fdb kmalloc_order -EXPORT_SYMBOL vmlinux 0xbbf62837 md_register_thread -EXPORT_SYMBOL vmlinux 0xbbfd3dfc dm_table_get_md -EXPORT_SYMBOL vmlinux 0xbc2031de acpi_processor_get_bios_limit -EXPORT_SYMBOL vmlinux 0xbc2af18d kthread_create_worker_on_cpu -EXPORT_SYMBOL vmlinux 0xbc4d272e napi_consume_skb -EXPORT_SYMBOL vmlinux 0xbc56c859 to_nd_pfn -EXPORT_SYMBOL vmlinux 0xbc7e1f82 elevator_alloc -EXPORT_SYMBOL vmlinux 0xbc96cc9a devm_backlight_device_unregister -EXPORT_SYMBOL vmlinux 0xbca10bfa kmem_cache_alloc_bulk -EXPORT_SYMBOL vmlinux 0xbcab6ee6 sscanf -EXPORT_SYMBOL vmlinux 0xbcba84ce ioc_lookup_icq -EXPORT_SYMBOL vmlinux 0xbcc48a62 fb_prepare_logo -EXPORT_SYMBOL vmlinux 0xbce09f00 init_net -EXPORT_SYMBOL vmlinux 0xbce923c2 pci_claim_resource -EXPORT_SYMBOL vmlinux 0xbd062fa1 rtc_add_group -EXPORT_SYMBOL vmlinux 0xbd0a2050 alloc_fcdev -EXPORT_SYMBOL vmlinux 0xbd22c175 mmc_retune_unpause -EXPORT_SYMBOL vmlinux 0xbd393ca3 ioread64be_lo_hi -EXPORT_SYMBOL vmlinux 0xbd462b55 __kfifo_init -EXPORT_SYMBOL vmlinux 0xbd5a1b4e generic_pipe_buf_try_steal -EXPORT_SYMBOL vmlinux 0xbd6841d4 crc16 -EXPORT_SYMBOL vmlinux 0xbd7d1684 tcp_enter_cwr -EXPORT_SYMBOL vmlinux 0xbd7e60f3 register_sysctl -EXPORT_SYMBOL vmlinux 0xbd81961a blk_queue_update_dma_alignment -EXPORT_SYMBOL vmlinux 0xbd8ed845 __acpi_mdiobus_register -EXPORT_SYMBOL vmlinux 0xbd8f7a57 i2c_get_adapter -EXPORT_SYMBOL vmlinux 0xbda5e128 agp_find_bridge -EXPORT_SYMBOL vmlinux 0xbdc8bf23 sock_no_sendmsg -EXPORT_SYMBOL vmlinux 0xbde9c8da udp_set_csum -EXPORT_SYMBOL vmlinux 0xbdfb6dbb __fentry__ -EXPORT_SYMBOL vmlinux 0xbe0110e7 acpi_set_gpe -EXPORT_SYMBOL vmlinux 0xbe1427af __printk_cpu_unlock -EXPORT_SYMBOL vmlinux 0xbe1f6123 inet_put_port -EXPORT_SYMBOL vmlinux 0xbe2dca13 __netdev_alloc_skb -EXPORT_SYMBOL vmlinux 0xbe3e13ea eth_validate_addr -EXPORT_SYMBOL vmlinux 0xbe43578c tcf_qevent_dump -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 0xbe7e05a8 acpi_tb_install_and_load_table -EXPORT_SYMBOL vmlinux 0xbe828db2 pnp_activate_dev -EXPORT_SYMBOL vmlinux 0xbec6e802 neigh_changeaddr -EXPORT_SYMBOL vmlinux 0xbecf5f19 radix_tree_delete -EXPORT_SYMBOL vmlinux 0xbef337f6 mntget -EXPORT_SYMBOL vmlinux 0xbef43296 console_conditional_schedule -EXPORT_SYMBOL vmlinux 0xbef648c5 dump_skip_to -EXPORT_SYMBOL vmlinux 0xbf121146 configfs_unregister_default_group -EXPORT_SYMBOL vmlinux 0xbf28ef5b mmc_start_request -EXPORT_SYMBOL vmlinux 0xbf3193ec acpi_unregister_ioapic -EXPORT_SYMBOL vmlinux 0xbf3254d5 proc_do_large_bitmap -EXPORT_SYMBOL vmlinux 0xbf59c419 posix_acl_init -EXPORT_SYMBOL vmlinux 0xbf714fb3 xp_dma_sync_for_cpu_slow -EXPORT_SYMBOL vmlinux 0xbf71b242 posix_acl_update_mode -EXPORT_SYMBOL vmlinux 0xbf7ee858 pagecache_write_end -EXPORT_SYMBOL vmlinux 0xbf9bcc8d __cap_empty_set -EXPORT_SYMBOL vmlinux 0xbfc177bc iowrite32_rep -EXPORT_SYMBOL vmlinux 0xbfe38964 md_finish_reshape -EXPORT_SYMBOL vmlinux 0xbfe53103 dcb_setapp -EXPORT_SYMBOL vmlinux 0xbfe8c91f udp_poll -EXPORT_SYMBOL vmlinux 0xbfee3ad5 loop_unregister_transfer -EXPORT_SYMBOL vmlinux 0xc006b3ea blk_queue_max_segment_size -EXPORT_SYMBOL vmlinux 0xc00c26b4 __quota_error -EXPORT_SYMBOL vmlinux 0xc0364007 fault_in_writeable -EXPORT_SYMBOL vmlinux 0xc037e7d1 tcf_chain_put_by_act -EXPORT_SYMBOL vmlinux 0xc0446a94 xfrm_alloc_spi -EXPORT_SYMBOL vmlinux 0xc0485d14 mr_vif_seq_idx -EXPORT_SYMBOL vmlinux 0xc06c29f8 netif_set_xps_queue -EXPORT_SYMBOL vmlinux 0xc06d37d2 twl6040_reg_read -EXPORT_SYMBOL vmlinux 0xc06dc7c0 dcb_ieee_setapp -EXPORT_SYMBOL vmlinux 0xc0719a09 ps2_sliced_command -EXPORT_SYMBOL vmlinux 0xc0763484 rfkill_blocked -EXPORT_SYMBOL vmlinux 0xc07b0863 fb_destroy_modedb -EXPORT_SYMBOL vmlinux 0xc085ac6e d_exact_alias -EXPORT_SYMBOL vmlinux 0xc08b465b mr_mfc_seq_next -EXPORT_SYMBOL vmlinux 0xc0afb5d7 cgroup_bpf_enabled_key -EXPORT_SYMBOL vmlinux 0xc0b2664d devlink_dpipe_header_ipv4 -EXPORT_SYMBOL vmlinux 0xc0b4dac6 rproc_resource_cleanup -EXPORT_SYMBOL vmlinux 0xc0bca0f1 ZSTD_nextSrcSizeToDecompress -EXPORT_SYMBOL vmlinux 0xc0d1e8f2 cpufreq_generic_suspend -EXPORT_SYMBOL vmlinux 0xc0e153fd vfs_getattr -EXPORT_SYMBOL vmlinux 0xc0eabb5c inode_io_list_del -EXPORT_SYMBOL vmlinux 0xc0ff12fb nla_strdup -EXPORT_SYMBOL vmlinux 0xc0ff21c1 input_get_new_minor -EXPORT_SYMBOL vmlinux 0xc111ae64 intel_gtt_get -EXPORT_SYMBOL vmlinux 0xc11340c8 ethtool_notify -EXPORT_SYMBOL vmlinux 0xc1175b67 __SCK__tp_func_kmem_cache_alloc_node -EXPORT_SYMBOL vmlinux 0xc1321264 xfrm_register_type -EXPORT_SYMBOL vmlinux 0xc1365323 acpi_enable_all_wakeup_gpes -EXPORT_SYMBOL vmlinux 0xc13ecadf __pci_register_driver -EXPORT_SYMBOL vmlinux 0xc14dc168 acpi_get_data -EXPORT_SYMBOL vmlinux 0xc1514a3b free_irq -EXPORT_SYMBOL vmlinux 0xc15681d6 tty_port_carrier_raised -EXPORT_SYMBOL vmlinux 0xc16410b9 ZSTD_getDictID_fromDDict -EXPORT_SYMBOL vmlinux 0xc1644e5f prepare_to_swait_exclusive -EXPORT_SYMBOL vmlinux 0xc16b7620 rt_spin_trylock_bh -EXPORT_SYMBOL vmlinux 0xc16be39d iter_div_u64_rem -EXPORT_SYMBOL vmlinux 0xc16c5a4f tso_build_hdr -EXPORT_SYMBOL vmlinux 0xc172cb68 clear_inode -EXPORT_SYMBOL vmlinux 0xc179d845 ps2_handle_ack -EXPORT_SYMBOL vmlinux 0xc1827872 backlight_device_unregister -EXPORT_SYMBOL vmlinux 0xc19487c1 security_sb_set_mnt_opts -EXPORT_SYMBOL vmlinux 0xc1962cc4 blk_mq_rq_cpu -EXPORT_SYMBOL vmlinux 0xc1a3c6f7 __i2c_transfer -EXPORT_SYMBOL vmlinux 0xc1c276ff mmc_gpio_get_ro -EXPORT_SYMBOL vmlinux 0xc1d1c8b3 configfs_undepend_item -EXPORT_SYMBOL vmlinux 0xc1d5d504 scsi_cmd_allowed -EXPORT_SYMBOL vmlinux 0xc1d746eb __cpuhp_setup_state_cpuslocked -EXPORT_SYMBOL vmlinux 0xc1d8cfaf __fdget -EXPORT_SYMBOL vmlinux 0xc1eefc71 vfs_link -EXPORT_SYMBOL vmlinux 0xc1ffd04f pcie_port_service_unregister -EXPORT_SYMBOL vmlinux 0xc2074ef0 param_get_short -EXPORT_SYMBOL vmlinux 0xc209185e genphy_resume -EXPORT_SYMBOL vmlinux 0xc2093419 devfreq_update_interval -EXPORT_SYMBOL vmlinux 0xc2129eec bdevname -EXPORT_SYMBOL vmlinux 0xc2140116 pci_enable_ptm -EXPORT_SYMBOL vmlinux 0xc2271de8 mfd_add_devices -EXPORT_SYMBOL vmlinux 0xc2387137 qdisc_put -EXPORT_SYMBOL vmlinux 0xc238bdb3 pskb_extract -EXPORT_SYMBOL vmlinux 0xc2424641 agp3_generic_cleanup -EXPORT_SYMBOL vmlinux 0xc251ba64 mipi_dsi_device_unregister -EXPORT_SYMBOL vmlinux 0xc251f729 pcie_capability_write_dword -EXPORT_SYMBOL vmlinux 0xc267960e utf8_validate -EXPORT_SYMBOL vmlinux 0xc273e5b8 kthread_stop -EXPORT_SYMBOL vmlinux 0xc278c965 cpu_all_bits -EXPORT_SYMBOL vmlinux 0xc27fb14f vme_register_bridge -EXPORT_SYMBOL vmlinux 0xc29afc40 __genphy_config_aneg -EXPORT_SYMBOL vmlinux 0xc29bf967 strspn -EXPORT_SYMBOL vmlinux 0xc2bde72b scsi_target_resume -EXPORT_SYMBOL vmlinux 0xc2c92947 mount_subtree -EXPORT_SYMBOL vmlinux 0xc2cbe9e4 nd_device_notify -EXPORT_SYMBOL vmlinux 0xc2d4fb35 registered_fb -EXPORT_SYMBOL vmlinux 0xc2e3ea79 touchscreen_parse_properties -EXPORT_SYMBOL vmlinux 0xc2e587d1 reset_devices -EXPORT_SYMBOL vmlinux 0xc2f45365 xfrm_state_delete -EXPORT_SYMBOL vmlinux 0xc3055d20 usleep_range_state -EXPORT_SYMBOL vmlinux 0xc310b981 strnstr -EXPORT_SYMBOL vmlinux 0xc31db0ce is_vmalloc_addr -EXPORT_SYMBOL vmlinux 0xc31f0484 security_binder_transfer_file -EXPORT_SYMBOL vmlinux 0xc32c71af register_inetaddr_validator_notifier -EXPORT_SYMBOL vmlinux 0xc337e95d gen_pool_dma_alloc_align -EXPORT_SYMBOL vmlinux 0xc3584454 posix_lock_file -EXPORT_SYMBOL vmlinux 0xc3698d84 mini_qdisc_pair_init -EXPORT_SYMBOL vmlinux 0xc36a3bd4 __acpi_handle_debug -EXPORT_SYMBOL vmlinux 0xc37c723b dcbnl_cee_notify -EXPORT_SYMBOL vmlinux 0xc37f9c6e cpufreq_update_policy -EXPORT_SYMBOL vmlinux 0xc37fb81e try_lookup_one_len -EXPORT_SYMBOL vmlinux 0xc38259af __this_cpu_preempt_check -EXPORT_SYMBOL vmlinux 0xc38b79c0 dev_mc_add_excl -EXPORT_SYMBOL vmlinux 0xc38c83b8 mod_timer -EXPORT_SYMBOL vmlinux 0xc39490ac __blk_mq_end_request -EXPORT_SYMBOL vmlinux 0xc3aaf0a9 __put_user_1 -EXPORT_SYMBOL vmlinux 0xc3b17163 __module_get -EXPORT_SYMBOL vmlinux 0xc3bb4a1c __scsi_print_sense -EXPORT_SYMBOL vmlinux 0xc3bc72ad trace_print_array_seq -EXPORT_SYMBOL vmlinux 0xc3f0b770 netif_carrier_off -EXPORT_SYMBOL vmlinux 0xc415e702 inetdev_by_index -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 0xc450c030 unregister_framebuffer -EXPORT_SYMBOL vmlinux 0xc459bbdf ipv6_sock_mc_join -EXPORT_SYMBOL vmlinux 0xc46a2417 proc_create_data -EXPORT_SYMBOL vmlinux 0xc4718fab audit_log -EXPORT_SYMBOL vmlinux 0xc471bbd2 pm860x_bulk_write -EXPORT_SYMBOL vmlinux 0xc472e13a tcf_generic_walker -EXPORT_SYMBOL vmlinux 0xc47348ed inet6_register_protosw -EXPORT_SYMBOL vmlinux 0xc4777aa9 __ctzsi2 -EXPORT_SYMBOL vmlinux 0xc49a1c09 dec_node_page_state -EXPORT_SYMBOL vmlinux 0xc4ac1b6a kthread_bind -EXPORT_SYMBOL vmlinux 0xc4ae915e arch_touch_nmi_watchdog -EXPORT_SYMBOL vmlinux 0xc4c4fe0c blk_mq_stop_hw_queues -EXPORT_SYMBOL vmlinux 0xc4cd4350 unregister_netdevice_notifier_net -EXPORT_SYMBOL vmlinux 0xc4ebc85d sock_alloc_send_skb -EXPORT_SYMBOL vmlinux 0xc4eda4f7 neigh_resolve_output -EXPORT_SYMBOL vmlinux 0xc4ee98d7 pci_find_parent_resource -EXPORT_SYMBOL vmlinux 0xc4f3178b blk_mq_free_tag_set -EXPORT_SYMBOL vmlinux 0xc4fccabf __sock_create -EXPORT_SYMBOL vmlinux 0xc503171c down_write -EXPORT_SYMBOL vmlinux 0xc513b6c2 input_open_device -EXPORT_SYMBOL vmlinux 0xc527350c try_to_free_buffers -EXPORT_SYMBOL vmlinux 0xc5388acf security_binder_transfer_binder -EXPORT_SYMBOL vmlinux 0xc5446e70 dmam_free_coherent -EXPORT_SYMBOL vmlinux 0xc54d3c18 dma_fence_get_stub -EXPORT_SYMBOL vmlinux 0xc558530d profile_pc -EXPORT_SYMBOL vmlinux 0xc568ad4a uart_update_timeout -EXPORT_SYMBOL vmlinux 0xc578bb01 genphy_loopback -EXPORT_SYMBOL vmlinux 0xc5811c69 pmem_should_map_pages -EXPORT_SYMBOL vmlinux 0xc58d5a90 kstrtoll_from_user -EXPORT_SYMBOL vmlinux 0xc599a772 security_xfrm_state_delete -EXPORT_SYMBOL vmlinux 0xc5b2c5b2 PageMovable -EXPORT_SYMBOL vmlinux 0xc5b4845d end_page_writeback -EXPORT_SYMBOL vmlinux 0xc5b6f236 queue_work_on -EXPORT_SYMBOL vmlinux 0xc5d9c46c agp_try_unsupported_boot -EXPORT_SYMBOL vmlinux 0xc5db31d4 drop_super -EXPORT_SYMBOL vmlinux 0xc5dda1b8 phy_driver_unregister -EXPORT_SYMBOL vmlinux 0xc5e23aa4 seg6_hmac_info_add -EXPORT_SYMBOL vmlinux 0xc5e74216 release_resource -EXPORT_SYMBOL vmlinux 0xc5f7e801 sg_last -EXPORT_SYMBOL vmlinux 0xc5f8d40b gen_pool_alloc_algo_owner -EXPORT_SYMBOL vmlinux 0xc60d0620 __num_online_cpus -EXPORT_SYMBOL vmlinux 0xc61397b5 input_grab_device -EXPORT_SYMBOL vmlinux 0xc61ca65e iowrite64be_hi_lo -EXPORT_SYMBOL vmlinux 0xc62e8af8 ip6mr_rule_default -EXPORT_SYMBOL vmlinux 0xc631580a console_unlock -EXPORT_SYMBOL vmlinux 0xc632a007 xfrm6_protocol_deregister -EXPORT_SYMBOL vmlinux 0xc633d82d phy_unregister_fixup -EXPORT_SYMBOL vmlinux 0xc64445c7 pin_user_pages_locked -EXPORT_SYMBOL vmlinux 0xc65e4e97 secure_dccp_sequence_number -EXPORT_SYMBOL vmlinux 0xc666a132 crc_t10dif -EXPORT_SYMBOL vmlinux 0xc66a8304 cpu_rmap_add -EXPORT_SYMBOL vmlinux 0xc675704c d_alloc_parallel -EXPORT_SYMBOL vmlinux 0xc6910aa0 do_trace_rdpmc -EXPORT_SYMBOL vmlinux 0xc69d4b7b pcie_capability_read_dword -EXPORT_SYMBOL vmlinux 0xc6b3c324 page_pool_create -EXPORT_SYMBOL vmlinux 0xc6c1dba1 may_umount_tree -EXPORT_SYMBOL vmlinux 0xc6cb465a __kfifo_max_r -EXPORT_SYMBOL vmlinux 0xc6cbbc89 capable -EXPORT_SYMBOL vmlinux 0xc6d09aa9 release_firmware -EXPORT_SYMBOL vmlinux 0xc6e31862 cpufreq_get_policy -EXPORT_SYMBOL vmlinux 0xc6f3b3fc refcount_dec_if_one -EXPORT_SYMBOL vmlinux 0xc6f46339 init_timer_key -EXPORT_SYMBOL vmlinux 0xc6ff2c71 nobh_truncate_page -EXPORT_SYMBOL vmlinux 0xc708f1fe ec_write -EXPORT_SYMBOL vmlinux 0xc708f285 xfrm_state_walk_done -EXPORT_SYMBOL vmlinux 0xc7208c3a serial8250_resume_port -EXPORT_SYMBOL vmlinux 0xc72d23e5 fb_set_suspend -EXPORT_SYMBOL vmlinux 0xc7317187 __xa_erase -EXPORT_SYMBOL vmlinux 0xc740d196 sock_alloc -EXPORT_SYMBOL vmlinux 0xc74b3597 dma_fence_signal -EXPORT_SYMBOL vmlinux 0xc7576e22 __napi_schedule -EXPORT_SYMBOL vmlinux 0xc75fc638 __sk_backlog_rcv -EXPORT_SYMBOL vmlinux 0xc7663150 irq_set_chip -EXPORT_SYMBOL vmlinux 0xc76df363 __SCK__tp_func_kmalloc_node -EXPORT_SYMBOL vmlinux 0xc775f8f7 eth_prepare_mac_addr_change -EXPORT_SYMBOL vmlinux 0xc780ed1f kset_unregister -EXPORT_SYMBOL vmlinux 0xc781bd9f rfkill_resume_polling -EXPORT_SYMBOL vmlinux 0xc7856a3d inet6addr_notifier_call_chain -EXPORT_SYMBOL vmlinux 0xc787688d tty_port_init -EXPORT_SYMBOL vmlinux 0xc79bff19 vfs_get_link -EXPORT_SYMBOL vmlinux 0xc7a4fbed rtnl_lock -EXPORT_SYMBOL vmlinux 0xc7c1107a LZ4_decompress_safe -EXPORT_SYMBOL vmlinux 0xc7d094b5 dm_read_arg_group -EXPORT_SYMBOL vmlinux 0xc7e148b8 netdev_upper_dev_unlink -EXPORT_SYMBOL vmlinux 0xc7e20c3c pci_bus_write_config_word -EXPORT_SYMBOL vmlinux 0xc7e96b7a t10_pi_type1_crc -EXPORT_SYMBOL vmlinux 0xc80ab559 swake_up_one -EXPORT_SYMBOL vmlinux 0xc8235af9 phy_connect_direct -EXPORT_SYMBOL vmlinux 0xc824f6f2 __skb_vlan_pop -EXPORT_SYMBOL vmlinux 0xc83c24b3 unregister_shrinker -EXPORT_SYMBOL vmlinux 0xc84a0a7e seq_hlist_start_rcu -EXPORT_SYMBOL vmlinux 0xc84a3f62 dev_remove_offload -EXPORT_SYMBOL vmlinux 0xc8519d0f xp_dma_sync_for_device_slow -EXPORT_SYMBOL vmlinux 0xc852e1b6 nd_dax_probe -EXPORT_SYMBOL vmlinux 0xc85f07df blk_rq_map_user -EXPORT_SYMBOL vmlinux 0xc86d5e1d config_item_get_unless_zero -EXPORT_SYMBOL vmlinux 0xc872fd85 in6addr_interfacelocal_allnodes -EXPORT_SYMBOL vmlinux 0xc8827b75 sysctl_vals -EXPORT_SYMBOL vmlinux 0xc88c063c phy_register_fixup -EXPORT_SYMBOL vmlinux 0xc890c008 zlib_deflateEnd -EXPORT_SYMBOL vmlinux 0xc8a6e536 dquot_set_dqinfo -EXPORT_SYMBOL vmlinux 0xc8a91f5b cpumask_local_spread -EXPORT_SYMBOL vmlinux 0xc8b6b855 dev_vprintk_emit -EXPORT_SYMBOL vmlinux 0xc8b8c66f vm_map_ram -EXPORT_SYMBOL vmlinux 0xc8bd16ec __block_write_begin -EXPORT_SYMBOL vmlinux 0xc8dcc62a krealloc -EXPORT_SYMBOL vmlinux 0xc8e532f1 vfs_create_mount -EXPORT_SYMBOL vmlinux 0xc903d4bf tcp_v4_md5_hash_skb -EXPORT_SYMBOL vmlinux 0xc904cabe mipi_dsi_dcs_write -EXPORT_SYMBOL vmlinux 0xc917e655 debug_smp_processor_id -EXPORT_SYMBOL vmlinux 0xc9216a82 recalibrate_cpu_khz -EXPORT_SYMBOL vmlinux 0xc928eac9 mempool_resize -EXPORT_SYMBOL vmlinux 0xc92ade81 security_lock_kernel_down -EXPORT_SYMBOL vmlinux 0xc9343fb6 dget_parent -EXPORT_SYMBOL vmlinux 0xc937fa37 get_user_pages_remote -EXPORT_SYMBOL vmlinux 0xc93cf0c5 mmc_cqe_post_req -EXPORT_SYMBOL vmlinux 0xc93e8461 acpi_get_event_resources -EXPORT_SYMBOL vmlinux 0xc9634df9 in6addr_linklocal_allrouters -EXPORT_SYMBOL vmlinux 0xc967ef04 register_nexthop_notifier -EXPORT_SYMBOL vmlinux 0xc972449f mempool_alloc_slab -EXPORT_SYMBOL vmlinux 0xc9822234 clk_register_clkdev -EXPORT_SYMBOL vmlinux 0xc9831ad7 flow_keys_dissector -EXPORT_SYMBOL vmlinux 0xc986a5da __dec_zone_page_state -EXPORT_SYMBOL vmlinux 0xc98c4b89 rproc_coredump_using_sections -EXPORT_SYMBOL vmlinux 0xc99e2a55 twl_rev -EXPORT_SYMBOL vmlinux 0xc9b0d526 nd_pfn_probe -EXPORT_SYMBOL vmlinux 0xc9b33111 cpumask_any_distribute -EXPORT_SYMBOL vmlinux 0xc9bdc2bd vfs_getattr_nosec -EXPORT_SYMBOL vmlinux 0xc9df055a xfrm_policy_walk_init -EXPORT_SYMBOL vmlinux 0xc9f34c1d acpi_acquire_global_lock -EXPORT_SYMBOL vmlinux 0xca04d6e1 blk_mq_stop_hw_queue -EXPORT_SYMBOL vmlinux 0xca07943a __scsi_device_lookup_by_target -EXPORT_SYMBOL vmlinux 0xca11dd03 xfrm_policy_bysel_ctx -EXPORT_SYMBOL vmlinux 0xca15413f ZSTD_resetDStream -EXPORT_SYMBOL vmlinux 0xca18e3e6 dquot_quota_sync -EXPORT_SYMBOL vmlinux 0xca1a60d8 netdev_lower_get_next_private_rcu -EXPORT_SYMBOL vmlinux 0xca21ebd3 bitmap_free -EXPORT_SYMBOL vmlinux 0xca338894 jbd2_journal_clear_features -EXPORT_SYMBOL vmlinux 0xca3981e4 tc_setup_cb_replace -EXPORT_SYMBOL vmlinux 0xca431c05 wake_bit_function -EXPORT_SYMBOL vmlinux 0xca4baad0 jbd2_journal_init_dev -EXPORT_SYMBOL vmlinux 0xca513d1c submit_bio_noacct -EXPORT_SYMBOL vmlinux 0xca6f5e2e agp_put_bridge -EXPORT_SYMBOL vmlinux 0xca75b9af ethtool_rx_flow_rule_destroy -EXPORT_SYMBOL vmlinux 0xca7b16da dev_alloc_name -EXPORT_SYMBOL vmlinux 0xca9360b5 rb_next -EXPORT_SYMBOL vmlinux 0xca99ffe0 fscrypt_put_encryption_info -EXPORT_SYMBOL vmlinux 0xcaaf04fd ppp_output_wakeup -EXPORT_SYMBOL vmlinux 0xcab1f2e4 mem_cgroup_from_task -EXPORT_SYMBOL vmlinux 0xcad1aca8 acpi_exception -EXPORT_SYMBOL vmlinux 0xcad26787 con_is_visible -EXPORT_SYMBOL vmlinux 0xcad985b4 __tracepoint_mmap_lock_released -EXPORT_SYMBOL vmlinux 0xcad987fd dma_fence_chain_find_seqno -EXPORT_SYMBOL vmlinux 0xcadf3504 get_agp_version -EXPORT_SYMBOL vmlinux 0xcae602c8 input_get_timestamp -EXPORT_SYMBOL vmlinux 0xcae9e788 vfs_iter_read -EXPORT_SYMBOL vmlinux 0xcaeb4079 tcf_block_put -EXPORT_SYMBOL vmlinux 0xcaf2c603 scsi_sd_pm_domain -EXPORT_SYMBOL vmlinux 0xcb088f31 dev_set_threaded -EXPORT_SYMBOL vmlinux 0xcb1afbed serio_interrupt -EXPORT_SYMBOL vmlinux 0xcb25f13c dma_async_device_unregister -EXPORT_SYMBOL vmlinux 0xcb2f2b52 boot_cpu_data -EXPORT_SYMBOL vmlinux 0xcb3ae215 call_blocking_lsm_notifier -EXPORT_SYMBOL vmlinux 0xcb435c62 dquot_quotactl_sysfile_ops -EXPORT_SYMBOL vmlinux 0xcb50cfae register_mii_tstamp_controller -EXPORT_SYMBOL vmlinux 0xcb518873 vmap -EXPORT_SYMBOL vmlinux 0xcb6d5ac6 page_cache_next_miss -EXPORT_SYMBOL vmlinux 0xcb733bf2 acpi_bus_set_power -EXPORT_SYMBOL vmlinux 0xcb75360d locks_init_lock -EXPORT_SYMBOL vmlinux 0xcb9f1a41 blk_integrity_compare -EXPORT_SYMBOL vmlinux 0xcbad346c remove_wait_queue -EXPORT_SYMBOL vmlinux 0xcbb9c1c8 new_inode -EXPORT_SYMBOL vmlinux 0xcbc88a23 ZSTD_isFrame -EXPORT_SYMBOL vmlinux 0xcbd4898c fortify_panic -EXPORT_SYMBOL vmlinux 0xcbe52064 fb_show_logo -EXPORT_SYMBOL vmlinux 0xcbe53c46 convert_art_to_tsc -EXPORT_SYMBOL vmlinux 0xcbfb33e4 init_opal_dev -EXPORT_SYMBOL vmlinux 0xcc0aba44 security_sctp_bind_connect -EXPORT_SYMBOL vmlinux 0xcc0fd061 __nd_driver_register -EXPORT_SYMBOL vmlinux 0xcc12766b i2c_smbus_xfer -EXPORT_SYMBOL vmlinux 0xcc23002a hdmi_infoframe_pack_only -EXPORT_SYMBOL vmlinux 0xcc248d26 serial8250_suspend_port -EXPORT_SYMBOL vmlinux 0xcc278910 pci_wake_from_d3 -EXPORT_SYMBOL vmlinux 0xcc328a5c reservation_ww_class -EXPORT_SYMBOL vmlinux 0xcc445ceb __sg_page_iter_dma_next -EXPORT_SYMBOL vmlinux 0xcc4d3969 from_kprojid_munged -EXPORT_SYMBOL vmlinux 0xcc5005fe msleep_interruptible -EXPORT_SYMBOL vmlinux 0xcc511bd0 sock_queue_err_skb -EXPORT_SYMBOL vmlinux 0xcc5c2df4 trace_print_symbols_seq -EXPORT_SYMBOL vmlinux 0xcc5d22d9 can_do_mlock -EXPORT_SYMBOL vmlinux 0xcc8a3fdf gen_pool_destroy -EXPORT_SYMBOL vmlinux 0xcc8f2a78 dev_addr_flush -EXPORT_SYMBOL vmlinux 0xcc9ab025 xp_alloc -EXPORT_SYMBOL vmlinux 0xcca5839d xen_vcpu_id -EXPORT_SYMBOL vmlinux 0xccab729c kernel_connect -EXPORT_SYMBOL vmlinux 0xccbf7c0a iterate_dir -EXPORT_SYMBOL vmlinux 0xccc5a900 mr_rtm_dumproute -EXPORT_SYMBOL vmlinux 0xccc9b3a3 key_link -EXPORT_SYMBOL vmlinux 0xccd4c999 __sg_page_iter_start -EXPORT_SYMBOL vmlinux 0xccdd1468 tty_insert_flip_string_fixed_flag -EXPORT_SYMBOL vmlinux 0xcce401f4 sock_no_getname -EXPORT_SYMBOL vmlinux 0xccef37e4 ZSTD_DStreamOutSize -EXPORT_SYMBOL vmlinux 0xccf1f7bb sk_filter_trim_cap -EXPORT_SYMBOL vmlinux 0xccf2bc9a to_ndd -EXPORT_SYMBOL vmlinux 0xccfb9e07 dst_default_metrics -EXPORT_SYMBOL vmlinux 0xccfcdc45 sync_mapping_buffers -EXPORT_SYMBOL vmlinux 0xccfd2ebc scsi_dev_info_list_del_keyed -EXPORT_SYMBOL vmlinux 0xcd01b8e6 acpi_attach_data -EXPORT_SYMBOL vmlinux 0xcd024469 vm_mmap -EXPORT_SYMBOL vmlinux 0xcd256667 tcp_md5_needed -EXPORT_SYMBOL vmlinux 0xcd279169 nla_find -EXPORT_SYMBOL vmlinux 0xcd3ba7d6 rawv6_mh_filter_unregister -EXPORT_SYMBOL vmlinux 0xcd3eca72 linkwatch_fire_event -EXPORT_SYMBOL vmlinux 0xcd763f85 flush_signals -EXPORT_SYMBOL vmlinux 0xcd89295f flow_indr_dev_unregister -EXPORT_SYMBOL vmlinux 0xcd8ce890 acpi_format_exception -EXPORT_SYMBOL vmlinux 0xcd93284d __skb_get_hash -EXPORT_SYMBOL vmlinux 0xcd9b7e05 frontswap_register_ops -EXPORT_SYMBOL vmlinux 0xcd9fa5b1 mipi_dsi_host_unregister -EXPORT_SYMBOL vmlinux 0xcdaec3c1 fscrypt_decrypt_bio -EXPORT_SYMBOL vmlinux 0xcdc39c9e security_ismaclabel -EXPORT_SYMBOL vmlinux 0xcdc99e19 md_handle_request -EXPORT_SYMBOL vmlinux 0xcdce48c4 tcf_unregister_action -EXPORT_SYMBOL vmlinux 0xcdd2be2c agp_generic_destroy_pages -EXPORT_SYMBOL vmlinux 0xcddbecff __xfrm_state_destroy -EXPORT_SYMBOL vmlinux 0xcde77bcc free_opal_dev -EXPORT_SYMBOL vmlinux 0xcdee8a74 ipv4_mtu -EXPORT_SYMBOL vmlinux 0xce066af6 sock_set_reuseport -EXPORT_SYMBOL vmlinux 0xce10e5ce seg6_hmac_validate_skb -EXPORT_SYMBOL vmlinux 0xce1cb67b tc_setup_cb_call -EXPORT_SYMBOL vmlinux 0xce2840e7 irq_set_irq_wake -EXPORT_SYMBOL vmlinux 0xce329c55 neigh_parms_alloc -EXPORT_SYMBOL vmlinux 0xce44babc dma_resv_fini -EXPORT_SYMBOL vmlinux 0xce469c16 simple_rename -EXPORT_SYMBOL vmlinux 0xce4cdb8e fb_find_best_mode -EXPORT_SYMBOL vmlinux 0xce4e47b6 __kfifo_skip_r -EXPORT_SYMBOL vmlinux 0xce53770a skb_copy_datagram_iter -EXPORT_SYMBOL vmlinux 0xce5ac24f zlib_inflate_workspacesize -EXPORT_SYMBOL vmlinux 0xce611c96 unpin_user_pages -EXPORT_SYMBOL vmlinux 0xce6596a1 make_bad_inode -EXPORT_SYMBOL vmlinux 0xce754c64 dev_trans_start -EXPORT_SYMBOL vmlinux 0xce76000e devfreq_update_status -EXPORT_SYMBOL vmlinux 0xce76c257 acpi_get_irq_routing_table -EXPORT_SYMBOL vmlinux 0xce7ee687 pps_unregister_source -EXPORT_SYMBOL vmlinux 0xcea381dd x86_match_cpu -EXPORT_SYMBOL vmlinux 0xceab0311 strchrnul -EXPORT_SYMBOL vmlinux 0xceb639af sock_no_sendmsg_locked -EXPORT_SYMBOL vmlinux 0xcec93dfe skb_pull -EXPORT_SYMBOL vmlinux 0xcede4f3c kobject_init -EXPORT_SYMBOL vmlinux 0xcefb1ca1 pfifo_fast_ops -EXPORT_SYMBOL vmlinux 0xcefcd99a serial8250_unregister_port -EXPORT_SYMBOL vmlinux 0xcefd00f1 blk_queue_io_opt -EXPORT_SYMBOL vmlinux 0xcf038b09 xfrm_stateonly_find -EXPORT_SYMBOL vmlinux 0xcf07c254 pcim_set_mwi -EXPORT_SYMBOL vmlinux 0xcf28bcec xfrm_register_type_offload -EXPORT_SYMBOL vmlinux 0xcf2a6966 up -EXPORT_SYMBOL vmlinux 0xcf2dac39 nvmem_get_mac_address -EXPORT_SYMBOL vmlinux 0xcf556f9a get_mem_cgroup_from_mm -EXPORT_SYMBOL vmlinux 0xcf7bb4ae __module_put_and_exit -EXPORT_SYMBOL vmlinux 0xcf9b558d touchscreen_set_mt_pos -EXPORT_SYMBOL vmlinux 0xcfa328f4 account_page_redirty -EXPORT_SYMBOL vmlinux 0xcfc95ffb is_acpi_data_node -EXPORT_SYMBOL vmlinux 0xcfcf2a85 load_nls -EXPORT_SYMBOL vmlinux 0xcfd884a8 __hsiphash_unaligned -EXPORT_SYMBOL vmlinux 0xcffc7b18 mutex_lock_io -EXPORT_SYMBOL vmlinux 0xd003a38c blk_mq_tagset_wait_completed_request -EXPORT_SYMBOL vmlinux 0xd0139fbc seq_printf -EXPORT_SYMBOL vmlinux 0xd015d465 md_wakeup_thread -EXPORT_SYMBOL vmlinux 0xd0276520 fqdir_init -EXPORT_SYMBOL vmlinux 0xd0380f67 ether_setup -EXPORT_SYMBOL vmlinux 0xd038c9b6 release_sock -EXPORT_SYMBOL vmlinux 0xd03987c2 pci_get_device -EXPORT_SYMBOL vmlinux 0xd03b0f55 __skb_checksum -EXPORT_SYMBOL vmlinux 0xd04c1a64 sysctl_devconf_inherit_init_net -EXPORT_SYMBOL vmlinux 0xd0564421 pskb_expand_head -EXPORT_SYMBOL vmlinux 0xd0622141 netdev_warn -EXPORT_SYMBOL vmlinux 0xd0654aba woken_wake_function -EXPORT_SYMBOL vmlinux 0xd065b147 vc_cons -EXPORT_SYMBOL vmlinux 0xd0663d53 pagecache_isize_extended -EXPORT_SYMBOL vmlinux 0xd0702325 crypto_sha1_update -EXPORT_SYMBOL vmlinux 0xd07196aa sync_inodes_sb -EXPORT_SYMBOL vmlinux 0xd0760fc0 kfree_sensitive -EXPORT_SYMBOL vmlinux 0xd079c911 dev_mc_sync_multiple -EXPORT_SYMBOL vmlinux 0xd07bc1d8 gnet_stats_copy_app -EXPORT_SYMBOL vmlinux 0xd08adb2b trace_seq_hex_dump -EXPORT_SYMBOL vmlinux 0xd0a28051 xfrm_sad_getinfo -EXPORT_SYMBOL vmlinux 0xd0ab5d7e agp_collect_device_status -EXPORT_SYMBOL vmlinux 0xd0ae5f55 __printk_cpu_trylock -EXPORT_SYMBOL vmlinux 0xd0b74705 acpi_install_interface -EXPORT_SYMBOL vmlinux 0xd0c7a8af __SCK__tp_func_mmap_lock_released -EXPORT_SYMBOL vmlinux 0xd0da656b __stack_chk_fail -EXPORT_SYMBOL vmlinux 0xd0dae8e6 blk_mq_delay_run_hw_queue -EXPORT_SYMBOL vmlinux 0xd0e05441 delete_from_page_cache -EXPORT_SYMBOL vmlinux 0xd0edf732 vfs_tmpfile -EXPORT_SYMBOL vmlinux 0xd0f284b8 mmiotrace_printk -EXPORT_SYMBOL vmlinux 0xd0fe8d51 sg_pcopy_from_buffer -EXPORT_SYMBOL vmlinux 0xd0fef3b2 agp_free_key -EXPORT_SYMBOL vmlinux 0xd1018a58 simple_rmdir -EXPORT_SYMBOL vmlinux 0xd1086c6c rproc_remove_subdev -EXPORT_SYMBOL vmlinux 0xd11124ff key_unlink -EXPORT_SYMBOL vmlinux 0xd116ab6f uart_suspend_port -EXPORT_SYMBOL vmlinux 0xd11a7cd2 mdiobus_write_nested -EXPORT_SYMBOL vmlinux 0xd1296027 sock_kfree_s -EXPORT_SYMBOL vmlinux 0xd1363cc1 ucs2_strsize -EXPORT_SYMBOL vmlinux 0xd152a945 devm_mdiobus_alloc_size -EXPORT_SYMBOL vmlinux 0xd173957b blk_queue_split -EXPORT_SYMBOL vmlinux 0xd17b9388 __xfrm_init_state -EXPORT_SYMBOL vmlinux 0xd17e7ee1 dev_pick_tx_cpu_id -EXPORT_SYMBOL vmlinux 0xd1816f32 frontswap_writethrough -EXPORT_SYMBOL vmlinux 0xd1825570 filemap_flush -EXPORT_SYMBOL vmlinux 0xd194ddf9 acpi_gpe_count -EXPORT_SYMBOL vmlinux 0xd1a31d44 param_set_hexint -EXPORT_SYMBOL vmlinux 0xd1d77557 vme_irq_free -EXPORT_SYMBOL vmlinux 0xd1d87e92 scsi_mlreturn_string -EXPORT_SYMBOL vmlinux 0xd1f2547a freeze_super -EXPORT_SYMBOL vmlinux 0xd1f60a89 arch_io_free_memtype_wc -EXPORT_SYMBOL vmlinux 0xd1f6c5f3 smp_num_siblings -EXPORT_SYMBOL vmlinux 0xd2071767 vmf_insert_pfn_prot -EXPORT_SYMBOL vmlinux 0xd21bace2 set_anon_super_fc -EXPORT_SYMBOL vmlinux 0xd21c5139 iowrite64_lo_hi -EXPORT_SYMBOL vmlinux 0xd2307546 __alloc_bucket_spinlocks -EXPORT_SYMBOL vmlinux 0xd243fe4d md_bitmap_start_sync -EXPORT_SYMBOL vmlinux 0xd24b47fe tty_port_destroy -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 0xd27f6b6a __dev_get_by_index -EXPORT_SYMBOL vmlinux 0xd2800691 nf_conntrack_destroy -EXPORT_SYMBOL vmlinux 0xd281021e pm860x_page_reg_write -EXPORT_SYMBOL vmlinux 0xd2812b3d netdev_rx_csum_fault -EXPORT_SYMBOL vmlinux 0xd28bc58c pagecache_get_page -EXPORT_SYMBOL vmlinux 0xd2bc5c46 __get_user_nocheck_2 -EXPORT_SYMBOL vmlinux 0xd2bcc269 misc_deregister -EXPORT_SYMBOL vmlinux 0xd2c64514 pci_get_slot -EXPORT_SYMBOL vmlinux 0xd2c99738 __kmalloc_track_caller -EXPORT_SYMBOL vmlinux 0xd2ceefd5 __traceiter_mmap_lock_acquire_returned -EXPORT_SYMBOL vmlinux 0xd2d2a604 rproc_put -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 0xd3083505 tcp_shutdown -EXPORT_SYMBOL vmlinux 0xd31565fe scsi_remove_host -EXPORT_SYMBOL vmlinux 0xd31d90f2 set_bh_page -EXPORT_SYMBOL vmlinux 0xd338ea7e __SCT__tp_func_kmem_cache_alloc -EXPORT_SYMBOL vmlinux 0xd3543063 memcg_kmem_enabled_key -EXPORT_SYMBOL vmlinux 0xd35a6d31 mempool_kmalloc -EXPORT_SYMBOL vmlinux 0xd35cce70 _raw_spin_unlock_irqrestore -EXPORT_SYMBOL vmlinux 0xd36d85bb xfrm_policy_unregister_afinfo -EXPORT_SYMBOL vmlinux 0xd36dc10c get_random_u32 -EXPORT_SYMBOL vmlinux 0xd36e3d59 prandom_bytes_state -EXPORT_SYMBOL vmlinux 0xd38cd261 __default_kernel_pte_mask -EXPORT_SYMBOL vmlinux 0xd38dd54b xfrm_policy_register_afinfo -EXPORT_SYMBOL vmlinux 0xd391c25b __cpuhp_remove_state_cpuslocked -EXPORT_SYMBOL vmlinux 0xd39c2794 tcp_rcv_established -EXPORT_SYMBOL vmlinux 0xd3aac3c8 __starget_for_each_device -EXPORT_SYMBOL vmlinux 0xd3af84c4 ethtool_op_get_link -EXPORT_SYMBOL vmlinux 0xd3bd1d95 nexthop_set_hw_flags -EXPORT_SYMBOL vmlinux 0xd3c74619 mmc_of_parse -EXPORT_SYMBOL vmlinux 0xd3c9b433 copy_string_kernel -EXPORT_SYMBOL vmlinux 0xd3e4f753 bdev_read_only -EXPORT_SYMBOL vmlinux 0xd3eaf1ed devlink_dpipe_entry_clear -EXPORT_SYMBOL vmlinux 0xd3f19578 pci_ep_cfs_remove_epf_group -EXPORT_SYMBOL vmlinux 0xd3f54c7e padata_alloc_shell -EXPORT_SYMBOL vmlinux 0xd406d266 fb_mode_is_equal -EXPORT_SYMBOL vmlinux 0xd4116f3e pm860x_page_bulk_read -EXPORT_SYMBOL vmlinux 0xd415dd46 ip_sock_set_freebind -EXPORT_SYMBOL vmlinux 0xd41a2dbd generic_parse_monolithic -EXPORT_SYMBOL vmlinux 0xd4281245 inet_proto_csum_replace16 -EXPORT_SYMBOL vmlinux 0xd443e5e6 __nla_reserve_nohdr -EXPORT_SYMBOL vmlinux 0xd44d61b0 __SCK__tp_func_mmap_lock_acquire_returned -EXPORT_SYMBOL vmlinux 0xd45cc6ca bin2hex -EXPORT_SYMBOL vmlinux 0xd46ffedf sb_min_blocksize -EXPORT_SYMBOL vmlinux 0xd4835ef8 dmi_check_system -EXPORT_SYMBOL vmlinux 0xd488d858 ppp_input -EXPORT_SYMBOL vmlinux 0xd4aafa50 blkdev_get_by_dev -EXPORT_SYMBOL vmlinux 0xd4bb4a82 inet6addr_validator_notifier_call_chain -EXPORT_SYMBOL vmlinux 0xd4bbbdf9 no_llseek -EXPORT_SYMBOL vmlinux 0xd4c07a99 PDE_DATA -EXPORT_SYMBOL vmlinux 0xd4c2e4fa blk_queue_alignment_offset -EXPORT_SYMBOL vmlinux 0xd4cfd8bf unregister_cdrom -EXPORT_SYMBOL vmlinux 0xd4e07d7e request_key_rcu -EXPORT_SYMBOL vmlinux 0xd4f598ed dev_set_mtu -EXPORT_SYMBOL vmlinux 0xd4f88dbf put_fs_context -EXPORT_SYMBOL vmlinux 0xd4fa5a87 __kfifo_dma_out_prepare -EXPORT_SYMBOL vmlinux 0xd4fb3ef0 pci_select_bars -EXPORT_SYMBOL vmlinux 0xd4ffac40 __skb_recv_udp -EXPORT_SYMBOL vmlinux 0xd4ffbe63 blk_mq_start_request -EXPORT_SYMBOL vmlinux 0xd50ff0f7 __skb_try_recv_datagram -EXPORT_SYMBOL vmlinux 0xd5174f19 scsi_partsize -EXPORT_SYMBOL vmlinux 0xd5263820 mb_cache_destroy -EXPORT_SYMBOL vmlinux 0xd5346bfc acpi_get_possible_resources -EXPORT_SYMBOL vmlinux 0xd54bf27a pci_write_vpd -EXPORT_SYMBOL vmlinux 0xd55054cf xfrm_if_register_cb -EXPORT_SYMBOL vmlinux 0xd56e8d96 security_sb_remount -EXPORT_SYMBOL vmlinux 0xd58e70dd net_rand_noise -EXPORT_SYMBOL vmlinux 0xd5910f44 wake_up_process -EXPORT_SYMBOL vmlinux 0xd5b3d0d5 xxh64_copy_state -EXPORT_SYMBOL vmlinux 0xd5eef9a1 agp_generic_destroy_page -EXPORT_SYMBOL vmlinux 0xd60736ec gf128mul_free_64k -EXPORT_SYMBOL vmlinux 0xd61b6e78 rproc_boot -EXPORT_SYMBOL vmlinux 0xd62ecd49 rps_sock_flow_table -EXPORT_SYMBOL vmlinux 0xd63b462e gnet_stats_finish_copy -EXPORT_SYMBOL vmlinux 0xd63fd8d1 utf8nagemax -EXPORT_SYMBOL vmlinux 0xd643239a acpi_leave_sleep_state -EXPORT_SYMBOL vmlinux 0xd65aff57 jbd2_journal_update_sb_errno -EXPORT_SYMBOL vmlinux 0xd665de44 netlink_unicast -EXPORT_SYMBOL vmlinux 0xd6690549 page_pool_put_page_bulk -EXPORT_SYMBOL vmlinux 0xd66c8184 add_device_randomness -EXPORT_SYMBOL vmlinux 0xd6742002 preempt_schedule_thunk -EXPORT_SYMBOL vmlinux 0xd683652d netdev_class_remove_file_ns -EXPORT_SYMBOL vmlinux 0xd6860472 mdiobus_is_registered_device -EXPORT_SYMBOL vmlinux 0xd688716b dm_kcopyd_client_create -EXPORT_SYMBOL vmlinux 0xd68a8168 ptp_find_pin -EXPORT_SYMBOL vmlinux 0xd68c584e inet_sk_rebuild_header -EXPORT_SYMBOL vmlinux 0xd68c5a1f adjust_resource -EXPORT_SYMBOL vmlinux 0xd6a50d6e sock_register -EXPORT_SYMBOL vmlinux 0xd6a91f54 twl_i2c_read -EXPORT_SYMBOL vmlinux 0xd6b2ed5f generate_pm_trace -EXPORT_SYMBOL vmlinux 0xd6b33026 cpu_khz -EXPORT_SYMBOL vmlinux 0xd6b6e8bf mmc_retune_timer_stop -EXPORT_SYMBOL vmlinux 0xd6b7ffc9 dev_lstats_read -EXPORT_SYMBOL vmlinux 0xd6c2ab9c sock_wfree -EXPORT_SYMBOL vmlinux 0xd6c65ee0 kmem_cache_create -EXPORT_SYMBOL vmlinux 0xd6cbc6e1 __dquot_alloc_space -EXPORT_SYMBOL vmlinux 0xd6dc91b4 watchdog_register_governor -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 0xd70e2ee7 nd_btt_arena_is_valid -EXPORT_SYMBOL vmlinux 0xd70f62b6 acpi_os_execute -EXPORT_SYMBOL vmlinux 0xd721de5d __generic_file_fsync -EXPORT_SYMBOL vmlinux 0xd738ca1b phy_unregister_fixup_for_uid -EXPORT_SYMBOL vmlinux 0xd7392f92 ptp_clock_register -EXPORT_SYMBOL vmlinux 0xd73c617d param_set_ushort -EXPORT_SYMBOL vmlinux 0xd746bf50 simple_get_link -EXPORT_SYMBOL vmlinux 0xd747f4df sock_sendmsg -EXPORT_SYMBOL vmlinux 0xd7482f05 vcalloc -EXPORT_SYMBOL vmlinux 0xd754ddec genphy_update_link -EXPORT_SYMBOL vmlinux 0xd75953f1 ipv6_chk_addr_and_flags -EXPORT_SYMBOL vmlinux 0xd7913f4d config_group_find_item -EXPORT_SYMBOL vmlinux 0xd79e4559 __fib6_flush_trees -EXPORT_SYMBOL vmlinux 0xd7b7e9dc padata_do_parallel -EXPORT_SYMBOL vmlinux 0xd7d280ad irq_poll_complete -EXPORT_SYMBOL vmlinux 0xd7dd777b reserve_perfctr_nmi -EXPORT_SYMBOL vmlinux 0xd7e56a4e simple_strtoll -EXPORT_SYMBOL vmlinux 0xd7ea7094 nf_unregister_queue_handler -EXPORT_SYMBOL vmlinux 0xd7f3098d phy_attached_info_irq -EXPORT_SYMBOL vmlinux 0xd7fe5382 pci_irq_get_affinity -EXPORT_SYMBOL vmlinux 0xd805436c dquot_free_inode -EXPORT_SYMBOL vmlinux 0xd81cb5e1 from_kgid_munged -EXPORT_SYMBOL vmlinux 0xd846c315 acpi_write_bit_register -EXPORT_SYMBOL vmlinux 0xd84c8e98 skb_tx_error -EXPORT_SYMBOL vmlinux 0xd854b82b tc_cleanup_flow_action -EXPORT_SYMBOL vmlinux 0xd880265f nosteal_pipe_buf_ops -EXPORT_SYMBOL vmlinux 0xd896860e gen_pool_free_owner -EXPORT_SYMBOL vmlinux 0xd89da37f movable_zone -EXPORT_SYMBOL vmlinux 0xd8a51777 blk_mq_complete_request -EXPORT_SYMBOL vmlinux 0xd8a994eb scsi_extd_sense_format -EXPORT_SYMBOL vmlinux 0xd8b61304 get_default_font -EXPORT_SYMBOL vmlinux 0xd8c19da3 radix_tree_gang_lookup_tag -EXPORT_SYMBOL vmlinux 0xd8c9f5fe skb_checksum_trimmed -EXPORT_SYMBOL vmlinux 0xd8cef6e1 clear_user -EXPORT_SYMBOL vmlinux 0xd8df08ac acpi_handle_printk -EXPORT_SYMBOL vmlinux 0xd8efec55 mmc_put_card -EXPORT_SYMBOL vmlinux 0xd91f6ab6 strnlen_user -EXPORT_SYMBOL vmlinux 0xd92deb6b acpi_evaluate_object -EXPORT_SYMBOL vmlinux 0xd93219d6 rproc_elf_sanity_check -EXPORT_SYMBOL vmlinux 0xd933f209 __SCT__tp_func_rdpmc -EXPORT_SYMBOL vmlinux 0xd940470b tcp_mtu_to_mss -EXPORT_SYMBOL vmlinux 0xd9490d6e kset_register -EXPORT_SYMBOL vmlinux 0xd969bf51 rt_dst_alloc -EXPORT_SYMBOL vmlinux 0xd96e3b05 md_bitmap_free -EXPORT_SYMBOL vmlinux 0xd971c6c4 xen_arch_register_cpu -EXPORT_SYMBOL vmlinux 0xd97b7a8e generic_file_llseek -EXPORT_SYMBOL vmlinux 0xd985dc99 mempool_free_pages -EXPORT_SYMBOL vmlinux 0xd990479d mr_mfc_find_parent -EXPORT_SYMBOL vmlinux 0xd995ba17 __cleancache_get_page -EXPORT_SYMBOL vmlinux 0xd9a2cfb9 simple_unlink -EXPORT_SYMBOL vmlinux 0xd9be70b8 inet_addr_type -EXPORT_SYMBOL vmlinux 0xd9cf4c66 radix_tree_next_chunk -EXPORT_SYMBOL vmlinux 0xd9d8768f fb_find_mode -EXPORT_SYMBOL vmlinux 0xd9d8fd16 register_restart_handler -EXPORT_SYMBOL vmlinux 0xd9d952d1 crypto_aes_sbox -EXPORT_SYMBOL vmlinux 0xd9ef7314 pm860x_bulk_read -EXPORT_SYMBOL vmlinux 0xd9f4e9ab ps2_cmd_aborted -EXPORT_SYMBOL vmlinux 0xda176e0b configfs_register_default_group -EXPORT_SYMBOL vmlinux 0xda18cbc5 thermal_cdev_update -EXPORT_SYMBOL vmlinux 0xda1ddef1 acpi_mark_gpe_for_wake -EXPORT_SYMBOL vmlinux 0xda26b8ea __irq_regs -EXPORT_SYMBOL vmlinux 0xda332903 __ip_options_compile -EXPORT_SYMBOL vmlinux 0xda3c30b4 mmc_retune_release -EXPORT_SYMBOL vmlinux 0xda3d10a8 security_tun_dev_open -EXPORT_SYMBOL vmlinux 0xda4a45e6 inode_insert5 -EXPORT_SYMBOL vmlinux 0xda4abc5e configfs_depend_item_unlocked -EXPORT_SYMBOL vmlinux 0xda62432a gen_pool_dma_zalloc_algo -EXPORT_SYMBOL vmlinux 0xda701dc2 tty_port_open -EXPORT_SYMBOL vmlinux 0xda72a7ec ZSTD_nextInputType -EXPORT_SYMBOL vmlinux 0xda74e24e security_inode_setsecctx -EXPORT_SYMBOL vmlinux 0xda76e164 netdev_crit -EXPORT_SYMBOL vmlinux 0xda89ea3b ip_idents_reserve -EXPORT_SYMBOL vmlinux 0xda9a235e dma_get_sgtable_attrs -EXPORT_SYMBOL vmlinux 0xdaa0c338 fscrypt_free_bounce_page -EXPORT_SYMBOL vmlinux 0xdabad8de pci_unregister_driver -EXPORT_SYMBOL vmlinux 0xdac4913a bitmap_allocate_region -EXPORT_SYMBOL vmlinux 0xdac603cf input_event -EXPORT_SYMBOL vmlinux 0xdac7c331 netdev_get_xmit_slave -EXPORT_SYMBOL vmlinux 0xdad13544 ptrs_per_p4d -EXPORT_SYMBOL vmlinux 0xdad1ea5e ppp_unregister_compressor -EXPORT_SYMBOL vmlinux 0xdae0abdb generic_error_remove_page -EXPORT_SYMBOL vmlinux 0xdaec288d pr_flush -EXPORT_SYMBOL vmlinux 0xdafe8d62 pcie_get_speed_cap -EXPORT_SYMBOL vmlinux 0xdb144dce security_binder_transaction -EXPORT_SYMBOL vmlinux 0xdb16b170 topology_phys_to_logical_pkg -EXPORT_SYMBOL vmlinux 0xdb22b356 param_get_long -EXPORT_SYMBOL vmlinux 0xdb33d9e4 call_usermodehelper_exec -EXPORT_SYMBOL vmlinux 0xdb3e0252 fwnode_phy_find_device -EXPORT_SYMBOL vmlinux 0xdb68bbad rfkill_destroy -EXPORT_SYMBOL vmlinux 0xdb760f52 __kfifo_free -EXPORT_SYMBOL vmlinux 0xdb7916a0 pldmfw_op_pci_match_record -EXPORT_SYMBOL vmlinux 0xdb8529f7 mipi_dsi_generic_write -EXPORT_SYMBOL vmlinux 0xdb95e185 intel_scu_ipc_dev_command_with_size -EXPORT_SYMBOL vmlinux 0xdb9b354d secpath_set -EXPORT_SYMBOL vmlinux 0xdbb6b348 ndo_dflt_fdb_del -EXPORT_SYMBOL vmlinux 0xdbcf041a acpi_install_address_space_handler -EXPORT_SYMBOL vmlinux 0xdbd2ac4a generic_copy_file_range -EXPORT_SYMBOL vmlinux 0xdbd4100c alloc_netdev_mqs -EXPORT_SYMBOL vmlinux 0xdbdb6640 lockref_get_not_zero -EXPORT_SYMBOL vmlinux 0xdbdf6c92 ioport_resource -EXPORT_SYMBOL vmlinux 0xdbecd9f3 radix_tree_lookup_slot -EXPORT_SYMBOL vmlinux 0xdbf31279 md_reload_sb -EXPORT_SYMBOL vmlinux 0xdc013827 scsi_alloc_sgtables -EXPORT_SYMBOL vmlinux 0xdc0e243d commit_creds -EXPORT_SYMBOL vmlinux 0xdc0e4855 timer_delete -EXPORT_SYMBOL vmlinux 0xdc1162ba sk_stream_wait_connect -EXPORT_SYMBOL vmlinux 0xdc14eda7 pci_pci_problems -EXPORT_SYMBOL vmlinux 0xdc16669a init_pseudo -EXPORT_SYMBOL vmlinux 0xdc313d6a mpage_readahead -EXPORT_SYMBOL vmlinux 0xdc49c198 reciprocal_value_adv -EXPORT_SYMBOL vmlinux 0xdc4c16bb security_unix_stream_connect -EXPORT_SYMBOL vmlinux 0xdc512134 backlight_register_notifier -EXPORT_SYMBOL vmlinux 0xdc5736d5 acpi_register_ioapic -EXPORT_SYMBOL vmlinux 0xdc8bb734 km_state_notify -EXPORT_SYMBOL vmlinux 0xdc8cdf2a vm_iomap_memory -EXPORT_SYMBOL vmlinux 0xdc8e8084 fiemap_prep -EXPORT_SYMBOL vmlinux 0xdc9f39ff xfrm_register_km -EXPORT_SYMBOL vmlinux 0xdca035bb tso_build_data -EXPORT_SYMBOL vmlinux 0xdca0c020 devm_gen_pool_create -EXPORT_SYMBOL vmlinux 0xdca659e0 mmc_free_host -EXPORT_SYMBOL vmlinux 0xdcac7e7e key_payload_reserve -EXPORT_SYMBOL vmlinux 0xdcad57ba vlan_dev_vlan_id -EXPORT_SYMBOL vmlinux 0xdcd09300 ip_output -EXPORT_SYMBOL vmlinux 0xdcdc0040 slhc_compress -EXPORT_SYMBOL vmlinux 0xdcf3f8c0 mmc_set_data_timeout -EXPORT_SYMBOL vmlinux 0xdd00447a acpi_resource_to_address64 -EXPORT_SYMBOL vmlinux 0xdd009dda register_netdev -EXPORT_SYMBOL vmlinux 0xdd14666b generic_fill_statx_attr -EXPORT_SYMBOL vmlinux 0xdd18a993 acpi_check_dsm -EXPORT_SYMBOL vmlinux 0xdd2c169b mb_cache_create -EXPORT_SYMBOL vmlinux 0xdd64e639 strscpy -EXPORT_SYMBOL vmlinux 0xdd6ae4cf pci_enable_atomic_ops_to_root -EXPORT_SYMBOL vmlinux 0xdd6d1d33 ip_queue_xmit -EXPORT_SYMBOL vmlinux 0xdd6fce34 neigh_lookup -EXPORT_SYMBOL vmlinux 0xdd74b3c2 skb_page_frag_refill -EXPORT_SYMBOL vmlinux 0xdd849d51 scsi_get_sense_info_fld -EXPORT_SYMBOL vmlinux 0xdd8b1ead dev_mc_del -EXPORT_SYMBOL vmlinux 0xdd92f7f4 __ClearPageMovable -EXPORT_SYMBOL vmlinux 0xdd95306f ip_tunnel_header_ops -EXPORT_SYMBOL vmlinux 0xdd988420 invalidate_mapping_pages -EXPORT_SYMBOL vmlinux 0xddad3c28 ps2_begin_command -EXPORT_SYMBOL vmlinux 0xddad7952 acpi_dbg_level -EXPORT_SYMBOL vmlinux 0xddafdd31 vm_node_stat -EXPORT_SYMBOL vmlinux 0xddb2f739 __scsi_add_device -EXPORT_SYMBOL vmlinux 0xddb85a72 tcp_sock_set_keepidle -EXPORT_SYMBOL vmlinux 0xddcbe1f3 acpi_ut_value_exit -EXPORT_SYMBOL vmlinux 0xdde0d669 kmem_cache_alloc_node -EXPORT_SYMBOL vmlinux 0xddf6ad7a completion_done -EXPORT_SYMBOL vmlinux 0xde128d37 xsk_tx_peek_desc -EXPORT_SYMBOL vmlinux 0xde12fa02 xsk_get_pool_from_qid -EXPORT_SYMBOL vmlinux 0xde48fea1 sock_create_kern -EXPORT_SYMBOL vmlinux 0xde4eeab5 __register_nmi_handler -EXPORT_SYMBOL vmlinux 0xde53189d qdisc_tree_reduce_backlog -EXPORT_SYMBOL vmlinux 0xde5937d9 napi_gro_frags -EXPORT_SYMBOL vmlinux 0xde5c2f38 devm_memunmap -EXPORT_SYMBOL vmlinux 0xde60829d dump_align -EXPORT_SYMBOL vmlinux 0xde615b83 __put_cred -EXPORT_SYMBOL vmlinux 0xde7329b3 devm_kvasprintf -EXPORT_SYMBOL vmlinux 0xde80cd09 ioremap -EXPORT_SYMBOL vmlinux 0xde8ab0f6 inet_frags_fini -EXPORT_SYMBOL vmlinux 0xde9b17ed agp3_generic_fetch_size -EXPORT_SYMBOL vmlinux 0xde9b6651 pskb_trim_rcsum_slow -EXPORT_SYMBOL vmlinux 0xde9d3883 inet_shutdown -EXPORT_SYMBOL vmlinux 0xdeab954c mipi_dsi_host_register -EXPORT_SYMBOL vmlinux 0xded256bb inode_init_once -EXPORT_SYMBOL vmlinux 0xded26be1 pci_find_capability -EXPORT_SYMBOL vmlinux 0xded39a6b gen_kill_estimator -EXPORT_SYMBOL vmlinux 0xdee6907b memory_cgrp_subsys -EXPORT_SYMBOL vmlinux 0xdeedc8dd blk_mq_kick_requeue_list -EXPORT_SYMBOL vmlinux 0xdef06ac2 pci_back_from_sleep -EXPORT_SYMBOL vmlinux 0xdef7c893 fb_match_mode -EXPORT_SYMBOL vmlinux 0xdef8d0ae __SCT__tp_func_kfree -EXPORT_SYMBOL vmlinux 0xdf054c6b open_exec -EXPORT_SYMBOL vmlinux 0xdf12bd14 vfs_llseek -EXPORT_SYMBOL vmlinux 0xdf256037 kstrtou8_from_user -EXPORT_SYMBOL vmlinux 0xdf2c2742 rb_last -EXPORT_SYMBOL vmlinux 0xdf32756d always_delete_dentry -EXPORT_SYMBOL vmlinux 0xdf4e7e1d mutex_unlock -EXPORT_SYMBOL vmlinux 0xdf54034f tcp_sock_set_cork -EXPORT_SYMBOL vmlinux 0xdf54a8f7 netlink_unregister_notifier -EXPORT_SYMBOL vmlinux 0xdf7fbd9c fscrypt_setup_filename -EXPORT_SYMBOL vmlinux 0xdf8c695a __ndelay -EXPORT_SYMBOL vmlinux 0xdf8d781f acpi_update_all_gpes -EXPORT_SYMBOL vmlinux 0xdf929370 fs_overflowgid -EXPORT_SYMBOL vmlinux 0xdf9389b5 pnp_unregister_driver -EXPORT_SYMBOL vmlinux 0xdf93b9d8 timespec64_to_jiffies -EXPORT_SYMBOL vmlinux 0xdfaad934 sk_stream_wait_memory -EXPORT_SYMBOL vmlinux 0xdfb35f62 pci_write_config_word -EXPORT_SYMBOL vmlinux 0xdfb90f62 fscrypt_fname_disk_to_usr -EXPORT_SYMBOL vmlinux 0xdfc86446 gen_replace_estimator -EXPORT_SYMBOL vmlinux 0xdfcc992c current_work -EXPORT_SYMBOL vmlinux 0xdfd422d5 up_write -EXPORT_SYMBOL vmlinux 0xdfdfa9e7 utf8nfdi -EXPORT_SYMBOL vmlinux 0xdff905e5 vme_slave_free -EXPORT_SYMBOL vmlinux 0xdffc80fc vesa_modes -EXPORT_SYMBOL vmlinux 0xe0112fc4 __x86_indirect_thunk_r9 -EXPORT_SYMBOL vmlinux 0xe012d3ca __SCK__tp_func_spi_transfer_start -EXPORT_SYMBOL vmlinux 0xe0171598 __cgroup_bpf_run_filter_sock_ops -EXPORT_SYMBOL vmlinux 0xe01bbf5c in_dev_finish_destroy -EXPORT_SYMBOL vmlinux 0xe02ba436 trace_print_hex_seq -EXPORT_SYMBOL vmlinux 0xe02c4d34 netdev_alert -EXPORT_SYMBOL vmlinux 0xe033cb29 native_queued_spin_lock_slowpath -EXPORT_SYMBOL vmlinux 0xe03fc377 devm_devfreq_add_device -EXPORT_SYMBOL vmlinux 0xe0419ac4 kstrtos16 -EXPORT_SYMBOL vmlinux 0xe04c3b9c xfrm6_rcv_encap -EXPORT_SYMBOL vmlinux 0xe04dec13 rproc_set_firmware -EXPORT_SYMBOL vmlinux 0xe07af837 trace_event_printf -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 0xe086f10e scsi_vpd_tpg_id -EXPORT_SYMBOL vmlinux 0xe091c977 list_sort -EXPORT_SYMBOL vmlinux 0xe093813e blk_mq_init_queue -EXPORT_SYMBOL vmlinux 0xe095194c vme_unregister_bridge -EXPORT_SYMBOL vmlinux 0xe0955f76 utf8_casefold -EXPORT_SYMBOL vmlinux 0xe095c303 param_get_uint -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 0xe0cded46 nd_region_to_nstype -EXPORT_SYMBOL vmlinux 0xe0d84ac5 get_acl -EXPORT_SYMBOL vmlinux 0xe0dbc0a5 revert_creds -EXPORT_SYMBOL vmlinux 0xe0e30671 generic_file_splice_read -EXPORT_SYMBOL vmlinux 0xe0f6c80b dst_discard_out -EXPORT_SYMBOL vmlinux 0xe113bbbc csum_partial -EXPORT_SYMBOL vmlinux 0xe1140de1 scsi_remove_target -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 0xe13142ff gro_cells_init -EXPORT_SYMBOL vmlinux 0xe138fb8c percpu_counter_add_batch -EXPORT_SYMBOL vmlinux 0xe13cd8a7 dmi_name_in_vendors -EXPORT_SYMBOL vmlinux 0xe13ecc96 lock_two_nondirectories -EXPORT_SYMBOL vmlinux 0xe14d28b4 vme_register_driver -EXPORT_SYMBOL vmlinux 0xe1723e7c rawv6_mh_filter_register -EXPORT_SYMBOL vmlinux 0xe186243d __SCK__tp_func_kmem_cache_alloc -EXPORT_SYMBOL vmlinux 0xe18ece40 reuseport_alloc -EXPORT_SYMBOL vmlinux 0xe192b75e simple_open -EXPORT_SYMBOL vmlinux 0xe1959f16 register_tcf_proto_ops -EXPORT_SYMBOL vmlinux 0xe19c5c85 acpi_bus_get_device -EXPORT_SYMBOL vmlinux 0xe19eb3a4 netdev_master_upper_dev_get_rcu -EXPORT_SYMBOL vmlinux 0xe1ad85bc neigh_proc_dointvec_ms_jiffies -EXPORT_SYMBOL vmlinux 0xe1aeee62 framebuffer_release -EXPORT_SYMBOL vmlinux 0xe1bccc21 mdio_bus_type -EXPORT_SYMBOL vmlinux 0xe1bee700 __traceiter_read_msr -EXPORT_SYMBOL vmlinux 0xe1dcf64a audit_log_format -EXPORT_SYMBOL vmlinux 0xe1dd4903 t10_pi_type1_ip -EXPORT_SYMBOL vmlinux 0xe1f5879b pv_ops -EXPORT_SYMBOL vmlinux 0xe2122ca6 dm_kcopyd_copy -EXPORT_SYMBOL vmlinux 0xe2129ff8 netdev_txq_to_tc -EXPORT_SYMBOL vmlinux 0xe21f18ac __genradix_iter_peek -EXPORT_SYMBOL vmlinux 0xe23d36c9 tty_port_lower_dtr_rts -EXPORT_SYMBOL vmlinux 0xe246dfa4 input_release_device -EXPORT_SYMBOL vmlinux 0xe273d75d alloc_cpu_rmap -EXPORT_SYMBOL vmlinux 0xe2835635 flow_rule_match_cvlan -EXPORT_SYMBOL vmlinux 0xe29f2341 param_ops_charp -EXPORT_SYMBOL vmlinux 0xe2ac9316 generic_remap_file_range_prep -EXPORT_SYMBOL vmlinux 0xe2cc5aea __test_set_page_writeback -EXPORT_SYMBOL vmlinux 0xe2d5255a strcmp -EXPORT_SYMBOL vmlinux 0xe2d657b9 gen_pool_dma_alloc -EXPORT_SYMBOL vmlinux 0xe2e0bded tcf_em_tree_validate -EXPORT_SYMBOL vmlinux 0xe2e28fc0 __traceiter_write_msr -EXPORT_SYMBOL vmlinux 0xe2e707a6 posix_acl_valid -EXPORT_SYMBOL vmlinux 0xe2f7cf42 vga_switcheroo_get_client_state -EXPORT_SYMBOL vmlinux 0xe2fec9ce fib_notifier_ops_unregister -EXPORT_SYMBOL vmlinux 0xe30113d7 neigh_event_ns -EXPORT_SYMBOL vmlinux 0xe3215261 vfs_copy_file_range -EXPORT_SYMBOL vmlinux 0xe3226886 ipv6_find_hdr -EXPORT_SYMBOL vmlinux 0xe32ab4d8 xxh64_digest -EXPORT_SYMBOL vmlinux 0xe32b8966 locks_copy_conflock -EXPORT_SYMBOL vmlinux 0xe343b35b cdrom_ioctl -EXPORT_SYMBOL vmlinux 0xe347db93 udplite_prot -EXPORT_SYMBOL vmlinux 0xe35b791e call_usermodehelper_setup -EXPORT_SYMBOL vmlinux 0xe35ca943 tcp_v4_destroy_sock -EXPORT_SYMBOL vmlinux 0xe35e38bb netlink_kernel_release -EXPORT_SYMBOL vmlinux 0xe36660df blk_mq_start_stopped_hw_queues -EXPORT_SYMBOL vmlinux 0xe366b607 jbd2_journal_start_commit -EXPORT_SYMBOL vmlinux 0xe36b8e0a __tracepoint_spi_transfer_start -EXPORT_SYMBOL vmlinux 0xe397797a devm_release_resource -EXPORT_SYMBOL vmlinux 0xe3983b2d tcp_conn_request -EXPORT_SYMBOL vmlinux 0xe39b2ea5 sha256 -EXPORT_SYMBOL vmlinux 0xe39f27af tso_count_descs -EXPORT_SYMBOL vmlinux 0xe3c234e1 __scsi_device_lookup -EXPORT_SYMBOL vmlinux 0xe3d7167b dev_deactivate -EXPORT_SYMBOL vmlinux 0xe3d857ea __cpu_active_mask -EXPORT_SYMBOL vmlinux 0xe3e33182 __tracepoint_kmem_cache_free -EXPORT_SYMBOL vmlinux 0xe3e637dc skb_ext_add -EXPORT_SYMBOL vmlinux 0xe3ec2f2b alloc_chrdev_region -EXPORT_SYMBOL vmlinux 0xe3f4a08d netlink_broadcast -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 0xe40fad19 vm_insert_page -EXPORT_SYMBOL vmlinux 0xe418479c __xa_insert -EXPORT_SYMBOL vmlinux 0xe419bc99 iowrite32be -EXPORT_SYMBOL vmlinux 0xe41b33b2 generic_file_direct_write -EXPORT_SYMBOL vmlinux 0xe42b64f6 pci_get_domain_bus_and_slot -EXPORT_SYMBOL vmlinux 0xe4322bf8 tcp_init_sock -EXPORT_SYMBOL vmlinux 0xe43727e1 tcp_md5_hash_skb_data -EXPORT_SYMBOL vmlinux 0xe447d66b dquot_quota_on -EXPORT_SYMBOL vmlinux 0xe454525a skb_copy_bits -EXPORT_SYMBOL vmlinux 0xe46021ca _raw_spin_unlock_bh -EXPORT_SYMBOL vmlinux 0xe47450bc lockref_get -EXPORT_SYMBOL vmlinux 0xe4746773 pin_user_pages_remote -EXPORT_SYMBOL vmlinux 0xe4810a30 blk_pm_runtime_init -EXPORT_SYMBOL vmlinux 0xe486e9d7 tcf_qevent_validate_change -EXPORT_SYMBOL vmlinux 0xe495edca is_nvdimm_bus_locked -EXPORT_SYMBOL vmlinux 0xe49dfa4a nd_namespace_blk_validate -EXPORT_SYMBOL vmlinux 0xe4bc1dc5 seq_file_path -EXPORT_SYMBOL vmlinux 0xe4bc2c2f hdmi_drm_infoframe_pack -EXPORT_SYMBOL vmlinux 0xe4c4d74a blk_rq_count_integrity_sg -EXPORT_SYMBOL vmlinux 0xe4cb3ed0 kobject_get -EXPORT_SYMBOL vmlinux 0xe4d80bf4 acpi_enable -EXPORT_SYMBOL vmlinux 0xe4e705b9 skb_coalesce_rx_frag -EXPORT_SYMBOL vmlinux 0xe4e8da64 security_path_mknod -EXPORT_SYMBOL vmlinux 0xe4ec852a blk_post_runtime_resume -EXPORT_SYMBOL vmlinux 0xe4f13b9b arp_create -EXPORT_SYMBOL vmlinux 0xe4f61975 notify_change -EXPORT_SYMBOL vmlinux 0xe4f91062 padata_set_cpumask -EXPORT_SYMBOL vmlinux 0xe5038b95 jbd2_fc_release_bufs -EXPORT_SYMBOL vmlinux 0xe5089890 twl6040_get_sysclk -EXPORT_SYMBOL vmlinux 0xe50c9a4f devfreq_monitor_start -EXPORT_SYMBOL vmlinux 0xe50d3272 flow_rule_match_meta -EXPORT_SYMBOL vmlinux 0xe523ad75 synchronize_irq -EXPORT_SYMBOL vmlinux 0xe5368fc1 __nla_put_nohdr -EXPORT_SYMBOL vmlinux 0xe537fcf4 regset_get_alloc -EXPORT_SYMBOL vmlinux 0xe53bc3c0 mmc_get_card -EXPORT_SYMBOL vmlinux 0xe566ab1c agp_generic_alloc_pages -EXPORT_SYMBOL vmlinux 0xe56a91d5 nf_setsockopt -EXPORT_SYMBOL vmlinux 0xe58090ca security_ib_endport_manage_subnet -EXPORT_SYMBOL vmlinux 0xe589cf3f napi_build_skb -EXPORT_SYMBOL vmlinux 0xe5b9129e xp_dma_unmap -EXPORT_SYMBOL vmlinux 0xe5c60bd2 percpu_counter_set -EXPORT_SYMBOL vmlinux 0xe5c78a99 do_blank_screen -EXPORT_SYMBOL vmlinux 0xe5cdb825 generic_write_end -EXPORT_SYMBOL vmlinux 0xe5f621c4 __SCK__tp_func_kfree -EXPORT_SYMBOL vmlinux 0xe5f81651 path_is_mountpoint -EXPORT_SYMBOL vmlinux 0xe60e01b4 phy_get_eee_err -EXPORT_SYMBOL vmlinux 0xe613a798 inet_addr_is_any -EXPORT_SYMBOL vmlinux 0xe61c9e94 input_mt_report_slot_state -EXPORT_SYMBOL vmlinux 0xe623bbfe __blk_alloc_disk -EXPORT_SYMBOL vmlinux 0xe6371e5f phy_drivers_unregister -EXPORT_SYMBOL vmlinux 0xe637902d key_type_keyring -EXPORT_SYMBOL vmlinux 0xe647e5ae jbd2_log_wait_commit -EXPORT_SYMBOL vmlinux 0xe65b5f90 filp_open -EXPORT_SYMBOL vmlinux 0xe6679bfe mmc_can_discard -EXPORT_SYMBOL vmlinux 0xe66c354c inet_frag_reasm_prepare -EXPORT_SYMBOL vmlinux 0xe671e5ef param_set_ulong -EXPORT_SYMBOL vmlinux 0xe691ac7f ZSTD_decompressBegin -EXPORT_SYMBOL vmlinux 0xe694e125 kern_unmount_array -EXPORT_SYMBOL vmlinux 0xe6b15a1b prepare_to_wait -EXPORT_SYMBOL vmlinux 0xe6d2458e do_trace_netlink_extack -EXPORT_SYMBOL vmlinux 0xe70877d4 acpi_remove_sci_handler -EXPORT_SYMBOL vmlinux 0xe7176b74 param_ops_int -EXPORT_SYMBOL vmlinux 0xe71b1ef1 skb_udp_tunnel_segment -EXPORT_SYMBOL vmlinux 0xe7324b9a utf8nfdicf -EXPORT_SYMBOL vmlinux 0xe7327ef1 vfs_create -EXPORT_SYMBOL vmlinux 0xe742cd39 sock_no_socketpair -EXPORT_SYMBOL vmlinux 0xe755466e ppp_dev_name -EXPORT_SYMBOL vmlinux 0xe758d28d icmp6_send -EXPORT_SYMBOL vmlinux 0xe77c99a0 agp_unbind_memory -EXPORT_SYMBOL vmlinux 0xe787698f acpi_processor_register_performance -EXPORT_SYMBOL vmlinux 0xe788d384 set_bdi_congested -EXPORT_SYMBOL vmlinux 0xe78994be netif_set_real_num_queues -EXPORT_SYMBOL vmlinux 0xe792a66d mutex_lock_killable -EXPORT_SYMBOL vmlinux 0xe793e9a9 flow_indr_block_cb_alloc -EXPORT_SYMBOL vmlinux 0xe797181e __kfree_skb -EXPORT_SYMBOL vmlinux 0xe798597a iov_iter_init -EXPORT_SYMBOL vmlinux 0xe7b2af64 nd_dev_to_uuid -EXPORT_SYMBOL vmlinux 0xe7c30d30 redraw_screen -EXPORT_SYMBOL vmlinux 0xe7d4daac seq_list_next -EXPORT_SYMBOL vmlinux 0xe7de6d96 __lock_buffer -EXPORT_SYMBOL vmlinux 0xe7f8256f sk_error_report -EXPORT_SYMBOL vmlinux 0xe7fad906 ipmi_platform_add -EXPORT_SYMBOL vmlinux 0xe80b7843 xfrm_state_delete_tunnel -EXPORT_SYMBOL vmlinux 0xe83175be posix_acl_to_xattr -EXPORT_SYMBOL vmlinux 0xe844c777 __xa_cmpxchg -EXPORT_SYMBOL vmlinux 0xe85f2123 acpi_tb_unload_table -EXPORT_SYMBOL vmlinux 0xe87c8d00 generic_fadvise -EXPORT_SYMBOL vmlinux 0xe88bf8da mr_table_alloc -EXPORT_SYMBOL vmlinux 0xe8946290 bio_endio -EXPORT_SYMBOL vmlinux 0xe89524ba file_ns_capable -EXPORT_SYMBOL vmlinux 0xe8bf9e10 bio_integrity_prep -EXPORT_SYMBOL vmlinux 0xe8d1f8bf dma_fence_free -EXPORT_SYMBOL vmlinux 0xe8faca5c clk_get -EXPORT_SYMBOL vmlinux 0xe9081efb mempool_free -EXPORT_SYMBOL vmlinux 0xe909997a bitmap_print_list_to_buf -EXPORT_SYMBOL vmlinux 0xe911d1a8 __ip_queue_xmit -EXPORT_SYMBOL vmlinux 0xe9124d52 put_cmsg_scm_timestamping -EXPORT_SYMBOL vmlinux 0xe914e41e strcpy -EXPORT_SYMBOL vmlinux 0xe92a2f45 iommu_put_dma_cookie -EXPORT_SYMBOL vmlinux 0xe932989e qdisc_hash_del -EXPORT_SYMBOL vmlinux 0xe932e9b1 finalize_exec -EXPORT_SYMBOL vmlinux 0xe933a9b2 tty_driver_kref_put -EXPORT_SYMBOL vmlinux 0xe953b21f get_next_ino -EXPORT_SYMBOL vmlinux 0xe9627f90 __tracepoint_kmalloc -EXPORT_SYMBOL vmlinux 0xe97263f8 bio_devname -EXPORT_SYMBOL vmlinux 0xe984d044 scsi_rescan_device -EXPORT_SYMBOL vmlinux 0xe98a953f truncate_inode_pages -EXPORT_SYMBOL vmlinux 0xe9913f93 security_task_getsecid_subj -EXPORT_SYMBOL vmlinux 0xe9a5e67f intel_graphics_stolen_res -EXPORT_SYMBOL vmlinux 0xe9bbe4fa devm_register_netdev -EXPORT_SYMBOL vmlinux 0xe9d919d1 mount_single -EXPORT_SYMBOL vmlinux 0xe9ddaf96 rproc_elf_load_rsc_table -EXPORT_SYMBOL vmlinux 0xe9e8faeb efi_tpm_final_log_size -EXPORT_SYMBOL vmlinux 0xe9f2cfb6 param_get_charp -EXPORT_SYMBOL vmlinux 0xe9f7149c zlib_deflate_workspacesize -EXPORT_SYMBOL vmlinux 0xe9ffc063 down_trylock -EXPORT_SYMBOL vmlinux 0xea219ca0 vmf_insert_mixed -EXPORT_SYMBOL vmlinux 0xea21e4f8 simple_setattr -EXPORT_SYMBOL vmlinux 0xea2a72de fbcon_update_vcs -EXPORT_SYMBOL vmlinux 0xea384efa dquot_drop -EXPORT_SYMBOL vmlinux 0xea3b1165 __lock_sock_fast -EXPORT_SYMBOL vmlinux 0xea3c8e4e scsilun_to_int -EXPORT_SYMBOL vmlinux 0xea3e11cb dev_change_proto_down_reason -EXPORT_SYMBOL vmlinux 0xea6f9a36 zlib_deflate_dfltcc_enabled -EXPORT_SYMBOL vmlinux 0xea778fab sg_pcopy_to_buffer -EXPORT_SYMBOL vmlinux 0xea78713b mempool_create -EXPORT_SYMBOL vmlinux 0xea8edae1 kernel_recvmsg -EXPORT_SYMBOL vmlinux 0xea931815 skb_tunnel_check_pmtu -EXPORT_SYMBOL vmlinux 0xea9fe215 ida_alloc_range -EXPORT_SYMBOL vmlinux 0xeaa01662 napi_gro_flush -EXPORT_SYMBOL vmlinux 0xeaabe6c1 xfrm_find_acq -EXPORT_SYMBOL vmlinux 0xeab14c98 skb_eth_push -EXPORT_SYMBOL vmlinux 0xeab6f4c4 acpi_check_resource_conflict -EXPORT_SYMBOL vmlinux 0xeac44602 register_quota_format -EXPORT_SYMBOL vmlinux 0xeae3dfd6 __const_udelay -EXPORT_SYMBOL vmlinux 0xeae8d410 dm_table_run_md_queue_async -EXPORT_SYMBOL vmlinux 0xeaeb1387 panic_notifier_list -EXPORT_SYMBOL vmlinux 0xeafc141f __posix_acl_chmod -EXPORT_SYMBOL vmlinux 0xeb0ace4d iptun_encaps -EXPORT_SYMBOL vmlinux 0xeb0df96c tcp_simple_retransmit -EXPORT_SYMBOL vmlinux 0xeb16e3d9 inet_getname -EXPORT_SYMBOL vmlinux 0xeb233a45 __kmalloc -EXPORT_SYMBOL vmlinux 0xeb31aee8 acpi_trace_point -EXPORT_SYMBOL vmlinux 0xeb36a113 flow_rule_match_mpls -EXPORT_SYMBOL vmlinux 0xeb37101c audit_log_end -EXPORT_SYMBOL vmlinux 0xeb389e85 idr_get_next -EXPORT_SYMBOL vmlinux 0xeb44339a free_pages_exact -EXPORT_SYMBOL vmlinux 0xeb48a641 devm_memremap -EXPORT_SYMBOL vmlinux 0xeb4a28da phy_ethtool_get_strings -EXPORT_SYMBOL vmlinux 0xeb4e20ac do_wait_intr -EXPORT_SYMBOL vmlinux 0xeb51ec3e phy_modify_paged_changed -EXPORT_SYMBOL vmlinux 0xeb6cd6ff xp_dma_map -EXPORT_SYMBOL vmlinux 0xeb7f6046 acpi_get_devices -EXPORT_SYMBOL vmlinux 0xeb84fb54 ppp_channel_index -EXPORT_SYMBOL vmlinux 0xeb9e913d sgl_alloc_order -EXPORT_SYMBOL vmlinux 0xeb9eef52 match_uint -EXPORT_SYMBOL vmlinux 0xeba21445 dquot_get_dqblk -EXPORT_SYMBOL vmlinux 0xebb02dce rproc_shutdown -EXPORT_SYMBOL vmlinux 0xebb3ae87 block_write_full_page -EXPORT_SYMBOL vmlinux 0xebbcf26b shrink_dcache_parent -EXPORT_SYMBOL vmlinux 0xebcdfee7 component_match_add_typed -EXPORT_SYMBOL vmlinux 0xebd40c85 pci_find_resource -EXPORT_SYMBOL vmlinux 0xebe49322 tty_flip_buffer_push -EXPORT_SYMBOL vmlinux 0xebe86f3c dev_add_offload -EXPORT_SYMBOL vmlinux 0xebeaff39 config_item_init_type_name -EXPORT_SYMBOL vmlinux 0xebeb20ea __nla_put -EXPORT_SYMBOL vmlinux 0xebf36ad3 __ethtool_get_link_ksettings -EXPORT_SYMBOL vmlinux 0xec0b2ff5 mdio_driver_unregister -EXPORT_SYMBOL vmlinux 0xec0b62be xfrm_init_replay -EXPORT_SYMBOL vmlinux 0xec12d051 inet_frag_pull_head -EXPORT_SYMBOL vmlinux 0xec16a7f0 processors -EXPORT_SYMBOL vmlinux 0xec16da84 __var_waitqueue -EXPORT_SYMBOL vmlinux 0xec1c3483 redirty_page_for_writepage -EXPORT_SYMBOL vmlinux 0xec29cc21 pneigh_enqueue -EXPORT_SYMBOL vmlinux 0xec2b8a42 acpi_walk_namespace -EXPORT_SYMBOL vmlinux 0xec4cc13a mark_buffer_async_write -EXPORT_SYMBOL vmlinux 0xec4d9e3a clk_get_sys -EXPORT_SYMBOL vmlinux 0xec601ddb pcim_pin_device -EXPORT_SYMBOL vmlinux 0xec6486fb rproc_of_parse_firmware -EXPORT_SYMBOL vmlinux 0xec789911 fscrypt_decrypt_pagecache_blocks -EXPORT_SYMBOL vmlinux 0xec893baa d_alloc_name -EXPORT_SYMBOL vmlinux 0xecac8407 __memcpy -EXPORT_SYMBOL vmlinux 0xecb92713 generic_setlease -EXPORT_SYMBOL vmlinux 0xeccbe3e4 proc_doulongvec_ms_jiffies_minmax -EXPORT_SYMBOL vmlinux 0xecd37640 xsk_set_tx_need_wakeup -EXPORT_SYMBOL vmlinux 0xecd3d3d0 dma_resv_add_excl_fence -EXPORT_SYMBOL vmlinux 0xecdcabd2 copy_user_generic_unrolled -EXPORT_SYMBOL vmlinux 0xece784c2 rb_first -EXPORT_SYMBOL vmlinux 0xecfd68ef acpi_get_node -EXPORT_SYMBOL vmlinux 0xed00c4fb acpi_os_printf -EXPORT_SYMBOL vmlinux 0xed082396 sk_ns_capable -EXPORT_SYMBOL vmlinux 0xed0877e7 ps2_command -EXPORT_SYMBOL vmlinux 0xed08b4bf tcp_sock_set_quickack -EXPORT_SYMBOL vmlinux 0xed23901b __scsi_execute -EXPORT_SYMBOL vmlinux 0xed34ebbc acpi_any_gpe_status_set -EXPORT_SYMBOL vmlinux 0xed472640 ata_scsi_cmd_error_handler -EXPORT_SYMBOL vmlinux 0xed4bec33 mempool_exit -EXPORT_SYMBOL vmlinux 0xed4f00ae xp_can_alloc -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 0xed63c889 misc_register -EXPORT_SYMBOL vmlinux 0xed656e30 udp_encap_disable -EXPORT_SYMBOL vmlinux 0xed957884 mempool_alloc -EXPORT_SYMBOL vmlinux 0xedbaee5e nla_strcmp -EXPORT_SYMBOL vmlinux 0xedc03953 iounmap -EXPORT_SYMBOL vmlinux 0xedd2f7c3 inode_sub_bytes -EXPORT_SYMBOL vmlinux 0xedeece59 generic_file_open -EXPORT_SYMBOL vmlinux 0xee118f45 _dev_alert -EXPORT_SYMBOL vmlinux 0xee16fa10 _atomic_dec_and_lock_irqsave -EXPORT_SYMBOL vmlinux 0xee2a3344 d_drop -EXPORT_SYMBOL vmlinux 0xee2b81d3 ppp_register_net_channel -EXPORT_SYMBOL vmlinux 0xee2bc4b7 fput -EXPORT_SYMBOL vmlinux 0xee31ac12 tcp_close -EXPORT_SYMBOL vmlinux 0xee3972f1 iov_iter_gap_alignment -EXPORT_SYMBOL vmlinux 0xee4306ac seg6_push_hmac -EXPORT_SYMBOL vmlinux 0xee58e970 fb_add_videomode -EXPORT_SYMBOL vmlinux 0xee6a26c9 drop_nlink -EXPORT_SYMBOL vmlinux 0xee6cde50 jbd2_journal_flush -EXPORT_SYMBOL vmlinux 0xee7eb9e1 pnp_platform_devices -EXPORT_SYMBOL vmlinux 0xee842638 __do_once_done -EXPORT_SYMBOL vmlinux 0xee87e040 radix_tree_tag_get -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 0xee9410b0 fwnode_irq_get -EXPORT_SYMBOL vmlinux 0xeea20379 phy_suspend -EXPORT_SYMBOL vmlinux 0xeea9dbaf bitmap_bitremap -EXPORT_SYMBOL vmlinux 0xeeb9fa33 dev_change_proto_down_generic -EXPORT_SYMBOL vmlinux 0xeebf2092 __xa_store -EXPORT_SYMBOL vmlinux 0xeec9672a con_set_default_unimap -EXPORT_SYMBOL vmlinux 0xeed5ec67 kernel_sendmsg -EXPORT_SYMBOL vmlinux 0xef0d989f dm_get_device -EXPORT_SYMBOL vmlinux 0xef1f63aa kern_path_create -EXPORT_SYMBOL vmlinux 0xef2d92fd phy_device_remove -EXPORT_SYMBOL vmlinux 0xef2fa646 tcp_sendpage -EXPORT_SYMBOL vmlinux 0xef483649 genphy_read_mmd_unsupported -EXPORT_SYMBOL vmlinux 0xef59deed devm_of_iomap -EXPORT_SYMBOL vmlinux 0xef603c91 textsearch_register -EXPORT_SYMBOL vmlinux 0xef924cdf rt_spin_trylock -EXPORT_SYMBOL vmlinux 0xef94aebb bioset_exit -EXPORT_SYMBOL vmlinux 0xef9aedfc boot_option_idle_override -EXPORT_SYMBOL vmlinux 0xefaf2e4f tcf_queue_work -EXPORT_SYMBOL vmlinux 0xefcac479 vme_irq_handler -EXPORT_SYMBOL vmlinux 0xefcea2e7 acpi_warning -EXPORT_SYMBOL vmlinux 0xefd30e84 peernet2id -EXPORT_SYMBOL vmlinux 0xefee932c acpi_get_data_full -EXPORT_SYMBOL vmlinux 0xf0009fee put_pages_list -EXPORT_SYMBOL vmlinux 0xf00d4b2f __napi_alloc_skb -EXPORT_SYMBOL vmlinux 0xf0157543 filemap_fdatawait_keep_errors -EXPORT_SYMBOL vmlinux 0xf02aa937 wait_for_completion_interruptible_timeout -EXPORT_SYMBOL vmlinux 0xf032b497 acpi_dev_get_next_match_dev -EXPORT_SYMBOL vmlinux 0xf03d55ee fs_param_is_u64 -EXPORT_SYMBOL vmlinux 0xf05988c1 devm_free_irq -EXPORT_SYMBOL vmlinux 0xf05c32ad rdmsr_on_cpus -EXPORT_SYMBOL vmlinux 0xf0701fda pcim_iomap -EXPORT_SYMBOL vmlinux 0xf071de0d tcf_exts_change -EXPORT_SYMBOL vmlinux 0xf0732eb8 mmc_detect_change -EXPORT_SYMBOL vmlinux 0xf081bd1f netpoll_setup -EXPORT_SYMBOL vmlinux 0xf087d55d d_instantiate_anon -EXPORT_SYMBOL vmlinux 0xf0905762 dma_fence_match_context -EXPORT_SYMBOL vmlinux 0xf090ac29 sdev_enable_disk_events -EXPORT_SYMBOL vmlinux 0xf09b5d9a get_zeroed_page -EXPORT_SYMBOL vmlinux 0xf0ab3b9c send_sig_mceerr -EXPORT_SYMBOL vmlinux 0xf0bd6523 dcb_ieee_getapp_default_prio_mask -EXPORT_SYMBOL vmlinux 0xf0c5e63a param_get_hexint -EXPORT_SYMBOL vmlinux 0xf0d0d471 watchdog_unregister_governor -EXPORT_SYMBOL vmlinux 0xf0dbfa35 __set_page_dirty_nobuffers -EXPORT_SYMBOL vmlinux 0xf0e7b6fb netdev_sk_get_lowest_dev -EXPORT_SYMBOL vmlinux 0xf0f0a41e ipv6_dev_get_saddr -EXPORT_SYMBOL vmlinux 0xf0fd02fd wait_on_page_bit -EXPORT_SYMBOL vmlinux 0xf0feab2b phy_attached_print -EXPORT_SYMBOL vmlinux 0xf10cc100 vfs_get_tree -EXPORT_SYMBOL vmlinux 0xf11dd46e _page_poisoning_enabled_early -EXPORT_SYMBOL vmlinux 0xf131fb2a keyring_clear -EXPORT_SYMBOL vmlinux 0xf140594a sock_rfree -EXPORT_SYMBOL vmlinux 0xf14cd880 blk_set_runtime_active -EXPORT_SYMBOL vmlinux 0xf177bb4f phy_ethtool_get_link_ksettings -EXPORT_SYMBOL vmlinux 0xf1848ee2 acpi_install_sci_handler -EXPORT_SYMBOL vmlinux 0xf195c682 fb_invert_cmaps -EXPORT_SYMBOL vmlinux 0xf1969a8e __usecs_to_jiffies -EXPORT_SYMBOL vmlinux 0xf1a68107 acpi_processor_preregister_performance -EXPORT_SYMBOL vmlinux 0xf1c327c5 ip6_frag_init -EXPORT_SYMBOL vmlinux 0xf1db1704 nla_memcpy -EXPORT_SYMBOL vmlinux 0xf1e046cc panic -EXPORT_SYMBOL vmlinux 0xf1e98c74 avenrun -EXPORT_SYMBOL vmlinux 0xf1ed2e0b mipi_dsi_shutdown_peripheral -EXPORT_SYMBOL vmlinux 0xf2016734 km_policy_expired -EXPORT_SYMBOL vmlinux 0xf203d514 vga_set_legacy_decoding -EXPORT_SYMBOL vmlinux 0xf20809bd genphy_suspend -EXPORT_SYMBOL vmlinux 0xf2089810 pci_dev_get -EXPORT_SYMBOL vmlinux 0xf20c57f1 mmc_command_done -EXPORT_SYMBOL vmlinux 0xf21e64f2 icmpv6_ndo_send -EXPORT_SYMBOL vmlinux 0xf2282c7d file_remove_privs -EXPORT_SYMBOL vmlinux 0xf229424a preempt_count_add -EXPORT_SYMBOL vmlinux 0xf2341871 netpoll_send_skb -EXPORT_SYMBOL vmlinux 0xf23fcb99 __kfifo_in -EXPORT_SYMBOL vmlinux 0xf247153a param_ops_string -EXPORT_SYMBOL vmlinux 0xf24a8550 nd_btt_version -EXPORT_SYMBOL vmlinux 0xf255ae88 vfs_rmdir -EXPORT_SYMBOL vmlinux 0xf2569205 udp_push_pending_frames -EXPORT_SYMBOL vmlinux 0xf27fbd00 d_alloc -EXPORT_SYMBOL vmlinux 0xf28404cf devlink_dpipe_header_ipv6 -EXPORT_SYMBOL vmlinux 0xf28cf0ae __hw_addr_init -EXPORT_SYMBOL vmlinux 0xf28ed6e2 machine_to_phys_nr -EXPORT_SYMBOL vmlinux 0xf29403e5 acpi_install_table_handler -EXPORT_SYMBOL vmlinux 0xf29f8515 __kfifo_dma_out_prepare_r -EXPORT_SYMBOL vmlinux 0xf2a95374 unmap_mapping_range -EXPORT_SYMBOL vmlinux 0xf2adcb8c _dev_err -EXPORT_SYMBOL vmlinux 0xf2b81b64 arch_io_reserve_memtype_wc -EXPORT_SYMBOL vmlinux 0xf2bef8dd free_bucket_spinlocks -EXPORT_SYMBOL vmlinux 0xf2c43f3f zlib_deflate -EXPORT_SYMBOL vmlinux 0xf2e2450e kern_unmount -EXPORT_SYMBOL vmlinux 0xf2e4c62a gen_pool_virt_to_phys -EXPORT_SYMBOL vmlinux 0xf2e583ae jbd2_journal_set_triggers -EXPORT_SYMBOL vmlinux 0xf2e5bd87 security_free_mnt_opts -EXPORT_SYMBOL vmlinux 0xf2f53617 memregion_free -EXPORT_SYMBOL vmlinux 0xf30965ac iosf_mbi_register_pmic_bus_access_notifier -EXPORT_SYMBOL vmlinux 0xf3107926 sha224_update -EXPORT_SYMBOL vmlinux 0xf32b8b48 iget_locked -EXPORT_SYMBOL vmlinux 0xf32e3488 filemap_range_has_page -EXPORT_SYMBOL vmlinux 0xf334c175 serial8250_register_8250_port -EXPORT_SYMBOL vmlinux 0xf3350cd4 pnp_disable_dev -EXPORT_SYMBOL vmlinux 0xf3396d09 dm_register_target -EXPORT_SYMBOL vmlinux 0xf346231f seq_list_start_head -EXPORT_SYMBOL vmlinux 0xf34bcb09 tc_setup_cb_destroy -EXPORT_SYMBOL vmlinux 0xf34d58ad sdev_disable_disk_events -EXPORT_SYMBOL vmlinux 0xf353a698 register_module_notifier -EXPORT_SYMBOL vmlinux 0xf356223b locks_free_lock -EXPORT_SYMBOL vmlinux 0xf3600757 acpi_device_set_power -EXPORT_SYMBOL vmlinux 0xf36f42a9 slhc_uncompress -EXPORT_SYMBOL vmlinux 0xf3800afa ip6_xmit -EXPORT_SYMBOL vmlinux 0xf381f7ef fscrypt_zeroout_range -EXPORT_SYMBOL vmlinux 0xf38a3b04 scsi_device_lookup_by_target -EXPORT_SYMBOL vmlinux 0xf3916987 global_cursor_default -EXPORT_SYMBOL vmlinux 0xf3932313 mb_cache_entry_wait_unused -EXPORT_SYMBOL vmlinux 0xf3a3f0f7 tty_check_change -EXPORT_SYMBOL vmlinux 0xf3a57892 release_dentry_name_snapshot -EXPORT_SYMBOL vmlinux 0xf3b30a06 utf8version_latest -EXPORT_SYMBOL vmlinux 0xf3bedb28 __d_drop -EXPORT_SYMBOL vmlinux 0xf3d6c437 __blk_rq_map_sg -EXPORT_SYMBOL vmlinux 0xf3e0697a __set_page_dirty_buffers -EXPORT_SYMBOL vmlinux 0xf3e0e1df allocate_resource -EXPORT_SYMBOL vmlinux 0xf3e6402e __bitmap_equal -EXPORT_SYMBOL vmlinux 0xf3f674c2 ip_fraglist_prepare -EXPORT_SYMBOL vmlinux 0xf4102303 nla_put_nohdr -EXPORT_SYMBOL vmlinux 0xf413ba5b qdisc_watchdog_schedule_range_ns -EXPORT_SYMBOL vmlinux 0xf418cd21 sk_alloc -EXPORT_SYMBOL vmlinux 0xf4233b36 con_copy_unimap -EXPORT_SYMBOL vmlinux 0xf4263cfb generic_file_write_iter -EXPORT_SYMBOL vmlinux 0xf430f15b xattr_full_name -EXPORT_SYMBOL vmlinux 0xf43d2caa acpi_remove_interface -EXPORT_SYMBOL vmlinux 0xf44a904a net_ns_barrier -EXPORT_SYMBOL vmlinux 0xf45aa4a9 param_set_byte -EXPORT_SYMBOL vmlinux 0xf4617b47 simple_dir_operations -EXPORT_SYMBOL vmlinux 0xf46a41b2 truncate_setsize -EXPORT_SYMBOL vmlinux 0xf46e9443 copy_page_from_iter_atomic -EXPORT_SYMBOL vmlinux 0xf474c21c bitmap_print_to_pagebuf -EXPORT_SYMBOL vmlinux 0xf474fdcb kfree_const -EXPORT_SYMBOL vmlinux 0xf48ccacd dma_fence_chain_init -EXPORT_SYMBOL vmlinux 0xf494aafe __filemap_set_wb_err -EXPORT_SYMBOL vmlinux 0xf496c426 lookup_one_unlocked -EXPORT_SYMBOL vmlinux 0xf4a565fd wrmsr_on_cpus -EXPORT_SYMBOL vmlinux 0xf4b754fd acpi_resources_are_enforced -EXPORT_SYMBOL vmlinux 0xf4b7e8b7 shmem_aops -EXPORT_SYMBOL vmlinux 0xf4b8acdc may_umount -EXPORT_SYMBOL vmlinux 0xf4bdbeb9 __frontswap_invalidate_area -EXPORT_SYMBOL vmlinux 0xf4c5aba0 fscrypt_encrypt_pagecache_blocks -EXPORT_SYMBOL vmlinux 0xf4d27b30 dev_pm_opp_register_notifier -EXPORT_SYMBOL vmlinux 0xf4d5fe85 jbd2_journal_grab_journal_head -EXPORT_SYMBOL vmlinux 0xf4db35bc stpcpy -EXPORT_SYMBOL vmlinux 0xf4e8ebf9 devm_clk_release_clkdev -EXPORT_SYMBOL vmlinux 0xf4e9df4b md_integrity_add_rdev -EXPORT_SYMBOL vmlinux 0xf4ea430f nd_btt_probe -EXPORT_SYMBOL vmlinux 0xf4f0914c blk_rq_init -EXPORT_SYMBOL vmlinux 0xf4f14de6 rtnl_trylock -EXPORT_SYMBOL vmlinux 0xf4f85b1f fs_param_is_enum -EXPORT_SYMBOL vmlinux 0xf4faa5ba ipv6_chk_prefix -EXPORT_SYMBOL vmlinux 0xf51a3a11 mipi_dsi_driver_unregister -EXPORT_SYMBOL vmlinux 0xf5215fb9 iov_iter_npages -EXPORT_SYMBOL vmlinux 0xf5309524 touchscreen_report_pos -EXPORT_SYMBOL vmlinux 0xf53d4c26 qdisc_class_hash_destroy -EXPORT_SYMBOL vmlinux 0xf568f9e4 pci_iomap_range -EXPORT_SYMBOL vmlinux 0xf56a6059 free_buffer_head -EXPORT_SYMBOL vmlinux 0xf56cfe0f phy_advertise_supported -EXPORT_SYMBOL vmlinux 0xf56d6688 kfree_skb_list -EXPORT_SYMBOL vmlinux 0xf593842f ns_capable_setid -EXPORT_SYMBOL vmlinux 0xf5a20ed2 __genradix_prealloc -EXPORT_SYMBOL vmlinux 0xf5a5c84c msrs_alloc -EXPORT_SYMBOL vmlinux 0xf5c248dc __ps2_command -EXPORT_SYMBOL vmlinux 0xf5e7ea40 ktime_get_coarse_ts64 -EXPORT_SYMBOL vmlinux 0xf5eb933d __lock_page -EXPORT_SYMBOL vmlinux 0xf5f431b4 __sock_queue_rcv_skb -EXPORT_SYMBOL vmlinux 0xf5fbc556 remove_watch_from_object -EXPORT_SYMBOL vmlinux 0xf606896b __inode_sub_bytes -EXPORT_SYMBOL vmlinux 0xf60ab926 acpi_get_event_status -EXPORT_SYMBOL vmlinux 0xf624a864 genphy_config_eee_advert -EXPORT_SYMBOL vmlinux 0xf626ae6e generic_writepages -EXPORT_SYMBOL vmlinux 0xf62e88d9 sock_alloc_send_pskb -EXPORT_SYMBOL vmlinux 0xf643d104 hsiphash_4u32 -EXPORT_SYMBOL vmlinux 0xf64a0e28 console_stop -EXPORT_SYMBOL vmlinux 0xf660244d pcie_bandwidth_available -EXPORT_SYMBOL vmlinux 0xf665f74f sock_load_diag_module -EXPORT_SYMBOL vmlinux 0xf671af08 twl6040_set_pll -EXPORT_SYMBOL vmlinux 0xf68285c0 register_inetaddr_notifier -EXPORT_SYMBOL vmlinux 0xf68e6eef __skb_flow_get_ports -EXPORT_SYMBOL vmlinux 0xf69c2916 devm_iounmap -EXPORT_SYMBOL vmlinux 0xf6c8d4c4 pm8606_osc_disable -EXPORT_SYMBOL vmlinux 0xf6cef78d fs_param_is_bool -EXPORT_SYMBOL vmlinux 0xf6d5ec39 mpage_readpage -EXPORT_SYMBOL vmlinux 0xf6d8b6b3 qdisc_watchdog_init -EXPORT_SYMBOL vmlinux 0xf6dcd2d1 alloc_anon_inode -EXPORT_SYMBOL vmlinux 0xf6ebc03b net_ratelimit -EXPORT_SYMBOL vmlinux 0xf6f9d58d init_on_free -EXPORT_SYMBOL vmlinux 0xf6fc8791 __bitmap_xor -EXPORT_SYMBOL vmlinux 0xf7015c51 input_unregister_handler -EXPORT_SYMBOL vmlinux 0xf70a45c1 iov_iter_xarray -EXPORT_SYMBOL vmlinux 0xf7271af8 padata_do_serial -EXPORT_SYMBOL vmlinux 0xf72a21d4 rproc_alloc -EXPORT_SYMBOL vmlinux 0xf738d1be register_blocking_lsm_notifier -EXPORT_SYMBOL vmlinux 0xf7436568 pci_release_regions -EXPORT_SYMBOL vmlinux 0xf754555a clear_bdi_congested -EXPORT_SYMBOL vmlinux 0xf77337a1 hdmi_audio_infoframe_check -EXPORT_SYMBOL vmlinux 0xf77adbc1 param_ops_ushort -EXPORT_SYMBOL vmlinux 0xf77fac64 set_anon_super -EXPORT_SYMBOL vmlinux 0xf7818840 fscrypt_free_inode -EXPORT_SYMBOL vmlinux 0xf7991390 vme_irq_request -EXPORT_SYMBOL vmlinux 0xf79b559e devm_ioremap_np -EXPORT_SYMBOL vmlinux 0xf79ca3bb acpi_remove_gpe_block -EXPORT_SYMBOL vmlinux 0xf7a6dc9f add_watch_to_object -EXPORT_SYMBOL vmlinux 0xf7bd5443 dm_unregister_target -EXPORT_SYMBOL vmlinux 0xf7d2185d blk_rq_unmap_user -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 0xf7f1b9b9 padata_alloc -EXPORT_SYMBOL vmlinux 0xf7f8a4a3 truncate_pagecache -EXPORT_SYMBOL vmlinux 0xf8061d01 devfreq_unregister_opp_notifier -EXPORT_SYMBOL vmlinux 0xf80724ab proc_dointvec -EXPORT_SYMBOL vmlinux 0xf80be44e rdmsr_safe_on_cpu -EXPORT_SYMBOL vmlinux 0xf811e69d scsi_eh_flush_done_q -EXPORT_SYMBOL vmlinux 0xf812cff6 memscan -EXPORT_SYMBOL vmlinux 0xf81853b3 __ip_select_ident -EXPORT_SYMBOL vmlinux 0xf81d8b95 __SCK__tp_func_dma_fence_enable_signal -EXPORT_SYMBOL vmlinux 0xf82abc1d isa_dma_bridge_buggy -EXPORT_SYMBOL vmlinux 0xf82ec573 rb_prev -EXPORT_SYMBOL vmlinux 0xf835ce6f iter_file_splice_write -EXPORT_SYMBOL vmlinux 0xf83f3d1f reuseport_select_sock -EXPORT_SYMBOL vmlinux 0xf8425f9b _copy_from_iter -EXPORT_SYMBOL vmlinux 0xf84bd6ee bpf_stats_enabled_key -EXPORT_SYMBOL vmlinux 0xf84ff21c tag_pages_for_writeback -EXPORT_SYMBOL vmlinux 0xf878c24a netdev_unbind_sb_channel -EXPORT_SYMBOL vmlinux 0xf87b54a2 security_inet_conn_request -EXPORT_SYMBOL vmlinux 0xf888ca21 sg_init_table -EXPORT_SYMBOL vmlinux 0xf89b3d60 tc_setup_cb_reoffload -EXPORT_SYMBOL vmlinux 0xf89e1686 submit_bio -EXPORT_SYMBOL vmlinux 0xf8a9552e d_prune_aliases -EXPORT_SYMBOL vmlinux 0xf8adcc7b __blk_mq_alloc_disk -EXPORT_SYMBOL vmlinux 0xf8b3edf2 generic_ro_fops -EXPORT_SYMBOL vmlinux 0xf8bf8e22 ZSTD_DDictWorkspaceBound -EXPORT_SYMBOL vmlinux 0xf8d07858 bitmap_from_arr32 -EXPORT_SYMBOL vmlinux 0xf8d12a3b dm_kcopyd_zero -EXPORT_SYMBOL vmlinux 0xf8f61ebc wake_up_var -EXPORT_SYMBOL vmlinux 0xf90a1e85 __x86_indirect_thunk_r8 -EXPORT_SYMBOL vmlinux 0xf911e23d zero_fill_bio -EXPORT_SYMBOL vmlinux 0xf927c705 phy_config_aneg -EXPORT_SYMBOL vmlinux 0xf927ce69 bio_integrity_add_page -EXPORT_SYMBOL vmlinux 0xf9334062 d_lookup -EXPORT_SYMBOL vmlinux 0xf93a0b94 fb_class -EXPORT_SYMBOL vmlinux 0xf93fd09c fb_find_mode_cvt -EXPORT_SYMBOL vmlinux 0xf956d310 __wake_up_bit -EXPORT_SYMBOL vmlinux 0xf95fe3a2 unregister_binfmt -EXPORT_SYMBOL vmlinux 0xf971cea8 utf8len -EXPORT_SYMBOL vmlinux 0xf9722676 twl_i2c_write -EXPORT_SYMBOL vmlinux 0xf9888754 twl6040_reg_write -EXPORT_SYMBOL vmlinux 0xf9903283 __skb_wait_for_more_packets -EXPORT_SYMBOL vmlinux 0xf9a482f9 msleep -EXPORT_SYMBOL vmlinux 0xf9c0b663 strlcat -EXPORT_SYMBOL vmlinux 0xf9ca2eb4 kstrtoint_from_user -EXPORT_SYMBOL vmlinux 0xfa042227 gnet_stats_add_basic -EXPORT_SYMBOL vmlinux 0xfa08c34a page_offline_end -EXPORT_SYMBOL vmlinux 0xfa0fc159 netif_receive_skb -EXPORT_SYMBOL vmlinux 0xfa1c21e0 page_pool_release_page -EXPORT_SYMBOL vmlinux 0xfa258697 neigh_sysctl_unregister -EXPORT_SYMBOL vmlinux 0xfa25d141 tcf_block_get -EXPORT_SYMBOL vmlinux 0xfa297415 acpi_map_pxm_to_node -EXPORT_SYMBOL vmlinux 0xfa2e5f32 i2c_smbus_pec -EXPORT_SYMBOL vmlinux 0xfa599bb2 netlink_register_notifier -EXPORT_SYMBOL vmlinux 0xfa801f25 reuseport_has_conns_set -EXPORT_SYMBOL vmlinux 0xfa873ad0 prandom_seed -EXPORT_SYMBOL vmlinux 0xfa87574a skb_flow_dissect_hash -EXPORT_SYMBOL vmlinux 0xfaa0defb netif_skb_features -EXPORT_SYMBOL vmlinux 0xfaaa12d0 _page_poisoning_enabled -EXPORT_SYMBOL vmlinux 0xfabeb13c pci_match_id -EXPORT_SYMBOL vmlinux 0xfac19588 __clear_user -EXPORT_SYMBOL vmlinux 0xfac1efb6 clean_bdev_aliases -EXPORT_SYMBOL vmlinux 0xfac8865f sysctl_wmem_max -EXPORT_SYMBOL vmlinux 0xfac9af07 vc_resize -EXPORT_SYMBOL vmlinux 0xfacd8c28 nla_put -EXPORT_SYMBOL vmlinux 0xfb17a5c5 iommu_dma_get_resv_regions -EXPORT_SYMBOL vmlinux 0xfb24e12f bio_reset -EXPORT_SYMBOL vmlinux 0xfb348fea fault_in_safe_writeable -EXPORT_SYMBOL vmlinux 0xfb384d37 kasprintf -EXPORT_SYMBOL vmlinux 0xfb47eccc simple_empty -EXPORT_SYMBOL vmlinux 0xfb56f31a __mmap_lock_do_trace_released -EXPORT_SYMBOL vmlinux 0xfb578fc5 memset -EXPORT_SYMBOL vmlinux 0xfb63ec3c iov_iter_get_pages_alloc -EXPORT_SYMBOL vmlinux 0xfb6af58d recalc_sigpending -EXPORT_SYMBOL vmlinux 0xfb74d36b radix_tree_tagged -EXPORT_SYMBOL vmlinux 0xfb7749aa writeback_inodes_sb_nr -EXPORT_SYMBOL vmlinux 0xfb7b90a9 xfrm_input_resume -EXPORT_SYMBOL vmlinux 0xfb944230 down_read_killable -EXPORT_SYMBOL vmlinux 0xfb9d77bd zpool_unregister_driver -EXPORT_SYMBOL vmlinux 0xfb9fae68 pci_get_subsys -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 0xfbb303ec skb_expand_head -EXPORT_SYMBOL vmlinux 0xfbb8a761 strscpy_pad -EXPORT_SYMBOL vmlinux 0xfbc4959f i2c_smbus_write_byte_data -EXPORT_SYMBOL vmlinux 0xfbc4f89e io_schedule_timeout -EXPORT_SYMBOL vmlinux 0xfbe8ee28 acpi_get_table_by_index -EXPORT_SYMBOL vmlinux 0xfbfd168a dma_map_sg_attrs -EXPORT_SYMBOL vmlinux 0xfc0f475e d_set_d_op -EXPORT_SYMBOL vmlinux 0xfc2391a6 ip_frag_next -EXPORT_SYMBOL vmlinux 0xfc3237d2 clk_bulk_get -EXPORT_SYMBOL vmlinux 0xfc399557 utf8_load -EXPORT_SYMBOL vmlinux 0xfc39e32f ioport_unmap -EXPORT_SYMBOL vmlinux 0xfc3a5f1d __bread_gfp -EXPORT_SYMBOL vmlinux 0xfc3d53cb __put_user_nocheck_1 -EXPORT_SYMBOL vmlinux 0xfc4152fc ec_read -EXPORT_SYMBOL vmlinux 0xfc421e79 gnet_stats_add_queue -EXPORT_SYMBOL vmlinux 0xfc5cd23a cdrom_number_of_slots -EXPORT_SYMBOL vmlinux 0xfc72ca11 disk_end_io_acct -EXPORT_SYMBOL vmlinux 0xfc842bc4 gen_pool_set_algo -EXPORT_SYMBOL vmlinux 0xfc8f1963 dm_table_get_mode -EXPORT_SYMBOL vmlinux 0xfc9689d2 rproc_coredump_add_segment -EXPORT_SYMBOL vmlinux 0xfc990cd7 scsi_eh_finish_cmd -EXPORT_SYMBOL vmlinux 0xfc9d948b mr_mfc_find_any_parent -EXPORT_SYMBOL vmlinux 0xfcabad73 __dquot_transfer -EXPORT_SYMBOL vmlinux 0xfcad15dc request_firmware -EXPORT_SYMBOL vmlinux 0xfcaf53ba pci_read_config_byte -EXPORT_SYMBOL vmlinux 0xfcb0413a phy_validate_pause -EXPORT_SYMBOL vmlinux 0xfccc4a56 super_setup_bdi -EXPORT_SYMBOL vmlinux 0xfcd1819a hdmi_spd_infoframe_check -EXPORT_SYMBOL vmlinux 0xfce42c77 simple_statfs -EXPORT_SYMBOL vmlinux 0xfce4c9d1 config_item_put -EXPORT_SYMBOL vmlinux 0xfcec0987 enable_irq -EXPORT_SYMBOL vmlinux 0xfd032aa2 ip_fraglist_init -EXPORT_SYMBOL vmlinux 0xfd0603d8 give_up_console -EXPORT_SYMBOL vmlinux 0xfd162fb8 set_capacity -EXPORT_SYMBOL vmlinux 0xfd24364f tcp_connect -EXPORT_SYMBOL vmlinux 0xfd416127 fs_bio_set -EXPORT_SYMBOL vmlinux 0xfd429183 request_firmware_into_buf -EXPORT_SYMBOL vmlinux 0xfd4a64f8 xsk_uses_need_wakeup -EXPORT_SYMBOL vmlinux 0xfd618cc7 simple_release_fs -EXPORT_SYMBOL vmlinux 0xfd79e8a6 mmc_gpiod_request_cd -EXPORT_SYMBOL vmlinux 0xfd7fb3fe sk_free -EXPORT_SYMBOL vmlinux 0xfd890cfa gro_find_receive_by_type -EXPORT_SYMBOL vmlinux 0xfd93ee35 ioremap_wc -EXPORT_SYMBOL vmlinux 0xfd97e02d xp_set_rxq_info -EXPORT_SYMBOL vmlinux 0xfda085ae mmc_release_host -EXPORT_SYMBOL vmlinux 0xfda9581f prandom_u32 -EXPORT_SYMBOL vmlinux 0xfdaca263 key_task_permission -EXPORT_SYMBOL vmlinux 0xfdb6576f acpi_set_debugger_thread_id -EXPORT_SYMBOL vmlinux 0xfdb8e8d1 dev_mc_flush -EXPORT_SYMBOL vmlinux 0xfdcb4ed3 acpi_os_get_line -EXPORT_SYMBOL vmlinux 0xfdcc8a0e fb_find_best_display -EXPORT_SYMBOL vmlinux 0xfdcf83db scsi_add_host_with_dma -EXPORT_SYMBOL vmlinux 0xfdd1317c serial8250_do_set_termios -EXPORT_SYMBOL vmlinux 0xfdd4216d pcibios_align_resource -EXPORT_SYMBOL vmlinux 0xfdd6d368 remap_pfn_range -EXPORT_SYMBOL vmlinux 0xfddac614 flow_rule_match_ipv6_addrs -EXPORT_SYMBOL vmlinux 0xfdde3994 ppp_input_error -EXPORT_SYMBOL vmlinux 0xfdfb792f amd_iommu_pc_supported -EXPORT_SYMBOL vmlinux 0xfdfc9f70 mipi_dsi_dcs_set_display_off -EXPORT_SYMBOL vmlinux 0xfe029963 unregister_inetaddr_notifier -EXPORT_SYMBOL vmlinux 0xfe052363 ioread64_lo_hi -EXPORT_SYMBOL vmlinux 0xfe07ec70 rt_read_trylock -EXPORT_SYMBOL vmlinux 0xfe17b5ac key_validate -EXPORT_SYMBOL vmlinux 0xfe1ad079 d_genocide -EXPORT_SYMBOL vmlinux 0xfe1d2e94 key_create_or_update -EXPORT_SYMBOL vmlinux 0xfe47ebee dev_queue_xmit_accel -EXPORT_SYMBOL vmlinux 0xfe487975 init_wait_entry -EXPORT_SYMBOL vmlinux 0xfe513552 param_get_string -EXPORT_SYMBOL vmlinux 0xfe51fc01 cdrom_mode_select -EXPORT_SYMBOL vmlinux 0xfe5d4bb2 sys_tz -EXPORT_SYMBOL vmlinux 0xfe716003 ipv6_select_ident -EXPORT_SYMBOL vmlinux 0xfe77f935 dm_kobject_release -EXPORT_SYMBOL vmlinux 0xfe85ec22 genphy_read_status -EXPORT_SYMBOL vmlinux 0xfe916dc6 hex_dump_to_buffer -EXPORT_SYMBOL vmlinux 0xfe9c431f max8925_reg_write -EXPORT_SYMBOL vmlinux 0xfe9ebbbb acpi_osi_is_win8 -EXPORT_SYMBOL vmlinux 0xfeb5d0aa verify_spi_info -EXPORT_SYMBOL vmlinux 0xfec15703 kmalloc_caches -EXPORT_SYMBOL vmlinux 0xfecb2057 mipi_dsi_driver_register_full -EXPORT_SYMBOL vmlinux 0xfecde9fb jbd2_submit_inode_data -EXPORT_SYMBOL vmlinux 0xfedcdb60 seq_hlist_next_percpu -EXPORT_SYMBOL vmlinux 0xfee5f5bb proc_create -EXPORT_SYMBOL vmlinux 0xfee78cad kthread_create_on_node -EXPORT_SYMBOL vmlinux 0xfeea58f2 srso_alias_untrain_ret -EXPORT_SYMBOL vmlinux 0xfeebc7c4 __kfifo_from_user_r -EXPORT_SYMBOL vmlinux 0xfef216eb _raw_spin_trylock -EXPORT_SYMBOL vmlinux 0xfef78897 ip6_dst_hoplimit -EXPORT_SYMBOL vmlinux 0xfefb3fef vfs_iocb_iter_read -EXPORT_SYMBOL vmlinux 0xfefcb98e vme_dma_vme_attribute -EXPORT_SYMBOL vmlinux 0xff08f448 gen_pool_dma_zalloc -EXPORT_SYMBOL vmlinux 0xff1e9dd8 seq_list_start -EXPORT_SYMBOL vmlinux 0xff282521 rfkill_register -EXPORT_SYMBOL vmlinux 0xff284b2a file_check_and_advance_wb_err -EXPORT_SYMBOL vmlinux 0xff52848a __SCT__tp_func_kmem_cache_free -EXPORT_SYMBOL vmlinux 0xff6878cf fb_default_cmap -EXPORT_SYMBOL vmlinux 0xff7aec00 radix_tree_insert -EXPORT_SYMBOL vmlinux 0xff7ffcf8 jbd2_journal_wipe -EXPORT_SYMBOL vmlinux 0xff8d10be tcf_idr_check_alloc -EXPORT_SYMBOL vmlinux 0xff900668 ipv6_dev_mc_inc -EXPORT_SYMBOL vmlinux 0xff915271 sk_mc_loop -EXPORT_SYMBOL vmlinux 0xffb94cda scsi_test_unit_ready -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 0xffe97ed9 eth_get_headlen -EXPORT_SYMBOL vmlinux 0xffeedf6a delayed_work_timer_fn -EXPORT_SYMBOL_GPL arch/x86/crypto/camellia-aesni-avx-x86_64 0x2c8b5dbf camellia_ecb_enc_16way -EXPORT_SYMBOL_GPL arch/x86/crypto/camellia-aesni-avx-x86_64 0x339c33c5 camellia_cbc_dec_16way -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 0x3725eba9 sm4_avx_cfb_decrypt -EXPORT_SYMBOL_GPL arch/x86/crypto/sm4-aesni-avx-x86_64 0x447234be sm4_avx_ctr_crypt -EXPORT_SYMBOL_GPL arch/x86/crypto/sm4-aesni-avx-x86_64 0x52589eea sm4_avx_cbc_decrypt -EXPORT_SYMBOL_GPL arch/x86/crypto/sm4-aesni-avx-x86_64 0x52ce6b28 sm4_avx_ecb_encrypt -EXPORT_SYMBOL_GPL arch/x86/crypto/sm4-aesni-avx-x86_64 0x7da5d9a7 sm4_avx_ecb_decrypt -EXPORT_SYMBOL_GPL arch/x86/crypto/sm4-aesni-avx-x86_64 0x967552c9 sm4_cfb_encrypt -EXPORT_SYMBOL_GPL arch/x86/crypto/sm4-aesni-avx-x86_64 0xb90ee540 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 0x025fbd98 kvm_set_rflags -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x03b600b9 kvm_emulate_ap_reset_hold -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x04048387 kvm_cpu_has_interrupt -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0507043c kvm_complete_insn_gp -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x053614ec kvm_set_user_return_msr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x059f9415 kvm_mtrr_valid -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x06cdc8d1 kvm_configure_mmu -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x06cf0065 kvm_vcpu_is_reset_bsp -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x07e34ea4 __traceiter_kvm_entry -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0814dd11 __SCT__kvm_x86_tlb_flush_current -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x09278959 __tracepoint_kvm_pi_irte_update -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0a0909b4 kvm_inject_nmi -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0abb1576 kvm_lapic_hv_timer_in_use -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0b58a11d kvm_nr_uret_msrs -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0b68a5e0 kvm_service_local_tlb_flush_requests -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0b8a3365 __traceiter_kvm_invlpga -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0bd9ee4b kvm_set_dr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0c6f1060 kvm_put_kvm_no_destroy -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0c88de67 kvm_slot_page_track_add_page -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0ca8df68 __traceiter_kvm_vmgexit_msr_protocol_enter -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0cff45f4 __SCT__tp_func_kvm_vmgexit_msr_protocol_exit -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0d8f4740 kvm_mce_cap_supported -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0ea4ba8d kvm_set_cr4 -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0ec181ef __tracepoint_kvm_write_tsc_offset -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x114eb824 __traceiter_kvm_nested_vmexit_inject -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1199ac5c kvm_emulate_instruction_from_buffer -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x11c1de46 kvm_init_shadow_ept_mmu -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1235000a kvm_tsc_scaling_ratio_frac_bits -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x12b232f8 __SCK__tp_func_kvm_page_fault -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x130fd155 supported_xss -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x132c361f kvm_mmu_page_fault -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x13904e57 load_pdptrs -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x13986f25 kvm_apic_send_ipi -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x13ccefc2 kvm_emulate_hypercall -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x140f7e9c kvm_sev_es_mmio_write -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1412f042 __traceiter_kvm_ple_window_update -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x14553767 __SCK__tp_func_kvm_vmgexit_exit -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1514f126 kvm_vcpu_write_guest_page -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x159b8d5e host_efer -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x162e7de9 __SCK__tp_func_kvm_apicv_update_request -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x16c1bd55 kvm_cpuid -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x16ec3738 kvm_get_kvm_safe -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x17f9cfe3 __traceiter_kvm_cr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x18202b37 reprogram_fixed_counter -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1822687f kvm_hv_get_assist_page -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x19545594 x86_decode_emulated_instruction -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1c0c469a kvm_init -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 0x1d116066 kvm_set_cr8 -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 0x1e38a8fc kvm_clear_guest -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1e6e3c06 __SCK__tp_func_kvm_nested_intercepts -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1f62c8f2 kvm_vcpu_read_guest -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x20be6039 kvm_get_cr8 -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x23263c0a __traceiter_kvm_nested_vmenter_failed -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x239b8cfa __tracepoint_kvm_vmgexit_msr_protocol_enter -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x24402ee4 kvm_vcpu_gfn_to_page -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2510fc6d __SCT__tp_func_kvm_nested_vmexit -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x25c07225 __traceiter_kvm_vmgexit_msr_protocol_exit -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x26bc5827 kvm_arch_end_assignment -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x27046576 kvm_exit -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x271362a6 __tracepoint_kvm_pml_full -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x27f5d6a0 kvm_fixup_and_inject_pf_error -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x28411ed7 kvm_max_tsc_scaling_ratio -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x296ebae1 kvm_set_cr3 -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2976b749 __gfn_to_pfn_memslot -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2bba3d64 __SCK__kvm_x86_tlb_flush_current -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2bf05cf4 __tracepoint_kvm_ple_window_update -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2c31cf4b kvm_irq_has_notifier -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2c8ade85 __SCK__kvm_x86_cache_reg -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2d3928ab kvm_apic_match_dest -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2d82cc24 kvm_spec_ctrl_test_value -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2e2d6e39 mark_page_dirty_in_slot -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2fcab3b2 kvm_apic_write_nodecode -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x305b02e3 __SCK__tp_func_kvm_exit -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x31827d9c handle_ud -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x320d646e kvm_vcpu_block -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x32bd23e4 __SCK__tp_func_kvm_inj_virq -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x343c4656 __tracepoint_kvm_avic_incomplete_ipi -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x37b08bda kvm_emulate_wbinvd -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x388e0e10 __SCT__tp_func_kvm_pi_irte_update -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x39fd83db halt_poll_ns_shrink -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3a5d9da9 kvm_set_msr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3a8547a7 kvm_apicv_activated -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3ab2794c kvm_find_user_return_msr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3ac63783 kvm_update_dr7 -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3ad3e1f3 kvm_post_set_cr0 -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3ba6c794 gfn_to_pfn_memslot -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3bf20126 kvm_vcpu_reset -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3e123f7a __tracepoint_kvm_entry -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3eefc62a kvm_intr_is_single_vcpu -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3f13e11e kvm_release_page_clean -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3f510ff5 kvm_has_noapic_vcpu -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3fd9d63d kvm_apic_update_apicv -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x420d6b04 kvm_hv_assist_page_enabled -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4219bbf4 kvm_x86_ops -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x435b82e0 kvm_emulate_wrmsr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x438ff541 kvm_mmu_gva_to_gpa_read -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x444ee585 kvm_emulate_cpuid -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4563a2f7 kvm_emulate_mwait -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x456b1bc5 kvm_get_running_vcpu -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4589cd3b __tracepoint_kvm_nested_vmrun -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x45e80fdf __traceiter_kvm_pi_irte_update -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x47206601 kvm_handle_page_fault -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x485cd7f6 kvm_rebooting -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x48644036 __SCT__tp_func_kvm_vmgexit_exit -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4942be67 __SCT__tp_func_kvm_avic_incomplete_ipi -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4a1c261b __SCT__tp_func_kvm_invlpga -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4aadde76 kvm_get_rflags -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4b47c2c2 kvm_inject_page_fault -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4c7a78d4 __SCK__tp_func_kvm_pml_full -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4cf7fbd5 kvm_mtrr_get_guest_memory_type -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4d0ffd2b __tracepoint_kvm_skinit -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4e305652 kvm_io_bus_get_dev -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4e3fd1b4 kvm_release_pfn_clean -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4f707c5f kvm_vcpu_map -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5082afef hv_remote_flush_tlb -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x515d0c19 __tracepoint_kvm_nested_intercepts -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x53d9f927 __SCT__kvm_x86_get_cs_db_l_bits -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x54bd9112 kvm_vcpu_mark_page_dirty -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x54cd466b __traceiter_kvm_apicv_update_request -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x55af18b0 kvm_vcpu_wake_up -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x55f11ae0 kvm_arch_start_assignment -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5643a757 __tracepoint_kvm_exit -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x566fbb46 kvm_lapic_reg_read -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x574fe02a kvm_set_memory_region -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5781528b kvm_debugfs_dir -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x587f6cf4 kvm_get_linear_rip -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5927c7d4 kvm_get_msr_common -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x59387ba3 __SCT__kvm_x86_cache_reg -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x59d43996 __tracepoint_kvm_inj_virq -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x59e640c0 halt_poll_ns -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5bf7cde0 kvm_mmu_set_ept_masks -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5c0dd473 kvm_requeue_exception_e -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5c11e105 __traceiter_kvm_write_tsc_offset -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5c934245 kvm_emulate_rdmsr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5d5d3ae9 file_is_kvm -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5d5d8bd0 kvm_arch_no_poll -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5d996b31 kvm_set_cpu_caps -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5e29f21d kvm_mmu_gva_to_gpa_write -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5ec674cb __SCK__tp_func_kvm_nested_intr_vmexit -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5ed24fb7 kvm_vcpu_kick -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5fb8848b halt_poll_ns_grow_start -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x602009d2 kvm_can_use_hv_timer -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x60943f32 __kvm_request_apicv_update -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x616e6c95 __SCT__tp_func_kvm_exit -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x619050a4 kvm_skip_emulated_instruction -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x61c2ce0e __tracepoint_kvm_apicv_update_request -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6243ac82 __kvm_apic_update_irr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x62c04daa handle_fastpath_set_msr_irqoff -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 0x64c36ceb __SCK__tp_func_kvm_ple_window_update -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x653303e4 kvm_vcpu_read_guest_atomic -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x657355d3 kvm_lapic_set_eoi -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x65d6f8fa kvm_vcpu_deliver_sipi_vector -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x67094eff vcpu_put -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x673136f8 __SCK__tp_func_kvm_pi_irte_update -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6756347e __traceiter_kvm_page_fault -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x67bc40e3 kvm_queue_exception_e -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x67eaec15 __SCK__tp_func_kvm_cr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x67f32180 kvm_emulate_monitor -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6892e3c3 kvm_set_pfn_accessed -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6ada8f59 kvm_mmu_set_mmio_spte_mask -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6ae65745 kvm_put_kvm -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6af5a450 kvm_set_msr_common -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6b1aa7e8 __SCK__tp_func_kvm_skinit -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6becaded __SCT__tp_func_kvm_inj_virq -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6c95726c host_xss -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6cb4bd5c gfn_to_memslot -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6d37dd72 kvm_lapic_switch_to_hv_timer -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6d37edf3 kvm_apic_has_interrupt -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6df65577 kvm_io_bus_write -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6e02d86d kvm_vcpu_gfn_to_pfn -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6e1b43c1 gfn_to_hva -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6eb628c6 kvm_emulate_instruction -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x70288943 __SCT__tp_func_kvm_nested_vmrun -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x705705fe __kvm_is_valid_cr4 -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x709cd8cb kvm_spurious_fault -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x71d09d3c __traceiter_kvm_exit -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7263ae77 __traceiter_kvm_nested_vmrun -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x72ec6d2e kvm_vcpu_on_spin -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x73c9874c kvm_queue_exception_p -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x752c2b00 __traceiter_kvm_fast_mmio -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x755d78a9 kvm_read_guest_page -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x764893c8 __SCK__tp_func_kvm_fast_mmio -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x76c0088b __tracepoint_kvm_avic_ga_log -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7733ffb1 kvm_read_guest_cached -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x778e30b9 __SCT__tp_func_kvm_cr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x78448e86 __kvm_request_immediate_exit -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7909e2e2 kvm_require_dr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7abd4392 current_vcpu -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7afe324e halt_poll_ns_grow -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7c275e45 kvm_cpu_get_interrupt -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7c42c11e kvm_map_gfn -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7c94c99a kvm_release_pfn_dirty -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7cc8abfc kvm_set_apic_base -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7cfa5a97 kvm_vcpu_is_visible_gfn -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7dfbc977 kvm_emulate_halt -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7fc60def vcpu_load -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7fe19488 kvm_add_user_return_msr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7ff2a104 __SCT__tp_func_kvm_page_fault -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x814de05c __tracepoint_kvm_nested_vmenter_failed -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x81ac3fe1 kvm_emulate_as_nop -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8210545b kvm_requeue_exception -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x824a7e60 kvm_arch_has_noncoherent_dma -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x82852486 kvm_write_guest_cached -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8295b9bf __tracepoint_kvm_nested_vmexit_inject -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x83412836 kvm_lmsw -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8483920b reprogram_gp_counter -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x848e7cde kvm_slot_page_track_remove_page -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8720ea2a kvm_lapic_reg_write -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x876a28ca kvm_handle_invpcid -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x877e3ea1 kvm_vcpu_unmap -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x88654eb7 kvm_mmu_new_pgd -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x88feae41 kvm_arch_register_noncoherent_dma -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8968d4fb kvm_inject_realmode_interrupt -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8a7fe54a __SCT__tp_func_kvm_vmgexit_enter -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8acfbf22 kvm_flush_remote_tlbs -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 0x8debdb31 kvm_read_guest_virt -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8ea504be kvm_mmu_free_roots -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8fff15f3 kvm_read_guest_page_mmu -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x90e026f7 __SCK__kvm_x86_get_cs_db_l_bits -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x912a9286 __traceiter_kvm_nested_intr_vmexit -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x918b798e kvm_vcpu_read_guest_page -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 0x95900668 __tracepoint_kvm_avic_unaccelerated_access -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x97cc4eb7 gfn_to_pfn -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9897f8e6 kvm_post_set_cr4 -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x98a32b53 kvm_update_cpuid_runtime -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 0x99c4f312 kvm_scale_tsc -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9cf59e7a allow_smaller_maxphyaddr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9e20b2bc __traceiter_kvm_avic_incomplete_ipi -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9f25e2e1 kvm_lapic_expired_hv_timer -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9f68faa3 __traceiter_kvm_avic_unaccelerated_access -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9fad33ef __tracepoint_kvm_vmgexit_enter -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa017a2a7 kvm_mmu_reset_context -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa05a359b kvm_arch_unregister_noncoherent_dma -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa1c4231f kvm_set_pfn_dirty -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa2fa6073 kvm_get_msr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa310b236 __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 0xa5f697f9 __SCK__tp_func_kvm_avic_ga_log -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 0xa7a60f50 kvm_find_cpuid_entry -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 0xa88da3ea __tracepoint_kvm_invlpga -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa9a629f2 __kvm_set_memory_region -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xaa2fcc4f kvm_emulate_xsetbv -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xaa7562f9 kvm_load_guest_xsave_state -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xaa8d11e8 __tracepoint_kvm_vmgexit_exit -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xaac625ba __SCK__tp_func_kvm_invlpga -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xaaf2d3f1 kvm_wait_lapic_expire -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xaafaca7d gfn_to_page -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xad735f80 kvm_lapic_switch_to_sw_timer -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xaf042217 __SCK__tp_func_kvm_vmgexit_msr_protocol_exit -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb1d28198 kvm_read_guest -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb22700ed kvm_init_mmu -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb2aa5551 __SCK__tp_func_kvm_vmgexit_msr_protocol_enter -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb2b0c4bf kvm_release_page_dirty -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb2d4d27d kvm_is_linear_rip -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb3883fa0 kvm_get_kvm -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb4ecc63c kvm_emulate_invd -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb6c7fffd kvm_lapic_find_highest_irr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb6e70eeb kvm_set_cr0 -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb731105c kvm_unmap_gfn -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb7f647f0 kvm_is_visible_gfn -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb83c6f0a kvm_read_guest_offset_cached -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb96e9aa1 __traceiter_kvm_skinit -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xbaa28cb6 kvm_request_apicv_update -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xbbbd9dca kvm_write_guest_page -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xbc9c69cc kvm_mmu_free_guest_mode_roots -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xbcdc2232 kvm_get_apic_base -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xbdb11feb gfn_to_page_many_atomic -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xbf547b34 __SCK__tp_func_kvm_nested_vmenter_failed -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xbf5d97a1 kvm_get_apic_mode -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc0253a26 __SCK__tp_func_kvm_avic_unaccelerated_access -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc071e99f __SCT__tp_func_kvm_entry -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc106e6aa kvm_write_guest -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc207cbc8 kvm_fast_pio -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc60d7d0c __traceiter_kvm_pml_full -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc828eac2 __tracepoint_kvm_fast_mmio -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc843066a reprogram_counter -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc85278ee kvm_read_l1_tsc -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc8e47607 kvm_vcpu_gfn_to_pfn_atomic -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 0xc99340c2 kvm_msr_allowed -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xca8592ba kvm_cpu_has_injectable_intr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xcae32c87 kvm_write_guest_virt_system -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xcb30dfe1 kvm_make_all_cpus_request -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xcc1344e6 kvm_gfn_to_hva_cache_init -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xcd7c2945 kvm_emulate_rdpmc -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xcddba351 kvm_sev_es_string_io -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xce576a13 enable_apicv -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xcf64accf kvm_require_cpl -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd0459e67 kvm_has_tsc_control -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd09da48b __SCT__tp_func_kvm_nested_intr_vmexit -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd10ea9b8 kvm_mmu_invlpg -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd3814a0e __tracepoint_kvm_nested_intr_vmexit -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd4077314 kvm_apic_clear_irr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd6b6daff kvm_task_switch -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd931f671 kvm_queue_exception -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd9324a1e kvm_inject_emulated_page_fault -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd94e8c0d kvm_sev_es_mmio_read -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd98ae806 kvm_page_track_register_notifier -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd9b5669f kvm_init_shadow_npt_mmu -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xdae2395b kvm_vcpu_yield_to -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xdc7369fe __traceiter_kvm_msr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xdda82b35 kvm_deliver_exception_payload -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xde97db78 kvm_page_track_unregister_notifier -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xdea9f4a1 __SCK__tp_func_kvm_nested_vmexit -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xdf026a18 __traceiter_kvm_vmgexit_exit -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xdf70b343 kvm_set_msi_irq -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xdfbf3757 __SCK__tp_func_kvm_avic_incomplete_ipi -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe0e786a7 __SCT__tp_func_kvm_skinit -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe1453277 kvm_apic_set_eoi_accelerated -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe203cc4c __SCK__tp_func_kvm_write_tsc_offset -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe2147578 __SCK__tp_func_kvm_vmgexit_enter -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe536b997 kvm_apic_update_irr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe6331f2c kvm_apic_update_ppr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe66a12e8 kvm_write_guest_offset_cached -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 0xeb1da19f kvm_handle_invalid_op -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xec0bb257 __x86_set_memory_region -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xec1e3873 kvm_inject_pending_timer_irqs -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xecf0596b kvm_handle_memory_failure -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xed46e390 __SCK__tp_func_kvm_msr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xeece193d __traceiter_kvm_nested_vmexit -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xef14fd98 kvm_calc_nested_tsc_multiplier -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xef1b5aff kvm_vcpu_destroy -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf084b57d __SCT__tp_func_kvm_msr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf1d14242 gfn_to_pfn_prot -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf1ff86c3 kvm_get_cs_db_l_bits -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf278504a __SCK__tp_func_kvm_entry -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf283edb3 kvm_valid_efer -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf2b84fcc kvm_vcpu_gfn_to_hva -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf2d9bb9f __tracepoint_kvm_page_fault -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf2df48f3 __SCT__tp_func_kvm_pml_full -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf32dff97 __SCT__tp_func_kvm_avic_unaccelerated_access -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf35383ad kvm_vcpu_write_guest -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf3d89d4a __tracepoint_kvm_msr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf4065c3e kvm_vcpu_update_apicv -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf4668dfb __traceiter_kvm_vmgexit_enter -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf4ca7c67 kvm_load_host_xsave_state -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf54e2886 __SCT__tp_func_kvm_vmgexit_msr_protocol_enter -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf5790a58 __SCK__tp_func_kvm_nested_vmexit_inject -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf71472f2 kvm_arch_has_assigned_device -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf8665e87 __tracepoint_kvm_cr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xfab11e59 __tracepoint_kvm_vmgexit_msr_protocol_exit -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xfb51ebb4 __SCK__tp_func_kvm_nested_vmrun -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xfb965ed5 hv_remote_flush_tlb_with_range -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xfc333c20 kvm_vcpu_halt -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xfd06dcdb kvm_get_dr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xfdb5e8b0 mark_page_dirty -EXPORT_SYMBOL_GPL crypto/af_alg 0x12bf942a af_alg_wait_for_data -EXPORT_SYMBOL_GPL crypto/af_alg 0x153f295a af_alg_get_rsgl -EXPORT_SYMBOL_GPL crypto/af_alg 0x1bc68a6d af_alg_async_cb -EXPORT_SYMBOL_GPL crypto/af_alg 0x21adbc18 af_alg_accept -EXPORT_SYMBOL_GPL crypto/af_alg 0x2f4d5eac af_alg_make_sg -EXPORT_SYMBOL_GPL crypto/af_alg 0x3e824fbc af_alg_pull_tsgl -EXPORT_SYMBOL_GPL crypto/af_alg 0x569246e7 af_alg_alloc_areq -EXPORT_SYMBOL_GPL crypto/af_alg 0x5bc19c44 af_alg_free_resources -EXPORT_SYMBOL_GPL crypto/af_alg 0x632855ce af_alg_count_tsgl -EXPORT_SYMBOL_GPL crypto/af_alg 0x6d394be7 af_alg_free_sg -EXPORT_SYMBOL_GPL crypto/af_alg 0x89d4e33f af_alg_poll -EXPORT_SYMBOL_GPL crypto/af_alg 0xaaa208c6 af_alg_release -EXPORT_SYMBOL_GPL crypto/af_alg 0xac5fc044 af_alg_unregister_type -EXPORT_SYMBOL_GPL crypto/af_alg 0xbe984922 af_alg_sendmsg -EXPORT_SYMBOL_GPL crypto/af_alg 0xcf74b277 af_alg_register_type -EXPORT_SYMBOL_GPL crypto/af_alg 0xd0dd20c7 af_alg_wmem_wakeup -EXPORT_SYMBOL_GPL crypto/af_alg 0xe04b1470 af_alg_sendpage -EXPORT_SYMBOL_GPL crypto/af_alg 0xea65f08d af_alg_release_parent -EXPORT_SYMBOL_GPL crypto/asymmetric_keys/asym_tpm 0x5dd98f43 asym_tpm_subtype -EXPORT_SYMBOL_GPL crypto/asymmetric_keys/asym_tpm 0x7430f97c tpm_key_create -EXPORT_SYMBOL_GPL crypto/async_tx/async_memcpy 0xdf983d99 async_memcpy -EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0x4ad587cf async_gen_syndrome -EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0xbde8d59b async_syndrome_val -EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0x7239101e async_raid6_datap_recov -EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0xa16b36c1 async_raid6_2data_recov -EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x11308fa7 __async_tx_find_channel -EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x22f03938 async_trigger_callback -EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x8060089b async_tx_quiesce -EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0xb722d543 async_tx_submit -EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x58fbc1f8 async_xor_val_offs -EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x99a4b57f async_xor_offs -EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x9afc9d2a async_xor_val -EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0xe6974533 async_xor -EXPORT_SYMBOL_GPL crypto/authenc 0x2479193e crypto_authenc_extractkeys -EXPORT_SYMBOL_GPL crypto/blowfish_common 0xa7951736 blowfish_setkey -EXPORT_SYMBOL_GPL crypto/cast5_generic 0x188d9d26 __cast5_decrypt -EXPORT_SYMBOL_GPL crypto/cast5_generic 0xbbc0a2d3 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 0xcfce512f __cast6_encrypt -EXPORT_SYMBOL_GPL crypto/cast6_generic 0xd76a5716 __cast6_setkey -EXPORT_SYMBOL_GPL crypto/cast6_generic 0xdf92458e 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 0x16b60a84 cryptd_alloc_ahash -EXPORT_SYMBOL_GPL crypto/cryptd 0x1eb65836 cryptd_skcipher_queued -EXPORT_SYMBOL_GPL crypto/cryptd 0x3288d4d9 cryptd_alloc_skcipher -EXPORT_SYMBOL_GPL crypto/cryptd 0x358fa7e5 cryptd_alloc_aead -EXPORT_SYMBOL_GPL crypto/cryptd 0x380bac54 cryptd_skcipher_child -EXPORT_SYMBOL_GPL crypto/cryptd 0x41148fed cryptd_free_aead -EXPORT_SYMBOL_GPL crypto/cryptd 0x615c9ace cryptd_aead_child -EXPORT_SYMBOL_GPL crypto/cryptd 0x668db1c1 cryptd_shash_desc -EXPORT_SYMBOL_GPL crypto/cryptd 0x6d9d32a2 cryptd_ahash_queued -EXPORT_SYMBOL_GPL crypto/cryptd 0x6e78cddc cryptd_free_skcipher -EXPORT_SYMBOL_GPL crypto/cryptd 0x8568464e cryptd_free_ahash -EXPORT_SYMBOL_GPL crypto/cryptd 0xa123592e cryptd_ahash_child -EXPORT_SYMBOL_GPL crypto/cryptd 0xffec4da5 cryptd_aead_queued -EXPORT_SYMBOL_GPL crypto/crypto_engine 0x1b16445a crypto_transfer_akcipher_request_to_engine -EXPORT_SYMBOL_GPL crypto/crypto_engine 0x27239a61 crypto_finalize_akcipher_request -EXPORT_SYMBOL_GPL crypto/crypto_engine 0x51074724 crypto_transfer_skcipher_request_to_engine -EXPORT_SYMBOL_GPL crypto/crypto_engine 0x6e2a9332 crypto_engine_stop -EXPORT_SYMBOL_GPL crypto/crypto_engine 0x87e05d71 crypto_finalize_skcipher_request -EXPORT_SYMBOL_GPL crypto/crypto_engine 0x8c726819 crypto_engine_alloc_init_and_set -EXPORT_SYMBOL_GPL crypto/crypto_engine 0xb7d16095 crypto_transfer_hash_request_to_engine -EXPORT_SYMBOL_GPL crypto/crypto_engine 0xb8395657 crypto_finalize_aead_request -EXPORT_SYMBOL_GPL crypto/crypto_engine 0xc3644387 crypto_engine_alloc_init -EXPORT_SYMBOL_GPL crypto/crypto_engine 0xc63670fc crypto_engine_start -EXPORT_SYMBOL_GPL crypto/crypto_engine 0xe57b2184 crypto_finalize_hash_request -EXPORT_SYMBOL_GPL crypto/crypto_engine 0xf0964cdd crypto_engine_exit -EXPORT_SYMBOL_GPL crypto/crypto_engine 0xffbb1ea1 crypto_transfer_aead_request_to_engine -EXPORT_SYMBOL_GPL crypto/crypto_simd 0x056269cb simd_register_skciphers_compat -EXPORT_SYMBOL_GPL crypto/crypto_simd 0x346a0751 simd_register_aeads_compat -EXPORT_SYMBOL_GPL crypto/crypto_simd 0x44f6d03f simd_unregister_skciphers -EXPORT_SYMBOL_GPL crypto/crypto_simd 0x504cb053 simd_aead_create_compat -EXPORT_SYMBOL_GPL crypto/crypto_simd 0x5c74dac0 simd_unregister_aeads -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/ecdh_generic 0x33b866ce crypto_ecdh_decode_key -EXPORT_SYMBOL_GPL crypto/ecdh_generic 0x7475be8e crypto_ecdh_key_len -EXPORT_SYMBOL_GPL crypto/ecdh_generic 0xb230d2ec crypto_ecdh_encode_key -EXPORT_SYMBOL_GPL crypto/serpent_generic 0x4eb4c55e __serpent_encrypt -EXPORT_SYMBOL_GPL crypto/serpent_generic 0xbcc074f3 __serpent_decrypt -EXPORT_SYMBOL_GPL crypto/serpent_generic 0xd4c9681a __serpent_setkey -EXPORT_SYMBOL_GPL crypto/serpent_generic 0xe9916511 serpent_setkey -EXPORT_SYMBOL_GPL crypto/sm3_generic 0x0bddca87 sm3_zero_message_hash -EXPORT_SYMBOL_GPL crypto/twofish_common 0x7bf2ce6c twofish_setkey -EXPORT_SYMBOL_GPL crypto/twofish_common 0xe22b7787 __twofish_setkey -EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x0376113c speakup_event -EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x1e39eb14 synth_putws -EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x1ecb9086 spk_var_store -EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x239dc279 spk_ttyio_release -EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x32f3fcdd synth_current -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 0x58167e1b spk_do_catch_up_unicode -EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x5b92a104 spk_do_catch_up -EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x5ba08d49 spk_synth_is_alive_restart -EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x6da3131a spk_var_show -EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x6df45536 spk_ttyio_synth_immediate -EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x73790674 spk_synth_is_alive_nop -EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x76d40046 synth_buffer_skip_nonlatin1 -EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x83bc14ab synth_add -EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x84dad068 synth_buffer_getc -EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x853d4ca8 speakup_info -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 0xa51bcda6 spk_ttyio_synth_probe -EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xaadb0612 synth_buffer_peek -EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xaca3505d spk_ttyio_ops -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 0xd89b9698 synth_remove -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 0xf05801ca spk_synth_get_index -EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xf0ca93d0 spk_synth_flush -EXPORT_SYMBOL_GPL drivers/acpi/nfit/nfit 0x02a0d6c9 __acpi_nvdimm_notify -EXPORT_SYMBOL_GPL drivers/acpi/nfit/nfit 0x3422b6e3 acpi_nfit_init -EXPORT_SYMBOL_GPL drivers/acpi/nfit/nfit 0x4639bcda acpi_nfit_shutdown -EXPORT_SYMBOL_GPL drivers/acpi/nfit/nfit 0x499bbf57 nfit_get_smbios_id -EXPORT_SYMBOL_GPL drivers/acpi/nfit/nfit 0x59f92441 __acpi_nfit_notify -EXPORT_SYMBOL_GPL drivers/acpi/nfit/nfit 0x646bbd31 acpi_nfit_ctl -EXPORT_SYMBOL_GPL drivers/acpi/nfit/nfit 0x774afd9c 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 0x11c9316c ahci_start_fis_rx -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x128504b7 ahci_init_controller -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x38c938fd ahci_error_handler -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x46377767 ahci_fill_cmd_slot -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x4a011634 ahci_reset_em -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x4b05bfae ahci_port_resume -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x5728cc67 ahci_do_hardreset -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x5dbd4694 ahci_save_initial_config -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x6dac2b35 ahci_start_engine -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x7890cbec ahci_dev_classify -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x7aec60cb ahci_set_em_messages -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x8a1a89db ahci_sdev_attrs -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x9071ecab ahci_kick_engine -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x9baabda1 ahci_check_ready -EXPORT_SYMBOL_GPL drivers/ata/libahci 0xa964ae97 ahci_handle_port_intr -EXPORT_SYMBOL_GPL drivers/ata/libahci 0xbeb4392d ahci_shost_attrs -EXPORT_SYMBOL_GPL drivers/ata/libahci 0xc491e4e8 ahci_print_info -EXPORT_SYMBOL_GPL drivers/ata/libahci 0xc4a54715 ahci_pmp_retry_srst_ops -EXPORT_SYMBOL_GPL drivers/ata/libahci 0xd1989b6d ahci_ops -EXPORT_SYMBOL_GPL drivers/ata/libahci 0xdb6bca35 ahci_stop_engine -EXPORT_SYMBOL_GPL drivers/ata/libahci 0xdc709edd ahci_host_activate -EXPORT_SYMBOL_GPL drivers/ata/libahci 0xe163f8b1 ahci_reset_controller -EXPORT_SYMBOL_GPL drivers/ata/libahci 0xea50dad3 ahci_ignore_sss -EXPORT_SYMBOL_GPL drivers/ata/libahci 0xf587d56e ahci_do_softreset -EXPORT_SYMBOL_GPL drivers/ata/libahci 0xfd089141 ahci_qc_issue -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x095d1426 ahci_platform_disable_phys -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x2a573e84 ahci_platform_suspend_host -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x3847735d ahci_platform_shutdown -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x4f4fe1f1 ahci_platform_enable_clks -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x693a18c2 ahci_platform_resume -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x6f637e34 ahci_platform_enable_resources -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x7f69d44f ahci_platform_init_host -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x860aaff3 ahci_platform_ops -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x8e97e089 ahci_platform_disable_regulators -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x93bac38a ahci_platform_get_resources -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x946e1ae7 ahci_platform_enable_phys -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x99c84cd8 ahci_platform_suspend -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xb90b67f2 ahci_platform_disable_resources -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xd27cef30 ahci_platform_disable_clks -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xe6946f51 ahci_platform_resume_host -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xfc46ef15 ahci_platform_enable_regulators -EXPORT_SYMBOL_GPL drivers/ata/pata_platform 0xda5446ca __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 0x3a947eaf __devm_regmap_init_i3c -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sccb 0x1d554a3f __devm_regmap_init_sccb -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sccb 0x86cf56f5 __regmap_init_sccb -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sdw 0x3699f1de __devm_regmap_init_sdw -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sdw 0xc6a78cea __regmap_init_sdw -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sdw-mbq 0x06e63d63 __devm_regmap_init_sdw_mbq -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sdw-mbq 0xd9fe40f7 __regmap_init_sdw_mbq -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-slimbus 0x6f1a0bae __regmap_init_slimbus -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-slimbus 0xa910868a __devm_regmap_init_slimbus -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spi-avmm 0x9d254733 __devm_regmap_init_spi_avmm -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spi-avmm 0xfd167f9a __regmap_init_spi_avmm -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x4203514d __devm_regmap_init_spmi_base -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x85810a60 __regmap_init_spmi_ext -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x9c8b72fc __regmap_init_spmi_base -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0xb63c7e8d __devm_regmap_init_spmi_ext -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-w1 0x696248a8 __regmap_init_w1 -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-w1 0x83ff06cb __devm_regmap_init_w1 -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x043860e4 bcma_chipco_b_mii_write -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x0587b611 bcma_chipco_pll_read -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x08ff2830 bcma_chipco_chipctl_maskset -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x226761dc bcma_host_pci_up -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x291869b0 bcma_core_enable -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x2f2e1955 bcma_core_disable -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x384c5bfb bcma_driver_unregister -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x3d337802 bcma_chipco_gpio_control -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x42e003dd bcma_host_pci_irq_ctl -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x54c30459 bcma_chipco_gpio_out -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x63ed2e7a bcma_find_core_unit -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x671835ba bcma_chipco_get_alp_clock -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x6f05c902 bcma_pmu_get_bus_clock -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x757818f7 bcma_chipco_pll_maskset -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x7b1e321d bcma_core_is_enabled -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x7dfb5a56 bcma_core_pci_power_save -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x8471422e __bcma_driver_register -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x9f49bdba bcma_chipco_gpio_outen -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xb6f71b51 bcma_host_pci_down -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xc3331fc8 bcma_chipco_regctl_maskset -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xd4360f9a bcma_pmu_spuravoid_pllupdate -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xe18bdd82 bcma_core_pll_ctl -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xebd36d0c bcma_core_set_clockmode -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xecca6954 bcma_chipco_pll_write -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x0211d5be btbcm_write_pcm_int_params -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x17317536 btbcm_setup_apple -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x274263d9 btbcm_finalize -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x8dbf29cf btbcm_check_bdaddr -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xbbd25bcd btbcm_setup_patchram -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xd929fca3 btbcm_read_pcm_int_params -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xf9bda0dc btbcm_set_bdaddr -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xfe1fac09 btbcm_initialize -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x0a03729e btintel_send_intel_reset -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x1d0365dd btintel_check_bdaddr -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x2505b538 btintel_exit_mfg -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x27fc7a11 btintel_bootup -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x34d68595 btintel_secure_send_result -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x49eb5576 btintel_version_info -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x4cfd4f25 btintel_read_boot_params -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x4eefdd6a btintel_read_version -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x574e5482 btintel_set_diag -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x5ef3ada0 btintel_regmap_init -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x8e0f01e4 btintel_configure_setup -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xb2a89959 btintel_set_bdaddr -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xb69e2a9c btintel_enter_mfg -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xbeba333f btintel_download_firmware -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xce4f4669 btintel_set_event_mask_mfg -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xd88d7bf8 btintel_load_ddc_config -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x046306d0 btmrvl_pscan_window_reporting -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x06bbea47 btmrvl_enable_hs -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x3be7f59d btmrvl_add_card -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x719b0ece btmrvl_check_evtpkt -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x78d94c03 btmrvl_interrupt -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x7ca06673 btmrvl_send_module_cfg_cmd -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x84b78b49 btmrvl_send_hscfg_cmd -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x85295a8f btmrvl_enable_ps -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xa9adaa8d btmrvl_remove_card -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xebb45e9d btmrvl_register_hdev -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xfd54b8ac btmrvl_process_event -EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x264cd0ff qca_set_bdaddr_rome -EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x3c9a95d7 qca_uart_setup -EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x7e63d41f qca_read_soc_version -EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0xbbe3a1a8 qca_set_bdaddr -EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0xe2e56901 qca_send_pre_shutdown_cmd -EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x0df29d35 btrtl_initialize -EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x439af1f4 btrtl_download_firmware -EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x4efbba33 btrtl_get_uart_settings -EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x5c130fef btrtl_set_quirks -EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0xa11421a9 btrtl_setup_realtek -EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0xa850b0d4 btrtl_shutdown_realtek -EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0xaf78f260 btrtl_free -EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0x058c2820 h4_recv_buf -EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0x1af6f7a3 hci_uart_unregister_device -EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0xdc2b6e93 hci_uart_tx_wakeup -EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0xe0404357 hci_uart_register_device -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x011262a8 mhi_prepare_for_transfer -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x0166e10b mhi_unprepare_after_power_down -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x0975799b mhi_poll -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x0a625ef8 mhi_notify -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x0c972493 mhi_pm_suspend -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x0ee896d9 mhi_soc_reset -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x109b54d7 mhi_queue_skb -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x150618a7 mhi_pm_resume -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x21ebb7b6 mhi_driver_unregister -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x32fb892e mhi_unprepare_from_transfer -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x427a9bdf mhi_prepare_for_power_up -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x43b2f2c6 __mhi_driver_register -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x474f41a4 mhi_device_put -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x48d8c696 mhi_device_get -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x61ee104a mhi_free_controller -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x6e9ba5c7 mhi_queue_dma -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x745625b4 mhi_power_down -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x7e1b85cd mhi_queue_is_full -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x7fe32249 mhi_get_free_desc_count -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x92112232 mhi_get_exec_env -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xb22ae5ac mhi_unregister_controller -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xb336ddc6 mhi_download_rddm_image -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xbb2874a4 mhi_force_rddm_mode -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xc0e07237 mhi_device_get_sync -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xc113c72d mhi_get_mhi_state -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xc4745802 mhi_async_power_up -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xd26640d4 mhi_alloc_controller -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xdd45c512 mhi_queue_buf -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xec9bcb16 mhi_register_controller -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xf86a6136 mhi_pm_resume_force -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x022a4361 comedi_auto_unconfig -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x0cd330f4 range_unknown -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x15b271f6 comedi_nscans_left -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x1b230650 comedi_alloc_devpriv -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x1bd2653a comedi_event -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x21102f87 range_0_32mA -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x289a4288 comedi_dev_get_from_minor -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x2a9ffae5 comedi_inc_scan_progress -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x2ec2b7c2 comedi_auto_config -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x2f0ad9d3 range_bipolar5 -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x357f55e8 comedi_driver_register -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x379b8a27 comedi_buf_read_samples -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x4236eaaf range_4_20mA -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x49ce1809 comedi_check_chanlist -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x4fe634f3 range_bipolar2_5 -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x6993a7dd comedi_timeout -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x74b0cc9a comedi_buf_write_free -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x74e8a140 comedi_driver_unregister -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x78c914b5 comedi_buf_write_alloc -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x7c97c270 comedi_buf_read_alloc -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x7d1d5f0f comedi_is_subdevice_running -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x8113872c range_unipolar10 -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x8f5d3d17 comedi_nsamples_left -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x91c3413f comedi_legacy_detach -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x9fa743cb __comedi_request_region -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xa0fd0cc2 comedi_load_firmware -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xa472e855 comedi_bytes_per_scan -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xa9069b29 comedi_alloc_subdevices -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xab603bc3 comedi_handle_events -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xac75fa24 comedi_set_spriv_auto_free -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xb153ed03 comedi_request_region -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 0xbbea1473 comedi_buf_read_n_available -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xbdbe75c6 range_unipolar2_5 -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xbf18c0c2 comedi_buf_write_samples -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xc3f22db0 comedi_readback_insn_read -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xd27e63f1 comedi_dev_put -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xd4c2bd4c comedi_alloc_spriv -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xdb2044b2 range_unipolar5 -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xde4626d2 comedi_dio_update_state -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xe0145d26 comedi_dio_insn_config -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xe7f5e024 comedi_set_hw_dev -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xeb8b95ee comedi_bytes_per_scan_cmd -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xf1401c1c comedi_buf_read_free -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xf41a9a5a comedi_alloc_subdev_readback -EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x4f7469b6 comedi_pci_driver_unregister -EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x65f81f8a comedi_pci_auto_config -EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x94927c31 comedi_pci_enable -EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x9d565c49 comedi_pci_driver_register -EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0xa86b6bd3 comedi_to_pci_dev -EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0xea2363e2 comedi_pci_auto_unconfig -EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0xf5c20f79 comedi_pci_disable -EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0xf94a6a17 comedi_pci_detach -EXPORT_SYMBOL_GPL drivers/comedi/comedi_pcmcia 0x49a01f6e comedi_pcmcia_driver_unregister -EXPORT_SYMBOL_GPL drivers/comedi/comedi_pcmcia 0x4d83d29d comedi_pcmcia_driver_register -EXPORT_SYMBOL_GPL drivers/comedi/comedi_pcmcia 0x4dad1783 comedi_pcmcia_enable -EXPORT_SYMBOL_GPL drivers/comedi/comedi_pcmcia 0x677f5564 comedi_pcmcia_auto_config -EXPORT_SYMBOL_GPL drivers/comedi/comedi_pcmcia 0x6e263f93 comedi_pcmcia_disable -EXPORT_SYMBOL_GPL drivers/comedi/comedi_pcmcia 0x709805b5 comedi_pcmcia_auto_unconfig -EXPORT_SYMBOL_GPL drivers/comedi/comedi_pcmcia 0xfe5e5ead comedi_to_pcmcia_dev -EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0x41092449 comedi_usb_auto_unconfig -EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0x4f303e1b comedi_to_usb_dev -EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0x5e5989d2 comedi_usb_driver_register -EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0xa3e678c0 comedi_to_usb_interface -EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0xcf31754e comedi_usb_auto_config -EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0xe7eb79c6 comedi_usb_driver_unregister -EXPORT_SYMBOL_GPL drivers/comedi/drivers/addi_watchdog 0x79f4a6cf addi_watchdog_reset -EXPORT_SYMBOL_GPL drivers/comedi/drivers/addi_watchdog 0x7bf620ac addi_watchdog_init -EXPORT_SYMBOL_GPL drivers/comedi/drivers/amplc_dio200_common 0x075fd4d7 amplc_dio200_common_attach -EXPORT_SYMBOL_GPL drivers/comedi/drivers/amplc_dio200_common 0x090fa6c3 amplc_dio200_set_enhance -EXPORT_SYMBOL_GPL drivers/comedi/drivers/amplc_pc236_common 0xa2828400 amplc_pc236_common_attach -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x25a3d5ce comedi_8254_write -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x3de692c5 comedi_8254_cascade_ns_to_timer -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x5a37e2f8 comedi_8254_set_mode -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x5d13d4b4 comedi_8254_pacer_enable -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x68da5494 comedi_8254_subdevice_init -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x6da091f5 comedi_8254_ns_to_timer -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x8f67151f comedi_8254_update_divisors -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x9b5625e4 comedi_8254_mm_init -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0xa6204d94 comedi_8254_set_busy -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0xb5cb54b8 comedi_8254_load -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0xb8f11abf comedi_8254_status -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0xcbb870d9 comedi_8254_read -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0xd297d19c comedi_8254_init -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8255 0x1cbe650d subdev_8255_regbase -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8255 0x4bc63cbe subdev_8255_mm_init -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8255 0xee7c4863 subdev_8255_init -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_isadma 0x085fab77 comedi_isadma_alloc -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_isadma 0x12fba874 comedi_isadma_disable -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_isadma 0x3c093dba comedi_isadma_free -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_isadma 0x4a17474e comedi_isadma_disable_on_sample -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_isadma 0x6bb264fa comedi_isadma_poll -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 0x5b4ee0e1 das08_common_attach -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x39dd79a4 mite_ack_linkc -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x3e91bf04 mite_prep_dma -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x519a091f mite_alloc_ring -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x5634af9e mite_done -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x594e3187 mite_buf_change -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x64c16ea5 mite_init_ring_descriptors -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x6cc969c4 mite_request_channel -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x86be837d mite_free_ring -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x88b017af mite_dma_disarm -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x9400fcd4 mite_release_channel -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x976373a4 mite_detach -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xa73a49e1 mite_bytes_in_transit -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xb3b84956 mite_request_channel_in_range -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xc4a9ca22 mite_attach -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xcbd98912 mite_dma_arm -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xea0a65b6 mite_sync_dma -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_labpc_common 0x321df42f labpc_common_detach -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_labpc_common 0x4a3c8f30 labpc_common_attach -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_labpc_isadma 0x49719104 labpc_setup_dma -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_labpc_isadma 0x49f7dcea labpc_free_dma_chan -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_labpc_isadma 0x61417a29 labpc_init_dma_chan -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_labpc_isadma 0x7ed84e4f labpc_drain_dma -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_labpc_isadma 0xdda24dc3 labpc_handle_dma_status -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_routing 0x076bc308 ni_find_route_source -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_routing 0x0921123e ni_lookup_route_register -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_routing 0x1facf7f8 ni_is_cmd_dest -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 0x3da2678d ni_gpct_device_construct -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x3f3fbeaa ni_tio_set_gate_src_raw -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x4d6bb2ea ni_tio_set_routing -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x521e54e2 ni_tio_set_bits -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x55e75b2c ni_tio_insn_read -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x71dc3f45 ni_gpct_device_destroy -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x881aaf05 ni_tio_init_counter -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x8e43664c ni_tio_insn_config -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x8ecfa6ab ni_tio_get_soft_copy -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x960ace6f ni_tio_write -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xb310dacb ni_tio_get_routing -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xbf467559 ni_tio_set_gate_src -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xc2c63837 ni_tio_arm -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xc872547b ni_tio_read -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xcc9dd7ae ni_tio_unset_routing -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xd349c3df ni_tio_insn_write -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0x27f8a5cf ni_tio_set_mite_channel -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0x4e4de67a ni_tio_acknowledge -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0x6c4f3ff7 ni_tio_cmdtest -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0x80b66a4a ni_tio_cancel -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0xb6526382 ni_tio_cmd -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0xe003b6bb ni_tio_handle_interrupt -EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0x026f9ef7 comedi_get_n_channels -EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0x247a21e1 comedi_find_subdevice_by_type -EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0x2fa38626 comedi_dio_get_config -EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0x4387169f comedi_open -EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0x6590d8a4 comedi_dio_bitfield2 -EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0x8404b436 comedi_dio_config -EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0xcaa5266e comedi_close -EXPORT_SYMBOL_GPL drivers/counter/counter 0x046d8fda devm_counter_register -EXPORT_SYMBOL_GPL drivers/counter/counter 0x5e5857e8 counter_register -EXPORT_SYMBOL_GPL drivers/counter/counter 0xb5919138 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 0x0ea343c6 ccp_enqueue_cmd -EXPORT_SYMBOL_GPL drivers/crypto/ccp/ccp 0x2e6a6147 psp_copy_user_blob -EXPORT_SYMBOL_GPL drivers/crypto/ccp/ccp 0x3a1a3979 ccp_version -EXPORT_SYMBOL_GPL drivers/crypto/ccp/ccp 0x3e059f28 sev_guest_activate -EXPORT_SYMBOL_GPL drivers/crypto/ccp/ccp 0x4073e924 sev_guest_deactivate -EXPORT_SYMBOL_GPL drivers/crypto/ccp/ccp 0x843d6541 sev_guest_decommission -EXPORT_SYMBOL_GPL drivers/crypto/ccp/ccp 0x8f28b9c1 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 0xd02e197f sev_platform_init -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x025f461c adf_gen4_set_ssm_wdtimer -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x08a2b002 adf_vf_isr_resource_alloc -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x09125994 adf_exit_admin_comms -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x0b316a3f adf_send_admin_init -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x18f99cb8 adf_devmgr_in_reset -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x235bf730 adf_dev_started -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x2409e5ad adf_cleanup_etr_data -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x2431e4eb adf_dev_shutdown -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x2be4e269 adf_gen2_get_arb_info -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x2ee2d5b8 adf_exit_arb -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 0x4897311d adf_cfg_add_key_value_param -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x55f7f998 adf_disable_pf2vf_interrupts -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x5c92a27d adf_vf_isr_resource_free -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x5cec5e98 adf_devmgr_add_dev -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x5ded3863 adf_gen2_set_ssm_wdtimer -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x5fe0c629 adf_disable_aer -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x637d50ae adf_enable_aer -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x65cced7f adf_isr_resource_free -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x6a0936bf adf_dev_in_use -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x6d5d560c adf_cfg_section_add -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x6ec77f59 adf_dev_init -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x74a2a009 adf_init_admin_comms -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x775311d0 adf_devmgr_update_class_index -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x78a3772e adf_vf2pf_notify_shutdown -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x7eb5860c adf_devmgr_pci_to_accel_dev -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x876d5cc0 adf_cfg_dev_remove -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x8ea85702 adf_vf2pf_notify_init -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x9a99e1ac adf_devmgr_rm_dev -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xb8af3637 adf_flush_vf_wq -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xbf91dc19 adf_cfg_dev_add -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xc501ac82 adf_gen4_init_hw_csr_ops -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xc7dec8dd adf_dev_get -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xc806cd4f qat_crypto_dev_config -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xc830c1be adf_dev_start -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xc98df57f adf_init_arb -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xca01c865 adf_enable_vf2pf_comms -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xcb26de56 adf_disable_sriov -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 0xd1261b23 adf_dev_put -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 0xdfbfcbb1 adf_sriov_configure -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xe1b75425 adf_dev_stop -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xe3b7b570 adf_gen2_cfg_iov_thds -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xe431f7ea adf_isr_resource_alloc -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xe7993aff adf_init_etr_data -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xf5012aed adf_reset_sbr -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xfad647cd adf_reset_flr -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xffbb9beb adf_gen2_get_accel_cap -EXPORT_SYMBOL_GPL drivers/dca/dca 0x01a33ab9 dca_unregister_notify -EXPORT_SYMBOL_GPL drivers/dca/dca 0x07742cef register_dca_provider -EXPORT_SYMBOL_GPL drivers/dca/dca 0x1a807104 unregister_dca_provider -EXPORT_SYMBOL_GPL drivers/dca/dca 0x377d2364 dca_remove_requester -EXPORT_SYMBOL_GPL drivers/dca/dca 0x63407fcf alloc_dca_provider -EXPORT_SYMBOL_GPL drivers/dca/dca 0x98f539b0 free_dca_provider -EXPORT_SYMBOL_GPL drivers/dca/dca 0x9c67d9c5 dca_add_requester -EXPORT_SYMBOL_GPL drivers/dca/dca 0xaa634427 dca_get_tag -EXPORT_SYMBOL_GPL drivers/dca/dca 0xac34ecec dca_register_notify -EXPORT_SYMBOL_GPL drivers/dca/dca 0xf42f4fbd dca3_get_tag -EXPORT_SYMBOL_GPL drivers/dma/dw-edma/dw-edma 0x8ca3ef2c dw_edma_probe -EXPORT_SYMBOL_GPL drivers/dma/dw-edma/dw-edma 0xa574764b dw_edma_remove -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x0671ab6b dw_dma_remove -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x10d08375 dw_dma_acpi_controller_register -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x384bdf8e do_dw_dma_enable -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x47cdba0e dw_dma_probe -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x497b8333 do_dw_dma_disable -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x7712d7d2 dw_dma_filter -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x8d23918b idma32_dma_remove -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xdc215498 dw_dma_acpi_controller_free -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xf4a4630e idma32_dma_probe -EXPORT_SYMBOL_GPL drivers/dma/qcom/hdma_mgmt 0xa531bd69 hidma_mgmt_init_sys -EXPORT_SYMBOL_GPL drivers/dma/qcom/hdma_mgmt 0xe037d7a1 hidma_mgmt_setup -EXPORT_SYMBOL_GPL drivers/edac/edac_mce_amd 0x0be1a4d8 amd_unregister_ecc_decoder -EXPORT_SYMBOL_GPL drivers/edac/edac_mce_amd 0x1d34e996 pp_msgs -EXPORT_SYMBOL_GPL drivers/edac/edac_mce_amd 0x8592d892 amd_register_ecc_decoder -EXPORT_SYMBOL_GPL drivers/firewire/firewire-core 0xe86fb5c7 fw_card_release -EXPORT_SYMBOL_GPL drivers/fpga/altera-pr-ip-core 0x0309756c alt_pr_register -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x0e4e341b dfl_fpga_port_ops_add -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x12316d87 dfl_feature_ioctl_set_irq -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x2626edd1 dfl_fpga_dev_feature_init -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x28739c95 dfl_fpga_dev_ops_unregister -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x2ca49a2e __dfl_fpga_cdev_find_port -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x38c51f96 dfl_fpga_cdev_config_ports_vf -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x3f686d80 dfl_fpga_port_ops_get -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x3fe332da dfl_fpga_dev_ops_register -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x498f1a07 dfl_fpga_check_port_id -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x57b325d9 dfl_fpga_port_ops_del -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x69631111 dfl_fpga_cdev_config_ports_pf -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x6e78a541 dfl_fpga_dev_feature_uinit -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x92702cd4 dfl_fpga_enum_info_add_irq -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x9bcbd8f0 dfl_fpga_feature_devs_remove -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xa15d76c6 dfl_fpga_cdev_assign_port -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xa1c3b25e dfl_fpga_feature_devs_enumerate -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xa9b4a4fe dfl_fpga_port_ops_put -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xc23df41e dfl_feature_ioctl_get_num_irqs -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xc570df90 dfl_fpga_enum_info_add_dfl -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xd82adeac dfl_fpga_cdev_release_port -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xdf0b2b20 dfl_fpga_set_irq_triggers -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xe208b3d5 dfl_fpga_enum_info_alloc -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xf8385e35 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 0x3ac406cb devm_fpga_bridge_create -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x3c7501dc of_fpga_bridge_get_to_list -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x54322d31 fpga_bridge_free -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x758ca89e fpga_bridge_get_to_list -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x7c015d25 fpga_bridge_create -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x7c4b5821 of_fpga_bridge_get -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x84b3a917 fpga_bridge_get -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0xb5a2b157 fpga_bridge_enable -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0xc2a26811 fpga_bridge_disable -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0xc67374d1 fpga_bridge_put -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0xd18bfdb9 fpga_bridge_register -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0xdee1cf36 fpga_bridge_unregister -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x073b5897 fpga_mgr_get -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x3c6e6598 fpga_mgr_free -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x59490e39 fpga_mgr_put -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x59552e97 devm_fpga_mgr_register -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x72bd728a devm_fpga_mgr_create -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x7ab66713 fpga_mgr_unregister -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x8211ef21 fpga_image_info_free -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x840a0a62 fpga_mgr_load -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x876fd703 fpga_mgr_lock -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x8cb89208 fpga_mgr_create -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x991031e6 fpga_mgr_register -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x9fb62327 fpga_image_info_alloc -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xc5cd35b1 of_fpga_mgr_get -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xf778191a fpga_mgr_unlock -EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0x134d9b2e devm_fpga_region_create -EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0x1d1ba6e5 fpga_region_class_find -EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0x61610cec fpga_region_register -EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0x79d69cd3 fpga_region_unregister -EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0xad9fe7bb fpga_region_free -EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0xb8b3fd98 fpga_region_program_fpga -EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0xc5a68f11 fpga_region_create -EXPORT_SYMBOL_GPL drivers/gnss/gnss 0x0838a60e gnss_register_device -EXPORT_SYMBOL_GPL drivers/gnss/gnss 0x6432f471 gnss_allocate_device -EXPORT_SYMBOL_GPL drivers/gnss/gnss 0x71f5039b gnss_put_device -EXPORT_SYMBOL_GPL drivers/gnss/gnss 0x877fd5f2 gnss_insert_raw -EXPORT_SYMBOL_GPL drivers/gnss/gnss 0xee5aef8e gnss_deregister_device -EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0x3c973b02 gnss_serial_deregister -EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0x847a0719 gnss_serial_register -EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0xba8ead9a gnss_serial_allocate -EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0xc7586b15 gnss_serial_free -EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0xec4e0f7f gnss_serial_pm_ops -EXPORT_SYMBOL_GPL drivers/gpio/gpio-generic 0xd2270781 bgpio_init -EXPORT_SYMBOL_GPL drivers/gpio/gpio-max730x 0x93c176d1 __max730x_probe -EXPORT_SYMBOL_GPL drivers/gpio/gpio-max730x 0x9e41feb7 __max730x_remove -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x02200638 analogix_dp_probe -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x0dff2ba6 analogix_dp_start_crc -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x345aea23 analogix_dp_unbind -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x3ee0dd60 anx_dp_aux_transfer -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x804c0305 analogix_dp_remove -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x8f4730b6 analogix_dp_suspend -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0xa93c8781 analogix_dp_resume -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0xbaa142c5 analogix_dp_stop_crc -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0xbbd37f14 analogix_dp_bind -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x0b5c1440 drm_gem_shmem_dumb_create -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x0dc285d3 drm_gem_shmem_get_sg_table -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x113735ec drm_gem_shmem_mmap -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x17a145a7 drm_bridge_hpd_enable -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x1b5b0c4f drm_gem_cma_vm_ops -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x2ad3a82b drm_gem_shmem_get_pages_sgt -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x324bbf9c drm_gem_cma_dumb_create -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x3a1e35ec drm_hdcp_check_ksvs_revoked -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x3e56b235 drm_class_device_register -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x4a1d77c3 drm_bridge_get_edid -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x56951dc9 drm_bridge_get_modes -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x57c57a51 drm_gem_cma_get_sg_table -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x594a4768 drm_get_unmapped_area -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x64869d0c drm_gem_cma_create -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x66cf2f64 drm_display_mode_from_videomode -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x70d49f15 drm_gem_shmem_create -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x75643f1b drm_gem_cma_free_object -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x8180aa59 drm_class_device_unregister -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x8b0a109f drm_gem_cma_vmap -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x8e21663e drm_gem_shmem_free -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x8f969669 drm_gem_cma_dumb_create_internal -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x93b083ff drm_gem_cma_mmap -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x9547b851 drmm_kstrdup -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x999b65a7 drm_bridge_hpd_disable -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xa887650e 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 0xbbe2c560 drm_crtc_add_crc_entry -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xbd7f3cfb drm_gem_cma_prime_import_sg_table -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xd1aa89f8 drm_gem_shmem_prime_import_sg_table -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xdbb708f3 drm_do_get_edid -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xee3dec9c drm_bridge_hpd_notify -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xf2d0834b drm_bridge_detect -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xfe9f72f3 drm_display_mode_to_videomode -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x1b4e27b4 drm_gem_fb_afbc_init -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x38a61003 drm_gem_fb_create_with_dirty -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x3e676452 drm_fb_cma_sync_non_coherent -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x4b3062c9 drm_gem_fb_get_obj -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x54521451 drm_gem_fb_create -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x70fa8331 drm_fb_cma_get_gem_addr -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x98c342d0 drm_bridge_connector_disable_hpd -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x9c939963 drm_gem_fb_create_with_funcs -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xb921c7e4 drm_bridge_connector_enable_hpd -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xbd34912d drm_bridge_connector_init -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xc19c6bf2 drm_fb_cma_get_gem_obj -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xcf6bcc2d drm_gem_fb_init_with_funcs -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xda3059d8 drm_gem_plane_helper_prepare_fb -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 0x6b36ff4d intel_gvt_register_hypervisor -EXPORT_SYMBOL_GPL drivers/gpu/drm/i915/i915 0x6fbc5503 intel_gvt_unregister_hypervisor -EXPORT_SYMBOL_GPL drivers/gpu/drm/i915/i915 0xe7237b0b i915_gpu_turbo_disable -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x037d04d8 gb_hd_add -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x092e8644 __tracepoint_gb_hd_create -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x0a541e9a gb_connection_enable_tx -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x0e64ded3 __tracepoint_gb_hd_add -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x102762fe __SCK__tp_func_gb_message_submit -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x10d1b03e __SCT__tp_func_gb_hd_in -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x15d1942f greybus_disabled -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x163795f1 __traceiter_gb_hd_in -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x1c5a762d gb_hd_cport_release_reserved -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x1dc946d4 __traceiter_gb_message_submit -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x24891d8f __traceiter_gb_hd_release -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x2a221a36 __SCK__tp_func_gb_hd_del -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x2a5ee8c1 gb_operation_unidirectional_timeout -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x2be12361 greybus_deregister_driver -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x2f902859 gb_operation_request_send -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x30117f40 gb_hd_shutdown -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x3571adb5 __tracepoint_gb_hd_in -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x3bc8e78d gb_operation_create_flags -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x3f3ad507 __SCK__tp_func_gb_hd_create -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x427ee324 gb_connection_latency_tag_disable -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x44550ddb gb_operation_response_alloc -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x44ff7af2 __tracepoint_gb_message_submit -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x45b2c7e1 __SCK__tp_func_gb_hd_release -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x464a8a6d gb_operation_put -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x46a55dc9 greybus_data_rcvd -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x52ca0cf6 gb_operation_get_payload_size_max -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x5706f31f gb_hd_del -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x5dab8198 gb_operation_result -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x69f3d6c3 gb_hd_output -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x747d6313 gb_connection_create_flags -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x7623ab5d gb_operation_get -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x78fedb98 __SCT__tp_func_gb_message_submit -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x7b9da8e3 gb_connection_enable -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x82c2b955 gb_connection_disable_forced -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x8966563b gb_connection_disable -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x898760a4 gb_operation_cancel -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x9739e477 __traceiter_gb_hd_add -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x9d1ef59e gb_connection_latency_tag_enable -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xa4c63d76 greybus_message_sent -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xaa51c398 __tracepoint_gb_hd_release -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xab007d8c gb_connection_destroy -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xadd7926d __SCT__tp_func_gb_hd_create -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xae5106a6 gb_debugfs_get -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xae877457 __SCT__tp_func_gb_hd_release -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xb7d665d3 gb_hd_put -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xba78e048 gb_operation_request_send_sync_timeout -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xbfb52284 __SCT__tp_func_gb_hd_del -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xc49e6897 gb_connection_create_offloaded -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xd4e70a3b __SCK__tp_func_gb_hd_add -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xd61d95de __SCK__tp_func_gb_hd_in -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xd8d1fbad gb_connection_disable_rx -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xda7aefb6 gb_hd_create -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xe14da70a gb_hd_cport_reserve -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xe28df92f gb_operation_sync_timeout -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xe5b29472 gb_interface_request_mode_switch -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xe6b45fb6 __SCT__tp_func_gb_hd_add -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xe91ec425 gb_connection_create -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xec44c924 gb_svc_intf_set_power_mode -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xf0a1cede __tracepoint_gb_hd_del -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xf264fd30 greybus_register_driver -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xfccf38e0 __traceiter_gb_hd_create -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xfd6b31d3 __traceiter_gb_hd_del -EXPORT_SYMBOL_GPL drivers/hid/hid 0x05495392 hid_debug -EXPORT_SYMBOL_GPL drivers/hid/hid 0x0793d3fe hid_input_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0x0b62bb07 hidinput_find_field -EXPORT_SYMBOL_GPL drivers/hid/hid 0x0be1943f hid_hw_stop -EXPORT_SYMBOL_GPL drivers/hid/hid 0x1584b195 hid_hw_open -EXPORT_SYMBOL_GPL drivers/hid/hid 0x19d52f1f hid_quirks_exit -EXPORT_SYMBOL_GPL drivers/hid/hid 0x1c38b7d3 hid_alloc_report_buf -EXPORT_SYMBOL_GPL drivers/hid/hid 0x1e6145ed hidraw_report_event -EXPORT_SYMBOL_GPL drivers/hid/hid 0x270dbfcf hid_field_extract -EXPORT_SYMBOL_GPL drivers/hid/hid 0x3d3648b5 hid_dump_input -EXPORT_SYMBOL_GPL drivers/hid/hid 0x3e05b752 hid_lookup_quirk -EXPORT_SYMBOL_GPL drivers/hid/hid 0x419a2c76 hid_compare_device_paths -EXPORT_SYMBOL_GPL drivers/hid/hid 0x4639c61e hidinput_count_leds -EXPORT_SYMBOL_GPL drivers/hid/hid 0x50023f06 hid_debug_event -EXPORT_SYMBOL_GPL drivers/hid/hid 0x54d27732 __hid_request -EXPORT_SYMBOL_GPL drivers/hid/hid 0x59bd0c4e hid_unregister_driver -EXPORT_SYMBOL_GPL drivers/hid/hid 0x610104ae hidinput_disconnect -EXPORT_SYMBOL_GPL drivers/hid/hid 0x69863ea7 hid_dump_device -EXPORT_SYMBOL_GPL drivers/hid/hid 0x75c3114d hid_ignore -EXPORT_SYMBOL_GPL drivers/hid/hid 0x817af5ab hid_resolv_usage -EXPORT_SYMBOL_GPL drivers/hid/hid 0x84e46c49 hid_allocate_device -EXPORT_SYMBOL_GPL drivers/hid/hid 0x89bd9509 hid_parse_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0x8b13a8b8 hid_snto32 -EXPORT_SYMBOL_GPL drivers/hid/hid 0x8c764b04 hid_register_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0x8effe4df hid_setup_resolution_multiplier -EXPORT_SYMBOL_GPL drivers/hid/hid 0x8fce4c38 hidinput_get_led_field -EXPORT_SYMBOL_GPL drivers/hid/hid 0x92908e62 __hid_register_driver -EXPORT_SYMBOL_GPL drivers/hid/hid 0x93d2e445 hid_add_device -EXPORT_SYMBOL_GPL drivers/hid/hid 0x95ef9405 hidinput_report_event -EXPORT_SYMBOL_GPL drivers/hid/hid 0x9d78b1a0 hid_hw_start -EXPORT_SYMBOL_GPL drivers/hid/hid 0xa25fc90b hid_set_field -EXPORT_SYMBOL_GPL drivers/hid/hid 0xa45c4666 hid_connect -EXPORT_SYMBOL_GPL drivers/hid/hid 0xa79cc220 hid_disconnect -EXPORT_SYMBOL_GPL drivers/hid/hid 0xa8b261e3 hid_check_keys_pressed -EXPORT_SYMBOL_GPL drivers/hid/hid 0xb79042b2 hid_destroy_device -EXPORT_SYMBOL_GPL drivers/hid/hid 0xbd27c164 hid_validate_values -EXPORT_SYMBOL_GPL drivers/hid/hid 0xcacb78dc hid_hw_close -EXPORT_SYMBOL_GPL drivers/hid/hid 0xd791d17b hidinput_connect -EXPORT_SYMBOL_GPL drivers/hid/hid 0xd7ee363e hid_output_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0xdb71fa26 hidinput_calc_abs_res -EXPORT_SYMBOL_GPL drivers/hid/hid 0xdefba05c hid_open_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0xe12fcdee hid_dump_field -EXPORT_SYMBOL_GPL drivers/hid/hid 0xe4526c92 hid_match_device -EXPORT_SYMBOL_GPL drivers/hid/hid 0xe7c438b4 hid_dump_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0xf84c3b76 hidraw_disconnect -EXPORT_SYMBOL_GPL drivers/hid/hid 0xfa355613 hid_quirks_init -EXPORT_SYMBOL_GPL drivers/hid/hid 0xfba9bd03 hid_report_raw_event -EXPORT_SYMBOL_GPL drivers/hid/hid 0xfbc01da9 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 0x3f1a020b roccat_connect -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x35f08e5d roccat_common2_device_init_struct -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x43efbc0e roccat_common2_send_with_status -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0xb15dbc88 roccat_common2_sysfs_write -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0xd3f60687 roccat_common2_receive -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0xe54e1f08 roccat_common2_sysfs_read -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0xe78eadc1 roccat_common2_send -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x371b86fe sensor_hub_input_attr_get_raw_value -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x38d4d18e sensor_hub_input_get_attribute_info -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x396ea683 sensor_hub_remove_callback -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x57217cdf sensor_hub_set_feature -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x79a1b453 sensor_hub_device_close -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x83a07ca1 sensor_hub_get_feature -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xb222648e sensor_hub_device_open -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xf7ec90c9 sensor_hub_register_callback -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xf9b82841 hid_sensor_get_usage_index -EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0x65b74448 i2c_hid_core_shutdown -EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0x6ca11f89 i2c_hid_core_probe -EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0xa7131213 i2c_hid_core_pm -EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0xac0049c2 i2c_hid_core_remove -EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0xe1e61f07 i2c_hid_ll_driver -EXPORT_SYMBOL_GPL drivers/hid/intel-ish-hid/intel-ishtp 0x4536ac6b ishtp_wait_resume -EXPORT_SYMBOL_GPL drivers/hid/surface-hid/surface_hid_core 0x333cd188 surface_hid_pm_ops -EXPORT_SYMBOL_GPL drivers/hid/surface-hid/surface_hid_core 0x629b8ca5 surface_hid_device_destroy -EXPORT_SYMBOL_GPL drivers/hid/surface-hid/surface_hid_core 0x927067a0 surface_hid_device_add -EXPORT_SYMBOL_GPL drivers/hid/uhid 0xc0d84f60 uhid_hid_driver -EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0x0b750490 usb_hid_driver -EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0x8fbdcd67 hiddev_hid_event -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x0a16d869 hsi_event -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x1a913fcb hsi_unregister_controller -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x2b3e3368 hsi_register_controller -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x2f37ab5c hsi_alloc_msg -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x49e1cc25 hsi_claim_port -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x5210a5bf hsi_board_list -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x70866bcd hsi_register_client_driver -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x7d0e1bda hsi_release_port -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x84221f6c hsi_port_unregister_clients -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x98c8eeb5 hsi_new_client -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xa1bfc17d hsi_unregister_port_event -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xaa85b071 hsi_get_channel_id_by_name -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xac3234de hsi_free_msg -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xb099749a hsi_register_port_event -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xcab181d2 hsi_alloc_controller -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xcd0e6b33 hsi_remove_client -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xd10952e0 hsi_put_controller -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xef92c49c hsi_async -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x034942ee vmbus_allocate_mmio -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x06690fc6 hv_ringbuffer_get_debuginfo -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x11f3916f vmbus_disconnect_ring -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x1d4f24a5 hv_pkt_iter_close -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x1f194978 __hv_pkt_iter_next -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x1f72b145 vmbus_teardown_gpadl -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x21fb9ee5 vmbus_set_event -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x27133ae0 vmbus_open -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x2a4d8204 vmbus_recvpacket_raw -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x2a99d177 vmbus_set_sc_create_callback -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x31e2e77f vmbus_free_mmio -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x321055cb vmbus_prep_negotiate_resp -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x3632a8bf vmbus_setevent -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x46a417ca vmbus_proto_version -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x489fc5ef vmbus_establish_gpadl -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x4b2210b8 vmbus_send_tl_connect_request -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x5228ab66 vmbus_are_subchannels_present -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x54966114 vmbus_sendpacket_mpb_desc -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x59743ff9 vmbus_driver_unregister -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x63b63f0f hv_pkt_iter_first_raw -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x745552e5 vmbus_close -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x76755e83 vmbus_sendpacket_pagebuffer -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x793a175a vmbus_set_chn_rescind_callback -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x80fa051c hv_pkt_iter_first -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x82d543ad vmbus_next_request_id -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x89e8bfb2 vmbus_hvsock_device_unregister -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x93c0cfce vmbus_free_ring -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x9b2d794e vmbus_connect_ring -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x9f437596 hv_ringbuffer_spinlock_busy -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xbf3c9953 __vmbus_driver_register -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xcb053b55 vmbus_request_addr -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xd98e5c42 vmbus_send_modifychannel -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xe60d972f vmbus_alloc_ring -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xef6b08b1 vmbus_connection -EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0x0e680c09 adt7x10_probe -EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0x7cf00293 adt7x10_remove -EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0xd098c2f3 adt7x10_dev_pm_ops -EXPORT_SYMBOL_GPL drivers/hwmon/ltc2947-core 0x076fe00b 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 0x0c3ae19e intel_th_set_output -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x42dc5a39 intel_th_trace_enable -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x588977ec intel_th_trace_switch -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x5b436562 intel_th_alloc -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x65b57f8d intel_th_driver_unregister -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x6df0fec5 intel_th_output_enable -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x71bc2e61 intel_th_trace_disable -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x90d2a324 intel_th_driver_register -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xf4969d7a intel_th_free -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th_msu 0x26c642b2 intel_th_msu_buffer_unregister -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th_msu 0xe9538423 intel_th_msc_window_unlock -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th_msu 0xeca08f60 intel_th_msu_buffer_register -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x45370a4f stm_data_write -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x5144e54e stm_unregister_device -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x579e08ec stm_register_protocol -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x62e742c6 stm_unregister_protocol -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x674698ef to_pdrv_policy_node -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x6842835e stm_register_device -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x981aefc0 stm_source_write -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xbda40ff7 stm_source_unregister_device -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xd111cecd stm_source_register_device -EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-amd-mp2-pci 0x39ab5806 amd_mp2_process_event -EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-amd-mp2-pci 0x40a8bba4 amd_mp2_rw_timeout -EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-amd-mp2-pci 0x6077f005 amd_mp2_rw -EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-amd-mp2-pci 0x664004ba amd_mp2_find_device -EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-amd-mp2-pci 0x6cb4400c amd_mp2_bus_enable_set -EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-amd-mp2-pci 0x8293acf0 amd_mp2_unregister_cb -EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-amd-mp2-pci 0xadda30a8 amd_mp2_register_cb -EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-nforce2 0x7c14bb66 nforce2_smbus -EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x2ea29155 i2c_root_adapter -EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x743d3968 i2c_mux_alloc -EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0xea6fb236 i2c_mux_del_adapters -EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0xfd20ea56 i2c_mux_add_adapter -EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0x84b0c2c0 i2c_register_spd -EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0xa2cf2906 i2c_handle_smbus_alert -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x06261e3b i3c_driver_register_with_owner -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x0821e905 i3c_master_set_info -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x0e10945c i3c_driver_unregister -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x22e25e61 i3c_generic_ibi_recycle_slot -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x31f1da0e i3c_generic_ibi_get_free_slot -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x3feab04e i3c_master_enec_locked -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x41928dff i3c_device_get_info -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x44e30a67 i3c_master_queue_ibi -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x49d5126b i3c_device_do_priv_xfers -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x68768eab i3c_generic_ibi_alloc_pool -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x6e13d399 i3c_device_request_ibi -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x73b2e0a3 i3c_master_entdaa_locked -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x76a1557a i3c_master_disec_locked -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x76fe3e05 i3c_generic_ibi_free_pool -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x78cb87d9 i3c_master_do_daa -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x87aa0abc i3c_device_free_ibi -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x87dcd718 i3c_device_enable_ibi -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xb249fe65 i3c_device_disable_ibi -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xbe8ec06c i3cdev_to_dev -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xc487869a i3c_master_unregister -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xc4c48905 i3c_device_match_id -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xc8ef90b0 i3c_master_defslvs_locked -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xdf4c9fab i3c_master_get_free_addr -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xe08de951 i3c_master_add_i3c_dev_locked -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xf4b6ca95 dev_to_i3cdev -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xfede8137 i3c_master_register -EXPORT_SYMBOL_GPL drivers/iio/accel/adxl372 0x7a78b956 adxl372_readable_noinc_reg -EXPORT_SYMBOL_GPL drivers/iio/accel/adxl372 0xa1e85f0e adxl372_probe -EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0x6d62f9f4 bmc150_accel_core_probe -EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0x96c90e74 bmc150_accel_core_remove -EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0xc2cd2a55 bmc150_accel_pm_ops -EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0xfd77ef5d bmc150_regmap_conf -EXPORT_SYMBOL_GPL drivers/iio/accel/bmi088-accel-core 0x21cafa72 bmi088_accel_core_probe -EXPORT_SYMBOL_GPL drivers/iio/accel/bmi088-accel-core 0x6147223d bmi088_regmap_conf -EXPORT_SYMBOL_GPL drivers/iio/accel/bmi088-accel-core 0x7bc0bc10 bmi088_accel_pm_ops -EXPORT_SYMBOL_GPL drivers/iio/accel/bmi088-accel-core 0x9f767440 bmi088_accel_core_remove -EXPORT_SYMBOL_GPL drivers/iio/accel/fxls8962af-core 0x571d8d00 fxls8962af_i2c_regmap_conf -EXPORT_SYMBOL_GPL drivers/iio/accel/fxls8962af-core 0xb2c62cd1 fxls8962af_core_probe -EXPORT_SYMBOL_GPL drivers/iio/accel/fxls8962af-core 0xeefbecd7 fxls8962af_pm_ops -EXPORT_SYMBOL_GPL drivers/iio/accel/fxls8962af-core 0xf5c319c5 fxls8962af_spi_regmap_conf -EXPORT_SYMBOL_GPL drivers/iio/accel/mma7455_core 0x104e1264 mma7455_core_regmap -EXPORT_SYMBOL_GPL drivers/iio/accel/mma7455_core 0x2de12fe4 mma7455_core_probe -EXPORT_SYMBOL_GPL drivers/iio/accel/mma7455_core 0xb32a75be mma7455_core_remove -EXPORT_SYMBOL_GPL drivers/iio/adc/ad7091r-base 0xd980c52f ad7091r_probe -EXPORT_SYMBOL_GPL drivers/iio/adc/ad7091r-base 0xf60b126c ad7091r_regmap_config -EXPORT_SYMBOL_GPL drivers/iio/adc/ad7606 0x9f919dfb ad7606_pm_ops -EXPORT_SYMBOL_GPL drivers/iio/adc/ad7606 0xcc6cf1f2 ad7606_probe -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x16e4c7ad ad_sd_init -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x50f65f0a ad_sd_calibrate_all -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x595be482 ad_sd_validate_trigger -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x67015087 ad_sd_set_comm -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x786d11e0 ad_sd_reset -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xb9ff25c2 ad_sigma_delta_single_conversion -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xc3221437 ad_sd_read_reg -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xd800ff3f ad_sd_write_reg -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xdaa6720a ad_sd_calibrate -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xe42f8cde 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 0x430efeda iio_channel_cb_get_channels -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x7a711aef iio_channel_start_all_cb -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x9acf62ab iio_channel_cb_set_buffer_watermark -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0xdbb39768 iio_channel_cb_get_iio_dev -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0xf5c15c0c iio_channel_get_all_cb -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x0e4c3870 iio_dma_buffer_disable -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x1e025fa6 iio_dma_buffer_data_available -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x228381d2 iio_dma_buffer_enable -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x43232e67 iio_dma_buffer_set_bytes_per_datum -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x4ccdc6c5 iio_dma_buffer_release -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x5c385a39 iio_dma_buffer_block_done -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x628c5566 iio_dma_buffer_exit -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x7c8b24f8 iio_dma_buffer_read -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x80e68617 iio_dma_buffer_block_list_abort -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x83074ba4 iio_dma_buffer_request_update -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0xc2ac13f0 iio_dma_buffer_set_length -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0xeddad211 iio_dma_buffer_init -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dmaengine 0xe584df2f devm_iio_dmaengine_buffer_setup -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-hw-consumer 0x12845532 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 0x732f8a14 devm_iio_hw_consumer_alloc -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-hw-consumer 0x9671bc15 iio_hw_consumer_free -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-hw-consumer 0xbf358fa9 iio_hw_consumer_enable -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-triggered-buffer 0x3a1058dc devm_iio_triggered_buffer_setup_ext -EXPORT_SYMBOL_GPL drivers/iio/buffer/kfifo_buf 0x0c6a63c9 devm_iio_kfifo_buffer_setup_ext -EXPORT_SYMBOL_GPL drivers/iio/chemical/bme680_core 0x7ba4f756 bme680_core_probe -EXPORT_SYMBOL_GPL drivers/iio/chemical/sps30 0x5bb8c530 sps30_probe -EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x0e6102e3 cros_ec_sensors_read_lpc -EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x10b76896 cros_ec_sensors_core_read_avail -EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x22eb70fe cros_ec_sensors_core_init -EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x4558edcf cros_ec_sensors_core_read -EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x5ae84c6e cros_ec_sensors_core_register -EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x5b9f46ec cros_ec_motion_send_host_cmd -EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x662b851c cros_ec_sensors_pm_ops -EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x8ba26fcc cros_ec_sensors_core_write -EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x9971dac4 cros_ec_sensors_capture -EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0xab6a12f2 cros_ec_sensors_read_cmd -EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0xddb493e5 cros_ec_sensors_ext_info -EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0xe87dd87b cros_ec_sensors_push_data -EXPORT_SYMBOL_GPL drivers/iio/dac/ad5592r-base 0x8c7e2aeb ad5592r_probe -EXPORT_SYMBOL_GPL drivers/iio/dac/ad5592r-base 0xd849f1fc ad5592r_remove -EXPORT_SYMBOL_GPL drivers/iio/dac/ad5686 0xa17fbb26 ad5686_remove -EXPORT_SYMBOL_GPL drivers/iio/dac/ad5686 0xb97dece1 ad5686_probe -EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0xb88e6fa4 bmg160_core_remove -EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0xc8f2cbfd bmg160_core_probe -EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0xea4caa9c bmg160_pm_ops -EXPORT_SYMBOL_GPL drivers/iio/gyro/fxas21002c_core 0xa3da477c fxas21002c_core_remove -EXPORT_SYMBOL_GPL drivers/iio/gyro/fxas21002c_core 0xc060c35d fxas21002c_pm_ops -EXPORT_SYMBOL_GPL drivers/iio/gyro/fxas21002c_core 0xeaa13a7e fxas21002c_core_probe -EXPORT_SYMBOL_GPL drivers/iio/imu/bmi160/bmi160_core 0xfb72a7a2 bmi160_core_probe -EXPORT_SYMBOL_GPL drivers/iio/imu/fxos8700_core 0x3682f6e8 fxos8700_core_probe -EXPORT_SYMBOL_GPL drivers/iio/imu/inv_icm42600/inv-icm42600 0x545601ad inv_icm42600_pm_ops -EXPORT_SYMBOL_GPL drivers/iio/imu/inv_icm42600/inv-icm42600 0x5ad1077d inv_icm42600_core_probe -EXPORT_SYMBOL_GPL drivers/iio/imu/inv_icm42600/inv-icm42600 0xeda4af4b inv_icm42600_regmap_config -EXPORT_SYMBOL_GPL drivers/iio/imu/inv_mpu6050/inv-mpu6050 0x272d52e2 inv_mpu_pmops -EXPORT_SYMBOL_GPL drivers/iio/imu/inv_mpu6050/inv-mpu6050 0x6447336c inv_mpu_core_probe -EXPORT_SYMBOL_GPL drivers/iio/imu/st_lsm9ds0/st_lsm9ds0 0x3522e7a3 st_lsm9ds0_probe -EXPORT_SYMBOL_GPL drivers/iio/imu/st_lsm9ds0/st_lsm9ds0 0x95e47196 st_lsm9ds0_remove -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x0a80254d iio_buffer_get -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x0adf0044 iio_write_channel_attribute -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x0dc5fca3 iio_map_array_unregister -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x0f176609 iio_push_to_buffers -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x128621c1 __devm_iio_trigger_register -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x246d43b9 devm_iio_channel_get -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x26f6b499 iio_str_to_fixpoint -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x30e2baa4 iio_read_channel_processed_scale -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x3488f5e4 devm_of_iio_channel_get_by_name -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x3a489396 iio_get_channel_type -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x46dcfb21 iio_alloc_pollfunc -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x4c672f4e iio_read_channel_raw -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x4dce7dd4 iio_format_value -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x510a97a5 iio_write_channel_raw -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x5547bba3 iio_enum_available_read -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x5b27ae70 iio_read_avail_channel_attribute -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x5b69aff2 iio_read_avail_channel_raw -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x5fb633e5 iio_read_channel_attribute -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x6384a81e devm_iio_trigger_alloc -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x6434a1fd iio_map_array_register -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x661cd757 iio_get_debugfs_dentry -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x6785834d iio_channel_release -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x6a26b868 iio_write_channel_ext_info -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x6ee59f70 iio_read_channel_ext_info -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x706eba7c iio_buffer_put -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x70bdfb35 iio_show_mount_matrix -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x773088d2 iio_get_channel_ext_info_count -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x77aa41fb iio_device_attach_buffer -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x77e8419a iio_channel_get -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x785726d0 iio_read_channel_scale -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x78d24023 devm_iio_device_alloc -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x79e75fcd iio_device_id -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x9de82777 iio_read_channel_processed -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xa09c9dfe iio_device_claim_direct_mode -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xa0dc6b4b __devm_iio_device_register -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xaef58407 devm_iio_channel_get_all -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xb29331de iio_convert_raw_to_processed -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xc4f9a852 iio_device_release_direct_mode -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xcd46ae39 iio_read_max_channel_raw -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xcdef397f iio_validate_scan_mask_onehot -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xd18213bc iio_read_channel_offset -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xd51b7b9d iio_enum_read -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xe2088673 iio_channel_get_all -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xe85c2e03 iio_enum_write -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xefb72ae5 iio_dealloc_pollfunc -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xf470b621 iio_update_buffers -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xf4893ac8 iio_channel_release_all -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xfc17a893 iio_read_channel_average_raw -EXPORT_SYMBOL_GPL drivers/iio/magnetometer/rm3100-core 0x0a1424e0 rm3100_volatile_table -EXPORT_SYMBOL_GPL drivers/iio/magnetometer/rm3100-core 0x3c450cc8 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 0x5ad66a61 mpl115_probe -EXPORT_SYMBOL_GPL drivers/iio/pressure/zpa2326 0x1c075ded zpa2326_remove -EXPORT_SYMBOL_GPL drivers/iio/pressure/zpa2326 0x500ee25f zpa2326_isreg_readable -EXPORT_SYMBOL_GPL drivers/iio/pressure/zpa2326 0x5f1f8d59 zpa2326_isreg_precious -EXPORT_SYMBOL_GPL drivers/iio/pressure/zpa2326 0x97fc0791 zpa2326_probe -EXPORT_SYMBOL_GPL drivers/iio/pressure/zpa2326 0xb9d2b90e zpa2326_pm_ops -EXPORT_SYMBOL_GPL drivers/iio/pressure/zpa2326 0xe8065c79 zpa2326_isreg_writeable -EXPORT_SYMBOL_GPL drivers/infiniband/core/ib_core 0xdbd019c4 ib_wq -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x0377ab1b rtrs_cq_qp_create -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x33d6314c rtrs_iu_alloc -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x34a279ff rtrs_cq_qp_destroy -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x360e6d70 rtrs_iu_free -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x36b56a08 rtrs_post_recv_empty -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x3ce31026 rtrs_iu_post_recv -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x4e0726cb rtrs_iu_post_send -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x663dde58 rtrs_send_hb_ack -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x951e577a rtrs_start_hb -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xa03713b1 rtrs_iu_post_rdma_write_imm -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xb6fc2f96 rtrs_init_hb -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xe49c596e rtrs_stop_hb -EXPORT_SYMBOL_GPL drivers/input/ff-memless 0x0a467c3d input_ff_create_memless -EXPORT_SYMBOL_GPL drivers/input/matrix-keymap 0x9ca6f817 matrix_keypad_parse_properties -EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0x42869e3f 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 0x1fdef7f4 rmi_of_property_read_u32 -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x378c6d9b rmi_2d_sensor_of_probe -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x624571d8 rmi_driver_suspend -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x6465ebdc rmi_driver_resume -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x7a3e895a __rmi_register_function_handler -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x7cd12bb0 rmi_2d_sensor_abs_report -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x8058566c rmi_unregister_function_handler -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x97b5ed95 rmi_2d_sensor_configure_input -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x9ba5c696 rmi_2d_sensor_abs_process -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xa97829ea rmi_set_attn_data -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xb66ca72a rmi_dbg -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xf27ff3bc rmi_register_transport_device -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xfd5e601f rmi_2d_sensor_rel_report -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0x4af12d1b cyttsp4_pm_ops -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0x9e73b0dc cyttsp4_probe -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0xcc018cbf cyttsp4_remove -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0x7e2ba65d cyttsp_pm_ops -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0xcae7d1a1 cyttsp_probe -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_i2c_common 0x452c037c cyttsp_i2c_write_block_data -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_i2c_common 0xc50a9d8b cyttsp_i2c_read_block_data -EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x270014d5 tsc200x_regmap_config -EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x73349204 tsc200x_remove -EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0xa6c1a460 tsc200x_probe -EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0xe23bb43f tsc200x_pm_ops -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x0137e7cb wm97xx_read_aux_adc -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x0259b91f wm97xx_reg_write -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x212e158b wm97xx_register_mach_ops -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x2a58581d wm97xx_get_gpio -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x41599588 wm9705_codec -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x5014c585 wm97xx_reg_read -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x5ce788d2 wm9712_codec -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x61885957 wm97xx_unregister_mach_ops -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x904d884c wm9713_codec -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xce51775c wm97xx_set_gpio -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xdc9cf029 wm97xx_set_suspend_mode -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xe7d20181 wm97xx_config_gpio -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x207d510e ipack_bus_unregister -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x35634133 ipack_driver_unregister -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x596fd9b3 ipack_put_device -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x9e0b95c3 ipack_device_add -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xbbf64b24 ipack_device_init -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xccaf219a ipack_bus_register -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xd2b79664 ipack_driver_register -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xd5f9a268 ipack_device_del -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xfe461b26 ipack_get_device -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x12bffd95 devm_led_classdev_flash_register_ext -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x1b8857a2 led_update_flash_brightness -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x5d4b38e2 led_classdev_flash_unregister -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x7814d1da led_set_flash_timeout -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x832d00d8 led_set_flash_brightness -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x8da2e98a devm_led_classdev_flash_unregister -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xbf3b60d8 led_classdev_flash_register_ext -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xe6941b3d led_get_flash_fault -EXPORT_SYMBOL_GPL drivers/leds/led-class-multicolor 0x742d6b5e led_classdev_multicolor_unregister -EXPORT_SYMBOL_GPL drivers/leds/led-class-multicolor 0x8ac5f216 led_classdev_multicolor_register_ext -EXPORT_SYMBOL_GPL drivers/leds/led-class-multicolor 0x8b1c1eee devm_led_classdev_multicolor_register_ext -EXPORT_SYMBOL_GPL drivers/leds/led-class-multicolor 0x98c4760f led_mc_calc_color_components -EXPORT_SYMBOL_GPL drivers/leds/led-class-multicolor 0xdfc29f4b devm_led_classdev_multicolor_unregister -EXPORT_SYMBOL_GPL drivers/leds/trigger/ledtrig-audio 0x3bd45b0d ledtrig_audio_set -EXPORT_SYMBOL_GPL drivers/leds/trigger/ledtrig-audio 0xce593c22 ledtrig_audio_get -EXPORT_SYMBOL_GPL drivers/leds/trigger/ledtrig-camera 0x749e05f2 ledtrig_flash_ctrl -EXPORT_SYMBOL_GPL drivers/leds/trigger/ledtrig-camera 0x7903e46e ledtrig_torch_ctrl -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x01114084 __SCK__tp_func_bcache_journal_full -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x01dc20ad __tracepoint_bcache_btree_node_alloc -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x069bfa26 __SCK__tp_func_bcache_btree_node_free -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x0ac99532 __tracepoint_bcache_read_retry -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x0cf6c2d5 __tracepoint_bcache_writeback_collision -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x0f1fd8a5 __SCK__tp_func_bcache_journal_entry_full -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x1036e4d4 __tracepoint_bcache_btree_node_free -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x1380ab5e __traceiter_bcache_btree_set_root -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x13c77720 __tracepoint_bcache_gc_copy -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x17a83e40 __traceiter_bcache_writeback -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x1c599ebe __traceiter_bcache_btree_gc_coalesce -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x1ead0660 __traceiter_bcache_gc_end -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x2087d27a __traceiter_bcache_journal_full -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x21b87a42 __SCT__tp_func_bcache_btree_node_alloc -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x2278b123 __SCK__tp_func_bcache_invalidate -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x25cacb14 __SCT__tp_func_bcache_btree_set_root -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x2766fb04 __traceiter_bcache_journal_replay_key -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x27d052ac __tracepoint_bcache_bypass_sequential -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 0x299d4abb __SCK__tp_func_bcache_btree_set_root -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x2aac0648 __tracepoint_bcache_btree_gc_coalesce -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x2bbd16d5 __SCK__tp_func_bcache_alloc_fail -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x2fded46f __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 0x31f75b72 __tracepoint_bcache_request_end -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x34193f3e __tracepoint_bcache_btree_insert_key -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x36f317a4 __SCT__tp_func_bcache_gc_copy -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x38cca2fa __traceiter_bcache_bypass_sequential -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x394a8564 __SCK__tp_func_bcache_writeback -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x39e3158a __SCK__tp_func_bcache_gc_start -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x4543b49b __SCT__tp_func_bcache_writeback_collision -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x46a9347f __traceiter_bcache_btree_write -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x4877b651 __traceiter_bcache_btree_node_compact -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x51b329ec __tracepoint_bcache_btree_cache_cannibalize -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x52791e83 __SCK__tp_func_bcache_btree_node_alloc -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x55fe5f69 __tracepoint_bcache_gc_copy_collision -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x58531466 __tracepoint_bcache_write -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x59b11f53 __SCK__tp_func_bcache_btree_node_compact -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x59fc23ac __tracepoint_bcache_btree_read -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x5dd80bd5 __SCT__tp_func_bcache_write -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x5dd83069 __traceiter_bcache_bypass_congested -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x604b5741 __traceiter_bcache_btree_node_free -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x615d5996 __tracepoint_bcache_journal_write -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x629c9180 __SCT__tp_func_bcache_btree_write -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x64e39418 __traceiter_bcache_writeback_collision -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x6677ebf0 __SCT__tp_func_bcache_gc_start -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x6682e4d0 __SCK__tp_func_bcache_btree_write -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x6746f5dd __traceiter_bcache_btree_node_split -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x67bc0110 __SCK__tp_func_bcache_btree_insert_key -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x6ba1d0bc __SCK__tp_func_bcache_read -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x6dc15c18 __traceiter_bcache_gc_start -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x6fba01aa __traceiter_bcache_read -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x737b119b __tracepoint_bcache_read -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x752f7fa4 __SCT__tp_func_bcache_cache_insert -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x776d4873 __tracepoint_bcache_request_start -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x787810b2 __SCT__tp_func_bcache_read_retry -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x7bfd5cfe __tracepoint_bcache_journal_full -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x7f252e00 __SCT__tp_func_bcache_bypass_congested -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x8020e7d2 __tracepoint_bcache_cache_insert -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x817ad796 __SCT__tp_func_bcache_btree_node_free -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x81947fad __traceiter_bcache_journal_entry_full -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x822db771 __SCT__tp_func_bcache_btree_cache_cannibalize -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x865fd7ac __tracepoint_bcache_writeback -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x897bf798 __SCK__tp_func_bcache_gc_copy_collision -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x89b328a9 __SCK__tp_func_bcache_btree_node_alloc_fail -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x8a935569 __SCK__tp_func_bcache_gc_end -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x913ebd5a __SCK__tp_func_bcache_btree_cache_cannibalize -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x93d75871 __tracepoint_bcache_btree_node_compact -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x972aa384 __SCT__tp_func_bcache_btree_insert_key -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x9a22fa98 __SCK__tp_func_bcache_gc_copy -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x9c127449 __traceiter_bcache_btree_node_alloc_fail -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x9d28d153 __SCT__tp_func_bcache_btree_node_split -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x9fc9cae2 __SCK__tp_func_bcache_read_retry -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa15bd7c4 __SCT__tp_func_bcache_btree_gc_coalesce -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa3070fb6 __traceiter_bcache_journal_write -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa4e3296d __traceiter_bcache_request_start -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa784e073 __SCT__tp_func_bcache_btree_node_compact -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa95480c8 __tracepoint_bcache_bypass_congested -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa993a742 __tracepoint_bcache_btree_node_alloc_fail -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xad6440b4 __traceiter_bcache_gc_copy -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xaf64c046 __traceiter_bcache_read_retry -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xb532bf93 __traceiter_bcache_btree_read -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xb5a62a8c __traceiter_bcache_cache_insert -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xb778eef3 __tracepoint_bcache_invalidate -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xb7b189f9 __SCK__tp_func_bcache_request_end -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xb7e5379d __SCT__tp_func_bcache_journal_replay_key -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xb8793fb4 __SCK__tp_func_bcache_btree_node_split -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xbc350df0 __tracepoint_bcache_gc_end -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xbebd4905 __tracepoint_bcache_alloc_fail -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xc5799f87 __tracepoint_bcache_journal_entry_full -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xc73e0c99 __SCT__tp_func_bcache_invalidate -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xc7c73c4d __SCK__tp_func_bcache_request_start -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xc8d93098 __traceiter_bcache_btree_node_alloc -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xccfc7c7c __SCK__tp_func_bcache_btree_read -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xce451ad8 __SCT__tp_func_bcache_btree_read -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xd1f72da8 __SCK__tp_func_bcache_journal_write -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xd28cc11c __traceiter_bcache_btree_insert_key -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xd30206ff __SCT__tp_func_bcache_gc_copy_collision -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xd7a376b3 __SCT__tp_func_bcache_gc_end -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xd7a7fbec __SCT__tp_func_bcache_request_start -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xd90c9832 __traceiter_bcache_btree_cache_cannibalize -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xd95ce576 __SCK__tp_func_bcache_writeback_collision -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xdb0682eb __SCT__tp_func_bcache_journal_full -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xe0c4365b __tracepoint_bcache_btree_write -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xe32d952e __traceiter_bcache_write -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xe5b8934d __SCK__tp_func_bcache_journal_replay_key -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xe84cfd64 __tracepoint_bcache_btree_set_root -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xea0bf376 __traceiter_bcache_invalidate -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xebdc019a __tracepoint_bcache_btree_node_split -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xec29e22a __traceiter_bcache_gc_copy_collision -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xed98e47e __traceiter_bcache_alloc_fail -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xedf90bb3 __SCT__tp_func_bcache_read -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xf3742510 __traceiter_bcache_request_end -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xf57f81ae __SCT__tp_func_bcache_bypass_sequential -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xf629aeb9 __SCK__tp_func_bcache_btree_gc_coalesce -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xf7a5edc7 __SCT__tp_func_bcache_journal_entry_full -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xfaccfba8 __SCK__tp_func_bcache_cache_insert -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xfaf1bee6 __SCK__tp_func_bcache_bypass_congested -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xfb55fa5d __SCK__tp_func_bcache_bypass_sequential -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xfb767f16 __SCT__tp_func_bcache_writeback -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xfcd0cbb9 __tracepoint_bcache_gc_start -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xfce76b1e __SCT__tp_func_bcache_request_end -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xfd417bcc __SCK__tp_func_bcache_write -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x1318afa2 dm_bio_prison_free_cell_v2 -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x17dd39d6 dm_deferred_set_create -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x2eb01e04 dm_deferred_set_destroy -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x42a3a986 dm_cell_release -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x43d1d3af dm_bio_detain -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x671a733a dm_cell_quiesce_v2 -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x6791a44e dm_deferred_entry_dec -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x737ab03c dm_get_cell -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x753e20b2 dm_bio_prison_create -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x75ac5d5b dm_cell_promote_or_release -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x8c93b8f3 dm_cell_get_v2 -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xa17d43cc dm_cell_lock_v2 -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xa417af8f dm_cell_release_no_holder -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xa983f59f dm_bio_prison_alloc_cell -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xace9b57b dm_bio_prison_destroy_v2 -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xb6d5c65d dm_deferred_set_add_work -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xb70b342a dm_bio_prison_destroy -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xbe41c729 dm_cell_put_v2 -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xc5431402 dm_cell_unlock_v2 -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xca2e3a88 dm_deferred_entry_inc -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xd35ff0b5 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 0xf1add796 dm_bio_prison_alloc_cell_v2 -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xf4ff6235 dm_cell_visit_release -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xf6695849 dm_cell_error -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xfa563b0b 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 0x6febff31 dm_bufio_client_create -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x72f07bf4 dm_bufio_set_minimum_buffers -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x74dcd98c dm_bufio_get_aux_data -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x7c381a76 dm_bufio_get_block_size -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 0x506f6c23 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 0xd558bbab dm_cache_policy_unregister -EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xe1bdae47 dm_cache_policy_create -EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0xd231153c dm_unregister_path_selector -EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0xf66760a9 dm_register_path_selector -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x01d2f9ac dm_rh_recovery_start -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x0a44a7c7 dm_rh_bio_to_region -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x242bdd60 dm_region_hash_create -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x26dbb13a dm_rh_delay -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x356def49 dm_rh_inc_pending -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x38972f23 dm_rh_region_to_sector -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x38efaf5a dm_region_hash_destroy -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x3a18389a dm_rh_update_states -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x47909cf5 dm_rh_mark_nosync -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x57e16c3e dm_rh_get_state -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x5f4a6e61 dm_rh_dec -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x7774620f dm_rh_stop_recovery -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x7d053fc5 dm_rh_start_recovery -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x7d5e1815 dm_rh_get_region_key -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xa2554823 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 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 0x7313cb6d dm_block_manager_create -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 0x02e38dc6 cec_received_msg_ts -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x058c47f8 cec_transmit_msg -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x0b90086b cec_fill_conn_info_from_drm -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x12641dc1 cec_unregister_adapter -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x23ce0b64 cec_delete_adapter -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x267ffe39 cec_s_conn_info -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x316e58e6 cec_notifier_parse_hdmi_phandle -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x3d5bdcb9 cec_register_adapter -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x4514079d cec_transmit_done_ts -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x456dc807 cec_notifier_cec_adap_unregister -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x4604b4f6 cec_notifier_conn_register -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x5c5216af cec_s_phys_addr -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x5f443471 cec_pin_changed -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x6694117e cec_s_log_addrs -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x88672fad cec_queue_pin_cec_event -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x9041bbb9 cec_s_phys_addr_from_edid -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x93ca266a cec_allocate_adapter -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xa01fbb6b cec_notifier_set_phys_addr -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 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 0xc5e41c54 cec_transmit_attempt_done_ts -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xd2f4c78b cec_queue_pin_5v_event -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xdaebb015 cec_notifier_cec_adap_register -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xedd03e95 cec_queue_pin_hpd_event -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xf87d50a8 cec_pin_allocate_adapter -EXPORT_SYMBOL_GPL drivers/media/common/b2c2/b2c2-flexcop 0x66c0289a b2c2_flexcop_debug -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x26b00edc saa7146_register_extension -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x26bfe008 saa7146_i2c_adapter_prepare -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x4b196251 saa7146_vfree_destroy_pgtable -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x95608433 saa7146_vmalloc_build_pgtable -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xa3804a76 saa7146_wait_for_debi_done -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xc00fac4c saa7146_pgtable_build_single -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xe3cd9b5c saa7146_debug -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xe425afa1 saa7146_pgtable_alloc -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xeac633ee saa7146_unregister_extension -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xefdee0d2 saa7146_pgtable_free -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xf75ec5bd saa7146_setgpio -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x082b5dac saa7146_vv_release -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x2afd44f8 saa7146_unregister_device -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x38b8b606 saa7146_vv_init -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x41015ce7 saa7146_set_hps_source_and_sync -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x586a50a9 saa7146_start_preview -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0xc1d49953 saa7146_stop_preview -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0xea9222a0 saa7146_register_device -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x21e36bf2 smscore_registry_getmode -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x23846170 smscore_get_board_id -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x2648d8db smscore_unregister_hotplug -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x34292a01 smscore_putbuffer -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x34bf0e61 smscore_translate_msg -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x351d6882 sms_board_setup -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 0x456ddf04 smscore_get_device_mode -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x46a0db74 sms_board_power -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x62471a19 smscore_register_device -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x6306dd95 smscore_start_device -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x65517941 smscore_set_board_id -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x74ee9098 sms_board_load_modules -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x7c576277 smsendian_handle_message_header -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x82082d3c smscore_register_client -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x844539ae sms_get_board -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x859e52fa sms_board_event -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x99a81ab3 smsclient_sendrequest -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xb498efc8 smscore_register_hotplug -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xbbdb5c42 smscore_unregister_client -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xccea15ce smscore_onresponse -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xd5219e3d sms_board_led_feedback -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xdad23908 smscore_unregister_device -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xf1f7e1d5 sms_board_lna_control -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xf8140bb0 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 0x012b6905 __tracepoint_vb2_buf_queue -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x03c85e43 __SCK__tp_func_vb2_buf_queue -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x05ac542a vb2_core_expbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x06f6cf4a vb2_core_queue_release -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x07d2d2a9 vb2_write -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x1392dbc0 __tracepoint_vb2_qbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x14300528 vb2_request_object_is_buffer -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x28f794e1 __tracepoint_vb2_buf_done -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x2b5551d5 __SCT__tp_func_vb2_buf_queue -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x321037cf vb2_plane_vaddr -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x4195cbd1 __SCK__tp_func_vb2_dqbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x4c048232 vb2_core_create_bufs -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x4d49713f vb2_wait_for_all_buffers -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 0x51e2b0b1 vb2_core_poll -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x54b551e6 vb2_core_querybuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x54bd5eac __traceiter_vb2_qbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x576d7aef vb2_queue_error -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x57eeb71a vb2_thread_stop -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x5de5c2e3 vb2_core_reqbufs -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x73cd7bd8 __tracepoint_vb2_dqbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x88677b8d vb2_core_qbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x8b974f3e vb2_request_buffer_cnt -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x8c4b5e01 vb2_read -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x934e31ec __SCK__tp_func_vb2_qbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x942fa098 vb2_core_dqbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x9fbadac9 vb2_core_prepare_buf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xa4212a47 vb2_core_queue_init -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xa653d822 __SCK__tp_func_vb2_buf_done -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xb3f94e0e vb2_mmap -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xbeb8a092 vb2_thread_start -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xc54c863e __SCT__tp_func_vb2_qbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xc6958aec vb2_discard_done -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xc7920841 __SCT__tp_func_vb2_dqbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xc9aa0032 __traceiter_vb2_dqbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xd13a4b80 vb2_core_streamon -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xddf85274 __traceiter_vb2_buf_done -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xe080185e vb2_plane_cookie -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xef851e48 __traceiter_vb2_buf_queue -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xf3c045d6 vb2_core_streamoff -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xf8b9cb7f vb2_buffer_done -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-dma-contig 0x89dd3372 vb2_dma_contig_memops -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-dma-contig 0x8c7e4eb5 vb2_dma_contig_set_max_seg_size -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-dma-sg 0xeec9f381 vb2_dma_sg_memops -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-memops 0xa282b4c3 vb2_common_vm_ops -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x00562b9b vb2_request_queue -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x0555d8b5 vb2_ioctl_querybuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x058056f3 vb2_ioctl_streamoff -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x0994640d vb2_fop_release -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x10a6c4bd vb2_fop_mmap -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x1be262e1 vb2_streamoff -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x1fe287e9 vb2_ioctl_create_bufs -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x227f905a vb2_queue_release -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x25831cc6 vb2_queue_init_name -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x28a456fb vb2_ops_wait_finish -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x28ed6400 vb2_reqbufs -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x29aeadb2 vb2_ioctl_dqbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x33ad15d6 vb2_poll -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x3443f7b5 vb2_ops_wait_prepare -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x356de24a vb2_dqbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x3a8ecfec vb2_queue_change_type -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x40775a6f vb2_streamon -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x431d61e5 vb2_fop_read -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x43c7b5e3 vb2_find_timestamp -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x4971d8f5 _vb2_fop_release -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x63e52684 vb2_queue_init -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x666c855d vb2_qbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x74cddf37 vb2_fop_write -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x7fda8eda vb2_request_validate -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x84f91fa4 vb2_ioctl_reqbufs -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x85dd0c00 vb2_expbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x8d685ffa vb2_create_bufs -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xa228df12 vb2_ioctl_streamon -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xabea79b3 vb2_ioctl_expbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xada2ee8e vb2_video_unregister_device -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xb4a78715 vb2_ioctl_qbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xbf87d424 vb2_ioctl_prepare_buf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xbf8f9a97 vb2_fop_poll -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xdb820418 vb2_prepare_buf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-vmalloc 0xe38c0078 vb2_vmalloc_memops -EXPORT_SYMBOL_GPL drivers/media/dvb-core/dvb-core 0x0d884aad dvb_module_release -EXPORT_SYMBOL_GPL drivers/media/dvb-core/dvb-core 0x97b1da29 dvb_create_media_graph -EXPORT_SYMBOL_GPL drivers/media/dvb-core/dvb-core 0xfbda1d43 dvb_module_probe -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/as102_fe 0xd5ff3edd as102_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/ascot2e 0x460facf6 ascot2e_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/atbm8830 0x59aad039 atbm8830_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/au8522_dig 0x6a186bdb au8522_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/bcm3510 0xa6cdf5f3 bcm3510_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cx22700 0x3baa358b cx22700_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cx22702 0xf16f9d97 cx22702_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cx24110 0x5fa42feb cx24110_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cx24113 0x43940328 cx24113_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cx24116 0x2699ea9f cx24116_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cx24117 0x5ff0bdbe cx24117_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cx24120 0x791b9448 cx24120_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cx24123 0x358a787e cx24123_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cxd2820r 0xfe324ad6 cxd2820r_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cxd2841er 0xd01698e8 cxd2841er_attach_t_c -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cxd2841er 0xf842732f cxd2841er_attach_s -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cxd2880/cxd2880 0x89c6beab cxd2880_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/dib0070 0x5738f852 dib0070_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/dib0090 0xab559f8a dib0090_fw_register -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/dib0090 0xc34651eb dib0090_register -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/dib3000mb 0xd954e5e7 dib3000mb_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/dib3000mc 0xfa01c750 dib3000mc_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/dib7000m 0x6a9dfeca dib7000m_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/dib7000p 0x5dd0bc0f dib7000p_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/dib8000 0x5f32624a dib8000_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/dib9000 0x4b589912 dib9000_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/drx39xyj/drx39xyj 0x5fe20610 drx39xxj_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/drxd 0xfe9bbab6 drxd_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/drxk 0x13abd47b drxk_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/ds3000 0xbaf0792e ds3000_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/dvb-pll 0x2e7f0d3b dvb_pll_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/ec100 0xe9c5ccce ec100_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/gp8psk-fe 0xe4129cf7 gp8psk_fe_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/helene 0x8f7cac9d helene_attach_s -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/helene 0xbb33af45 helene_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/horus3a 0x92af7a7c horus3a_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/isl6405 0xdc88bcbb isl6405_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/isl6421 0x9ec49c8a isl6421_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/isl6423 0x30b8d8de isl6423_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/itd1000 0xeb7c469c itd1000_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/ix2505v 0x120445e1 ix2505v_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/l64781 0x4478beac l64781_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/lg2160 0x2a3853a6 lg2160_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/lgdt3305 0xf087053e lgdt3305_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/lgdt3306a 0x3b5bb004 lgdt3306a_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/lgdt330x 0xaa778c63 lgdt330x_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/lgs8gxx 0x8e48a89b lgs8gxx_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/lnbh25 0x8b591444 lnbh25_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/lnbp21 0x7e419c3f lnbh24_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/lnbp21 0x8773b9e8 lnbp21_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/lnbp22 0xfa5cfcf2 lnbp22_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/m88ds3103 0x1a279546 m88ds3103_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/m88rs2000 0x18c9b0a8 m88rs2000_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/mb86a16 0x33a0818b mb86a16_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/mb86a20s 0x4b9053f9 mb86a20s_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/mt312 0x124b64e3 mt312_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/mt352 0x74d8d7bf mt352_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/mxl5xx 0x8dace745 mxl5xx_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/nxt200x 0xcefd31e1 nxt200x_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/nxt6000 0x7e07383e nxt6000_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/or51132 0x593a0e7f or51132_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/or51211 0x51af6b29 or51211_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/s5h1409 0x49140e8e s5h1409_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/s5h1411 0x0cd2bf11 s5h1411_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/s5h1420 0x863d01b9 s5h1420_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/s5h1432 0xe2d4f263 s5h1432_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/s921 0x74e7c188 s921_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/si21xx 0xdb525272 si21xx_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/sp887x 0x01a8356b sp887x_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stb0899 0xd9706c81 stb0899_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stb6000 0x5f67c6df stb6000_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stb6100 0x6d5a6f5f stb6100_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv0288 0x6d62f3fc stv0288_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv0297 0xc1040b03 stv0297_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv0299 0x81b3f8bc stv0299_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv0367 0x122cf87d stv0367cab_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv0367 0x19b5d2c5 stv0367ddb_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv0367 0xad3f1519 stv0367ter_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv0900 0xc856aad1 stv0900_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv090x 0x88fe78e3 stv090x_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv0910 0x020bb4d9 stv0910_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv6110 0x69101371 stv6110_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv6110x 0x781bdeef stv6110x_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv6111 0xc7685fc3 stv6111_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda10021 0x76b5287e tda10021_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda10023 0x52c1032f tda10023_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda10048 0xba180153 tda10048_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda1004x 0x7ef8d69b tda10045_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda1004x 0xa4f66789 tda10046_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda10086 0xb8ca3afc tda10086_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda18271c2dd 0x128abdcc tda18271c2dd_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda665x 0x124b53a5 tda665x_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda8083 0x4e460488 tda8083_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda8261 0x209191d3 tda8261_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda826x 0x7b3702eb tda826x_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/ts2020 0x33e8c422 ts2020_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tua6100 0x388b5b00 tua6100_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/ves1820 0x679d5cb6 ves1820_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/ves1x93 0x93c6bb34 ves1x93_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/zl10036 0xd47df336 zl10036_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/zl10039 0x4fa560fa zl10039_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/zl10353 0x57a7fec2 zl10353_attach -EXPORT_SYMBOL_GPL drivers/media/i2c/aptina-pll 0xfeffc15e aptina_pll_calculate -EXPORT_SYMBOL_GPL drivers/media/i2c/ccs-pll 0xfc68f5eb ccs_pll_calculate -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x04f6649e max9271_configure_i2c -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x191dea1f max9271_set_deserializer_address -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x20147dba max9271_set_high_threshold -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x28b21f8f max9271_enable_gpios -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x3c727319 max9271_disable_gpios -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x4a7b3372 max9271_configure_gmsl_link -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x951428d5 max9271_clear_gpios -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0xa5bf59cc max9271_set_gpios -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0xc3ba74e0 max9271_wake_up -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0xc4390e01 max9271_verify_id -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0xcd97a662 max9271_set_translation -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0xdb7ac928 max9271_set_serial_link -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0xfb2616b3 max9271_set_address -EXPORT_SYMBOL_GPL drivers/media/i2c/power_ctrl_logic 0x61e30e03 power_ctrl_logic_set_power -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x006f9dd9 media_graph_walk_cleanup -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x032c74ee __media_pipeline_stop -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x06ba1305 media_entity_pads_init -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x0f13eec9 media_remove_intf_link -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x10aaa328 media_entity_remote_pad -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x1f648d9b media_devnode_remove -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x238e2424 media_device_cleanup -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x29c6b608 media_pipeline_stop -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x3264423b media_device_unregister_entity -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x36d91a46 media_graph_walk_next -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x3b7dfd76 media_request_object_complete -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x3e629389 media_graph_walk_start -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x3fd574df __media_remove_intf_links -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x46504346 __media_remove_intf_link -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x48eff879 media_entity_find_link -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x493f0ce3 media_device_register_entity_notify -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x4b6c4bf0 __media_device_usb_init -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x4bd15d42 media_create_pad_links -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x53c3a021 media_request_put -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x5c80b971 media_entity_get_fwnode_pad -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x61e9d700 media_request_object_init -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x636fe7c9 __media_entity_remove_links -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x64619416 media_request_object_put -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x70a81883 media_device_register_entity -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x73c41ddc media_device_unregister_entity_notify -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x7c9f3779 media_request_get_by_fd -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x7f6e1908 media_request_object_bind -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x86b695c5 media_graph_walk_init -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x8df8d5d5 media_request_object_unbind -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x980626f2 media_create_pad_link -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x9c1f2490 media_device_unregister -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x9e088448 media_devnode_create -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xa8a72327 media_request_object_find -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xaba32ae4 media_device_delete -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xae6ec869 media_remove_intf_links -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xb3fa6944 media_device_init -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xb97dbe1f __media_entity_setup_link -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xbcbfc687 media_entity_remove_links -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xcca54206 media_device_pci_init -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xdb168a82 media_entity_setup_link -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xdd08a14a media_pipeline_start -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xe0cbc236 media_create_intf_link -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xe5ceecd6 media_entity_enum_cleanup -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xea12eddc media_get_pad_index -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xf05c66df media_device_usb_allocate -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xf58b676b __media_pipeline_start -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xfb035b58 __media_device_register -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xfc781c47 __media_entity_enum_init -EXPORT_SYMBOL_GPL drivers/media/pci/bt8xx/dst 0xbbd65a72 dst_attach -EXPORT_SYMBOL_GPL drivers/media/pci/bt8xx/dst_ca 0xa8cdd534 dst_ca_attach -EXPORT_SYMBOL_GPL drivers/media/pci/cx88/cx88xx 0x1608d61c cx88_setup_xc3028 -EXPORT_SYMBOL_GPL drivers/media/pci/ddbridge/ddbridge-dummy-fe 0xec2dca91 ddbridge_dummy_fe_qam_attach -EXPORT_SYMBOL_GPL drivers/media/pci/intel/ipu6/intel-ipu6 0x21be2610 ipu_buttress_remove_psys_constraint -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 0x2c87a6e7 ipu_trace_uninit -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 0x66890758 ipu_buttress_tsc_ticks_to_ns -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 0x8010918a ipu_trace_restore -EXPORT_SYMBOL_GPL drivers/media/pci/intel/ipu6/intel-ipu6 0x8454de03 ipu_buttress_add_psys_constraint -EXPORT_SYMBOL_GPL drivers/media/pci/intel/ipu6/intel-ipu6 0x8ca55a90 ipu_cpd_validate_cpd_file -EXPORT_SYMBOL_GPL drivers/media/pci/intel/ipu6/intel-ipu6 0x97bd3ce4 ipu_trace_init -EXPORT_SYMBOL_GPL drivers/media/pci/intel/ipu6/intel-ipu6 0x9d4b357c ipu_buttress_unmap_fw_image -EXPORT_SYMBOL_GPL drivers/media/pci/intel/ipu6/intel-ipu6 0x9f03405a ipu_trace_stop -EXPORT_SYMBOL_GPL drivers/media/pci/intel/ipu6/intel-ipu6 0xa86d3ff9 ipu_cpd_free_pkg_dir -EXPORT_SYMBOL_GPL drivers/media/pci/intel/ipu6/intel-ipu6 0xa996e10f ipu_fw_com_release -EXPORT_SYMBOL_GPL drivers/media/pci/intel/ipu6/intel-ipu6 0xad23ebbc ipu_cpd_create_pkg_dir -EXPORT_SYMBOL_GPL drivers/media/pci/intel/ipu6/intel-ipu6 0xae0e1641 ipu_buttress_map_fw_image -EXPORT_SYMBOL_GPL drivers/media/pci/intel/ipu6/intel-ipu6 0xc76903d5 ipu_fw_com_close -EXPORT_SYMBOL_GPL drivers/media/pci/intel/ipu6/intel-ipu6 0xcfff394e ipu_fw_com_open -EXPORT_SYMBOL_GPL drivers/media/pci/intel/ipu6/intel-ipu6 0xd82eb3df ipu_cpd_pkg_dir_get_size -EXPORT_SYMBOL_GPL drivers/media/pci/intel/ipu6/intel-ipu6 0xdf532a16 ipu_buttress_tsc_read -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 0xf19708cf ipu_send_put_token -EXPORT_SYMBOL_GPL drivers/media/pci/intel/ipu6/intel-ipu6 0xf4be7a05 ipu_recv_get_token -EXPORT_SYMBOL_GPL drivers/media/pci/intel/ipu6/intel-ipu6 0xfded09d7 ipu_fw_com_prepare -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x05eb3f00 mantis_pci_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x173e51c4 mantis_i2c_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x2757ec9c mantis_dvb_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x313916d3 mantis_uart_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x3152d8e2 mantis_pci_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x35c5b45b mantis_uart_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x39fc92aa mantis_input_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x60082d96 mantis_frontend_soft_reset -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x6f23c565 mantis_dma_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x84fc3547 mantis_input_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x890d3f55 mantis_frontend_power -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x8aebd0d7 mantis_get_mac -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x8c6e72ac mantis_stream_control -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x96125674 mantis_i2c_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x9b9a5425 mantis_ca_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xa67beb2c mantis_dvb_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xcb0e71ae mantis_ca_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xee0fc2d5 mantis_dma_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xf4c7aa98 mantis_gpio_set_bits -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x2b147ad9 saa7134_ts_start_streaming -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x3b448649 saa7134_g_tuner -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x4e04a92c saa7134_enum_input -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x56992c76 saa7134_ts_queue_setup -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x5e515fb0 saa7134_stop_streaming -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x6ccc1e86 saa7134_ts_buffer_prepare -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x6d913fa4 saa7134_ts_buffer_init -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x98c064e7 saa7134_ts_stop_streaming -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xa29b09c2 saa7134_vb2_buffer_queue -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xacbf2811 saa7134_querycap -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xacd1a49a saa7134_g_frequency -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xadbceb63 saa7134_querystd -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xc0f604c6 saa7134_g_std -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xc10f4c00 saa7134_g_input -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xc13e3955 saa7134_ts_qops -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xcd26b75e saa7134_s_tuner -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xeaf5bff3 saa7134_s_frequency -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xed66ecb1 saa7134_s_std -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xef3f488b saa7134_s_input -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x1a4a1393 ttpci_budget_init_hooks -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x3002e4ac ttpci_budget_deinit -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x30b3d13e ttpci_budget_debiwrite -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x30f03b0a ttpci_budget_irq10_handler -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x4fcaa1ee ttpci_budget_init -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x5ed62ca1 ttpci_budget_debiread -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x7948c222 budget_debug -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xa93fb1ca ttpci_budget_set_video_port -EXPORT_SYMBOL_GPL drivers/media/platform/marvell-ccic/mcam-core 0x84f73b08 mccic_register -EXPORT_SYMBOL_GPL drivers/media/platform/marvell-ccic/mcam-core 0x9bb9f963 mccic_shutdown -EXPORT_SYMBOL_GPL drivers/media/platform/marvell-ccic/mcam-core 0xc5971a6b mccic_suspend -EXPORT_SYMBOL_GPL drivers/media/platform/marvell-ccic/mcam-core 0xd67e7c49 mccic_resume -EXPORT_SYMBOL_GPL drivers/media/platform/marvell-ccic/mcam-core 0xd6d3aae8 mccic_irq -EXPORT_SYMBOL_GPL drivers/media/radio/shark2 0x6952c360 radio_tea5777_init -EXPORT_SYMBOL_GPL drivers/media/radio/shark2 0xa14a0d8a radio_tea5777_exit -EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0x7102345a si470x_stop -EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0xb403d16b si470x_start -EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0xc5785dfe si470x_ctrl_ops -EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0xd17a52c6 si470x_viddev_template -EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0xde736bab si470x_set_freq -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x16a59a5e ir_raw_event_handle -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x1da74c45 rc_free_device -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x270ca19a rc_register_device -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x2f30a245 lirc_scancode_event -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x3aff4ddf rc_keydown -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x42f37c33 rc_allocate_device -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x4638b92d rc_keydown_notimeout -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x478ccb44 devm_rc_allocate_device -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x528aa7dd devm_rc_register_device -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x70c4b286 ir_raw_event_store_edge -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x7107d08d rc_map_register -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x746cb965 rc_map_get -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x79508f56 ir_raw_event_store -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x8fee1fd6 rc_g_keycode_from_table -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xa9ac2c7c rc_repeat -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xba280a73 rc_unregister_device -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xc432a246 ir_raw_event_store_with_timeout -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xcdd14b78 ir_raw_event_set_idle -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xdb2ad7ee ir_raw_event_store_with_filter -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xf864f53d rc_keyup -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xfdea13b0 rc_map_unregister -EXPORT_SYMBOL_GPL drivers/media/tuners/fc0011 0xfac375ea fc0011_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/fc0012 0xf1426a75 fc0012_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/fc0013 0x23fa04f2 fc0013_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/max2165 0xd9558edd max2165_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/mc44s803 0x11a8b7d4 mc44s803_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/mt2060 0x416c804b mt2060_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/mt2063 0x0252dffc mt2063_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/mt20xx 0xeca579ad microtune_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/mt2131 0x71013545 mt2131_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/mt2266 0x3e8a1db0 mt2266_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/mxl5005s 0x2dd7c76d mxl5005s_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/mxl5007t 0x8c544b5f mxl5007t_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/qt1010 0xbbf56194 qt1010_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/r820t 0x38ce998b r820t_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tda18218 0x81625673 tda18218_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tda18271 0x88e9847c tda18271_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tda827x 0x6d4bf84f tda827x_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tda8290 0x214647a7 tda829x_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tda8290 0x9b07ced6 tda829x_probe -EXPORT_SYMBOL_GPL drivers/media/tuners/tda9887 0x01804c07 tda9887_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tea5761 0x57ec9ba3 tea5761_autodetection -EXPORT_SYMBOL_GPL drivers/media/tuners/tea5761 0xa131b1bb tea5761_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tea5767 0x53c607b9 tea5767_autodetection -EXPORT_SYMBOL_GPL drivers/media/tuners/tea5767 0xb9e7b507 tea5767_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tuner-simple 0xcf78a310 simple_tuner_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/xc4000 0xf7d65b51 xc4000_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/xc5000 0x0dc1e962 xc5000_attach -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x017ea7c7 cx231xx_tuner_callback -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x2baa75d7 cx231xx_dev_init -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x3533d153 cx231xx_enable656 -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x4edc63a4 cx231xx_send_usb_command -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x63bf4e99 cx231xx_dev_uninit -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x64fad4cd cx231xx_uninit_vbi_isoc -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x65aef9cb cx231xx_get_i2c_adap -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x70a74eb0 cx231xx_disable656 -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x8005b3bc cx231xx_demod_reset -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x893fdf02 cx231xx_init_isoc -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x9626510b cx231xx_set_mode -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x99bb8322 cx231xx_enable_i2c_port_3 -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x9ba636be cx231xx_capture_start -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x9be0323f cx231xx_uninit_bulk -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x9ea8afc8 is_fw_load -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xa4e39a0f cx231xx_send_gpio_cmd -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xafdad41b cx231xx_uninit_isoc -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xcb40209a cx231xx_set_alt_setting -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xcca0d323 cx231xx_init_vbi_isoc -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xe8464f5b cx231xx_init_bulk -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xfecea772 cx231xx_unmute_audio -EXPORT_SYMBOL_GPL drivers/media/usb/dvb-usb-v2/mxl111sf-demod 0xde1c8ab4 mxl111sf_demod_attach -EXPORT_SYMBOL_GPL drivers/media/usb/dvb-usb-v2/mxl111sf-tuner 0x25b27d22 mxl111sf_tuner_attach -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x1935551d em28xx_read_reg -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x2267039d em28xx_setup_xc3028 -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x272c0e58 em28xx_write_ac97 -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x2def4769 em28xx_write_reg_bits -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x316f0dd8 em28xx_gpio_set -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x4890775e em28xx_init_usb_xfer -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x4e3d8420 em28xx_write_reg -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x4f2b69b4 em28xx_write_regs -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x642b610f em28xx_uninit_usb_xfer -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x70b3ee30 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 0xa21d037d em28xx_find_led -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xb0a845b9 em28xx_toggle_reg_bits -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xcb98b79f em28xx_audio_analog_set -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xe07aab47 em28xx_audio_setup -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xe6f7d6f0 em28xx_stop_urbs -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xeac4979c em28xx_alloc_urbs -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xeb200a0a em28xx_set_mode -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xf7b497c1 em28xx_init_camera -EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x2309a6d6 tm6000_xc5000_callback -EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x6a7df09a tm6000_set_audio_bitrate -EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x89b611dd tm6000_debug -EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x8e74a3f8 tm6000_get_reg -EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0xb1cdeed6 tm6000_set_reg_mask -EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0xd3d2206d tm6000_set_reg -EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0xdff8e89d tm6000_tuner_callback -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0x05ad634b __v4l2_async_notifier_add_fwnode_remote_subdev -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0x12c23e41 __v4l2_async_notifier_add_fwnode_subdev -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0x40c937e9 v4l2_async_notifier_cleanup -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0x4edc3943 __v4l2_async_notifier_add_i2c_subdev -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0xd338ed1a __v4l2_async_notifier_add_subdev -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x01612c0b v4l2_detect_gtf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x08402862 v4l2_print_dv_timings -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x0958448b v4l2_set_edid_phys_addr -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 0x3900b11b v4l2_flash_indicator_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-flash-led-class 0x63d62045 v4l2_flash_release -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-flash-led-class 0x9eda30d5 v4l2_flash_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x02c60894 v4l2_fwnode_connector_parse -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x063f167e v4l2_fwnode_device_parse -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x0ce97c8f v4l2_async_register_subdev_sensor -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x1d010a7d v4l2_fwnode_endpoint_alloc_parse -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x4c9c495b v4l2_async_notifier_parse_fwnode_endpoints -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x5c4b6c0f v4l2_fwnode_endpoint_free -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x612ddce5 v4l2_fwnode_connector_free -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x66d47818 v4l2_fwnode_parse_link -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0xa3bb9ea5 v4l2_fwnode_connector_add_link -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0xf5e628be v4l2_fwnode_put_link -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0xf8f2f9ee v4l2_fwnode_endpoint_parse -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x00eb1f10 v4l2_m2m_ioctl_prepare_buf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x03dc6930 v4l2_m2m_ioctl_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x17ee3229 v4l2_m2m_buf_remove_by_buf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x18120e5d v4l2_m2m_prepare_buf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x1d7ad162 v4l2_m2m_encoder_cmd -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x35880a09 v4l2_m2m_poll -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x38b54d7e v4l2_m2m_ioctl_stateless_decoder_cmd -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x3ab8c5ee v4l2_m2m_create_bufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x3c63dc75 v4l2_m2m_next_buf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x448581d3 v4l2_m2m_ioctl_streamon -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x4b6e49dd v4l2_m2m_streamoff -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x4d0e85e5 v4l2_m2m_ioctl_try_decoder_cmd -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x51407567 v4l2_m2m_register_media_controller -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x517deace v4l2_m2m_fop_poll -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x537a4a00 v4l2_m2m_ioctl_reqbufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x57a799ab v4l2_m2m_ioctl_encoder_cmd -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x621d021b v4l2_m2m_ioctl_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x6465d967 v4l2_m2m_expbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x6494589e v4l2_m2m_ioctl_decoder_cmd -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x6beb8d1d v4l2_m2m_try_schedule -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x6d787030 v4l2_m2m_ioctl_try_encoder_cmd -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x6fdead7a v4l2_m2m_ioctl_stateless_try_decoder_cmd -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x703ce579 v4l2_m2m_buf_copy_metadata -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x730f2eae v4l2_m2m_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x751dddf5 v4l2_m2m_ctx_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x7545c73e v4l2_m2m_reqbufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x77e5739a v4l2_m2m_fop_mmap -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x7a869d17 v4l2_m2m_ioctl_expbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x7e17a652 v4l2_m2m_ioctl_create_bufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x8dd2db5a v4l2_m2m_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x90549536 v4l2_m2m_last_buf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x93cd4dc9 v4l2_m2m_buf_remove -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xa2c01529 v4l2_m2m_last_buffer_done -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xa664ff33 v4l2_m2m_update_start_streaming_state -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xa80bfc01 v4l2_m2m_ioctl_querybuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xad1c9e92 v4l2_m2m_buf_remove_by_idx -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xbc13184b v4l2_m2m_querybuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xc075ced9 v4l2_m2m_request_queue -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xc2458c70 v4l2_m2m_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xc379c157 v4l2_m2m_ctx_release -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xc6fca5ad v4l2_m2m_release -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xd235b5ee v4l2_m2m_buf_queue -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xd54dab19 v4l2_m2m_streamon -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xe0b6974e v4l2_m2m_decoder_cmd -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xe36c96c6 v4l2_m2m_update_stop_streaming_state -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xe905098b v4l2_m2m_ioctl_streamoff -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xf13ff84d v4l2_m2m_unregister_media_controller -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x1a5b2097 videobuf_queue_cancel -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x238d1e99 videobuf_next_field -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x38d118c1 videobuf_mmap_mapper -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x399c9282 videobuf_streamon -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x4a45d52a videobuf_streamoff -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x52560476 videobuf_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x57296bf2 videobuf_reqbufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x6029803a videobuf_read_one -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x7d6404cf videobuf_queue_to_vaddr -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x83379c09 videobuf_stop -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x89aa4376 videobuf_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x8b146550 videobuf_queue_core_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x920ad8bd videobuf_iolock -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x953d6d96 videobuf_read_stream -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x9bba5ba4 videobuf_queue_is_busy -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xa0869d73 __videobuf_mmap_setup -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xa2caabcd videobuf_alloc_vb -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xb9a2d4b9 videobuf_mmap_setup -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xc1736cbd videobuf_read_start -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xdd7429b0 videobuf_querybuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xe93ac09f videobuf_waiton -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xeb1610cb videobuf_poll_stream -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xeb30753e videobuf_mmap_free -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xfe55418a videobuf_read_stop -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x2ac42a55 videobuf_dma_unmap -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x31029226 videobuf_queue_sg_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x4f954052 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 0xb8482c70 videobuf_dma_free -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0x164ac776 videobuf_vmalloc_free -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0x8605d8be videobuf_to_vmalloc -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0xd0f07e60 videobuf_queue_vmalloc_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x018dfdc9 v4l2_event_unsubscribe -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x02fd13e2 v4l2_device_register -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x04dea3f8 v4l2_device_unregister -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x0f5bae37 v4l2_i2c_new_subdev_board -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x1586f0ad v4l2_ctrl_request_hdl_find -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x17583bd5 v4l2_event_dequeue -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x1aebd59c v4l2_create_fwnode_links_to_pad -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x1fe76db7 v4l2_event_subdev_unsubscribe -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x29b01719 __tracepoint_vb2_v4l2_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x30ab1ec9 v4l2_fh_del -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x34fad06e __SCK__tp_func_vb2_v4l2_buf_done -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x36eeebcb v4l2_subdev_link_validate_default -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x36f5906c __traceiter_vb2_v4l2_buf_done -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x43b12b79 v4l2_event_subscribe -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x44115493 v4l2_subdev_link_validate -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x44c050bc __v4l2_device_register_subdev_nodes -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x4d39dd74 v4l2_fh_open -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x52090cdb v4l2_i2c_subdev_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x540ca0af v4l2_compat_ioctl32 -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x5f6641e6 __tracepoint_vb2_v4l2_buf_done -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x62aea070 v4l2_pipeline_pm_put -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x65ccf13a __SCK__tp_func_vb2_v4l2_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x6b21013e __tracepoint_vb2_v4l2_qbuf -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 0x701fc0f8 __v4l2_ctrl_handler_setup -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x72d3648c v4l2_event_queue -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x74c94fb4 v4l_vb2q_enable_media_source -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7c30faf0 __SCK__tp_func_vb2_v4l2_buf_queue -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7ed77c1f __SCK__tp_func_vb2_v4l2_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x802b4b65 v4l2_device_disconnect -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x8206a7fe __traceiter_vb2_v4l2_buf_queue -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x8e34cc01 v4l2_subdev_notify_event -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x8eb9ce4d v4l2_fh_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x9132eff0 v4l2_pipeline_pm_get -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x923538b5 v4l2_device_unregister_subdev -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x963ea5e5 v4l2_mc_create_media_graph -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x9add3756 v4l2_create_fwnode_links -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x9cd691ef v4l2_src_change_event_subscribe -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x9f386d73 __tracepoint_vb2_v4l2_buf_queue -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x9f472429 v4l2_fh_add -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x9fef35ac v4l2_apply_frmsize_constraints -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa04284ad v4l2_src_change_event_subdev_subscribe -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa1893d14 __SCT__tp_func_vb2_v4l2_buf_done -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa333cfec v4l2_ctrl_request_hdl_ctrl_find -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa70e7ff2 __traceiter_vb2_v4l2_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xab0976e5 v4l2_fh_exit -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xabaea645 v4l2_device_put -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xad967d9d v4l2_subdev_get_fwnode_pad_1_to_1 -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xb1016fa7 v4l2_g_parm_cap -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xb13d41a0 v4l2_subdev_free_state -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xb148ce59 v4l_enable_media_source -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xb25fba3a v4l2_event_unsubscribe_all -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xb401e1f0 v4l2_subdev_alloc_state -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xbc8ccad1 v4l2_event_wake_all -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc0df318c v4l2_device_set_name -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc0f9b3ac v4l2_get_link_freq -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc56112ae v4l2_spi_new_subdev -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc8dd867f __SCT__tp_func_vb2_v4l2_buf_queue -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xcc4112b3 __traceiter_vb2_v4l2_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xcc501597 v4l2_fill_pixfmt -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xcdec9216 v4l2_fh_is_singular -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xd4562ea9 v4l2_i2c_new_subdev -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xd541e31a __SCT__tp_func_vb2_v4l2_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xda6c2df7 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 0xe2be9efc v4l2_s_parm_cap -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xeb5e9df9 v4l2_i2c_subdev_set_name -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xebb539e9 v4l_disable_media_source -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xeebf3285 v4l2_i2c_subdev_addr -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf1209183 v4l2_fh_release -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf2183d14 v4l2_pipeline_link_notify -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 0xf629e7a4 v4l2_event_queue_fh -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf73cc491 v4l2_event_pending -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xfa60b168 v4l2_device_register_subdev -EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0x4f4d8f13 pm80x_init -EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0xd99fd720 pm80x_deinit -EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0xe1c5cbda pm80x_regmap_config -EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0xf8162801 pm80x_pm_ops -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x06db198d wm5102_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x163d888a cs47l24_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x16e554c2 wm5110_patch -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x2d1b7dbf arizona_clk32k_enable -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x2ee032ff arizona_free_irq -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x4048fbbc wm8997_aod -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x41313966 arizona_request_irq -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x45e3d8c1 wm5102_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x4819b896 arizona_pm_ops -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x4c087981 wm5110_aod -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x54110e35 wm8998_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x5c910a9a arizona_clk32k_disable -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x72857662 arizona_set_irq_wake -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x7361db00 wm8997_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x7f87d20a arizona_dev_exit -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x9e1199ce cs47l24_patch -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 0xb8b08cfc wm5110_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xc81b43ab wm5110_revd_irq -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xea66b00b arizona_dev_init -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xfb884db0 wm5110_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xfba2410f wm8997_patch -EXPORT_SYMBOL_GPL drivers/mfd/atc260x-core 0x622e8eaf atc260x_match_device -EXPORT_SYMBOL_GPL drivers/mfd/atc260x-core 0xa8599cb7 atc260x_device_probe -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x07447f14 da9150_write_qif -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x1cc73c69 da9150_bulk_read -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x2899c12e da9150_bulk_write -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x3265c6f6 da9150_set_bits -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x805d65ec da9150_reg_write -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x941779e6 da9150_read_qif -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x97b6d3f3 da9150_reg_read -EXPORT_SYMBOL_GPL drivers/mfd/intel-lpss 0x7c1901bc intel_lpss_probe -EXPORT_SYMBOL_GPL drivers/mfd/intel-lpss 0xb5f5fa62 intel_lpss_remove -EXPORT_SYMBOL_GPL drivers/mfd/intel-lpss 0xce488f97 intel_lpss_resume -EXPORT_SYMBOL_GPL drivers/mfd/intel-lpss 0xceb9e62d intel_lpss_prepare -EXPORT_SYMBOL_GPL drivers/mfd/intel-lpss 0xd47f1aa5 intel_lpss_suspend -EXPORT_SYMBOL_GPL drivers/mfd/intel_pmc_bxt 0x0a671467 intel_pmc_gcr_update -EXPORT_SYMBOL_GPL drivers/mfd/intel_pmc_bxt 0x13ba0908 intel_pmc_gcr_read64 -EXPORT_SYMBOL_GPL drivers/mfd/intel_pmc_bxt 0x21961cee intel_pmc_s0ix_counter_read -EXPORT_SYMBOL_GPL drivers/mfd/iqs62x 0xa436f4de iqs62x_events -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x12b878c5 kempld_read16 -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x1a481081 kempld_read32 -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x2eb3ec23 kempld_write16 -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x372bcdb1 kempld_write8 -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x6a85143b kempld_release_mutex -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x75746feb kempld_read8 -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x9e677865 kempld_write32 -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xd94423cb kempld_get_mutex -EXPORT_SYMBOL_GPL drivers/mfd/ljca 0x188e8696 ljca_transfer_noack -EXPORT_SYMBOL_GPL drivers/mfd/ljca 0x245f02b1 ljca_register_event_cb -EXPORT_SYMBOL_GPL drivers/mfd/ljca 0x79dd26cb ljca_transfer -EXPORT_SYMBOL_GPL drivers/mfd/ljca 0xd1007291 ljca_unregister_event_cb -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0x1b49d039 lm3533_write -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0x7a68d51f lm3533_update -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0xf87f375f lm3533_read -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x0bbab561 lm3533_ctrlbank_get_brightness -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x2f396b09 lm3533_ctrlbank_set_brightness -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x34c16fec lm3533_ctrlbank_set_pwm -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x40f83e24 lm3533_ctrlbank_enable -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x5ee7072b lm3533_ctrlbank_set_max_current -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x9103f4ef lm3533_ctrlbank_get_pwm -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xf23a473f lm3533_ctrlbank_disable -EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0x1038c622 lp3943_update_bits -EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0x6e201c99 lp3943_write_byte -EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0xfa5f44bf lp3943_read_byte -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x04069ea9 cs47l35_16bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x040b42e9 cs47l35_32bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x0f379262 madera_of_match -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x1920699c cs47l92_32bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x192db5dc cs47l92_16bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x29ccd3e5 cs47l35_patch -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x2ea17261 cs47l90_16bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x2eacae21 cs47l90_32bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x367405d1 cs47l85_16bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x3679d991 cs47l85_32bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x473383a5 cs47l35_32bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x473e5fe5 cs47l35_16bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x5a157490 cs47l92_16bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x5a18a8d0 cs47l92_32bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x5a336afd cs47l15_patch -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x6cad4d91 madera_pm_ops -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x6d946f6d cs47l90_32bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x6d99b32d cs47l90_16bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x754118dd cs47l85_32bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x754cc49d cs47l85_16bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x77435450 cs47l85_patch -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x8df02969 cs47l15_16bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x8dfdf529 cs47l15_32bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x98a54a13 madera_dev_exit -EXPORT_SYMBOL_GPL drivers/mfd/madera 0xcec53465 cs47l15_32bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0xcec8e825 cs47l15_16bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0xd6236ab6 cs47l92_patch -EXPORT_SYMBOL_GPL drivers/mfd/madera 0xdafe8522 madera_dev_init -EXPORT_SYMBOL_GPL drivers/mfd/madera 0xebe384cb madera_name_from_type -EXPORT_SYMBOL_GPL drivers/mfd/madera 0xf58cf131 cs47l90_patch -EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x22443a98 mc13xxx_variant_mc34708 -EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x304bcff0 mc13xxx_variant_mc13783 -EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x70f184d0 mc13xxx_variant_mc13892 -EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x83e5ca12 mc13xxx_common_init -EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x90fd7f1b mc13xxx_common_exit -EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x9b6fea7c mc13xxx_adc_do_conversion -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x01ddfe0c pcf50633_irq_unmask -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x2dc4a976 pcf50633_reg_read -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x3a2bee9e pcf50633_irq_mask -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x3d5dac33 pcf50633_read_block -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x480a1540 pcf50633_reg_clear_bits -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x55c2a3eb pcf50633_write_block -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x5773f9e7 pcf50633_free_irq -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x62e7d298 pcf50633_register_irq -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x75a63de0 pcf50633_reg_write -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xaab14daf pcf50633_reg_set_bit_mask -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xfa60d42f pcf50633_irq_mask_get -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0x5a087890 pcf50633_adc_sync_read -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0xe1f664c3 pcf50633_adc_async_read -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x126867e3 pcf50633_gpio_invert_set -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x43809497 pcf50633_gpio_power_supply_set -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xaa3a991f pcf50633_gpio_invert_get -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xc6556021 pcf50633_gpio_get -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xd7f28512 pcf50633_gpio_set -EXPORT_SYMBOL_GPL drivers/mfd/rave-sp 0x43e53ef9 rave_sp_exec -EXPORT_SYMBOL_GPL drivers/mfd/rave-sp 0xa9592635 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 0x00d37987 si476x_core_cmd_am_rsq_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x04cebf3d si476x_core_is_a_secondary_tuner -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x0684aa51 si476x_core_cmd_ic_link_gpo_ctl_pin_cfg -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x09bc8ec6 si476x_core_cmd_agc_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x140d835d si476x_core_start -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x15fc090e si476x_core_cmd_fm_seek_start -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x1b80a277 si476x_core_cmd_fm_rds_blockcount -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x1bb625e5 si476x_core_has_diversity -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x25a4ee77 si476x_core_cmd_set_property -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x391ca2c1 si476x_core_i2c_xfer -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x42082716 si476x_core_cmd_dig_audio_pin_cfg -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x47d394ee si476x_core_cmd_power_down -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x48e75899 si476x_core_cmd_zif_pin_cfg -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x494fc140 si476x_core_cmd_am_seek_start -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x4bf6a5c0 si476x_core_cmd_am_acf_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x50935b9a si476x_core_cmd_fm_phase_div_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x561bde33 si476x_core_cmd_fm_rsq_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x5917ade8 si476x_core_is_powered_up -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x6a0a47c3 si476x_core_is_in_am_receiver_mode -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x762875c5 si476x_core_cmd_func_info -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x773c3d23 si476x_core_cmd_power_up -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x7ed7a542 si476x_core_set_power_state -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x8016a494 devm_regmap_init_si476x -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x804e73a1 si476x_core_cmd_fm_tune_freq -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x88d40e0e si476x_core_cmd_fm_phase_diversity -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x8a3624d7 si476x_core_cmd_intb_pin_cfg -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x8e033ca6 si476x_core_has_am -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xb8a68ac4 si476x_core_cmd_fm_acf_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xc3010f34 si476x_core_cmd_fm_rds_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xc8bbf507 si476x_core_stop -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xd05efe15 si476x_core_cmd_get_property -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xdce0196e si476x_core_is_a_primary_tuner -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xe9e2092c si476x_core_cmd_ana_audio_pin_cfg -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xf82ef101 si476x_core_cmd_am_tune_freq -EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x188910dc sm501_find_clock -EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x446d8ebb sm501_set_clock -EXPORT_SYMBOL_GPL drivers/mfd/sm501 0xd0b8d1d4 sm501_unit_power -EXPORT_SYMBOL_GPL drivers/mfd/sm501 0xd6c1d2e0 sm501_misc_control -EXPORT_SYMBOL_GPL drivers/mfd/sm501 0xd8e56043 sm501_modify_reg -EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x2e97e2c8 am335x_tsc_se_set_once -EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x9b92db22 am335x_tsc_se_set_cache -EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0xb508490c am335x_tsc_se_adc_done -EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0xb5fa9bb8 am335x_tsc_se_clr -EXPORT_SYMBOL_GPL drivers/mfd/ucb1400_core 0xb8f1ade0 ucb1400_adc_read -EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x031bcd0b alcor_read32be -EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x7a9a7c05 alcor_write32 -EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x858b3ee5 alcor_read8 -EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x904c2572 alcor_write32be -EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0xa997f1ed alcor_read32 -EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0xb86ce15d alcor_write16 -EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0xf91569e5 alcor_write8 -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x0aaa9f93 rtsx_pci_stop_cmd -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x12aaa8dc rtsx_pci_dma_unmap_sg -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x13377e1a rtsx_pci_dma_transfer -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x1ea04f1e rtsx_pci_read_ppbuf -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x1f941465 rtsx_pci_card_power_off -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x24c14e25 rtsx_pci_start_run -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x2cf032eb rtsx_pci_write_phy_register -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x33766521 rtsx_pci_read_phy_register -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x39ee97ac rtsx_pci_card_exist -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x3b3d1610 rtsx_pci_card_exclusive_check -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x3c360235 rtsx_pci_add_cmd -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x446a71fe rtsx_pci_card_pull_ctl_enable -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x49641c1b rtsx_pci_dma_map_sg -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x4d9c8768 rtsx_pci_send_cmd_no_wait -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x59e74f1c rtsx_pci_write_register -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x5d395a77 rtsx_pci_card_pull_ctl_disable -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x89a63896 rtsx_pci_switch_output_voltage -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x9bd51be2 rtsx_pci_complete_unfinished_transfer -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xa83e552f rtsx_pci_send_cmd -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xb0da58df rtsx_pci_write_ppbuf -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xb96a73ca rtsx_pci_read_register -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xc5acd95e rtsx_pci_switch_clock -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xe3a2920c rtsx_pci_transfer_data -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xfda865f4 rtsx_pci_card_power_on -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x0ccc9aa6 rtsx_usb_write_register -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x15afe5e3 rtsx_usb_read_ppbuf -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x38331135 rtsx_usb_ep0_write_register -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x3872bd29 rtsx_usb_send_cmd -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x3c8ab71a rtsx_usb_read_register -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x4568d5a0 rtsx_usb_add_cmd -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x599375a5 rtsx_usb_get_rsp -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x5ac3ce19 rtsx_usb_write_ppbuf -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x88321d1a rtsx_usb_ep0_read_register -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xaf107a58 rtsx_usb_transfer_data -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xe722632a rtsx_usb_switch_clock -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xf61f3322 rtsx_usb_get_card_status -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xfa2d53f9 rtsx_usb_card_exclusive_check -EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x26b68056 cb710_sg_dwiter_read_next_block -EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x4c707933 cb710_set_irq_handler -EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x65418489 cb710_sg_dwiter_write_next_block -EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0xf2494a91 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 0x3e7cf535 enclosure_find -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x51fdb940 enclosure_unregister -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x53670c0b enclosure_component_register -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x79629f4a enclosure_component_alloc -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xcd85f997 enclosure_register -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xe8695e84 enclosure_add_device -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xec208774 enclosure_remove_device -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xf87e61db enclosure_for_each_device -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 0x18f6ad30 lis3lv02d_remove_fs -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x19fc7999 lis3lv02d_poweron -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x2d817882 lis3lv02d_init_dt -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x411799e6 lis3lv02d_joystick_enable -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x75c3c418 lis3lv02d_joystick_disable -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x90f411dc lis3_dev -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x9b0bab2d lis3lv02d_poweroff -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xf5449ca7 lis3lv02d_init_device -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x092f8f0c mei_cldev_disable -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x0e7f1c8d mei_cldev_enabled -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x19877b46 mei_cldev_register_notif_cb -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x201dfd2a mei_hbm_pg -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x24821703 mei_cldev_uuid -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x2dc3de0d mei_register -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x3793a270 mei_cldev_recv_nonblock_vtag -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x3929ec82 mei_cldev_driver_unregister -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x60a3b70b mei_irq_write_handler -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x6142735c mei_cldev_recv_vtag -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x69dfdc60 mei_cldev_enable -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x73e897d6 mei_reset -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x77624136 __mei_cldev_driver_register -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x8d58b617 mei_irq_compl_handler -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x8ed4f8a8 mei_start -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x90a24af4 mei_fw_status2str -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xaae2118c mei_cldev_send_vtag -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xb7c52b23 mei_cldev_set_drvdata -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xb9a86046 mei_cldev_ver -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xbc50e89f mei_cldev_recv_nonblock -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xbc574218 mei_cancel_work -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xbdf8d51c mei_cldev_register_rx_cb -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xc3c864c5 mei_cldev_recv -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xc41d21d3 mei_hbm_pg_resume -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xd33bc050 mei_deregister -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xd6a67205 mei_stop -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xdd8e9834 mei_device_init -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xe55af75f mei_restart -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xe987ad0f mei_irq_read_handler -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xf2fcd237 mei_cldev_get_drvdata -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xf8d2081d mei_cldev_send -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xfc64fda2 mei_write_is_idle -EXPORT_SYMBOL_GPL drivers/misc/pvpanic/pvpanic 0xac9d4841 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 0x1ad01bce xpc_registrations -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 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 0x6ee55f5d uacce_remove -EXPORT_SYMBOL_GPL drivers/misc/uacce/uacce 0x9099cfea uacce_alloc -EXPORT_SYMBOL_GPL drivers/misc/uacce/uacce 0xd05811c0 uacce_register -EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x024d14bc vmci_qpair_produce_free_space -EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x046dd187 vmci_datagram_create_handle -EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x056837fb vmci_get_context_id -EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x1fd4782d vmci_qpair_get_produce_indexes -EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x2449459d vmci_event_subscribe -EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x3a22fa8a vmci_datagram_destroy_handle -EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 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 0xa334fa8c 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 0xb9cf05f5 vmci_qpair_peekv -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 0xd71a07be 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 0x05e8460b sdhci_enable_sdio_irq -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x0b0bb814 sdhci_enable_v4_mode -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x0b20f8b9 sdhci_resume_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x0b64ce9b sdhci_suspend_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x1cf82adb sdhci_start_signal_voltage_switch -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x22ead3c7 sdhci_set_bus_width -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x22fc9901 sdhci_cleanup_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x29c8396d sdhci_set_clock -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x300fbb5f sdhci_set_data_timeout_irq -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x31021475 sdhci_start_tuning -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x335c35e1 sdhci_abort_tuning -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x3895d62c sdhci_end_tuning -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x3a7163e7 sdhci_set_power_noreg -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x44b98faf sdhci_set_ios -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x45445f54 sdhci_add_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x499d2dda sdhci_request_atomic -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x4aa38955 sdhci_free_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x4f67a4de sdhci_calc_clk -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x5e879fbe sdhci_remove_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x609300ad sdhci_set_power_and_bus_voltage -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x6812280d sdhci_cqe_irq -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x6a5b5384 sdhci_enable_clk -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x76e0c883 sdhci_execute_tuning -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x771cd535 sdhci_set_uhs_signaling -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x7c0cff45 sdhci_send_tuning -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x825f518a sdhci_switch_external_dma -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x8d259175 sdhci_runtime_suspend_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x977cb9cc sdhci_set_power -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x9f89b56a sdhci_setup_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xa20e51ff sdhci_runtime_resume_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xa5f18375 sdhci_alloc_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xafb08d47 sdhci_dumpregs -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xb78bca2d __sdhci_set_timeout -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xc5952218 sdhci_adma_write_desc -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xc83875e0 __sdhci_read_caps -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xd8ae960e sdhci_reset_tuning -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xe4ac42b4 sdhci_reset -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xed0b16b0 sdhci_cqe_enable -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xf1c34a8a sdhci_request -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xf5a78511 sdhci_cqe_disable -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xfc6b17dd __sdhci_add_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x1b279303 sdhci_pltfm_suspend -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x2b30c7d0 sdhci_pltfm_clk_get_max_clock -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x48688f11 sdhci_pltfm_register -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x6f2676cc sdhci_pltfm_unregister -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x738d64a9 sdhci_get_property -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xc339374e sdhci_pltfm_resume -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xeafdbd5c sdhci_pltfm_free -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xedc9c740 sdhci_pltfm_pmops -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xffe41074 sdhci_pltfm_init -EXPORT_SYMBOL_GPL drivers/most/most_core 0x16e3bd39 most_deregister_component -EXPORT_SYMBOL_GPL drivers/most/most_core 0x17824461 most_submit_mbo -EXPORT_SYMBOL_GPL drivers/most/most_core 0x1a93ce80 most_put_mbo -EXPORT_SYMBOL_GPL drivers/most/most_core 0x384c5b0c most_register_component -EXPORT_SYMBOL_GPL drivers/most/most_core 0x4e9db43c most_deregister_interface -EXPORT_SYMBOL_GPL drivers/most/most_core 0x516b35f1 most_register_configfs_subsys -EXPORT_SYMBOL_GPL drivers/most/most_core 0x76dd53b1 most_stop_channel -EXPORT_SYMBOL_GPL drivers/most/most_core 0x90747cef most_start_channel -EXPORT_SYMBOL_GPL drivers/most/most_core 0xa45acc5f most_get_mbo -EXPORT_SYMBOL_GPL drivers/most/most_core 0xa4f088d2 most_register_interface -EXPORT_SYMBOL_GPL drivers/most/most_core 0xba17dcb8 most_stop_enqueue -EXPORT_SYMBOL_GPL drivers/most/most_core 0xbc18f338 channel_has_mbo -EXPORT_SYMBOL_GPL drivers/most/most_core 0xea6023f8 most_deregister_configfs_subsys -EXPORT_SYMBOL_GPL drivers/most/most_core 0xec2d6b2c most_resume_enqueue -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0x3fc1b2ac cfi_cmdset_0200 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0xc2df973a cfi_cmdset_0003 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0xfdf6b2d2 cfi_cmdset_0001 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0x2eb2ca48 cfi_cmdset_0701 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0xa3194e1e cfi_cmdset_0006 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0xdd4b05ce cfi_cmdset_0002 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0020 0x4c8c6349 cfi_cmdset_0020 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0x69957c74 cfi_qry_mode_on -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0x8dcf3057 cfi_qry_mode_off -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0xe2a8cd70 cfi_qry_present -EXPORT_SYMBOL_GPL drivers/mtd/hyperbus/hyperbus-core 0x3bc68220 hyperbus_unregister_device -EXPORT_SYMBOL_GPL drivers/mtd/hyperbus/hyperbus-core 0x42eb6ced hyperbus_register_device -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x012ad0a5 mtd_point -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x0458ac20 mtd_writev -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x0bc3bef2 mtd_lock_user_prot_reg -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x2fa7f039 __register_mtd_parser -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x35282390 mtd_block_markbad -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x3c8e794b mtd_ooblayout_ecc -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x3eb5fee9 mtd_ooblayout_count_eccbytes -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x3f305d6b mtd_get_device_size -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x42e56717 mtd_write_user_prot_reg -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x48aa0f5a mtd_unpoint -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x500db7e2 mtd_ooblayout_set_eccbytes -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x5093d533 unregister_mtd_user -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x544278c5 mtd_ooblayout_set_databytes -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x545f9e1f mtd_get_user_prot_info -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x5ad0cde4 mtd_kmalloc_up_to -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x5f896d89 mtd_write -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x624e7415 mtd_pairing_info_to_wunit -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x697a7271 mtd_get_unmapped_area -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x6cd20ecc get_mtd_device_nm -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x715dcfe9 mtd_ooblayout_get_eccbytes -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x77fe8638 mtd_ooblayout_count_freebytes -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x7887e0e0 put_mtd_device -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x83e4c6e8 mtd_block_isreserved -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x84e0d4ef mtd_ooblayout_free -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x8547759b deregister_mtd_parser -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x86c1f361 mtd_erase_user_prot_reg -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x885f2847 mtd_lock -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x8a23e24e mtd_device_unregister -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x8aff3176 __mtd_next_device -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x8c3d2048 mtd_ooblayout_find_eccregion -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x8cc4c798 mtd_pairing_groups -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x977c9f57 mtd_get_fact_prot_info -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xa0a8ece1 mtd_write_oob -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xa5fa2982 mtd_del_partition -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xb1f7693c mtd_read -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xb8463f70 mtd_add_partition -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xbf724f45 mtd_table_mutex -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xc4e17009 __get_mtd_device -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xc50bf81a mtd_read_fact_prot_reg -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xc5648276 mtd_device_parse_register -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xce85a029 mtd_is_locked -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xd011dedc mtd_block_isbad -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xd328ec9c __put_mtd_device -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xd7afd77a get_tree_mtd -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xdd5285d6 mtd_panic_write -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xde4cac13 mtd_erase -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xdfecc9f4 get_mtd_device -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xe5289eb3 mtd_ooblayout_get_databytes -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xe57bcf1a mtd_read_oob -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xea8411e7 mtd_read_user_prot_reg -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xefec3b24 kill_mtd_super -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xf52cb9ce mtd_unlock -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xfd3880bf register_mtd_user -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xff3aac5b mtd_wunit_to_pairing_info -EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x212a6865 mtd_blktrans_cease_background -EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x4812aa9c del_mtd_blktrans_dev -EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x629f37bd add_mtd_blktrans_dev -EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x7453b94d register_mtd_blktrans -EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0xe2463ca3 deregister_mtd_blktrans -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x18a13e1a nand_ecc_restore_req -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x2cf7071d nand_get_large_page_ooblayout -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x2eaf624a nanddev_bbt_cleanup -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x316f0451 nanddev_isbad -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x36b2bf09 nand_get_large_page_hamming_ooblayout -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x471ed591 nanddev_erase -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x519ea748 nanddev_bbt_set_block_status -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x5e73b13b nanddev_bbt_init -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x772cb278 nanddev_ecc_engine_cleanup -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x7a89fe09 nanddev_isreserved -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x7be7ae37 nand_ecc_tweak_req -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x9224a4ce nanddev_mtd_erase -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x9979bfe4 nanddev_markbad -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x9c4475b2 nanddev_bbt_get_block_status -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xa8c8de46 nand_ecc_cleanup_req_tweaking -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xaa33ac4a nanddev_init -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xbb2f851f nand_ecc_init_req_tweaking -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xd5ca2674 nanddev_bbt_update -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xdb6e2583 nanddev_cleanup -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xddb407b7 nanddev_mtd_max_bad_blocks -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xea61d6d7 nanddev_ecc_engine_init -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xf25e8dc0 nand_get_small_page_ooblayout -EXPORT_SYMBOL_GPL drivers/mtd/nand/onenand/onenand 0x0eade44a onenand_release -EXPORT_SYMBOL_GPL drivers/mtd/nand/onenand/onenand 0x2782e644 onenand_scan -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/denali 0x4a523ac1 denali_chip_init -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x11091291 nand_extract_bits -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x196e513e nand_op_parser_exec_op -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x26f05c42 nand_status_op -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x28b03d69 nand_ecc_choose_conf -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x2d368c4c nand_subop_get_addr_start_off -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x3210aaba nand_read_page_op -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x40836c55 nand_select_target -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x4362213c nand_soft_waitrdy -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x4ba2fbbd nand_prog_page_begin_op -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x4dbadb81 nand_change_read_column_op -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x54d077dc nand_reset -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x5632e63d nand_subop_get_num_addr_cyc -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x5866dfac nand_decode_ext_id -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x698cff8b nand_deselect_target -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x7d27284a nand_gpio_waitrdy -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x86d29f2d nand_erase_op -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x9d69b11d nand_change_write_column_op -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xa904dada nand_cleanup -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xb229bfe0 nand_readid_op -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xc222ac43 nand_read_page_hwecc_oob_first -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xc8414abf nand_read_oob_op -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xd3c672b8 nand_subop_get_data_len -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xd41ff2ac nand_subop_get_data_start_off -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xd6da2c7b nand_wait_ready -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xdcd2c458 nand_prog_page_op -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xe6d5cfbd nand_reset_op -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xf5887e99 nand_read_data_op -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xfc1d593b nand_prog_page_end_op -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xfddcb886 nand_write_data_op -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/sm_common 0xa6ae9519 sm_register_device -EXPORT_SYMBOL_GPL drivers/mtd/spi-nor/spi-nor 0x49f2423e spi_nor_scan -EXPORT_SYMBOL_GPL drivers/mtd/spi-nor/spi-nor 0x84f14a1c spi_nor_restore -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x01d4b46a ubi_open_volume -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x02db46d4 ubi_leb_map -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x12f8e823 ubi_close_volume -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x33bf1799 ubi_get_volume_info -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x38e10c1d ubi_flush -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x3a285314 ubi_leb_read_sg -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x42801d20 ubi_sync -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x43a9e9b6 ubi_leb_erase -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x4e4c4746 ubi_leb_write -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x5b777f9c ubi_do_get_device_info -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x5cff19a8 ubi_leb_change -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x66011ab6 ubi_get_device_info -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x85a8ee76 ubi_unregister_volume_notifier -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x8a4d86c4 ubi_leb_unmap -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x8ae2e5c7 ubi_leb_read -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xa583e3ea ubi_is_mapped -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xdf2569ea ubi_open_volume_path -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xf5336c31 ubi_open_volume_nm -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xf5ee9ba8 ubi_register_volume_notifier -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x02c098f1 mux_control_states -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x159f1641 mux_chip_register -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x1d561b87 mux_control_try_select -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x263020a8 mux_control_put -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x3d451f33 devm_mux_control_get -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x66f52630 mux_control_select -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x695a81fe mux_chip_unregister -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x7a51c89b devm_mux_chip_alloc -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x7b3b4378 devm_mux_chip_register -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xc771459a mux_control_deselect -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xde443cf3 mux_control_get -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xe6cb23ee mux_chip_alloc -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xf193f5f3 mux_chip_free -EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0x6661976d devm_arcnet_led_init -EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0xc805f096 arcnet_led_event -EXPORT_SYMBOL_GPL drivers/net/bareudp 0x01d6e251 bareudp_dev_create -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x1db3a2a2 unregister_c_can_dev -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x5b0b2e28 register_c_can_dev -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x72a46434 free_c_can_dev -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x7ffb3842 alloc_c_can_dev -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xb9510a7b c_can_power_up -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xfc756743 c_can_power_down -EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x004aace3 free_cc770dev -EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x8b2f33d2 alloc_cc770dev -EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x8bb6874d register_cc770dev -EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0xe5c75c14 unregister_cc770dev -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x108f3e4d can_rx_offload_add_manual -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x10d892eb can_get_state_str -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x14b8b3dc can_rx_offload_del -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x1fbb5f6d alloc_candev_mqs -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x25dba00f can_skb_get_frame_len -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x2a041e62 unregister_candev -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x2c39a058 can_rx_offload_add_timestamp -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x312e2a2b alloc_canfd_skb -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x3385b8d7 can_rx_offload_queue_tail -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x3b0dbc66 can_change_mtu -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x42b4b36a can_rx_offload_get_echo_skb -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x4c73ae5e can_rx_offload_enable -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x529b9399 open_candev -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x5852efab can_change_state -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x59e31a37 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 0x67720087 can_put_echo_skb -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x6b1c490e can_get_echo_skb -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x6d740501 can_rx_offload_threaded_irq_finish -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x85c626a5 can_rx_offload_irq_finish -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x88477a5e alloc_can_err_skb -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x97eb4244 close_candev -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xac980929 free_candev -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xb8d9329a register_candev -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xbb7fe59c can_rx_offload_add_fifo -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xbd7246ff alloc_can_skb -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xc48db06a can_rx_offload_queue_sorted -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xc8a99ec9 can_rx_offload_irq_offload_fifo -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xcd352342 safe_candev_priv -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xd97c89c0 can_rx_offload_irq_offload_timestamp -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xe21b34fe can_bus_off -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xf12d9387 can_fd_dlc2len -EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x051cdaee m_can_class_free_dev -EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x18f75397 m_can_class_unregister -EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x19be68a8 m_can_class_resume -EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x1f39b4c3 m_can_class_register -EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x5a7c9d17 m_can_class_get_clocks -EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x71fe0dc4 m_can_class_allocate_dev -EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x86a118ca m_can_init_ram -EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0xc3131c73 m_can_class_suspend -EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x3dd0bd6e alloc_sja1000dev -EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x49ebd0d2 sja1000_interrupt -EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x7f607eb7 free_sja1000dev -EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x99201e5c unregister_sja1000dev -EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0xe3589d6c register_sja1000dev -EXPORT_SYMBOL_GPL drivers/net/dsa/lan9303-core 0x518abae5 lan9303_indirect_phy_ops -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x0d78b7da ksz_port_mdb_add -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x21e48f46 ksz_init_mib_timer -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x3337fd5d ksz_phy_write16 -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x4a644fb2 ksz_get_ethtool_stats -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x6f7ab792 ksz_port_bridge_join -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x760c7897 ksz_port_fdb_dump -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x7dc81ab1 ksz_phy_read16 -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xc1043217 ksz_port_fast_age -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xc20ad56e ksz_enable_port -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xc386e88b ksz_sset_count -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xd3455521 ksz_port_bridge_leave -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xda559102 ksz_update_port_member -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xf6889177 ksz_mac_link_down -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xff726607 ksz_port_mdb_del -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x46175f90 rtl8366_get_sset_count -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x632323f1 rtl8366rb_variant -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x882d7520 rtl8366_init_vlan -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x93a55e8e realtek_smi_write_reg_noack -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x991054bb rtl8366_reset_vlan -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x9915eb4b rtl8366_set_vlan -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x9a306268 rtl8366_get_strings -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x9aad50aa rtl8366_enable_vlan -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xa08d1a3d rtl8366_get_ethtool_stats -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xb398ca6d rtl8366_enable_vlan4k -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xbb682189 rtl8366_vlan_filtering -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xd6d7ca1d rtl8366_vlan_del -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xe445d040 rtl8366_vlan_add -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xee11d81e rtl8366_mc_is_used -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xfa480f65 rtl8366_set_pvid -EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/i40e/i40e 0x706a0b90 i40e_client_device_register -EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/i40e/i40e 0x7a36f034 i40e_client_device_unregister -EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0x0ed486c0 ice_del_rdma_qset -EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0x1c980fd0 ice_rdma_request_reset -EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0x1d6484f5 ice_rdma_update_vsi_filter -EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0x7d57048a ice_add_rdma_qset -EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0x97e9680e ice_get_qos_params -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x01e7695b mlx4_get_vf_config -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x02204413 mlx4_cq_resize -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x02edaec6 mlx4_set_vf_spoofchk -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0357b977 mlx4_db_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x085342f5 mlx4_qp_query -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x09ec8d2a mlx4_get_devlink_port -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0bf64ab9 mlx4_unicast_detach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0f7ad1e0 mlx4_CLOSE_PORT -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x10d19cd4 mlx4_phys_to_slaves_pport -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1159c799 mlx4_vf_smi_enabled -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x13b673f9 mlx4_uar_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x14e3f48a mlx4_buf_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1c4352b3 mlx4_mr_hw_put_mpt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x21903c87 mlx4_find_cached_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x25b13387 mlx4_flow_steer_promisc_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2a949dfa mlx4_mr_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2af2953a mlx4_map_sw_to_hw_steering_mode -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2e0bba99 mlx4_unicast_attach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2f737ec2 mlx4_flow_attach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x30d3a34b mlx4_mr_rereg_mem_cleanup -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x31b98e35 mlx4_find_cached_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x31cc107a mlx4_unicast_promisc_add -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x371bfd0b mlx4_update_qp -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3a369f2f mlx4_unbond -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3c91acc5 mlx4_mw_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4181764e mlx4_hw_rule_sz -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4317b82e mlx4_buf_write_mtt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x46c53938 mlx4_multicast_attach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4955a059 mlx4_srq_query -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4cf9c596 mlx4_slave_convert_port -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4dfb1d2d mlx4_get_base_gid_ix -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x56ab5f6f mlx4_mr_hw_write_mpt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x56fb8a51 mlx4_alloc_hwq_res -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x57bc6814 mlx4_mr_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x57de56ed mlx4_bf_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5ce1eda0 mlx4_write_mtt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5f249310 __mlx4_cmd -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5f4bcaab mlx4_register_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x60740c2d mlx4_pd_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x609c8b0e mlx4_FLOW_STEERING_IB_UC_QP_RANGE -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x60d8a9a2 mlx4_port_map_set -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x60de477f mlx4_get_vf_stats -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x611026fe mlx4_set_vf_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x61820b90 mlx4_cq_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x62ed795d mlx4_mw_enable -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x638f3869 mlx4_cq_modify -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x640f9d5d mlx4_get_counter_stats -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x68f3bc93 mlx4_srq_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6bef8def mlx4_flow_steer_promisc_add -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6f7a2d95 mlx4_cq_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x72f85bdd mlx4_phys_to_slaves_pport_actv -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x756ce425 mlx4_unicast_promisc_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x78ae3e1b mlx4_register_interface -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7904446f mlx4_get_protocol_dev -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7f24708b mlx4_free_cmd_mailbox -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x81c02f31 mlx4_alloc_cmd_mailbox -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8260ce1f mlx4_set_admin_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x840d6900 mlx4_mr_hw_get_mpt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x84d46251 mlx4_SYNC_TPT -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x878aef2a mlx4_srq_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8886e81f mlx4_counter_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8921e737 mlx4_multicast_promisc_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8935d778 mlx4_mr_enable -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8967bf30 mlx4_multicast_detach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8a76b7ec mlx4_mtt_addr -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8f80bef9 mlx4_counter_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x922a36aa mlx4_register_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x93db0436 mlx4_qp_reserve_range -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x98801a35 mlx4_config_roce_v2_port -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9945228d mlx4_config_dev_retrieval -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x99db9aec mlx4_wol_read -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9b58ea21 mlx4_qp_release_range -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9c214f46 mlx4_qp_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9ca81e3f mlx4_srq_arm -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9e37d66d mlx4_get_active_ports -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa0d59856 mlx4_vf_get_enable_smi_admin -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa2026748 mlx4_read_clock -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa4c4bb52 mlx4_mr_hw_change_pd -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa62429cf mlx4_xrcd_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa6f0d295 mlx4_buf_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xabaa1013 __mlx4_register_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xad04c0e0 mlx4_get_default_counter_index -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xad299297 mlx4_bond -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb00f9b55 mlx4_get_internal_clock_params -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb2271e99 mlx4_unregister_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xba1a5556 mlx4_vf_set_enable_smi_admin -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbf55f2b2 mlx4_flow_detach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc163288f mlx4_free_hwq_res -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc70cdf7e mlx4_get_admin_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc7456cfc mlx4_srq_lookup -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc85aebe3 mlx4_replace_zero_macs -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd250e0e8 mlx4_uar_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd29823c3 mlx4_bf_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd38da5ee mlx4_set_vf_rate -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd5ff446b mlx4_wol_write -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd85d3af2 mlx4_unregister_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdddf203b mlx4_get_slave_default_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xde7aab9b mlx4_ACCESS_PTYS_REG -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe04568d7 mlx4_qp_modify -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe231cc73 mlx4_qp_to_ready -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe58bbe99 mlx4_qp_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe60727c6 mlx4_mr_hw_change_access -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe8e6a931 mlx4_xrcd_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe8fd231d mlx4_map_sw_to_hw_steering_id -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xeaad6fc0 mlx4_set_vf_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xec3f6d21 mlx4_config_vxlan_port -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xec796fc2 mlx4_qp_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xef4e0e43 mlx4_multicast_promisc_add -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xefdcdc62 mlx4_db_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf09d090a mlx4_mr_rereg_mem_write -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf31f20b3 __mlx4_replace_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf32fa80d mlx4_get_base_qpn -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf3d448f5 mlx4_pd_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf570c7d2 mlx4_mw_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf686ecbf mlx4_INIT_PORT -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf6b5f002 __mlx4_unregister_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf85bedc0 mlx4_set_vf_link_state -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf98051c7 mlx4_unregister_interface -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfbc7ca02 mlx4_mtt_init -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfc6451a6 mlx4_phys_to_slave_port -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xff6ade1e mlx4_mtt_cleanup -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x01989bb5 mlx5_query_mac_address -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x01ec8a4d mlx5_query_module_eeprom_by_page -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x020a169d mlx5_query_nic_vport_mac_address -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x03bbf3de mlx5_query_port_admin_status -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x072460c4 mlx5_fill_page_frag_array -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x16af622b mlx5_core_reserved_gids_count -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x188803a8 mlx5_query_port_tc_group -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1be29766 mlx5_query_port_oper_mtu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1dbf3cca mlx5_accel_esp_create_xfrm -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x21b9fe0f mlx5_db_alloc_node -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x23982cf3 mlx5_core_query_ib_ppcnt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2468fe7d mlx5_query_nic_vport_system_image_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x29abd60b mlx5_query_nic_vport_min_inline -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2f0daadc mlx5_set_port_admin_status -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2fbbddbc mlx5_query_nic_system_image_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x334c8381 mlx5_query_module_eeprom -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3421a37c mlx5_modify_port_ets_rate_limit -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x35499f1e mlx5_query_port_max_mtu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x35bdc303 mlx5_query_port_pfc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x41473d14 mlx5_query_port_ptys -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4b465af2 mlx5_eswitch_mode -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x51246c73 mlx5_accel_ipsec_device_caps -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5486399d mlx5_accel_esp_modify_xfrm -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x562bea64 mlx5_accel_esp_destroy_xfrm -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x56574c47 mlx5_query_port_prio_tc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5c652265 mlx5_core_query_vport_counter -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5fe0cdc7 mlx5_nic_vport_query_local_lb -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x62ba0638 mlx5_set_port_tc_group -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x64173134 mlx5_core_modify_hca_vport_context -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x67228511 mlx5_frag_buf_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x68f58c97 mlx5_query_hca_vport_pkey -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6fc71b04 mlx5_query_hca_vport_gid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x70c62450 mlx5_nic_vport_unaffiliate_multiport -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x711221d5 mlx5_toggle_port_link -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x72bfab2f mlx5_modify_nic_vport_vlans -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x73beb379 mlx5_modify_nic_vport_mac_address -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x74cd9ade mlx5_query_nic_vport_node_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x74e5ca3d mlx5_nic_vport_affiliate_multiport -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7b2af45f mlx5_frag_buf_alloc_node -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 0x8480f990 mlx5_query_nic_vport_promisc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x84e3c714 mlx5_query_hca_vport_system_image_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x853d4abd mlx5_set_port_tc_bw_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x88052da2 mlx5_set_port_pause -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8f18fb32 mlx5_db_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x947df96b mlx5_query_nic_vport_mtu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9e79bf7b mlx5_modify_nic_vport_promisc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa2a019d9 mlx5_db_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa2e16b0a mlx5_set_port_caps -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa7296373 mlx5_dm_sw_icm_dealloc -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 0xadb17868 mlx5_buf_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb1bde8fd mlx5_set_port_prio_tc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb261b75f mlx5_core_query_sq_state -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb82924a2 mlx5_set_port_pfc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb936d995 mlx5_query_port_ets_rate_limit -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbb7cdcb0 mlx5_set_port_mtu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc0ba6e40 mlx5_nic_vport_enable_roce -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc1d1a397 mlx5_nic_vport_update_local_lb -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc7836401 mlx5_query_hca_vport_context -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc9d2b704 mlx5_query_nic_vport_qkey_viol_cntr -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcbbe811e mlx5_query_port_tc_bw_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcc06c00b mlx5_eswitch_get_total_vports -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcf51771a mlx5_query_nic_vport_mac_list -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd20abff4 mlx5_query_port_vl_hw_cap -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd2573f10 mlx5_core_access_reg -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd5ef84e7 mlx5_query_min_inline -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd92df3f1 mlx5_query_hca_vport_node_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe2b4f145 mlx5_modify_nic_vport_mac_list -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xecd3f2d0 mlx5_set_port_wol -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xedcc16d4 mlx5_query_port_wol -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf332f7e6 mlx5_query_port_pause -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf78a738b mlx5_modify_nic_vport_mtu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf7f421d8 mlx5_dm_sw_icm_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/micrel/ks8851_common 0x1990b6e3 ks8851_suspend -EXPORT_SYMBOL_GPL drivers/net/ethernet/micrel/ks8851_common 0x45e3ddd0 ks8851_probe_common -EXPORT_SYMBOL_GPL drivers/net/ethernet/micrel/ks8851_common 0x56a3faab ks8851_remove_common -EXPORT_SYMBOL_GPL drivers/net/ethernet/micrel/ks8851_common 0x756cd12d ks8851_resume -EXPORT_SYMBOL_GPL drivers/net/ethernet/microchip/encx24j600-regmap 0x757a6fd7 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 0x05f270f9 __ocelot_read_ix -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x49d21840 ocelot_port_writel -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x49e668cf __ocelot_rmw_ix -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x49ea00a7 ocelot_phylink_mac_link_down -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x4a66cb8e __ocelot_write_ix -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7410c811 ocelot_port_readl -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7e69b425 ocelot_cls_flower_stats -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x87f521e3 ocelot_cls_flower_replace -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb4407284 ocelot_phylink_mac_link_up -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xc2785e0e ocelot_cls_flower_destroy -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xd1617163 ocelot_regmap_init -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xfd3f3036 ocelot_regfields_init -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xfd5351f0 ocelot_port_rmwl -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x55337e08 stmmac_suspend -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x7f9b2833 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 0xa0e9423c stmmac_dvr_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0xd0f23c82 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 0xdd50df82 stmmac_dvr_probe -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0xec6b2cca stmmac_resume -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x3fd42e68 stmmac_get_platform_resources -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x6dc0101c stmmac_pltfr_pm_ops -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x7646d7dc stmmac_remove_config_dt -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x9f563052 stmmac_pltfr_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0xb8c85ded stmmac_probe_config_dt -EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0x00f97cec w5100_pm_ops -EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0x6418acac w5100_probe -EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0xa6a9fe14 w5100_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0xf4a268a2 w5100_ops_priv -EXPORT_SYMBOL_GPL drivers/net/geneve 0x5a71f288 geneve_dev_create_fb -EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x16200e04 ipvlan_link_register -EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x3accbaaf ipvlan_link_delete -EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x8154c977 ipvlan_link_setup -EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0xc1acdaf1 ipvlan_link_new -EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0xecdab62b ipvlan_count_rx -EXPORT_SYMBOL_GPL drivers/net/macsec 0x3ea450c5 macsec_pn_wrapped -EXPORT_SYMBOL_GPL drivers/net/macvlan 0x5102632a macvlan_link_register -EXPORT_SYMBOL_GPL drivers/net/macvlan 0x7db9db5e macvlan_dellink -EXPORT_SYMBOL_GPL drivers/net/macvlan 0x82e050fb macvlan_common_setup -EXPORT_SYMBOL_GPL drivers/net/macvlan 0xd8b6991e macvlan_common_newlink -EXPORT_SYMBOL_GPL drivers/net/mdio/mdio-i2c 0xf1c4175f mdio_i2c_alloc -EXPORT_SYMBOL_GPL drivers/net/net_failover 0x1a8ad066 net_failover_create -EXPORT_SYMBOL_GPL drivers/net/net_failover 0xc4bfec1e net_failover_destroy -EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0x3247f354 xpcs_create -EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0x44ac1b7f xpcs_do_config -EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0x52a51e6a xpcs_get_an_mode -EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0x5a24b4b6 xpcs_validate -EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0x65ccab9a xpcs_config_eee -EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0xb95327f4 xpcs_destroy -EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0xe05362b0 xpcs_link_up -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x00027d53 bcm_phy_cable_test_start -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x062e5957 bcm_phy_modify_rdb -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x14906b3b bcm_phy_get_strings -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x197baeec bcm_phy_enable_jumbo -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x240895d5 bcm_phy_config_intr -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x48e27384 bcm54xx_auxctl_read -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x4912ca8a bcm_phy_downshift_get -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x5c7df8f8 bcm_phy_cable_test_get_status_rdb -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x672d4140 bcm_phy_get_stats -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x6d7bd308 __bcm_phy_read_rdb -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x77a6955a bcm_phy_read_shadow -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x7826bbd6 bcm_phy_read_misc -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x78928c44 bcm_phy_cable_test_get_status -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x79deb83b __bcm_phy_modify_exp -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x7b951f41 bcm_phy_read_rdb -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x856e7d91 __bcm_phy_write_exp -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x894307a6 bcm_phy_28nm_a0b0_afe_config_init -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x897b82df __bcm_phy_modify_rdb -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x93361811 bcm_phy_write_misc -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x98bed55d bcm_phy_write_shadow -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x99728eab bcm_phy_set_eee -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x9e0d81d7 bcm_phy_get_sset_count -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xa2a4300b bcm_phy_read_exp -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xa2f37d35 __bcm_phy_write_rdb -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xaf0fa99e bcm_phy_r_rc_cal_reset -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xb44afc42 __bcm_phy_read_exp -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xb649ca60 bcm_phy_downshift_set -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xc5b5b40e bcm_phy_cable_test_start_rdb -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xd041e209 bcm_phy_write_exp -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xd6df54be bcm_phy_ack_intr -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xe4806338 bcm_phy_enable_apd -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xf68b63b3 bcm_phy_modify_exp -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xf7dce2ad bcm_phy_write_rdb -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xfcfe1f72 bcm_phy_handle_interrupt -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x08213956 phylink_ethtool_get_wol -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x0abf929b phylink_mii_c22_pcs_an_restart -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x0f1a5d17 phylink_of_phy_connect -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x12135396 phylink_mac_change -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x131e8b94 phylink_helper_basex_speed -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x15c4e3e2 phylink_ethtool_set_pauseparam -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x16ca1a8a phylink_suspend -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x1f4716a9 phylink_mii_c22_pcs_config -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x2c8e28ee phylink_ethtool_get_eee -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x2fce7d13 phylink_create -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x429052a1 phylink_mii_c22_pcs_get_state -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x57727285 phylink_ethtool_set_eee -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x59e0695d phylink_speed_down -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x5d0c4dcc phylink_speed_up -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x62104126 phylink_ethtool_set_wol -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x62b5a36a phylink_mii_c45_pcs_get_state -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x6831eccf phylink_ethtool_ksettings_get -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x6fa426d2 phylink_ethtool_nway_reset -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x7d51ece3 phylink_mii_c22_pcs_set_advertisement -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x825c7340 phylink_get_eee_err -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x911fcd6c phylink_start -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x983276da phylink_disconnect_phy -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x9ad6f36d phylink_decode_usxgmii_word -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xb6f9bdd9 phylink_fwnode_phy_connect -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xc0a8f4be phylink_resume -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xc1d15a4c phylink_set_port_modes -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xc3906c58 phylink_ethtool_ksettings_set -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xdcb0a2c0 phylink_stop -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xde66f4a7 phylink_mii_ioctl -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xe644b0b1 phylink_connect_phy -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 0x0dbeaecb tap_del_queues -EXPORT_SYMBOL_GPL drivers/net/tap 0x0e8ab6a5 tap_destroy_cdev -EXPORT_SYMBOL_GPL drivers/net/tap 0x282f374d tap_get_socket -EXPORT_SYMBOL_GPL drivers/net/tap 0x5e090317 tap_get_minor -EXPORT_SYMBOL_GPL drivers/net/tap 0x6b92d134 tap_handle_frame -EXPORT_SYMBOL_GPL drivers/net/tap 0x7d26cfa7 tap_free_minor -EXPORT_SYMBOL_GPL drivers/net/tap 0x9ff1accb tap_create_cdev -EXPORT_SYMBOL_GPL drivers/net/tap 0xbc1534ae tap_queue_resize -EXPORT_SYMBOL_GPL drivers/net/tap 0xf0499db3 tap_get_ptr_ring -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x189a9a3d usbnet_cdc_unbind -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x48a970d6 usbnet_generic_cdc_bind -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x535608c2 usbnet_ether_cdc_bind -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x740de2c1 usbnet_cdc_update_filter -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xc3705f03 usbnet_cdc_status -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xc9096a5b usbnet_cdc_bind -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x0330a47b cdc_ncm_unbind -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x06066c4e cdc_ncm_tx_fixup -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x31230467 cdc_ncm_rx_verify_nth32 -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x3366c5d2 cdc_ncm_change_mtu -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x6f32e61f cdc_ncm_rx_verify_ndp16 -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x7310e239 cdc_ncm_fill_tx_frame -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x765082db cdc_ncm_select_altsetting -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x8600f096 cdc_ncm_rx_verify_nth16 -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x91b22ff7 cdc_ncm_rx_fixup -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xd64553d8 cdc_ncm_bind_common -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xf4212bcf cdc_ncm_rx_verify_ndp32 -EXPORT_SYMBOL_GPL drivers/net/usb/r8152 0x6a006f4b rtl8152_get_version -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x0be74b19 rndis_command -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x5c638b18 rndis_unbind -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xa063d709 rndis_tx_fixup -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xb784e8a5 generic_rndis_bind -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xce34ac96 rndis_status -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xd7c1c67c rndis_rx_fixup -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x066812b8 usbnet_update_max_qlen -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x06c97508 usbnet_skb_return -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x0840e7e0 usbnet_status_start -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x127d5480 usbnet_write_cmd -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x189f63c0 usbnet_unlink_rx_urbs -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x19ca4fea usbnet_get_link_ksettings_mii -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x1b40ebc6 usbnet_tx_timeout -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x3a5243e9 usbnet_nway_reset -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x4770676e usbnet_disconnect -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x4e9fe0c3 usbnet_open -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x529386c4 usbnet_set_link_ksettings_mii -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x72fdcbff usbnet_set_msglevel -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x736f0c60 usbnet_get_msglevel -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x742a72ad usbnet_purge_paused_rxq -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x95398c67 usbnet_write_cmd_nopm -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x9a5ef1f3 usbnet_get_link_ksettings_internal -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x9a687b4b usbnet_status_stop -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x9ee0520e usbnet_start_xmit -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xa5ea4faa usbnet_change_mtu -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xaa20c643 usbnet_read_cmd -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xac0b9147 usbnet_resume -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xac7a8fc2 usbnet_get_ethernet_addr -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xb1681c15 usbnet_get_endpoints -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xc6b3e724 usbnet_resume_rx -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xca504bfc usbnet_get_link -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xdc399e5c usbnet_suspend -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xe2ea10fd usbnet_pause_rx -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xe7a15ad8 usbnet_defer_kevent -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xe8ea124e usbnet_read_cmd_nopm -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xee6c4f56 usbnet_write_cmd_async -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xf24574ad usbnet_get_drvinfo -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xf31e9a1b usbnet_set_rx_mode -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xfbff5b96 usbnet_stop -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xfd989473 usbnet_probe -EXPORT_SYMBOL_GPL drivers/net/vxlan/vxlan 0x2713dd7c vxlan_dev_create -EXPORT_SYMBOL_GPL drivers/net/vxlan/vxlan 0x40e5a642 vxlan_fdb_find_uc -EXPORT_SYMBOL_GPL drivers/net/vxlan/vxlan 0x87a17159 vxlan_fdb_replay -EXPORT_SYMBOL_GPL drivers/net/vxlan/vxlan 0xc1737c69 vxlan_fdb_clear_offload -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/ipw2x00/libipw 0x51769609 libipw_rx_any -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x04f581e0 il_remove_station -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1d781628 il_mac_tx_last_beacon -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x86961280 il_prep_station -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb9d39c73 _il_grab_nic_access -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xbfa04b12 il_dealloc_bcast_stations -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x016490a1 iwl_sar_get_wrds_table -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x031c4e43 iwl_set_soc_latency -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x10d68133 iwl_sar_get_wgds_table -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x160ab367 iwl_acpi_get_wifi_pkg -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x16c3d14a iwl_fw_start_dbg_conf -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x1b4531d5 iwl_parse_nvm_mcc_info -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x1ba24c24 iwl_cmd_groups_verify_sorted -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x25bc83d3 iwl_write_prph64_no_grab -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x26fb8dfc iwl_acpi_get_tas -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x2710c362 iwl_dump_desc_assert -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x289eeffc iwl_opmode_register -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x2b5e7ca4 iwl_write_prph_no_grab -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x2bfe456f iwl_read_eeprom -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x3379f076 iwl_acpi_get_mcc -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x35033c81 iwl_phy_db_free -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x363222d7 iwl_read_prph -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x386bddba __iwl_crit -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x38bec865 _iwl_dbg_tlv_time_point -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x39994ca4 iwl_fwrt_dump_error_logs -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x403876b8 iwl_fw_dbg_stop_sync -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x4cc84f3d iwl_free_fw_paging -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x4e066716 __iwl_err -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x4f70a0dd iwl_fw_dbg_error_collect -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x4fde9166 iwl_parse_eeprom_data -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x52fddafa iwl_acpi_get_eckv -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x549157f2 iwl_phy_db_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 0x5a3a7d5a 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 0x5e45d56c iwl_fw_dbg_collect_trig -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x5e736977 iwl_finish_nic_init -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x6322155e iwl_set_bits_prph -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x648edfe3 iwl_acpi_get_pwr_limit -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x66ccb58a iwl_poll_direct_bit -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x66ccfdf7 iwl_sar_geo_support -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x6718916c iwl_init_paging -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x6e4468b5 iwl_dbg_tlv_del_timers -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x6ea54052 iwl_get_shared_mem_conf -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x6f484e21 iwl_read_external_nvm -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x73d27061 iwl_configure_rxq -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x776221bf iwl_send_phy_db_data -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x7950d74f iwl_sar_get_ewrd_table -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x79770603 iwl_abort_notification_waits -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x7a3c6671 iwl_fw_runtime_resume -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x80a95aaf iwl_write_direct64 -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x80d387db iwl_force_nmi -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x86642db1 iwl_trans_send_cmd -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x8cb3b38f iwl_fw_dbg_collect -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x8cd2f16c iwl_fw_lookup_notif_ver -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x9038811a iwl_rfi_guid -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x915fc1b1 iwl_acpi_get_dsm_u8 -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x92eca3b3 iwl_get_cmd_string -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x94a4af7b iwl_read_direct32 -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x976c9410 iwl_acpi_get_dsm_u32 -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x98486010 iwl_get_nvm -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x9914e39d iwl_fw_runtime_suspend -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x9d58fa18 iwl_pnvm_load -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x9da6564d iwl_fw_dbg_collect_desc -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x9e0fa4f5 __iwl_info -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xa4a98d74 iwl_write_direct32 -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xa5132645 iwl_remove_notification -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xa6977ac3 __iwl_dbg -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xa7f21479 iwl_sar_select_profile -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xa9f05394 iwlwifi_mod_params -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xaa8da7dd iwl_parse_nvm_data -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xb1338340 iwl_fw_lookup_cmd_ver -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xb30f41fa iwl_fw_dbg_stop_restart_recording -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xb3c12013 __iwl_warn -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xc025d31c iwl_write_prph_delay -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xc1c8a239 iwl_write8 -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xc50dd5ae iwl_read32 -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xc666f168 iwl_read_prph_no_grab -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xce0c6460 iwl_phy_db_set_section -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xd2ff218c iwl_set_bits_mask_prph -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xd4b1089d iwl_write32 -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xd6e58a29 iwl_init_notification_wait -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xd7758d2b iwl_fw_runtime_init -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xd9bff785 iwl_acpi_get_lari_config_bitmap -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xdc608b99 iwl_poll_bit -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xe0296113 iwl_sar_geo_init -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xe179026f 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 0xeadf8b98 iwl_acpi_get_object -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xef18741c iwl_clear_bits_prph -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xf0b1df46 iwl_write64 -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xf8f5e0c4 iwl_wait_notification -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xfb34887e iwl_fw_dbg_read_d3_debug_data -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xfc1e6f41 iwl_guid -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x3bdae16b p54_free_common -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x3f0da263 p54_free_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x72ab61a1 p54_init_common -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x827001ff p54_unregister_common -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xada047a3 p54_rx -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xc6f2049d p54_parse_eeprom -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xd16d8e75 p54_register_common -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xd27c7e19 p54_parse_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xe1e16234 p54_read_eeprom -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x2ca636c3 lbs_get_firmware_async -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x30b07098 __lbs_cmd -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x3253f8a3 lbs_suspend -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x34b5d793 lbs_notify_command_response -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x3f851718 lbs_host_sleep_cfg -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x5fdf38b8 lbs_disablemesh -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x7068a41e lbs_send_tx_feedback -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x7545c4db lbs_start_card -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x8146bc5f lbs_resume -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x95a8f12e lbs_remove_card -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xaa64f416 lbs_queue_event -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xbd483be3 lbs_process_rxed_packet -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xbd6b474a lbs_cmd_copyback -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xc0ffb6fc lbs_add_card -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xd206d0b0 lbs_get_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xe4599972 lbs_stop_card -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xe86360da 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 0x05be6387 lbtf_cmd_copyback -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x2119619c lbtf_cmd_response_rx -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x72456e64 lbtf_rx -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x8c9bc36c lbtf_add_card -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0xc38e7955 __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 0xf92a1ce7 lbtf_remove_card -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0xfb3d3f47 lbtf_send_tx_feedback -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0xfb63703a lbtf_bcn_sent -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x024600cb mwifiex_reinit_sw -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x0a886eca mwifiex_cancel_hs -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x0d5ab209 mwifiex_process_hs_config -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x1132d868 mwifiex_remove_card -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x17948788 mwifiex_disable_auto_ds -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x1d517ae8 mwifiex_enable_hs -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x2be04d2e mwifiex_add_virtual_intf -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x4020f9c7 mwifiex_handle_rx_packet -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x502f3928 mwifiex_deauthenticate_all -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x58f6943b mwifiex_shutdown_sw -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x5c33eae9 _mwifiex_dbg -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x6bc09a84 mwifiex_del_virtual_intf -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x7475f34b mwifiex_add_card -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x78a8bbc3 mwifiex_prepare_fw_dump_info -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x819f5a46 mwifiex_upload_device_dump -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x86db32e4 mwifiex_multi_chan_resync -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x876ab2c7 mwifiex_dnld_fw -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x8e03f171 mwifiex_drv_info_dump -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x92145bff mwifiex_queue_main_work -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xa7aa78ff mwifiex_process_sleep_confirm_resp -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xc06318ef mwifiex_fw_dump_event -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xcc26ba82 mwifiex_main_process -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xce884718 mwifiex_init_shutdown_fw -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xd4dad9f3 mwifiex_alloc_dma_align_buf -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xe4e4f83d mwifiex_write_data_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x00116c5f mt76_eeprom_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x0817cec5 mt76_put_txwi -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x0f542ed4 mt76_rx -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x118415c4 mt76_get_txpower -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x13e2b249 __tracepoint_dev_irq -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x15e40c56 mt76_pci_disable_aspm -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x17f568e9 mt76_rates -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x1865eed6 mt76_tx_status_check -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x18a4218f mt76_register_device -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x18a4c2a7 mt76_stop_tx_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x1d0fed51 mt76_token_release -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x1d4a0998 mt76_has_tx_pending -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x1d9e1cad __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 0x1ee56d9a mt76_init_sar_power -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x1f2d9bd6 mt76_alloc_phy -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x21446e10 __tracepoint_mac_txdone -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x2720c4dd mt76_tx_status_skb_done -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x2a6ec103 mt76_sw_scan_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x2b58b2c4 mt76_alloc_device -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x2f7ddc61 mt76_get_rate_power_limits -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x347196de mt76_get_min_avg_rssi -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x37838e1a mt76_txq_schedule_all -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x39e3dcbe mt76_set_irq_mask -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x3eec0f27 mt76_mmio_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x3f48f894 mt76_rx_aggr_start -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x3fce2936 mt76_insert_ccmp_hdr -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x434e36db mt76_init_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x46070cb9 mt76_csa_finish -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x46786462 mt76_rx_aggr_stop -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x4a9c3b9a mt76_release_buffered_frames -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x57fa166e mt76_eeprom_override -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x5bc248c9 mt76_get_sar_power -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x5f3235ae mt76_queues_read -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x681ca408 __SCK__tp_func_mac_txdone -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x686f3e48 mt76_free_device -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x6894ee4a mt76_skb_adjust_pad -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x6c2be11e mt76_mcu_skb_send_and_get_msg -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x6d3ac7eb mt76_tx_status_lock -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x6e820ce6 mt76_register_debugfs_fops -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x79865e69 mt76_update_survey_active_time -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x7b91fc36 mt76_update_survey -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x7ebc4c53 mt76_tx_status_unlock -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x80cf52d6 mt76_unregister_phy -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x80d1fe9a mt76_set_tim -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x8d206b8a mt76_mcu_rx_event -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x955b4444 __mt76_tx_complete_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x978e5f09 mt76_token_consume -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x99572f59 __traceiter_mac_txdone -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x9a5471af mt76_sar_capa -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x9c3451ef mt76_mcu_get_response -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x9cf866f5 mt76_tx_status_skb_add -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xa2a799f5 mt76_tx_check_agg_ssn -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xa6119315 mt76_csa_check -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xa83cb60c __mt76_poll -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xa8fc09d2 mt76_queue_tx_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xabe00ec1 __SCK__tp_func_dev_irq -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xb1d457e0 mt76_mcu_send_and_get_msg -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xb1e2b6de mt76_dma_attach -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xbaa15c7a __mt76_set_tx_blocked -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xbb31a266 __SCT__tp_func_mac_txdone -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xbbce56a6 mt76_sw_scan -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xc00ae573 mt76_set_channel -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xc2481d6d mt76_txq_schedule -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xc4e39d1b mt76_register_phy -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xc4e62e6c mt76_rx_poll_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xc6634315 mt76_ac_to_hwq -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xc961e46e mt76_unregister_device -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xce0a8409 mt76_mcu_msg_alloc -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xdeb52711 mt76_set_stream_caps -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xdf4daa14 mt76_dma_rx_poll -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xe09b2e39 mt76_get_rate -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 0xe5a23ee8 mt76_seq_puts_array -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xe62af8db mt76_dma_cleanup -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xe655f9e3 mt76_tx_status_skb_get -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xe735a2e4 mt76_sta_pre_rcu_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xe86b3419 __traceiter_dev_irq -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xef0ed988 mt76_get_antenna -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xef3096db mt76_wake_tx_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xf516a14f mt76_mcu_send_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xf595012d mt76_get_of_eeprom -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xf8f42b85 ____mt76_poll_msec -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xf965d7c9 mt76_tx_worker_run -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xfaaa93c2 mt76_get_survey -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xfc7dec49 mt76_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xff9f9918 mt76_sta_state -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x10bd58ce mt76_connac_mcu_update_arp_filter -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x1546f422 mt76_connac_mcu_cancel_hw_scan -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x17caa920 mt76_connac_mcu_sta_basic_tlv -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x23c01fb5 mt76_connac_mcu_beacon_loss_iter -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x2a6ff768 mt76_connac_mcu_sta_ba_tlv -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x3a62e0d6 mt76_connac_mcu_wtbl_ht_tlv -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x400bcb2e mt76_connac_mcu_sched_scan_enable -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x408b0f33 mt76_connac_pm_dequeue_skbs -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x4654dd1f mt76_connac_mcu_set_vif_ps -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x49a0208f mt76_connac_mcu_start_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x51847036 mt76_connac_mcu_start_patch -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x53aeeccd mt76_connac_mcu_alloc_wtbl_req -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x5554fc85 mt76_connac_free_pending_tx_skbs -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x59ac0504 mt76_connac_mcu_sched_scan_req -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x696189f1 mt76_connac_mcu_set_rts_thresh -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x6b320275 mt76_connac_pm_wake -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x6e6a7412 mt76_connac_mcu_sta_cmd -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x7a724e36 mt76_connac_mcu_set_rate_txpower -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x7d491e0a mt76_connac_mcu_add_nested_tlv -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x877bbeba mt76_connac_mcu_set_hif_suspend -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x8f8e25d4 mt76_connac_mcu_set_mac_enable -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x908ca40c mt76_connac_wowlan_support -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x93f3a673 mt76_connac_mcu_set_channel_domain -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x94d4f012 mt76_connac_mcu_coredump_event -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x9dc38960 mt76_connac_mcu_sta_update_hdr_trans -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xa33bb08d mt76_connac_pm_queue_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xabd15bf9 mt76_connac_mcu_sta_tlv -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xae0b7734 mt76_connac_mcu_uni_add_dev -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xb7c41e0e mt76_connac_mcu_init_download -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xbbec645e mt76_connac_mcu_alloc_sta_req -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xbd97a944 mt76_connac_mcu_sta_ba -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xc6627c74 mt76_connac_power_save_sched -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xc7c658cd mt76_connac_mcu_wtbl_hdr_trans_tlv -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xc9c3e505 mt76_connac_mcu_hw_scan -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xce914ec0 mt76_connac_mcu_get_nic_capability -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xd196b7ec mt76_connac_mcu_uni_add_bss -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xe168de7e mt76_connac_mcu_update_gtk_rekey -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xeaf90c21 mt76_connac_mcu_patch_sem_ctrl -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xedfb0865 mt76_connac_mcu_wtbl_generic_tlv -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xef9154a1 mt76_connac_sta_state_dp -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xf1d2a872 mt76_connac_mcu_wtbl_ba_tlv -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xf91d640b mt76_connac_mcu_set_deep_sleep -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xfb0c8f37 mt76_connac_mcu_chip_config -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xfd3962c3 mt76_connac_mcu_set_suspend_iter -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x44872dd8 mt76s_alloc_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x6df04621 mt76s_deinit -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0xc3ad415b mt76s_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x14e32fba mt76u_queues_deinit -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x2a3692ba mt76u_alloc_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x948ea77a mt76u_vendor_request -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xa8184015 mt76u_stop_rx -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xb381457c mt76u_stop_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xbf6d0011 mt76u_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xc8746bfd mt76u_single_wr -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xdd7006c8 mt76u_resume_rx -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xe733d6bc mt76u_alloc_mcu_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x01c8b9d3 mt7615_wait_for_mcu_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x16662e95 mt7615_mac_sta_add -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x1df5df86 mt7615_mcu_reg_rr -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x2211b4f6 mt7615_thermal_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x249a30cd mt7615_queue_rx_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x30794d96 mt7615_mcu_exit -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x32334103 mt7615_mac_sta_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x540bc547 mt7615_mcu_fill_msg -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x553a6bd3 mt7615_update_channel -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x682663ce mt7615_eeprom_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x6b06d7c0 mt7615_ops -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x728bf61f mt7615_mac_write_txwi -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x73a3843d __mt7663_load_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x81bd98df mt7615_txp_skb_unmap -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x84c53fdc mt7615_init_debugfs -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x91678222 mt7615_init_work -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xa03855d6 mt7615_mac_sta_poll -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xab769dd8 mt7615_tx_token_put -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xb006cb5d mt7615_init_device -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xb828e7f1 mt7615_init_txpower -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xc69aa247 mt7615_register_ext_phy -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xc9e47e60 mt7615_unregister_ext_phy -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xcd220514 mt7615_mcu_reg_wr -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xd3e6d309 mt7615_mcu_parse_response -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xd42847a0 mt7615_sta_ps -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xe5500fc6 mt7622_trigger_hif_int -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xee741a3f mt7615_mac_set_rates -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xeed43aa8 mt7615_mcu_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xf5336331 mt7615_mcu_restart -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615e 0x12639ae6 mt7615_dma_reset -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7663-usb-sdio-common 0x04e48c77 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 0x2ef91b2d mt7663_usb_sdio_tx_complete_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7663-usb-sdio-common 0x6853cb60 mt7663_usb_sdio_tx_status_data -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7663-usb-sdio-common 0x90b82466 mt7663_usb_sdio_register_device -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x3a630e54 mt76x0_config -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x7ae9b3df mt76x0_phy_calibrate -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x92824b0d mt76x0_mac_stop -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x96741eeb mt76x0_chip_onoff -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0xeb660c19 mt76x0_register_device -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0xfb2a36f6 mt76x0_init_hardware -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x0462ce68 mt76x02_add_rate_power_offset -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x0a33ff4d mt76x02_init_debugfs -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 0x1b8aae78 mt76x02_mcu_calibrate -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x213e5fcc mt76x02_get_efuse_data -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x21fe0c41 mt76x02_phy_adjust_vga_gain -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x26c335b4 mt76x02_ampdu_action -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x2e729be0 mt76x02_rx_poll_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x316a6bd3 mt76x02_tx -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 0x3aeec289 mt76x02_dma_disable -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x3b8688be mt76x02_update_channel -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x3c0c5cab mt76x02_tx_prepare_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x3dc5a27e mt76x02_eeprom_parse_hw_cap -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x3e57a88e mt76x02_resync_beacon_timer -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x4600170b mt76x02_mac_shared_key_setup -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x462c8e1d mt76x02_init_beacon_config -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x47491344 mt76x02_reconfig_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x4b0e239b mt76x02_init_agc_gain -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x4faf94f0 mt76x02_set_coverage_class -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x52333c83 mt76x02_enqueue_buffered_bc -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x53c2d0cb mt76x02_phy_set_txdac -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x55add1a6 mt76x02_mac_cc_reset -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x59fcd1ff mt76x02_init_device -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x5a3998a3 mt76x02_mac_wcid_setup -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x5ac929c3 mt76x02_mcu_parse_response -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x5bd84fd5 mt76x02_rates -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x5c2fd1a7 mt76x02_sta_add -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x611a8e8b mt76x02_phy_set_txpower -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x627bf927 mt76x02_mac_start -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x65277400 mt76x02_set_rts_threshold -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x66c4e714 mt76x02_configure_filter -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x67051550 mt76x02_sta_rate_tbl_update -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x6e83a5c5 mt76x02_phy_set_band -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x77a00192 mt76x02_mcu_cleanup -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x88edd2e3 mt76x02_set_ethtool_fwver -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x8e084005 mt76x02_tx_complete_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x911e644e mt76x02_config_mac_addr_list -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x91d5b9ee mt76x02_irq_handler -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x96458754 mt76x02_mcu_function_select -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x96c38654 mt76x02_conf_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x9bc1a37b mt76x02_phy_set_bw -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x9df91d2f mt76x02_mcu_msg_send -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xa10052d4 mt76x02_get_rx_gain -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xa1dbaee2 mt76x02_dma_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xa53cb084 mt76x02_mac_write_txwi -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xa99dfcda mt76x02e_init_beacon_config -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xa9aca38d mt76x02_queue_rx_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xabf3fb89 mt76x02_mcu_set_radio_state -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xb296967c mt76x02_ext_pa_enabled -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xb3d96df4 mt76x02_mac_set_beacon -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xb50e7996 mt76x02_phy_set_rxpath -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xb779eb27 mt76x02_sw_scan_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xbb144075 mt76x02_update_beacon_iter -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xbe04173d mt76x02_edcca_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xbeca7502 mt76x02_tx_status_data -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xc5bb4422 mt76x02_set_tx_ackto -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xcc609d8c mt76x02_sta_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xcd493357 mt76x02_phy_dfs_adjust_agc -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xcda54ed1 mt76x02_set_key -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xd172407d mt76x02_sta_ps -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xd42a597a mt76x02_eeprom_copy -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xd528e31b mt76x02_mac_setaddr -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xd6cb2d79 mt76x02_remove_hdr_pad -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xdb20ddf0 mt76x02_mac_reset_counters -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xdf3cd9f0 mt76x02_dfs_init_params -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xe3198093 mt76x02_get_lna_gain -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xe54c00f5 mt76x02_add_interface -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xe598abe2 mt76x02_bss_info_changed -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xe7c29659 mt76x02_remove_interface -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xf7895642 mt76x02_tx_set_txpwr_auto -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x05c3b414 mt76x02u_mcu_fw_send_data -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x1fd2f7e7 mt76x02u_tx_prepare_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x363de628 mt76x02u_init_beacon_config -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x54da1a39 mt76x02u_exit_beacon_config -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x7328b1fd mt76x02u_mcu_fw_reset -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x7e362238 mt76x02u_init_mcu -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0xa0fab518 mt76x02u_mac_start -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0xedbfc43a mt76x02u_tx_complete_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x05d24e34 mt76x2_configure_tx_delay -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x077c591a mt76_write_mac_initvals -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x0eb507e3 mt76x2_mac_stop -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x2a4a34cb mt76x2_phy_set_txpower -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x2ef413b4 mt76x2_eeprom_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x34e2de49 mt76x2_apply_gain_adj -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x537cd702 mt76x2_read_rx_gain -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x79ca4714 mt76x2_phy_set_txpower_regs -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x828133e4 mt76x2_mcu_set_channel -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x894ec626 mt76x2_mcu_init_gain -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x8b8226f6 mt76x2_mcu_tssi_comp -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x8c454d5a mt76x2_phy_tssi_compensate -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x99f23c97 mt76x2_get_temp_comp -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xaedbf758 mt76x2_get_rate_power -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xc45aa4e8 mt76x2_init_txpower -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xcccadfee mt76x2_reset_wlan -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xdf97169f mt76x2_get_power_info -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xe5f80f4d mt76x2_phy_update_channel_gain -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xf51e1a59 mt76x2_mcu_load_cr -EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x0370becc host_sleep_notify -EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x1d1d62fd chip_allow_sleep -EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x38e18047 wilc_cfg80211_init -EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x4957e96a chip_wakeup -EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0xa45a0f48 wilc_handle_isr -EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0xba35d2ae wilc_netdev_cleanup -EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0xdc88810c host_wakeup_notify -EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x31fab83c qtnf_chipid_to_string -EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x33c1285a qtnf_get_debugfs_dir -EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x5c5f69e6 qtnf_core_detach -EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x72369f5e qtnf_trans_handle_rx_ctl_packet -EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x74ff3ea5 qtnf_core_attach -EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0xa1ff5ed2 qtnf_classify_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0xc3c327aa qtnf_wake_all_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x055b0398 rt2800_write_beacon -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x05d00421 rt2800_mcu_request -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x065a54cb rt2800_vco_calibration -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x079b1f77 rt2800_get_tsf -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x0bea8e4a rt2800_probe_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x0fe9a394 rt2800_wait_csr_ready -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x16c6aea5 rt2800_ampdu_action -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x28fe36a2 rt2800_config -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x33ab5fc9 rt2800_wait_wpdma_ready -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x35284f8e rt2800_config_shared_key -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x3894e8e3 rt2800_get_survey -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x396da6e0 rt2800_efuse_detect -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x3df678cc rt2800_txstatus_pending -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x3f48def3 rt2800_config_filter -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x474e11c7 rt2800_txdone_nostatus -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x482e7e01 rt2800_write_tx_data -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x540c5ab0 rt2800_get_key_seq -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x550bf0ca rt2800_link_tuner -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x5a7e81e8 rt2800_txstatus_timeout -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x63da87e8 rt2800_rfkill_poll -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x6afd6170 rt2800_txdone_entry -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x73f399c1 rt2800_gain_calibration -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x748e7838 rt2800_conf_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x74add459 rt2800_config_intf -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x769abc06 rt2800_set_rts_threshold -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x8035851a rt2800_clear_beacon -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x809bbad3 rt2800_get_txwi_rxwi_size -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x82eb1c91 rt2800_config_erp -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x8ed7db50 rt2800_disable_wpdma -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x900685d9 rt2800_sta_add -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x9937c6e2 rt2800_watchdog -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x9ab6a66d rt2800_disable_radio -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x9c0323cf rt2800_link_stats -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xa5908ec3 rt2800_enable_radio -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xb5dbc40d rt2800_txdone -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xbba99aca rt2800_load_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xc743f03c rt2800_process_rxwi -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xce72addf rt2800_config_pairwise_key -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xd244d81a rt2800_config_ant -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xd454cb79 rt2800_pre_reset_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xdbcbaccc rt2800_read_eeprom_efuse -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xe7efc4ad rt2800_check_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xedd87448 rt2800_reset_tuner -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xf35e7e42 rt2800_sta_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x0a2d390e rt2800mmio_flush_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x2e7210f5 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 0x3fdbe0d7 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 0x583009dd rt2800mmio_init_registers -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x5fa4db64 rt2800mmio_interrupt -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x8251b577 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 0xa5938994 rt2800mmio_get_txwi -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xa71dc38c rt2800mmio_toggle_irq -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xa99f6d46 rt2800mmio_probe_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xb4d82ee6 rt2800mmio_fill_rxdone -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xb9b59ede rt2800mmio_init_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xc1a18f84 rt2800mmio_clear_entry -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xce7ca738 rt2800mmio_kick_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xcea55db6 rt2800mmio_get_dma_done -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xd7f93a42 rt2800mmio_write_tx_desc -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xe6c58c19 rt2800mmio_get_entry_state -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xf3144050 rt2800mmio_stop_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x0d64d531 rt2x00queue_unmap_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x11d2e45a rt2x00lib_txdone -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x13744c19 rt2x00mac_flush -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x1a24b421 rt2x00lib_pretbtt -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x23d919de rt2x00queue_flush_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x2ae750f3 rt2x00lib_probe_dev -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x2f3a763f rt2x00mac_rfkill_poll -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x2f9dc129 rt2x00lib_rxdone -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x32660372 rt2x00mac_start -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x32928d64 rt2x00lib_beacondone -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x3788e05a rt2x00lib_dmastart -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x3f34d522 rt2x00mac_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x40274f6a rt2x00mac_add_interface -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x4a58d486 rt2x00queue_unpause_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x4bcf612f rt2x00mac_get_stats -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x4fae93c6 rt2x00queue_stop_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x759341d8 rt2x00queue_start_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x75dae48c rt2x00queue_flush_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x7a052e1c rt2x00queue_start_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x856e2436 rt2x00lib_txdone_nomatch -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x8587647b rt2x00mac_set_antenna -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x8bc585b5 rt2x00queue_for_each_entry -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x8dbb5f0e rt2x00mac_set_key -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x8ebb8f11 rt2x00lib_set_mac_address -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x92fbcf9f rt2x00queue_map_txskb -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x931e2913 rt2x00lib_resume -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x9e7e1bce rt2x00mac_tx_frames_pending -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xa0021ad9 rt2x00mac_sw_scan_start -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xa67729b5 rt2x00mac_sw_scan_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xab571dbf rt2x00queue_get_entry -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xafad9a01 rt2x00queue_pause_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xafd29f00 rt2x00mac_config -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xbe9b179b rt2x00lib_remove_dev -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xc2522e31 rt2x00mac_configure_filter -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xc588a810 rt2x00mac_set_tim -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xcabb5f2e rt2x00lib_dmadone -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xd362c7f4 rt2x00mac_stop -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xd686c1a7 rt2x00mac_get_antenna -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xe32eb3c5 rt2x00mac_get_ringparam -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xe9296d11 rt2x00lib_suspend -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xeb458112 rt2x00mac_bss_info_changed -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xf286fe7d rt2x00queue_stop_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xf6cc54cb rt2x00mac_remove_interface -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xfce3600b rt2x00mac_conf_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xfe256921 rt2x00lib_txdone_noinfo -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xff6cb254 rt2x00mac_reconfig_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xffe48eba rt2x00lib_get_bssidx -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x729bc3f6 rt2x00mmio_uninitialize -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x7dfd402d rt2x00mmio_initialize -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x8eaaa37f rt2x00mmio_flush_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0xc950eaaf rt2x00mmio_regbusy_read -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0xd20878f1 rt2x00mmio_rxdone -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00pci 0xc1c8ec07 rt2x00pci_probe -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00pci 0xf0b03e5d rt2x00pci_pm_ops -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00pci 0xf84f84f5 rt2x00pci_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x17228f95 rt2x00usb_suspend -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x399c884f rt2x00usb_resume -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x430b716b rt2x00usb_flush_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x47867606 rt2x00usb_probe -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x4feb8275 rt2x00usb_vendor_request -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x69d93fc5 rt2x00usb_initialize -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x724e6118 rt2x00usb_register_read_async -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x7e03636c rt2x00usb_watchdog -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x919e9df0 rt2x00usb_vendor_request_buff -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x95e300e8 rt2x00usb_vendor_req_buff_lock -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x9ed19de1 rt2x00usb_uninitialize -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x9f20c33d rt2x00usb_kick_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xc31d8db3 rt2x00usb_disconnect -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xd71da146 rt2x00usb_regbusy_read -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xdc8869ce rt2x00usb_disable_radio -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xf6098fdc rt2x00usb_clear_entry -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x58276069 dm_restorepowerindex -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x7c24f9a3 dm_savepowerindex -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xf4cb0d6c dm_writepowerindex -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xfab88e04 rtl92c_set_p2p_ps_offload_cmd -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x0bb6dca5 rtl8723ae_firmware_selfreset -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x0e52f743 rtl8723_phy_query_bb_reg -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x19faed9e rtl8723_dm_init_dynamic_bb_powersaving -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x22b19ead rtl8723_dm_init_edca_turbo -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x2f9f8ba1 rtl8723_dm_init_dynamic_txpower -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x3193ce57 rtl8723_phy_save_mac_registers -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x3f5bf9c0 rtl8723_phy_calculate_bit_shift -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x471dd210 rtl8723_cmd_send_packet -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x4ba29b95 rtl8723_phy_txpwr_idx_to_dbm -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x551cd7cd rtl8723_write_fw -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x6b55b590 rtl8723_phy_set_bb_reg -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x7404d8e8 rtl8723_phy_reload_adda_registers -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x7df45aee rtl8723_phy_path_a_standby -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x847daf91 rtl8723_save_adda_registers -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x8733e5b2 rtl8723_enable_fw_download -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x8b96127a rtl8723_phy_path_adda_on -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x8baf8913 rtl8723_phy_set_sw_chnl_cmdarray -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x8f55c943 rtl8723_phy_rf_serial_write -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xacce9c52 rtl8723be_firmware_selfreset -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xc7d851e0 rtl8723_phy_mac_setting_calibration -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xc8c54303 rtl8723_phy_reload_mac_registers -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xca3cadba rtl8723_phy_pi_mode_switch -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xd6df382c rtl8723_phy_path_a_fill_iqk_matrix -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xdf4d4fa3 rtl8723_fw_free_to_go -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xe1522d8d rtl8723_phy_rf_serial_read -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xfd0886eb rtl8723_phy_init_bb_rf_reg_def -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xff26291e rtl8723_download_fw -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x02667b36 rtl_tx_report_handler -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x05297193 rtl_fw_page_write -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0deba89b rtl_deinit_deferred_work -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0ffd99fd rtl_is_special_data -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x17232208 rtl_global_var -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x1f950320 rtl_efuse_ops_init -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x21e2dd12 rtl_get_hwinfo -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x22a37dee rtl_get_hal_edca_param -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x27a2e43d rtl_tx_ackqueue -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 0x61826052 rtl_deinit_core -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x6440b4e2 rtl_set_tx_report -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x671d23ae rtl_init_rx_config -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x69b4c9b1 rtl_beacon_statistic -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x6db2bb41 rtl_p2p_info -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x6db3ba37 rtl_update_beacon_work_callback -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7e1a0456 rtl_swlps_beacon -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x80395150 rtl_recognize_peer -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x87c56c2b rtl_ops -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x8e3b5915 rtl_deinit_rfkill -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x96598c2f rtl_tx_mgmt_proc -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x97e05663 rtl_tid_to_ac -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa0bcc3bd rtl_ips_nic_on -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xabe982d2 read_efuse_byte -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xb8d68aa9 rtl_fw_block_write -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc1339b57 rtl_lps_enter -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xd03604d2 rtl_lps_leave -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xe7968834 rtl_init_core -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf8d4e91b rtl_action_proc -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x0f5c3ce9 rsi_zone_enabled -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x222332e2 rsi_91x_init -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x650985e7 rsi_hal_device_init -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xa0ea6fdc rsi_mac80211_detach -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xbc7889d5 rsi_91x_deinit -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xcd173710 rsi_dbg -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xe47ebae2 rsi_read_pkt -EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0x18ba06ae cw1200_core_probe -EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0x455dcb05 cw1200_irq_handler -EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0x9348534f cw1200_can_suspend -EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0xa5976dda cw1200_core_release -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0x20960977 wl1251_init_ieee80211 -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0x38f46466 wl1251_free_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0xd1135e82 wl1251_alloc_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x02dcf5f1 wlcore_event_ba_rx_constraint -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x03260c23 wlcore_event_rssi_trigger -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x056a3f1f wlcore_event_inactive_sta -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x06d3b27e wl12xx_debug_level -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x0c02930a wl1271_tx_min_rate_get -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x0c66f899 wlcore_boot_upload_nvs -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x10b8430b wlcore_set_partition -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x1fa674a7 wlcore_scan_sched_scan_results -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x20351125 wlcore_get_native_channel_type -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x2248a38b wlcore_boot_run_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x260ec94a wlcore_disable_interrupts -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x2b5941eb wlcore_event_max_tx_failure -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x2ce7a06f wl1271_cmd_test -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x2d3dbca5 wlcore_translate_addr -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x35e8eb5c wlcore_event_sched_scan_completed -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x379fdb95 wlcore_set_key -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x38d1ea85 wlcore_cmd_wait_for_event_or_timeout -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x3f2f1608 wlcore_enable_interrupts -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x4d9cee9f wlcore_cmd_generic_cfg -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x5065fa92 wlcore_event_soft_gemini_sense -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x5d4f6f13 wl1271_acx_set_ht_capabilities -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x60dc8af9 wl1271_cmd_data_path -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x682aae3e wlcore_event_channel_switch -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x6cbe3915 wlcore_boot_upload_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x6e33cff7 wl1271_acx_pm_config -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x7c38af0f wlcore_event_fw_logger -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x7dae7068 wl12xx_acx_mem_cfg -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x807054f6 wl1271_debugfs_update_stats -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x83b023ce wlcore_free_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x842bba23 wl12xx_cmd_build_probe_req -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x85498cd1 wl1271_format_buffer -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x9477ecd4 wlcore_alloc_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xa965ef0b wl1271_acx_init_mem_config -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xac2eda20 wlcore_synchronize_interrupts -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xb2c1de49 wlcore_disable_interrupts_nosync -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xb6eb92b6 wlcore_event_beacon_loss -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xb78b5fb8 wlcore_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xb79e737e wl1271_tx_flush -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xc94ab4c1 wl1271_cmd_send -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xcb682d5c wlcore_probe -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xcc6c22fe wl1271_acx_sleep_auth -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xd867e188 wlcore_event_roc_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xda0ed44e wl1271_cmd_configure -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xe95f4d0e wlcore_event_dummy_packet -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xec0e90b6 wlcore_scan_sched_scan_ssid_list -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xf8ff1157 wlcore_set_scan_chan_params -EXPORT_SYMBOL_GPL drivers/net/wwan/wwan 0x2839e2b0 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 0x6a26e56c wwan_unregister_ops -EXPORT_SYMBOL_GPL drivers/net/wwan/wwan 0x90f26032 wwan_register_ops -EXPORT_SYMBOL_GPL drivers/net/wwan/wwan 0xb74c31cd wwan_remove_port -EXPORT_SYMBOL_GPL drivers/net/wwan/wwan 0xd442c8bc wwan_port_rx -EXPORT_SYMBOL_GPL drivers/nfc/mei_phy 0x28dd6d7f nfc_mei_phy_alloc -EXPORT_SYMBOL_GPL drivers/nfc/mei_phy 0x677ccdc9 mei_phy_ops -EXPORT_SYMBOL_GPL drivers/nfc/mei_phy 0x9b4e6606 nfc_mei_phy_free -EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x2d975b2e nfcmrvl_nci_register_dev -EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x2ff4ec39 nfcmrvl_parse_dt -EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0xb548a706 nfcmrvl_nci_unregister_dev -EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0xbc76ebc4 nfcmrvl_nci_recv_frame -EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x1e85ea50 pn53x_common_init -EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x378a2b6e pn53x_unregister_nfc -EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x9d34f074 pn532_i2c_nfc_alloc -EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0xaef11c54 pn533_rx_frame_is_cmd_response -EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0xbde59898 pn533_finalize_setup -EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0xc94b80c2 pn53x_register_nfc -EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0xdb915335 pn53x_common_clean -EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0xdecfd339 pn533_rx_frame_is_ack -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x0e061d3f st_nci_hci_event_received -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x19d7d950 st_nci_hci_load_session -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x35f3b50a st_nci_remove -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x65f0ea06 st_nci_discover_se -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x7b1d4246 st_nci_disable_se -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x8ff153f4 st_nci_enable_se -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x93f3308e st_nci_probe -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xf3691f59 st_nci_hci_cmd_received -EXPORT_SYMBOL_GPL drivers/nfc/st95hf/st95hf 0x2fd5f381 st95hf_spi_recv_response -EXPORT_SYMBOL_GPL drivers/nfc/st95hf/st95hf 0xf06fee47 st95hf_spi_recv_echo_res -EXPORT_SYMBOL_GPL drivers/nfc/st95hf/st95hf 0xf0e735f0 st95hf_spi_send -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x0862001f ntb_transport_tx_free_entry -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x30934216 ntb_transport_max_size -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x32537aca ntb_transport_link_query -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x3d54dbfc ntb_transport_tx_enqueue -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 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 0xb47db044 ntb_transport_register_client -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xc270dc24 ntb_transport_free_queue -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xc37d9036 ntb_transport_rx_remove -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xd40e7a02 ntb_transport_rx_enqueue -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xdc59896f ntb_transport_create_queue -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xe02f6a4e 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 0x69f612d0 virtio_pmem_host_ack -EXPORT_SYMBOL_GPL drivers/nvdimm/nd_virtio 0x78b5cf84 async_pmem_flush -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x007799df nvme_submit_sync_cmd -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x02fc8d7f __tracepoint_nvme_sq -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x0356cdfc nvme_cancel_admin_tagset -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x0bd5e878 nvme_try_sched_reset -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x0c6d8a27 nvme_complete_rq -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x0e536712 nvme_start_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x1221e61a __traceiter_nvme_sq -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x164527b4 nvme_enable_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x19367837 nvme_reset_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x1c48c970 nvme_start_freeze -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x263c0c07 nvme_set_queue_count -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x26dfa67b nvme_init_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x2fab2c15 nvme_fail_nonready_command -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x3a0c9716 nvme_sync_queues -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x3bf2393a __SCT__tp_func_nvme_sq -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x3f769635 nvme_sync_io_queues -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x418ec884 nvme_cancel_request -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x457bb583 nvme_unfreeze -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x48d577bd nvme_init_ctrl_finish -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x49224181 nvme_reset_wq -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x4b2b191a nvme_change_ctrl_state -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x567e275d nvme_stop_keep_alive -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x58906a19 nvme_alloc_request -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x64b62862 nvme_wq -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x68cdcd21 nvme_cancel_tagset -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x713ce8d9 __nvme_check_ready -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x813cf212 nvme_io_timeout -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x873a8154 nvme_wait_freeze_timeout -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x8a9c70ed nvme_sec_submit -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x8b86c6b3 nvme_set_features -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x8c7c15a0 nvme_uninit_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x8e1687cf nvme_delete_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x90c0bd60 nvme_cleanup_cmd -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x9fb9268b nvme_stop_queues -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xab125ba5 nvme_setup_cmd -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xab7b0baa nvme_stop_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xb88faefb nvme_shutdown_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xc676d7cf __nvme_submit_sync_cmd -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xc991c03f __SCK__tp_func_nvme_sq -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xcce3e85f nvme_wait_reset -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xd45434ee admin_timeout -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xd58bbbcb nvme_delete_wq -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xe60de144 nvme_complete_async_event -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xef0a166d nvme_wait_freeze -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xf3989da4 nvme_host_path_error -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xf477b2c9 nvme_get_features -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xf5254277 nvme_kill_queues -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xf7a18a60 nvme_start_queues -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xfa7482fe nvme_remove_namespaces -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xfe58db9e nvme_disable_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x003f331c nvmf_connect_admin_queue -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x010899f5 nvmf_reg_read64 -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x14f58bde nvmf_connect_io_queue -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x251eb9db nvmf_reg_read32 -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x268ed9e4 nvmf_reg_write32 -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x45711c95 nvmf_register_transport -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x4ba30347 nvmf_get_address -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x51c659eb nvmf_free_options -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xca78d59d nvmf_unregister_transport -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xd36914d6 nvmf_ip_options_match -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xe0ce6a3c 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 0x99788f1b nvme_fc_register_localport -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0xbb0e18a6 nvme_fc_rcv_ls_req -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0xfca9dc99 nvme_fc_unregister_remoteport -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x06c5dbd8 nvmet_req_free_sgls -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x2399df2b nvmet_req_uninit -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x3e0ef07a nvmet_wq -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x6b05d4ea nvmet_req_init -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x6c582329 nvmet_register_transport -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x7fd401dd nvmet_req_alloc_sgls -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x83978622 nvmet_unregister_transport -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xa8f56db3 nvmet_req_complete -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xd4e2b4d5 nvmet_sq_destroy -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xeadbaccd nvmet_sq_init -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xf2295656 nvmet_check_transfer_len -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xf7c05afd nvmet_ctrl_fatal_error -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet-fc 0x0b98123d nvmet_fc_rcv_ls_req -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet-fc 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 0x93b4e89d nvmet_fc_register_targetport -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet-fc 0x9ef76d99 nvmet_fc_unregister_targetport -EXPORT_SYMBOL_GPL drivers/pci/controller/pci-hyperv-intf 0x1591b2c6 hyperv_read_cfg_blk -EXPORT_SYMBOL_GPL drivers/pci/controller/pci-hyperv-intf 0x221394ae hyperv_reg_block_invalidate -EXPORT_SYMBOL_GPL drivers/pci/controller/pci-hyperv-intf 0xe5f73406 hyperv_write_cfg_blk -EXPORT_SYMBOL_GPL drivers/pci/controller/pci-hyperv-intf 0xfb921e00 hvpci_block_ops -EXPORT_SYMBOL_GPL drivers/pci/switch/switchtec 0xc8fadb75 switchtec_class -EXPORT_SYMBOL_GPL drivers/pinctrl/pinctrl-mcp23s08 0x05507d6a mcp23s08_probe_one -EXPORT_SYMBOL_GPL drivers/pinctrl/pinctrl-mcp23s08 0x5cee55d0 mcp23x17_regmap -EXPORT_SYMBOL_GPL drivers/pinctrl/pinctrl-mcp23s08 0x6c95f13f mcp23x08_regmap -EXPORT_SYMBOL_GPL drivers/platform/chrome/cros-ec-sensorhub 0x17706ae7 cros_ec_sensorhub_register_push_data -EXPORT_SYMBOL_GPL drivers/platform/chrome/cros-ec-sensorhub 0x5251d32e 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 0x19f46ead wilco_ec_mailbox -EXPORT_SYMBOL_GPL drivers/platform/chrome/wilco_ec/wilco_ec 0x200f8d24 wilco_ec_get_property -EXPORT_SYMBOL_GPL drivers/platform/chrome/wilco_ec/wilco_ec 0x4796fe0b wilco_ec_set_property -EXPORT_SYMBOL_GPL drivers/platform/chrome/wilco_ec/wilco_ec 0x95048f22 wilco_ec_set_byte_property -EXPORT_SYMBOL_GPL drivers/platform/chrome/wilco_ec/wilco_ec 0xcc59a214 wilco_ec_get_byte_property -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x08e52313 ssam_device_alloc -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x1e51bd65 ssam_request_sync_free -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x1ef415a9 ssam_device_get_match_data -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x3ef6e66d ssam_request_sync_with_buffer -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x47885f63 ssam_bus_type -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x4f8e7a27 ssam_request_sync_init -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x5117eceb __ssam_device_driver_register -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x6bd1918f ssam_controller_device -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x7c2dbcf3 ssam_device_type -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x826ba55a ssh_packet_get -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x82a53840 ssam_device_get_match -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x82c4c914 ssam_notifier_unregister -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x839d9864 ssam_get_controller -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x84637ae8 ssam_request_sync_submit -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x8b7c6c79 ssam_device_add -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x92b2368d ssam_device_driver_unregister -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x98024ed4 ssam_notifier_register -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x9f20e182 ssam_request_sync_alloc -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xaa44be4f ssam_controller_stateunlock -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xb61c9f79 ssam_controller_statelock -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xc0f7cbb7 ssam_controller_event_disable -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xc2bd582d ssam_device_id_match -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xc62d7b1d ssam_controller_put -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xc74a0b2d ssh_packet_put -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xd71ad4ec ssam_controller_event_enable -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xd9577c07 ssam_client_link -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xdb8248e2 ssam_request_sync -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xddb4bd64 ssam_controller_get -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xdf54ca96 ssam_request_write_data -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xe6cc5416 ssam_device_remove -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xf4e959e9 ssam_client_bind -EXPORT_SYMBOL_GPL drivers/platform/surface/surface_acpi_notify 0x3d1f8540 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 0x57c46ceb asus_wmi_evaluate_method -EXPORT_SYMBOL_GPL drivers/platform/x86/asus-wmi 0xdeaf5868 asus_wmi_unregister_driver -EXPORT_SYMBOL_GPL drivers/platform/x86/asus-wmi 0xe6217f9f asus_wmi_register_driver -EXPORT_SYMBOL_GPL drivers/platform/x86/dell/dell-rbtn 0x51552fca dell_rbtn_notifier_unregister -EXPORT_SYMBOL_GPL drivers/platform/x86/dell/dell-rbtn 0xa060fe7d dell_rbtn_notifier_register -EXPORT_SYMBOL_GPL drivers/platform/x86/dell/dell-smbios 0x1b0b3141 dell_laptop_register_notifier -EXPORT_SYMBOL_GPL drivers/platform/x86/dell/dell-smbios 0x45170471 dell_smbios_call -EXPORT_SYMBOL_GPL drivers/platform/x86/dell/dell-smbios 0x786c8db0 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 0x9f746f7c 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-smbios 0xfc93e909 dell_smbios_register_device -EXPORT_SYMBOL_GPL drivers/platform/x86/dell/dell-wmi 0x9d4b709e dell_privacy_has_mic_mute -EXPORT_SYMBOL_GPL drivers/platform/x86/dell/dell-wmi-descriptor 0x8eef8246 dell_wmi_get_hotfix -EXPORT_SYMBOL_GPL drivers/platform/x86/dell/dell-wmi-descriptor 0x9559234e dell_wmi_get_interface_version -EXPORT_SYMBOL_GPL drivers/platform/x86/dell/dell-wmi-descriptor 0xa167d064 dell_wmi_get_size -EXPORT_SYMBOL_GPL drivers/platform/x86/dell/dell-wmi-descriptor 0xa3dcfa65 dell_wmi_get_descriptor_valid -EXPORT_SYMBOL_GPL drivers/platform/x86/firmware_attributes_class 0xe609be46 fw_attributes_class_put -EXPORT_SYMBOL_GPL drivers/platform/x86/firmware_attributes_class 0xfe8f6e26 fw_attributes_class_get -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 0x30cf6dc7 intel_pmt_dev_create -EXPORT_SYMBOL_GPL drivers/platform/x86/intel/pmt/pmt_class 0x320c9abb intel_pmt_dev_destroy -EXPORT_SYMBOL_GPL drivers/platform/x86/intel/pmt/pmt_class 0xaa647f51 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 0xaf75c211 isst_if_get_pci_dev -EXPORT_SYMBOL_GPL drivers/platform/x86/intel/speed_select_if/isst_if_common 0xc873ec30 isst_if_cdev_register -EXPORT_SYMBOL_GPL drivers/platform/x86/intel/speed_select_if/isst_if_common 0xe18f42a5 isst_if_cdev_unregister -EXPORT_SYMBOL_GPL drivers/platform/x86/intel/telemetry/intel_telemetry_core 0x1c7565c2 telemetry_read_events -EXPORT_SYMBOL_GPL drivers/platform/x86/intel/telemetry/intel_telemetry_core 0x35db93a6 telemetry_get_trace_verbosity -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 0x5d062722 telemetry_set_pltdata -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 0x7ca565cf telemetry_get_pltdata -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 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_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 0x32a3da6a wmidev_evaluate_method -EXPORT_SYMBOL_GPL drivers/platform/x86/wmi 0x6068bedf wmi_evaluate_method -EXPORT_SYMBOL_GPL drivers/platform/x86/wmi 0x76ae31fd wmi_remove_notify_handler -EXPORT_SYMBOL_GPL drivers/platform/x86/wmi 0x849525ec set_required_buffer_size -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 0xd68b7b0c wmidev_block_query -EXPORT_SYMBOL_GPL drivers/platform/x86/wmi 0xd7752b86 wmi_set_block -EXPORT_SYMBOL_GPL drivers/platform/x86/wmi 0xf18bdd75 wmi_install_notify_handler -EXPORT_SYMBOL_GPL drivers/power/supply/bq27xxx_battery 0x1c18af39 bq27xxx_battery_teardown -EXPORT_SYMBOL_GPL drivers/power/supply/bq27xxx_battery 0x4522bab9 bq27xxx_battery_update -EXPORT_SYMBOL_GPL drivers/power/supply/bq27xxx_battery 0xea04afa2 bq27xxx_battery_setup -EXPORT_SYMBOL_GPL drivers/power/supply/pcf50633-charger 0x0b4b36ad pcf50633_mbc_get_status -EXPORT_SYMBOL_GPL drivers/power/supply/pcf50633-charger 0x945a53df pcf50633_mbc_usb_curlim_set -EXPORT_SYMBOL_GPL drivers/power/supply/pcf50633-charger 0xd5867d09 pcf50633_mbc_get_usb_online_status -EXPORT_SYMBOL_GPL drivers/powercap/intel_rapl_common 0x23def157 rapl_find_package_domain -EXPORT_SYMBOL_GPL drivers/powercap/intel_rapl_common 0x97ef7546 rapl_remove_package -EXPORT_SYMBOL_GPL drivers/powercap/intel_rapl_common 0x9e8d5df9 rapl_add_package -EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x00d67956 mc13xxx_regulator_ops -EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x2990b486 mc13xxx_fixed_regulator_set_voltage -EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x613ec9f0 mc13xxx_fixed_regulator_ops -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x0a3399d3 wm8350_dcdc25_set_mode -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xa9052e9b wm8350_register_regulator -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xbcc8d47d wm8350_register_led -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xc5aed73b wm8350_isink_set_flash -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xd3309b50 wm8350_ldo_set_slot -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xf444afc6 wm8350_dcdc_set_slot -EXPORT_SYMBOL_GPL drivers/regulator/wm8400-regulator 0x64715951 wm8400_register_regulator -EXPORT_SYMBOL_GPL drivers/rpmsg/qcom_glink 0x149236da qcom_glink_native_remove -EXPORT_SYMBOL_GPL drivers/rpmsg/qcom_glink 0x7cf9af99 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 0x9af509c0 ds1685_rtc_poweroff -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x02202420 cxgbi_sock_rcv_peer_close -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x055be9fb cxgbi_iscsi_init -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x06744d32 cxgbi_sock_closed -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x123e4b79 cxgbi_conn_alloc_pdu -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x1bcf843a cxgbi_sock_fail_act_open -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x25202b16 cxgbi_hbas_add -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x2e55f9b4 cxgbi_device_unregister -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x3a8db707 cxgbi_hbas_remove -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x3cbb6db0 cxgbi_get_conn_stats -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x51a6cb35 cxgbi_cleanup_task -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x533246ea cxgbi_ep_poll -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x56cbd36f cxgbi_device_portmap_cleanup -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x57e9b481 cxgbi_conn_xmit_pdu -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x60651c9b cxgbi_sock_rcv_close_conn_rpl -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x607934e3 cxgbi_device_find_by_netdev_rcu -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7c74f9e8 cxgbi_conn_init_pdu -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7f7fd2f6 cxgbi_sock_rcv_abort_rpl -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7fdb6004 cxgbi_device_unregister_all -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x850dfd41 cxgbi_ep_connect -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x8564da4f cxgbi_parse_pdu_itt -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xa06a6821 cxgbi_iscsi_cleanup -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xa302294a cxgbi_ddp_ppm_setup -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xa8893856 cxgbi_device_find_by_lldev -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xb13a8fa3 cxgbi_sock_skb_entail -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xb22f2a81 cxgbi_sock_act_open_req_arp_failure -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xb2e980c0 cxgbi_set_host_param -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xb4ff0860 cxgbi_get_ep_param -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xb580106e cxgbi_destroy_session -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xb92d08b9 cxgbi_sock_purge_wr_queue -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xc011af75 cxgbi_ddp_set_one_ppod -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xc2308c34 cxgbi_conn_pdu_ready -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xc8ddc352 cxgbi_sock_established -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xdef6c113 cxgbi_sock_check_wr_invariants -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xe0f6a70b cxgbi_device_register -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xe2c9d5f1 cxgbi_sock_rcv_wr_ack -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xe4647203 cxgbi_create_conn -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xe6b7097f cxgbi_conn_tx_open -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xea7cc283 cxgbi_ep_disconnect -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xec08e649 cxgbi_get_host_param -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xef346615 cxgbi_attr_is_visible -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xf135f966 cxgbi_set_conn_param -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xf2475a34 cxgbi_sock_free_cpl_skbs -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xf5c7b7e0 cxgbi_device_find_by_netdev -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xf62784b8 cxgbi_bind_conn -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xf65d5055 cxgbi_device_portmap_create -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xfdc4280d cxgbi_sock_select_mss -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xfe590678 cxgbi_create_session -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x157f3d67 fcoe_fcf_device_delete -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x1f2ffae5 fcoe_start_io -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x25764fd9 fcoe_get_wwn -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x36829bc1 fcoe_fcf_device_add -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x3a768d86 fcoe_validate_vport_create -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x3cda5e05 fcoe_link_speed_update -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x3e9e0676 fcoe_libfc_config -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x4663cac8 fcoe_check_wait_queue -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x55f0a227 fcoe_get_lesb -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x62e2f5cc __fcoe_get_lesb -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x867d2284 fcoe_ctlr_device_add -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x8dd3236a fcoe_clean_pending_queue -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x9da6bb9a fcoe_ctlr_get_lesb -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xbac58840 fcoe_queue_timer -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xbcb1a4be fcoe_ctlr_device_delete -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xc3f30cc0 fcoe_wwn_from_mac -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xc5cd3bd5 fcoe_fc_crc -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xe1199a31 fcoe_get_paged_crc_eof -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xf167cb7a fcoe_wwn_to_str -EXPORT_SYMBOL_GPL drivers/scsi/fdomain 0x24b25330 fdomain_create -EXPORT_SYMBOL_GPL drivers/scsi/fdomain 0x570219a8 fdomain_destroy -EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x006af4f3 iscsi_boot_create_acpitbl -EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x24795958 iscsi_boot_create_host_kset -EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x29b8d31f iscsi_boot_create_ethernet -EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x37d56f6d iscsi_boot_create_kset -EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x38da512e iscsi_boot_create_initiator -EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xb7d9d0cf iscsi_boot_destroy_kset -EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xfd10984e iscsi_boot_create_target -EXPORT_SYMBOL_GPL drivers/scsi/libfc/libfc 0x905b0a32 fc_seq_els_rsp_send -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x045d7f6a iscsi_session_failure -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x0844d507 iscsi_itt_to_ctask -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x0d2281a1 iscsi_suspend_rx -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x0e6722e9 iscsi_eh_session_reset -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x12b2ad06 iscsi_switch_str_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x14b1441f iscsi_conn_stop -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x19f68704 iscsi_session_teardown -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x1c438f66 iscsi_session_setup -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x21c043ac iscsi_host_alloc -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x2707de83 iscsi_verify_itt -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x2831e6c0 iscsi_prep_data_out_pdu -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x2a8e50b2 iscsi_queuecommand -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x2cf009e3 iscsi_conn_get_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3214f3a6 iscsi_eh_device_reset -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x36706086 iscsi_suspend_tx -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x38adcaff iscsi_host_get_max_scsi_cmds -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3b0b1814 iscsi_requeue_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3bef2f73 iscsi_pool_init -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3ca959ac iscsi_conn_queue_recv -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3d0eeac3 iscsi_host_remove -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3e946478 iscsi_host_get_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x46f333c5 iscsi_complete_scsi_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x494a8e20 iscsi_eh_abort -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x4a625e92 __iscsi_complete_pdu -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x4c264e9e iscsi_set_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x5b28fc7b iscsi_host_set_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x6f5d4acf iscsi_eh_recover_target -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7c02900b iscsi_eh_cmd_timed_out -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8181a95b iscsi_conn_unbind -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x873f0aeb iscsi_session_remove -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8d303b1b iscsi_pool_free -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8dbd049f iscsi_conn_send_pdu -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8ef364f3 iscsi_itt_to_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x92a54228 iscsi_conn_queue_xmit -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x92d90782 iscsi_conn_failure -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa074f357 iscsi_session_free -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa3b72b6b iscsi_update_cmdsn -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa6a2e7c6 iscsi_put_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xbaee29fc iscsi_host_add -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xbb00c494 iscsi_suspend_queue -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xbba1c2a5 iscsi_conn_bind -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc70c53d6 __iscsi_put_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd70bfd30 iscsi_complete_pdu -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xdeda2600 iscsi_session_recovery_timedout -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xe1bdbece iscsi_conn_start -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xeab9cbd5 iscsi_conn_get_addr_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xedb1c4f9 iscsi_target_alloc -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf399ada0 iscsi_host_free -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf3be6e40 iscsi_conn_setup -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf6c4c155 iscsi_session_get_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf8982d2b __iscsi_get_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf9cf692c iscsi_conn_teardown -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x2b222f0c iscsi_tcp_conn_get_stats -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x321166e5 iscsi_segment_init_linear -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x40cacb97 iscsi_tcp_dgst_header -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x42a15661 iscsi_tcp_task_xmit -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x44661a39 iscsi_tcp_conn_teardown -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x56f306f6 iscsi_segment_seek_sg -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x65912e25 iscsi_tcp_segment_unmap -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x70cf38b6 iscsi_tcp_recv_skb -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x80bb3d75 iscsi_tcp_recv_segment_is_hdr -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x884b4f76 iscsi_tcp_r2tpool_alloc -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x9341ccd8 iscsi_tcp_set_max_r2t -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xab1c10d8 iscsi_tcp_cleanup_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xc89c195f iscsi_tcp_hdr_recv_prep -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xcddf4102 iscsi_tcp_r2tpool_free -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xce34c4c2 iscsi_tcp_conn_setup -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xdc289277 iscsi_tcp_segment_done -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xe3cf9459 iscsi_tcp_task_init -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x0be8e346 sas_register_ha -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x18736c03 sas_bios_param -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x20d041d8 sas_request_addr -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x2eab482a sas_get_local_phy -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x4eadab24 sas_notify_phy_event -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x50cbc556 sas_ioctl -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x62cc8025 sas_queuecommand -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x63ebef90 sas_eh_abort_handler -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x70f39a60 sas_target_alloc -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x73a9b90e sas_slave_alloc -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x75ce17a4 sas_ssp_task_response -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x7bb613ec sas_unregister_ha -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x7fa6a512 sas_notify_port_event -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x92761e3b sas_alloc_task -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x94079009 sas_eh_target_reset_handler -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xa30d6d16 sas_drain_work -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xb5df764c sas_target_destroy -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xbe5e0120 sas_alloc_slow_task -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xbfdb29a2 sas_eh_device_reset_handler -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xca7c8c9a sas_phy_reset -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xd51202a4 sas_change_queue_depth -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xdeeed1d6 sas_domain_attach_transport -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xe446c65f sas_ata_schedule_reset -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xf28a6ae8 dev_attr_phy_event_threshold -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xf382c14f sas_free_task -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xf611439a sas_task_abort -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xf7c5ea30 sas_slave_configure -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_fc 0x5266ff36 fc_eh_should_retry_cmd -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x0281691f __tracepoint_iscsi_dbg_eh -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x0452254b iscsi_alloc_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x106ecc2e __tracepoint_iscsi_dbg_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x11a9235e iscsi_find_flashnode_sess -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x15dc8bab __SCT__tp_func_iscsi_dbg_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x17dc4a83 iscsi_offload_mesg -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x1867b9de iscsi_session_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x1acd9518 iscsi_create_iface -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x1f2075d2 iscsi_get_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x1f8ddb90 iscsi_remove_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x2290636f iscsi_create_endpoint -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x2344c7ab iscsi_create_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x256a937f __SCK__tp_func_iscsi_dbg_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x354da21a iscsi_get_port_state_name -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x3a2dc196 __tracepoint_iscsi_dbg_tcp -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x52575134 __SCT__tp_func_iscsi_dbg_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x53e5109f iscsi_find_flashnode_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x57779781 iscsi_conn_error_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x6152a495 iscsi_dbg_trace -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x657077af iscsi_create_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x696c15dd iscsi_destroy_iface -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x699fe53e iscsi_get_discovery_parent_name -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x6e8ea2a4 iscsi_destroy_endpoint -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x74409362 __traceiter_iscsi_dbg_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x74c16cdd iscsi_destroy_all_flashnode -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7b417b31 iscsi_flashnode_bus_match -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7f3c97f8 iscsi_conn_login_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x800368ec iscsi_create_flashnode_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x80e430e4 __traceiter_iscsi_dbg_tcp -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x84a005f1 iscsi_get_router_state_name -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x86f985e6 iscsi_recv_pdu -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x8bda6abe __SCK__tp_func_iscsi_dbg_tcp -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x8c9dc870 iscsi_session_chkready -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x934d2348 iscsi_put_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x9505f203 iscsi_post_host_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x953fd574 __tracepoint_iscsi_dbg_sw_tcp -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x97664f6d iscsi_free_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x9aa3b7ad __tracepoint_iscsi_dbg_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x9ea8fb19 iscsi_add_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa1f4dc52 iscsi_block_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa2889221 iscsi_lookup_endpoint -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa8c4b5e1 __SCT__tp_func_iscsi_dbg_tcp -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb4161073 iscsi_scan_finished -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb84f40a2 iscsi_destroy_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb9e1a3ca iscsi_put_endpoint -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xbc071179 iscsi_get_ipaddress_state_name -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xbfaaad2b iscsi_register_transport -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xc2e459a2 iscsi_force_destroy_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xc5b56fec iscsi_unregister_transport -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xc68a9103 iscsi_is_session_online -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xcd4bc000 __SCK__tp_func_iscsi_dbg_sw_tcp -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xcd93769d __SCK__tp_func_iscsi_dbg_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd06a1901 iscsi_ping_comp_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd3b493dc __traceiter_iscsi_dbg_eh -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd840a11c iscsi_unblock_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xda5e2bf2 iscsi_destroy_flashnode_sess -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xdf515c49 __SCT__tp_func_iscsi_dbg_sw_tcp -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe5159cc1 iscsi_block_scsi_eh -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe7e1e741 iscsi_is_session_dev -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xee350c1a __traceiter_iscsi_dbg_sw_tcp -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf33eb10a iscsi_host_for_each_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf72a17fe iscsi_create_flashnode_sess -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf7e5714f iscsi_get_port_speed_name -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf7e749fb __SCT__tp_func_iscsi_dbg_eh -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xfab90330 __traceiter_iscsi_dbg_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xfec36524 __SCK__tp_func_iscsi_dbg_eh -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x34cf826b sas_tlr_supported -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x77b1aa3d sas_enable_tlr -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0xa6020a8a sas_is_tlr_enabled -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0xc54df399 sas_disable_tlr -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0x0ef06974 spi_populate_ppr_msg -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0xa0c71dac spi_populate_sync_msg -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0xbba6440e spi_populate_tag_msg -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0xcffa2aff spi_populate_width_msg -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x1902178a srp_tmo_valid -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x190df7e1 srp_release_transport -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x3a745939 srp_attach_transport -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x4aed0827 srp_remove_host -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x5d4a8798 srp_rport_add -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xa01fe0a9 srp_stop_rport_timers -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xad023263 srp_rport_del -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x02e112dd ufshcd_dump_regs -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x07e9ed28 ufshcd_suspend_prepare -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x1776e908 ufshcd_link_recovery -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x1fcd4cc3 ufshcd_resume_complete -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x2df73063 ufshcd_init -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x2e37a7bc ufshcd_dme_get_attr -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x2ea77fa5 ufshcd_hold -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x35270f1e ufshcd_remove -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x48ea899d ufshcd_dealloc_host -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x4c57adc2 ufshcd_uic_hibern8_exit -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x597197bd ufshcd_update_evt_hist -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x62218b70 ufshcd_fixup_dev_quirks -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x68a7b964 ufshcd_hba_enable -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x723b1abf ufshcd_delay_us -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x73eea39f ufshcd_auto_hibern8_update -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x92d91664 ufshcd_dme_configure_adapt -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x9602bec2 ufshcd_dme_set_attr -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0xb29231eb ufshcd_make_hba_operational -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0xdefa2b0c ufshcd_release -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0xe7345cb3 ufshcd_hba_stop -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0xf12b0428 ufshcd_config_pwr_mode -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x0d77a64d 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 0x698340e4 ufshcd_pltfrm_shutdown -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0xff85cd6b ufshcd_get_pwr_dev_param -EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x00bec9ea siox_master_alloc -EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x3c6b9bba siox_device_synced -EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x61de0ed5 __siox_driver_register -EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x7f10689e siox_device_connected -EXPORT_SYMBOL_GPL drivers/siox/siox-core 0xb8e3e0d0 siox_master_unregister -EXPORT_SYMBOL_GPL drivers/siox/siox-core 0xd0f7dce6 siox_master_register -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x00747043 slim_alloc_txn_tid -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x05e0c19f slim_unregister_controller -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x08e2935a slim_report_absent -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x0973e3f7 slim_stream_disable -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x0e8e20fe slim_get_device -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x1794d745 slim_stream_allocate -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x200f6ea7 __slim_driver_register -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x2f114201 slim_get_logical_addr -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x3b3c7526 slim_xfer_msg -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x4621558e slim_do_transfer -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x4b675c20 slim_stream_prepare -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x6382915b slimbus_bus -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x7a645c0e slim_read -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x7aff2a6d slim_stream_free -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x80d32e83 slim_register_controller -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x814e65eb slim_writeb -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x8543d793 slim_msg_response -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x94ebe8e2 slim_readb -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xad52cb7a of_slim_get_device -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xbafdfa38 slim_ctrl_clk_pause -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xd27c40b4 slim_write -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xd304555b slim_stream_unprepare -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xdbed2766 slim_device_report_present -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xe02efef5 slim_free_txn_tid -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xe44dba34 slim_driver_unregister -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xfb7d3506 slim_stream_enable -EXPORT_SYMBOL_GPL drivers/soundwire/soundwire-bus 0x1cc53bca sdw_bus_type -EXPORT_SYMBOL_GPL drivers/soundwire/soundwire-bus 0x2ee024d0 __sdw_register_driver -EXPORT_SYMBOL_GPL drivers/soundwire/soundwire-bus 0xc4430fa5 sdw_unregister_driver -EXPORT_SYMBOL_GPL drivers/soundwire/soundwire-cadence 0x5b170928 sdw_cdns_debugfs_init -EXPORT_SYMBOL_GPL drivers/spi/spi-altera-core 0xaf558001 altera_spi_init_master -EXPORT_SYMBOL_GPL drivers/spi/spi-altera-core 0xb9edd149 altera_spi_irq -EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x07db9400 spi_bitbang_init -EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x5b749726 spi_bitbang_setup_transfer -EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x910db528 spi_bitbang_stop -EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x9a1a07fe spi_bitbang_start -EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xb40c5ef8 spi_bitbang_setup -EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xd3222150 spi_bitbang_cleanup -EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x0aee1f0a dw_spi_dma_setup_generic -EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x0c10f7ba dw_spi_set_cs -EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x11b9c33e dw_spi_dma_setup_mfld -EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x337fcd5a dw_spi_check_status -EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0xa40cdf03 dw_spi_add_host -EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0xb0fc43f7 dw_spi_update_config -EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0xc35470cb dw_spi_resume_host -EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0xd43aa3a7 dw_spi_remove_host -EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0xdc6ac6dc dw_spi_suspend_host -EXPORT_SYMBOL_GPL drivers/spi/spi-loopback-test 0x51077d6d spi_test_run_tests -EXPORT_SYMBOL_GPL drivers/spi/spi-loopback-test 0xd780b982 spi_test_execute_msg -EXPORT_SYMBOL_GPL drivers/spi/spi-loopback-test 0xf17a7599 spi_test_run_test -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x11efd8dd spmi_ext_register_writel -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x2b56e7b4 spmi_controller_alloc -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x523ce955 spmi_device_add -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x52efdb5f __spmi_driver_register -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x56626d3d spmi_command_shutdown -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x609a3d91 spmi_controller_remove -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x6afce5c3 spmi_register_read -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x791aed19 spmi_ext_register_read -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x8101f843 spmi_device_remove -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x85d98c90 spmi_ext_register_readl -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x893f3ecf spmi_ext_register_write -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x8f55d778 spmi_command_wakeup -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xab7265e1 spmi_command_sleep -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xaf670355 spmi_register_write -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xcfc220c8 spmi_controller_add -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xe45ba34c spmi_register_zero_write -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xf802a66e spmi_device_alloc -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xfee293c9 spmi_command_reset -EXPORT_SYMBOL_GPL drivers/ssb/ssb 0x2f31d79d ssb_pmu_spuravoid_pllupdate -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0x5593eb43 fieldbus_dev_register -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0x9c9e8a7d fieldbus_dev_online_changed -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0x9e944e1a fieldbus_dev_unregister -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0xb10415b8 fieldbus_dev_area_updated -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x1433751f gb_audio_apbridgea_unregister_cport -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x2ab9c68d gb_audio_apbridgea_set_tx_data_size -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x2e21f57e gb_audio_apbridgea_prepare_rx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x4e0b56c4 gb_audio_apbridgea_prepare_tx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x83b5278f gb_audio_apbridgea_set_rx_data_size -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x8c6ab6f6 gb_audio_apbridgea_register_cport -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x959c126c gb_audio_apbridgea_start_tx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xaa4d4cbe gb_audio_apbridgea_shutdown_tx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xaafbc9b6 gb_audio_apbridgea_start_rx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xb9e1fc31 gb_audio_apbridgea_stop_rx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xca67ef04 gb_audio_apbridgea_shutdown_rx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xd9cb5f8b gb_audio_apbridgea_stop_tx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xfabb9b39 gb_audio_apbridgea_set_config -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x01f4e4ff gb_audio_gb_get_pcm -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x1f0f6e3a gb_audio_gb_activate_rx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x2ffb59d9 gb_audio_gb_set_rx_data_size -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x309b8546 gb_audio_gb_disable_widget -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x3d805383 gb_audio_gb_deactivate_tx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x486c4a0e gb_audio_gb_enable_widget -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x7926254f gb_audio_gb_get_topology -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x8dd347bb gb_audio_gb_activate_tx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x9d8a9b5e gb_audio_gb_set_pcm -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xaf5c7a02 gb_audio_gb_deactivate_rx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xb87ac587 gb_audio_gb_get_control -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xd9658f99 gb_audio_gb_set_tx_data_size -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xde2de8b2 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 0x559ac93c 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 0x71e5b875 gb_audio_manager_get_module -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-manager 0x79eef2f8 gb_audio_manager_dump_all -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-manager 0xaeac8ca2 gb_audio_manager_dump_module -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-gbphy 0xbcf55904 gb_gbphy_register_driver -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-gbphy 0xc99acb0b gb_gbphy_deregister_driver -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-spilib 0xfa46383e gb_spilib_master_init -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-spilib 0xfe43784a gb_spilib_master_exit -EXPORT_SYMBOL_GPL drivers/staging/iio/addac/adt7316 0x760eee9e adt7316_pm_ops -EXPORT_SYMBOL_GPL drivers/staging/media/atomisp/i2c/atomisp-libmsrlisthelper 0x5fbb9f81 apply_msr_data -EXPORT_SYMBOL_GPL drivers/staging/media/atomisp/i2c/atomisp-libmsrlisthelper 0x73ee8d50 release_msr_list -EXPORT_SYMBOL_GPL drivers/staging/media/atomisp/i2c/atomisp-libmsrlisthelper 0xc49fe919 load_msr_list -EXPORT_SYMBOL_GPL drivers/staging/media/atomisp/pci/atomisp_gmin_platform 0x0efac4e7 atomisp_get_platform_data -EXPORT_SYMBOL_GPL drivers/staging/media/atomisp/pci/atomisp_gmin_platform 0x20b26f33 gmin_get_var_int -EXPORT_SYMBOL_GPL drivers/staging/media/atomisp/pci/atomisp_gmin_platform 0x30588874 gmin_camera_platform_data -EXPORT_SYMBOL_GPL drivers/staging/media/atomisp/pci/atomisp_gmin_platform 0x39572a05 atomisp_gmin_remove_subdev -EXPORT_SYMBOL_GPL drivers/staging/media/atomisp/pci/atomisp_gmin_platform 0x5b5f937d atomisp_gmin_register_vcm_control -EXPORT_SYMBOL_GPL drivers/staging/media/atomisp/pci/atomisp_gmin_platform 0x66edca5b atomisp_gmin_find_subdev -EXPORT_SYMBOL_GPL drivers/staging/media/atomisp/pci/atomisp_gmin_platform 0xadf5b408 camera_sensor_csi -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 0xef02a1c4 atomisp_register_i2c_module -EXPORT_SYMBOL_GPL drivers/staging/media/av7110/sp8870 0x10dbeb84 sp8870_attach -EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0x1e7c227e target_queue_submission -EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0x348a0694 target_submit -EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0x50ed8524 target_submit_prep -EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0x6f55b518 target_init_cmd -EXPORT_SYMBOL_GPL drivers/tee/tee 0x0ab1c365 tee_shm_pool_alloc -EXPORT_SYMBOL_GPL drivers/tee/tee 0x1569ea50 tee_shm_get_pa -EXPORT_SYMBOL_GPL drivers/tee/tee 0x38329317 tee_shm_alloc_kernel_buf -EXPORT_SYMBOL_GPL drivers/tee/tee 0x3f302893 tee_device_alloc -EXPORT_SYMBOL_GPL drivers/tee/tee 0x429094f7 tee_shm_va2pa -EXPORT_SYMBOL_GPL drivers/tee/tee 0x48283bd5 tee_shm_pool_alloc_res_mem -EXPORT_SYMBOL_GPL drivers/tee/tee 0x5028b469 tee_shm_get_va -EXPORT_SYMBOL_GPL drivers/tee/tee 0x5ed7eed0 tee_get_drvdata -EXPORT_SYMBOL_GPL drivers/tee/tee 0x66b622d0 tee_shm_pa2va -EXPORT_SYMBOL_GPL drivers/tee/tee 0x6f9674f1 tee_shm_alloc -EXPORT_SYMBOL_GPL drivers/tee/tee 0x70110a05 tee_device_register -EXPORT_SYMBOL_GPL drivers/tee/tee 0x71c7ccb3 tee_device_unregister -EXPORT_SYMBOL_GPL drivers/tee/tee 0x7ab19422 tee_client_close_context -EXPORT_SYMBOL_GPL drivers/tee/tee 0x85fd9922 tee_session_calc_client_uuid -EXPORT_SYMBOL_GPL drivers/tee/tee 0x88b10b59 teedev_open -EXPORT_SYMBOL_GPL drivers/tee/tee 0x8f631903 tee_client_open_context -EXPORT_SYMBOL_GPL drivers/tee/tee 0x9af555ed tee_client_invoke_func -EXPORT_SYMBOL_GPL drivers/tee/tee 0x9ba0336d tee_bus_type -EXPORT_SYMBOL_GPL drivers/tee/tee 0xa251b733 tee_client_open_session -EXPORT_SYMBOL_GPL drivers/tee/tee 0xa42d2071 tee_client_close_session -EXPORT_SYMBOL_GPL drivers/tee/tee 0xab5673e1 teedev_close_context -EXPORT_SYMBOL_GPL drivers/tee/tee 0xb2efdf46 tee_shm_free -EXPORT_SYMBOL_GPL drivers/tee/tee 0xb5806852 tee_client_get_version -EXPORT_SYMBOL_GPL drivers/tee/tee 0xb76c1dcc tee_shm_pool_free -EXPORT_SYMBOL_GPL drivers/tee/tee 0xc92b1b53 tee_shm_put -EXPORT_SYMBOL_GPL drivers/tee/tee 0xd1ab1e3f tee_shm_pool_mgr_alloc_res_mem -EXPORT_SYMBOL_GPL drivers/tee/tee 0xe0360963 tee_shm_register -EXPORT_SYMBOL_GPL drivers/tee/tee 0xe7f69a26 tee_shm_get_from_id -EXPORT_SYMBOL_GPL drivers/thermal/intel/int340x_thermal/int340x_thermal_zone 0x42a46567 int340x_thermal_zone_remove -EXPORT_SYMBOL_GPL drivers/thermal/intel/int340x_thermal/int340x_thermal_zone 0xba542e16 int340x_thermal_zone_add -EXPORT_SYMBOL_GPL drivers/thermal/intel/int340x_thermal/int340x_thermal_zone 0xc12aa9c6 int340x_thermal_read_trips -EXPORT_SYMBOL_GPL drivers/thermal/intel/int340x_thermal/processor_thermal_device 0x43742cfd proc_thermal_mmio_add -EXPORT_SYMBOL_GPL drivers/thermal/intel/int340x_thermal/processor_thermal_device 0x5abecaa9 proc_thermal_resume -EXPORT_SYMBOL_GPL drivers/thermal/intel/int340x_thermal/processor_thermal_device 0x6218b152 proc_thermal_add -EXPORT_SYMBOL_GPL drivers/thermal/intel/int340x_thermal/processor_thermal_device 0x72a496c4 proc_thermal_mmio_remove -EXPORT_SYMBOL_GPL drivers/thermal/intel/int340x_thermal/processor_thermal_device 0xcacdaa55 proc_thermal_remove -EXPORT_SYMBOL_GPL drivers/thermal/intel/int340x_thermal/processor_thermal_device 0xeb6986e0 proc_thermal_suspend -EXPORT_SYMBOL_GPL drivers/thermal/intel/int340x_thermal/processor_thermal_mbox 0x0a61804c proc_thermal_mbox_remove -EXPORT_SYMBOL_GPL drivers/thermal/intel/int340x_thermal/processor_thermal_mbox 0x0c61c83f proc_thermal_mbox_add -EXPORT_SYMBOL_GPL drivers/thermal/intel/int340x_thermal/processor_thermal_rapl 0x098e82d4 proc_thermal_rapl_remove -EXPORT_SYMBOL_GPL drivers/thermal/intel/int340x_thermal/processor_thermal_rapl 0x84898173 proc_thermal_rapl_add -EXPORT_SYMBOL_GPL drivers/thermal/intel/int340x_thermal/processor_thermal_rfim 0x054e0839 proc_thermal_rfim_remove -EXPORT_SYMBOL_GPL drivers/thermal/intel/int340x_thermal/processor_thermal_rfim 0x0c0e0bd2 proc_thermal_rfim_add -EXPORT_SYMBOL_GPL drivers/thermal/intel/intel_soc_dts_iosf 0x26868d4c intel_soc_dts_iosf_exit -EXPORT_SYMBOL_GPL drivers/thermal/intel/intel_soc_dts_iosf 0x4c03dbdb intel_soc_dts_iosf_init -EXPORT_SYMBOL_GPL drivers/thermal/intel/intel_soc_dts_iosf 0x50c9f025 intel_soc_dts_iosf_interrupt_handler -EXPORT_SYMBOL_GPL drivers/thermal/intel/intel_soc_dts_iosf 0xa351fed2 intel_soc_dts_iosf_add_read_only_critical_trip -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x01d23ee1 tb_property_create_dir -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x15a7ec12 tb_ring_poll_complete -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x16e8b83f __tb_ring_enqueue -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x22e5fd24 tb_xdomain_alloc_in_hopid -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x2db9c8a7 tb_xdomain_enable_paths -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x37242952 tb_ring_free -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x393b4f2f tb_property_free_dir -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x4391a3c5 tb_xdomain_type -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x4a8e9e12 tb_ring_stop -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 0x558a834d tb_ring_start -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x5671c820 tb_xdomain_release_in_hopid -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x5a4028b3 tb_xdomain_find_by_route -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x603249ed tb_unregister_property_dir -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x648af99c tb_register_service_driver -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x658e3d97 tb_property_add_immediate -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x73ad2acb tb_property_get_next -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x73ed21ff tb_ring_alloc_rx -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x785eb82c tb_property_remove -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x882fa64d tb_ring_poll -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x8b62f95e tb_property_add_dir -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x9a37aa3d tb_xdomain_response -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x9e7105d7 tb_unregister_service_driver -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xa3d2b403 tb_property_add_data -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xa54c7347 tb_xdomain_request -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xadce49f0 tb_service_type -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xb154890a tb_xdomain_release_out_hopid -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xb64dd926 tb_xdomain_alloc_out_hopid -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xb7c7cdce tb_property_add_text -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xb9b02a42 tb_xdomain_lane_bonding_disable -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xbe80821f tb_xdomain_find_by_uuid -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xd761b52d tb_xdomain_disable_paths -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xeeb60ce4 tb_xdomain_lane_bonding_enable -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xf1cfd1ff tb_register_property_dir -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xf5b0df2e tb_ring_alloc_tx -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xf76028c7 tb_unregister_protocol_handler -EXPORT_SYMBOL_GPL drivers/uio/uio 0x097e2644 __devm_uio_register_device -EXPORT_SYMBOL_GPL drivers/uio/uio 0x4bac731c __uio_register_device -EXPORT_SYMBOL_GPL drivers/uio/uio 0xa3d3c5a3 uio_event_notify -EXPORT_SYMBOL_GPL drivers/uio/uio 0xf373e4f4 uio_unregister_device -EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0x355998ca usbatm_usb_probe -EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0xe2c7924f usbatm_usb_disconnect -EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x1a2a0890 cdns_init -EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x416c928a cdns_clear_vbus -EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x56d56821 cdns_set_vbus -EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x63b4633c cdns_power_is_lost -EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x8eeb3e80 cdns_drd_gadget_off -EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x9301fe95 cdns_suspend -EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x99754302 cdns_set_active -EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0xd57082b2 cdns_drd_gadget_on -EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0xdd5c7ed7 cdns_remove -EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0xde04f3ac cdns_resume -EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0x2f0cc27a hw_phymode_configure -EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0x47041d28 ci_hdrc_remove_device -EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0x62795342 ci_hdrc_add_device -EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0xdd6089d0 ci_hdrc_query_available_role -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x550b4797 ulpi_write -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x668c3b76 ulpi_unregister_interface -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x7cc1e3c0 ulpi_register_interface -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0xa186bbfc ulpi_read -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0xc2a04f9b ulpi_unregister_driver -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0xf83f6567 __ulpi_register_driver -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x0ade0cb9 g_audio_cleanup -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x1102a39b u_audio_start_playback -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x1e0f4eb3 u_audio_get_volume -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x1fa6f539 u_audio_start_capture -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x36afefa2 u_audio_stop_capture -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x4a5b6408 g_audio_setup -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x5b3f6c1d u_audio_get_mute -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x76f6e04d u_audio_stop_playback -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x95b25533 u_audio_set_mute -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0xb18c8a5b u_audio_set_volume -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x04a8aefa gether_connect -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x215e6f61 gether_get_host_addr_u8 -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x4abd3640 gether_set_gadget -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x5558b2be gether_set_dev_addr -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x5600e845 gether_set_host_addr -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x65215926 gether_get_host_addr_cdc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x7e856f78 gether_get_qmult -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x848d9a03 gether_get_dev_addr -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x8878cfa6 gether_cleanup -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x8a773c3f gether_disconnect -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x9bb506a5 gether_setup_name -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xa8b04333 gether_set_ifname -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xbe89c2ee gether_get_ifname -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xced0af02 gether_register_netdev -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xddcda7b4 gether_setup_name_default -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xe155bb97 gether_get_host_addr -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xe54a4615 gether_set_qmult -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x075a704d gserial_suspend -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x339a2969 gserial_disconnect -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x33bfdca2 gserial_alloc_line -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x4a3df9d0 gs_alloc_req -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x60db48f5 gserial_get_console -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x60ea48a0 gs_free_req -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x726f6bd5 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 0xf7408575 gserial_resume -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0x1cb9ea6f ffs_name_dev -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0x7db2aa6d ffs_single_dev -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0x9f0d322e ffs_lock -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 0x1f994089 fsg_store_removable -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x2933ee1d fsg_ss_bulk_in_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x330f6936 fsg_show_inquiry_string -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x398778e1 fsg_ss_function -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x3c6a07d0 fsg_common_create_lun -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x423845e4 fsg_ss_bulk_in_comp_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x56344daf fsg_hs_bulk_out_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x68a941fd fsg_store_file -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 0x7c03402e fsg_show_cdrom -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x7e26d4a5 fsg_common_set_sysfs -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x7e646b69 fsg_show_nofua -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x7fdd4c76 fsg_store_inquiry_string -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x857b6dc2 fsg_hs_function -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x8cd8b3a8 fsg_show_ro -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x8d9eff65 fsg_common_set_cdev -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x8fcaf320 fsg_store_ro -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x90f9e345 fsg_lun_close -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 0xb30a86bb fsg_lun_fsync_sub -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xb3adf38d store_cdrom_address -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xb520c9dc fsg_store_nofua -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xb52ba28a fsg_intf_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xb54d0d95 fsg_fs_bulk_in_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xbf30b776 fsg_store_cdrom -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xd1a3e8e0 fsg_common_create_luns -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xe1b4f1a0 fsg_show_file -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xe5bc1f24 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 0xf5fa161a fsg_lun_open -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xfbad631a fsg_common_remove_lun -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x1a9c2a01 rndis_deregister -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x251625e2 rndis_set_param_medium -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x514dabd9 rndis_borrow_net -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x58f8e05e rndis_signal_connect -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x5db4270f rndis_get_next_response -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x67ca4e6b rndis_free_response -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x6983fde7 rndis_register -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x74885887 rndis_msg_parser -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x7c53e6f3 rndis_add_hdr -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x7fdb91a6 rndis_rm_hdr -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x94d94978 rndis_set_host_mac -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x9c4141bf rndis_uninit -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xa34d7b2e rndis_set_param_dev -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xcdb34cdb rndis_set_param_vendor -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xfdd02c77 rndis_signal_disconnect -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x0c3592d5 config_ep_by_speed_and_alt -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 0x0efd818b config_ep_by_speed -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x1a2d9500 unregister_gadget_item -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x2c09f613 usb_string_ids_tab -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x2e09263f usb_copy_descriptors -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x3399ed63 usb_composite_overwrite_options -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x381cc12f usb_interface_id -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x3a44f96e usb_function_unregister -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x3effcc86 usb_otg_descriptor_alloc -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x4beb505d usb_gadget_get_string -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x58139ff9 usb_string_id -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x5982fd18 usb_function_deactivate -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x6a5806e7 usb_composite_probe -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x7bcd347f usb_composite_setup_continue -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x851f3352 usb_get_function -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x913cc295 usb_add_config_only -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x99688295 usb_put_function_instance -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x9a7f4792 usb_composite_unregister -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x9cf2e5de usb_get_function_instance -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x9e9381fa usb_remove_function -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xa0043067 usb_free_all_descriptors -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xa518666f usb_string_ids_n -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xa903cb3e usb_ep_autoconfig_ss -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xb07698e3 usb_assign_descriptors -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xb775db55 alloc_ep_req -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xc0764db0 usb_function_register -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xc156cbd5 usb_add_function -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xcd494f0e usb_otg_descriptor_init -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xd2ea2134 usb_descriptor_fillbuf -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xdcd66657 usb_add_config -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xe0da177c usb_gstrings_attach -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xe6d43f71 usb_put_function -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xf474a207 usb_gadget_config_buf -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xf5745fd9 usb_ep_autoconfig_reset -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xf8960ef7 usb_ep_autoconfig -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xfd1faf05 usb_function_activate -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x084718b7 free_dma_pools -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x13c1335c empty_req_queue -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x198e5d11 udc_enable_dev_setup_interrupts -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x22fa1a9d udc_probe -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x266393b4 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 0x660edbf1 udc_remove -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x8b896eb8 gadget_release -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0xa581f62b udc_mask_unused_interrupts -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0xb1acbd5b init_dma_pools -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x00162d54 usb_gadget_check_config -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x01b12bfb usb_ep_free_request -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x06755407 usb_gadget_wakeup -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x0a8c3b4b usb_ep_set_halt -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x0acfe2e7 usb_ep_set_wedge -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x0d90d784 usb_ep_fifo_flush -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x1522ee04 usb_del_gadget -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x30c1a548 usb_initialize_gadget -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x3a36c5d8 usb_gadget_frame_number -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x3c9b435b usb_gadget_disconnect -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x40629abb 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 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 0x537b1c4f usb_gadget_unmap_request_by_dev -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x53c941f1 usb_add_gadget -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x5a110952 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 0x61aece39 usb_gadget_activate -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x646a3cfb usb_del_gadget_udc -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x662003d4 usb_gadget_map_request_by_dev -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x6739310e usb_gadget_set_selfpowered -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x711a38e7 usb_gadget_connect -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x7a41b9f2 usb_ep_set_maxpacket_limit -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x7be89624 usb_gadget_giveback_request -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x882077d5 usb_ep_dequeue -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x914667a6 usb_gadget_vbus_draw -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x9736c09b usb_gadget_unregister_driver -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x9eb52803 usb_ep_disable -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xa8f4dad9 usb_gadget_probe_driver -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xa9e74462 usb_ep_alloc_request -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xae81a1b1 usb_gadget_vbus_disconnect -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xaf201fa6 usb_ep_enable -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xbe733c06 usb_gadget_clear_selfpowered -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xc3a657b8 usb_gadget_deactivate -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xc4441f3c usb_gadget_set_remote_wakeup -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xe3a7f492 usb_udc_vbus_handler -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xe44041c1 usb_gadget_map_request -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xe600b7c5 usb_gadget_unmap_request -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xeaae7fe5 usb_add_gadget_udc_release -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xeb3a1b0b usb_gadget_ep_match_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xf3a8c13b usb_gadget_udc_reset -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xf6d3d7da usb_add_gadget_udc -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xf864df6f gadget_find_ep_by_name -EXPORT_SYMBOL_GPL drivers/usb/host/xhci-pci-renesas 0xb57bf316 renesas_xhci_check_request_fw -EXPORT_SYMBOL_GPL drivers/usb/misc/ezusb 0x042deb7a ezusb_fx1_set_reset -EXPORT_SYMBOL_GPL drivers/usb/misc/ezusb 0xc3e9f841 ezusb_fx1_ihex_firmware_download -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x3a27edab usb_ftdi_elan_edset_setup -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x50618e72 usb_ftdi_elan_edset_flush -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x5685a0ef usb_ftdi_elan_read_pcimem -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x5b71a643 ftdi_elan_gone_away -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x5fea9949 usb_ftdi_elan_edset_output -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x67b47bb5 usb_ftdi_elan_edset_single -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x7c1dbe4c usb_ftdi_elan_write_pcimem -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xb6680f66 usb_ftdi_elan_edset_empty -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xc3116338 usb_ftdi_elan_edset_input -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x09492220 musb_mailbox -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x0b4a8834 musb_writeb -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x2734197f musb_readb -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x2caa7ce6 musb_interrupt -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x408dcdc0 musb_queue_resume_work -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x669594ad musb_clearw -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x699a920e musb_root_disconnect -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 0x7fbef7c7 musb_get_mode -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x93c8e5b5 musb_set_peripheral -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0xade3e56c musb_writew -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0xd456bb09 musb_set_host -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0xe59efb0e musb_clearb -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0xf0f95e51 musb_readl -EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0x2baf2ca0 usb_gen_phy_shutdown -EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0x46e1e273 usb_phy_generic_register -EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0x6501a66d usb_gen_phy_init -EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0xd68682d5 usb_phy_gen_create_phy -EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0xfd6f8020 usb_phy_generic_unregister -EXPORT_SYMBOL_GPL drivers/usb/phy/phy-isp1301 0xe2f4ac0c isp1301_get_client -EXPORT_SYMBOL_GPL drivers/usb/serial/usb_wwan 0x3a462a3b usb_wwan_port_probe -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x04b498e2 usb_serial_port_softint -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x10bcb96d usb_serial_deregister_drivers -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x147a0ccf usb_serial_generic_throttle -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x320a02ee usb_serial_generic_tiocmiwait -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x40d533d9 usb_serial_generic_submit_read_urbs -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x42f70628 usb_serial_generic_open -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x4427c10e usb_serial_claim_interface -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x539140da usb_serial_generic_read_bulk_callback -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x622e7eb8 usb_serial_generic_wait_until_sent -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x66963005 usb_serial_generic_get_icount -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x6930857d usb_serial_generic_unthrottle -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x79437027 usb_serial_register_drivers -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x838dedb7 usb_serial_generic_write_bulk_callback -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x8b7cd4d0 usb_serial_generic_close -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x8e1fe1dd usb_serial_generic_resume -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xb2e56163 usb_serial_generic_write -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xd2f39ef2 usb_serial_generic_write_start -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xd9b199cc usb_serial_handle_dcd_change -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xdbab57c4 usb_serial_generic_process_read_urb -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xebdfcf2e usb_serial_generic_chars_in_buffer -EXPORT_SYMBOL_GPL drivers/usb/typec/altmodes/typec_displayport 0x205e842b dp_altmode_probe -EXPORT_SYMBOL_GPL drivers/usb/typec/altmodes/typec_displayport 0xab623ecf dp_altmode_remove -EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpci 0x2890685f 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 0x76eeda4b tcpm_unregister_port -EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 0x82db97f8 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 0x068e8997 typec_get_fw_cap -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x08afd7b2 typec_register_port -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x1029b3f8 typec_switch_get_drvdata -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x106f7c92 typec_mux_get_drvdata -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x1489b61c typec_mux_unregister -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x191fe5a8 typec_altmode_notify -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x23a286c4 typec_altmode_update_active -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x27f79344 typec_get_orientation -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x2d1e301d typec_find_power_role -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x2d923ea5 typec_altmode_vdm -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x2e4c03da typec_altmode_get_plug -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x306655d5 typec_partner_set_pd_revision -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x334f923f typec_match_altmode -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x340523e3 fwnode_typec_mux_get -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x35173598 typec_altmode_enter -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x4045d749 typec_partner_set_num_altmodes -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x41fdace9 typec_set_pwr_opmode -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x50ddb8e5 typec_link_port -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x54dbd25f typec_set_pwr_role -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x565529f8 fwnode_typec_switch_get -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x5d8d3de0 typec_unregister_plug -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x60f42168 __typec_altmode_register_driver -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x6192bd4b typec_switch_set_drvdata -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x624e59c4 typec_mux_put -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x6a889005 typec_altmode2port -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x7337e6a4 typec_plug_set_num_altmodes -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x75e0f44e typec_set_data_role -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x77aa8ba3 typec_plug_register_altmode -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x78878bbf typec_register_plug -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x7a06df81 typec_unregister_partner -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x8b8d313b typec_unlink_port -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x8c891efe typec_set_mode -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x9049491e typec_find_port_data_role -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x9b40c87f typec_cable_put -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xa254de98 typec_find_orientation -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xa6420409 typec_switch_register -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xa6877f9e typec_switch_set -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xaae5a26e typec_altmode_unregister_driver -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xab8620aa typec_cable_is_active -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xad1f85a4 typec_cable_get -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xb419920f typec_port_register_altmode -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xb8a3b5dc typec_register_cable -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xbb1dd9dc typec_altmode_get_partner -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xbbc818cf typec_unregister_cable -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xbf3f0036 typec_partner_register_altmode -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xbf462722 typec_get_drvdata -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xcb11acb8 typec_altmode_put_plug -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xcb5769b2 typec_register_partner -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xd8780244 typec_set_orientation -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xd915d448 typec_get_negotiated_svdm_version -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xdaa0f532 typec_partner_set_identity -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xdd314a1a typec_switch_put -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xe1a694a7 typec_set_vconn_role -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xe8d45680 typec_switch_unregister -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xe93068ff typec_partner_set_svdm_version -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xeafc1eb8 typec_find_port_power_role -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xec089414 typec_mux_register -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xef2ba49f typec_port_register_altmodes -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xf00b5678 typec_altmode_attention -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xf01c54d3 typec_cable_set_identity -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xf1234a8b typec_find_pwr_opmode -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xf1e89689 typec_unregister_altmode -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xf3d8bd78 typec_altmode_exit -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xf6f2170a typec_mux_set -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xfe4e1a10 typec_mux_set_drvdata -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xff05d291 typec_unregister_port -EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x225ead88 ucsi_set_drvdata -EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x477c5a2d ucsi_send_command -EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x4d9b325c ucsi_unregister -EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x75bd8b8b ucsi_connector_change -EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x7df72b02 ucsi_create -EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x91fc13b4 ucsi_register -EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0xa57c1395 ucsi_destroy -EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0xbb0b21da ucsi_get_drvdata -EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0xe261dfec ucsi_resume -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x17beaca0 usbip_pack_pdu -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x25696545 usbip_alloc_iso_desc_pdu -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x279adc27 usbip_pad_iso -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x2aca0ebb usbip_in_eh -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x3abbe307 usbip_stop_eh -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x3c6d7c08 dev_attr_usbip_debug -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x4a64a7e2 usbip_recv -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x53b0351e usbip_start_eh -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x55cc96ee usbip_event_add -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x60a50452 usbip_recv_xbuff -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x75c5e6d8 usbip_dump_urb -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x78b72f44 usbip_debug_flag -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x86c9c776 usbip_recv_iso -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xd02753dc usbip_header_correct_endian -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xe1ea0586 usbip_dump_header -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xe62295ae usbip_event_happened -EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x2101fbe4 vdpa_register_device -EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x290f8123 vdpa_unregister_driver -EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x48ad2f07 __vdpa_register_driver -EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x60dbfba5 __vdpa_alloc_device -EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x68395fef vdpa_unregister_device -EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0xcbe9e92e _vdpa_unregister_device -EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0xdcb34481 vdpa_mgmtdev_register -EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0xe23849c3 vdpa_mgmtdev_unregister -EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0xf8d511da _vdpa_register_device -EXPORT_SYMBOL_GPL drivers/vdpa/vdpa_sim/vdpa_sim 0xae5c5850 vdpasim_create -EXPORT_SYMBOL_GPL drivers/vfio/mdev/mdev 0x90c8bce1 mdev_bus_type -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x0ae3fb60 vhost_poll_init -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x0e0c4739 vhost_dev_has_owner -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x1b6baebd vhost_dev_ioctl -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x298344d2 vhost_dev_reset_owner -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x2d505646 vhost_work_dev_flush -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x32ce6e9a vhost_vring_ioctl -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x367e8edd vhost_enable_notify -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x37232ead vhost_vq_avail_empty -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x3949e37d vhost_vq_access_ok -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x3d201809 vhost_vq_is_setup -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x4359cf85 vhost_dev_check_owner -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x4551d499 vhost_init_device_iotlb -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x460b1c95 vhost_work_queue -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x587b82d2 vhost_poll_stop -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x659dd6ba vhost_get_vq_desc -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x6669301d vhost_signal -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x70868082 vhost_chr_read_iter -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x730d2d61 vhost_add_used_and_signal -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x7c94a48d vhost_enqueue_msg -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x7f343d90 vhost_dev_cleanup -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x8361b331 vhost_poll_flush -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x860812cc vhost_poll_start -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x977d073b vhost_discard_vq_desc -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x9e9908a2 vhost_new_msg -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xa909cfc5 vhost_work_init -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xacd019d9 vhost_log_write -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xaeaae3ce vhost_dequeue_msg -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xb0621af8 vhost_dev_set_owner -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xb3eca5f1 vhost_exceeds_weight -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xb698e836 vhost_set_backend_features -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xd5f7157e vq_meta_prefetch -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xd7a95447 vhost_add_used -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xdf89bcd3 vhost_add_used_n -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xe2e768a2 vhost_clear_msg -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xe424c210 vhost_vq_init_access -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xe48603e0 vhost_log_access_ok -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xe92daea2 vhost_dev_stop -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xec6b4124 vhost_dev_init -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xed7582c6 vhost_add_used_and_signal_n -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xee3eade7 vhost_poll_queue -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xf02eebee vhost_disable_notify -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xf7bb0b6c vhost_has_work -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xfd2b3e45 vhost_dev_reset_owner_prepare -EXPORT_SYMBOL_GPL drivers/vhost/vhost_iotlb 0x38ff875f vhost_iotlb_add_range -EXPORT_SYMBOL_GPL drivers/vhost/vhost_iotlb 0x5f4e5249 vhost_iotlb_reset -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 0x314bc081 ili9320_shutdown -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x36fcd80d ili9320_resume -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x4edf24a5 ili9320_remove -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x7d5f4590 ili9320_probe_spi -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xa67ce1f3 ili9320_write -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xc9417b1c ili9320_write_regs -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xf101db49 ili9320_suspend -EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_ddc 0x5b0638f9 fb_ddc_read -EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_sys_fops 0x2d1fa13d fb_sys_write -EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_sys_fops 0xc260ebea fb_sys_read -EXPORT_SYMBOL_GPL drivers/video/fbdev/sis/sisfb 0xd8227e5e sis_free_new -EXPORT_SYMBOL_GPL drivers/video/fbdev/sis/sisfb 0xda75e83e sis_malloc_new -EXPORT_SYMBOL_GPL drivers/video/fbdev/vermilion/vmlfb 0x016e6c20 vmlfb_unregister_subsys -EXPORT_SYMBOL_GPL drivers/video/fbdev/vermilion/vmlfb 0x90c018c6 vmlfb_register_subsys -EXPORT_SYMBOL_GPL drivers/video/fbdev/via/viafb 0x00613556 viafb_find_i2c_adapter -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 0xfff2dfd2 viafb_gpio_lookup -EXPORT_SYMBOL_GPL drivers/visorbus/visorbus 0x0e338292 visorchannel_signalempty -EXPORT_SYMBOL_GPL drivers/visorbus/visorbus 0x33bac522 visorbus_write_channel -EXPORT_SYMBOL_GPL drivers/visorbus/visorbus 0x4de03230 visorchannel_signalinsert -EXPORT_SYMBOL_GPL drivers/visorbus/visorbus 0x511059b1 visorbus_read_channel -EXPORT_SYMBOL_GPL drivers/visorbus/visorbus 0x56401853 visorchannel_signalremove -EXPORT_SYMBOL_GPL drivers/visorbus/visorbus 0x5ab6061e visorbus_unregister_visor_driver -EXPORT_SYMBOL_GPL drivers/visorbus/visorbus 0x816ffadf visorbus_disable_channel_interrupts -EXPORT_SYMBOL_GPL drivers/visorbus/visorbus 0x838958b7 visorbus_register_visor_driver -EXPORT_SYMBOL_GPL drivers/visorbus/visorbus 0xc455c651 visorchannel_get_guid -EXPORT_SYMBOL_GPL drivers/visorbus/visorbus 0xf6149968 visorbus_enable_channel_interrupts -EXPORT_SYMBOL_GPL drivers/w1/wire 0x03d81dfd w1_reset_bus -EXPORT_SYMBOL_GPL drivers/w1/wire 0x12fd8bcf w1_write_8 -EXPORT_SYMBOL_GPL drivers/w1/wire 0x14fa82b2 w1_write_block -EXPORT_SYMBOL_GPL drivers/w1/wire 0x5a9cdb7f w1_read_block -EXPORT_SYMBOL_GPL drivers/w1/wire 0x63757e92 w1_calc_crc8 -EXPORT_SYMBOL_GPL drivers/w1/wire 0x6819f1b8 w1_touch_bit -EXPORT_SYMBOL_GPL drivers/w1/wire 0x8b0340f6 w1_reset_select_slave -EXPORT_SYMBOL_GPL drivers/w1/wire 0x8f5cdb5c w1_touch_block -EXPORT_SYMBOL_GPL drivers/w1/wire 0xb1d2f85d w1_read_8 -EXPORT_SYMBOL_GPL drivers/w1/wire 0xe88417fd w1_triplet -EXPORT_SYMBOL_GPL drivers/w1/wire 0xf1587c82 w1_reset_resume_command -EXPORT_SYMBOL_GPL drivers/w1/wire 0xf2579fd5 w1_next_pullup -EXPORT_SYMBOL_GPL drivers/xen/xen-front-pgdir-shbuf 0x0629add0 xen_front_pgdir_shbuf_unmap -EXPORT_SYMBOL_GPL drivers/xen/xen-front-pgdir-shbuf 0x7edc8dd4 xen_front_pgdir_shbuf_free -EXPORT_SYMBOL_GPL drivers/xen/xen-front-pgdir-shbuf 0xae7c7297 xen_front_pgdir_shbuf_get_dir_start -EXPORT_SYMBOL_GPL drivers/xen/xen-front-pgdir-shbuf 0xcb51f56d xen_front_pgdir_shbuf_alloc -EXPORT_SYMBOL_GPL drivers/xen/xen-front-pgdir-shbuf 0xfa0c30d1 xen_front_pgdir_shbuf_map -EXPORT_SYMBOL_GPL drivers/xen/xen-privcmd 0x160cb7c8 xen_privcmd_fops -EXPORT_SYMBOL_GPL drivers/xen/xen-privcmd 0xce98d9f9 xen_privcmdbuf_fops -EXPORT_SYMBOL_GPL fs/dlm/dlm 0x4b62826c dlm_unlock -EXPORT_SYMBOL_GPL fs/dlm/dlm 0x58859f7f dlm_posix_unlock -EXPORT_SYMBOL_GPL fs/dlm/dlm 0x647d6170 dlm_lock -EXPORT_SYMBOL_GPL fs/dlm/dlm 0xa5f8fea5 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 0xd101530c dlm_posix_lock -EXPORT_SYMBOL_GPL fs/fscache/fscache 0x092cf98e fscache_object_sleep_till_congested -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x009c5434 nlmclnt_done -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x0dcc20b0 lockd_up -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x4faa6d92 nlmsvc_ops -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x513fd688 nlmsvc_unlock_all_by_sb -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x566b21a1 nlmclnt_proc -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x5a7e6d7a lockd_down -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x5ff3cb0e nlmclnt_init -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x77e35ccc nlmsvc_unlock_all_by_ip -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0294c6a2 nfs_callback_nr_threads -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x04a8ba33 nfs_client_init_is_complete -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0770682d nfs_force_lookup_revalidate -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0846ae28 nfs_pgio_current_mirror -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x089c6bb1 __tracepoint_nfs_fsync_enter -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0901178b nfs_getattr -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x091a1565 nfs_free_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0afe431b nfs_inode_attach_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0e2eb14a nfs_alloc_fattr_with_label -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0edf7fdb nfs_probe_fsinfo -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x10962bc2 nfs_auth_info_match -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x126bc1f4 __traceiter_nfs_xdr_bad_filehandle -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x15545182 nfs_write_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x16d6b67e nfs_commit_free -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x19cbc8a9 nfs_server_remove_lists -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1a8b4d66 nfs_reconfigure -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1abdfc52 nfs_wb_all -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1b968ba9 nfs_init_cinfo -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1dd1a1fa nfs_pgio_header_free -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1e1284e5 nfs_sync_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x226a8cb4 nfs_create -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x22d795a8 _nfs_display_fhandle_hash -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2337cfdd nfs_clear_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x267cecf1 nfs_generic_pg_test -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x26884ff7 nfs_alloc_fhandle -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x27a18ba1 nfs_release_request -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2c5cd99d nfs_commitdata_release -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2f6ec4a8 get_nfs_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3172f3e4 nfs_get_lock_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x31e324a0 nfs_sb_deactive -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x35ba460a nfs_put_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x364c7702 nfs_drop_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x37239e6d __SCT__tp_func_nfs_xdr_bad_filehandle -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x39e05ac3 nfs_idmap_cache_timeout -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3dad193a nfs_writeback_update_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3e070d33 nfs_file_fsync -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3f2690f2 nfs_check_flags -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3f860da7 nfs_post_op_update_inode_force_wcc -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 0x43ba0dca put_nfs_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x490cc7e3 __tracepoint_nfs_fsync_exit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x49220bfb alloc_nfs_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4a041c91 nfs_path -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4a0d0d9e nfs_free_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4afc7a3e nfs_server_copy_userdata -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4b49c129 nfs_invalidate_atime -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4c0f85ba nfs_refresh_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4cb9e001 recover_lost_locks -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4fe8d5b3 nfs_server_insert_lists -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x503f3cf2 nfs_mark_client_ready -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x507941cf nfs_clone_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x51892d61 nfs_callback_set_tcpport -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5452c311 __tracepoint_nfs_xdr_status -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x569073b7 nfs_get_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5691b76e nfs_access_get_cached -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x584b8482 nfs_inc_attr_generation_counter -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x58638417 nfs_filemap_write_and_wait_range -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x592ff2d8 nfs_umount_begin -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x59f7d53c nfs_link -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5a063725 nfs_sb_active -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5d61bf43 nfs_create_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6015b50a nfs_pgheader_init -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x604b6c83 nfs_flock -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6071db9d nfs_initiate_pgio -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x609a5e7b nfs_commitdata_alloc -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x61767e9f nfs_init_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x64d4c559 nfs_lock -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6561706f nfs_close_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x65cfbef6 __traceiter_nfs_fsync_exit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6763ee7c unregister_nfs_version -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x699d47e5 nfs_fs_type -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x69bd66ad nfs_generic_pgio -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6cc142af nfs_set_cache_invalid -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6e95d6fd nfs_atomic_open -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6fb23c8f nfs_file_operations -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x72110f16 nfs_sops -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x744ca846 nfs_setsecurity -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x74f146be nfs_try_get_tree -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7798c1b1 nfs_wait_client_init_complete -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x793bc2a5 nfs_put_lock_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7a320964 nfs_revalidate_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7a7b4fa2 nfs_dentry_operations -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7c9722ba nfs_dreq_bytes_left -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x82883522 nfs_post_op_update_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x832e8f0b nfs_alloc_fattr -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x85d65c78 nfs_do_submount -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x875db226 __SCK__tp_func_nfs_xdr_bad_filehandle -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x899b6fe7 nfs_request_add_commit_list -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8ca9251f nfs_lookup -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8f93cd6f nfs4_dentry_operations -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8fd6bbd2 nfs_wait_on_request -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 0x9246e526 nfs_retry_commit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x93403355 nfs_init_server_rpcclient -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x93cac791 nfs_alloc_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x96330cf5 nfs_file_read -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x96dbd6be nfs_pageio_init_write -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x98b0ece8 nfs_init_timeout_values -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9cbeac17 nfs_may_open -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9d919c44 __SCT__tp_func_nfs_fsync_exit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa04fc0ee nfs_access_add_cache -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa05ca625 nfs_fattr_init -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa24ef6b8 nfs_file_set_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa2574a7a nfs_create_rpc_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa476b0ab nfs_clear_verifier_delegated -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa5abb869 nfs_check_cache_invalid -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa655a5ba nfs_setattr -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa6a88e11 nfs_permission -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa70581ce __SCK__tp_func_nfs_fsync_enter -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa8e9e1ae send_implementation_id -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xaacf5e75 nfs_free_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xaafd4acc max_session_cb_slots -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xae74f886 nfs_async_iocounter_wait -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xaf130fed nfs_file_write -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xafe7643f nfs_rmdir -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb015d8e6 nfs_access_zap_cache -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb0f50b7c nfs_show_path -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb0f8fa57 nfs_unlink -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb7a07f54 nfs_init_commit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb8b98684 nfs_file_mmap -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb9f55014 nfs_setattr_update_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbac09509 nfs_request_add_commit_list_locked -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbee8c583 nfs_request_remove_commit_list -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbf036eb8 nfs_fscache_open_file -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbf8fe4cc nfs_symlink -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc3a2be67 nfs_net_id -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc7a3f0b8 __SCK__tp_func_nfs_xdr_status -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc7c9380a nfs_rename -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd0a974f2 __traceiter_nfs_fsync_enter -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd1a60549 nfs4_fs_type -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd26339c4 register_nfs_version -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd3611ada nfs_pgio_header_alloc -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd3705475 nfs_client_init_status -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd920fe63 __traceiter_nfs_xdr_status -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd9fa6544 nfs_commit_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdae9b5d7 nfs4_disable_idmapping -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdafdf44a __SCK__tp_func_nfs_fsync_exit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdbcc09d2 nfs_statfs -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdc252ae4 nfs_kill_super -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdc5ecb96 nfs_alloc_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdcbc6413 nfs_submount -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdd6a428f nfs_initiate_commit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdddecc5e nfs_scan_commit_list -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe2faa9b7 nfs_alloc_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe3bc6632 __tracepoint_nfs_xdr_bad_filehandle -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe61ff6c6 nfs_zap_acl_cache -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe90d5f59 nfs_show_stats -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xec1003be nfs_file_release -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xec3005bd nfs_client_for_each_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xed4086aa nfs_pageio_reset_read_mds -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xedcf50b2 nfs_mkdir -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf0b4d204 nfs4_label_alloc -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf25ad9ab nfs_fhget -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf2d99d57 nfs_pageio_resend -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf3cb49f3 nfs_mknod -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf4ad71bf nfs_access_set_mask -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf66bfed5 nfs_file_llseek -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf87ecb27 nfs_set_verifier -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf9feda74 nfs_pageio_reset_write_mds -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfa88cbd9 nfs_show_options -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfc1a4691 nfs_instantiate -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 0xfd61356f nfs_add_or_obtain -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfe320e0c nfs_pageio_init_read -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfe55f9ad nfs_show_devname -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfeb42418 __SCT__tp_func_nfs_xdr_status -EXPORT_SYMBOL_GPL fs/nfs/nfsv3 0xb9a262e0 nfs3_set_ds_client -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x005f6e8a pnfs_update_layout -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x023f3908 __SCK__tp_func_ff_layout_write_error -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0436442c __SCK__tp_func_ff_layout_commit_error -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x054bef45 layoutstats_timer -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x06632e69 __SCK__tp_func_pnfs_mds_fallback_pg_init_read -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x07759349 pnfs_generic_ds_cinfo_release_lseg -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0ae6d7ca __traceiter_ff_layout_write_error -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0b959f69 __SCK__tp_func_pnfs_mds_fallback_pg_init_write -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0f710fd4 nfs4_test_deviceid_unavailable -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x118afe4c __traceiter_nfs4_pnfs_read -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x129b4122 nfs4_pnfs_ds_put -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x14398885 pnfs_generic_pg_readpages -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x14439985 __traceiter_pnfs_mds_fallback_pg_init_read -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x17cd7183 pnfs_generic_pg_init_read -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x18e75751 __SCT__tp_func_pnfs_mds_fallback_write_pagelist -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x18ff9a53 pnfs_generic_layout_insert_lseg -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1a468f48 nfs4_mark_deviceid_available -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1d045d6b __tracepoint_ff_layout_read_error -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2421ece1 pnfs_generic_pg_writepages -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x26ecf6e6 pnfs_generic_pg_cleanup -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x273cb96a pnfs_free_commit_array -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x28bc8581 __tracepoint_nfs4_pnfs_write -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2b16e909 __SCT__tp_func_nfs4_pnfs_commit_ds -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2c825281 __SCK__tp_func_nfs4_pnfs_commit_ds -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2fce4503 pnfs_ld_write_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x33a5da60 pnfs_layout_mark_request_commit -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x37cca72d __SCK__tp_func_nfs4_pnfs_write -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3b432e87 __SCK__tp_func_ff_layout_read_error -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3dfbfd36 pnfs_generic_sync -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3ff1fe0d __tracepoint_ff_layout_commit_error -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x40f6979c __tracepoint_pnfs_mds_fallback_pg_get_mirror_count -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x45c19e4d nfs4_sequence_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x46668e1e pnfs_write_done_resend_to_mds -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4800d7b4 nfs4_pnfs_ds_add -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x499e052e pnfs_generic_clear_request_commit -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4c824caf __traceiter_pnfs_mds_fallback_read_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x51730826 nfs4_test_session_trunk -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x53f63022 __SCK__tp_func_pnfs_mds_fallback_read_pagelist -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x57d7d595 nfs4_schedule_lease_moved_recovery -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x57f30b6b nfs41_sequence_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5a1aefc3 pnfs_nfs_generic_sync -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5cbfbb4d __SCK__tp_func_nfs4_pnfs_read -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5f656d6c pnfs_add_commit_array -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x602e85c1 pnfs_generic_prepare_to_resend_writes -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 0x655cd93d nfs4_put_deviceid_node -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6796688d pnfs_generic_pg_init_write -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x67f01f29 nfs4_find_or_create_ds_client -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x68651183 __tracepoint_pnfs_mds_fallback_write_pagelist -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 0x6da6fbd4 __tracepoint_pnfs_mds_fallback_pg_init_read -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7496d18f pnfs_generic_ds_cinfo_destroy -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7e42bd3f __SCT__tp_func_ff_layout_read_error -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7e841c00 __traceiter_pnfs_mds_fallback_pg_init_write -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7edef4ca pnfs_read_done_resend_to_mds -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7f1fe697 __traceiter_pnfs_mds_fallback_pg_get_mirror_count -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7f36c8b9 pnfs_generic_pg_check_range -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8095fc2b pnfs_layoutcommit_inode -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x84a04b98 nfs4_mark_deviceid_unavailable -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8841b2f7 pnfs_generic_commit_pagelist -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x889596df pnfs_generic_scan_commit_lists -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x894c1250 __traceiter_pnfs_mds_fallback_read_pagelist -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8bcafb1d pnfs_report_layoutstat -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8c4b436c pnfs_register_layoutdriver -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8e7523c9 __SCK__tp_func_pnfs_mds_fallback_pg_get_mirror_count -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x91d1ba07 nfs4_proc_getdeviceinfo -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x930a94fd __SCT__tp_func_pnfs_mds_fallback_write_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x933be4e5 pnfs_ld_read_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x96c4643f __SCT__tp_func_pnfs_mds_fallback_pg_get_mirror_count -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9892af0e pnfs_set_layoutcommit -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x98f5d5df __SCK__tp_func_pnfs_mds_fallback_write_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa66bfc0e nfs4_schedule_session_recovery -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa9763844 pnfs_destroy_layout -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xaa5f6480 nfs4_set_ds_client -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xaba5d028 __tracepoint_ff_layout_write_error -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xadeca730 __SCT__tp_func_nfs4_pnfs_write -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb2c112b1 __tracepoint_nfs4_pnfs_commit_ds -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb3925293 nfs42_proc_layouterror -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbc3bc152 pnfs_unregister_layoutdriver -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbdd1fb30 nfs4_schedule_lease_recovery -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbe2e958d __tracepoint_pnfs_mds_fallback_pg_init_write -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc361c3c5 __SCT__tp_func_pnfs_mds_fallback_read_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc5936fa3 pnfs_generic_search_commit_reqs -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc6625cd9 nfs_remove_bad_delegation -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc81bcd53 __traceiter_ff_layout_read_error -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc89b355b nfs4_setup_sequence -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc924d459 nfs4_init_ds_session -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xcc21ce5c __SCT__tp_func_ff_layout_commit_error -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xcc46cf31 pnfs_generic_recover_commit_reqs -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xcdd6cf37 __tracepoint_pnfs_mds_fallback_write_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xcfb78ce8 __SCK__tp_func_pnfs_mds_fallback_write_pagelist -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xcfe1d609 __traceiter_nfs4_pnfs_write -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd3c1751f pnfs_set_lo_fail -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd427baa1 __traceiter_nfs4_pnfs_commit_ds -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd44deb3e nfs4_schedule_stateid_recovery -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd4819bca __tracepoint_pnfs_mds_fallback_read_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd5f8b79a nfs4_delete_deviceid -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd662ea42 nfs4_set_rw_stateid -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd6d061f7 pnfs_generic_pg_test -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd97b6446 nfs4_pnfs_ds_connect -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xdeb5edce __SCT__tp_func_pnfs_mds_fallback_pg_init_write -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xdeb601dc pnfs_put_lseg -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe64d3ac6 __tracepoint_pnfs_mds_fallback_read_pagelist -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe8238599 __traceiter_pnfs_mds_fallback_write_pagelist -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xeb1fd70a nfs4_init_deviceid_node -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xeb29efae pnfs_alloc_commit_array -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xed15fb41 nfs4_print_deviceid -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf20c9fe5 pnfs_generic_pg_check_layout -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf2bd5c7d __SCK__tp_func_pnfs_mds_fallback_read_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf2f3cbff nfs4_schedule_migration_recovery -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf32fa2b7 __SCT__tp_func_ff_layout_write_error -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf4050a60 nfs4_find_get_deviceid -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf61e799e __tracepoint_nfs4_pnfs_read -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf76abcd6 pnfs_error_mark_layout_for_return -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf7801360 nfs41_maxgetdevinfo_overhead -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf8f5af51 __traceiter_pnfs_mds_fallback_write_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf999267e pnfs_generic_commit_release -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xfa8a260f nfs4_decode_mp_ds_addr -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xfab020cd pnfs_generic_write_commit_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xfbff3c80 pnfs_read_resend_pnfs -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xfe1d117d __traceiter_ff_layout_commit_error -EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x1fe1e1ad locks_end_grace -EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x3b7c46fa locks_start_grace -EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x4efa5cb0 locks_in_grace -EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x82f70b10 opens_in_grace -EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0xaae0678b nfsacl_encode -EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0xdde30f1f nfs_stream_encode_acl -EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0xf3a88338 nfs_stream_decode_acl -EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0xff8eedc4 nfsacl_decode -EXPORT_SYMBOL_GPL fs/nfsd/nfsd 0xa396236a nfsd4_ssc_init_umount_work -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x0d01e3f3 o2nm_node_get -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x162f1602 o2hb_setup_callback -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 0x4dff360a o2hb_unregister_callback -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x58c88ff2 o2hb_get_all_regions -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x5e95a4b2 o2net_send_message_vec -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x5fcb80c9 o2hb_register_callback -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x6a0c3847 __mlog_printk -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x81a17396 mlog_and_bits -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x8d59014e o2nm_get_node_by_num -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa87bc9e7 o2nm_configured_node_map -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xb6ebf62a o2nm_this_node -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xbd13ee5d o2hb_check_node_heartbeating_no_sem -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xc4d99852 o2hb_check_node_heartbeating_from_callback -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 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 0xf512c21a o2nm_node_put -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xf56c2017 mlog_not_bits -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xf96a1970 o2nm_get_node_by_ip -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 0x3921f4d9 dlm_unregister_domain -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x53416c72 dlm_print_one_lock -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x5b6a1ee5 dlmlock -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x7a1211f8 dlm_setup_eviction_cb -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xb656240a dlm_register_eviction_cb -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xd4207d55 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 0xe81bd2b4 dlmunlock -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xfb86b96f dlm_errname -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x0a726931 ocfs2_cluster_this_node -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x0cfd3fc5 ocfs2_cluster_connect_agnostic -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x1475f64b ocfs2_dlm_lvb_valid -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x20bb1011 ocfs2_kset -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x4d3af7fa ocfs2_cluster_hangup -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x5cbd725f ocfs2_plock -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x76f40744 ocfs2_dlm_lvb -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x9507547f ocfs2_cluster_disconnect -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xaf969565 ocfs2_dlm_lock -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xbbc4ef97 ocfs2_stack_supports_plocks -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xc5196999 ocfs2_dlm_unlock -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xc831890d ocfs2_stack_glue_unregister -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xc9fae756 ocfs2_cluster_connect -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xcafdd707 ocfs2_dlm_lock_status -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xd344e4ee ocfs2_stack_glue_set_max_proto_version -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xd806a273 ocfs2_dlm_dump_lksb -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xed78d661 ocfs2_stack_glue_register -EXPORT_SYMBOL_GPL fs/pstore/pstore_blk 0x14ff85e0 register_pstore_device -EXPORT_SYMBOL_GPL fs/pstore/pstore_blk 0x43cc3d4b pstore_blk_get_config -EXPORT_SYMBOL_GPL fs/pstore/pstore_blk 0xf83bf12a unregister_pstore_device -EXPORT_SYMBOL_GPL fs/pstore/pstore_zone 0x433a65d4 unregister_pstore_zone -EXPORT_SYMBOL_GPL fs/pstore/pstore_zone 0xd8fa0ee5 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 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 0x3e901e05 notifier_err_inject_dir -EXPORT_SYMBOL_GPL lib/notifier-error-inject 0xc3191594 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 0x5837f73f lowpan_header_compress -EXPORT_SYMBOL_GPL net/6lowpan/6lowpan 0x785d48ee lowpan_header_decompress -EXPORT_SYMBOL_GPL net/802/garp 0x40961b25 garp_request_join -EXPORT_SYMBOL_GPL net/802/garp 0x45dac32c garp_init_applicant -EXPORT_SYMBOL_GPL net/802/garp 0x62b07c78 garp_request_leave -EXPORT_SYMBOL_GPL net/802/garp 0x6e4072ef garp_unregister_application -EXPORT_SYMBOL_GPL net/802/garp 0xa098eb1b garp_uninit_applicant -EXPORT_SYMBOL_GPL net/802/garp 0xa5966914 garp_register_application -EXPORT_SYMBOL_GPL net/802/mrp 0x03ee7e2d mrp_request_join -EXPORT_SYMBOL_GPL net/802/mrp 0x572842b1 mrp_init_applicant -EXPORT_SYMBOL_GPL net/802/mrp 0x59d93b18 mrp_uninit_applicant -EXPORT_SYMBOL_GPL net/802/mrp 0x637ffa58 mrp_request_leave -EXPORT_SYMBOL_GPL net/802/mrp 0xc217122c mrp_register_application -EXPORT_SYMBOL_GPL net/802/mrp 0xd5bb70f5 mrp_unregister_application -EXPORT_SYMBOL_GPL net/802/stp 0x11bf65dd stp_proto_register -EXPORT_SYMBOL_GPL net/802/stp 0xddffe563 stp_proto_unregister -EXPORT_SYMBOL_GPL net/9p/9pnet 0x64ccfa88 p9_client_xattrwalk -EXPORT_SYMBOL_GPL net/9p/9pnet 0xb04ef329 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 0xad489837 ax25_register_pid -EXPORT_SYMBOL_GPL net/ax25/ax25 0xaeb7451e ax25_defaddr -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x15f44d5d l2cap_chan_set_defaults -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x41a13736 l2cap_add_psm -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x64047ef9 l2cap_chan_send -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x802fe70a l2cap_chan_list -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x8281b973 l2cap_chan_connect -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x8baf692c l2cap_chan_put -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xa433de01 l2cap_chan_del -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xa6393408 bt_debugfs -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xef06f0e5 l2cap_chan_create -EXPORT_SYMBOL_GPL net/bluetooth/hidp/hidp 0xbef2c0f4 hidp_hid_driver -EXPORT_SYMBOL_GPL net/bridge/bridge 0x139c3323 br_multicast_has_querier_anywhere -EXPORT_SYMBOL_GPL net/bridge/bridge 0x13b6bcf8 br_vlan_get_info -EXPORT_SYMBOL_GPL net/bridge/bridge 0x15131376 br_multicast_has_querier_adjacent -EXPORT_SYMBOL_GPL net/bridge/bridge 0x22be3c46 br_multicast_list_adjacent -EXPORT_SYMBOL_GPL net/bridge/bridge 0x2685395f br_get_ageing_time -EXPORT_SYMBOL_GPL net/bridge/bridge 0x325ed511 br_multicast_has_router_adjacent -EXPORT_SYMBOL_GPL net/bridge/bridge 0x37314970 br_vlan_enabled -EXPORT_SYMBOL_GPL net/bridge/bridge 0x3faf3a36 br_vlan_get_pvid -EXPORT_SYMBOL_GPL net/bridge/bridge 0x4184a8df br_multicast_enabled -EXPORT_SYMBOL_GPL net/bridge/bridge 0x471c9ce9 br_handle_frame_finish -EXPORT_SYMBOL_GPL net/bridge/bridge 0x495accf5 br_dev_queue_push_xmit -EXPORT_SYMBOL_GPL net/bridge/bridge 0x510347fa br_vlan_get_pvid_rcu -EXPORT_SYMBOL_GPL net/bridge/bridge 0x522fe15f br_vlan_get_proto -EXPORT_SYMBOL_GPL net/bridge/bridge 0x5bf9b75d nf_br_ops -EXPORT_SYMBOL_GPL net/bridge/bridge 0x9014288f br_port_get_stp_state -EXPORT_SYMBOL_GPL net/bridge/bridge 0xa2d6fd05 br_multicast_router -EXPORT_SYMBOL_GPL net/bridge/bridge 0xa4607260 br_vlan_get_info_rcu -EXPORT_SYMBOL_GPL net/bridge/bridge 0xa661f2fa br_forward_finish -EXPORT_SYMBOL_GPL net/bridge/bridge 0xaea91562 br_fdb_clear_offload -EXPORT_SYMBOL_GPL net/bridge/bridge 0xe051f7dc br_port_flag_is_set -EXPORT_SYMBOL_GPL net/bridge/bridge 0xe2bef1e7 br_fdb_find_port -EXPORT_SYMBOL_GPL net/bridge/bridge 0xf4e8dbe5 br_forward -EXPORT_SYMBOL_GPL net/core/failover 0x186e3faf failover_register -EXPORT_SYMBOL_GPL net/core/failover 0x81ceabac failover_unregister -EXPORT_SYMBOL_GPL net/core/failover 0xe2c85458 failover_slave_unregister -EXPORT_SYMBOL_GPL net/dccp/dccp 0x02f4c7cd dccp_reqsk_send_ack -EXPORT_SYMBOL_GPL net/dccp/dccp 0x042c8611 dccp_rcv_state_process -EXPORT_SYMBOL_GPL net/dccp/dccp 0x0afe5963 dccp_sync_mss -EXPORT_SYMBOL_GPL net/dccp/dccp 0x0fe4b47c dccp_rcv_established -EXPORT_SYMBOL_GPL net/dccp/dccp 0x12cf52f2 dccp_death_row -EXPORT_SYMBOL_GPL net/dccp/dccp 0x140845be dccp_hashinfo -EXPORT_SYMBOL_GPL net/dccp/dccp 0x17ae77dc dccp_parse_options -EXPORT_SYMBOL_GPL net/dccp/dccp 0x182ec2bf dccp_ackvec_parsed_add -EXPORT_SYMBOL_GPL net/dccp/dccp 0x1fe870ae dccp_reqsk_init -EXPORT_SYMBOL_GPL net/dccp/dccp 0x2c661cc0 dccp_destroy_sock -EXPORT_SYMBOL_GPL net/dccp/dccp 0x46738374 dccp_done -EXPORT_SYMBOL_GPL net/dccp/dccp 0x4cdd391d dccp_feat_list_purge -EXPORT_SYMBOL_GPL net/dccp/dccp 0x4e66abab dccp_check_req -EXPORT_SYMBOL_GPL net/dccp/dccp 0x4fff19d2 dccp_init_sock -EXPORT_SYMBOL_GPL net/dccp/dccp 0x52da86c2 dccp_destruct_common -EXPORT_SYMBOL_GPL net/dccp/dccp 0x59814a84 dccp_statistics -EXPORT_SYMBOL_GPL net/dccp/dccp 0x5b703064 dccp_close -EXPORT_SYMBOL_GPL net/dccp/dccp 0x6110147d dccp_send_sync -EXPORT_SYMBOL_GPL net/dccp/dccp 0x653c0617 dccp_sendmsg -EXPORT_SYMBOL_GPL net/dccp/dccp 0x6cced7af dccp_child_process -EXPORT_SYMBOL_GPL net/dccp/dccp 0x6f803a2b dccp_make_response -EXPORT_SYMBOL_GPL net/dccp/dccp 0x708d54b0 dccp_connect -EXPORT_SYMBOL_GPL net/dccp/dccp 0x790949a0 dccp_setsockopt -EXPORT_SYMBOL_GPL net/dccp/dccp 0x80993155 dccp_timestamp -EXPORT_SYMBOL_GPL net/dccp/dccp 0x86be7924 dccp_packet_name -EXPORT_SYMBOL_GPL net/dccp/dccp 0x88dc3e8f dccp_insert_option -EXPORT_SYMBOL_GPL net/dccp/dccp 0x95768daa dccp_send_ack -EXPORT_SYMBOL_GPL net/dccp/dccp 0x9598d24d dccp_ackvec_parsed_cleanup -EXPORT_SYMBOL_GPL net/dccp/dccp 0x9c0498d5 inet_dccp_listen -EXPORT_SYMBOL_GPL net/dccp/dccp 0x9db9ef6e dccp_ioctl -EXPORT_SYMBOL_GPL net/dccp/dccp 0xb1e8d547 dccp_getsockopt -EXPORT_SYMBOL_GPL net/dccp/dccp 0xb47078d3 dccp_set_state -EXPORT_SYMBOL_GPL net/dccp/dccp 0xc0f78eca dccp_shutdown -EXPORT_SYMBOL_GPL net/dccp/dccp 0xca872021 dccp_poll -EXPORT_SYMBOL_GPL net/dccp/dccp 0xce0f3a49 dccp_create_openreq_child -EXPORT_SYMBOL_GPL net/dccp/dccp 0xd75b7072 dccp_orphan_count -EXPORT_SYMBOL_GPL net/dccp/dccp 0xde42c955 dccp_recvmsg -EXPORT_SYMBOL_GPL net/dccp/dccp 0xe3f0c963 dccp_feat_signal_nn_change -EXPORT_SYMBOL_GPL net/dccp/dccp 0xf18e3aba dccp_ctl_make_reset -EXPORT_SYMBOL_GPL net/dccp/dccp 0xf7d2cd5f dccp_feat_nn_get -EXPORT_SYMBOL_GPL net/dccp/dccp 0xff7b96ef dccp_disconnect -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x1caaff07 dccp_invalid_packet -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x68203deb dccp_v4_conn_request -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x71526f01 dccp_v4_do_rcv -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x85fdfe2f dccp_v4_send_check -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x914caa6e dccp_v4_connect -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x98e6255d dccp_v4_request_recv_sock -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x01cb83c5 dsa_devlink_param_get -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x060b7eb6 dsa_switch_suspend -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x1163acee dsa_port_from_netdev -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x11697e4d dsa_devlink_port_region_create -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x124f4579 dsa_tag_drivers_register -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x1ae9049d dsa_devlink_resource_register -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x3236b630 dsa_dev_to_net_device -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x417d1fed dsa_8021q_rx_switch_id -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x426ee9ae dsa_switch_resume -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x492c59ab dsa_devlink_region_create -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x4bd4336c dsa_tag_8021q_bridge_tx_fwd_offload -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x4cd6f698 dsa_enqueue_skb -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x54ee3c12 dsa_switch_shutdown -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x558900f6 dsa_port_get_phy_sset_count -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x5928bba7 vid_is_dsa_8021q_rxvlan -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x5d4a4ec4 dsa_port_get_phy_strings -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x622ea75d dsa_devlink_params_unregister -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x650d5daa dsa_devlink_param_set -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x6ca190d2 dsa_tag_8021q_unregister -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x7246b54c dsa_devlink_resources_unregister -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x731a7026 dsa_tag_drivers_unregister -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x7ed94389 dsa_devlink_params_register -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x8141544c dsa_switch_find -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x84b95034 dsa_port_get_ethtool_phy_stats -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x903de445 dsa_8021q_tx_vid -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x954dddac dsa_port_phylink_mac_change -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x9e59271d dsa_8021q_rx_source_port -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xa1118258 dsa_devlink_resource_occ_get_unregister -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xbb2b6a78 dsa_devlink_resource_occ_get_register -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xbe3856fc dsa_8021q_bridge_tx_fwd_offload_vid -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xc23e8d5f dsa_devlink_region_destroy -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xc4e9f925 dsa_slave_dev_check -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xcbdf5d7c dsa_8021q_xmit -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xcff9f4db dsa_tag_8021q_bridge_tx_fwd_unoffload -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xd08dcb69 dsa_tag_8021q_register -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xd1880f22 dsa_unregister_switch -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xdcd49c93 dsa_8021q_rcv -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xe94e013a dsa_8021q_rx_vid -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 0xf7516f40 dsa_register_switch -EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x0439a3b8 ieee802154_hdr_push -EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x73c1d270 ieee802154_hdr_peek_addrs -EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x87e2553b ieee802154_max_payload -EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x967f0235 ieee802154_hdr_pull -EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0xd4a3640b ieee802154_hdr_peek -EXPORT_SYMBOL_GPL net/ife/ife 0x139f98a3 ife_decode -EXPORT_SYMBOL_GPL net/ife/ife 0x30209fc4 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 0x1534ff56 esp_output_head -EXPORT_SYMBOL_GPL net/ipv4/esp4 0x80601935 esp_output_tail -EXPORT_SYMBOL_GPL net/ipv4/esp4 0xcb0809a8 esp_input_done2 -EXPORT_SYMBOL_GPL net/ipv4/gre 0x5236549a gre_add_protocol -EXPORT_SYMBOL_GPL net/ipv4/gre 0x7ff90710 gre_del_protocol -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x0810a337 inet_diag_register -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x47914411 inet_diag_find_one_icsk -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x5ad78849 inet_diag_msg_common_fill -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x5e18536f inet_diag_dump_one_icsk -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x5fa40162 inet_diag_msg_attrs_fill -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x694fe91f inet_diag_dump_icsk -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xf2898d3e inet_sk_diag_fill -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xf93c5c17 inet_diag_unregister -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xf9a38b53 inet_diag_bc_sk -EXPORT_SYMBOL_GPL net/ipv4/ip_gre 0x6a5000b5 gretap_fb_dev_create -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x0f0dc7c3 ip_tunnel_encap_setup -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x13030bf1 ip_tunnel_ctl -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x197eb3cc ip_tunnel_siocdevprivate -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x264bd8de ip_tunnel_delete_nets -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x2bfddc8c ip_md_tunnel_xmit -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x2e2dd018 ip_tunnel_rcv -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x4513ed9a ip_tunnel_dellink -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x581b44fd ip_tunnel_init_net -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x742ace3f ip_tunnel_setup -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x79e3e00a ip_tunnel_lookup -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x8fb13e06 ip_tunnel_xmit -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x955e76c3 __ip_tunnel_change_mtu -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x95fe4c09 ip_tunnel_change_mtu -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xbaa6a476 ip_tunnel_init -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xcd0cb04e ip_tunnel_newlink -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xd7ab758d ip_tunnel_uninit -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xd9f705ff ip_tunnel_changelink -EXPORT_SYMBOL_GPL net/ipv4/netfilter/arp_tables 0xf2a66184 arpt_alloc_initial_table -EXPORT_SYMBOL_GPL net/ipv4/netfilter/ip_tables 0xcfd06430 ipt_alloc_initial_table -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_defrag_ipv4 0x08647b9a nf_defrag_ipv4_enable -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_defrag_ipv4 0x1ac9d8a2 nf_defrag_ipv4_disable -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_dup_ipv4 0xff18d5de nf_dup_ipv4 -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x03b68f82 nf_reject_skb_v4_unreach -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x1aa3d926 nf_send_unreach -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x23ffea3d nf_reject_skb_v4_tcp_reset -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x29215e2e nf_send_reset -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x2f7aef83 nf_reject_ip_tcphdr_get -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x4ef50fec nf_reject_ip_tcphdr_put -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x9a5c88fb nf_reject_iphdr_put -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_socket_ipv4 0xe17a6e95 nf_sk_lookup_slow_v4 -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0x3436029b nf_tproxy_handle_time_wait4 -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0xa5b2713f nf_tproxy_laddr4 -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0xa5ef0b9f nf_tproxy_get_sock_v4 -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nft_fib_ipv4 0x1411145c nft_fib4_eval -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nft_fib_ipv4 0x694c9ce0 nft_fib4_eval_type -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x16e3e585 tcp_vegas_init -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x24b3c8e5 tcp_vegas_cwnd_event -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x9d9965e9 tcp_vegas_get_info -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xa9e4ddb2 tcp_vegas_pkts_acked -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xa9e51cb4 tcp_vegas_state -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x07c4aac4 udp_tunnel_push_rx_port -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x1e8cc278 udp_tunnel_notify_add_rx_port -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x4b463342 udp_tunnel_drop_rx_port -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x5389b071 udp_tunnel_sock_release -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x63ccadd8 setup_udp_tunnel_sock -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x81120420 udp_tunnel_xmit_skb -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xe64c51d6 udp_tunnel_notify_del_rx_port -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xfc76198e udp_tun_rx_dst -EXPORT_SYMBOL_GPL net/ipv6/esp6 0x605d34f3 esp6_output_head -EXPORT_SYMBOL_GPL net/ipv6/esp6 0x8ae3a87e esp6_output_tail -EXPORT_SYMBOL_GPL net/ipv6/esp6 0x9790326e esp6_input_done2 -EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x0fb44c79 ip6_tnl_rcv_ctl -EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x79be1151 ip6_tnl_encap_setup -EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x9a5ce2e3 ip6_tnl_xmit_ctl -EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0x45f2a327 udp_sock_create6 -EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0xd0aed98f udp_tunnel6_xmit_skb -EXPORT_SYMBOL_GPL net/ipv6/netfilter/ip6_tables 0x4097062c ip6t_alloc_initial_table -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x2f7b40ce nf_defrag_ipv6_enable -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0xd0806192 nf_ct_frag6_gather -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0xe033b51b nf_defrag_ipv6_disable -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_dup_ipv6 0x1519ca63 nf_dup_ipv6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x0367cd2c nf_reject_skb_v6_tcp_reset -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x20a7e870 nf_reject_ip6_tcphdr_put -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x3a43eff6 nf_reject_skb_v6_unreach -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x7ad0e93b nf_send_unreach6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x9bdf3e9b nf_reject_ip6_tcphdr_get -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xccac3a41 nf_reject_ip6hdr_put -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xdc824cc6 nf_send_reset6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_socket_ipv6 0x661dcffc nf_sk_lookup_slow_v6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0x11b39113 nf_tproxy_laddr6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0x3b9ee35b nf_tproxy_handle_time_wait6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0xb4c0ebf8 nf_tproxy_get_sock_v6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nft_fib_ipv6 0xab51414e nft_fib6_eval_type -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nft_fib_ipv6 0xb21ff5d4 nft_fib6_eval -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x04371177 l2tp_tunnel_create -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x0d3191e5 l2tp_session_register -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x162fa583 l2tp_session_dec_refcount -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x1fde76d9 l2tp_tunnel_delete -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x36aa8353 l2tp_tunnel_get_nth -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x4d02231c l2tp_session_get -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x5f380af5 l2tp_tunnel_inc_refcount -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x6cdf0fb4 l2tp_session_create -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x7d0c27a1 l2tp_tunnel_register -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xa843b96c l2tp_session_delete -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xac82a58e l2tp_xmit_skb -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xbb68a222 l2tp_tunnel_dec_refcount -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xbe13b30c l2tp_tunnel_get -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xca67c1d5 l2tp_session_get_nth -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xcfdf585e l2tp_session_set_header_len -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xdc160754 l2tp_sk_to_tunnel -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xdc191773 l2tp_session_inc_refcount -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xe053ec47 l2tp_udp_encap_recv -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xe3eaf0cf l2tp_recv_common -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xe5d4b344 l2tp_session_get_by_ifname -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xff77c244 l2tp_tunnel_get_session -EXPORT_SYMBOL_GPL net/l2tp/l2tp_ip 0x92c81809 l2tp_ioctl -EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0x337f2432 l2tp_nl_unregister_ops -EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0x5b259e01 l2tp_nl_register_ops -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x11919369 ieeee80211_obss_color_collision_notify -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x11ccce86 ieee80211_find_sta_by_ifaddr -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x16b69f79 ieee80211_request_smps -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x1fca4854 ieee80211_color_change_finish -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x21d388b5 wdev_to_ieee80211_vif -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x2ed1e4da ieee80211_calc_rx_airtime -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x3001ce73 ieee80211_remain_on_channel_expired -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x48e663a0 ieee80211_iterate_active_interfaces_mtx -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x495e020d ieee80211_iterate_stations_atomic -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x5250cf98 ieee80211_tkip_add_iv -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x59c13bed ieee80211_key_mic_failure -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x72a62b83 ieee80211_ave_rssi -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x820aebd2 ieee80211_vif_to_wdev -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x857df251 ieee80211_iterate_interfaces -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x923c89f6 ieee80211_iterate_active_interfaces_atomic -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x9f4051ca ieee80211_calc_tx_airtime -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x9fe21222 ieee80211_resume_disconnect -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 0xcaa4e2a4 ieee80211_ready_on_channel -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xd5ad9bc9 ieee80211_update_mu_groups -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xd8e09da4 ieee80211_set_key_rx_seq -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xdecdbdbe ieee80211_gtk_rekey_notify -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xf0e4e751 ieee80211_gtk_rekey_add -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xf72892ab ieee80211_iter_chan_contexts_atomic -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x74351477 mpls_stats_inc_outucastpkts -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x7670b536 nla_get_labels -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x89ba944a mpls_output_possible -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xd4d20fe2 nla_put_labels -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xe84172e8 mpls_pkt_too_big -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xfc3a0f31 mpls_dev_mtu -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x0d5179a3 ip_set_nfnl_get_byindex -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x0f80f98c 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 0x33e1ffe8 ip_set_put_flags -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x397f6231 ip_set_free -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x66bf7999 ip_set_init_comment -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x7924b6de ip_set_hostmask_map -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x7cb46bb7 ip_set_match_extensions -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x81fff2d1 ip_set_netmask_map -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x90833943 ip_set_elem_len -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x9e98722b ip_set_get_ipaddr6 -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xa293f8a6 ip_set_get_ipaddr4 -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xa5d3c8d4 ip_set_name_byindex -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xa6bf39b0 ip_set_get_byname -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xb17a5367 ip_set_type_register -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xbd12d062 ip_set_get_ip6_port -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xc185a054 ip_set_get_ip4_port -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xc8ce2f0c ip_set_del -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xd37f0427 ip_set_type_unregister -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xd77a8264 ip_set_test -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xda5c5f56 ip_set_put_extensions -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xe220bf6f ip_set_get_extensions -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xe8010abf ip_set_add -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xeffdff39 ip_set_extensions -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xf3b4d4ae ip_set_alloc -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xf7b5351f ip_set_nfnl_put -EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x2061d91e unregister_ip_vs_pe -EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x80bd16f6 ip_vs_conn_out_get_proto -EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0xe3e8b6e1 register_ip_vs_pe -EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0xf6b46b64 ip_vs_conn_in_get_proto -EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x0b035c86 nf_conncount_cache_free -EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x1a7c165d nf_conncount_add -EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0xa739b5b8 nf_conncount_count -EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0xa7573a93 nf_conncount_list_init -EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0xa8ec9f1f nf_conncount_destroy -EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0xb7fd65fe nf_conncount_gc_list -EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0xd7aca6e9 nf_conncount_init -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x010f2f68 __nf_ct_expect_find -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x01500e15 __nf_conntrack_helper_find -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0bc00f80 nf_nat_helper_try_module_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0daf27f3 nf_l4proto_log_invalid -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x107f8a14 nf_conntrack_expect_lock -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x11ea01cd nf_ct_tcp_seqadj_set -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x12de2e3d nf_conntrack_helpers_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x17339dc3 nf_ct_netns_put -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1a7cb367 nf_ct_helper_expectfn_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1a97b192 nf_ct_iterate_destroy -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1c1fb798 nf_ct_timeout_put_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1d7032bd nf_ct_expect_iterate_destroy -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1e2061d9 nf_connlabels_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2314c200 nf_ct_bridge_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x25d4db46 nf_conntrack_unregister_notifier -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x27967947 nf_conntrack_register_notifier -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x289c3714 nf_ct_alloc_hashtable -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x28eff409 nf_conntrack_hash -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x296dbff9 nf_ct_timeout_find_get_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2a572c1d nf_conntrack_helper_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3387587c __nf_ct_refresh_acct -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3531553c nf_ct_kill_acct -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x36886cbd nf_ct_helper_ext_add -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x37730672 nf_ct_destroy_timeout -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3a96afed nf_ct_remove_expect -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3ac0c0d8 __nf_ct_try_assign_helper -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3ff16c52 nf_ct_iterate_cleanup_net -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x41f65228 nf_conntrack_eventmask_report -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x423481d2 nf_ct_l4proto_log_invalid -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x44240c24 nf_conntrack_tuple_taken -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4b1d1a27 nf_connlabels_replace -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4f2944ca nf_ct_set_auto_assign_helper_warned -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5220f2ac nf_conntrack_locks -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5618398b nf_ct_expect_find_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x58bceda0 nf_ct_seqadj_set -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5a44e839 nf_ct_netns_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5dac0c09 nf_nat_helper_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5f9a88d9 nf_ct_get_tuplepr -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x60ef8145 nf_ct_get_id -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x622f99ea nf_ct_deliver_cached_events -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x627c5267 nf_ct_unconfirmed_destroy -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x68556dc5 nf_ct_expect_init -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x693c3961 nf_ct_helper_hash -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6d4afed5 nf_conntrack_helper_put -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7074a8bc nf_ct_seqadj_init -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x70ed90bb nf_conntrack_alter_reply -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x715cfdca nf_ct_expect_alloc -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x728aac73 nf_ct_helper_expectfn_find_by_symbol -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7e1cc1fd nf_ct_extend_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7f74022c __nf_conntrack_confirm -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x803c92b3 nf_ct_remove_expectations -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x83ebed14 nf_ct_port_tuple_to_nlattr -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x858fdb97 nf_ct_tmpl_free -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x892dd603 nf_ct_delete -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8bc4c22b nf_ct_acct_add -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8ffe7e89 nf_conntrack_htable_size -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x914bddbd nf_ct_tmpl_alloc -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9496c92e nf_confirm -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x970a94a5 nf_ct_unexpect_related -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9884612e nf_ct_expect_related_report -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa467f411 nf_connlabels_put -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa4cea1a7 nf_conntrack_free -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa9175b3e nf_conntrack_count -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xac46183b nf_ct_expect_put -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xafbd6cf5 nf_ct_port_nlattr_to_tuple -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb0e22d9a nf_conntrack_helper_try_module_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb30bf67a nf_ct_l4proto_find -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb93316ee nf_ct_helper_expectfn_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbade06e6 nf_ct_seq_adjust -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbb2d47b9 nf_conntrack_hash_check_insert -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbd624022 nf_ct_expect_iterate_net -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc01c2e9e nf_nat_helper_put -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc0698177 nf_conntrack_lock -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc18ac88d nf_ct_expect_hsize -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc23a10a9 nf_ct_helper_expectfn_find_by_name -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc3d40158 nf_conntrack_helpers_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc40f284c nf_ct_helper_hsize -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc4267060 nf_ct_set_timeout -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc500c330 nf_conntrack_alloc -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc8dab308 nf_conntrack_find_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xca4adde0 nf_ct_unlink_expect_report -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xcc9f1b9e nf_nat_helper_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xce17a49f nf_ct_extend_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xcf70ccfd nf_conntrack_helper_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd1ae087f nf_ct_helper_log -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd505c3e0 nf_ct_port_nlattr_tuple_size -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdc36cf3e nf_ct_gre_keymap_destroy -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdcde963d nf_ct_untimeout -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdf0aed48 nf_ct_port_nla_policy -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe15da114 nf_ct_helper_init -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe820fbe6 nf_conntrack_in -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xec8beba6 nf_ct_expect_hash -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xef284630 nf_ct_seq_offset -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xef54285c nf_ct_gre_keymap_add -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf38bcdf3 nf_conntrack_max -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf972029a nf_ct_bridge_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfe731af8 nf_ct_invert_tuple -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_amanda 0x688f1f40 nf_nat_amanda_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_broadcast 0xee543ce5 nf_conntrack_broadcast_help -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_ftp 0x50ae6e17 nf_nat_ftp_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x0d616adc set_sig_addr_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x7152aae0 nat_q931_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x7731badf nat_t120_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xa7d60d7f nat_h245_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xc2b60374 set_ras_addr_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xc379bbef nat_callforwarding_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xc62ff797 set_h245_addr_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xe924834c get_h225_addr -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xf8deca9d set_h225_addr_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xfd6fce48 nat_rtp_rtcp_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_irc 0x13503a79 nf_nat_irc_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x62f31f2d nf_nat_pptp_hook_outbound -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x6a223973 nf_nat_pptp_hook_inbound -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x92a2bc04 nf_nat_pptp_hook_exp_gre -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0xad3ee6cf nf_nat_pptp_hook_expectfn -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x0b2b9d90 ct_sip_parse_address_param -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x1e1236dc ct_sip_parse_request -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x4ec67076 nf_nat_sip_hooks -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x514c8711 ct_sip_parse_header_uri -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x6136674d ct_sip_get_header -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xc9570328 ct_sip_get_sdp_header -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xfa46b34c ct_sip_parse_numerical_param -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_snmp 0x9eda3a4f nf_nat_snmp_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_tftp 0x25511d64 nf_nat_tftp_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0x44055a29 nft_fwd_dup_netdev_offload -EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0xaddf2adb nf_dup_netdev_egress -EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0xec32137d nf_fwd_netdev_egress -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x01b53f08 flow_offload_free -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x03170fc1 flow_offload_alloc -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x0a269cf7 flow_offload_lookup -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x27f8dbd6 nf_flow_rule_route_ipv4 -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x404e7486 nf_flow_table_offload_setup -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x66e6fb83 nf_flow_table_free -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x9d5e2c7b flow_offload_teardown -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x9f1a62c8 nf_flow_snat_port -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xa7ea3040 nf_flow_table_init -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xaf369338 nf_flow_offload_ip_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xbd1ccdb7 nf_flow_dnat_port -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xc6e4917b flow_offload_add -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xd0cd38fd flow_offload_route_init -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xe4c73ee7 nf_flow_table_cleanup -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xec593998 flow_offload_refresh -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xf561c307 nf_flow_offload_ipv6_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xf62d2892 nf_flow_rule_route_ipv6 -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x3098b959 nf_nat_redirect_ipv6 -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x35569294 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 0x67a01cf0 nf_nat_packet -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x7cdef7b6 nf_nat_ipv4_unregister_fn -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x87a8af34 nf_nat_icmp_reply_translation -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x96895577 nf_nat_inet_register_fn -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x96fe05bf nf_nat_masquerade_ipv4 -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x9bfe8401 nf_nat_inet_fn -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xa625dbed nf_ct_nat_ext_add -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xabcb72d1 nf_nat_masquerade_ipv6 -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xcfe58857 nf_nat_inet_unregister_fn -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xd32a9238 nf_nat_redirect_ipv4 -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xd7aa51c6 nf_nat_ipv6_register_fn -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xd9c25654 nf_nat_masquerade_inet_unregister_notifiers -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xde4632ce nf_nat_alloc_null_binding -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xeb635845 nf_nat_icmpv6_reply_translation -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xfb5daf8d nf_nat_ipv4_register_fn -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x0563647a nf_synproxy_ipv4_fini -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x06ab666f synproxy_parse_options -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x1f099794 synproxy_init_timestamp_cookie -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x27adb74b synproxy_recv_client_ack -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x54319b53 synproxy_send_client_synack_ipv6 -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x60a5cdc7 ipv4_synproxy_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x75d6a47e nf_synproxy_ipv6_init -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x8cc5edcb synproxy_recv_client_ack_ipv6 -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xa2b4d4ad nf_synproxy_ipv6_fini -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xc4133be8 synproxy_send_client_synack -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xca9fc082 synproxy_net_id -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xd20114a9 nf_synproxy_ipv4_init -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xd2e6325b ipv6_synproxy_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x0509c4f5 nft_unregister_expr -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x06c6ca47 nft_meta_policy -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x10832d47 nft_meta_get_init -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x133a99f1 nft_set_lookup_global -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x1b36dd48 nft_meta_set_validate -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x207c6c7b nft_meta_set_dump -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x22478808 nft_parse_register_store -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x283b9ebc nft_meta_get_dump -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x31253d1e nft_data_init -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x3251d762 nf_tables_trans_destroy_flush_work -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x3594d271 nft_meta_set_destroy -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x41b71e65 nft_trace_enabled -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x448730fb nft_register_expr -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x55168d0d nft_data_release -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x57867f5b nft_register_flowtable_type -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x594466e6 nft_dump_register -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x5e46a413 nft_set_do_lookup -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x5ead3217 nf_tables_bind_set -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x620a072e nf_tables_destroy_set -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x64438d47 nft_unregister_obj -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x698df5b8 nf_tables_deactivate_flowtable -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x6bf341ac nft_obj_lookup -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x7388ef39 nf_tables_deactivate_set -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x754d687a nft_meta_set_init -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x7e08437a nft_flowtable_lookup -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x7fd3e588 nft_do_chain -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x85ac9135 nft_register_chain_type -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x88023779 nft_meta_get_eval -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x9b58a985 nft_set_catchall_lookup -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xa02b7b0f nft_chain_validate_hooks -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xa63b411a nf_tables_activate_set -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xa7412a30 __nft_release_basechain -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xa8ba716f nft_data_dump -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xb262867c nft_meta_set_eval -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xbcd958a6 nft_chain_validate_dependency -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xcadaf142 nft_unregister_flowtable_type -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xcbb1a4e5 nft_request_module -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xcce52cbe nft_obj_notify -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xd53c9fbd nft_chain_validate -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xdc203d95 nft_set_elem_destroy -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xde57b5f5 nft_parse_u32_check -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xe1a51422 nft_register_obj -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xe2b8cc13 nft_parse_register_load -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xeb0e4ec7 nft_unregister_chain_type -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x5ce3b588 nfnl_lock -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x655ea0ab nfnetlink_send -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x8b18388a nfnetlink_subsys_unregister -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x9322aabd nfnetlink_subsys_register -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xb31b2b70 nfnetlink_has_listeners -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xc55fb75f nfnetlink_broadcast -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xcbd9f21e nfnetlink_set_err -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xdb065657 nfnl_unlock -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xec90ef8e nfnetlink_unicast -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xbecf5d14 nfnl_acct_put -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xe038f067 nfnl_acct_overquota -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xe2ea03f2 nfnl_acct_find_get -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xfbe375ae nfnl_acct_update -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_osf 0x35eff5e0 nf_osf_fingers -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_osf 0x8e6f199e nf_osf_match -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_osf 0xc585db15 nf_osf_find -EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0x767a82f4 nft_fib_validate -EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0xb3dd0483 nft_fib_init -EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0xd08789bd nft_fib_dump -EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0xf72ff90e nft_fib_store_result -EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x1256fbe4 nft_reject_init -EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x1de558c1 nft_reject_icmpv6_code -EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x5da83c45 nft_reject_dump -EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x6081751d nft_reject_policy -EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x611a9414 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 0x05d38b20 xt_check_target -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x3190bebe xt_request_find_match -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x38bbb59c xt_target_to_user -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x3e279984 xt_proto_init -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x53ab3f26 xt_compat_match_to_user -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x589d44f5 xt_hook_ops_alloc -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x5bef992b xt_proto_fini -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x62d6e35a xt_table_unlock -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x6cbbaaf7 xt_register_table -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x70ab084b xt_find_table_lock -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x72fe7887 xt_replace_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 0x8bbde471 xt_compat_target_to_user -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x8c18d1a5 xt_compat_target_from_user -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x8f13af8b xt_compat_match_offset -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x8faa1e08 xt_unregister_template -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x9ae54298 xt_unregister_table -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x9c995c69 xt_percpu_counter_alloc -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xa0335b47 xt_request_find_table_lock -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xa6e7cb50 xt_match_to_user -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xa7c94f1d xt_compat_lock -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xb05b9d49 xt_request_find_target -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xbc3dcf74 xt_compat_target_offset -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 0xde6a2d0a xt_register_template -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xe44d9766 xt_compat_match_from_user -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xfecfc825 xt_check_match -EXPORT_SYMBOL_GPL net/netfilter/xt_RATEEST 0xa3e6b813 xt_rateest_lookup -EXPORT_SYMBOL_GPL net/netfilter/xt_RATEEST 0xd89cf9dd xt_rateest_put -EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0x465f53e5 nci_spi_read -EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0x92dcecf4 nci_spi_send -EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0xb468202a nci_spi_allocate_spi -EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0x0421a492 nci_uart_unregister -EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0x6f045d7e nci_uart_set_config -EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0x965a90ff nci_uart_register -EXPORT_SYMBOL_GPL net/nsh/nsh 0x61c17088 nsh_push -EXPORT_SYMBOL_GPL net/nsh/nsh 0xa06fc74e nsh_pop -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x364610db ovs_netdev_link -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x42823e61 __ovs_vport_ops_register -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x5a90093b ovs_netdev_tunnel_destroy -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x5abb9701 ovs_vport_free -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xaba3ef66 ovs_vport_ops_unregister -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xb96e457a ovs_vport_alloc -EXPORT_SYMBOL_GPL net/psample/psample 0x182d67f5 psample_group_put -EXPORT_SYMBOL_GPL net/psample/psample 0x53567410 psample_group_get -EXPORT_SYMBOL_GPL net/psample/psample 0x6a6eec93 psample_sample_packet -EXPORT_SYMBOL_GPL net/psample/psample 0x6c60d0e3 psample_group_take -EXPORT_SYMBOL_GPL net/qrtr/qrtr 0x4446e8a7 qrtr_endpoint_post -EXPORT_SYMBOL_GPL net/qrtr/qrtr 0x47502ce0 qrtr_endpoint_unregister -EXPORT_SYMBOL_GPL net/qrtr/qrtr 0x8d25501f qrtr_ns_remove -EXPORT_SYMBOL_GPL net/qrtr/qrtr 0xa47e91ba qrtr_ns_init -EXPORT_SYMBOL_GPL net/qrtr/qrtr 0xf747654f qrtr_endpoint_register -EXPORT_SYMBOL_GPL net/rds/rds 0x00a467af rds_wq -EXPORT_SYMBOL_GPL net/rds/rds 0x04ec1138 rds_conn_drop -EXPORT_SYMBOL_GPL net/rds/rds 0x1169cf82 rds_rdma_send_complete -EXPORT_SYMBOL_GPL net/rds/rds 0x1bfdcd73 rds_inc_put -EXPORT_SYMBOL_GPL net/rds/rds 0x2b0d543c rds_message_add_extension -EXPORT_SYMBOL_GPL net/rds/rds 0x2bccbed6 rds_conn_path_connect_if_down -EXPORT_SYMBOL_GPL net/rds/rds 0x2c5ee698 rds_message_addref -EXPORT_SYMBOL_GPL net/rds/rds 0x3128ab65 rds_message_put -EXPORT_SYMBOL_GPL net/rds/rds 0x36087aa4 rds_stats -EXPORT_SYMBOL_GPL net/rds/rds 0x3724ecce rds_connect_complete -EXPORT_SYMBOL_GPL net/rds/rds 0x3bf7a45a rds_cong_map_updated -EXPORT_SYMBOL_GPL net/rds/rds 0x3d098e76 rds_inc_init -EXPORT_SYMBOL_GPL net/rds/rds 0x44aa8729 rds_send_path_reset -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 0x6208a5eb rds_message_unmapped -EXPORT_SYMBOL_GPL net/rds/rds 0x657e753d rds_conn_create -EXPORT_SYMBOL_GPL net/rds/rds 0x687acf51 rds_for_each_conn_info -EXPORT_SYMBOL_GPL net/rds/rds 0x7b399e66 rds_page_remainder_alloc -EXPORT_SYMBOL_GPL net/rds/rds 0x7fa33c6b rds_send_drop_acked -EXPORT_SYMBOL_GPL net/rds/rds 0x7fdd75a8 rds_trans_register -EXPORT_SYMBOL_GPL net/rds/rds 0x83945cec rds_send_path_drop_acked -EXPORT_SYMBOL_GPL net/rds/rds 0x85e4e520 rds_stats_info_copy -EXPORT_SYMBOL_GPL net/rds/rds 0x8e501c1b rds_conn_connect_if_down -EXPORT_SYMBOL_GPL net/rds/rds 0xa62fa2d1 rds_atomic_send_complete -EXPORT_SYMBOL_GPL net/rds/rds 0xaaa920ff rds_connect_path_complete -EXPORT_SYMBOL_GPL net/rds/rds 0xae3836aa rds_recv_incoming -EXPORT_SYMBOL_GPL net/rds/rds 0xaf7eb9a6 rds_send_xmit -EXPORT_SYMBOL_GPL net/rds/rds 0xc2dab779 rds_info_copy -EXPORT_SYMBOL_GPL net/rds/rds 0xc553f37b rds_conn_create_outgoing -EXPORT_SYMBOL_GPL net/rds/rds 0xd20c21c4 rds_info_deregister_func -EXPORT_SYMBOL_GPL net/rds/rds 0xd3163b3b rds_inc_path_init -EXPORT_SYMBOL_GPL net/rds/rds 0xd3c43b66 rds_trans_unregister -EXPORT_SYMBOL_GPL net/rds/rds 0xdf39b5f4 rds_info_register_func -EXPORT_SYMBOL_GPL net/rds/rds 0xe198af26 rds_send_ping -EXPORT_SYMBOL_GPL net/rds/rds 0xe3ffba90 rds_conn_destroy -EXPORT_SYMBOL_GPL net/rds/rds 0xfc8aa73e rds_conn_path_drop -EXPORT_SYMBOL_GPL net/sched/sch_pie 0x21671cad pie_process_dequeue -EXPORT_SYMBOL_GPL net/sched/sch_pie 0x6ce9b467 pie_calculate_probability -EXPORT_SYMBOL_GPL net/sched/sch_pie 0xec2160c3 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 0x3a3816da sctp_transport_traverse_process -EXPORT_SYMBOL_GPL net/sctp/sctp 0x6de3cd10 sctp_get_sctp_info -EXPORT_SYMBOL_GPL net/sctp/sctp 0xc4c5f304 sctp_transport_lookup_process -EXPORT_SYMBOL_GPL net/sctp/sctp 0xf5d79490 sctp_for_each_endpoint -EXPORT_SYMBOL_GPL net/smc/smc 0x01428012 smc_proto6 -EXPORT_SYMBOL_GPL net/smc/smc 0x243386f4 smc_hash_sk -EXPORT_SYMBOL_GPL net/smc/smc 0x3dde31ab smcd_free_dev -EXPORT_SYMBOL_GPL net/smc/smc 0x48ed48dd smcd_unregister_dev -EXPORT_SYMBOL_GPL net/smc/smc 0x5c896b3c smcd_handle_event -EXPORT_SYMBOL_GPL net/smc/smc 0x624fd116 smc_proto -EXPORT_SYMBOL_GPL net/smc/smc 0x727872a5 smcd_alloc_dev -EXPORT_SYMBOL_GPL net/smc/smc 0xc72cca36 smc_unhash_sk -EXPORT_SYMBOL_GPL net/smc/smc 0xd750db40 smcd_handle_irq -EXPORT_SYMBOL_GPL net/smc/smc 0xfd83ffb0 smcd_register_dev -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x38d3dce5 g_make_token_header -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x3a271afb gss_mech_register -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x482ac5a4 g_token_size -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x9bc2a86e gss_mech_unregister -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x9c27f5fa svcauth_gss_flavor -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xaba23505 svcauth_gss_register_pseudoflavor -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xd7673035 g_verify_token_header -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00b2e778 rpc_create -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0139086e xprt_release_rqst_cong -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x043a0bdd rpc_clnt_xprt_switch_put -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x05b3f1bb svc_print_addr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x05e807a9 xdr_encode_string -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x05ecb04c xprt_complete_rqst -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x065994f1 xdr_encode_opaque_fixed -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x068ddc45 rpc_killall_tasks -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x080e9272 xdr_stream_decode_opaque_dup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x096e6ef9 svc_xprt_received -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x09a4cd18 rpc_peeraddr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0bff70cf xdr_encode_array2 -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0c3f083a rpc_sleep_on_priority_timeout -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0c467d8c xprt_adjust_cwnd -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0d857086 sunrpc_cache_pipe_upcall -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0e00e364 xdr_expand_hole -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0e9dc6b1 rpc_queue_upcall -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0f0b7c80 rpc_restart_call -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0fa87b51 sunrpc_cache_unregister_pipefs -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x116175cb cache_seq_start_rcu -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x11703ccc _copy_from_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x13b55916 rpc_clnt_show_stats -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x14df9066 auth_domain_find -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x16e2c5b6 svc_unreg_xprt_class -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x16f04c71 svc_addsock -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1754873a auth_domain_lookup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x19ea8128 svc_xprt_put -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1d1d7d9f put_rpccred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1e018fe7 svc_exit_thread -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1e119a79 rpcauth_get_pseudoflavor -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1eb53649 xdr_read_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1f2a9970 rpc_ntop -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1f7ec633 rpc_pipe_generic_upcall -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x20ad6f2b xprt_wake_up_backlog -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x21a02566 xdr_stream_decode_opaque -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2300fdcd rpc_init_wait_queue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2319a218 rpc_setbufsize -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x23c8e78d xdr_stream_pos -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2411438c xdr_shift_buf -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2564685f cache_check -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x26aedb5e rpc_put_sb_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x27871bab svc_destroy -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x28a21b7d cache_seq_next_rcu -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2919b156 xdr_decode_string_inplace -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x29257a95 xprt_wait_for_buffer_space -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2a69fc5a svc_set_num_threads -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2e824503 rpcauth_init_cred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2ebe53de rpc_call_async -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2f202f0e rpc_clone_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2f6823e7 rpc_clnt_swap_deactivate -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x301ccb3e xprt_setup_backchannel -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x31a89d59 rpc_debug -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x329f0522 rpc_put_task -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x32a83bb5 xprt_release_xprt_cong -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x33111147 rpc_wake_up_next -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x332164ec sunrpc_cache_unhash -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3332946b xprt_disconnect_done -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x34e3f7b2 svc_xprt_deferred_close -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x359f8f96 rpc_call_null -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3646180c svc_xprt_names -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x36fddeba xdr_buf_subsegment -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x387e1639 rpc_pipefs_notifier_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x38c9ff03 rpc_shutdown_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x39b88277 cache_create_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3b6abbc2 xdr_init_decode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3da0a233 xdr_encode_word -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3e9e3143 xdr_stream_subsegment -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3ecc878b __rpc_wait_for_completion_task -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3f9a2b0b rpcauth_get_gssinfo -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4080303a rpc_get_sb_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4080f7b5 xprt_unpin_rqst -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x41813a88 rpc_sleep_on_priority -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x41f86a8f svc_recv -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x43906619 rpcauth_unwrap_resp_decode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x453efa54 svc_pool_map -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4770e163 svc_proc_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x47ce68d9 rpc_set_connect_timeout -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4823f04a svc_xprt_do_enqueue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4829da15 svc_reg_xprt_class -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4864f20c svc_close_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x48dcd6c5 svc_bind -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x49a4aabc rpc_init_pipe_dir_object -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x49e5c727 rpc_num_bc_slots -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4a2f556e svc_set_num_threads_sync -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4afedab1 xprtiod_workqueue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4bc1e301 svc_sock_update_bufs -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4cb3dbef svc_fill_write_vector -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4d8460ea xdr_decode_array2 -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4dac77f0 xdr_encode_netobj -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4e87114f rpc_mkpipe_data -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4e8f6ca7 sunrpc_net_id -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4eac5d21 rpc_task_release_transport -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4ec23489 cache_purge -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x52384d0f bc_svc_process -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x529a7938 xprt_write_space -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x53445f68 nlm_debug -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5565426d read_bytes_from_xdr_buf -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x563b81b1 rpc_exit -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x581767bd svc_rpcb_setup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x588dea10 rpc_clone_client_set_auth -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x594e1616 xdr_page_pos -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x59f00abd rpcauth_destroy_credcache -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5a45ba31 svc_auth_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5cc62a78 rpc_clnt_iterate_for_each_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5e1073d8 rpcauth_stringify_acceptor -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5f93e0f3 svc_prepare_thread -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x61027f68 xprt_free_slot -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x62b0f384 rpc_malloc -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x62dfa07f rpc_remove_pipe_dir_object -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6774591c svc_max_payload -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x67acfb2e rpc_pton -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x68d21965 rpc_sleep_on_timeout -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6b579020 cache_destroy_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6d855c51 xdr_inline_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6de797f0 xprt_alloc -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6e8b9e49 xdr_stream_decode_string_dup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6f21a292 xprt_release_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x71fa908a cache_flush -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7208c373 svc_rpcb_cleanup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x735eefea sunrpc_cache_pipe_upcall_timeout -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x736b500f sunrpc_cache_register_pipefs -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7378a718 svc_wake_up -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x745c3571 rpc_max_bc_payload -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7517177e svcauth_unix_set_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7623100a rpc_switch_client_transport -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x762f7f43 svc_xprt_enqueue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x772de58e csum_partial_copy_to_xdr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7799244d svc_find_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x78a0c724 xprt_unregister_transport -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7cd28332 svc_create_pooled -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7cf23f33 svc_generic_rpcbind_set -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7d3ded79 rpc_clnt_setup_test_and_add_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7dbf7406 xdr_stream_decode_string -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7de53067 rpc_init_rtt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7e7e3956 rpc_unlink -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7ecac66f write_bytes_to_xdr_buf -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7f1024e7 gssd_running -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x825933d9 xdr_write_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x83979b44 cache_seq_stop_rcu -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x855f2b6f svc_authenticate -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x858450ab svc_encode_result_payload -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x86820a26 rpcb_getport_async -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x881eb227 rpc_wake_up_queued_task -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x88e02ee7 svc_alien_sock -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8a66cac4 svc_seq_show -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8ad07490 cache_register_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8b066e26 sunrpc_cache_update -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8bc6205c rpc_count_iostats_metrics -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8cf4cc23 svc_set_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8e62b29d rpcauth_wrap_req_encode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8e8055d1 cache_unregister_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8f577fc3 xprt_add_backlog -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8fdee68f rpc_localaddr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x91830b21 rpc_clnt_swap_activate -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x945186b1 rpc_d_lookup_sb -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x95f82552 xdr_buf_from_iov -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9696f832 rpc_proc_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x971858e6 rpc_clnt_test_and_add_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x971d1bb6 xdr_enter_page -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x99512317 rpc_call_sync -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x99f42ae7 xprt_unlock_connect -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9b3fb1aa rpc_find_or_alloc_pipe_dir_object -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9c335434 svc_create_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9cd109be rpc_put_task_async -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9dabce54 rpc_run_task -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9e731b8a svc_auth_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa053b19e sunrpc_destroy_cache_detail -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa13acdb8 svc_pool_map_put -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa22977e0 rpc_init_pipe_dir_head -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa22aca60 sunrpc_init_cache_detail -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa7433efa xprt_destroy_backchannel -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaacece8f rpc_destroy_pipe_data -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xab1c7d72 xdr_reserve_space -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xab756cc1 xdr_init_encode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xac512e7a xprt_register_transport -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xad5dd64b xprt_request_get_cong -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xae4985d0 xdr_reserve_space_vec -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaea79673 rpcauth_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaf5bf6ef nfs_debug -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 0xb53acd1e svc_create -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb56bc1e0 sunrpc_cache_lookup_rcu -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb5cba1fb svc_process -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb822d50a xprt_reserve_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb8739499 rpc_count_iostats -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xba99784f xprt_wake_pending_tasks -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbcc8ecd3 xdr_commit_encode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbd16beaf rpc_wake_up_status -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbda9ce75 unix_domain_find -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbe7575b9 rpc_prepare_reply_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbf9d1b96 nfsd_debug -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbfee9fab rpcauth_lookup_credcache -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc0ed6e86 rpc_uaddr2sockaddr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc113c637 xdr_terminate_string -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc12435e3 rpc_calc_rto -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc1d7248b rpc_free -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc2187bdb rpc_destroy_wait_queue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc24dc5fe rpcauth_lookupcred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc3a44415 xprt_put -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc3bee458 rpc_net_ns -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc507280f rpc_restart_call_prepare -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc6a4b9d2 xdr_process_buf -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc825abb3 svcauth_unix_purge -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc8e96dea qword_addhex -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc9ab5e3d xprt_get -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc9d04a1a rpc_force_rebind -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xca8ab4e4 svc_xprt_copy_addrs -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcd1a998d rpc_wake_up_first -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xce3db378 rpc_alloc_iostats -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xce678a59 xdr_decode_netobj -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xced10246 xdr_buf_trim -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcf29c4c5 svc_xprt_init -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcf2e5c0c xprt_lookup_rqst -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd0451cb8 rpc_delay -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd240c24f rpc_sleep_on -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd5953ff8 xdr_align_data -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd6e6dcbf svc_rqst_replace_page -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd9082376 rpc_call_start -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd9609256 svc_age_temp_xprts_now -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd96d97b8 rpcauth_init_credcache -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd9debf7e rpcauth_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdb953aa8 svc_reserve -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdd691402 xprt_find_transport_ident -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xddd14410 rpc_clnt_xprt_switch_has_addr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xddf49b27 auth_domain_put -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xde765898 rpc_add_pipe_dir_object -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xde7ed632 svc_rqst_free -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdfcf3d28 rpc_proc_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe037fb6d svc_drop -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe0dfe6a8 xprt_free -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe1def812 rpc_release_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe26b8cd4 xprt_reconnect_backoff -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe3577736 rpc_clnt_add_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe3a2d8f0 svc_shutdown_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe3b35a8e rpc_bind_new_program -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe44beec2 rpc_peeraddr2str -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe46295da xprt_reconnect_delay -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe4796d2b xprt_wait_for_reply_request_def -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe5919cb1 xdr_encode_opaque -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe5e09c39 svc_rpcbind_set_version -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe6ffd4a3 xprt_lock_connect -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe73f5c11 xprt_force_disconnect -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe7f955c8 xdr_inline_decode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe90922c0 xprt_reserve_xprt_cong -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe930e621 svc_proc_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe97f4ce5 qword_get -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeb2397e5 xprt_alloc_slot -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 0xf09a2ce3 rpc_init_priority_wait_queue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf12e1bc8 rpcauth_create -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf246661e rpc_free_iostats -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf25884b1 rpc_machine_cred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf2822484 xprt_wait_for_reply_request_rtt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf2865bdd svc_fill_symlink_pathname -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf4adc1b5 xdr_decode_word -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf66a6b45 rpc_mkpipe_dentry -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfa080881 rpc_wake_up -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfb2abdfc xdr_init_decode_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfc047ae6 xprt_pin_rqst -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfe0e21c0 rpc_max_payload -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfe239e99 rpc_task_timeout -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfe275393 svc_rqst_alloc -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfe51c9af xprt_update_rtt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfe956146 rpc_clnt_xprt_switch_add_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xff5e1349 svc_generic_init_request -EXPORT_SYMBOL_GPL net/tls/tls 0x3fa8b690 tls_validate_xmit_skb -EXPORT_SYMBOL_GPL net/tls/tls 0x7bf47125 tls_device_sk_destruct -EXPORT_SYMBOL_GPL net/tls/tls 0xe38cdf3e tls_offload_tx_resync_request -EXPORT_SYMBOL_GPL net/tls/tls 0xf325425d 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 0x0b513f90 virtio_transport_stream_enqueue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x14d4288f virtio_transport_free_pkt -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x2572bcfc virtio_transport_seqpacket_has_data -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x2b8eb70d virtio_transport_dgram_enqueue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x2f8701e8 virtio_transport_dgram_dequeue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x35411040 virtio_transport_notify_recv_pre_dequeue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x396e364c virtio_transport_put_credit -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x557653fa virtio_transport_notify_send_init -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x59407f8d virtio_transport_notify_buffer_size -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x5d010627 virtio_transport_notify_send_post_enqueue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x5d34f963 virtio_transport_connect -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x61d7c47a virtio_transport_deliver_tap_pkt -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x69348390 virtio_transport_notify_recv_post_dequeue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x792aa4af virtio_transport_notify_poll_out -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x79c7a0b9 virtio_transport_stream_rcvhiwat -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x7f16fe7f virtio_transport_stream_dequeue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x81326687 virtio_transport_notify_recv_init -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x82739abd virtio_transport_stream_has_data -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xa0c8fc13 virtio_transport_get_credit -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xa5b19828 virtio_transport_stream_has_space -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 0xc1347bfd virtio_transport_stream_is_active -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xc1d1bf0e virtio_transport_notify_poll_in -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xc748c845 virtio_transport_release -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xcadfbff8 virtio_transport_notify_recv_pre_block -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xcc41dc5a virtio_transport_dgram_bind -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xd4dcdf03 virtio_transport_seqpacket_enqueue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xd90213f0 virtio_transport_destruct -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xdb083694 virtio_transport_notify_send_pre_enqueue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xe31782d7 virtio_transport_recv_pkt -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xe4dcf367 virtio_transport_seqpacket_dequeue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xeca5c81f virtio_transport_shutdown -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xed814422 virtio_transport_do_socket_init -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xefe983a0 virtio_transport_inc_tx_pkt -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xf2a227b4 virtio_transport_notify_send_pre_block -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x054c135d vsock_find_connected_socket -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x0e9bc9b6 vsock_addr_unbind -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x1686e743 vsock_remove_sock -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x1789a9c5 vsock_insert_connected -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x243150e7 vsock_assign_transport -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x284e07d8 vsock_bind_table -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x2b52c428 vsock_core_get_transport -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x35a9d530 vsock_stream_has_data -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x36cab759 vsock_add_pending -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x3d453e4c vsock_add_tap -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x3d4b0fca vsock_addr_init -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x4b6ab642 vsock_remove_connected -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x4b99648c vsock_addr_bound -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x4db8d2dc vsock_remove_pending -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x4f1429fa vsock_core_unregister -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x67fa0351 vsock_table_lock -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x6d4d3032 vsock_core_register -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 0x936d1f8c vsock_for_each_connected_socket -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x9bb6fd09 vsock_connected_table -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xa1888778 vsock_create_connected -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xa26cd731 vsock_deliver_tap -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xaf2674b5 vsock_addr_equals_addr -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xcd651f73 vsock_remove_tap -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xd194ca1a vsock_find_bound_socket -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xe70099c4 vsock_stream_has_space -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xec96eadf vsock_addr_validate -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xf236ffab vsock_enqueue_accept -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xfcecf958 vsock_remove_bound -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x0966d57d cfg80211_pmsr_report -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x0efa1d7f cfg80211_wext_siwmode -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x23aa3784 cfg80211_wext_siwfrag -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x2aa8c121 cfg80211_wext_giwrts -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x304f077d cfg80211_wext_giwname -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x400c9fa2 cfg80211_wext_siwscan -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x4200b169 cfg80211_wext_giwrange -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x6612967a cfg80211_wext_siwrts -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x712675b1 cfg80211_wext_giwscan -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xd401cb81 cfg80211_vendor_cmd_get_sender -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xdf5f05af cfg80211_wext_giwfrag -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xe566e714 cfg80211_pmsr_complete -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xf4b674da cfg80211_wext_giwretry -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xf577088a cfg80211_vendor_cmd_reply -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xf6ffdf7c cfg80211_shutdown_all_interfaces -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xfd563453 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 0x80ee76ba ipcomp_destroy -EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0xa7fd2181 ipcomp_init_state -EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0xae05711d ipcomp_input -EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0xafd06981 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 0x656df2d5 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 0x12846c76 snd_device_get_state -EXPORT_SYMBOL_GPL sound/core/snd 0x1c9ac8a4 snd_fasync_helper -EXPORT_SYMBOL_GPL sound/core/snd 0x273462ec snd_device_disconnect -EXPORT_SYMBOL_GPL sound/core/snd 0x29cda843 snd_card_add_dev_attr -EXPORT_SYMBOL_GPL sound/core/snd 0x4cf0e165 snd_ctl_add_vmaster_hook -EXPORT_SYMBOL_GPL sound/core/snd 0x4ef52336 snd_ctl_disconnect_layer -EXPORT_SYMBOL_GPL sound/core/snd 0x5af762f1 snd_fasync_free -EXPORT_SYMBOL_GPL sound/core/snd 0x5f347e0a snd_power_ref_and_wait -EXPORT_SYMBOL_GPL sound/core/snd 0x6b3f7876 snd_ctl_activate_id -EXPORT_SYMBOL_GPL sound/core/snd 0x6edb927f snd_ctl_sync_vmaster -EXPORT_SYMBOL_GPL sound/core/snd 0x82fccd15 snd_card_rw_proc_new -EXPORT_SYMBOL_GPL sound/core/snd 0x89705f00 snd_devm_request_dma -EXPORT_SYMBOL_GPL sound/core/snd 0x8c8c515e snd_card_disconnect_sync -EXPORT_SYMBOL_GPL sound/core/snd 0x8e4ddd37 snd_device_initialize -EXPORT_SYMBOL_GPL sound/core/snd 0x9ceffdbf snd_ctl_apply_vmaster_followers -EXPORT_SYMBOL_GPL sound/core/snd 0xbbd7a00c snd_ctl_register_layer -EXPORT_SYMBOL_GPL sound/core/snd 0xbcd42c3c snd_card_free_on_error -EXPORT_SYMBOL_GPL sound/core/snd 0xc93932e8 snd_devm_card_new -EXPORT_SYMBOL_GPL sound/core/snd 0xdf21b91f snd_ctl_get_preferred_subdevice -EXPORT_SYMBOL_GPL sound/core/snd 0xf42279a8 snd_card_ref -EXPORT_SYMBOL_GPL sound/core/snd 0xf8f2a4eb snd_kill_fasync -EXPORT_SYMBOL_GPL sound/core/snd 0xfaf598c6 snd_ctl_request_layer -EXPORT_SYMBOL_GPL sound/core/snd-compress 0x0652127e snd_compress_new -EXPORT_SYMBOL_GPL sound/core/snd-compress 0x1d5d669f 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 0x206f8c2e snd_pcm_stream_unlock_irqrestore -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x2b077f7e snd_pcm_stream_unlock_irq -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x30bbb2ed snd_pcm_fill_iec958_consumer -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x3eb370b8 snd_pcm_hw_constraint_eld -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x428dc8f2 snd_pcm_stop_xrun -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x4d82b4ad 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 0x60d635b5 snd_pcm_stream_lock_irq -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x649892e8 snd_pcm_create_iec958_consumer_default -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x71b28fb5 snd_devm_alloc_pages -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x763c01be _snd_pcm_stream_lock_irqsave_nested -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x8d864069 snd_pcm_rate_range_to_bits -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xa286a234 snd_pcm_format_name -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xa5d728e7 snd_pcm_add_chmap_ctls -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xab8bc1a2 snd_pcm_rate_mask_intersect -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xae82f00e _snd_pcm_stream_lock_irqsave -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xbc3ac36e snd_pcm_lib_default_mmap -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xfbe05d3b snd_pcm_stream_lock -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x12baacc4 snd_hwparams_to_dma_slave_config -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x202f6670 snd_dmaengine_pcm_open_request_chan -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x24d7c32a snd_dmaengine_pcm_close_release_chan -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x2bc07335 snd_dmaengine_pcm_set_config_from_dai_data -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x2cacae78 snd_dmaengine_pcm_close -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x4bc05ea2 snd_dmaengine_pcm_request_channel -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x85a4e2a9 snd_dmaengine_pcm_open -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x8f1a7566 snd_dmaengine_pcm_pointer -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x935ea8f2 snd_dmaengine_pcm_trigger -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xae1b4af3 snd_dmaengine_pcm_get_chan -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xe46e8665 snd_dmaengine_pcm_pointer_no_residue -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xfabc6095 snd_dmaengine_pcm_refine_runtime_hwparams -EXPORT_SYMBOL_GPL sound/core/snd-seq-device 0x4eddf194 snd_seq_driver_unregister -EXPORT_SYMBOL_GPL sound/core/snd-seq-device 0xba0aceb1 __snd_seq_driver_register -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x0463e3e9 amdtp_domain_start -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x1c59aa44 amdtp_domain_stream_pcm_pointer -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x259cc05f amdtp_am824_set_pcm_position -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x31025564 amdtp_domain_destroy -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x49395354 amdtp_domain_add_stream -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x56d4f283 amdtp_am824_set_parameters -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x6bed42e5 amdtp_am824_set_midi_position -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xa45b87db amdtp_domain_init -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xa6acd836 amdtp_am824_midi_trigger -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xa7e888a8 amdtp_domain_stream_pcm_ack -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xc7d1d3bd amdtp_am824_add_pcm_hw_constraints -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xde23b12b amdtp_am824_init -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xf89d4211 amdtp_domain_stop -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x02f9a61a snd_hdac_ext_bus_get_ml_capabilities -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x1564bcf4 snd_hdac_ext_bus_link_power_up_all -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x1ad7b063 snd_hdac_ext_stream_set_spib -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x1eb2f0dc snd_hdac_ext_link_stream_reset -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x323b7684 snd_hdac_link_free_all -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x3801a085 snd_hdac_ext_bus_link_power_up -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x3bdbf98a snd_hda_ext_driver_unregister -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x3eafe2a6 snd_hdac_ext_bus_link_get -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x48f71669 snd_hdac_ext_bus_device_init -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x50dfe3bf snd_hdac_ext_bus_link_power -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x5992ba65 snd_hdac_ext_bus_init -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x5a019fe7 snd_hdac_ext_bus_link_power_down -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x5aebe7de snd_hdac_ext_stream_set_dpibr -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x67f9ebc2 snd_hdac_ext_link_set_stream_id -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x6a81efd6 snd_hdac_ext_bus_link_power_down_all -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x7376f288 snd_hdac_ext_bus_get_link -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x8367c0ff snd_hdac_ext_bus_exit -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x86fe0b80 snd_hdac_ext_stream_set_lpib -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x8983d207 snd_hdac_ext_stream_release -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x8ea58577 snd_hdac_ext_link_stream_setup -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x91a7f3de snd_hdac_ext_stream_decouple_locked -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x928ce494 snd_hdac_stream_free_all -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x9beae40d snd_hdac_ext_link_stream_start -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xa2bba35e snd_hdac_ext_stream_assign -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xa5ad2b3f snd_hdac_ext_stream_init_all -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xac208b9e snd_hdac_ext_stream_get_spbmaxfifo -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xb4ad850b snd_hdac_ext_bus_device_remove -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xba4e6e04 snd_hdac_ext_stream_decouple -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xbcbf8485 snd_hdac_ext_bus_ppcap_enable -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xc7017af6 snd_hdac_ext_bus_ppcap_int_enable -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xc925346a snd_hdac_ext_bus_device_exit -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xcba87a86 snd_hdac_ext_stream_drsm_enable -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xd45d6fbf snd_hdac_ext_stream_init -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xdbf741d0 snd_hdac_ext_stream_spbcap_enable -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xe1442e4c snd_hda_ext_driver_register -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xe8ff7ee4 snd_hdac_ext_bus_link_put -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xf0c33abb snd_hdac_ext_link_stream_clear -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xfbdfdcea snd_hdac_ext_link_clear_stream_id -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x00947559 snd_hdac_bus_exec_verb_unlocked -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x044b54e3 snd_hdac_regmap_add_vendor_verb -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x077268fd snd_hdac_acomp_init -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x07a148ea snd_hdac_sync_audio_rate -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x095e6eae snd_hdac_check_power_state -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x099395db snd_hdac_regmap_read_raw -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0ab2ac76 snd_hdac_channel_allocation -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0c4b81f9 snd_hdac_stream_sync_trigger -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0d9ccbe5 snd_hdac_codec_link_up -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x19de6b36 snd_hdac_regmap_update_raw -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1e2d552b snd_hdac_power_up -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1f246ba9 snd_hdac_power_down_pm -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x24c1130e snd_hdac_acomp_get_eld -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2a6d3b85 snd_hdac_bus_update_rirb -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2b342447 snd_hdac_stop_streams -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2d974694 snd_hdac_stream_init -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2f57fafd snd_hdac_get_connections -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3a4a8810 snd_hdac_device_unregister -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3bd544c2 snd_hdac_get_active_channels -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3c90fc73 snd_hdac_get_stream_stripe_ctl -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3debbf48 snd_hdac_codec_read -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x40228783 snd_hdac_stream_reset -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x40fe1d7d snd_hdac_device_set_chip_name -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x455aeb49 snd_hdac_set_codec_wakeup -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x47dddaa4 snd_hdac_bus_parse_capabilities -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4c7ec4b6 snd_hdac_get_ch_alloc_from_ca -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4d039082 snd_hdac_bus_init -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4ea0352d snd_hdac_power_down -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x502d27c0 snd_hdac_bus_stop_chip -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5303c978 snd_hdac_stream_setup_periods -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x54c98874 snd_hdac_get_stream -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x561225a9 snd_hdac_register_chmap_ops -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x570be69a snd_hdac_stream_clear -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5908d9db snd_hdac_bus_get_response -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5c07cb49 snd_hdac_calc_stream_format -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5c38fa18 hdac_get_device_id -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x62b0f88e snd_hdac_stream_timecounter_init -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x648fb778 snd_hdac_regmap_write_raw -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x6637e84f snd_hdac_device_exit -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x6690096b snd_hdac_bus_send_cmd -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x67bfe791 snd_hdac_spk_to_chmap -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x71a163a1 snd_hdac_display_power -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x747f816c snd_hdac_bus_stop_cmd_io -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x769a7836 snd_hdac_override_parm -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x77c754a8 snd_hdac_chmap_to_spk_mask -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7a52c6de snd_hdac_stream_sync -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7b42c98b snd_hdac_regmap_update_raw_once -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7ddaccd4 snd_hdac_stream_stop -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7e8e134a snd_hdac_codec_write -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x81b2269a snd_hdac_query_supported_pcm -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x83f867f3 snd_hdac_regmap_exit -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8b3eb5f0 snd_hdac_refresh_widgets -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8fa0d688 snd_hdac_bus_alloc_stream_pages -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x90a1e27a snd_hdac_regmap_init -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x94a85217 snd_hdac_bus_reset_link -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x951cb8a7 snd_hdac_codec_modalias -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9a8e1877 snd_array_free -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9e8fa8ca snd_hdac_stream_start -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa0e2fefc snd_hdac_dsp_trigger -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa28701a7 snd_hdac_stream_assign -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa3db8df7 snd_hdac_setup_channel_mapping -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa4d7acca snd_hdac_bus_handle_stream_irq -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa9b8060b snd_hdac_bus_link_power -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa9dc95b4 snd_hdac_get_sub_nodes -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbe7dd7dc snd_array_new -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbe8d9b78 snd_hdac_dsp_cleanup -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbf8880be snd_hdac_bus_exit_link_reset -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc02e527c snd_hdac_acomp_exit -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc4559aa0 snd_hdac_read_parm_uncached -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc7de45d8 snd_hdac_regmap_sync -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc95a7313 snd_hdac_stream_set_params -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xcad658f1 snd_hdac_bus_free_stream_pages -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xcc3851b6 snd_hdac_stream_setup -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xcdf7de69 snd_hdac_device_register -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd06ccf54 snd_hdac_stop_streams_and_chip -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd0d5f105 snd_hdac_sync_power_state -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xdc7e9424 snd_hdac_read -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe09bac5e snd_hdac_device_init -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe1966390 snd_hdac_i915_init -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe2372b51 snd_hdac_bus_exit -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe4e07754 snd_hdac_print_channel_allocation -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe7efa3d2 snd_hdac_codec_link_down -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe83f8e38 snd_hda_bus_type -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xea0f14a4 snd_hdac_acomp_register_notifier -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xeca12970 snd_hdac_stream_release -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xed5d8371 snd_hdac_power_up_pm -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xee538fcd snd_hdac_stream_cleanup -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf08a09cf _snd_hdac_read_parm -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf4237e3c snd_hdac_bus_init_cmd_io -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf6b578d9 snd_hdac_bus_enter_link_reset -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf908a8f1 snd_hdac_is_supported_format -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xfa188ba8 snd_hdac_bus_init_chip -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xfd0a56ac snd_hdac_dsp_prepare -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xfdffddd8 snd_hdac_i915_set_bclk -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xfeee960f snd_hdac_add_chmap_ctls -EXPORT_SYMBOL_GPL sound/hda/snd-intel-dspcfg 0x3b24cfe1 intel_nhlt_init -EXPORT_SYMBOL_GPL sound/hda/snd-intel-dspcfg 0x4e859456 intel_nhlt_free -EXPORT_SYMBOL_GPL sound/hda/snd-intel-dspcfg 0x888fd084 intel_nhlt_get_dmic_geo -EXPORT_SYMBOL_GPL sound/hda/snd-intel-dspcfg 0x9b470a66 snd_intel_dsp_driver_probe -EXPORT_SYMBOL_GPL sound/hda/snd-intel-dspcfg 0xc02aff67 snd_intel_acpi_dsp_driver_probe -EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x0801f2e6 snd_ak4113_external_rate -EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x5d539425 snd_ak4113_build -EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x7680ecde snd_ak4113_check_rate_and_errors -EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xcae548c6 snd_ak4113_create -EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xcfed62fb snd_ak4113_reinit -EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xfdb01074 snd_ak4113_reg_write -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x00f4f069 snd_hda_get_bool_hint -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x022a35e5 snd_hda_jack_set_dirty_all -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x026cdaba snd_hda_sequence_write -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x040a548c hda_codec_driver_unregister -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 0x06d2853a snd_hda_mixer_amp_volume_put -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x08747c65 azx_init_streams -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0ad43e5e snd_hda_add_vmaster_hook -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0b9d76f6 snd_hda_multi_out_dig_close -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0f0ecf26 snd_hda_codec_amp_stereo -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x15517f5b snd_hda_codec_set_pincfg -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1573c549 snd_hda_get_pin_label -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1713bece is_jack_detectable -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1bb4d1e4 snd_hda_apply_pincfgs -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1bf6bbd3 __snd_hda_add_vmaster -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1c38c4f1 snd_hda_codec_pcm_put -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1db64dec snd_hda_ctl_add -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1e3fcded snd_hda_override_conn_list -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1f0f9bcd snd_hda_mixer_amp_switch_put_beep -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1f58d9f6 snd_hda_multi_out_dig_prepare -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x23d282ff snd_hda_apply_verbs -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x292455fe snd_hda_jack_tbl_get_from_tag -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2938e672 snd_hda_jack_set_gating_jack -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2a687a3b snd_hda_get_default_vref -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2aee5286 snd_hda_spdif_ctls_assign -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2ceb8a96 snd_hda_get_dev_select -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2ff1f71f snd_hda_codec_cleanup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x32635af8 snd_hda_lock_devices -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3354c867 snd_hda_codec_new -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x33de856a snd_hda_jack_tbl_get_mst -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x35674b06 snd_hda_multi_out_analog_prepare -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x38ce402b azx_interrupt -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3b6e5129 __hda_codec_driver_register -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3ddd8483 snd_hda_unlock_devices -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x404aa48c snd_hda_codec_amp_update -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x41da850e snd_hda_codec_build_controls -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4659abca snd_hda_load_patch -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x46e259a0 snd_hda_mixer_amp_switch_get_beep -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x48dc809f snd_hda_jack_poll_all -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4fe9ef81 snd_hda_mixer_amp_switch_put -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x50dcaae5 snd_hda_get_conn_list -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x525dc124 azx_get_pos_posbuf -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x53635164 snd_hda_codec_set_power_to_all -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x542ef7fe snd_hda_jack_bind_keymap -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x55068b14 __snd_hda_apply_fixup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x55f359ec snd_hda_set_power_save -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x584b13e8 snd_hda_jack_report_sync -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x58dfbbd6 snd_hda_codec_set_pin_target -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5941832b snd_hda_spdif_out_of_nid -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x59e1abd1 snd_hda_codec_eapd_power_filter -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x628e495a snd_hda_attach_beep_device -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x631ebbb3 snd_hda_parse_pin_defcfg -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6c5aafab snd_hda_spdif_ctls_unassign -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6f80a033 snd_hda_codec_cleanup_for_unbind -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x73bda636 snd_hda_enable_beep_device -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x76bda852 snd_hda_check_amp_caps -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7756162e snd_hda_codec_parse_pcms -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x79542900 _snd_hda_set_pin_ctl -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7a527476 azx_stop_chip -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7a875aff snd_hda_check_amp_list_power -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7c610a18 snd_hda_shutup_pins -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7c6daf04 hda_get_autocfg_input_label -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7e0bccb0 snd_hda_add_imux_item -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7eb7d65d snd_hda_multi_out_analog_open -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x836e5f52 snd_hda_multi_out_dig_open -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x869714d4 snd_hda_jack_set_button_state -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x875c73fd snd_hda_sync_vmaster_hook -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8958e427 azx_bus_init -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8c0878a2 snd_hda_create_spdif_in_ctls -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8dce5bc3 snd_hda_detach_beep_device -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8e2e6de2 azx_free_streams -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x914a3bde snd_hda_add_new_ctls -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x92418d31 snd_hda_codec_load_dsp_prepare -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x926c11ae snd_hda_codec_load_dsp_cleanup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x95d79ce3 azx_codec_configure -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x979287fe snd_hda_get_connections -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x97abc49d snd_hda_jack_detect_enable -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9c92d445 snd_hda_add_verbs -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9d96c60e snd_hda_get_int_hint -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9fc8d67b snd_hda_mixer_amp_switch_info -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa12c56b6 snd_hda_correct_pin_ctl -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa3228148 snd_hda_jack_add_kctl_mst -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa329e513 snd_hda_codec_amp_init -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa694a6fb snd_hda_codec_device_new -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa72eee4e snd_hda_set_dev_select -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa8aef8ae snd_hda_add_nid -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa8bd547d snd_hda_jack_unsol_event -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa92bc876 snd_hda_get_num_devices -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xacdbe011 snd_hda_codec_configure -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xadad539d snd_hda_codec_amp_init_stereo -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xae2425ad azx_get_pos_lpib -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xafe1406e snd_hda_codec_setup_stream -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb18d1b20 snd_hda_jack_add_kctls -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb390877b snd_hda_create_dig_out_ctls -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb7554cd1 snd_hda_get_conn_index -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb84866e5 snd_hda_enum_helper_info -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xba227f40 snd_hda_codec_update_widgets -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbd8ab356 snd_hda_codec_set_name -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbe484240 snd_hda_mixer_amp_switch_get -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc1b82ccf azx_get_position -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc4e11ebd snd_hda_codec_pcm_new -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc7a2023e snd_hda_jack_pin_sense -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc83335c1 snd_hda_pick_pin_fixup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc8bf62cc azx_init_chip -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xcb0b43dc snd_hda_multi_out_analog_cleanup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xcb6684c5 snd_hda_override_amp_caps -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xcc3a9392 snd_hda_create_spdif_share_sw -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xcc616625 query_amp_caps -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xccd4a63a azx_stop_all_streams -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xcd4d3d1f snd_hda_jack_detect_state_mst -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd4b09f55 __snd_hda_codec_cleanup_stream -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd6f3bcc0 snd_hda_mixer_amp_volume_info -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd847b134 snd_hda_apply_fixup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xdd6cf5e4 snd_hda_codec_load_dsp_trigger -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xde1ce534 snd_hda_jack_detect_enable_callback_mst -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xdfc0a020 snd_hda_codec_get_pincfg -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe118de5d snd_pcm_2_1_chmaps -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe30ec29c snd_hda_pick_fixup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe6efeefc snd_hda_set_vmaster_tlv -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe6f8a3f9 azx_probe_codecs -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xeda3a721 snd_print_pcm_bits -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf045be83 snd_hda_input_mux_put -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf1f74617 snd_hda_mixer_amp_tlv -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf38c2cd1 snd_hda_codec_prepare -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf77328fb snd_hda_mixer_amp_volume_get -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf8dc35ac snd_hda_input_mux_info -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf980e045 snd_hda_multi_out_dig_cleanup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfae1d83d snd_hda_codec_get_pin_target -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfafae65c snd_hda_get_hint -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfcdb3e7d snd_hda_find_mixer_ctl -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x0727067f snd_hda_gen_check_power_status -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x0ecae1a4 snd_hda_gen_spec_init -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x291a51d0 snd_hda_gen_line_automute -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x31c6d00c snd_hda_gen_build_controls -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x3903cc13 snd_hda_gen_stream_pm -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x421e22e4 snd_hda_gen_mic_autoswitch -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x50503650 snd_hda_gen_path_power_filter -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x596dd7b3 snd_hda_activate_path -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x709d9a53 snd_hda_add_new_path -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x76dc6871 hda_main_out_badness -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x826a28bf snd_hda_gen_add_mute_led_cdev -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 0x9785ab2e snd_hda_gen_free -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x9df717d9 snd_hda_gen_update_outputs -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xa3795e6e snd_hda_gen_parse_auto_config -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xa6c1f0b8 snd_hda_get_path_from_idx -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xba8094b0 snd_hda_gen_fix_pin_power -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xbd172dfc snd_hda_gen_add_micmute_led_cdev -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xc89530a1 snd_hda_gen_hp_automute -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xd675db23 snd_hda_get_path_idx -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xd73533d6 snd_hda_gen_build_pcms -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xe3fdfb7d snd_hda_gen_init -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xf3d73681 snd_hda_gen_add_kctl -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau-utils 0xae620be9 adau_calc_pll_cfg -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau1372 0xf8496eb8 adau1372_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau1761 0x35d82e97 adau1761_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau1761 0xd4cde807 adau1761_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x152d8f81 adau17x1_readable_register -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x352a1206 adau17x1_add_widgets -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x6a7e7e7e adau17x1_remove -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x76406a38 adau17x1_dai_ops -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x94048d1f adau17x1_resume -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0xa0af0584 adau17x1_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0xb1b03560 adau17x1_precious_register -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0xc364b496 adau17x1_set_micbias_voltage -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0xe54505e8 adau17x1_volatile_register -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0xeaaaf6ee adau17x1_add_routes -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau7118 0xa1c1b557 adau7118_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x0312aecf arizona_input_analog -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x0592fcc3 arizona_eq_coeff_put -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x098b7bd4 arizona_isrc_fsl -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x13719ffe arizona_lhpf4_mode -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x1522d183 arizona_anc_input_src -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x23af43a3 arizona_dvfs_down -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x23e41234 arizona_jack_codec_dev_remove -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x2a8e8d3c arizona_dvfs_sysclk_ev -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x337feccd arizona_free_spk_irqs -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x353fc3c6 arizona_voice_trigger_switch -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x36c21d2e arizona_in_vi_ramp -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x39ac80b4 arizona_out_ev -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x3aa9a091 arizona_lhpf_coeff_put -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x4149b059 arizona_lhpf1_mode -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x46277216 arizona_rate_val -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x50f3b3cd arizona_hp_ev -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x57157cee arizona_in_vd_ramp -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x5deb716a arizona_init_vol_limit -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x5fd3008d arizona_jack_codec_dev_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x622197cd arizona_set_fll -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x69102a20 arizona_sample_rate_text -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x70a1aac4 arizona_lhpf2_mode -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x70cd0d13 arizona_output_anc_src -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x70fa93b7 arizona_set_sysclk -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x729a5ef3 arizona_mixer_values -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x7c5dad10 arizona_init_spk -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 0x8009ebd8 arizona_init_mono -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x813a0f4c arizona_dvfs_up -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x8848d0cd arizona_simple_dai_ops -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x8bfcc414 arizona_in_hpf_cut_enum -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x921a39c2 arizona_isrc_fsh -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x93185377 arizona_set_output_mode -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xa112e7ec arizona_clk_ev -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xa2d4ed3e arizona_in_ev -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xab4d845c arizona_rate_text -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xb2ecd4a0 arizona_init_fll -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xb816687e arizona_set_fll_refclk -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xb997d17d arizona_out_vd_ramp -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xbd7184d0 arizona_init_dvfs -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xc432c454 arizona_ng_hold -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xc4648ef6 arizona_jack_set_jack -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xc8d096b7 arizona_adsp2_rate_controls -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xc9c29637 arizona_mixer_tlv -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xcec34f0b arizona_asrc_rate1 -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xd62397da arizona_init_dai -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xd6d6a170 arizona_lhpf3_mode -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xd7e68e12 arizona_init_spk_irqs -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xd840b0bd arizona_out_vi_ramp -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xdbfa34cc arizona_in_dmic_osr -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xdfe804b8 arizona_sample_rate_val -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xe14f2e6e arizona_anc_ng_enum -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xea24c885 arizona_anc_ev -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xecada034 arizona_init_gpio -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xf028f14b arizona_of_get_audio_pdata -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xf30add0b arizona_dai_ops -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xfcee96cc arizona_init_common -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41 0x3adf3bae cs35l41_remove -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41 0x9b52a092 cs35l41_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41 0xfe90b761 cs35l41_pm_ops -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x0c97439c cs35l41_set_channels -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x156d2b36 cs35l41_register_errata_patch -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x6f45ad0d cs35l41_regmap_spi -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x884c440f cs35l41_boost_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x8e5a472d cs35l41_otp_unpack -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0xabd0a17e cs35l41_test_key_unlock -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0xaca768ce cs35l41_test_key_lock -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0xd910abd2 cs35l41_regmap_i2c -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0x8312bb5d cs4271_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0x97d61efd cs4271_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x0469b175 cs42l51_remove -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x374d1a5b cs42l51_suspend -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x65b0875d cs42l51_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x963978ce cs42l51_resume -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0xc53918aa cs42l51_regmap -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x0245c4f2 cs42xx8_of_match -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x598dcdce cs42xx8_pm -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x7cac7292 cs42888_data -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x930f7072 cs42xx8_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0xcd3794c9 cs42448_data -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0xde6c0b30 cs42xx8_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-da7219 0x06eae065 da7219_aad_jack_det -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-da7219 0x1b78b7d4 da7219_aad_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-da7219 0xb530f549 da7219_aad_init -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-da7219 0xdc8b4957 da7219_aad_exit -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-es8328 0x3187a03d es8328_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-es8328 0xc97522bb es8328_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-hdac-hda 0x62377d91 snd_soc_hdac_hda_get_ops -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-hdac-hdmi 0x4f76415d hdac_hdmi_jack_init -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-hdac-hdmi 0xe33d8d74 hdac_hdmi_jack_port_init -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98090 0x08a75b48 max98090_mic_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98373 0x1f2fa89f max98373_slot_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98373 0x3f6836b9 max98373_reset -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98373 0x871add93 soc_codec_dev_max98373 -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98373 0xded70f04 soc_codec_dev_max98373_sdw -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6358 0x832904eb mt6358_set_mtkaif_protocol -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6358 0x971ef2c4 mt6358_set_mtkaif_calibration_phase -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6358 0xa36bf2d2 mt6358_mtkaif_calibration_disable -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6358 0xb82d1704 mt6358_mtkaif_calibration_enable -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-nau8824 0x896bfd6c nau8824_enable_jack_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-nau8825 0x03ca6b05 nau8825_enable_jack_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm1789-codec 0x009da426 pcm1789_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm1789-codec 0x7de6ebaa pcm1789_common_init -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm1789-codec 0x8fa7344f pcm1789_common_exit -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm179x-codec 0x072d080e pcm179x_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm179x-codec 0x14a48aaa pcm179x_common_init -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm186x 0x01592deb pcm186x_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm186x 0x5e749e60 pcm186x_regmap -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0x34b0acf3 pcm3168a_regmap -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0x73919812 pcm3168a_remove -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0x923627e8 pcm3168a_pm_ops -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0xcbe2e972 pcm3168a_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x2fd43be0 pcm512x_regmap -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x7441a454 pcm512x_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0xc5d86c94 pcm512x_remove -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0xf25410c2 pcm512x_pm_ops -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rl6231 0x5dc92cdf rl6231_pll_calc -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rl6231 0x70617a04 rl6231_get_clk_info -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rl6231 0x8d7fa148 rl6231_get_pre_div -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rl6231 0xdba4502f rl6231_calc_dmic_clk -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rl6347a 0xa7aa810f rl6347a_hw_write -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rl6347a 0xade4bf4c rl6347a_hw_read -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt286 0x2af414d8 rt286_mic_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt298 0xe37c8089 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 0x1bf5ae8b rt5640_enable_micbias1_for_ovcd -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0x34c5d18e rt5640_disable_micbias1_for_ovcd -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0xae563371 rt5640_dmic_enable -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0xb66956a3 rt5640_detect_headset -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0xb768ed4e rt5640_set_ovcd_params -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0xf4bcf181 rt5640_sel_asrc_clk_src -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5645 0x5a1aa075 rt5645_set_jack_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5645 0x678eca46 rt5645_sel_asrc_clk_src -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5659 0xf676b309 rt5659_set_jack_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5663 0x6bb86be1 rt5663_sel_asrc_clk_src -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5670 0x25e2ae05 rt5670_jack_suspend -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5670 0x2f5ee4db rt5670_components -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5670 0x87e7422a rt5670_jack_resume -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5670 0x8c2ec7a2 rt5670_sel_asrc_clk_src -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5670 0xa2040500 rt5670_set_jack_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5677 0x92aa1d4c 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 0x3c547b6b rt5682_aif2_dai_ops -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x43bf1a6a rt5682_parse_dt -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x484fa0af 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 0x7c06651d rt5682_sel_asrc_clk_src -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0xa1568f1e rt5682_readable_register -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0xb897de56 rt5682_reg -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0xbd4e5c1d rt5682_soc_component_dev -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0xc291208e rt5682_apply_patch_list -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0xc502c42c rt5682_volatile_register -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0xd763c068 rt5682_aif1_dai_ops -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0xe49433a9 rt5682_reset -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0xf87bed75 rt5682_calibrate -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x0cda64d7 sigmadsp_attach -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x0f3bfced sigmadsp_setup -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x5ef8b211 devm_sigmadsp_init -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x9f45e721 sigmadsp_restrict_params -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0xba798664 sigmadsp_reset -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp-i2c 0x6bbe97c6 devm_sigmadsp_init_i2c -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp-regmap 0x12f1ca26 devm_sigmadsp_init_regmap -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ssm2602 0x82ce4fe1 ssm2602_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ssm2602 0xc55ee722 ssm2602_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tlv320aic32x4 0x798a26b1 aic32x4_register_clocks -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tlv320aic3x 0x28daa454 aic3x_regmap -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ts3a227e 0x9402514e 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 0x0c293744 wcd938x_swr_get_current_bank -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd938x-sdw 0x2a0ac1cd wcd938x_sdw_free -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd938x-sdw 0x42cabeb1 wcd938x_sdw_device_get -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd938x-sdw 0x65035f72 wcd938x_sdw_set_sdw_stream -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd938x-sdw 0xea4aa3cc wcd938x_sdw_hw_params -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x077edc93 wm_adsp2_component_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x141e55dc wm_adsp_early_event -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x1da80f19 wm_adsp_compr_free -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x2c7104d4 wm_adsp_compr_copy -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x31d25337 wm_adsp_event -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x3a69d67d wm_adsp_write_ctl -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x3afb6239 wm_adsp2_preloader_put -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x3d94a0e5 wm_adsp_fw_put -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x509cedd4 wm_adsp1_event -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x52c16479 wm_halo_wdt_expire -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x6e530503 wm_adsp_read_ctl -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x7289bf3c wm_halo_init -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x7770a75c wm_adsp2_remove -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x77e62d3a wm_adsp_compr_set_params -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x803e5f6d wm_adsp2_preloader_get -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x87519db1 wm_adsp_fw_get -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x8d7dc7d9 wm_adsp2_component_remove -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x94fe2420 wm_adsp_fw_enum -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xa1787db8 wm_adsp_compr_open -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xb17ba9ed wm_adsp1_init -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xc6218a42 wm_adsp_compr_handle_irq -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xca7e6187 wm_adsp_compr_pointer -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xdac8f0e3 wm_adsp_compr_get_caps -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xdd3c79ef wm_adsp2_bus_error -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xea38ee07 wm_halo_bus_error -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xf8508fb8 wm_adsp2_set_dspclk -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xfb5f301b wm_adsp_compr_trigger -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xfdee5e59 wm_adsp2_init -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x11a2e109 wm8804_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x5e1da131 wm8804_remove -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x94ebf915 wm8804_pm -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0xac7ae6b2 wm8804_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8903 0xc673f9bd wm8903_mic_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8962 0xd3144e28 wm8962_mic_detect -EXPORT_SYMBOL_GPL sound/soc/fsl/snd-soc-fsl-asrc 0x01063bc2 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 0x071f9344 asoc_simple_canonicalize_platform -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x0c675a73 asoc_graph_card_probe -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x1e5f4b8a asoc_simple_shutdown -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x23389e8a asoc_simple_init_priv -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x2fe63e70 asoc_simple_startup -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x43a8e56c asoc_simple_canonicalize_cpu -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x546d5f34 asoc_simple_init_jack -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x5c60f300 asoc_simple_hw_params -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x66e88a84 asoc_simple_set_dailink_name -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x7a2a3041 asoc_simple_be_hw_params_fixup -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x8275e575 asoc_simple_clean_reference -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x873a53ea asoc_simple_remove -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x974715a0 asoc_simple_parse_convert -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xaabe0acd asoc_simple_parse_pin_switches -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xaf226429 asoc_simple_parse_clk -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xc5f26a4c asoc_simple_parse_routing -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xcc24892c asoc_simple_dai_init -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xcc27d493 asoc_simple_parse_card_name -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xe759de21 asoc_simple_parse_widgets -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xeb498951 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/intel/atom/snd-soc-sst-atom-hifi2-platform 0xa5363df4 sst_unregister_dsp -EXPORT_SYMBOL_GPL sound/soc/intel/atom/snd-soc-sst-atom-hifi2-platform 0xfc95163b sst_register_dsp -EXPORT_SYMBOL_GPL sound/soc/intel/atom/sst/snd-intel-sst-core 0x11927ba3 sst_context_init -EXPORT_SYMBOL_GPL sound/soc/intel/atom/sst/snd-intel-sst-core 0x3d2d2732 sst_alloc_drv_context -EXPORT_SYMBOL_GPL sound/soc/intel/atom/sst/snd-intel-sst-core 0x4f44bf82 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 0x96fb3c73 sst_configure_runtime_pm -EXPORT_SYMBOL_GPL sound/soc/intel/atom/sst/snd-intel-sst-core 0xefb5b4fc sst_context_cleanup -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0x0281834b snd_soc_acpi_intel_cherrytrail_machines -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0x0e6631f6 snd_soc_acpi_intel_cnl_machines -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0x29d40011 snd_soc_acpi_intel_icl_sdw_machines -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0x2c4fd0d6 snd_soc_acpi_intel_tgl_machines -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0x3500acf6 snd_soc_acpi_intel_icl_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 0x4f54ada0 snd_soc_acpi_intel_kbl_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 0x5eb30eb7 snd_soc_acpi_intel_cnl_sdw_machines -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0x636e759d snd_soc_acpi_intel_skl_machines -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0x7c617496 snd_soc_acpi_intel_haswell_machines -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0x7f0cf4cf snd_soc_acpi_intel_bxt_machines -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0x80e36ae3 snd_soc_acpi_intel_cfl_sdw_machines -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 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 0xb351edcc snd_soc_acpi_intel_hda_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 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 0xfac3ef1a snd_soc_acpi_intel_ehl_machines -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x16e86983 sst_shim32_read -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x17adb448 sst_dsp_shim_update_bits_forced_unlocked -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x22d65059 sst_dsp_inbox_read -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x278f3cec sst_dsp_shim_write_unlocked -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x46551473 sst_dsp_outbox_read -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x4f28d120 sst_dsp_shim_read -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x6e41f3f0 sst_dsp_outbox_write -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 0x93195152 sst_dsp_register_poll -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x9d2b7ce0 sst_dsp_shim_update_bits_unlocked -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xb59eb962 sst_dsp_inbox_write -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xc88e1faf sst_dsp_mailbox_init -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xc9571f66 sst_dsp_shim_read_unlocked -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 0xe456a157 sst_dsp_shim_update_bits_forced -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xe9c6de99 sst_shim32_write -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xf6c4d034 sst_dsp_shim_write -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xf8c35e06 sst_dsp_shim_update_bits -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-ipc 0x8c62a1bb sst_ipc_init -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-ipc 0xc3b46901 sst_ipc_tx_message_nowait -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-ipc 0xc4bb50bb sst_ipc_reply_find_msg -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-ipc 0xc66e38de sst_ipc_tx_message_wait -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-ipc 0xe27289d9 sst_ipc_tx_message_nopm -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-ipc 0xe647ff0e sst_ipc_tx_msg_reply_complete -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-ipc 0xf097e74a sst_ipc_fini -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x02d25ed8 bxt_sst_dsp_init -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x0c68c91d bxt_sst_init_fw -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x1437bfa6 skl_get_pvt_id -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x188b3572 skl_ipc_restore_pipeline -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x1f21ef8e skl_dsp_free -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x22c32a5f skl_dsp_get_core -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x28cafdea skl_ipc_load_modules -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x2e85dd05 skl_clear_module_cnt -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x397fc7b9 cnl_sst_dsp_init -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x3bdb6cd0 skl_sst_dsp_init -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x5300eb1e cnl_dsp_free -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x55bfd76f skl_ipc_unload_modules -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x586074ab skl_sst_ipc_load_library -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x5969f817 skl_ipc_init_instance -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x5c9d3411 skl_put_pvt_id -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x6d355dd0 skl_ipc_set_large_config -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x6d835a21 skl_dsp_set_dma_control -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x71f17e23 skl_dsp_wake -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x8141d102 skl_dsp_put_core -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x8808379f skl_ipc_save_pipeline -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x8a784664 skl_ipc_bind_unbind -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x8e766853 is_skl_dsp_running -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x8ff83e63 cnl_sst_dsp_cleanup -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x9ea61b4f skl_ipc_delete_pipeline -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x9f324d8c skl_sst_dsp_cleanup -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0xa2396283 skl_ipc_set_pipeline_state -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0xae8ba47a skl_ipc_get_large_config -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0xbd1d8812 skl_ipc_create_pipeline -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0xbdef3387 skl_dsp_sleep -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0xbf767445 cnl_sst_init_fw -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0xcaeea984 bxt_sst_dsp_cleanup -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0xd4eb0919 skl_ipc_set_d0ix -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0xe3b7d8f8 skl_get_pvt_instance_id_map -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0xe72162d3 skl_sst_init_fw -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0xeea41394 skl_ipc_set_dx -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 0x00742ea9 snd_soc_dapm_disable_pin -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x00e6b91e snd_soc_dai_active -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x01a4a3ac snd_soc_rtdcom_lookup -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x02a7a312 null_dailink_component -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x02e4f430 snd_soc_free_ac97_component -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0657a1ee snd_soc_add_component -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x06d5dc00 snd_soc_dapm_new_controls -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x06fc50f6 snd_soc_dai_set_fmt -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0711a223 snd_soc_dapm_init -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x07e643be snd_soc_jack_notifier_register -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x084a7ad5 snd_soc_register_card -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0852cde3 snd_soc_dpcm_can_be_params -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x087258ff snd_soc_dai_compr_get_params -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x08b650b5 snd_soc_get_pcm_runtime -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0906d964 dapm_pinctrl_event -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x09fb5fbc snd_soc_info_volsw_range -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0b6a837a snd_soc_dapm_nc_pin -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0c74854d snd_soc_register_component -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0d4825fe snd_soc_dpcm_can_be_free_stop -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0f4a10cc snd_soc_info_enum_double -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x118204f2 snd_soc_dapm_weak_routes -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x12817d11 snd_soc_dpcm_can_be_prepared -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x12852960 snd_soc_component_get_pin_status -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x13a55acb snd_soc_component_write_field -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x169c6bdb snd_soc_dai_compr_set_metadata -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1b1b0261 snd_soc_dapm_add_routes -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1d4353b4 snd_soc_component_test_bits -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x20b6b222 snd_soc_dai_compr_set_params -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x20ee0df4 snd_dmaengine_pcm_prepare_slave_config -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x22ba2261 devm_snd_dmaengine_pcm_register -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x232f17ea snd_soc_get_volsw_range -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x24533ab1 snd_soc_dapm_kcontrol_dapm -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2541a979 snd_soc_calc_frame_size -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x25e9a644 snd_soc_dapm_force_enable_pin -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x29f0663c snd_soc_dai_is_dummy -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x29fbf994 snd_soc_tplg_widget_bind_event -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2aeda92d snd_soc_dapm_free -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2cf6f00d snd_soc_dapm_new_control -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2d502c2c snd_soc_bytes_info -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2f25f5ec snd_soc_component_set_jack -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2f27ebd1 snd_soc_link_compr_set_params -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2fe80df6 snd_soc_component_compr_ack -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x31c8fd6a snd_soc_dapm_put_pin_switch -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3218560f snd_soc_jack_free_gpios -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3304f405 snd_soc_cnew -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3546fbbb snd_soc_dapm_ignore_suspend -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x37f27c12 snd_soc_put_enum_double -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x37f2e241 snd_soc_of_get_dai_link_codecs -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x39954e7b snd_soc_pm_ops -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x39e0c60c snd_soc_unregister_component -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3b196ce6 snd_soc_runtime_calc_hw -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3dc331a6 snd_soc_component_async_complete -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3dd61078 snd_soc_bytes_tlv_callback -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4002d293 snd_soc_of_parse_aux_devs -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x436545c8 snd_soc_dai_compr_get_metadata -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x43c66f16 devm_snd_soc_register_dai -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4439a527 devm_snd_soc_register_component -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x454142b2 snd_soc_dpcm_be_can_update -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4819b08d snd_soc_tplg_component_load -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x48770776 snd_soc_dai_link_set_capabilities -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4a0f2382 snd_soc_set_dmi_name -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4c6a7a89 snd_soc_dapm_sync -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x51bbdbed dapm_clock_event -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x51decf08 snd_soc_dai_set_clkdiv -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x52350b1d snd_soc_component_nc_pin -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x52596d11 snd_soc_set_runtime_hwparams -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x53071028 snd_soc_component_compr_set_metadata -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x53de5a3d snd_soc_dapm_del_routes -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5922466a snd_dmaengine_pcm_register -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5a8dd3d0 snd_soc_component_compr_set_params -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5ea2c5cf snd_soc_unregister_card -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5ec1a515 snd_soc_add_dai_controls -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5f63ed02 snd_soc_component_disable_pin_unlocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5fe631d3 snd_soc_dpcm_runtime_update -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6385a01c snd_soc_info_xr_sx -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x64b6e157 snd_soc_dai_set_tdm_slot -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x65ac92e3 snd_soc_component_compr_pointer -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x66b4cda3 snd_soc_dai_compr_startup -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x67f1bc61 snd_soc_put_volsw_range -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x68a8b00e snd_soc_dapm_force_enable_pin_unlocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6aa309b1 dpcm_be_dai_trigger -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6c23b06e snd_soc_runtime_set_dai_fmt -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6c4d9815 snd_soc_component_initialize -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6cceb77f snd_soc_add_component_controls -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6da0bafa snd_soc_dpcm_get_substream -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x71226eb0 snd_soc_component_compr_free -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x71d53f00 snd_soc_get_volsw -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x732cd799 snd_soc_get_enum_double -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7483677d snd_soc_runtime_action -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x74dd2cd9 snd_soc_jack_notifier_unregister -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x754af099 snd_soc_dapm_get_pin_switch -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x75b39ba9 snd_soc_bytes_info_ext -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x75dd631c snd_soc_jack_add_pins -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7775af4d snd_soc_dapm_kcontrol_widget -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x78802f8e snd_soc_daifmt_parse_format -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x78bfde84 snd_soc_component_update_bits_async -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7c2e3840 snd_soc_resume -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7decf07f snd_soc_suspend -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7e01a816 snd_soc_get_xr_sx -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7e606130 snd_soc_calc_bclk -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7f1e17e4 snd_dmaengine_pcm_unregister -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7f5bb0a4 snd_soc_dai_set_sysclk -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8179ab8b snd_soc_component_read_field -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x81e6c4a8 snd_soc_link_compr_startup -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x82438d9b snd_soc_add_pcm_runtime -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x83298dee snd_soc_component_compr_get_caps -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x83c8e22c snd_soc_get_dai_name -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x86b7f3ff snd_soc_card_get_kcontrol -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x884a3381 snd_soc_new_ac97_component -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8935ab46 snd_soc_put_volsw_sx -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8b96cc8c snd_soc_dapm_new_widgets -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8bfe9bc5 devm_snd_soc_register_card -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8d45ab1c snd_soc_remove_pcm_runtime -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x901a55a7 snd_soc_lookup_component -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x90509390 snd_soc_add_card_controls -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x90c5f080 snd_soc_jack_get_type -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x90d62419 snd_soc_jack_add_zones -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x913bbdb8 snd_soc_dai_set_bclk_ratio -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x930961c8 snd_soc_dai_compr_ack -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x953bc9b6 snd_soc_info_volsw_sx -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x96ac8657 snd_soc_dai_compr_pointer -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9723b14d snd_soc_dai_compr_trigger -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x98947c16 snd_soc_component_nc_pin_unlocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x98e8d53a snd_soc_dapm_put_enum_double -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x99d682f7 snd_soc_dapm_enable_pin_unlocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9bfde704 snd_soc_daifmt_clock_provider_fliped -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9dea4e05 snd_soc_component_set_pll -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9efb8de8 snd_soc_limit_volume -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa05e639a snd_soc_component_set_sysclk -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa40b3675 snd_soc_dai_get_channel_map -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa5fb6478 snd_soc_dai_digital_mute -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xaad5c109 snd_soc_get_volsw_sx -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xaba69d88 snd_soc_component_compr_get_codec_caps -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xac90825f snd_soc_set_ac97_ops_of_reset -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xac9b7169 snd_soc_tplg_component_remove -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xacbbcae9 snd_soc_jack_add_gpiods -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xadb2d6cd snd_soc_component_exit_regmap -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xaf0f6894 snd_soc_get_dai_id -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb1561fa9 snd_soc_component_disable_pin -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb3f33160 snd_soc_dapm_stream_stop -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb533a832 snd_soc_new_compress -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb583ac5d snd_soc_dapm_get_volsw -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb5d5723d snd_soc_jack_add_gpios -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb6e6c78a snd_soc_dapm_force_bias_level -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb7eb8255 snd_soc_info_volsw -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb90757ba snd_soc_dapm_info_pin_switch -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb9232343 snd_soc_of_parse_tdm_slot -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb94e6c0e snd_soc_poweroff -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbb955355 snd_soc_dapm_nc_pin_unlocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbc18f491 snd_soc_dapm_get_enum_double -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbd5dc439 snd_soc_component_compr_get_params -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbe332dff snd_soc_component_compr_get_metadata -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc089ab96 snd_soc_get_strobe -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc1a51c83 snd_soc_of_parse_node_prefix -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc2262544 snd_soc_dapm_sync_unlocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc28bf028 snd_soc_component_compr_trigger -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc3463b7e snd_soc_of_parse_audio_simple_widgets -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc3622ffb snd_soc_component_force_enable_pin_unlocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc42317a3 snd_soc_dapm_enable_pin -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc49343ec snd_soc_unregister_component_by_driver -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc6ca4a1e snd_soc_of_get_dai_name -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc8269f94 snd_soc_params_to_frame_size -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcb9f626c snd_soc_of_parse_audio_routing -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcc06dd26 snd_soc_dapm_put_volsw -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcca5aef0 snd_soc_set_ac97_ops -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xccedd9cc snd_soc_component_init_regmap -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xce2cce5e snd_soc_dapm_get_pin_status -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xceca9e75 snd_soc_put_strobe -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd0e38507 snd_soc_dapm_update_dai -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd1287a61 snd_soc_lookup_component_nolocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd2a867ec snd_soc_daifmt_parse_clock_provider_raw -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd309b2e9 snd_soc_component_read -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd3cd4e33 snd_soc_dai_compr_shutdown -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd4457166 snd_soc_dai_set_channel_map -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd44db5c4 snd_soc_unregister_dai -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd582d15c snd_soc_debugfs_root -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd5f22b6d snd_soc_bytes_put -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd625e8cf snd_soc_of_put_dai_link_codecs -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd69bb20a soc_ac97_ops -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd8c385bc snd_soc_dapm_mixer_update_power -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd9680fc4 dapm_mark_endpoints_dirty -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xda7957e5 snd_soc_of_parse_card_name -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdb6d3b4a snd_soc_find_dai -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdb90984b snd_soc_component_compr_copy -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdd4a52d9 snd_soc_dai_action -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xde93b0ba dapm_kcontrol_get_value -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xde943358 dapm_regulator_event -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xded2dd14 snd_soc_component_enable_pin_unlocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdedb7904 snd_soc_find_dai_with_mutex -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe2d0745d snd_soc_jack_report -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe4a0ebd6 snd_soc_dai_set_pll -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe527f591 snd_soc_dapm_mux_update_power -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe6570101 snd_soc_component_enable_pin -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe6bc791e snd_soc_put_xr_sx -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe84749d7 snd_soc_component_compr_open -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe968ee08 snd_soc_put_volsw -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xea9749d0 snd_soc_dpcm_fe_can_update -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xeb711ae7 snd_soc_params_to_bclk -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xee32da07 snd_soc_component_force_enable_pin -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf048d2e2 snd_soc_close_delayed_work -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf5f940ea snd_soc_card_add_dai_link -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf7f55bff snd_soc_card_remove_dai_link -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf8809dd5 snd_soc_bytes_get -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf9622dd1 snd_soc_daifmt_clock_provider_from_bitmap -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf9944488 snd_soc_card_jack_new -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf9b864cb snd_soc_of_get_slot_mask -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfa71cba4 snd_soc_dapm_disable_pin_unlocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfbde03ac snd_soc_component_write -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfd841557 snd_soc_dai_set_tristate -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfe94871a snd_soc_component_update_bits -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xffa7cca8 snd_soc_link_compr_shutdown -EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0x43f564e7 snd_sof_debugfs_buf_item -EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0x63b8e80a snd_sof_free_debug -EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0x7ec6d4bf snd_sof_dbg_memory_info_init -EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0x98ab48f5 snd_sof_dbg_init -EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0xe6631c3f snd_sof_debugfs_io_item -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x0d893676 line6_init_pcm -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x139c4db2 line6_read_data -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x202a1b1b line6_midi_id -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x2c0e3981 line6_send_raw_message -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x2eebad4a line6_alloc_sysex_buffer -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x3455b512 line6_suspend -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x3dfea780 line6_send_sysex_message -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x3e31d11d line6_version_request_async -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x4eedcf6a line6_pcm_release -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x6547ca8c line6_write_data -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x6620331f line6_disconnect -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x820d1167 line6_read_serial_number -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x865bf5c2 line6_resume -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x8857751e line6_probe -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xbb5b59cd line6_init_midi -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xcb63cdb3 line6_send_raw_message_async -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xda4194a6 line6_pcm_acquire -EXPORT_SYMBOL_GPL vmlinux 0x00112a69 ata_sff_postreset -EXPORT_SYMBOL_GPL vmlinux 0x00114dbb __pm_runtime_suspend -EXPORT_SYMBOL_GPL vmlinux 0x001b074f mce_is_correctable -EXPORT_SYMBOL_GPL vmlinux 0x002b3afa devm_extcon_dev_register -EXPORT_SYMBOL_GPL vmlinux 0x0034ad41 rdev_get_regmap -EXPORT_SYMBOL_GPL vmlinux 0x0034f3b6 xen_has_pv_nic_devices -EXPORT_SYMBOL_GPL vmlinux 0x0036c186 platform_find_device_by_driver -EXPORT_SYMBOL_GPL vmlinux 0x00513f58 get_timespec64 -EXPORT_SYMBOL_GPL vmlinux 0x0072f903 ata_sas_port_stop -EXPORT_SYMBOL_GPL vmlinux 0x00763973 debugfs_rename -EXPORT_SYMBOL_GPL vmlinux 0x008539f0 klp_shadow_alloc -EXPORT_SYMBOL_GPL vmlinux 0x00901d83 __vfs_setxattr_locked -EXPORT_SYMBOL_GPL vmlinux 0x009ade7f rio_mport_get_physefb -EXPORT_SYMBOL_GPL vmlinux 0x00b9ab35 perf_event_sysfs_show -EXPORT_SYMBOL_GPL vmlinux 0x00baf702 acpi_spi_device_alloc -EXPORT_SYMBOL_GPL vmlinux 0x00d4c500 usb_decode_interval -EXPORT_SYMBOL_GPL vmlinux 0x00d96954 ftrace_ops_set_global_filter -EXPORT_SYMBOL_GPL vmlinux 0x00df9837 ioasid_register_allocator -EXPORT_SYMBOL_GPL vmlinux 0x00f674ed dm_table_device_name -EXPORT_SYMBOL_GPL vmlinux 0x0107b7e8 __SCK__tp_func_fib6_table_lookup -EXPORT_SYMBOL_GPL vmlinux 0x010af7c6 devlink_port_region_create -EXPORT_SYMBOL_GPL vmlinux 0x01156bf2 component_del -EXPORT_SYMBOL_GPL vmlinux 0x0115e662 tpmm_chip_alloc -EXPORT_SYMBOL_GPL vmlinux 0x011f002e acpi_get_first_physical_node -EXPORT_SYMBOL_GPL vmlinux 0x012b69f4 ata_port_schedule_eh -EXPORT_SYMBOL_GPL vmlinux 0x012e730e apei_exec_noop -EXPORT_SYMBOL_GPL vmlinux 0x013f648a transport_add_device -EXPORT_SYMBOL_GPL vmlinux 0x0146f88d __tracepoint_kfree_skb -EXPORT_SYMBOL_GPL vmlinux 0x01646fd4 usb_register_device_driver -EXPORT_SYMBOL_GPL vmlinux 0x016c052b fsstack_copy_attr_all -EXPORT_SYMBOL_GPL vmlinux 0x01738571 __SCK__tp_func_mc_event -EXPORT_SYMBOL_GPL vmlinux 0x01842d7c dw_pcie_setup_rc -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 0x01a0cb78 property_entries_free -EXPORT_SYMBOL_GPL vmlinux 0x01c12c32 cpu_bit_bitmap -EXPORT_SYMBOL_GPL vmlinux 0x01cb067d do_xdp_generic -EXPORT_SYMBOL_GPL vmlinux 0x01dda135 crypto_register_templates -EXPORT_SYMBOL_GPL vmlinux 0x01e1a8de kgdb_breakpoint -EXPORT_SYMBOL_GPL vmlinux 0x01ee5532 smp_call_function_any -EXPORT_SYMBOL_GPL vmlinux 0x0207a6c6 reset_control_bulk_acquire -EXPORT_SYMBOL_GPL vmlinux 0x02110a7c icc_link_destroy -EXPORT_SYMBOL_GPL vmlinux 0x0215cd08 btree_destroy -EXPORT_SYMBOL_GPL vmlinux 0x022e336d irq_chip_release_resources_parent -EXPORT_SYMBOL_GPL vmlinux 0x02318183 irq_domain_reset_irq_data -EXPORT_SYMBOL_GPL vmlinux 0x0235dd2a __clocksource_register_scale -EXPORT_SYMBOL_GPL vmlinux 0x0235f4d1 dm_internal_suspend_fast -EXPORT_SYMBOL_GPL vmlinux 0x02394899 play_idle_precise -EXPORT_SYMBOL_GPL vmlinux 0x023dbfda dev_pm_opp_disable -EXPORT_SYMBOL_GPL vmlinux 0x024c6e9d extcon_set_property -EXPORT_SYMBOL_GPL vmlinux 0x024c9fdf debugfs_create_u64 -EXPORT_SYMBOL_GPL vmlinux 0x024d13dd request_free_mem_region -EXPORT_SYMBOL_GPL vmlinux 0x02581fbb tty_port_install -EXPORT_SYMBOL_GPL vmlinux 0x026e88cb ata_dummy_port_ops -EXPORT_SYMBOL_GPL vmlinux 0x027a2e51 fib6_check_nexthop -EXPORT_SYMBOL_GPL vmlinux 0x0285b4cd msi_desc_to_pci_sysdata -EXPORT_SYMBOL_GPL vmlinux 0x02946979 dm_get_queue_limits -EXPORT_SYMBOL_GPL vmlinux 0x0295815b devm_device_add_group -EXPORT_SYMBOL_GPL vmlinux 0x0298a53b init_srcu_struct -EXPORT_SYMBOL_GPL vmlinux 0x02a3649e acpi_device_fix_up_power -EXPORT_SYMBOL_GPL vmlinux 0x02aa5514 pm_genpd_remove_subdomain -EXPORT_SYMBOL_GPL vmlinux 0x02db5067 xenbus_dev_error -EXPORT_SYMBOL_GPL vmlinux 0x02de9b7a regulator_disable -EXPORT_SYMBOL_GPL vmlinux 0x02e0da1e vring_create_virtqueue -EXPORT_SYMBOL_GPL vmlinux 0x02f04606 acpi_subsys_complete -EXPORT_SYMBOL_GPL vmlinux 0x02ff2a99 regmap_add_irq_chip_fwnode -EXPORT_SYMBOL_GPL vmlinux 0x03035280 devm_gpiod_get_index_optional -EXPORT_SYMBOL_GPL vmlinux 0x0307c51b fbcon_modechange_possible -EXPORT_SYMBOL_GPL vmlinux 0x030e7368 kthread_cancel_delayed_work_sync -EXPORT_SYMBOL_GPL vmlinux 0x0311b527 gnttab_page_cache_get -EXPORT_SYMBOL_GPL vmlinux 0x0312b3b0 reset_controller_add_lookup -EXPORT_SYMBOL_GPL vmlinux 0x03345fd1 tcpv6_prot -EXPORT_SYMBOL_GPL vmlinux 0x033832c7 usb_amd_hang_symptom_quirk -EXPORT_SYMBOL_GPL vmlinux 0x0343bdf1 __i2c_board_list -EXPORT_SYMBOL_GPL vmlinux 0x035afbfe genphy_c45_pma_read_abilities -EXPORT_SYMBOL_GPL vmlinux 0x035c2b6a debugfs_create_u16 -EXPORT_SYMBOL_GPL vmlinux 0x035dcd0a fsverity_ioctl_enable -EXPORT_SYMBOL_GPL vmlinux 0x036de383 perf_event_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x036eaf61 da9055_regmap_config -EXPORT_SYMBOL_GPL vmlinux 0x03721579 gnttab_page_cache_init -EXPORT_SYMBOL_GPL vmlinux 0x03807aab usb_init_urb -EXPORT_SYMBOL_GPL vmlinux 0x03895f1d rio_add_mport_pw_handler -EXPORT_SYMBOL_GPL vmlinux 0x03952887 ktime_add_safe -EXPORT_SYMBOL_GPL vmlinux 0x039b9abc dev_pm_qos_remove_request -EXPORT_SYMBOL_GPL vmlinux 0x03ad9da3 fs_dax_get_by_bdev -EXPORT_SYMBOL_GPL vmlinux 0x03bcaa61 blk_mq_quiesce_queue_nowait -EXPORT_SYMBOL_GPL vmlinux 0x03c12dfe cancel_work_sync -EXPORT_SYMBOL_GPL vmlinux 0x03c1c035 acrn_remove_intr_handler -EXPORT_SYMBOL_GPL vmlinux 0x03c967ea irq_chip_mask_parent -EXPORT_SYMBOL_GPL vmlinux 0x03ce7234 sched_smt_present -EXPORT_SYMBOL_GPL vmlinux 0x03dc772b dw_pcie_find_capability -EXPORT_SYMBOL_GPL vmlinux 0x03ddde6b usb_hcd_pci_probe -EXPORT_SYMBOL_GPL vmlinux 0x03e3ebd0 extcon_sync -EXPORT_SYMBOL_GPL vmlinux 0x03ea4bfe watchdog_notify_pretimeout -EXPORT_SYMBOL_GPL vmlinux 0x0402cbbf preempt_notifier_inc -EXPORT_SYMBOL_GPL vmlinux 0x0416eba0 fscrypt_mergeable_bio_bh -EXPORT_SYMBOL_GPL vmlinux 0x042731c3 gpiochip_free_own_desc -EXPORT_SYMBOL_GPL vmlinux 0x042c9a04 em_cpu_get -EXPORT_SYMBOL_GPL vmlinux 0x04326851 gpiod_direction_input -EXPORT_SYMBOL_GPL vmlinux 0x04459457 init_user_ns -EXPORT_SYMBOL_GPL vmlinux 0x044a0f90 __tracepoint_xdp_bulk_tx -EXPORT_SYMBOL_GPL vmlinux 0x0465a073 regmap_reg_in_ranges -EXPORT_SYMBOL_GPL vmlinux 0x048542e9 usb_hcd_check_unlink_urb -EXPORT_SYMBOL_GPL vmlinux 0x048b5f8d twl4030_audio_get_mclk -EXPORT_SYMBOL_GPL vmlinux 0x049e5156 gnttab_try_end_foreign_access -EXPORT_SYMBOL_GPL vmlinux 0x04a38f7d dev_pm_set_dedicated_wake_irq -EXPORT_SYMBOL_GPL vmlinux 0x04a7c86d fwnode_get_nth_parent -EXPORT_SYMBOL_GPL vmlinux 0x04b4e5cd dm_bio_get_target_bio_nr -EXPORT_SYMBOL_GPL vmlinux 0x04bc729a __mmu_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0x04bf0092 io_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x04c20e88 fsnotify_find_mark -EXPORT_SYMBOL_GPL vmlinux 0x04c27baa sdio_release_irq -EXPORT_SYMBOL_GPL vmlinux 0x04c2a07c dev_pm_opp_get_max_volt_latency -EXPORT_SYMBOL_GPL vmlinux 0x04c4f603 mpi_get_buffer -EXPORT_SYMBOL_GPL vmlinux 0x04c8aebf console_verbose -EXPORT_SYMBOL_GPL vmlinux 0x04df8fbc lzo1x_decompress_safe -EXPORT_SYMBOL_GPL vmlinux 0x04e0042c event_triggers_call -EXPORT_SYMBOL_GPL vmlinux 0x04e81dad iommu_present -EXPORT_SYMBOL_GPL vmlinux 0x050c1018 __netpoll_cleanup -EXPORT_SYMBOL_GPL vmlinux 0x050fe8db hvc_alloc -EXPORT_SYMBOL_GPL vmlinux 0x05196b49 __cpuhp_state_add_instance -EXPORT_SYMBOL_GPL vmlinux 0x0528d1fc disk_uevent -EXPORT_SYMBOL_GPL vmlinux 0x05298fe2 fwnode_remove_software_node -EXPORT_SYMBOL_GPL vmlinux 0x052c9aed ktime_get_real_fast_ns -EXPORT_SYMBOL_GPL vmlinux 0x053749c4 dm_set_target_max_io_len -EXPORT_SYMBOL_GPL vmlinux 0x05382f98 __traceiter_neigh_update_done -EXPORT_SYMBOL_GPL vmlinux 0x054e550b kernel_halt -EXPORT_SYMBOL_GPL vmlinux 0x0555f86f nf_checksum -EXPORT_SYMBOL_GPL vmlinux 0x0563180b xfrm_audit_state_icvfail -EXPORT_SYMBOL_GPL vmlinux 0x056b9c49 nd_region_dev -EXPORT_SYMBOL_GPL vmlinux 0x057b6415 irq_work_sync -EXPORT_SYMBOL_GPL vmlinux 0x05857a47 pci_num_vf -EXPORT_SYMBOL_GPL vmlinux 0x05883efb __traceiter_suspend_resume -EXPORT_SYMBOL_GPL vmlinux 0x058e8f1f driver_register -EXPORT_SYMBOL_GPL vmlinux 0x058f9366 apei_exec_collect_resources -EXPORT_SYMBOL_GPL vmlinux 0x059ae58a housekeeping_affine -EXPORT_SYMBOL_GPL vmlinux 0x05a267a6 ata_scsi_slave_destroy -EXPORT_SYMBOL_GPL vmlinux 0x05a31137 cpufreq_driver_fast_switch -EXPORT_SYMBOL_GPL vmlinux 0x05a46525 nexthop_find_by_id -EXPORT_SYMBOL_GPL vmlinux 0x05a695d5 aead_exit_geniv -EXPORT_SYMBOL_GPL vmlinux 0x05a74b7e spi_mem_driver_register_with_owner -EXPORT_SYMBOL_GPL vmlinux 0x05c3d1f9 devlink_sb_register -EXPORT_SYMBOL_GPL vmlinux 0x05c9e30c do_unbind_con_driver -EXPORT_SYMBOL_GPL vmlinux 0x05e67797 badrange_add -EXPORT_SYMBOL_GPL vmlinux 0x05f68156 rtnl_delete_link -EXPORT_SYMBOL_GPL vmlinux 0x060f84dc pci_disable_pri -EXPORT_SYMBOL_GPL vmlinux 0x06123195 sysfs_remove_file_from_group -EXPORT_SYMBOL_GPL vmlinux 0x0616bd30 dev_pm_domain_attach -EXPORT_SYMBOL_GPL vmlinux 0x061d5f7f pm_runtime_enable -EXPORT_SYMBOL_GPL vmlinux 0x06209f49 phy_lookup_setting -EXPORT_SYMBOL_GPL vmlinux 0x0626da5f od_unregister_powersave_bias_handler -EXPORT_SYMBOL_GPL vmlinux 0x062bcb16 hrtimer_active -EXPORT_SYMBOL_GPL vmlinux 0x062d4242 dst_blackhole_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0x063c220c mmu_notifier_get_locked -EXPORT_SYMBOL_GPL vmlinux 0x063c3362 vp_modern_remove -EXPORT_SYMBOL_GPL vmlinux 0x063fa5c5 __pneigh_lookup -EXPORT_SYMBOL_GPL vmlinux 0x064ab68d __fsnotify_inode_delete -EXPORT_SYMBOL_GPL vmlinux 0x064db9a5 mark_mounts_for_expiry -EXPORT_SYMBOL_GPL vmlinux 0x0653376d acpi_dev_clear_dependencies -EXPORT_SYMBOL_GPL vmlinux 0x065ec578 ata_sff_dma_pause -EXPORT_SYMBOL_GPL vmlinux 0x06787fec __irq_domain_add -EXPORT_SYMBOL_GPL vmlinux 0x067a0f41 bio_end_io_acct_remapped -EXPORT_SYMBOL_GPL vmlinux 0x0680468b wm8350_block_read -EXPORT_SYMBOL_GPL vmlinux 0x06b5761d pm_runtime_barrier -EXPORT_SYMBOL_GPL vmlinux 0x06b6c89f fscrypt_ioctl_get_key_status -EXPORT_SYMBOL_GPL vmlinux 0x06caab5e fat_free_clusters -EXPORT_SYMBOL_GPL vmlinux 0x06cca30b ring_buffer_record_off -EXPORT_SYMBOL_GPL vmlinux 0x06d7c8fe sata_scr_read -EXPORT_SYMBOL_GPL vmlinux 0x06dcaedf metadata_dst_alloc -EXPORT_SYMBOL_GPL vmlinux 0x06e3d5a5 debugfs_create_size_t -EXPORT_SYMBOL_GPL vmlinux 0x06e5b19e crypto_unregister_scomp -EXPORT_SYMBOL_GPL vmlinux 0x07001a92 crypto_hash_walk_done -EXPORT_SYMBOL_GPL vmlinux 0x0703d029 devlink_trap_report -EXPORT_SYMBOL_GPL vmlinux 0x0705e469 genphy_c45_config_aneg -EXPORT_SYMBOL_GPL vmlinux 0x0707019a context_tracking -EXPORT_SYMBOL_GPL vmlinux 0x07073c3b dev_forward_skb -EXPORT_SYMBOL_GPL vmlinux 0x0707f0ee spi_new_ancillary_device -EXPORT_SYMBOL_GPL vmlinux 0x070d550d __SCK__tp_func_sched_util_est_se_tp -EXPORT_SYMBOL_GPL vmlinux 0x0715ecf1 __devm_irq_alloc_descs -EXPORT_SYMBOL_GPL vmlinux 0x071c0852 dma_can_mmap -EXPORT_SYMBOL_GPL vmlinux 0x07242d92 put_dax -EXPORT_SYMBOL_GPL vmlinux 0x07261922 pm_runtime_set_autosuspend_delay -EXPORT_SYMBOL_GPL vmlinux 0x07355999 pinctrl_pm_select_idle_state -EXPORT_SYMBOL_GPL vmlinux 0x073e7357 regulator_set_voltage_sel_regmap -EXPORT_SYMBOL_GPL vmlinux 0x07483e13 cn_del_callback -EXPORT_SYMBOL_GPL vmlinux 0x074f98db synth_event_add_field -EXPORT_SYMBOL_GPL vmlinux 0x076356e7 sfp_may_have_phy -EXPORT_SYMBOL_GPL vmlinux 0x07664654 kstrdup_quotable_cmdline -EXPORT_SYMBOL_GPL vmlinux 0x07894c1e ata_std_bios_param -EXPORT_SYMBOL_GPL vmlinux 0x078bf5ea crypto_aead_encrypt -EXPORT_SYMBOL_GPL vmlinux 0x07aa98be pci_ioremap_bar -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 0x07c8247c __clk_get_hw -EXPORT_SYMBOL_GPL vmlinux 0x07d8af96 hwspin_lock_get_id -EXPORT_SYMBOL_GPL vmlinux 0x07d8dc17 __devres_alloc_node -EXPORT_SYMBOL_GPL vmlinux 0x07e5eefb fwnode_graph_get_remote_port -EXPORT_SYMBOL_GPL vmlinux 0x07fbd4f0 serial8250_rpm_put_tx -EXPORT_SYMBOL_GPL vmlinux 0x08135613 dax_write_cache -EXPORT_SYMBOL_GPL vmlinux 0x0823e4ae irq_domain_xlate_twocell -EXPORT_SYMBOL_GPL vmlinux 0x08332b96 nvdimm_name -EXPORT_SYMBOL_GPL vmlinux 0x083d343f devm_spi_mem_dirmap_create -EXPORT_SYMBOL_GPL vmlinux 0x084f6253 class_remove_file_ns -EXPORT_SYMBOL_GPL vmlinux 0x0855936e regmap_get_raw_read_max -EXPORT_SYMBOL_GPL vmlinux 0x0861c54b power_supply_changed -EXPORT_SYMBOL_GPL vmlinux 0x0870abdb __pci_epc_create -EXPORT_SYMBOL_GPL vmlinux 0x087f5dc5 wm831x_of_match -EXPORT_SYMBOL_GPL vmlinux 0x0885699c dev_pm_domain_start -EXPORT_SYMBOL_GPL vmlinux 0x08871e68 sis_info133_for_sata -EXPORT_SYMBOL_GPL vmlinux 0x08891c6f blk_execute_rq_nowait -EXPORT_SYMBOL_GPL vmlinux 0x08892012 i2c_acpi_find_bus_speed -EXPORT_SYMBOL_GPL vmlinux 0x08901ed2 skcipher_walk_aead_encrypt -EXPORT_SYMBOL_GPL vmlinux 0x08950eb4 security_path_truncate -EXPORT_SYMBOL_GPL vmlinux 0x08aa4a88 device_property_read_u32_array -EXPORT_SYMBOL_GPL vmlinux 0x08aa8d5c gpiochip_disable_irq -EXPORT_SYMBOL_GPL vmlinux 0x08c78cf7 offline_and_remove_memory -EXPORT_SYMBOL_GPL vmlinux 0x08d5a471 __sock_recv_timestamp -EXPORT_SYMBOL_GPL vmlinux 0x090ab6ab iomap_dio_rw -EXPORT_SYMBOL_GPL vmlinux 0x090b943e fib_add_nexthop -EXPORT_SYMBOL_GPL vmlinux 0x090e6fd6 ohci_setup -EXPORT_SYMBOL_GPL vmlinux 0x091eb9b4 round_jiffies -EXPORT_SYMBOL_GPL vmlinux 0x0925493f clear_page_orig -EXPORT_SYMBOL_GPL vmlinux 0x092b5fda gpiod_set_transitory -EXPORT_SYMBOL_GPL vmlinux 0x09330784 do_truncate -EXPORT_SYMBOL_GPL vmlinux 0x093786cf synth_event_add_field_str -EXPORT_SYMBOL_GPL vmlinux 0x093a65b9 __pci_epf_register_driver -EXPORT_SYMBOL_GPL vmlinux 0x09450c16 dma_get_merge_boundary -EXPORT_SYMBOL_GPL vmlinux 0x094517a2 dw_pcie_upconfig_setup -EXPORT_SYMBOL_GPL vmlinux 0x096a7e6f x86_spec_ctrl_base -EXPORT_SYMBOL_GPL vmlinux 0x097b7504 dev_pm_opp_get_suspend_opp_freq -EXPORT_SYMBOL_GPL vmlinux 0x097ddc04 context_tracking_exit -EXPORT_SYMBOL_GPL vmlinux 0x097fa5b0 xdp_attachment_setup -EXPORT_SYMBOL_GPL vmlinux 0x0984e363 srcu_notifier_chain_register -EXPORT_SYMBOL_GPL vmlinux 0x0988ec75 __trace_array_puts -EXPORT_SYMBOL_GPL vmlinux 0x09b53e14 interval_tree_remove -EXPORT_SYMBOL_GPL vmlinux 0x09c41de8 dma_alloc_noncontiguous -EXPORT_SYMBOL_GPL vmlinux 0x09dea713 mbox_send_message -EXPORT_SYMBOL_GPL vmlinux 0x09deb32c gov_update_cpu_data -EXPORT_SYMBOL_GPL vmlinux 0x09f50f32 rcu_nocb_flush_deferred_wakeup -EXPORT_SYMBOL_GPL vmlinux 0x0a00cc08 devm_phy_create -EXPORT_SYMBOL_GPL vmlinux 0x0a046872 fsnotify -EXPORT_SYMBOL_GPL vmlinux 0x0a13b952 bpf_map_put -EXPORT_SYMBOL_GPL vmlinux 0x0a2b9857 lookup_address_in_mm -EXPORT_SYMBOL_GPL vmlinux 0x0a366e3d sata_port_ops -EXPORT_SYMBOL_GPL vmlinux 0x0a461c64 __regmap_init_spi -EXPORT_SYMBOL_GPL vmlinux 0x0a4df0f9 bio_trim -EXPORT_SYMBOL_GPL vmlinux 0x0a502c98 dmar_platform_optin -EXPORT_SYMBOL_GPL vmlinux 0x0a52c511 hv_query_ext_cap -EXPORT_SYMBOL_GPL vmlinux 0x0a5fc32b io_cgrp_subsys -EXPORT_SYMBOL_GPL vmlinux 0x0a683e87 devm_pci_epc_destroy -EXPORT_SYMBOL_GPL vmlinux 0x0a6c4041 cn_netlink_send -EXPORT_SYMBOL_GPL vmlinux 0x0a70480d regmap_async_complete_cb -EXPORT_SYMBOL_GPL vmlinux 0x0a7ad86b tps6586x_irq_get_virq -EXPORT_SYMBOL_GPL vmlinux 0x0a7d8a21 gpiochip_generic_free -EXPORT_SYMBOL_GPL vmlinux 0x0a90461b alarm_try_to_cancel -EXPORT_SYMBOL_GPL vmlinux 0x0ab0a2d8 cpufreq_generic_attr -EXPORT_SYMBOL_GPL vmlinux 0x0abc0b68 mptcp_token_get_sock -EXPORT_SYMBOL_GPL vmlinux 0x0abcbf05 pkcs7_parse_message -EXPORT_SYMBOL_GPL vmlinux 0x0acc5ac6 led_classdev_notify_brightness_hw_changed -EXPORT_SYMBOL_GPL vmlinux 0x0acc9229 i2c_new_ancillary_device -EXPORT_SYMBOL_GPL vmlinux 0x0ad137d3 lpit_read_residency_count_address -EXPORT_SYMBOL_GPL vmlinux 0x0ade7347 blk_ksm_register -EXPORT_SYMBOL_GPL vmlinux 0x0af40724 iommu_alloc_resv_region -EXPORT_SYMBOL_GPL vmlinux 0x0b07abe2 unshare_fs_struct -EXPORT_SYMBOL_GPL vmlinux 0x0b12e4ca raw_seq_start -EXPORT_SYMBOL_GPL vmlinux 0x0b1409ee rio_release_inb_pwrite -EXPORT_SYMBOL_GPL vmlinux 0x0b1bb9f9 synchronize_rcu_tasks -EXPORT_SYMBOL_GPL vmlinux 0x0b1e2fc4 fb_deferred_io_open -EXPORT_SYMBOL_GPL vmlinux 0x0b1efcdc devlink_health_reporter_create -EXPORT_SYMBOL_GPL vmlinux 0x0b201059 dev_pm_opp_find_freq_ceil_by_volt -EXPORT_SYMBOL_GPL vmlinux 0x0b220792 __devm_regmap_init_mmio_clk -EXPORT_SYMBOL_GPL vmlinux 0x0b29c4eb spi_get_device_id -EXPORT_SYMBOL_GPL vmlinux 0x0b2db2d5 remove_resource -EXPORT_SYMBOL_GPL vmlinux 0x0b3ad533 tcp_get_syncookie_mss -EXPORT_SYMBOL_GPL vmlinux 0x0b3b667a da903x_update -EXPORT_SYMBOL_GPL vmlinux 0x0b48ca36 sysfs_remove_group -EXPORT_SYMBOL_GPL vmlinux 0x0b4ed3f7 housekeeping_cpumask -EXPORT_SYMBOL_GPL vmlinux 0x0b52e502 apei_resources_add -EXPORT_SYMBOL_GPL vmlinux 0x0b583b25 dma_need_sync -EXPORT_SYMBOL_GPL vmlinux 0x0b61b158 platform_driver_unregister -EXPORT_SYMBOL_GPL vmlinux 0x0b898e94 __wake_up_pollfree -EXPORT_SYMBOL_GPL vmlinux 0x0b8c619e auxiliary_device_init -EXPORT_SYMBOL_GPL vmlinux 0x0b927ce7 dst_blackhole_redirect -EXPORT_SYMBOL_GPL vmlinux 0x0bb1b6ea trace_define_field -EXPORT_SYMBOL_GPL vmlinux 0x0bbdb731 __phy_modify_mmd -EXPORT_SYMBOL_GPL vmlinux 0x0bbdc9b2 remove_memory -EXPORT_SYMBOL_GPL vmlinux 0x0bbe16bb fb_deferred_io_cleanup -EXPORT_SYMBOL_GPL vmlinux 0x0bbeaeba uv_bios_enum_ports -EXPORT_SYMBOL_GPL vmlinux 0x0bd2944e iommu_map_atomic -EXPORT_SYMBOL_GPL vmlinux 0x0bd9eb8c crypto_shoot_alg -EXPORT_SYMBOL_GPL vmlinux 0x0bfa3a19 rcu_idle_exit -EXPORT_SYMBOL_GPL vmlinux 0x0c076cb5 acpi_set_modalias -EXPORT_SYMBOL_GPL vmlinux 0x0c09d043 __page_file_mapping -EXPORT_SYMBOL_GPL vmlinux 0x0c13d6a7 phy_init -EXPORT_SYMBOL_GPL vmlinux 0x0c1e03bf regmap_multi_reg_write -EXPORT_SYMBOL_GPL vmlinux 0x0c2c5802 work_busy -EXPORT_SYMBOL_GPL vmlinux 0x0c32ff8a edac_pci_alloc_index -EXPORT_SYMBOL_GPL vmlinux 0x0c39c336 __regmap_init -EXPORT_SYMBOL_GPL vmlinux 0x0c6562bd device_bind_driver -EXPORT_SYMBOL_GPL vmlinux 0x0c7287f4 da9052_request_irq -EXPORT_SYMBOL_GPL vmlinux 0x0c801a9d crypto_shash_digest -EXPORT_SYMBOL_GPL vmlinux 0x0c805f93 clflush_cache_range -EXPORT_SYMBOL_GPL vmlinux 0x0c88c1c3 pci_vpd_find_id_string -EXPORT_SYMBOL_GPL vmlinux 0x0cbe3ee2 software_node_unregister -EXPORT_SYMBOL_GPL vmlinux 0x0cc10897 usb_sg_cancel -EXPORT_SYMBOL_GPL vmlinux 0x0cec4212 unregister_acpi_bus_type -EXPORT_SYMBOL_GPL vmlinux 0x0cf66800 __irq_resolve_mapping -EXPORT_SYMBOL_GPL vmlinux 0x0cfa68ed __SCK__tp_func_devlink_hwerr -EXPORT_SYMBOL_GPL vmlinux 0x0cfaaa64 usb_set_configuration -EXPORT_SYMBOL_GPL vmlinux 0x0cfe59cb hyperv_fill_flush_guest_mapping_list -EXPORT_SYMBOL_GPL vmlinux 0x0d007ab0 transport_remove_device -EXPORT_SYMBOL_GPL vmlinux 0x0d023b50 power_supply_register_no_ws -EXPORT_SYMBOL_GPL vmlinux 0x0d095ee9 bdi_dev_name -EXPORT_SYMBOL_GPL vmlinux 0x0d140b8e fuse_get_unique -EXPORT_SYMBOL_GPL vmlinux 0x0d1b9927 blk_trace_remove -EXPORT_SYMBOL_GPL vmlinux 0x0d299325 wm8350_gpio_config -EXPORT_SYMBOL_GPL vmlinux 0x0d372288 perf_pmu_unregister -EXPORT_SYMBOL_GPL vmlinux 0x0d459213 work_on_cpu_safe -EXPORT_SYMBOL_GPL vmlinux 0x0d49272f acpi_create_platform_device -EXPORT_SYMBOL_GPL vmlinux 0x0d4961de nf_log_buf_open -EXPORT_SYMBOL_GPL vmlinux 0x0d4e3f8c iopf_queue_alloc -EXPORT_SYMBOL_GPL vmlinux 0x0d4e4725 __strp_unpause -EXPORT_SYMBOL_GPL vmlinux 0x0d5320d6 __traceiter_pelt_dl_tp -EXPORT_SYMBOL_GPL vmlinux 0x0d5a0e3e devfreq_cooling_unregister -EXPORT_SYMBOL_GPL vmlinux 0x0d5cecc6 ima_measure_critical_data -EXPORT_SYMBOL_GPL vmlinux 0x0d6b541f __traceiter_pelt_thermal_tp -EXPORT_SYMBOL_GPL vmlinux 0x0d8e0001 devlink_param_value_changed -EXPORT_SYMBOL_GPL vmlinux 0x0d8f716b ip6_dst_lookup_tunnel -EXPORT_SYMBOL_GPL vmlinux 0x0d982c81 fuse_do_open -EXPORT_SYMBOL_GPL vmlinux 0x0dbbfffc serdev_controller_alloc -EXPORT_SYMBOL_GPL vmlinux 0x0dbdc903 split_page -EXPORT_SYMBOL_GPL vmlinux 0x0dcb3ee8 divider_recalc_rate -EXPORT_SYMBOL_GPL vmlinux 0x0ddadea2 __SCT__tp_func_pelt_thermal_tp -EXPORT_SYMBOL_GPL vmlinux 0x0ddb1cd7 llist_reverse_order -EXPORT_SYMBOL_GPL vmlinux 0x0ded16ee devm_regulator_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x0df643dd __fscrypt_prepare_link -EXPORT_SYMBOL_GPL vmlinux 0x0df82f7b regulator_list_voltage_linear -EXPORT_SYMBOL_GPL vmlinux 0x0dfd0932 gnttab_alloc_pages -EXPORT_SYMBOL_GPL vmlinux 0x0e007edf xen_evtchn_nr_channels -EXPORT_SYMBOL_GPL vmlinux 0x0e095779 bpf_map_inc_not_zero -EXPORT_SYMBOL_GPL vmlinux 0x0e13cb4d apei_resources_release -EXPORT_SYMBOL_GPL vmlinux 0x0e1fc8ef __SCT__tp_func_non_standard_event -EXPORT_SYMBOL_GPL vmlinux 0x0e2019d3 posix_clock_unregister -EXPORT_SYMBOL_GPL vmlinux 0x0e24feaf addrconf_add_linklocal -EXPORT_SYMBOL_GPL vmlinux 0x0e5cc9d7 xdp_unreg_mem_model -EXPORT_SYMBOL_GPL vmlinux 0x0e6b79af static_key_disable_cpuslocked -EXPORT_SYMBOL_GPL vmlinux 0x0e8a312b __traceiter_neigh_event_send_done -EXPORT_SYMBOL_GPL vmlinux 0x0e8b80f0 iommu_uapi_sva_unbind_gpasid -EXPORT_SYMBOL_GPL vmlinux 0x0e97a1f3 crypto_stats_ahash_final -EXPORT_SYMBOL_GPL vmlinux 0x0ea5cbce xen_irq_lateeoi -EXPORT_SYMBOL_GPL vmlinux 0x0ebd7c39 memremap_pages -EXPORT_SYMBOL_GPL vmlinux 0x0ec096b0 hv_read_reference_counter -EXPORT_SYMBOL_GPL vmlinux 0x0ed0dad3 sata_link_resume -EXPORT_SYMBOL_GPL vmlinux 0x0ee83906 synth_event_gen_cmd_array_start -EXPORT_SYMBOL_GPL vmlinux 0x0efa0b26 devm_clk_hw_unregister -EXPORT_SYMBOL_GPL vmlinux 0x0efb2a76 devm_devfreq_event_add_edev -EXPORT_SYMBOL_GPL vmlinux 0x0effa8bb devlink_net -EXPORT_SYMBOL_GPL vmlinux 0x0f0b21fe pm_trace_rtc_abused -EXPORT_SYMBOL_GPL vmlinux 0x0f16cceb wm831x_set_bits -EXPORT_SYMBOL_GPL vmlinux 0x0f180070 ring_buffer_free_read_page -EXPORT_SYMBOL_GPL vmlinux 0x0f1de58a bpf_trace_run8 -EXPORT_SYMBOL_GPL vmlinux 0x0f1f2ac9 sbitmap_queue_wake_up -EXPORT_SYMBOL_GPL vmlinux 0x0f1f3d23 hypervisor_kobj -EXPORT_SYMBOL_GPL vmlinux 0x0f232f44 perf_event_enable -EXPORT_SYMBOL_GPL vmlinux 0x0f2d7d87 mce_unregister_decode_chain -EXPORT_SYMBOL_GPL vmlinux 0x0f3369b9 icc_provider_add -EXPORT_SYMBOL_GPL vmlinux 0x0f39118a dmaengine_desc_get_metadata_ptr -EXPORT_SYMBOL_GPL vmlinux 0x0f402b95 ata_sas_tport_add -EXPORT_SYMBOL_GPL vmlinux 0x0f46d58b pm_clk_create -EXPORT_SYMBOL_GPL vmlinux 0x0f4f0345 linear_hugepage_index -EXPORT_SYMBOL_GPL vmlinux 0x0f54730f usb_kill_anchored_urbs -EXPORT_SYMBOL_GPL vmlinux 0x0f56ec77 ata_link_online -EXPORT_SYMBOL_GPL vmlinux 0x0f72ada1 acpi_dev_resource_io -EXPORT_SYMBOL_GPL vmlinux 0x0f7ca236 dmi_memdev_name -EXPORT_SYMBOL_GPL vmlinux 0x0f8d18cd devm_devfreq_event_remove_edev -EXPORT_SYMBOL_GPL vmlinux 0x0f962b21 mddev_init -EXPORT_SYMBOL_GPL vmlinux 0x0f979683 regmap_get_val_bytes -EXPORT_SYMBOL_GPL vmlinux 0x0f9fc04e uv_get_archtype -EXPORT_SYMBOL_GPL vmlinux 0x0fb74b7c phy_start_machine -EXPORT_SYMBOL_GPL vmlinux 0x0fbb7344 memremap_compat_align -EXPORT_SYMBOL_GPL vmlinux 0x0fc37562 amd_smn_read -EXPORT_SYMBOL_GPL vmlinux 0x0fc68f93 device_add_software_node -EXPORT_SYMBOL_GPL vmlinux 0x0fcc1969 copy_from_user_nmi -EXPORT_SYMBOL_GPL vmlinux 0x0fd4610e kmem_dump_obj -EXPORT_SYMBOL_GPL vmlinux 0x0fe8c726 crypto_stats_get -EXPORT_SYMBOL_GPL vmlinux 0x0ff47b52 fwnode_get_next_parent -EXPORT_SYMBOL_GPL vmlinux 0x10000d85 preempt_notifier_unregister -EXPORT_SYMBOL_GPL vmlinux 0x1005d60b tick_nohz_dep_set_cpu -EXPORT_SYMBOL_GPL vmlinux 0x10138352 tracing_on -EXPORT_SYMBOL_GPL vmlinux 0x1024d9f2 udp4_lib_lookup -EXPORT_SYMBOL_GPL vmlinux 0x10252995 __tracepoint_pelt_rt_tp -EXPORT_SYMBOL_GPL vmlinux 0x1026cd8f __clk_mux_determine_rate -EXPORT_SYMBOL_GPL vmlinux 0x102b7cba pm_runtime_suspended_time -EXPORT_SYMBOL_GPL vmlinux 0x1038b96f adxl_get_component_names -EXPORT_SYMBOL_GPL vmlinux 0x1041881e kobject_create_and_add -EXPORT_SYMBOL_GPL vmlinux 0x10447fbf usb_ep0_reinit -EXPORT_SYMBOL_GPL vmlinux 0x1046412c is_dock_device -EXPORT_SYMBOL_GPL vmlinux 0x1053e20d x86_vector_domain -EXPORT_SYMBOL_GPL vmlinux 0x106d6f48 report_iommu_fault -EXPORT_SYMBOL_GPL vmlinux 0x106f5dce i2c_match_id -EXPORT_SYMBOL_GPL vmlinux 0x1074e2a2 ipv4_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0x1075b214 dax_writeback_mapping_range -EXPORT_SYMBOL_GPL vmlinux 0x1078f906 crypto_skcipher_setkey -EXPORT_SYMBOL_GPL vmlinux 0x107de685 iommu_group_add_device -EXPORT_SYMBOL_GPL vmlinux 0x10835859 kthread_unuse_mm -EXPORT_SYMBOL_GPL vmlinux 0x108a0acd bstr_printf -EXPORT_SYMBOL_GPL vmlinux 0x109c1ee5 pci_generic_config_write -EXPORT_SYMBOL_GPL vmlinux 0x10d1cf2f cpuidle_register_driver -EXPORT_SYMBOL_GPL vmlinux 0x10ecc52c usb_amd_quirk_pll_enable -EXPORT_SYMBOL_GPL vmlinux 0x10f16ac9 pci_epc_get -EXPORT_SYMBOL_GPL vmlinux 0x10f786d0 vfio_pci_core_register_device -EXPORT_SYMBOL_GPL vmlinux 0x10fbb69b irq_domain_free_irqs_parent -EXPORT_SYMBOL_GPL vmlinux 0x110106c1 cper_severity_to_aer -EXPORT_SYMBOL_GPL vmlinux 0x11043a52 ata_noop_qc_prep -EXPORT_SYMBOL_GPL vmlinux 0x1109d847 xfrm_audit_state_replay -EXPORT_SYMBOL_GPL vmlinux 0x1127816d __tracepoint_extlog_mem_event -EXPORT_SYMBOL_GPL vmlinux 0x1139672b iommu_aux_detach_device -EXPORT_SYMBOL_GPL vmlinux 0x115130a6 edac_pci_alloc_ctl_info -EXPORT_SYMBOL_GPL vmlinux 0x1156d2d4 badblocks_clear -EXPORT_SYMBOL_GPL vmlinux 0x116180b5 hv_current_partition_id -EXPORT_SYMBOL_GPL vmlinux 0x1163467b xhci_dbg_trace -EXPORT_SYMBOL_GPL vmlinux 0x1163c7b8 __class_register -EXPORT_SYMBOL_GPL vmlinux 0x11685040 blkg_conf_finish -EXPORT_SYMBOL_GPL vmlinux 0x116baed7 component_master_add_with_match -EXPORT_SYMBOL_GPL vmlinux 0x116cf7ea ehci_reset -EXPORT_SYMBOL_GPL vmlinux 0x117e88c3 pci_test_config_bits -EXPORT_SYMBOL_GPL vmlinux 0x11876b57 crypto_unregister_shash -EXPORT_SYMBOL_GPL vmlinux 0x11928c97 dmi_kobj -EXPORT_SYMBOL_GPL vmlinux 0x11a2e0ac crypto_dh_key_len -EXPORT_SYMBOL_GPL vmlinux 0x11be9192 skb_clone_tx_timestamp -EXPORT_SYMBOL_GPL vmlinux 0x11bece68 skb_mpls_pop -EXPORT_SYMBOL_GPL vmlinux 0x11c0816e regmap_field_read -EXPORT_SYMBOL_GPL vmlinux 0x11cb0fea phy_pm_runtime_put_sync -EXPORT_SYMBOL_GPL vmlinux 0x11db4d0d crypto_register_instance -EXPORT_SYMBOL_GPL vmlinux 0x11df0e75 devlink_fmsg_binary_pair_nest_start -EXPORT_SYMBOL_GPL vmlinux 0x11e08f96 trace_seq_putmem_hex -EXPORT_SYMBOL_GPL vmlinux 0x11feb445 devm_clk_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0x12189359 __SCT__tp_func_block_unplug -EXPORT_SYMBOL_GPL vmlinux 0x121a7eae key_type_logon -EXPORT_SYMBOL_GPL vmlinux 0x121d958a unregister_die_notifier -EXPORT_SYMBOL_GPL vmlinux 0x122616d7 acpi_pm_wakeup_event -EXPORT_SYMBOL_GPL vmlinux 0x1234e483 get_cpu_iowait_time_us -EXPORT_SYMBOL_GPL vmlinux 0x1234ffa1 cper_estatus_check_header -EXPORT_SYMBOL_GPL vmlinux 0x124e0b6d class_unregister -EXPORT_SYMBOL_GPL vmlinux 0x125a7e3e bpf_prog_alloc -EXPORT_SYMBOL_GPL vmlinux 0x125ddf68 xas_pause -EXPORT_SYMBOL_GPL vmlinux 0x12637650 debugfs_create_regset32 -EXPORT_SYMBOL_GPL vmlinux 0x1268f357 resume_device_irqs -EXPORT_SYMBOL_GPL vmlinux 0x126d3c68 device_get_next_child_node -EXPORT_SYMBOL_GPL vmlinux 0x1271b373 serial8250_tx_chars -EXPORT_SYMBOL_GPL vmlinux 0x127c109b __SCT__tp_func_suspend_resume -EXPORT_SYMBOL_GPL vmlinux 0x129334ae sfp_parse_support -EXPORT_SYMBOL_GPL vmlinux 0x129719d3 __kthread_init_worker -EXPORT_SYMBOL_GPL vmlinux 0x12aab5f0 devm_hwmon_device_register_with_info -EXPORT_SYMBOL_GPL vmlinux 0x12bd050e usb_hcd_pci_remove -EXPORT_SYMBOL_GPL vmlinux 0x12cb0196 blk_update_request -EXPORT_SYMBOL_GPL vmlinux 0x12d3d4f7 uprobe_register -EXPORT_SYMBOL_GPL vmlinux 0x12db3a8b kvm_clock -EXPORT_SYMBOL_GPL vmlinux 0x12e285ec is_uv_system -EXPORT_SYMBOL_GPL vmlinux 0x12ee1173 memory_group_unregister -EXPORT_SYMBOL_GPL vmlinux 0x12f98719 vfio_pci_core_init_device -EXPORT_SYMBOL_GPL vmlinux 0x1318764d acpi_cppc_processor_exit -EXPORT_SYMBOL_GPL vmlinux 0x131a5ed7 regmap_del_irq_chip -EXPORT_SYMBOL_GPL vmlinux 0x131b0e50 fib6_rule_default -EXPORT_SYMBOL_GPL vmlinux 0x131cd101 gpiod_get_array_value -EXPORT_SYMBOL_GPL vmlinux 0x131d763b usb_hcd_unmap_urb_for_dma -EXPORT_SYMBOL_GPL vmlinux 0x131db64a system_long_wq -EXPORT_SYMBOL_GPL vmlinux 0x131dc197 xfrm_state_afinfo_get_rcu -EXPORT_SYMBOL_GPL vmlinux 0x132db141 __SCK__tp_func_rpm_return_int -EXPORT_SYMBOL_GPL vmlinux 0x133969d7 __trace_printk -EXPORT_SYMBOL_GPL vmlinux 0x13438b74 acpi_subsys_restore_early -EXPORT_SYMBOL_GPL vmlinux 0x1345b979 rio_request_outb_dbell -EXPORT_SYMBOL_GPL vmlinux 0x134fdd4d vfio_assign_device_set -EXPORT_SYMBOL_GPL vmlinux 0x1350d492 get_dev_pagemap -EXPORT_SYMBOL_GPL vmlinux 0x136209db power_supply_reg_notifier -EXPORT_SYMBOL_GPL vmlinux 0x13623f55 sdio_retune_release -EXPORT_SYMBOL_GPL vmlinux 0x1367d4c9 regulator_desc_list_voltage_linear_range -EXPORT_SYMBOL_GPL vmlinux 0x136efad6 dax_copy_from_iter -EXPORT_SYMBOL_GPL vmlinux 0x137458c7 inet_csk_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0x1383df4e nvmem_cell_get -EXPORT_SYMBOL_GPL vmlinux 0x138ab69a dev_pm_domain_set -EXPORT_SYMBOL_GPL vmlinux 0x138aff76 gnttab_init -EXPORT_SYMBOL_GPL vmlinux 0x138e0957 dax_write_cache_enabled -EXPORT_SYMBOL_GPL vmlinux 0x13952aa1 blk_mq_flush_busy_ctxs -EXPORT_SYMBOL_GPL vmlinux 0x139ea990 xfer_to_guest_mode_handle_work -EXPORT_SYMBOL_GPL vmlinux 0x13a0aae6 cpufreq_unregister_driver -EXPORT_SYMBOL_GPL vmlinux 0x13a8311e vfio_virqfd_enable -EXPORT_SYMBOL_GPL vmlinux 0x13b1de17 usb_create_shared_hcd -EXPORT_SYMBOL_GPL vmlinux 0x13c99932 rhashtable_walk_enter -EXPORT_SYMBOL_GPL vmlinux 0x13ce87e8 asn1_ber_decoder -EXPORT_SYMBOL_GPL vmlinux 0x13d07d24 pci_restore_msi_state -EXPORT_SYMBOL_GPL vmlinux 0x13dd71cb bpf_prog_create_from_user -EXPORT_SYMBOL_GPL vmlinux 0x13ed8784 sdev_evt_alloc -EXPORT_SYMBOL_GPL vmlinux 0x13ef375a pci_epf_unregister_driver -EXPORT_SYMBOL_GPL vmlinux 0x13fab921 cpuidle_unregister_device -EXPORT_SYMBOL_GPL vmlinux 0x14007a03 noop_backing_dev_info -EXPORT_SYMBOL_GPL vmlinux 0x140185df fwnode_get_name -EXPORT_SYMBOL_GPL vmlinux 0x1403ad09 cpufreq_add_update_util_hook -EXPORT_SYMBOL_GPL vmlinux 0x14147d85 ethnl_cable_test_alloc -EXPORT_SYMBOL_GPL vmlinux 0x141f38bf ktime_get_raw_fast_ns -EXPORT_SYMBOL_GPL vmlinux 0x142ac8ff vp_modern_get_status -EXPORT_SYMBOL_GPL vmlinux 0x14388a5b tcp_cong_avoid_ai -EXPORT_SYMBOL_GPL vmlinux 0x1439b990 dev_pm_opp_get_max_transition_latency -EXPORT_SYMBOL_GPL vmlinux 0x14554b2a get_current_tty -EXPORT_SYMBOL_GPL vmlinux 0x145b2004 thermal_cooling_device_register -EXPORT_SYMBOL_GPL vmlinux 0x145f44b0 iommu_capable -EXPORT_SYMBOL_GPL vmlinux 0x1461fc1b __SCK__tp_func_add_device_to_group -EXPORT_SYMBOL_GPL vmlinux 0x146cc88f bpf_master_redirect_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x14709265 anon_transport_class_unregister -EXPORT_SYMBOL_GPL vmlinux 0x14739c13 pm_schedule_suspend -EXPORT_SYMBOL_GPL vmlinux 0x14773efb devlink_port_params_register -EXPORT_SYMBOL_GPL vmlinux 0x147b6a01 devm_nvdimm_memremap -EXPORT_SYMBOL_GPL vmlinux 0x1483ac76 pci_d3cold_disable -EXPORT_SYMBOL_GPL vmlinux 0x14860e10 tracing_snapshot_cond -EXPORT_SYMBOL_GPL vmlinux 0x148c8ea8 devm_clk_get_enabled -EXPORT_SYMBOL_GPL vmlinux 0x148c9cf3 devm_gpio_request_one -EXPORT_SYMBOL_GPL vmlinux 0x149b640f set_online_page_callback -EXPORT_SYMBOL_GPL vmlinux 0x14c1856e irq_get_irq_data -EXPORT_SYMBOL_GPL vmlinux 0x14c4da58 hwmon_device_register_with_info -EXPORT_SYMBOL_GPL vmlinux 0x14ccbb76 __efivar_entry_get -EXPORT_SYMBOL_GPL vmlinux 0x14d01690 clk_mux_index_to_val -EXPORT_SYMBOL_GPL vmlinux 0x14e7a726 dm_internal_resume_fast -EXPORT_SYMBOL_GPL vmlinux 0x14ec4fdb evtchn_put -EXPORT_SYMBOL_GPL vmlinux 0x14ef2d2a get_task_mm -EXPORT_SYMBOL_GPL vmlinux 0x15063dbf synth_event_trace -EXPORT_SYMBOL_GPL vmlinux 0x1511412b usb_enable_intel_xhci_ports -EXPORT_SYMBOL_GPL vmlinux 0x1519b4a6 percpu_free_rwsem -EXPORT_SYMBOL_GPL vmlinux 0x152211c0 pm_clk_runtime_resume -EXPORT_SYMBOL_GPL vmlinux 0x152f8373 pci_epf_unbind -EXPORT_SYMBOL_GPL vmlinux 0x153add0a __rio_local_write_config_32 -EXPORT_SYMBOL_GPL vmlinux 0x153b60a6 klist_del -EXPORT_SYMBOL_GPL vmlinux 0x154196df dev_pm_genpd_resume -EXPORT_SYMBOL_GPL vmlinux 0x1542c217 fwnode_get_phy_node -EXPORT_SYMBOL_GPL vmlinux 0x15433fa2 regmap_raw_write_async -EXPORT_SYMBOL_GPL vmlinux 0x154f10d2 badblocks_show -EXPORT_SYMBOL_GPL vmlinux 0x15510a89 devlink_fmsg_binary_put -EXPORT_SYMBOL_GPL vmlinux 0x155e7855 usb_hub_find_child -EXPORT_SYMBOL_GPL vmlinux 0x1562c117 ethnl_cable_test_fault_length -EXPORT_SYMBOL_GPL vmlinux 0x156a81a5 md_kick_rdev_from_array -EXPORT_SYMBOL_GPL vmlinux 0x156d3ba2 pm_runtime_irq_safe -EXPORT_SYMBOL_GPL vmlinux 0x156e8afe __SCT__tp_func_fib6_table_lookup -EXPORT_SYMBOL_GPL vmlinux 0x1574586a fsnotify_put_group -EXPORT_SYMBOL_GPL vmlinux 0x157c8008 usb_put_dev -EXPORT_SYMBOL_GPL vmlinux 0x1582c4fe crypto_register_alg -EXPORT_SYMBOL_GPL vmlinux 0x158afc86 sysfs_remove_bin_file -EXPORT_SYMBOL_GPL vmlinux 0x15ade1cc filter_irq_stacks -EXPORT_SYMBOL_GPL vmlinux 0x15bd092a serial8250_do_get_mctrl -EXPORT_SYMBOL_GPL vmlinux 0x15c8c8bd __spi_register_driver -EXPORT_SYMBOL_GPL vmlinux 0x15c977f3 regulator_get_voltage_sel_pickable_regmap -EXPORT_SYMBOL_GPL vmlinux 0x15ca5892 devm_phy_optional_get -EXPORT_SYMBOL_GPL vmlinux 0x15cc30f1 cc_platform_has -EXPORT_SYMBOL_GPL vmlinux 0x15d1e425 fixed_phy_set_link_update -EXPORT_SYMBOL_GPL vmlinux 0x15ea2648 hwpoison_filter_flags_mask -EXPORT_SYMBOL_GPL vmlinux 0x15f08bbc crypto_alloc_ahash -EXPORT_SYMBOL_GPL vmlinux 0x15f70311 __rt_mutex_init -EXPORT_SYMBOL_GPL vmlinux 0x15f963e5 bus_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x16064441 pinctrl_find_and_add_gpio_range -EXPORT_SYMBOL_GPL vmlinux 0x161771e5 scsi_nl_sock -EXPORT_SYMBOL_GPL vmlinux 0x161acf58 task_user_regset_view -EXPORT_SYMBOL_GPL vmlinux 0x16422a6e xdp_reg_mem_model -EXPORT_SYMBOL_GPL vmlinux 0x1646d73e __usb_create_hcd -EXPORT_SYMBOL_GPL vmlinux 0x16516798 osc_pc_lpi_support_confirmed -EXPORT_SYMBOL_GPL vmlinux 0x165e6de0 dev_coredumpm -EXPORT_SYMBOL_GPL vmlinux 0x166b1c83 sysfs_create_link_nowarn -EXPORT_SYMBOL_GPL vmlinux 0x166db1b5 sched_clock_idle_wakeup_event -EXPORT_SYMBOL_GPL vmlinux 0x167755c1 __traceiter_add_device_to_group -EXPORT_SYMBOL_GPL vmlinux 0x167d4627 thermal_remove_hwmon_sysfs -EXPORT_SYMBOL_GPL vmlinux 0x167d7113 acpi_bus_register_early_device -EXPORT_SYMBOL_GPL vmlinux 0x1687ec20 tty_get_frame_size -EXPORT_SYMBOL_GPL vmlinux 0x168df8dc vfs_lock_file -EXPORT_SYMBOL_GPL vmlinux 0x1690b503 usb_role_switch_get_drvdata -EXPORT_SYMBOL_GPL vmlinux 0x1691da3b cgroup_get_from_id -EXPORT_SYMBOL_GPL vmlinux 0x1698792c gen_pool_get -EXPORT_SYMBOL_GPL vmlinux 0x16a28313 idr_alloc -EXPORT_SYMBOL_GPL vmlinux 0x16a2ea2c edac_mc_handle_error -EXPORT_SYMBOL_GPL vmlinux 0x16a67094 ipv4_sk_redirect -EXPORT_SYMBOL_GPL vmlinux 0x16abd1dc __srcu_read_unlock -EXPORT_SYMBOL_GPL vmlinux 0x16aedeea switchdev_handle_port_obj_add -EXPORT_SYMBOL_GPL vmlinux 0x16b152b8 filemap_range_needs_writeback -EXPORT_SYMBOL_GPL vmlinux 0x16bc0455 pin_user_pages_fast_only -EXPORT_SYMBOL_GPL vmlinux 0x16c8ba08 __mdiobus_modify_changed -EXPORT_SYMBOL_GPL vmlinux 0x16da1f88 devlink_fmsg_u32_put -EXPORT_SYMBOL_GPL vmlinux 0x16dd0ca8 pm_generic_resume_noirq -EXPORT_SYMBOL_GPL vmlinux 0x16dfbf36 add_interrupt_randomness -EXPORT_SYMBOL_GPL vmlinux 0x16f15139 bind_evtchn_to_irq -EXPORT_SYMBOL_GPL vmlinux 0x16f3585c devm_create_dev_dax -EXPORT_SYMBOL_GPL vmlinux 0x17019b91 fwnode_property_get_reference_args -EXPORT_SYMBOL_GPL vmlinux 0x170cc36c put_timespec64 -EXPORT_SYMBOL_GPL vmlinux 0x1716559d show_class_attr_string -EXPORT_SYMBOL_GPL vmlinux 0x1719dd40 devm_bitmap_zalloc -EXPORT_SYMBOL_GPL vmlinux 0x17361e60 da9052_adc_read_temp -EXPORT_SYMBOL_GPL vmlinux 0x173edbbc xfrm_audit_state_notfound -EXPORT_SYMBOL_GPL vmlinux 0x1741ddee trace_seq_puts -EXPORT_SYMBOL_GPL vmlinux 0x17460618 fuse_dev_operations -EXPORT_SYMBOL_GPL vmlinux 0x17480d56 x509_free_certificate -EXPORT_SYMBOL_GPL vmlinux 0x174c6274 ring_buffer_time_stamp -EXPORT_SYMBOL_GPL vmlinux 0x175380d1 __inet_lookup_listener -EXPORT_SYMBOL_GPL vmlinux 0x17576546 crypto_alg_sem -EXPORT_SYMBOL_GPL vmlinux 0x176031a7 devlink_fmsg_string_put -EXPORT_SYMBOL_GPL vmlinux 0x17614bf3 apei_resources_sub -EXPORT_SYMBOL_GPL vmlinux 0x17641d2b blk_queue_max_discard_segments -EXPORT_SYMBOL_GPL vmlinux 0x176adf76 xenmem_reservation_decrease -EXPORT_SYMBOL_GPL vmlinux 0x177157e7 pm_generic_freeze -EXPORT_SYMBOL_GPL vmlinux 0x177c338d twl_get_version -EXPORT_SYMBOL_GPL vmlinux 0x1789d09e __devm_clk_hw_register_mux -EXPORT_SYMBOL_GPL vmlinux 0x17a5e547 device_remove_file_self -EXPORT_SYMBOL_GPL vmlinux 0x17a61a8e ata_sff_pause -EXPORT_SYMBOL_GPL vmlinux 0x17ad7197 ata_cable_unknown -EXPORT_SYMBOL_GPL vmlinux 0x17adba42 is_nvdimm_sync -EXPORT_SYMBOL_GPL vmlinux 0x17add64b gdt_page -EXPORT_SYMBOL_GPL vmlinux 0x17b4adce __clk_hw_register_fixed_rate -EXPORT_SYMBOL_GPL vmlinux 0x17b4f97b __traceiter_block_rq_remap -EXPORT_SYMBOL_GPL vmlinux 0x17bc0d52 device_add_properties -EXPORT_SYMBOL_GPL vmlinux 0x17ccc40f pci_sriov_configure_simple -EXPORT_SYMBOL_GPL vmlinux 0x17e01f11 erst_clear -EXPORT_SYMBOL_GPL vmlinux 0x17ec7caf relay_file_operations -EXPORT_SYMBOL_GPL vmlinux 0x17eff10b uart_console_device -EXPORT_SYMBOL_GPL vmlinux 0x17fa118e dev_nit_active -EXPORT_SYMBOL_GPL vmlinux 0x18008c59 ring_buffer_resize -EXPORT_SYMBOL_GPL vmlinux 0x180520d9 pm_generic_suspend_noirq -EXPORT_SYMBOL_GPL vmlinux 0x180d8db0 __clk_hw_register_divider -EXPORT_SYMBOL_GPL vmlinux 0x180dee1e rhashtable_insert_slow -EXPORT_SYMBOL_GPL vmlinux 0x181d4402 mdiobus_modify -EXPORT_SYMBOL_GPL vmlinux 0x18238524 pci_disable_sriov -EXPORT_SYMBOL_GPL vmlinux 0x182501c1 alloc_page_buffers -EXPORT_SYMBOL_GPL vmlinux 0x1832e260 clk_hw_set_rate_range -EXPORT_SYMBOL_GPL vmlinux 0x183fa94a ip6_route_lookup -EXPORT_SYMBOL_GPL vmlinux 0x18428692 __cookie_v6_init_sequence -EXPORT_SYMBOL_GPL vmlinux 0x18582826 amd_pmu_disable_virt -EXPORT_SYMBOL_GPL vmlinux 0x18615d35 efivar_supports_writes -EXPORT_SYMBOL_GPL vmlinux 0x1868c587 serdev_device_remove -EXPORT_SYMBOL_GPL vmlinux 0x18a8d037 xas_store -EXPORT_SYMBOL_GPL vmlinux 0x18b2790f uv_bios_obj_count -EXPORT_SYMBOL_GPL vmlinux 0x18b98a04 crypto_alg_mod_lookup -EXPORT_SYMBOL_GPL vmlinux 0x18c1743d dev_pm_opp_get_opp_count -EXPORT_SYMBOL_GPL vmlinux 0x18c7b8b0 __SCK__tp_func_sched_update_nr_running_tp -EXPORT_SYMBOL_GPL vmlinux 0x18cd78ff __tracepoint_unmap -EXPORT_SYMBOL_GPL vmlinux 0x18cdc99d pci_epc_multi_mem_init -EXPORT_SYMBOL_GPL vmlinux 0x18dacc74 extcon_find_edev_by_node -EXPORT_SYMBOL_GPL vmlinux 0x18e4f8aa swphy_read_reg -EXPORT_SYMBOL_GPL vmlinux 0x18fb2caf cpus_read_unlock -EXPORT_SYMBOL_GPL vmlinux 0x18fcd067 __traceiter_detach_device_from_domain -EXPORT_SYMBOL_GPL vmlinux 0x19047786 dw_pcie_ep_init_complete -EXPORT_SYMBOL_GPL vmlinux 0x1913b57a kcpustat_cpu_fetch -EXPORT_SYMBOL_GPL vmlinux 0x1924aa3b devm_nvmem_device_get -EXPORT_SYMBOL_GPL vmlinux 0x193dfdf6 klp_get_prev_state -EXPORT_SYMBOL_GPL vmlinux 0x194d4b36 serdev_device_write_wakeup -EXPORT_SYMBOL_GPL vmlinux 0x194fd45d crypto_stats_aead_encrypt -EXPORT_SYMBOL_GPL vmlinux 0x195e6498 net_ns_get_ownership -EXPORT_SYMBOL_GPL vmlinux 0x196614ce hw_breakpoint_restore -EXPORT_SYMBOL_GPL vmlinux 0x1967dfcb pci_hp_create_module_link -EXPORT_SYMBOL_GPL vmlinux 0x197d6c82 phy_led_triggers_register -EXPORT_SYMBOL_GPL vmlinux 0x198eaf94 find_extend_vma -EXPORT_SYMBOL_GPL vmlinux 0x19a1c4f5 register_virtio_driver -EXPORT_SYMBOL_GPL vmlinux 0x19a304ba usb_disabled -EXPORT_SYMBOL_GPL vmlinux 0x19aef42b sysfs_change_owner -EXPORT_SYMBOL_GPL vmlinux 0x19ba4568 usb_bus_idr_lock -EXPORT_SYMBOL_GPL vmlinux 0x19d50524 regulator_register_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0x19e03d0a file_ra_state_init -EXPORT_SYMBOL_GPL vmlinux 0x19e0ae50 __SCT__tp_func_br_fdb_external_learn_add -EXPORT_SYMBOL_GPL vmlinux 0x19e81304 btree_alloc -EXPORT_SYMBOL_GPL vmlinux 0x19edd064 blkg_rwstat_exit -EXPORT_SYMBOL_GPL vmlinux 0x19f55f5c input_ff_erase -EXPORT_SYMBOL_GPL vmlinux 0x1a0b91f2 device_property_match_string -EXPORT_SYMBOL_GPL vmlinux 0x1a0f7199 crypto_unregister_algs -EXPORT_SYMBOL_GPL vmlinux 0x1a10c32b crypto_ft_tab -EXPORT_SYMBOL_GPL vmlinux 0x1a146ec3 usb_ep_type_string -EXPORT_SYMBOL_GPL vmlinux 0x1a282af6 __SCK__tp_func_napi_poll -EXPORT_SYMBOL_GPL vmlinux 0x1a2c4f87 __tracepoint_neigh_cleanup_and_release -EXPORT_SYMBOL_GPL vmlinux 0x1a38b1d9 __irq_domain_alloc_fwnode -EXPORT_SYMBOL_GPL vmlinux 0x1a4596e9 clockevents_register_device -EXPORT_SYMBOL_GPL vmlinux 0x1a4cb3b8 rio_request_mport_dma -EXPORT_SYMBOL_GPL vmlinux 0x1a509a1c sysfs_unbreak_active_protection -EXPORT_SYMBOL_GPL vmlinux 0x1a5b2a8b shash_ahash_finup -EXPORT_SYMBOL_GPL vmlinux 0x1a6bf28f fsnotify_get_cookie -EXPORT_SYMBOL_GPL vmlinux 0x1a8a671d dma_release_channel -EXPORT_SYMBOL_GPL vmlinux 0x1aa9cef0 sdio_claim_host -EXPORT_SYMBOL_GPL vmlinux 0x1aad55b9 ata_sff_softreset -EXPORT_SYMBOL_GPL vmlinux 0x1ab50382 acpi_subsys_runtime_suspend -EXPORT_SYMBOL_GPL vmlinux 0x1ac5b622 dma_buf_unmap_attachment -EXPORT_SYMBOL_GPL vmlinux 0x1acd18c8 cpuset_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0x1acd5238 pci_pasid_features -EXPORT_SYMBOL_GPL vmlinux 0x1ae9069e sched_trace_cfs_rq_path -EXPORT_SYMBOL_GPL vmlinux 0x1aea6782 irq_setup_generic_chip -EXPORT_SYMBOL_GPL vmlinux 0x1af267f8 int_pow -EXPORT_SYMBOL_GPL vmlinux 0x1afc3a0c gpiochip_line_is_persistent -EXPORT_SYMBOL_GPL vmlinux 0x1aff3d55 mce_register_injector_chain -EXPORT_SYMBOL_GPL vmlinux 0x1b097a39 thermal_zone_get_offset -EXPORT_SYMBOL_GPL vmlinux 0x1b4e8516 trace_event_buffer_lock_reserve -EXPORT_SYMBOL_GPL vmlinux 0x1b5059ce ata_id_xfermask -EXPORT_SYMBOL_GPL vmlinux 0x1b5f4377 trace_seq_putc -EXPORT_SYMBOL_GPL vmlinux 0x1b676199 usb_clear_halt -EXPORT_SYMBOL_GPL vmlinux 0x1b76f35e pciserial_init_ports -EXPORT_SYMBOL_GPL vmlinux 0x1b81c6fc spi_add_device -EXPORT_SYMBOL_GPL vmlinux 0x1b8822d8 pinctrl_gpio_direction_output -EXPORT_SYMBOL_GPL vmlinux 0x1b8994b6 shash_ahash_update -EXPORT_SYMBOL_GPL vmlinux 0x1b914eb7 cpu_subsys -EXPORT_SYMBOL_GPL vmlinux 0x1b92e41d inet_putpeer -EXPORT_SYMBOL_GPL vmlinux 0x1b99ee83 md_bitmap_copy_from_slot -EXPORT_SYMBOL_GPL vmlinux 0x1b9cbe87 sysfs_break_active_protection -EXPORT_SYMBOL_GPL vmlinux 0x1ba237b0 default_cpu_present_to_apicid -EXPORT_SYMBOL_GPL vmlinux 0x1ba358b1 sched_trace_rq_avg_irq -EXPORT_SYMBOL_GPL vmlinux 0x1bac810d usb_put_hcd -EXPORT_SYMBOL_GPL vmlinux 0x1bc06fd1 sched_trace_cfs_rq_cpu -EXPORT_SYMBOL_GPL vmlinux 0x1bc0df4f devm_phy_put -EXPORT_SYMBOL_GPL vmlinux 0x1bc5eebe pinctrl_gpio_direction_input -EXPORT_SYMBOL_GPL vmlinux 0x1bd88a33 security_kernel_read_file -EXPORT_SYMBOL_GPL vmlinux 0x1be12310 gen_pool_avail -EXPORT_SYMBOL_GPL vmlinux 0x1bee4974 sg_alloc_table_chained -EXPORT_SYMBOL_GPL vmlinux 0x1bf27ae3 pci_epc_set_msi -EXPORT_SYMBOL_GPL vmlinux 0x1bfb5f1c sdio_writesb -EXPORT_SYMBOL_GPL vmlinux 0x1c0180a5 crypto_unregister_templates -EXPORT_SYMBOL_GPL vmlinux 0x1c0af9a5 inet_ehash_locks_alloc -EXPORT_SYMBOL_GPL vmlinux 0x1c1e6103 gpiod_set_raw_value -EXPORT_SYMBOL_GPL vmlinux 0x1c253600 debugfs_file_put -EXPORT_SYMBOL_GPL vmlinux 0x1c2c2163 edac_pci_release_generic_ctl -EXPORT_SYMBOL_GPL vmlinux 0x1c33aded anon_inode_getfile -EXPORT_SYMBOL_GPL vmlinux 0x1c373261 led_classdev_register_ext -EXPORT_SYMBOL_GPL vmlinux 0x1c4c2918 debugfs_remove -EXPORT_SYMBOL_GPL vmlinux 0x1c5541bd cpufreq_boost_enabled -EXPORT_SYMBOL_GPL vmlinux 0x1c591f38 led_set_brightness_nopm -EXPORT_SYMBOL_GPL vmlinux 0x1c5b1f28 irq_free_descs -EXPORT_SYMBOL_GPL vmlinux 0x1c5ff742 clk_get_phase -EXPORT_SYMBOL_GPL vmlinux 0x1c764526 __SCT__tp_func_rpm_suspend -EXPORT_SYMBOL_GPL vmlinux 0x1c80d27d btree_geo128 -EXPORT_SYMBOL_GPL vmlinux 0x1c87a811 __round_jiffies_up -EXPORT_SYMBOL_GPL vmlinux 0x1c9f0ae6 phy_optional_get -EXPORT_SYMBOL_GPL vmlinux 0x1ca4f3d6 rio_lock_device -EXPORT_SYMBOL_GPL vmlinux 0x1cae01c8 ata_sas_port_start -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 0x1cc9decf usb_get_dr_mode -EXPORT_SYMBOL_GPL vmlinux 0x1cd1c851 clk_hw_is_prepared -EXPORT_SYMBOL_GPL vmlinux 0x1cd68f59 usb_add_hcd -EXPORT_SYMBOL_GPL vmlinux 0x1cde2a51 dm_disk -EXPORT_SYMBOL_GPL vmlinux 0x1ce330a7 xenbus_alloc_evtchn -EXPORT_SYMBOL_GPL vmlinux 0x1ce54064 aead_register_instance -EXPORT_SYMBOL_GPL vmlinux 0x1ceea146 rio_mport_write_config_32 -EXPORT_SYMBOL_GPL vmlinux 0x1cf130a5 usb_match_id -EXPORT_SYMBOL_GPL vmlinux 0x1cfe4101 clkdev_hw_create -EXPORT_SYMBOL_GPL vmlinux 0x1cfe955c sfp_bus_add_upstream -EXPORT_SYMBOL_GPL vmlinux 0x1d218192 blk_bio_list_merge -EXPORT_SYMBOL_GPL vmlinux 0x1d222ced irq_get_irqchip_state -EXPORT_SYMBOL_GPL vmlinux 0x1d2f502a modify_user_hw_breakpoint -EXPORT_SYMBOL_GPL vmlinux 0x1d387885 rio_unlock_device -EXPORT_SYMBOL_GPL vmlinux 0x1d40770f __cpufreq_driver_target -EXPORT_SYMBOL_GPL vmlinux 0x1d5ee509 register_net_sysctl -EXPORT_SYMBOL_GPL vmlinux 0x1d5ff685 __platform_register_drivers -EXPORT_SYMBOL_GPL vmlinux 0x1d77b0f8 unix_socket_table -EXPORT_SYMBOL_GPL vmlinux 0x1d828a99 blocking_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0x1d8ba916 get_pid_task -EXPORT_SYMBOL_GPL vmlinux 0x1d8c29e9 xas_get_mark -EXPORT_SYMBOL_GPL vmlinux 0x1d93346d scsi_bus_type -EXPORT_SYMBOL_GPL vmlinux 0x1d94a218 dmi_memdev_handle -EXPORT_SYMBOL_GPL vmlinux 0x1da3ef61 irq_domain_create_hierarchy -EXPORT_SYMBOL_GPL vmlinux 0x1da42193 register_pernet_device -EXPORT_SYMBOL_GPL vmlinux 0x1da7230d attribute_container_register -EXPORT_SYMBOL_GPL vmlinux 0x1da954f0 platform_add_devices -EXPORT_SYMBOL_GPL vmlinux 0x1daa7a3e ata_pci_remove_one -EXPORT_SYMBOL_GPL vmlinux 0x1dac8009 alloc_dax -EXPORT_SYMBOL_GPL vmlinux 0x1dc7e35d devlink_rate_leaf_create -EXPORT_SYMBOL_GPL vmlinux 0x1dd4e604 usb_disable_lpm -EXPORT_SYMBOL_GPL vmlinux 0x1ddd29fc __SCK__tp_func_xdp_bulk_tx -EXPORT_SYMBOL_GPL vmlinux 0x1de4daef rtnl_link_register -EXPORT_SYMBOL_GPL vmlinux 0x1de8e265 devlink_params_unregister -EXPORT_SYMBOL_GPL vmlinux 0x1dfa5dbd mpi_invm -EXPORT_SYMBOL_GPL vmlinux 0x1dffd722 open_related_ns -EXPORT_SYMBOL_GPL vmlinux 0x1e0670c6 reset_control_release -EXPORT_SYMBOL_GPL vmlinux 0x1e08063f get_cpu_device -EXPORT_SYMBOL_GPL vmlinux 0x1e167d5a crypto_type_has_alg -EXPORT_SYMBOL_GPL vmlinux 0x1e1da146 devm_request_free_mem_region -EXPORT_SYMBOL_GPL vmlinux 0x1e31335a sbitmap_bitmap_show -EXPORT_SYMBOL_GPL vmlinux 0x1e318169 __SCK__tp_func_tcp_bad_csum -EXPORT_SYMBOL_GPL vmlinux 0x1e356bfe pm_wakeup_ws_event -EXPORT_SYMBOL_GPL vmlinux 0x1e424d61 user_preparse -EXPORT_SYMBOL_GPL vmlinux 0x1e4e98c0 acpi_dev_filter_resource_type -EXPORT_SYMBOL_GPL vmlinux 0x1e524cc9 iommu_set_pgtable_quirks -EXPORT_SYMBOL_GPL vmlinux 0x1e572cbf battery_hook_unregister -EXPORT_SYMBOL_GPL vmlinux 0x1e5a5f22 sn_partition_id -EXPORT_SYMBOL_GPL vmlinux 0x1e60cb95 wm831x_device_shutdown -EXPORT_SYMBOL_GPL vmlinux 0x1e76415a __SCK__tp_func_arm_event -EXPORT_SYMBOL_GPL vmlinux 0x1e7bbcb3 kernel_restart -EXPORT_SYMBOL_GPL vmlinux 0x1e8345e9 crypto_grab_spawn -EXPORT_SYMBOL_GPL vmlinux 0x1e8caf2d adp5520_read -EXPORT_SYMBOL_GPL vmlinux 0x1e8fac8e wireless_nlevent_flush -EXPORT_SYMBOL_GPL vmlinux 0x1e912415 uv_bios_get_heapsize -EXPORT_SYMBOL_GPL vmlinux 0x1e9c590a usb_find_common_endpoints_reverse -EXPORT_SYMBOL_GPL vmlinux 0x1ea11ffe device_set_node -EXPORT_SYMBOL_GPL vmlinux 0x1eb8e97a fb_bl_default_curve -EXPORT_SYMBOL_GPL vmlinux 0x1eb9516e round_jiffies_relative -EXPORT_SYMBOL_GPL vmlinux 0x1ebaf72c ata_sff_tf_load -EXPORT_SYMBOL_GPL vmlinux 0x1ebf6c2a pci_power_names -EXPORT_SYMBOL_GPL vmlinux 0x1ed4d2eb percpu_ref_kill_and_confirm -EXPORT_SYMBOL_GPL vmlinux 0x1ef410cd extcon_register_notifier_all -EXPORT_SYMBOL_GPL vmlinux 0x1f012939 devm_gpio_free -EXPORT_SYMBOL_GPL vmlinux 0x1f0cb5bf pm_power_off_prepare -EXPORT_SYMBOL_GPL vmlinux 0x1f1642ab set_task_ioprio -EXPORT_SYMBOL_GPL vmlinux 0x1f258d56 fscrypt_set_bio_crypt_ctx -EXPORT_SYMBOL_GPL vmlinux 0x1f38a4f6 mpi_set_highbit -EXPORT_SYMBOL_GPL vmlinux 0x1f449588 mctrl_gpio_disable_ms -EXPORT_SYMBOL_GPL vmlinux 0x1f470b14 ata_dev_next -EXPORT_SYMBOL_GPL vmlinux 0x1f563160 bpf_offload_dev_priv -EXPORT_SYMBOL_GPL vmlinux 0x1f57b781 badrange_init -EXPORT_SYMBOL_GPL vmlinux 0x1f5ece97 cond_wakeup_cpu0 -EXPORT_SYMBOL_GPL vmlinux 0x1f6fa03d cpufreq_freq_transition_begin -EXPORT_SYMBOL_GPL vmlinux 0x1f7093f4 __tracepoint_devlink_hwmsg -EXPORT_SYMBOL_GPL vmlinux 0x1f7230bc __vring_new_virtqueue -EXPORT_SYMBOL_GPL vmlinux 0x1f73dc7f simple_attr_open -EXPORT_SYMBOL_GPL vmlinux 0x1f75bf37 pin_user_pages_fast -EXPORT_SYMBOL_GPL vmlinux 0x1f80f771 watchdog_init_timeout -EXPORT_SYMBOL_GPL vmlinux 0x1f8544b8 panic_timeout -EXPORT_SYMBOL_GPL vmlinux 0x1fa1d95c sha256_zero_message_hash -EXPORT_SYMBOL_GPL vmlinux 0x1fb70eb9 gnttab_end_foreign_transfer_ref -EXPORT_SYMBOL_GPL vmlinux 0x1fca8b78 ata_host_resume -EXPORT_SYMBOL_GPL vmlinux 0x1fd9520d gpiod_get_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0x1fdc6f4e xdp_master_redirect -EXPORT_SYMBOL_GPL vmlinux 0x1fe6e504 gpiod_add_hogs -EXPORT_SYMBOL_GPL vmlinux 0x1fef0ec4 crypto_stats_akcipher_sign -EXPORT_SYMBOL_GPL vmlinux 0x1ff4c358 ipv6_dup_options -EXPORT_SYMBOL_GPL vmlinux 0x2001ef3b tps6586x_set_bits -EXPORT_SYMBOL_GPL vmlinux 0x2009e400 devlink_info_board_serial_number_put -EXPORT_SYMBOL_GPL vmlinux 0x2019637b pingv6_ops -EXPORT_SYMBOL_GPL vmlinux 0x2026eb60 device_match_any -EXPORT_SYMBOL_GPL vmlinux 0x2029f068 irq_setup_alt_chip -EXPORT_SYMBOL_GPL vmlinux 0x202d4ed6 nvmem_cell_write -EXPORT_SYMBOL_GPL vmlinux 0x2039d0b7 clk_register_divider_table -EXPORT_SYMBOL_GPL vmlinux 0x204ed26c perf_event_disable -EXPORT_SYMBOL_GPL vmlinux 0x204f2c5c gnttab_free_grant_reference -EXPORT_SYMBOL_GPL vmlinux 0x20619177 fpu_alloc_guest_fpstate -EXPORT_SYMBOL_GPL vmlinux 0x206644f7 blk_freeze_queue_start -EXPORT_SYMBOL_GPL vmlinux 0x206afbea led_trigger_rename_static -EXPORT_SYMBOL_GPL vmlinux 0x20723d3e regcache_mark_dirty -EXPORT_SYMBOL_GPL vmlinux 0x207ce5c2 dm_suspended -EXPORT_SYMBOL_GPL vmlinux 0x20835a9f __xdp_release_frame -EXPORT_SYMBOL_GPL vmlinux 0x2087d8dc __fput_sync -EXPORT_SYMBOL_GPL vmlinux 0x20899467 hv_stimer0_isr -EXPORT_SYMBOL_GPL vmlinux 0x208c5877 securityfs_create_symlink -EXPORT_SYMBOL_GPL vmlinux 0x20ab2529 idr_find -EXPORT_SYMBOL_GPL vmlinux 0x20adb692 pm_runtime_no_callbacks -EXPORT_SYMBOL_GPL vmlinux 0x20aeca33 regcache_cache_bypass -EXPORT_SYMBOL_GPL vmlinux 0x20b1448b devlink_port_type_eth_set -EXPORT_SYMBOL_GPL vmlinux 0x20b53d07 ata_dev_pair -EXPORT_SYMBOL_GPL vmlinux 0x20b9c00e unregister_hw_breakpoint -EXPORT_SYMBOL_GPL vmlinux 0x20bf7280 serial8250_modem_status -EXPORT_SYMBOL_GPL vmlinux 0x20c08b76 led_trigger_register_simple -EXPORT_SYMBOL_GPL vmlinux 0x20c2653a vfio_pci_core_enable -EXPORT_SYMBOL_GPL vmlinux 0x20c54dba crypto_unregister_skciphers -EXPORT_SYMBOL_GPL vmlinux 0x20d0e0e6 of_icc_get -EXPORT_SYMBOL_GPL vmlinux 0x20eaec82 fwnode_graph_get_next_endpoint -EXPORT_SYMBOL_GPL vmlinux 0x20fc44ac serdev_acpi_get_uart_resource -EXPORT_SYMBOL_GPL vmlinux 0x210248ef blk_ksm_init_passthrough -EXPORT_SYMBOL_GPL vmlinux 0x210503ba ima_inode_hash -EXPORT_SYMBOL_GPL vmlinux 0x21090fd0 __efivar_entry_delete -EXPORT_SYMBOL_GPL vmlinux 0x211ad88a fsverity_ioctl_measure -EXPORT_SYMBOL_GPL vmlinux 0x212aafb2 fscrypt_ioctl_remove_key_all_users -EXPORT_SYMBOL_GPL vmlinux 0x212cf490 skcipher_alloc_instance_simple -EXPORT_SYMBOL_GPL vmlinux 0x214a5ee2 __udp4_lib_lookup -EXPORT_SYMBOL_GPL vmlinux 0x214dc6df sk_psock_msg_verdict -EXPORT_SYMBOL_GPL vmlinux 0x21569627 usb_queue_reset_device -EXPORT_SYMBOL_GPL vmlinux 0x216de4e1 rcu_get_gp_kthreads_prio -EXPORT_SYMBOL_GPL vmlinux 0x2170951b md_account_bio -EXPORT_SYMBOL_GPL vmlinux 0x2176e42a hwpoison_filter_memcg -EXPORT_SYMBOL_GPL vmlinux 0x2179d5ac rht_bucket_nested_insert -EXPORT_SYMBOL_GPL vmlinux 0x2184d081 iopf_queue_remove_device -EXPORT_SYMBOL_GPL vmlinux 0x218a71d0 fuse_dev_fiq_ops -EXPORT_SYMBOL_GPL vmlinux 0x218d5ecd devlink_flash_update_status_notify -EXPORT_SYMBOL_GPL vmlinux 0x218eb424 __bio_try_merge_page -EXPORT_SYMBOL_GPL vmlinux 0x219e4cf4 devlink_alloc_ns -EXPORT_SYMBOL_GPL vmlinux 0x21a2eaef hwspin_lock_request -EXPORT_SYMBOL_GPL vmlinux 0x21a563da clk_get_accuracy -EXPORT_SYMBOL_GPL vmlinux 0x21ac8b77 iommu_group_get_by_id -EXPORT_SYMBOL_GPL vmlinux 0x21ad9211 dma_free_noncontiguous -EXPORT_SYMBOL_GPL vmlinux 0x21b02b49 regmap_bulk_write -EXPORT_SYMBOL_GPL vmlinux 0x21c3074e usb_pipe_type_check -EXPORT_SYMBOL_GPL vmlinux 0x21c34c8f gnttab_end_foreign_transfer -EXPORT_SYMBOL_GPL vmlinux 0x21cbaec6 sbitmap_queue_resize -EXPORT_SYMBOL_GPL vmlinux 0x21cd536a crypto_put_default_null_skcipher -EXPORT_SYMBOL_GPL vmlinux 0x21ce3ed1 dev_fetch_sw_netstats -EXPORT_SYMBOL_GPL vmlinux 0x21de19ef led_trigger_unregister -EXPORT_SYMBOL_GPL vmlinux 0x21e0abe4 pstore_register -EXPORT_SYMBOL_GPL vmlinux 0x21f21199 dev_pm_opp_enable -EXPORT_SYMBOL_GPL vmlinux 0x21f228a4 dw8250_setup_port -EXPORT_SYMBOL_GPL vmlinux 0x21ffdae7 dev_pm_domain_detach -EXPORT_SYMBOL_GPL vmlinux 0x2211a4c0 blk_op_str -EXPORT_SYMBOL_GPL vmlinux 0x221b7f5c kobject_move -EXPORT_SYMBOL_GPL vmlinux 0x221eab6d scatterwalk_copychunks -EXPORT_SYMBOL_GPL vmlinux 0x224168e5 netlink_strict_get_check -EXPORT_SYMBOL_GPL vmlinux 0x224ba633 i2c_parse_fw_timings -EXPORT_SYMBOL_GPL vmlinux 0x224f51bf nvmem_device_cell_read -EXPORT_SYMBOL_GPL vmlinux 0x2275aa15 dw_pcie_host_deinit -EXPORT_SYMBOL_GPL vmlinux 0x22761b44 free_fib_info -EXPORT_SYMBOL_GPL vmlinux 0x227b3df4 acpi_pci_check_ejectable -EXPORT_SYMBOL_GPL vmlinux 0x227bd849 ata_scsi_dma_need_drain -EXPORT_SYMBOL_GPL vmlinux 0x22b34ae5 sbitmap_queue_init_node -EXPORT_SYMBOL_GPL vmlinux 0x22b8159b usb_for_each_port -EXPORT_SYMBOL_GPL vmlinux 0x22c7c44c cookie_tcp_reqsk_alloc -EXPORT_SYMBOL_GPL vmlinux 0x22cacef6 __fscrypt_prepare_setattr -EXPORT_SYMBOL_GPL vmlinux 0x22d60537 tcf_frag_xmit_count -EXPORT_SYMBOL_GPL vmlinux 0x22d9409b iomap_sort_ioends -EXPORT_SYMBOL_GPL vmlinux 0x22dc205d regulator_bulk_set_supply_names -EXPORT_SYMBOL_GPL vmlinux 0x22e91f44 wakeup_source_create -EXPORT_SYMBOL_GPL vmlinux 0x22f31abb add_hwgenerator_randomness -EXPORT_SYMBOL_GPL vmlinux 0x22f7f83f spi_mem_dirmap_write -EXPORT_SYMBOL_GPL vmlinux 0x22fd08ba cpuacct_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0x230c17fc tcp_unregister_ulp -EXPORT_SYMBOL_GPL vmlinux 0x2316a7b5 uart_set_options -EXPORT_SYMBOL_GPL vmlinux 0x2319d864 vp_modern_queue_vector -EXPORT_SYMBOL_GPL vmlinux 0x231f5227 rio_get_comptag -EXPORT_SYMBOL_GPL vmlinux 0x2334351b __tracepoint_add_device_to_group -EXPORT_SYMBOL_GPL vmlinux 0x2334af49 scsi_get_vpd_page -EXPORT_SYMBOL_GPL vmlinux 0x23412816 rtc_tm_to_ktime -EXPORT_SYMBOL_GPL vmlinux 0x2344ee83 usb_phy_roothub_suspend -EXPORT_SYMBOL_GPL vmlinux 0x2345e800 smpboot_unregister_percpu_thread -EXPORT_SYMBOL_GPL vmlinux 0x234cf416 devlink_fmsg_string_pair_put -EXPORT_SYMBOL_GPL vmlinux 0x235930d7 validate_xmit_skb_list -EXPORT_SYMBOL_GPL vmlinux 0x236844b5 subsys_dev_iter_exit -EXPORT_SYMBOL_GPL vmlinux 0x23864ce7 cpuset_mem_spread_node -EXPORT_SYMBOL_GPL vmlinux 0x2386c0ea __SCT__tp_func_cpu_frequency -EXPORT_SYMBOL_GPL vmlinux 0x2389cfe3 fib4_rule_default -EXPORT_SYMBOL_GPL vmlinux 0x23947103 spi_take_timestamp_pre -EXPORT_SYMBOL_GPL vmlinux 0x2396c7f0 clk_set_parent -EXPORT_SYMBOL_GPL vmlinux 0x2398e2ce regulator_get_exclusive -EXPORT_SYMBOL_GPL vmlinux 0x23b4e0d7 clear_page_rep -EXPORT_SYMBOL_GPL vmlinux 0x23c73985 thermal_zone_device_enable -EXPORT_SYMBOL_GPL vmlinux 0x23c8de4a blk_mq_unfreeze_queue -EXPORT_SYMBOL_GPL vmlinux 0x23ceabae __auxiliary_device_add -EXPORT_SYMBOL_GPL vmlinux 0x23d70ffc debugfs_attr_write_signed -EXPORT_SYMBOL_GPL vmlinux 0x23e41e86 gpiod_direction_output_raw -EXPORT_SYMBOL_GPL vmlinux 0x23ea90fd dma_run_dependencies -EXPORT_SYMBOL_GPL vmlinux 0x23ebc442 mnt_drop_write -EXPORT_SYMBOL_GPL vmlinux 0x23ec967d bpf_trace_run2 -EXPORT_SYMBOL_GPL vmlinux 0x23ed3537 crypto_alloc_rng -EXPORT_SYMBOL_GPL vmlinux 0x23ed65a3 iommu_sva_free_pasid -EXPORT_SYMBOL_GPL vmlinux 0x23f1ce59 alarm_expires_remaining -EXPORT_SYMBOL_GPL vmlinux 0x23f29eab iptunnel_metadata_reply -EXPORT_SYMBOL_GPL vmlinux 0x23f6edf2 ima_file_check -EXPORT_SYMBOL_GPL vmlinux 0x23fd14a9 irq_domain_xlate_onetwocell -EXPORT_SYMBOL_GPL vmlinux 0x240186c6 dev_attr_em_message_type -EXPORT_SYMBOL_GPL vmlinux 0x240b14d3 em_pd_get -EXPORT_SYMBOL_GPL vmlinux 0x2410c338 x86_virt_spec_ctrl -EXPORT_SYMBOL_GPL vmlinux 0x2421097b mpi_const -EXPORT_SYMBOL_GPL vmlinux 0x2429a70d wait_for_stable_page -EXPORT_SYMBOL_GPL vmlinux 0x24332ea9 list_lru_walk_one -EXPORT_SYMBOL_GPL vmlinux 0x243a6242 dm_device_name -EXPORT_SYMBOL_GPL vmlinux 0x243d6397 __SCK__tp_func_rpm_idle -EXPORT_SYMBOL_GPL vmlinux 0x2454f17c ipv4_redirect -EXPORT_SYMBOL_GPL vmlinux 0x245a6e06 pfn_to_online_page -EXPORT_SYMBOL_GPL vmlinux 0x24613226 rio_add_device -EXPORT_SYMBOL_GPL vmlinux 0x2462ad36 regulator_map_voltage_iterate -EXPORT_SYMBOL_GPL vmlinux 0x2469810f __rcu_read_unlock -EXPORT_SYMBOL_GPL vmlinux 0x246fab66 dev_pm_domain_attach_by_name -EXPORT_SYMBOL_GPL vmlinux 0x24709b2f trace_seq_putmem -EXPORT_SYMBOL_GPL vmlinux 0x2484e789 vbin_printf -EXPORT_SYMBOL_GPL vmlinux 0x248bc867 raw_notifier_call_chain_robust -EXPORT_SYMBOL_GPL vmlinux 0x248bf868 sock_diag_put_meminfo -EXPORT_SYMBOL_GPL vmlinux 0x248e1473 kfree_strarray -EXPORT_SYMBOL_GPL vmlinux 0x249ca69a bus_get_kset -EXPORT_SYMBOL_GPL vmlinux 0x249d272d clk_hw_set_parent -EXPORT_SYMBOL_GPL vmlinux 0x249fd67e sk_clone_lock -EXPORT_SYMBOL_GPL vmlinux 0x24ad11db wakeup_sources_read_unlock -EXPORT_SYMBOL_GPL vmlinux 0x24b4a476 __skb_get_hash_symmetric -EXPORT_SYMBOL_GPL vmlinux 0x24c50b92 wm8350_read_auxadc -EXPORT_SYMBOL_GPL vmlinux 0x24c80f8f platform_device_add_resources -EXPORT_SYMBOL_GPL vmlinux 0x24cfd92f switchdev_handle_port_obj_del -EXPORT_SYMBOL_GPL vmlinux 0x24da0093 rcu_inkernel_boot_has_ended -EXPORT_SYMBOL_GPL vmlinux 0x24dabc11 netdev_is_rx_handler_busy -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 0x2504de6b regmap_mmio_attach_clk -EXPORT_SYMBOL_GPL vmlinux 0x25139976 mbox_request_channel_byname -EXPORT_SYMBOL_GPL vmlinux 0x25168884 iommu_device_sysfs_remove -EXPORT_SYMBOL_GPL vmlinux 0x25301bc6 arch_wb_cache_pmem -EXPORT_SYMBOL_GPL vmlinux 0x25379e73 clk_set_min_rate -EXPORT_SYMBOL_GPL vmlinux 0x25490565 dm_path_uevent -EXPORT_SYMBOL_GPL vmlinux 0x25624948 fwnode_graph_get_endpoint_by_id -EXPORT_SYMBOL_GPL vmlinux 0x25691b5b usb_enable_autosuspend -EXPORT_SYMBOL_GPL vmlinux 0x258b0183 edac_mc_alloc -EXPORT_SYMBOL_GPL vmlinux 0x2592fc6c console_printk -EXPORT_SYMBOL_GPL vmlinux 0x259971ea xenbus_grant_ring -EXPORT_SYMBOL_GPL vmlinux 0x25bbfa9a security_kernel_load_data -EXPORT_SYMBOL_GPL vmlinux 0x25cb8d74 blk_mq_start_stopped_hw_queue -EXPORT_SYMBOL_GPL vmlinux 0x25df0a01 dev_pm_qos_hide_latency_limit -EXPORT_SYMBOL_GPL vmlinux 0x25e596a4 ata_wait_after_reset -EXPORT_SYMBOL_GPL vmlinux 0x25f02c87 xen_p2m_addr -EXPORT_SYMBOL_GPL vmlinux 0x25ff48a4 __tracepoint_remove_device_from_group -EXPORT_SYMBOL_GPL vmlinux 0x26029c16 usb_unpoison_anchored_urbs -EXPORT_SYMBOL_GPL vmlinux 0x261c332a nvmem_cell_read_u32 -EXPORT_SYMBOL_GPL vmlinux 0x262012c1 noop_direct_IO -EXPORT_SYMBOL_GPL vmlinux 0x2624d083 devm_fwnode_pwm_get -EXPORT_SYMBOL_GPL vmlinux 0x262a7063 xen_start_info -EXPORT_SYMBOL_GPL vmlinux 0x262e1aed irq_generic_chip_ops -EXPORT_SYMBOL_GPL vmlinux 0x2631981a handle_fasteoi_nmi -EXPORT_SYMBOL_GPL vmlinux 0x2650dd47 mptcp_subflow_init_cookie_req -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 0x266cb744 serial8250_init_port -EXPORT_SYMBOL_GPL vmlinux 0x267df662 smp_call_on_cpu -EXPORT_SYMBOL_GPL vmlinux 0x267e3bb3 mmput -EXPORT_SYMBOL_GPL vmlinux 0x268678bd ata_bmdma_port_start -EXPORT_SYMBOL_GPL vmlinux 0x268fe945 sdio_memcpy_fromio -EXPORT_SYMBOL_GPL vmlinux 0x269737f1 devm_hwspin_lock_request_specific -EXPORT_SYMBOL_GPL vmlinux 0x269929ee vp_modern_set_features -EXPORT_SYMBOL_GPL vmlinux 0x269b1c6a pwm_request -EXPORT_SYMBOL_GPL vmlinux 0x26a0124e skb_to_sgvec_nomark -EXPORT_SYMBOL_GPL vmlinux 0x26ab01bb ata_sas_async_probe -EXPORT_SYMBOL_GPL vmlinux 0x26ab4755 put_old_itimerspec32 -EXPORT_SYMBOL_GPL vmlinux 0x26acb463 dev_pm_qos_add_request -EXPORT_SYMBOL_GPL vmlinux 0x26c90ea4 scsi_eh_get_sense -EXPORT_SYMBOL_GPL vmlinux 0x26cda94f e820__mapped_raw_any -EXPORT_SYMBOL_GPL vmlinux 0x26d002fe mctrl_gpio_init -EXPORT_SYMBOL_GPL vmlinux 0x26d11229 devm_gpio_request -EXPORT_SYMBOL_GPL vmlinux 0x26d1d4e7 devm_regmap_del_irq_chip -EXPORT_SYMBOL_GPL vmlinux 0x26d687ad rtnl_af_unregister -EXPORT_SYMBOL_GPL vmlinux 0x26ed2186 register_vmap_purge_notifier -EXPORT_SYMBOL_GPL vmlinux 0x26eec6f0 devm_namespace_enable -EXPORT_SYMBOL_GPL vmlinux 0x26fc13d7 gpiod_is_active_low -EXPORT_SYMBOL_GPL vmlinux 0x26fd13e7 smca_banks -EXPORT_SYMBOL_GPL vmlinux 0x2725ffa0 class_compat_remove_link -EXPORT_SYMBOL_GPL vmlinux 0x273aab74 xen_have_vector_callback -EXPORT_SYMBOL_GPL vmlinux 0x273aff5c __SCT__tp_func_block_bio_remap -EXPORT_SYMBOL_GPL vmlinux 0x273e2382 __context_tracking_enter -EXPORT_SYMBOL_GPL vmlinux 0x274a50b6 btree_insert -EXPORT_SYMBOL_GPL vmlinux 0x274dd1a3 sg_free_table_chained -EXPORT_SYMBOL_GPL vmlinux 0x275b75f3 generic_access_phys -EXPORT_SYMBOL_GPL vmlinux 0x2764310b gnttab_free_pages -EXPORT_SYMBOL_GPL vmlinux 0x276640b5 ncsi_vlan_rx_kill_vid -EXPORT_SYMBOL_GPL vmlinux 0x2767033f fwnode_create_software_node -EXPORT_SYMBOL_GPL vmlinux 0x2787948d devlink_is_reload_failed -EXPORT_SYMBOL_GPL vmlinux 0x27bb6f2a clean_acked_data_disable -EXPORT_SYMBOL_GPL vmlinux 0x27c9cc1b crypto_stats_skcipher_decrypt -EXPORT_SYMBOL_GPL vmlinux 0x27d5d426 bus_register -EXPORT_SYMBOL_GPL vmlinux 0x27dce167 sysfs_rename_link_ns -EXPORT_SYMBOL_GPL vmlinux 0x27f4f029 ftrace_set_global_filter -EXPORT_SYMBOL_GPL vmlinux 0x27fa66e1 nr_free_buffer_pages -EXPORT_SYMBOL_GPL vmlinux 0x27ff640d led_set_brightness_nosleep -EXPORT_SYMBOL_GPL vmlinux 0x2814c559 usb_anchor_urb -EXPORT_SYMBOL_GPL vmlinux 0x2817f7fd cppc_get_desired_perf -EXPORT_SYMBOL_GPL vmlinux 0x281ea6ff __tracepoint_pelt_cfs_tp -EXPORT_SYMBOL_GPL vmlinux 0x282cdabc usb_led_activity -EXPORT_SYMBOL_GPL vmlinux 0x282d0893 devlink_register -EXPORT_SYMBOL_GPL vmlinux 0x2835ac52 tty_wakeup -EXPORT_SYMBOL_GPL vmlinux 0x2836e188 bpf_prog_create -EXPORT_SYMBOL_GPL vmlinux 0x2850dceb devm_free_pages -EXPORT_SYMBOL_GPL vmlinux 0x2864abc9 klist_node_attached -EXPORT_SYMBOL_GPL vmlinux 0x286cc647 async_synchronize_cookie_domain -EXPORT_SYMBOL_GPL vmlinux 0x287d38f4 acpi_ec_add_query_handler -EXPORT_SYMBOL_GPL vmlinux 0x287f19db regulator_set_current_limit_regmap -EXPORT_SYMBOL_GPL vmlinux 0x287faa74 __tracepoint_br_fdb_update -EXPORT_SYMBOL_GPL vmlinux 0x2882d40e usb_role_switch_unregister -EXPORT_SYMBOL_GPL vmlinux 0x28857e6f devm_fwnode_gpiod_get_index -EXPORT_SYMBOL_GPL vmlinux 0x2891cf0d pwm_get -EXPORT_SYMBOL_GPL vmlinux 0x28970a11 is_swiotlb_active -EXPORT_SYMBOL_GPL vmlinux 0x2897ba75 xdp_rxq_info_unreg -EXPORT_SYMBOL_GPL vmlinux 0x28aa6a67 call_rcu -EXPORT_SYMBOL_GPL vmlinux 0x28ab4fb9 pinctrl_gpio_free -EXPORT_SYMBOL_GPL vmlinux 0x28acb330 ptp_parse_header -EXPORT_SYMBOL_GPL vmlinux 0x28be0cef misc_cg_res_total_usage -EXPORT_SYMBOL_GPL vmlinux 0x28c79e17 cpufreq_freq_attr_scaling_available_freqs -EXPORT_SYMBOL_GPL vmlinux 0x28c868f3 pci_msi_create_irq_domain -EXPORT_SYMBOL_GPL vmlinux 0x28c9f4f7 rtc_class_close -EXPORT_SYMBOL_GPL vmlinux 0x28caf7df of_phy_put -EXPORT_SYMBOL_GPL vmlinux 0x28d62829 tcp_set_state -EXPORT_SYMBOL_GPL vmlinux 0x28ddd529 lp8788_read_multi_bytes -EXPORT_SYMBOL_GPL vmlinux 0x28e64c64 xen_has_pv_and_legacy_disk_devices -EXPORT_SYMBOL_GPL vmlinux 0x28f7f58c irq_domain_remove -EXPORT_SYMBOL_GPL vmlinux 0x28ff63cb usb_remove_hcd -EXPORT_SYMBOL_GPL vmlinux 0x291876f3 mpi_ec_get_affine -EXPORT_SYMBOL_GPL vmlinux 0x2919db48 alloc_empty_file -EXPORT_SYMBOL_GPL vmlinux 0x292f7bfa vp_modern_map_vq_notify -EXPORT_SYMBOL_GPL vmlinux 0x29366b61 register_ftrace_direct -EXPORT_SYMBOL_GPL vmlinux 0x294c4b09 tracepoint_srcu -EXPORT_SYMBOL_GPL vmlinux 0x2951a872 trace_clock_local -EXPORT_SYMBOL_GPL vmlinux 0x2957297b irq_domain_update_bus_token -EXPORT_SYMBOL_GPL vmlinux 0x295a8798 dev_attr_sw_activity -EXPORT_SYMBOL_GPL vmlinux 0x2980eeb4 __SCK__tp_func_cpu_idle -EXPORT_SYMBOL_GPL vmlinux 0x298e7f7e devlink_port_type_ib_set -EXPORT_SYMBOL_GPL vmlinux 0x2993719f wm8350_reg_lock -EXPORT_SYMBOL_GPL vmlinux 0x299f260e iommu_map -EXPORT_SYMBOL_GPL vmlinux 0x29a552c3 hvc_instantiate -EXPORT_SYMBOL_GPL vmlinux 0x29a606c2 l3mdev_table_lookup_register -EXPORT_SYMBOL_GPL vmlinux 0x29a79082 usb_role_switch_get -EXPORT_SYMBOL_GPL vmlinux 0x29c0add3 mddev_unlock -EXPORT_SYMBOL_GPL vmlinux 0x29c6bf72 dma_buf_detach -EXPORT_SYMBOL_GPL vmlinux 0x29d06071 rio_register_driver -EXPORT_SYMBOL_GPL vmlinux 0x29eacc49 usb_hc_died -EXPORT_SYMBOL_GPL vmlinux 0x29eba37f current_is_async -EXPORT_SYMBOL_GPL vmlinux 0x29f286ae generic_handle_domain_irq -EXPORT_SYMBOL_GPL vmlinux 0x29fa12dc usb_wakeup_enabled_descendants -EXPORT_SYMBOL_GPL vmlinux 0x2a0de445 devm_led_classdev_register_ext -EXPORT_SYMBOL_GPL vmlinux 0x2a289aed tcp_done -EXPORT_SYMBOL_GPL vmlinux 0x2a2aea17 clk_fixed_rate_ops -EXPORT_SYMBOL_GPL vmlinux 0x2a3af906 __traceiter_neigh_event_send_dead -EXPORT_SYMBOL_GPL vmlinux 0x2a62cb3a ring_buffer_overrun_cpu -EXPORT_SYMBOL_GPL vmlinux 0x2a678a13 __suspend_report_result -EXPORT_SYMBOL_GPL vmlinux 0x2a74b46c fscrypt_prepare_symlink -EXPORT_SYMBOL_GPL vmlinux 0x2a77545e xfrm_output -EXPORT_SYMBOL_GPL vmlinux 0x2a7aea59 vfio_pci_core_err_handlers -EXPORT_SYMBOL_GPL vmlinux 0x2a7fb86a nd_blk_region_to_dimm -EXPORT_SYMBOL_GPL vmlinux 0x2a882538 virtio_add_status -EXPORT_SYMBOL_GPL vmlinux 0x2a99f13e of_icc_get_from_provider -EXPORT_SYMBOL_GPL vmlinux 0x2aadad1a efi_capsule_update -EXPORT_SYMBOL_GPL vmlinux 0x2aae2d1e cn_add_callback -EXPORT_SYMBOL_GPL vmlinux 0x2ab423da uart_insert_char -EXPORT_SYMBOL_GPL vmlinux 0x2ab5712a fsverity_cleanup_inode -EXPORT_SYMBOL_GPL vmlinux 0x2acc3538 acpi_get_pci_dev -EXPORT_SYMBOL_GPL vmlinux 0x2ad21e61 led_stop_software_blink -EXPORT_SYMBOL_GPL vmlinux 0x2ad95ac6 synth_event_trace_array -EXPORT_SYMBOL_GPL vmlinux 0x2ade796c device_property_read_u16_array -EXPORT_SYMBOL_GPL vmlinux 0x2ae82cbe fat_add_entries -EXPORT_SYMBOL_GPL vmlinux 0x2af5ea84 __clk_hw_register_gate -EXPORT_SYMBOL_GPL vmlinux 0x2af7097b xen_remap_vma_range -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 0x2b3acc3b __SCT__tp_func_remove_device_from_group -EXPORT_SYMBOL_GPL vmlinux 0x2b4509dd devlink_health_reporter_state_update -EXPORT_SYMBOL_GPL vmlinux 0x2b6150fb power_supply_temp2resist_simple -EXPORT_SYMBOL_GPL vmlinux 0x2b62f3e6 lp8788_update_bits -EXPORT_SYMBOL_GPL vmlinux 0x2b67b6b7 mds_idle_clear -EXPORT_SYMBOL_GPL vmlinux 0x2b6a099c vfio_uninit_group_dev -EXPORT_SYMBOL_GPL vmlinux 0x2b6d960d synth_event_cmd_init -EXPORT_SYMBOL_GPL vmlinux 0x2b7125bf pcie_update_link_speed -EXPORT_SYMBOL_GPL vmlinux 0x2b7b939c ehci_init_driver -EXPORT_SYMBOL_GPL vmlinux 0x2b85e206 edac_pci_create_generic_ctl -EXPORT_SYMBOL_GPL vmlinux 0x2b952517 clk_has_parent -EXPORT_SYMBOL_GPL vmlinux 0x2b9cf3b3 crypto_register_ahash -EXPORT_SYMBOL_GPL vmlinux 0x2baf7a4a inet_send_prepare -EXPORT_SYMBOL_GPL vmlinux 0x2bb246a2 dax_attribute_group -EXPORT_SYMBOL_GPL vmlinux 0x2bb7b5a5 gpiochip_generic_request -EXPORT_SYMBOL_GPL vmlinux 0x2bd50cdb __traceiter_devlink_hwerr -EXPORT_SYMBOL_GPL vmlinux 0x2bd97e39 devm_of_led_get -EXPORT_SYMBOL_GPL vmlinux 0x2bfea640 devlink_resources_unregister -EXPORT_SYMBOL_GPL vmlinux 0x2c1128d9 pci_epf_add_vepf -EXPORT_SYMBOL_GPL vmlinux 0x2c208607 power_supply_is_system_supplied -EXPORT_SYMBOL_GPL vmlinux 0x2c20c019 __blk_req_zone_write_unlock -EXPORT_SYMBOL_GPL vmlinux 0x2c21de4d gov_attr_set_get -EXPORT_SYMBOL_GPL vmlinux 0x2c2f5a09 x86_family -EXPORT_SYMBOL_GPL vmlinux 0x2c3054f9 net_inc_ingress_queue -EXPORT_SYMBOL_GPL vmlinux 0x2c3c32d3 param_set_uint_minmax -EXPORT_SYMBOL_GPL vmlinux 0x2c61bb09 uv_bios_get_pci_topology -EXPORT_SYMBOL_GPL vmlinux 0x2c635527 arch_invalidate_pmem -EXPORT_SYMBOL_GPL vmlinux 0x2c65a3ab rtnl_link_unregister -EXPORT_SYMBOL_GPL vmlinux 0x2c66ac85 devlink_info_serial_number_put -EXPORT_SYMBOL_GPL vmlinux 0x2c6ce1f1 unregister_asymmetric_key_parser -EXPORT_SYMBOL_GPL vmlinux 0x2c6dd31a pci_epc_stop -EXPORT_SYMBOL_GPL vmlinux 0x2c7db649 irq_dispose_mapping -EXPORT_SYMBOL_GPL vmlinux 0x2c7ddfda genphy_c45_read_lpa -EXPORT_SYMBOL_GPL vmlinux 0x2c80fb0a devm_kstrdup_const -EXPORT_SYMBOL_GPL vmlinux 0x2c8dd6b8 edac_mem_types -EXPORT_SYMBOL_GPL vmlinux 0x2c973f64 tracing_cond_snapshot_data -EXPORT_SYMBOL_GPL vmlinux 0x2ca41024 ioasid_get -EXPORT_SYMBOL_GPL vmlinux 0x2cea32ee unregister_oldmem_pfn_is_ram -EXPORT_SYMBOL_GPL vmlinux 0x2cfbb2b5 __SCT__tp_func_pelt_dl_tp -EXPORT_SYMBOL_GPL vmlinux 0x2d0d1919 da9052_free_irq -EXPORT_SYMBOL_GPL vmlinux 0x2d130d17 device_property_present -EXPORT_SYMBOL_GPL vmlinux 0x2d1b02d2 usermodehelper_read_lock_wait -EXPORT_SYMBOL_GPL vmlinux 0x2d2dd36f kobj_ns_grab_current -EXPORT_SYMBOL_GPL vmlinux 0x2d3920d7 dma_async_device_channel_register -EXPORT_SYMBOL_GPL vmlinux 0x2d393f48 intel_soc_pmic_exec_mipi_pmic_seq_element -EXPORT_SYMBOL_GPL vmlinux 0x2d40d951 ping_err -EXPORT_SYMBOL_GPL vmlinux 0x2d41e6f5 __trace_puts -EXPORT_SYMBOL_GPL vmlinux 0x2d44be3b __SCT__tp_func_br_fdb_add -EXPORT_SYMBOL_GPL vmlinux 0x2d487683 __traceiter_sched_util_est_se_tp -EXPORT_SYMBOL_GPL vmlinux 0x2d4bca22 devm_release_action -EXPORT_SYMBOL_GPL vmlinux 0x2d6aa0f0 arch_apei_enable_cmcff -EXPORT_SYMBOL_GPL vmlinux 0x2d70bb2f pm_runtime_set_memalloc_noio -EXPORT_SYMBOL_GPL vmlinux 0x2d84d0a0 sbitmap_show -EXPORT_SYMBOL_GPL vmlinux 0x2d89b1ad __SCT__tp_func_attach_device_to_domain -EXPORT_SYMBOL_GPL vmlinux 0x2dc1857e pci_set_host_bridge_release -EXPORT_SYMBOL_GPL vmlinux 0x2dc767bf palmas_ext_control_req_config -EXPORT_SYMBOL_GPL vmlinux 0x2deff9f3 sysfs_create_groups -EXPORT_SYMBOL_GPL vmlinux 0x2dfa9d86 pm_generic_suspend -EXPORT_SYMBOL_GPL vmlinux 0x2e028ae6 rcutorture_get_gp_data -EXPORT_SYMBOL_GPL vmlinux 0x2e098704 put_iova_domain -EXPORT_SYMBOL_GPL vmlinux 0x2e13806c crypto_stats_ahash_update -EXPORT_SYMBOL_GPL vmlinux 0x2e18470a skcipher_register_instance -EXPORT_SYMBOL_GPL vmlinux 0x2e2360b1 ftrace_set_global_notrace -EXPORT_SYMBOL_GPL vmlinux 0x2e2d98de regulator_disable_deferred -EXPORT_SYMBOL_GPL vmlinux 0x2e2df7f4 irq_remapping_cap -EXPORT_SYMBOL_GPL vmlinux 0x2e352688 ip6_sk_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0x2e373d14 subsys_find_device_by_id -EXPORT_SYMBOL_GPL vmlinux 0x2e39aae1 __percpu_down_read -EXPORT_SYMBOL_GPL vmlinux 0x2e520ba5 __pm_stay_awake -EXPORT_SYMBOL_GPL vmlinux 0x2e7a17d4 vmap_pfn -EXPORT_SYMBOL_GPL vmlinux 0x2e8b3ae9 fscrypt_file_open -EXPORT_SYMBOL_GPL vmlinux 0x2e9adf1f cpufreq_driver_target -EXPORT_SYMBOL_GPL vmlinux 0x2e9e71f5 vma_kernel_pagesize -EXPORT_SYMBOL_GPL vmlinux 0x2ea4b02b da903x_clr_bits -EXPORT_SYMBOL_GPL vmlinux 0x2ea996ab clk_hw_register_fractional_divider -EXPORT_SYMBOL_GPL vmlinux 0x2eaccf4b get_user_pages_fast_only -EXPORT_SYMBOL_GPL vmlinux 0x2ebb19fd execute_in_process_context -EXPORT_SYMBOL_GPL vmlinux 0x2ebe3135 cpu_is_hotpluggable -EXPORT_SYMBOL_GPL vmlinux 0x2ebf663c pm_genpd_remove_device -EXPORT_SYMBOL_GPL vmlinux 0x2ec05d36 devm_hwmon_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0x2ece9d84 blk_mq_queue_inflight -EXPORT_SYMBOL_GPL vmlinux 0x2eda4807 is_uv_hubbed -EXPORT_SYMBOL_GPL vmlinux 0x2ee2a6ec fwnode_get_next_child_node -EXPORT_SYMBOL_GPL vmlinux 0x2ee6c0aa fuse_dev_alloc -EXPORT_SYMBOL_GPL vmlinux 0x2ef89b66 pinctrl_remove_gpio_range -EXPORT_SYMBOL_GPL vmlinux 0x2efac82f serdev_device_set_flow_control -EXPORT_SYMBOL_GPL vmlinux 0x2f0d9053 usb_otg_state_string -EXPORT_SYMBOL_GPL vmlinux 0x2f0d9653 rio_unregister_scan -EXPORT_SYMBOL_GPL vmlinux 0x2f14a6c2 edac_device_add_device -EXPORT_SYMBOL_GPL vmlinux 0x2f162dd4 skb_mpls_update_lse -EXPORT_SYMBOL_GPL vmlinux 0x2f1f1ce9 acpi_data_fwnode_ops -EXPORT_SYMBOL_GPL vmlinux 0x2f2468c2 dev_pm_opp_sync_regulators -EXPORT_SYMBOL_GPL vmlinux 0x2f2c95c4 flush_work -EXPORT_SYMBOL_GPL vmlinux 0x2f4880df static_key_slow_dec -EXPORT_SYMBOL_GPL vmlinux 0x2f58c1ba public_key_subtype -EXPORT_SYMBOL_GPL vmlinux 0x2f64415f unregister_acpi_hed_notifier -EXPORT_SYMBOL_GPL vmlinux 0x2f79ba1c scsi_host_block -EXPORT_SYMBOL_GPL vmlinux 0x2f82323b switchdev_port_obj_add -EXPORT_SYMBOL_GPL vmlinux 0x2fbf7734 xen_xlate_unmap_gfn_range -EXPORT_SYMBOL_GPL vmlinux 0x2fc1e0fe kmem_valid_obj -EXPORT_SYMBOL_GPL vmlinux 0x2fc6b317 debugfs_create_ulong -EXPORT_SYMBOL_GPL vmlinux 0x2fdab0da devlink_param_publish -EXPORT_SYMBOL_GPL vmlinux 0x2fe0db6b thermal_add_hwmon_sysfs -EXPORT_SYMBOL_GPL vmlinux 0x2fe5c297 bpf_trace_run9 -EXPORT_SYMBOL_GPL vmlinux 0x2feed6dd ata_sff_irq_on -EXPORT_SYMBOL_GPL vmlinux 0x30133b76 fsnotify_put_mark -EXPORT_SYMBOL_GPL vmlinux 0x3017d764 devlink_traps_unregister -EXPORT_SYMBOL_GPL vmlinux 0x3022d351 __audit_inode_child -EXPORT_SYMBOL_GPL vmlinux 0x303060aa xen_find_device_domain_owner -EXPORT_SYMBOL_GPL vmlinux 0x30333227 crypto_alloc_base -EXPORT_SYMBOL_GPL vmlinux 0x30472da9 edac_pci_del_device -EXPORT_SYMBOL_GPL vmlinux 0x304cfb5d device_add_groups -EXPORT_SYMBOL_GPL vmlinux 0x3053b6d9 virtqueue_get_desc_addr -EXPORT_SYMBOL_GPL vmlinux 0x305f059d fat_getattr -EXPORT_SYMBOL_GPL vmlinux 0x3061cfce ring_buffer_entries_cpu -EXPORT_SYMBOL_GPL vmlinux 0x306a3dde usb_block_urb -EXPORT_SYMBOL_GPL vmlinux 0x30811eae simple_attr_read -EXPORT_SYMBOL_GPL vmlinux 0x3081ef88 lwtunnel_get_encap_size -EXPORT_SYMBOL_GPL vmlinux 0x30a0edfb serial8250_em485_destroy -EXPORT_SYMBOL_GPL vmlinux 0x30a7ab4c sched_trace_rd_span -EXPORT_SYMBOL_GPL vmlinux 0x30a7cbd4 fat_search_long -EXPORT_SYMBOL_GPL vmlinux 0x30b51932 da903x_read -EXPORT_SYMBOL_GPL vmlinux 0x30b66c6c blk_queue_set_zoned -EXPORT_SYMBOL_GPL vmlinux 0x30c1ebd2 pm_generic_restore -EXPORT_SYMBOL_GPL vmlinux 0x30c4673b pcie_bus_configure_settings -EXPORT_SYMBOL_GPL vmlinux 0x30cf804f slow_virt_to_phys -EXPORT_SYMBOL_GPL vmlinux 0x30d9b183 ata_sas_slave_configure -EXPORT_SYMBOL_GPL vmlinux 0x30dfff83 sysfs_remove_file_ns -EXPORT_SYMBOL_GPL vmlinux 0x30e1ec25 apei_map_generic_address -EXPORT_SYMBOL_GPL vmlinux 0x30e42163 tick_nohz_dep_clear_cpu -EXPORT_SYMBOL_GPL vmlinux 0x30f1e202 pci_epc_init_notify -EXPORT_SYMBOL_GPL vmlinux 0x30fff8a5 relay_flush -EXPORT_SYMBOL_GPL vmlinux 0x31019477 __ftrace_vbprintk -EXPORT_SYMBOL_GPL vmlinux 0x31128b8e hv_remove_kexec_handler -EXPORT_SYMBOL_GPL vmlinux 0x31220b45 md_rdev_init -EXPORT_SYMBOL_GPL vmlinux 0x31266931 con_debug_leave -EXPORT_SYMBOL_GPL vmlinux 0x3137a450 __rtnl_link_register -EXPORT_SYMBOL_GPL vmlinux 0x31398771 driver_remove_file -EXPORT_SYMBOL_GPL vmlinux 0x31653557 debugfs_real_fops -EXPORT_SYMBOL_GPL vmlinux 0x3165daa3 arbitrary_virt_to_machine -EXPORT_SYMBOL_GPL vmlinux 0x316b730f irq_domain_pop_irq -EXPORT_SYMBOL_GPL vmlinux 0x31706316 __SCT__tp_func_error_report_end -EXPORT_SYMBOL_GPL vmlinux 0x317f2672 crypto_register_aeads -EXPORT_SYMBOL_GPL vmlinux 0x31839ad3 software_node_register_nodes -EXPORT_SYMBOL_GPL vmlinux 0x318613ce rtnl_af_register -EXPORT_SYMBOL_GPL vmlinux 0x3192d768 cpufreq_remove_update_util_hook -EXPORT_SYMBOL_GPL vmlinux 0x3198bd55 __SCT__tp_func_detach_device_from_domain -EXPORT_SYMBOL_GPL vmlinux 0x31a95e8b ring_buffer_record_enable_cpu -EXPORT_SYMBOL_GPL vmlinux 0x31acf09d usb_hcd_resume_root_hub -EXPORT_SYMBOL_GPL vmlinux 0x31ae2439 css_next_descendant_pre -EXPORT_SYMBOL_GPL vmlinux 0x31b4e0d9 devm_irq_setup_generic_chip -EXPORT_SYMBOL_GPL vmlinux 0x31c7970f pciserial_suspend_ports -EXPORT_SYMBOL_GPL vmlinux 0x31d99975 spi_take_timestamp_post -EXPORT_SYMBOL_GPL vmlinux 0x31dca4d8 gnttab_claim_grant_reference -EXPORT_SYMBOL_GPL vmlinux 0x31dd105e fsstack_copy_inode_size -EXPORT_SYMBOL_GPL vmlinux 0x31e94c09 crypto_stats_init -EXPORT_SYMBOL_GPL vmlinux 0x31ef2297 gpiod_set_array_value -EXPORT_SYMBOL_GPL vmlinux 0x31f96bba i2c_client_type -EXPORT_SYMBOL_GPL vmlinux 0x31fdf417 xdp_return_frame_bulk -EXPORT_SYMBOL_GPL vmlinux 0x320916f1 mptcp_token_iter_next -EXPORT_SYMBOL_GPL vmlinux 0x320b9bd4 switchdev_handle_port_attr_set -EXPORT_SYMBOL_GPL vmlinux 0x321df88b dm_start_time_ns_from_clone -EXPORT_SYMBOL_GPL vmlinux 0x3221d7cf serial8250_em485_start_tx -EXPORT_SYMBOL_GPL vmlinux 0x3224b2a9 mpi_read_raw_from_sgl -EXPORT_SYMBOL_GPL vmlinux 0x3226f90b ipv6_find_tlv -EXPORT_SYMBOL_GPL vmlinux 0x322a21cd sysfs_create_file_ns -EXPORT_SYMBOL_GPL vmlinux 0x323533af devm_mbox_controller_register -EXPORT_SYMBOL_GPL vmlinux 0x3241135f regulator_list_hardware_vsel -EXPORT_SYMBOL_GPL vmlinux 0x32414a5c acpi_pci_find_root -EXPORT_SYMBOL_GPL vmlinux 0x32565fe7 nvdimm_has_cache -EXPORT_SYMBOL_GPL vmlinux 0x3256660a cgroup_get_from_path -EXPORT_SYMBOL_GPL vmlinux 0x325785d7 xdp_rxq_info_is_reg -EXPORT_SYMBOL_GPL vmlinux 0x3264ac0e regulator_allow_bypass -EXPORT_SYMBOL_GPL vmlinux 0x326cefe5 hwpoison_filter_dev_minor -EXPORT_SYMBOL_GPL vmlinux 0x327a2687 bind_evtchn_to_irq_lateeoi -EXPORT_SYMBOL_GPL vmlinux 0x328e3354 __memcpy_flushcache -EXPORT_SYMBOL_GPL vmlinux 0x32ab06cc irq_percpu_is_enabled -EXPORT_SYMBOL_GPL vmlinux 0x32b53fe4 device_remove_software_node -EXPORT_SYMBOL_GPL vmlinux 0x32bc0fcf preempt_notifier_dec -EXPORT_SYMBOL_GPL vmlinux 0x32c3cb4e class_compat_register -EXPORT_SYMBOL_GPL vmlinux 0x32e3b076 mxcsr_feature_mask -EXPORT_SYMBOL_GPL vmlinux 0x32e4d1e0 sgx_virt_ecreate -EXPORT_SYMBOL_GPL vmlinux 0x32f0754a nvdimm_flush -EXPORT_SYMBOL_GPL vmlinux 0x32ffb224 pci_hp_remove_module_link -EXPORT_SYMBOL_GPL vmlinux 0x330010b6 cpuset_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x3302deb4 dev_pm_opp_register_set_opp_helper -EXPORT_SYMBOL_GPL vmlinux 0x330d28f5 uprobe_register_refctr -EXPORT_SYMBOL_GPL vmlinux 0x331075a9 fsnotify_init_mark -EXPORT_SYMBOL_GPL vmlinux 0x3314b130 tpm_is_tpm2 -EXPORT_SYMBOL_GPL vmlinux 0x33242d9c extcon_get_state -EXPORT_SYMBOL_GPL vmlinux 0x332976a9 kthread_queue_delayed_work -EXPORT_SYMBOL_GPL vmlinux 0x3338b5fc irq_domain_translate_twocell -EXPORT_SYMBOL_GPL vmlinux 0x3338e152 iomap_invalidatepage -EXPORT_SYMBOL_GPL vmlinux 0x3343dd36 dev_fwnode -EXPORT_SYMBOL_GPL vmlinux 0x334fdac1 cpufreq_cpu_put -EXPORT_SYMBOL_GPL vmlinux 0x335206b3 crypto_register_skcipher -EXPORT_SYMBOL_GPL vmlinux 0x33527831 xenbus_dev_remove -EXPORT_SYMBOL_GPL vmlinux 0x3352ac37 dmaengine_desc_set_metadata_len -EXPORT_SYMBOL_GPL vmlinux 0x335c570f enable_percpu_irq -EXPORT_SYMBOL_GPL vmlinux 0x3362b03c xen_p2m_size -EXPORT_SYMBOL_GPL vmlinux 0x336873f3 cgrp_dfl_root -EXPORT_SYMBOL_GPL vmlinux 0x3377ab11 vfio_pci_core_finish_enable -EXPORT_SYMBOL_GPL vmlinux 0x337c9b16 eventfd_fget -EXPORT_SYMBOL_GPL vmlinux 0x3385493a idr_remove -EXPORT_SYMBOL_GPL vmlinux 0x33956f05 __tracepoint_block_bio_complete -EXPORT_SYMBOL_GPL vmlinux 0x339c06d0 iommu_domain_alloc -EXPORT_SYMBOL_GPL vmlinux 0x33ac1b31 sock_diag_save_cookie -EXPORT_SYMBOL_GPL vmlinux 0x33ae4105 bpf_prog_select_runtime -EXPORT_SYMBOL_GPL vmlinux 0x33b6a1ab security_path_link -EXPORT_SYMBOL_GPL vmlinux 0x33bac093 regmap_get_max_register -EXPORT_SYMBOL_GPL vmlinux 0x33c6ad9a debugfs_create_x32 -EXPORT_SYMBOL_GPL vmlinux 0x33d1c1bf digsig_verify -EXPORT_SYMBOL_GPL vmlinux 0x33e83fe5 ndo_dflt_bridge_getlink -EXPORT_SYMBOL_GPL vmlinux 0x33facdc8 led_trigger_remove -EXPORT_SYMBOL_GPL vmlinux 0x34000970 iommu_sva_unbind_gpasid -EXPORT_SYMBOL_GPL vmlinux 0x340c41bd device_reprobe -EXPORT_SYMBOL_GPL vmlinux 0x340d69f5 sync_page_io -EXPORT_SYMBOL_GPL vmlinux 0x3411721c device_link_del -EXPORT_SYMBOL_GPL vmlinux 0x341cff5a spi_async -EXPORT_SYMBOL_GPL vmlinux 0x34222d57 acpi_dev_get_property -EXPORT_SYMBOL_GPL vmlinux 0x3431fb23 dev_pm_clear_wake_irq -EXPORT_SYMBOL_GPL vmlinux 0x34331f04 acpi_os_unmap_memory -EXPORT_SYMBOL_GPL vmlinux 0x34407691 crypto_has_ahash -EXPORT_SYMBOL_GPL vmlinux 0x34409c0b sched_trace_rq_nr_running -EXPORT_SYMBOL_GPL vmlinux 0x344361a1 kdb_register -EXPORT_SYMBOL_GPL vmlinux 0x344a2c84 iomap_dio_complete -EXPORT_SYMBOL_GPL vmlinux 0x344e326b pm_generic_freeze_late -EXPORT_SYMBOL_GPL vmlinux 0x3450ad94 mpi_set_ui -EXPORT_SYMBOL_GPL vmlinux 0x3466ce63 x86_msi_msg_get_destid -EXPORT_SYMBOL_GPL vmlinux 0x346c30c5 led_classdev_suspend -EXPORT_SYMBOL_GPL vmlinux 0x34832a6c sk_msg_return -EXPORT_SYMBOL_GPL vmlinux 0x349ff57c clk_hw_register_composite -EXPORT_SYMBOL_GPL vmlinux 0x34a1bee7 xfrm_put_translator -EXPORT_SYMBOL_GPL vmlinux 0x34ac7522 device_store_bool -EXPORT_SYMBOL_GPL vmlinux 0x34bafe09 pci_epc_write_header -EXPORT_SYMBOL_GPL vmlinux 0x34bf78a7 __rio_local_read_config_16 -EXPORT_SYMBOL_GPL vmlinux 0x34c3c148 __SCK__tp_func_neigh_cleanup_and_release -EXPORT_SYMBOL_GPL vmlinux 0x34d6b669 power_supply_property_is_writeable -EXPORT_SYMBOL_GPL vmlinux 0x34db807b pci_epc_set_bar -EXPORT_SYMBOL_GPL vmlinux 0x34eab46d bind_evtchn_to_irqhandler -EXPORT_SYMBOL_GPL vmlinux 0x34f4a604 da9052_adc_manual_read -EXPORT_SYMBOL_GPL vmlinux 0x34f8152c inet_csk_addr2sockaddr -EXPORT_SYMBOL_GPL vmlinux 0x350bf828 rio_dma_prep_xfer -EXPORT_SYMBOL_GPL vmlinux 0x350f6ce5 tasklet_unlock_wait -EXPORT_SYMBOL_GPL vmlinux 0x3517461a inverse_translate -EXPORT_SYMBOL_GPL vmlinux 0x35187625 pm_runtime_force_resume -EXPORT_SYMBOL_GPL vmlinux 0x352b3813 maxim_charger_calc_reg_current -EXPORT_SYMBOL_GPL vmlinux 0x352ec68b bpf_offload_dev_destroy -EXPORT_SYMBOL_GPL vmlinux 0x3567743b vfio_external_user_iommu_id -EXPORT_SYMBOL_GPL vmlinux 0x356d09a1 unregister_kprobes -EXPORT_SYMBOL_GPL vmlinux 0x356d78dc led_compose_name -EXPORT_SYMBOL_GPL vmlinux 0x35747590 dm_put -EXPORT_SYMBOL_GPL vmlinux 0x3575579a fork_usermode_driver -EXPORT_SYMBOL_GPL vmlinux 0x35793b6c loop_backing_file -EXPORT_SYMBOL_GPL vmlinux 0x358ff60f twl_get_hfclk_rate -EXPORT_SYMBOL_GPL vmlinux 0x359952de key_set_timeout -EXPORT_SYMBOL_GPL vmlinux 0x35b446d7 regulator_get_linear_step -EXPORT_SYMBOL_GPL vmlinux 0x35b5b07b bio_iov_iter_get_pages -EXPORT_SYMBOL_GPL vmlinux 0x35c7801b devm_of_phy_get_by_index -EXPORT_SYMBOL_GPL vmlinux 0x35cac9ed usb_unlink_anchored_urbs -EXPORT_SYMBOL_GPL vmlinux 0x35cde661 bpf_offload_dev_create -EXPORT_SYMBOL_GPL vmlinux 0x35d423d3 page_cache_ra_unbounded -EXPORT_SYMBOL_GPL vmlinux 0x36075bb5 iommu_group_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x36173c1d phys_to_target_node -EXPORT_SYMBOL_GPL vmlinux 0x36242943 switchdev_deferred_process -EXPORT_SYMBOL_GPL vmlinux 0x362e8a56 xhci_add_endpoint -EXPORT_SYMBOL_GPL vmlinux 0x3632b8fd switchdev_bridge_port_offload -EXPORT_SYMBOL_GPL vmlinux 0x3648a347 sock_diag_unregister_inet_compat -EXPORT_SYMBOL_GPL vmlinux 0x365f4b82 devm_reset_controller_register -EXPORT_SYMBOL_GPL vmlinux 0x36718fa1 d_exchange -EXPORT_SYMBOL_GPL vmlinux 0x3674f348 rhashtable_walk_start_check -EXPORT_SYMBOL_GPL vmlinux 0x368bd4ea ip6_route_input_lookup -EXPORT_SYMBOL_GPL vmlinux 0x369669ee __SCK__tp_func_tcp_send_reset -EXPORT_SYMBOL_GPL vmlinux 0x369fcd70 tracing_snapshot -EXPORT_SYMBOL_GPL vmlinux 0x36a67640 hwmon_device_register_with_groups -EXPORT_SYMBOL_GPL vmlinux 0x36ad8571 ping_get_port -EXPORT_SYMBOL_GPL vmlinux 0x36b0a058 bsg_register_queue -EXPORT_SYMBOL_GPL vmlinux 0x36b5497e intel_iommu_enabled -EXPORT_SYMBOL_GPL vmlinux 0x36df9c50 phy_package_join -EXPORT_SYMBOL_GPL vmlinux 0x36efffd2 inet_hash_connect -EXPORT_SYMBOL_GPL vmlinux 0x36f15996 dma_buf_move_notify -EXPORT_SYMBOL_GPL vmlinux 0x36fdb020 atomic_notifier_chain_register -EXPORT_SYMBOL_GPL vmlinux 0x3706a751 device_get_child_node_count -EXPORT_SYMBOL_GPL vmlinux 0x370a2168 xhci_run -EXPORT_SYMBOL_GPL vmlinux 0x3725576f power_supply_powers -EXPORT_SYMBOL_GPL vmlinux 0x372cfd6e gnttab_end_foreign_access -EXPORT_SYMBOL_GPL vmlinux 0x3731132d mmc_send_status -EXPORT_SYMBOL_GPL vmlinux 0x373a8ae8 handle_fasteoi_irq -EXPORT_SYMBOL_GPL vmlinux 0x373b89e9 __put_task_struct -EXPORT_SYMBOL_GPL vmlinux 0x37474d02 vfio_pci_core_sriov_configure -EXPORT_SYMBOL_GPL vmlinux 0x3749fe21 of_phy_simple_xlate -EXPORT_SYMBOL_GPL vmlinux 0x374c53e1 ata_get_cmd_descript -EXPORT_SYMBOL_GPL vmlinux 0x3750d770 erst_read -EXPORT_SYMBOL_GPL vmlinux 0x3758120e pm_clk_add_clk -EXPORT_SYMBOL_GPL vmlinux 0x37676ed9 wbc_account_cgroup_owner -EXPORT_SYMBOL_GPL vmlinux 0x376cc5db inet6_sk_rebuild_header -EXPORT_SYMBOL_GPL vmlinux 0x3777e62c ata_pci_sff_init_host -EXPORT_SYMBOL_GPL vmlinux 0x377bbcbc pm_suspend_target_state -EXPORT_SYMBOL_GPL vmlinux 0x37914025 xenbus_write -EXPORT_SYMBOL_GPL vmlinux 0x37a15a4f blk_trace_startstop -EXPORT_SYMBOL_GPL vmlinux 0x37b9ec81 devm_krealloc -EXPORT_SYMBOL_GPL vmlinux 0x37bf7be3 percpu_ref_exit -EXPORT_SYMBOL_GPL vmlinux 0x37c61d71 input_device_enabled -EXPORT_SYMBOL_GPL vmlinux 0x37d16703 devlink_port_health_reporter_create -EXPORT_SYMBOL_GPL vmlinux 0x37dac035 __tracepoint_br_fdb_add -EXPORT_SYMBOL_GPL vmlinux 0x37de551b gpiod_set_raw_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0x37f292c4 pmc_atom_write -EXPORT_SYMBOL_GPL vmlinux 0x3801390f fwnode_graph_get_port_parent -EXPORT_SYMBOL_GPL vmlinux 0x3801776b __ioread32_copy -EXPORT_SYMBOL_GPL vmlinux 0x3809be4f ata_cable_80wire -EXPORT_SYMBOL_GPL vmlinux 0x380e5278 rhashtable_init -EXPORT_SYMBOL_GPL vmlinux 0x381fc2cd list_lru_count_node -EXPORT_SYMBOL_GPL vmlinux 0x3820457b wakeup_source_register -EXPORT_SYMBOL_GPL vmlinux 0x38268b62 icc_bulk_enable -EXPORT_SYMBOL_GPL vmlinux 0x3826e097 fat_flush_inodes -EXPORT_SYMBOL_GPL vmlinux 0x38374815 clear_selection -EXPORT_SYMBOL_GPL vmlinux 0x383f3baf cpufreq_driver_resolve_freq -EXPORT_SYMBOL_GPL vmlinux 0x38514333 iommu_device_sysfs_add -EXPORT_SYMBOL_GPL vmlinux 0x3866e217 nvmem_device_write -EXPORT_SYMBOL_GPL vmlinux 0x38722f80 kernel_fpu_end -EXPORT_SYMBOL_GPL vmlinux 0x38807f39 regulator_desc_list_voltage_linear -EXPORT_SYMBOL_GPL vmlinux 0x388264ea amd_clear_divider -EXPORT_SYMBOL_GPL vmlinux 0x3889a549 pinctrl_enable -EXPORT_SYMBOL_GPL vmlinux 0x389b64a2 static_key_count -EXPORT_SYMBOL_GPL vmlinux 0x389b72d7 ip_build_and_send_pkt -EXPORT_SYMBOL_GPL vmlinux 0x389c1aea blkg_conf_prep -EXPORT_SYMBOL_GPL vmlinux 0x389f2116 regulator_count_voltages -EXPORT_SYMBOL_GPL vmlinux 0x38aa1397 gpiod_add_lookup_table -EXPORT_SYMBOL_GPL vmlinux 0x38aba43b trace_output_call -EXPORT_SYMBOL_GPL vmlinux 0x38b6a890 __SCT__tp_func_sched_util_est_cfs_tp -EXPORT_SYMBOL_GPL vmlinux 0x38c5e065 iomap_seek_hole -EXPORT_SYMBOL_GPL vmlinux 0x38c659c0 sk_msg_free -EXPORT_SYMBOL_GPL vmlinux 0x38e1fde7 mpi_set -EXPORT_SYMBOL_GPL vmlinux 0x38e5bc5a clk_set_rate_range -EXPORT_SYMBOL_GPL vmlinux 0x38ef094a phy_check_downshift -EXPORT_SYMBOL_GPL vmlinux 0x38f1ed35 pcie_flr -EXPORT_SYMBOL_GPL vmlinux 0x38f244e3 rhashtable_free_and_destroy -EXPORT_SYMBOL_GPL vmlinux 0x38fa9bca hrtimer_forward -EXPORT_SYMBOL_GPL vmlinux 0x38fceb37 tty_encode_baud_rate -EXPORT_SYMBOL_GPL vmlinux 0x39136e8c irq_chip_get_parent_state -EXPORT_SYMBOL_GPL vmlinux 0x3935b5bb tracing_snapshot_cond_disable -EXPORT_SYMBOL_GPL vmlinux 0x393c21ee serdev_controller_add -EXPORT_SYMBOL_GPL vmlinux 0x395ad37a ata_ehi_push_desc -EXPORT_SYMBOL_GPL vmlinux 0x3967d072 dma_vmap_noncontiguous -EXPORT_SYMBOL_GPL vmlinux 0x396e870a pci_device_group -EXPORT_SYMBOL_GPL vmlinux 0x397051f9 scsi_autopm_put_device -EXPORT_SYMBOL_GPL vmlinux 0x397c221a __SCK__tp_func_sched_overutilized_tp -EXPORT_SYMBOL_GPL vmlinux 0x3980f04a wm8350_set_bits -EXPORT_SYMBOL_GPL vmlinux 0x39a7affc driver_deferred_probe_timeout -EXPORT_SYMBOL_GPL vmlinux 0x39aa4888 usb_role_string -EXPORT_SYMBOL_GPL vmlinux 0x39b531d9 dma_buf_vunmap -EXPORT_SYMBOL_GPL vmlinux 0x39d7d597 blk_mq_freeze_queue_wait -EXPORT_SYMBOL_GPL vmlinux 0x39ded098 rdma_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x39ded14f __SCT__tp_func_unmap -EXPORT_SYMBOL_GPL vmlinux 0x39e7c63c devm_device_remove_groups -EXPORT_SYMBOL_GPL vmlinux 0x3a0c70f8 __SCK__tp_func_extlog_mem_event -EXPORT_SYMBOL_GPL vmlinux 0x3a0dff7d devres_for_each_res -EXPORT_SYMBOL_GPL vmlinux 0x3a1a55fe bind_interdomain_evtchn_to_irq_lateeoi -EXPORT_SYMBOL_GPL vmlinux 0x3a201606 fscrypt_fname_siphash -EXPORT_SYMBOL_GPL vmlinux 0x3a24fb2f percpu_ref_resurrect -EXPORT_SYMBOL_GPL vmlinux 0x3a26ed11 sched_clock -EXPORT_SYMBOL_GPL vmlinux 0x3a4be22d regcache_sync -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 0x3a61257f kthread_cancel_work_sync -EXPORT_SYMBOL_GPL vmlinux 0x3a727c22 led_trigger_register -EXPORT_SYMBOL_GPL vmlinux 0x3a7a79d9 ethnl_cable_test_amplitude -EXPORT_SYMBOL_GPL vmlinux 0x3a7d80f9 xen_max_p2m_pfn -EXPORT_SYMBOL_GPL vmlinux 0x3a87640e ata_sas_port_destroy -EXPORT_SYMBOL_GPL vmlinux 0x3a8bbb8e trace_clock_jiffies -EXPORT_SYMBOL_GPL vmlinux 0x3a9be019 asymmetric_key_id_partial -EXPORT_SYMBOL_GPL vmlinux 0x3ab4541a cpufreq_dbs_governor_stop -EXPORT_SYMBOL_GPL vmlinux 0x3ab776c3 serial8250_do_set_mctrl -EXPORT_SYMBOL_GPL vmlinux 0x3ac81e52 __of_reset_control_get -EXPORT_SYMBOL_GPL vmlinux 0x3acdf325 twl4030_audio_enable_resource -EXPORT_SYMBOL_GPL vmlinux 0x3ad1f208 ata_cable_sata -EXPORT_SYMBOL_GPL vmlinux 0x3ad52f95 sched_trace_cfs_rq_avg -EXPORT_SYMBOL_GPL vmlinux 0x3adc8ba3 alarm_init -EXPORT_SYMBOL_GPL vmlinux 0x3af192de __pm_runtime_use_autosuspend -EXPORT_SYMBOL_GPL vmlinux 0x3af578f5 hyperv_report_panic -EXPORT_SYMBOL_GPL vmlinux 0x3af6dac7 __xenbus_register_backend -EXPORT_SYMBOL_GPL vmlinux 0x3afe0d48 phy_led_trigger_change_speed -EXPORT_SYMBOL_GPL vmlinux 0x3b0dbe09 dpm_for_each_dev -EXPORT_SYMBOL_GPL vmlinux 0x3b125c1a __SCK__tp_func_pelt_thermal_tp -EXPORT_SYMBOL_GPL vmlinux 0x3b1f037f cpuidle_get_cpu_driver -EXPORT_SYMBOL_GPL vmlinux 0x3b2d3df4 bpf_trace_run10 -EXPORT_SYMBOL_GPL vmlinux 0x3b4b8d72 add_disk_randomness -EXPORT_SYMBOL_GPL vmlinux 0x3b4c240a display_timings_release -EXPORT_SYMBOL_GPL vmlinux 0x3b5669ef sdio_set_block_size -EXPORT_SYMBOL_GPL vmlinux 0x3b65ecad __pci_reset_function_locked -EXPORT_SYMBOL_GPL vmlinux 0x3b70dd38 tcp_register_ulp -EXPORT_SYMBOL_GPL vmlinux 0x3b7a7163 __static_call_return0 -EXPORT_SYMBOL_GPL vmlinux 0x3b8979ea gnttab_grant_foreign_transfer_ref -EXPORT_SYMBOL_GPL vmlinux 0x3b8b9c08 firmware_request_nowarn -EXPORT_SYMBOL_GPL vmlinux 0x3b91db5b intel_pt_handle_vmx -EXPORT_SYMBOL_GPL vmlinux 0x3b95f543 klp_shadow_free -EXPORT_SYMBOL_GPL vmlinux 0x3ba01b47 get_compat_sigset -EXPORT_SYMBOL_GPL vmlinux 0x3ba340de devm_kasprintf -EXPORT_SYMBOL_GPL vmlinux 0x3baed293 events_sysfs_show -EXPORT_SYMBOL_GPL vmlinux 0x3bb1d1d7 anon_transport_class_register -EXPORT_SYMBOL_GPL vmlinux 0x3bb5c0b0 devm_regulator_bulk_register_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0x3bd79d5d fwnode_connection_find_match -EXPORT_SYMBOL_GPL vmlinux 0x3bdb5d28 alg_test -EXPORT_SYMBOL_GPL vmlinux 0x3befe7f7 check_move_unevictable_pages -EXPORT_SYMBOL_GPL vmlinux 0x3bf17755 mpi_read_buffer -EXPORT_SYMBOL_GPL vmlinux 0x3bfaeb41 vfio_pci_core_close_device -EXPORT_SYMBOL_GPL vmlinux 0x3c0ac4df usb_phy_set_charger_current -EXPORT_SYMBOL_GPL vmlinux 0x3c0e8050 hyperv_pcpu_input_arg -EXPORT_SYMBOL_GPL vmlinux 0x3c11b062 tty_save_termios -EXPORT_SYMBOL_GPL vmlinux 0x3c175087 __rio_local_read_config_32 -EXPORT_SYMBOL_GPL vmlinux 0x3c1c3725 rcu_fwd_progress_check -EXPORT_SYMBOL_GPL vmlinux 0x3c1e622c tps6586x_reads -EXPORT_SYMBOL_GPL vmlinux 0x3c3225e2 power_supply_get_property -EXPORT_SYMBOL_GPL vmlinux 0x3c5b74ec rio_route_clr_table -EXPORT_SYMBOL_GPL vmlinux 0x3c5e124a dev_coredumpsg -EXPORT_SYMBOL_GPL vmlinux 0x3c681dc4 ring_buffer_record_disable -EXPORT_SYMBOL_GPL vmlinux 0x3c686940 blk_add_driver_data -EXPORT_SYMBOL_GPL vmlinux 0x3c7bb3e4 device_find_child_by_name -EXPORT_SYMBOL_GPL vmlinux 0x3c80a523 br_ip6_fragment -EXPORT_SYMBOL_GPL vmlinux 0x3c8d8f21 crypto_alloc_skcipher -EXPORT_SYMBOL_GPL vmlinux 0x3c959310 fib_table_lookup -EXPORT_SYMBOL_GPL vmlinux 0x3c9a2239 gpiod_set_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0x3ca7ab18 xenbus_register_driver_common -EXPORT_SYMBOL_GPL vmlinux 0x3cc07be9 pv_info -EXPORT_SYMBOL_GPL vmlinux 0x3cd06035 add_input_randomness -EXPORT_SYMBOL_GPL vmlinux 0x3cd1b510 trace_vbprintk -EXPORT_SYMBOL_GPL vmlinux 0x3ce2a4f7 iommu_aux_get_pasid -EXPORT_SYMBOL_GPL vmlinux 0x3ce650fd phy_10gbit_features -EXPORT_SYMBOL_GPL vmlinux 0x3cfd74b0 pinctrl_get_group_pins -EXPORT_SYMBOL_GPL vmlinux 0x3d15d5da devlink_trap_groups_unregister -EXPORT_SYMBOL_GPL vmlinux 0x3d2d5766 dev_pm_opp_find_freq_ceil -EXPORT_SYMBOL_GPL vmlinux 0x3d30421c ata_ncq_sdev_attrs -EXPORT_SYMBOL_GPL vmlinux 0x3d388324 dpm_resume_end -EXPORT_SYMBOL_GPL vmlinux 0x3d42b2b4 fuse_send_init -EXPORT_SYMBOL_GPL vmlinux 0x3d46f332 em_dev_register_perf_domain -EXPORT_SYMBOL_GPL vmlinux 0x3d478639 nvdimm_bus_register -EXPORT_SYMBOL_GPL vmlinux 0x3d510a7b rcu_jiffies_till_stall_check -EXPORT_SYMBOL_GPL vmlinux 0x3d55096f pinctrl_add_gpio_range -EXPORT_SYMBOL_GPL vmlinux 0x3d5ec125 devm_bitmap_alloc -EXPORT_SYMBOL_GPL vmlinux 0x3d76d755 efivar_entry_remove -EXPORT_SYMBOL_GPL vmlinux 0x3d7ea9fb crypto_dequeue_request -EXPORT_SYMBOL_GPL vmlinux 0x3d81330d i2c_handle_smbus_host_notify -EXPORT_SYMBOL_GPL vmlinux 0x3d84e4df net_selftest -EXPORT_SYMBOL_GPL vmlinux 0x3d8baf3b zs_huge_class_size -EXPORT_SYMBOL_GPL vmlinux 0x3d920471 usb_urb_ep_type_check -EXPORT_SYMBOL_GPL vmlinux 0x3da47473 efivar_entry_set -EXPORT_SYMBOL_GPL vmlinux 0x3daa2540 nf_hooks_lwtunnel_enabled -EXPORT_SYMBOL_GPL vmlinux 0x3db48927 sbitmap_any_bit_set -EXPORT_SYMBOL_GPL vmlinux 0x3dbb8cd3 ata_port_freeze -EXPORT_SYMBOL_GPL vmlinux 0x3dbe63c8 gpiod_get_optional -EXPORT_SYMBOL_GPL vmlinux 0x3de35e4b input_ff_flush -EXPORT_SYMBOL_GPL vmlinux 0x3de6795e __traceiter_sched_overutilized_tp -EXPORT_SYMBOL_GPL vmlinux 0x3de9cae1 crypto_remove_final -EXPORT_SYMBOL_GPL vmlinux 0x3decb9b0 fscrypt_d_revalidate -EXPORT_SYMBOL_GPL vmlinux 0x3df265af hwspin_lock_register -EXPORT_SYMBOL_GPL vmlinux 0x3df82d00 mce_log -EXPORT_SYMBOL_GPL vmlinux 0x3e0d855a register_ftrace_function -EXPORT_SYMBOL_GPL vmlinux 0x3e0dbb61 __traceiter_neigh_update -EXPORT_SYMBOL_GPL vmlinux 0x3e14e548 crypto_comp_compress -EXPORT_SYMBOL_GPL vmlinux 0x3e1c2879 __SCK__tp_func_devlink_trap_report -EXPORT_SYMBOL_GPL vmlinux 0x3e21a72b device_remove_groups -EXPORT_SYMBOL_GPL vmlinux 0x3e3d3a43 percpu_down_write -EXPORT_SYMBOL_GPL vmlinux 0x3e4a227f devm_pinctrl_register_and_init -EXPORT_SYMBOL_GPL vmlinux 0x3e5b3b36 vfio_pci_core_ioctl -EXPORT_SYMBOL_GPL vmlinux 0x3e7080cb mpi_read_from_buffer -EXPORT_SYMBOL_GPL vmlinux 0x3e8d6a36 usb_check_int_endpoints -EXPORT_SYMBOL_GPL vmlinux 0x3e9ac386 perf_event_update_userpage -EXPORT_SYMBOL_GPL vmlinux 0x3ea5196d apei_osc_setup -EXPORT_SYMBOL_GPL vmlinux 0x3ea52d66 pci_get_dsn -EXPORT_SYMBOL_GPL vmlinux 0x3ea935af gpiod_export_link -EXPORT_SYMBOL_GPL vmlinux 0x3ebeaeec tpm_pcr_read -EXPORT_SYMBOL_GPL vmlinux 0x3ec93255 hv_get_isolation_type -EXPORT_SYMBOL_GPL vmlinux 0x3ecb1b39 vtime_guest_exit -EXPORT_SYMBOL_GPL vmlinux 0x3ecd187a acpi_spi_count_resources -EXPORT_SYMBOL_GPL vmlinux 0x3ed23cfa regulator_get_error_flags -EXPORT_SYMBOL_GPL vmlinux 0x3ef051c8 crypto_inc -EXPORT_SYMBOL_GPL vmlinux 0x3ef257b6 __fat_fs_error -EXPORT_SYMBOL_GPL vmlinux 0x3efd1889 dax_direct_access -EXPORT_SYMBOL_GPL vmlinux 0x3f074ea0 devlink_port_attrs_set -EXPORT_SYMBOL_GPL vmlinux 0x3f1ca9be devm_hwspin_lock_free -EXPORT_SYMBOL_GPL vmlinux 0x3f22f7e5 ata_bmdma_port_intr -EXPORT_SYMBOL_GPL vmlinux 0x3f491f49 reset_control_bulk_reset -EXPORT_SYMBOL_GPL vmlinux 0x3f54d052 __devm_regmap_init -EXPORT_SYMBOL_GPL vmlinux 0x3f7edb79 devres_release_group -EXPORT_SYMBOL_GPL vmlinux 0x3f83dcd4 kobj_sysfs_ops -EXPORT_SYMBOL_GPL vmlinux 0x3f83f8d3 rcu_bind_current_to_nocb -EXPORT_SYMBOL_GPL vmlinux 0x3f84bcd7 dax_alive -EXPORT_SYMBOL_GPL vmlinux 0x3f8ab72e devlink_fmsg_bool_put -EXPORT_SYMBOL_GPL vmlinux 0x3f8fe102 exportfs_decode_fh -EXPORT_SYMBOL_GPL vmlinux 0x3fa1755f pskb_put -EXPORT_SYMBOL_GPL vmlinux 0x3fae6ab0 hv_vp_index -EXPORT_SYMBOL_GPL vmlinux 0x3fb8faae follow_pte -EXPORT_SYMBOL_GPL vmlinux 0x3fb9d1ce fwnode_get_named_child_node -EXPORT_SYMBOL_GPL vmlinux 0x3fcfa6fa trace_event_buffer_reserve -EXPORT_SYMBOL_GPL vmlinux 0x3fe35aea irq_bypass_unregister_consumer -EXPORT_SYMBOL_GPL vmlinux 0x3fe6c346 devlink_fmsg_binary_pair_put -EXPORT_SYMBOL_GPL vmlinux 0x3fea6176 perf_event_addr_filters_sync -EXPORT_SYMBOL_GPL vmlinux 0x3fefebd9 __SCK__tp_func_block_bio_remap -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 0x401e3a78 rcuwait_wake_up -EXPORT_SYMBOL_GPL vmlinux 0x4021adbe ata_acpi_gtm_xfermask -EXPORT_SYMBOL_GPL vmlinux 0x4039af2d platform_unregister_drivers -EXPORT_SYMBOL_GPL vmlinux 0x4039d897 __put_net -EXPORT_SYMBOL_GPL vmlinux 0x403a7e05 acpi_dma_request_slave_chan_by_index -EXPORT_SYMBOL_GPL vmlinux 0x403f9529 gpio_request_one -EXPORT_SYMBOL_GPL vmlinux 0x4044ca16 pkcs7_verify -EXPORT_SYMBOL_GPL vmlinux 0x40529c20 key_type_trusted -EXPORT_SYMBOL_GPL vmlinux 0x4065d168 pm_print_active_wakeup_sources -EXPORT_SYMBOL_GPL vmlinux 0x4069defd srcu_notifier_chain_unregister -EXPORT_SYMBOL_GPL vmlinux 0x406c4cb1 hrtimer_resolution -EXPORT_SYMBOL_GPL vmlinux 0x4071b517 out_of_line_wait_on_bit_timeout -EXPORT_SYMBOL_GPL vmlinux 0x407878bb gnttab_map_refs -EXPORT_SYMBOL_GPL vmlinux 0x4099f919 tun_ptr_free -EXPORT_SYMBOL_GPL vmlinux 0x40a0aafc __flush_tlb_all -EXPORT_SYMBOL_GPL vmlinux 0x40a406f9 da903x_write -EXPORT_SYMBOL_GPL vmlinux 0x40aa916b dev_pm_opp_unregister_set_opp_helper -EXPORT_SYMBOL_GPL vmlinux 0x40badf7e led_get_default_pattern -EXPORT_SYMBOL_GPL vmlinux 0x40bd7ab0 bio_add_zone_append_page -EXPORT_SYMBOL_GPL vmlinux 0x40bda88c kobject_get_path -EXPORT_SYMBOL_GPL vmlinux 0x40cf00c5 uart_get_rs485_mode -EXPORT_SYMBOL_GPL vmlinux 0x40cf8c5a bpf_trace_run6 -EXPORT_SYMBOL_GPL vmlinux 0x40e073a3 ehci_resume -EXPORT_SYMBOL_GPL vmlinux 0x40ee00dc idr_alloc_u32 -EXPORT_SYMBOL_GPL vmlinux 0x40f0683e reset_control_put -EXPORT_SYMBOL_GPL vmlinux 0x40f3bd8e regmap_field_bulk_alloc -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 0x4102bcbe device_property_read_string_array -EXPORT_SYMBOL_GPL vmlinux 0x4107e18d ehci_setup -EXPORT_SYMBOL_GPL vmlinux 0x410bbfad irq_domain_simple_ops -EXPORT_SYMBOL_GPL vmlinux 0x4119e697 usb_acpi_set_power_state -EXPORT_SYMBOL_GPL vmlinux 0x412548ec pm_generic_suspend_late -EXPORT_SYMBOL_GPL vmlinux 0x4128e46e ata_bmdma_qc_prep -EXPORT_SYMBOL_GPL vmlinux 0x4129f5ee kernel_fpu_begin_mask -EXPORT_SYMBOL_GPL vmlinux 0x412bc681 ring_buffer_empty_cpu -EXPORT_SYMBOL_GPL vmlinux 0x41441be8 regulator_bulk_disable -EXPORT_SYMBOL_GPL vmlinux 0x4146585e fuse_sync_release -EXPORT_SYMBOL_GPL vmlinux 0x414d119a videomode_from_timings -EXPORT_SYMBOL_GPL vmlinux 0x415fc5c4 dev_pm_opp_get_required_pstate -EXPORT_SYMBOL_GPL vmlinux 0x41814cb8 dirty_writeback_interval -EXPORT_SYMBOL_GPL vmlinux 0x418873cc irq_bypass_register_producer -EXPORT_SYMBOL_GPL vmlinux 0x419383d3 dmaengine_desc_attach_metadata -EXPORT_SYMBOL_GPL vmlinux 0x419adad5 fanout_mutex -EXPORT_SYMBOL_GPL vmlinux 0x419e7efd sfp_module_stop -EXPORT_SYMBOL_GPL vmlinux 0x41a46bf9 pci_epc_mem_init -EXPORT_SYMBOL_GPL vmlinux 0x41a73ae6 iommu_iova_to_phys -EXPORT_SYMBOL_GPL vmlinux 0x41addfaf xfrm_dev_resume -EXPORT_SYMBOL_GPL vmlinux 0x41b7e8e2 register_kretprobe -EXPORT_SYMBOL_GPL vmlinux 0x41b9a6e6 bsg_unregister_queue -EXPORT_SYMBOL_GPL vmlinux 0x41bce49a ghes_register_vendor_record_notifier -EXPORT_SYMBOL_GPL vmlinux 0x41c2bac9 pcie_reset_flr -EXPORT_SYMBOL_GPL vmlinux 0x41c62131 __clk_mux_determine_rate_closest -EXPORT_SYMBOL_GPL vmlinux 0x41cd6049 scsi_dh_attach -EXPORT_SYMBOL_GPL vmlinux 0x41d16aec __devm_regmap_init_i2c -EXPORT_SYMBOL_GPL vmlinux 0x41ed3cec eventfd_ctx_remove_wait_queue -EXPORT_SYMBOL_GPL vmlinux 0x41f4ddee sysfs_unmerge_group -EXPORT_SYMBOL_GPL vmlinux 0x42041512 i2c_get_dma_safe_msg_buf -EXPORT_SYMBOL_GPL vmlinux 0x4206b55a list_lru_add -EXPORT_SYMBOL_GPL vmlinux 0x420f3d01 nvmem_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x421f4a2f dax_inode -EXPORT_SYMBOL_GPL vmlinux 0x42278944 register_wide_hw_breakpoint -EXPORT_SYMBOL_GPL vmlinux 0x422e578a __SCT__tp_func_add_device_to_group -EXPORT_SYMBOL_GPL vmlinux 0x422f165d iomap_page_mkwrite -EXPORT_SYMBOL_GPL vmlinux 0x423eed62 regulator_set_current_limit -EXPORT_SYMBOL_GPL vmlinux 0x42635d55 pm_suspend_global_flags -EXPORT_SYMBOL_GPL vmlinux 0x426452a3 acpi_evaluation_failure_warn -EXPORT_SYMBOL_GPL vmlinux 0x4269a3d5 pci_stop_and_remove_bus_device_locked -EXPORT_SYMBOL_GPL vmlinux 0x42825ce2 rcu_scheduler_active -EXPORT_SYMBOL_GPL vmlinux 0x4282979a badblocks_exit -EXPORT_SYMBOL_GPL vmlinux 0x429e07c1 adp5520_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x42c50d2e inet6_hash_connect -EXPORT_SYMBOL_GPL vmlinux 0x42c5588b crypto_stats_rng_generate -EXPORT_SYMBOL_GPL vmlinux 0x42d1bbae __netdev_watchdog_up -EXPORT_SYMBOL_GPL vmlinux 0x42e407bb phy_modify_changed -EXPORT_SYMBOL_GPL vmlinux 0x42e445f6 clk_mux_val_to_index -EXPORT_SYMBOL_GPL vmlinux 0x42e9d0da ring_buffer_unlock_commit -EXPORT_SYMBOL_GPL vmlinux 0x42f59082 fwnode_get_next_available_child_node -EXPORT_SYMBOL_GPL vmlinux 0x42f728aa mctrl_gpio_get_outputs -EXPORT_SYMBOL_GPL vmlinux 0x4304d9a6 fib_new_table -EXPORT_SYMBOL_GPL vmlinux 0x430d88ec __traceiter_arm_event -EXPORT_SYMBOL_GPL vmlinux 0x4342bf9e rio_mport_read_config_16 -EXPORT_SYMBOL_GPL vmlinux 0x4357074b fpstate_clear_xstate_component -EXPORT_SYMBOL_GPL vmlinux 0x435f3a13 __tracepoint_fib6_table_lookup -EXPORT_SYMBOL_GPL vmlinux 0x436aa65f pci_disable_pcie_error_reporting -EXPORT_SYMBOL_GPL vmlinux 0x436d817f mpi_clear_bit -EXPORT_SYMBOL_GPL vmlinux 0x4376a113 vfs_removexattr -EXPORT_SYMBOL_GPL vmlinux 0x437eb1df ipv6_mod_enabled -EXPORT_SYMBOL_GPL vmlinux 0x438d8df2 iova_cache_get -EXPORT_SYMBOL_GPL vmlinux 0x438ec066 find_vpid -EXPORT_SYMBOL_GPL vmlinux 0x4397f61b devm_led_classdev_unregister -EXPORT_SYMBOL_GPL vmlinux 0x439ed8b5 rio_release_dma -EXPORT_SYMBOL_GPL vmlinux 0x43aa319e lease_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x43ad046e fwnode_property_read_u32_array -EXPORT_SYMBOL_GPL vmlinux 0x43f349fe blk_abort_request -EXPORT_SYMBOL_GPL vmlinux 0x43f56e82 ata_xfer_mode2shift -EXPORT_SYMBOL_GPL vmlinux 0x43f7eee8 devm_of_phy_provider_unregister -EXPORT_SYMBOL_GPL vmlinux 0x43f81957 clk_round_rate -EXPORT_SYMBOL_GPL vmlinux 0x43f8c5e3 nd_blk_region_provider_data -EXPORT_SYMBOL_GPL vmlinux 0x43f92edd wait_for_initramfs -EXPORT_SYMBOL_GPL vmlinux 0x4401e6c2 mpi_cmpabs -EXPORT_SYMBOL_GPL vmlinux 0x44050b89 bio_associate_blkg_from_css -EXPORT_SYMBOL_GPL vmlinux 0x44091f03 crypto_shash_setkey -EXPORT_SYMBOL_GPL vmlinux 0x442deaa9 poll_state_synchronize_rcu -EXPORT_SYMBOL_GPL vmlinux 0x44458297 md_stop_writes -EXPORT_SYMBOL_GPL vmlinux 0x444cb411 devfreq_event_get_edev_count -EXPORT_SYMBOL_GPL vmlinux 0x44539af7 gnttab_pages_clear_private -EXPORT_SYMBOL_GPL vmlinux 0x445a09c0 nvmem_device_cell_write -EXPORT_SYMBOL_GPL vmlinux 0x446b227b nexthop_for_each_fib6_nh -EXPORT_SYMBOL_GPL vmlinux 0x4473a83b usb_hcd_poll_rh_status -EXPORT_SYMBOL_GPL vmlinux 0x4473d520 xfrm_audit_state_notfound_simple -EXPORT_SYMBOL_GPL vmlinux 0x4476cc38 gnttab_pages_set_private -EXPORT_SYMBOL_GPL vmlinux 0x447a65a6 dax_iomap_fault -EXPORT_SYMBOL_GPL vmlinux 0x4484a5a4 wait_for_device_probe -EXPORT_SYMBOL_GPL vmlinux 0x448c7dd2 dma_buf_pin -EXPORT_SYMBOL_GPL vmlinux 0x449098e5 __clk_determine_rate -EXPORT_SYMBOL_GPL vmlinux 0x44a4a404 __vfs_removexattr_locked -EXPORT_SYMBOL_GPL vmlinux 0x44bae227 bit_wait_timeout -EXPORT_SYMBOL_GPL vmlinux 0x44cd0f2d spi_sync_locked -EXPORT_SYMBOL_GPL vmlinux 0x44cf8cf0 blk_zone_cond_str -EXPORT_SYMBOL_GPL vmlinux 0x44daf84a pm_generic_restore_early -EXPORT_SYMBOL_GPL vmlinux 0x44e1e9aa balloon_stats -EXPORT_SYMBOL_GPL vmlinux 0x44f6a2c2 bus_unregister -EXPORT_SYMBOL_GPL vmlinux 0x44fc79b6 set_capacity_and_notify -EXPORT_SYMBOL_GPL vmlinux 0x44fce299 __dev_forward_skb -EXPORT_SYMBOL_GPL vmlinux 0x450110e8 perf_assign_events -EXPORT_SYMBOL_GPL vmlinux 0x4507f4a8 cpuhp_tasks_frozen -EXPORT_SYMBOL_GPL vmlinux 0x450ca5b7 rio_release_outb_dbell -EXPORT_SYMBOL_GPL vmlinux 0x452140de mm_kobj -EXPORT_SYMBOL_GPL vmlinux 0x452ccee3 i2c_for_each_dev -EXPORT_SYMBOL_GPL vmlinux 0x4531624f usb_decode_ctrl -EXPORT_SYMBOL_GPL vmlinux 0x4531ab62 copy_from_kernel_nofault -EXPORT_SYMBOL_GPL vmlinux 0x4541fe0d mtrr_state -EXPORT_SYMBOL_GPL vmlinux 0x4544df69 devm_clk_register -EXPORT_SYMBOL_GPL vmlinux 0x45501fd2 ping_hash -EXPORT_SYMBOL_GPL vmlinux 0x45558f56 clk_unregister_fixed_factor -EXPORT_SYMBOL_GPL vmlinux 0x45664bef dma_buf_attach -EXPORT_SYMBOL_GPL vmlinux 0x457594fa crypto_alg_list -EXPORT_SYMBOL_GPL vmlinux 0x45791e23 debugfs_create_u32_array -EXPORT_SYMBOL_GPL vmlinux 0x45935f2e rtc_update_irq -EXPORT_SYMBOL_GPL vmlinux 0x459e6151 mm_unaccount_pinned_pages -EXPORT_SYMBOL_GPL vmlinux 0x45cb351c regulator_map_voltage_pickable_linear_range -EXPORT_SYMBOL_GPL vmlinux 0x45d14bdf hypercall_page -EXPORT_SYMBOL_GPL vmlinux 0x45d6057f ata_bmdma_qc_issue -EXPORT_SYMBOL_GPL vmlinux 0x45da1acd fscrypt_drop_inode -EXPORT_SYMBOL_GPL vmlinux 0x46013233 net_dec_ingress_queue -EXPORT_SYMBOL_GPL vmlinux 0x4607dff2 alarm_restart -EXPORT_SYMBOL_GPL vmlinux 0x460f4d16 lwtunnel_state_alloc -EXPORT_SYMBOL_GPL vmlinux 0x461b87da nvdimm_clear_poison -EXPORT_SYMBOL_GPL vmlinux 0x462abb24 tps6586x_write -EXPORT_SYMBOL_GPL vmlinux 0x462fefdc usb_lock_device_for_reset -EXPORT_SYMBOL_GPL vmlinux 0x4636f9ab pm_runtime_force_suspend -EXPORT_SYMBOL_GPL vmlinux 0x463d8290 __irq_alloc_descs -EXPORT_SYMBOL_GPL vmlinux 0x46578228 cgroup_path_ns -EXPORT_SYMBOL_GPL vmlinux 0x4667b520 vc_scrolldelta_helper -EXPORT_SYMBOL_GPL vmlinux 0x4688d7ec pvclock_gtod_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x468fe4bf blkdev_zone_mgmt -EXPORT_SYMBOL_GPL vmlinux 0x46a6c9ef hv_get_tsc_page -EXPORT_SYMBOL_GPL vmlinux 0x46aa61e1 regmap_test_bits -EXPORT_SYMBOL_GPL vmlinux 0x46ab7978 rio_mport_read_config_8 -EXPORT_SYMBOL_GPL vmlinux 0x46b59597 usb_anchor_suspend_wakeups -EXPORT_SYMBOL_GPL vmlinux 0x46b8e068 regmap_raw_read -EXPORT_SYMBOL_GPL vmlinux 0x46b8f6ac irq_domain_translate_onecell -EXPORT_SYMBOL_GPL vmlinux 0x46c5be22 clk_multiplier_ops -EXPORT_SYMBOL_GPL vmlinux 0x46d810dd led_set_brightness_sync -EXPORT_SYMBOL_GPL vmlinux 0x46e820ea dev_pm_opp_set_prop_name -EXPORT_SYMBOL_GPL vmlinux 0x46f03fe3 iomap_file_unshare -EXPORT_SYMBOL_GPL vmlinux 0x46f42be0 devlink_fmsg_u8_put -EXPORT_SYMBOL_GPL vmlinux 0x46f48cc2 icc_disable -EXPORT_SYMBOL_GPL vmlinux 0x46fe461a usb_get_urb -EXPORT_SYMBOL_GPL vmlinux 0x47205407 devm_platform_ioremap_resource -EXPORT_SYMBOL_GPL vmlinux 0x47229b5c gpio_request -EXPORT_SYMBOL_GPL vmlinux 0x474d9f87 pci_user_write_config_byte -EXPORT_SYMBOL_GPL vmlinux 0x4761f17c register_netevent_notifier -EXPORT_SYMBOL_GPL vmlinux 0x47647314 usb_add_phy_dev -EXPORT_SYMBOL_GPL vmlinux 0x476bf8d3 fat_setattr -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 0x478fe690 inet_csk_clone_lock -EXPORT_SYMBOL_GPL vmlinux 0x4791cb91 apei_mce_report_mem_error -EXPORT_SYMBOL_GPL vmlinux 0x479f7d4b clk_bulk_disable -EXPORT_SYMBOL_GPL vmlinux 0x47a375b1 nvdimm_to_bus -EXPORT_SYMBOL_GPL vmlinux 0x47aab9f7 irq_gc_ack_set_bit -EXPORT_SYMBOL_GPL vmlinux 0x47aad3b9 have_governor_per_policy -EXPORT_SYMBOL_GPL vmlinux 0x47ae9d59 cpu_latency_qos_add_request -EXPORT_SYMBOL_GPL vmlinux 0x47b09d97 tty_kclose -EXPORT_SYMBOL_GPL vmlinux 0x47bfe804 sata_set_spd -EXPORT_SYMBOL_GPL vmlinux 0x47c524b6 regulator_bulk_get -EXPORT_SYMBOL_GPL vmlinux 0x47d0eea2 acpi_lpat_temp_to_raw -EXPORT_SYMBOL_GPL vmlinux 0x47de0dc7 clk_unregister_mux -EXPORT_SYMBOL_GPL vmlinux 0x47ea4902 regulator_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0x480305ca kmsg_dump_rewind -EXPORT_SYMBOL_GPL vmlinux 0x480888a8 usb_submit_urb -EXPORT_SYMBOL_GPL vmlinux 0x48154830 ip6_sk_redirect -EXPORT_SYMBOL_GPL vmlinux 0x481f9b7d mpi_mulm -EXPORT_SYMBOL_GPL vmlinux 0x4828e77b acpi_scan_lock_acquire -EXPORT_SYMBOL_GPL vmlinux 0x48298287 usb_alloc_streams -EXPORT_SYMBOL_GPL vmlinux 0x4835abcf __blk_mq_debugfs_rq_show -EXPORT_SYMBOL_GPL vmlinux 0x4837d590 battery_hook_register -EXPORT_SYMBOL_GPL vmlinux 0x4840dc84 dma_resv_test_signaled -EXPORT_SYMBOL_GPL vmlinux 0x4856da4a ip6_datagram_connect -EXPORT_SYMBOL_GPL vmlinux 0x48598fe9 replace_page_cache_page -EXPORT_SYMBOL_GPL vmlinux 0x4867baaf devlink_unregister -EXPORT_SYMBOL_GPL vmlinux 0x486dedc3 ghes_unregister_vendor_record_notifier -EXPORT_SYMBOL_GPL vmlinux 0x4883b1fd nd_region_provider_data -EXPORT_SYMBOL_GPL vmlinux 0x4892f545 regmap_bulk_read -EXPORT_SYMBOL_GPL vmlinux 0x489ae60a pwmchip_add -EXPORT_SYMBOL_GPL vmlinux 0x48a3a923 pkcs7_get_content_data -EXPORT_SYMBOL_GPL vmlinux 0x48a3d20b mctrl_gpio_get -EXPORT_SYMBOL_GPL vmlinux 0x48a4a24e __SCK__tp_func_non_standard_event -EXPORT_SYMBOL_GPL vmlinux 0x48a4e30e acpi_device_fwnode_ops -EXPORT_SYMBOL_GPL vmlinux 0x48d62f08 irq_domain_free_fwnode -EXPORT_SYMBOL_GPL vmlinux 0x48e3e8a4 sock_diag_register -EXPORT_SYMBOL_GPL vmlinux 0x48e89d78 phy_restart_aneg -EXPORT_SYMBOL_GPL vmlinux 0x48e8d12a crypto_unregister_ahash -EXPORT_SYMBOL_GPL vmlinux 0x48f36da2 usb_alloc_dev -EXPORT_SYMBOL_GPL vmlinux 0x48f49400 apei_hest_parse -EXPORT_SYMBOL_GPL vmlinux 0x48ffee8b skb_append_pagefrags -EXPORT_SYMBOL_GPL vmlinux 0x49051134 __SCK__tp_func_detach_device_from_domain -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 0x495a4221 __SCT__tp_func_rpm_return_int -EXPORT_SYMBOL_GPL vmlinux 0x495e55b6 get_net_ns_by_fd -EXPORT_SYMBOL_GPL vmlinux 0x49608959 migrate_disable -EXPORT_SYMBOL_GPL vmlinux 0x497504d9 alarmtimer_get_rtcdev -EXPORT_SYMBOL_GPL vmlinux 0x497e0e0c relay_buf_full -EXPORT_SYMBOL_GPL vmlinux 0x49809769 xhci_check_bandwidth -EXPORT_SYMBOL_GPL vmlinux 0x499043d3 crypto_init_queue -EXPORT_SYMBOL_GPL vmlinux 0x49951708 sev_enable_key -EXPORT_SYMBOL_GPL vmlinux 0x49958cf9 usb_wait_anchor_empty_timeout -EXPORT_SYMBOL_GPL vmlinux 0x499ae07d fib_rule_matchall -EXPORT_SYMBOL_GPL vmlinux 0x49a47755 fuse_fill_super_common -EXPORT_SYMBOL_GPL vmlinux 0x49ad9b60 em_dev_unregister_perf_domain -EXPORT_SYMBOL_GPL vmlinux 0x49ae3dc1 kset_create_and_add -EXPORT_SYMBOL_GPL vmlinux 0x49cd25ed alloc_workqueue -EXPORT_SYMBOL_GPL vmlinux 0x49e3b010 usb_poison_urb -EXPORT_SYMBOL_GPL vmlinux 0x49e42e22 splice_to_pipe -EXPORT_SYMBOL_GPL vmlinux 0x49e96999 cond_synchronize_rcu -EXPORT_SYMBOL_GPL vmlinux 0x49e9b81d securityfs_create_dir -EXPORT_SYMBOL_GPL vmlinux 0x49f0ee49 sock_inuse_get -EXPORT_SYMBOL_GPL vmlinux 0x49f26bac pwm_apply_state -EXPORT_SYMBOL_GPL vmlinux 0x4a09a948 user_describe -EXPORT_SYMBOL_GPL vmlinux 0x4a10a081 spi_alloc_device -EXPORT_SYMBOL_GPL vmlinux 0x4a17ed66 sysrq_mask -EXPORT_SYMBOL_GPL vmlinux 0x4a22306a clk_hw_get_parent_by_index -EXPORT_SYMBOL_GPL vmlinux 0x4a2aecda of_phy_get -EXPORT_SYMBOL_GPL vmlinux 0x4a33635f dm_bio_from_per_bio_data -EXPORT_SYMBOL_GPL vmlinux 0x4a420d09 acpi_bus_detach_private_data -EXPORT_SYMBOL_GPL vmlinux 0x4a502790 crypto_register_template -EXPORT_SYMBOL_GPL vmlinux 0x4a561abc pci_user_read_config_word -EXPORT_SYMBOL_GPL vmlinux 0x4a606df5 device_dma_supported -EXPORT_SYMBOL_GPL vmlinux 0x4a606e6e devlink_remote_reload_actions_performed -EXPORT_SYMBOL_GPL vmlinux 0x4a62cb29 ipv6_opt_accepted -EXPORT_SYMBOL_GPL vmlinux 0x4a64a0a7 nfnl_ct_hook -EXPORT_SYMBOL_GPL vmlinux 0x4a7b05ab devm_pm_opp_register_set_opp_helper -EXPORT_SYMBOL_GPL vmlinux 0x4a924bc6 blkg_rwstat_recursive_sum -EXPORT_SYMBOL_GPL vmlinux 0x4a96f27b fuse_init_fs_context_submount -EXPORT_SYMBOL_GPL vmlinux 0x4a9dfdf5 ata_sas_scsi_ioctl -EXPORT_SYMBOL_GPL vmlinux 0x4ab965bf sbitmap_add_wait_queue -EXPORT_SYMBOL_GPL vmlinux 0x4ac706bb dax_copy_to_iter -EXPORT_SYMBOL_GPL vmlinux 0x4ad8fd7b is_virtio_device -EXPORT_SYMBOL_GPL vmlinux 0x4add9fe6 security_inode_mkdir -EXPORT_SYMBOL_GPL vmlinux 0x4aeb46fb spi_unregister_device -EXPORT_SYMBOL_GPL vmlinux 0x4b2736b1 subsys_dev_iter_init -EXPORT_SYMBOL_GPL vmlinux 0x4b281d2e pci_aer_clear_nonfatal_status -EXPORT_SYMBOL_GPL vmlinux 0x4b303c33 blk_queue_rq_timeout -EXPORT_SYMBOL_GPL vmlinux 0x4b40435b rio_release_inb_mbox -EXPORT_SYMBOL_GPL vmlinux 0x4b40a38e blk_next_bio -EXPORT_SYMBOL_GPL vmlinux 0x4b4c79c3 regulator_put -EXPORT_SYMBOL_GPL vmlinux 0x4b51f74c ata_xfer_mode2mask -EXPORT_SYMBOL_GPL vmlinux 0x4b56ce05 xenmem_reservation_increase -EXPORT_SYMBOL_GPL vmlinux 0x4b66e015 bpf_map_inc -EXPORT_SYMBOL_GPL vmlinux 0x4b6c12df device_match_devt -EXPORT_SYMBOL_GPL vmlinux 0x4b762828 start_thread -EXPORT_SYMBOL_GPL vmlinux 0x4b789733 fscrypt_ioctl_remove_key -EXPORT_SYMBOL_GPL vmlinux 0x4b7b1b0c tcp_sendmsg_locked -EXPORT_SYMBOL_GPL vmlinux 0x4b817fd1 register_pernet_subsys -EXPORT_SYMBOL_GPL vmlinux 0x4b88b17a find_get_pid -EXPORT_SYMBOL_GPL vmlinux 0x4b931968 xen_features -EXPORT_SYMBOL_GPL vmlinux 0x4b964ad6 percpu_up_write -EXPORT_SYMBOL_GPL vmlinux 0x4b987196 governor_sysfs_ops -EXPORT_SYMBOL_GPL vmlinux 0x4b9bf492 exportfs_encode_fh -EXPORT_SYMBOL_GPL vmlinux 0x4bb6b88a i2c_dw_adjust_bus_speed -EXPORT_SYMBOL_GPL vmlinux 0x4bbaa97c device_register -EXPORT_SYMBOL_GPL vmlinux 0x4bbcaa0f pci_epf_destroy -EXPORT_SYMBOL_GPL vmlinux 0x4bc8727f xen_balloon_init -EXPORT_SYMBOL_GPL vmlinux 0x4bd35e6e __SCK__tp_func_cpu_frequency -EXPORT_SYMBOL_GPL vmlinux 0x4bd4e370 dma_buf_export -EXPORT_SYMBOL_GPL vmlinux 0x4bd6f08b misc_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0x4bd7d3f7 adp5520_set_bits -EXPORT_SYMBOL_GPL vmlinux 0x4bd9e14f xfrm_local_error -EXPORT_SYMBOL_GPL vmlinux 0x4be727c2 gpiochip_get_desc -EXPORT_SYMBOL_GPL vmlinux 0x4bf97919 vfio_pci_core_unregister_device -EXPORT_SYMBOL_GPL vmlinux 0x4c07ea2b regulator_set_ramp_delay_regmap -EXPORT_SYMBOL_GPL vmlinux 0x4c0c440f generic_fh_to_dentry -EXPORT_SYMBOL_GPL vmlinux 0x4c13e7b5 tcp_reno_undo_cwnd -EXPORT_SYMBOL_GPL vmlinux 0x4c22d8df pm_clk_resume -EXPORT_SYMBOL_GPL vmlinux 0x4c23373d call_switchdev_notifiers -EXPORT_SYMBOL_GPL vmlinux 0x4c243366 dst_blackhole_mtu -EXPORT_SYMBOL_GPL vmlinux 0x4c2c0ea7 evtchn_make_refcounted -EXPORT_SYMBOL_GPL vmlinux 0x4c382de4 debugfs_create_u32 -EXPORT_SYMBOL_GPL vmlinux 0x4c49f1de hv_clock_per_cpu -EXPORT_SYMBOL_GPL vmlinux 0x4c4fa379 crypto_ahash_digest -EXPORT_SYMBOL_GPL vmlinux 0x4c52037b cpufreq_cpu_get -EXPORT_SYMBOL_GPL vmlinux 0x4c549b36 __traceiter_xhci_dbg_quirks -EXPORT_SYMBOL_GPL vmlinux 0x4c59f2ae __pci_hp_register -EXPORT_SYMBOL_GPL vmlinux 0x4c614fa4 pci_user_read_config_byte -EXPORT_SYMBOL_GPL vmlinux 0x4c6ac3ef uart_console_write -EXPORT_SYMBOL_GPL vmlinux 0x4c6f47ca badblocks_check -EXPORT_SYMBOL_GPL vmlinux 0x4c762b5c x86_stepping -EXPORT_SYMBOL_GPL vmlinux 0x4c7cdea0 inet_csk_reqsk_queue_hash_add -EXPORT_SYMBOL_GPL vmlinux 0x4c82fe9d pwm_lpss_probe -EXPORT_SYMBOL_GPL vmlinux 0x4c8adfe1 hv_root_partition -EXPORT_SYMBOL_GPL vmlinux 0x4c9175c6 pinctrl_put -EXPORT_SYMBOL_GPL vmlinux 0x4c9333ee fixed_phy_register -EXPORT_SYMBOL_GPL vmlinux 0x4c9577aa phy_driver_is_genphy_10g -EXPORT_SYMBOL_GPL vmlinux 0x4ca7909f regmap_get_val_endian -EXPORT_SYMBOL_GPL vmlinux 0x4ca79a77 eventfd_ctx_fileget -EXPORT_SYMBOL_GPL vmlinux 0x4cb19123 ptp_classify_raw -EXPORT_SYMBOL_GPL vmlinux 0x4cb1cf64 nf_ct_hook -EXPORT_SYMBOL_GPL vmlinux 0x4cb27100 ktime_get_snapshot -EXPORT_SYMBOL_GPL vmlinux 0x4cc505f2 devres_remove -EXPORT_SYMBOL_GPL vmlinux 0x4ccf1050 devlink_resource_occ_get_unregister -EXPORT_SYMBOL_GPL vmlinux 0x4cf374e0 regulator_enable_regmap -EXPORT_SYMBOL_GPL vmlinux 0x4cf699b8 vfio_pci_core_set_params -EXPORT_SYMBOL_GPL vmlinux 0x4cf76e61 security_kernel_post_read_file -EXPORT_SYMBOL_GPL vmlinux 0x4d0015e2 cpu_hotplug_disable -EXPORT_SYMBOL_GPL vmlinux 0x4d082050 of_pwm_get -EXPORT_SYMBOL_GPL vmlinux 0x4d0c47f2 netlink_remove_tap -EXPORT_SYMBOL_GPL vmlinux 0x4d2f1aad __tracepoint_arm_event -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 0x4d77d5ad blkdev_nr_zones -EXPORT_SYMBOL_GPL vmlinux 0x4d792054 mptcp_pm_get_local_addr_max -EXPORT_SYMBOL_GPL vmlinux 0x4d95b7bd vfio_unregister_group_dev -EXPORT_SYMBOL_GPL vmlinux 0x4da30e4f pingv6_prot -EXPORT_SYMBOL_GPL vmlinux 0x4da6c76c udp_tunnel_nic_ops -EXPORT_SYMBOL_GPL vmlinux 0x4dae16e4 i2c_put_dma_safe_msg_buf -EXPORT_SYMBOL_GPL vmlinux 0x4dbc3be8 fsnotify_add_mark -EXPORT_SYMBOL_GPL vmlinux 0x4dbdc3d3 pci_enable_ats -EXPORT_SYMBOL_GPL vmlinux 0x4dd9d14d cn_netlink_send_mult -EXPORT_SYMBOL_GPL vmlinux 0x4ddcf563 serial8250_get_port -EXPORT_SYMBOL_GPL vmlinux 0x4de17ab3 usb_state_string -EXPORT_SYMBOL_GPL vmlinux 0x4deced9a pci_epc_map_addr -EXPORT_SYMBOL_GPL vmlinux 0x4e0d90ba devm_reset_control_array_get -EXPORT_SYMBOL_GPL vmlinux 0x4e0fb7c5 pm_generic_poweroff -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 0x4e1c7ab3 set_cpus_allowed_ptr -EXPORT_SYMBOL_GPL vmlinux 0x4e2185d0 skb_segment -EXPORT_SYMBOL_GPL vmlinux 0x4e2247ee crypto_grab_akcipher -EXPORT_SYMBOL_GPL vmlinux 0x4e4abd7a ata_common_sdev_attrs -EXPORT_SYMBOL_GPL vmlinux 0x4e5ee273 tick_nohz_full_mask -EXPORT_SYMBOL_GPL vmlinux 0x4e5f5e7e dev_fill_forward_path -EXPORT_SYMBOL_GPL vmlinux 0x4e6a1a4e gpiod_get_array_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0x4e7b8f29 dm_report_zones -EXPORT_SYMBOL_GPL vmlinux 0x4e84f216 ata_bmdma_status -EXPORT_SYMBOL_GPL vmlinux 0x4e9251ad __tracepoint_powernv_throttle -EXPORT_SYMBOL_GPL vmlinux 0x4e973670 free_vm_area -EXPORT_SYMBOL_GPL vmlinux 0x4eac5fc1 cpu_mitigations_auto_nosmt -EXPORT_SYMBOL_GPL vmlinux 0x4ecab70a tty_put_char -EXPORT_SYMBOL_GPL vmlinux 0x4ed5633f rtnl_get_net_ns_capable -EXPORT_SYMBOL_GPL vmlinux 0x4ed6fc88 rio_dev_put -EXPORT_SYMBOL_GPL vmlinux 0x4ed84449 fb_deferred_io_init -EXPORT_SYMBOL_GPL vmlinux 0x4ed943a1 acpi_dma_configure_id -EXPORT_SYMBOL_GPL vmlinux 0x4ede7e1d sdev_evt_send -EXPORT_SYMBOL_GPL vmlinux 0x4eee0f23 ethnl_cable_test_finished -EXPORT_SYMBOL_GPL vmlinux 0x4ef5bcf4 perf_swevent_get_recursion_context -EXPORT_SYMBOL_GPL vmlinux 0x4efcf021 mpi_normalize -EXPORT_SYMBOL_GPL vmlinux 0x4f0373ee devm_gpiod_get_optional -EXPORT_SYMBOL_GPL vmlinux 0x4f0e437d driver_deferred_probe_check_state -EXPORT_SYMBOL_GPL vmlinux 0x4f20e5aa iommu_map_sg -EXPORT_SYMBOL_GPL vmlinux 0x4f2c996d kmsg_dump_get_line -EXPORT_SYMBOL_GPL vmlinux 0x4f467dfa of_icc_xlate_onecell -EXPORT_SYMBOL_GPL vmlinux 0x4f54ae4d __tracepoint_io_page_fault -EXPORT_SYMBOL_GPL vmlinux 0x4f57345d tracepoint_probe_register -EXPORT_SYMBOL_GPL vmlinux 0x4f6a07fe show_rcu_gp_kthreads -EXPORT_SYMBOL_GPL vmlinux 0x4f6b9478 blk_mq_sched_try_insert_merge -EXPORT_SYMBOL_GPL vmlinux 0x4f6f1e26 nfs_ssc_unregister -EXPORT_SYMBOL_GPL vmlinux 0x4f72a987 uart_parse_options -EXPORT_SYMBOL_GPL vmlinux 0x4f80b565 thermal_zone_get_temp -EXPORT_SYMBOL_GPL vmlinux 0x4f82f67e tty_port_link_device -EXPORT_SYMBOL_GPL vmlinux 0x4f8546af cpuidle_poll_state_init -EXPORT_SYMBOL_GPL vmlinux 0x4f886320 __SCK__tp_func_attach_device_to_domain -EXPORT_SYMBOL_GPL vmlinux 0x4f8c498d devlink_resource_register -EXPORT_SYMBOL_GPL vmlinux 0x4f9b12e5 dev_pm_get_subsys_data -EXPORT_SYMBOL_GPL vmlinux 0x4fdc945d sata_deb_timing_normal -EXPORT_SYMBOL_GPL vmlinux 0x4fe13414 clk_hw_get_parent -EXPORT_SYMBOL_GPL vmlinux 0x4fe1eddf unregister_netevent_notifier -EXPORT_SYMBOL_GPL vmlinux 0x4fe3c09d usb_match_one_id -EXPORT_SYMBOL_GPL vmlinux 0x4ff39735 srcu_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0x50017b56 memunmap_pages -EXPORT_SYMBOL_GPL vmlinux 0x500c768c apei_exec_read_register -EXPORT_SYMBOL_GPL vmlinux 0x500fde6e debugfs_create_x8 -EXPORT_SYMBOL_GPL vmlinux 0x5021cf6c dev_pm_opp_get_opp_table -EXPORT_SYMBOL_GPL vmlinux 0x5026585c xen_irq_from_gsi -EXPORT_SYMBOL_GPL vmlinux 0x50310121 fuse_dev_install -EXPORT_SYMBOL_GPL vmlinux 0x50371440 regulator_get_voltage_rdev -EXPORT_SYMBOL_GPL vmlinux 0x503e1557 __devm_reset_control_bulk_get -EXPORT_SYMBOL_GPL vmlinux 0x504edef3 invalidate_inode_pages2_range -EXPORT_SYMBOL_GPL vmlinux 0x5066e77d tpm_tis_resume -EXPORT_SYMBOL_GPL vmlinux 0x506aa7cd regulator_get_voltage -EXPORT_SYMBOL_GPL vmlinux 0x507718c3 __tracepoint_map -EXPORT_SYMBOL_GPL vmlinux 0x5091b823 ring_buffer_read_start -EXPORT_SYMBOL_GPL vmlinux 0x509d5f55 clk_divider_ro_ops -EXPORT_SYMBOL_GPL vmlinux 0x50a387af crypto_alloc_aead -EXPORT_SYMBOL_GPL vmlinux 0x50ad9dbe scsi_target_block -EXPORT_SYMBOL_GPL vmlinux 0x50b03f5d l1tf_vmx_mitigation -EXPORT_SYMBOL_GPL vmlinux 0x50b42ba1 entry_ibpb -EXPORT_SYMBOL_GPL vmlinux 0x50b9e805 clk_hw_get_flags -EXPORT_SYMBOL_GPL vmlinux 0x50be42c3 for_each_kernel_tracepoint -EXPORT_SYMBOL_GPL vmlinux 0x50c61940 __context_tracking_exit -EXPORT_SYMBOL_GPL vmlinux 0x50d1f870 pgprot_writecombine -EXPORT_SYMBOL_GPL vmlinux 0x50d666eb hrtimer_cancel -EXPORT_SYMBOL_GPL vmlinux 0x50dfbea5 usb_scuttle_anchored_urbs -EXPORT_SYMBOL_GPL vmlinux 0x50e7193a __i2c_first_dynamic_bus_num -EXPORT_SYMBOL_GPL vmlinux 0x50fa520c devlink_dpipe_action_put -EXPORT_SYMBOL_GPL vmlinux 0x50fad434 round_jiffies_up -EXPORT_SYMBOL_GPL vmlinux 0x510885a7 serial8250_set_defaults -EXPORT_SYMBOL_GPL vmlinux 0x51103342 crypto_unregister_shashes -EXPORT_SYMBOL_GPL vmlinux 0x5114f7cf mbox_controller_register -EXPORT_SYMBOL_GPL vmlinux 0x51380bb4 __devm_pci_epc_create -EXPORT_SYMBOL_GPL vmlinux 0x51390c96 rcu_barrier_tasks_rude -EXPORT_SYMBOL_GPL vmlinux 0x51426145 devm_of_icc_get -EXPORT_SYMBOL_GPL vmlinux 0x51441f3d ata_std_error_handler -EXPORT_SYMBOL_GPL vmlinux 0x516516f9 device_get_match_data -EXPORT_SYMBOL_GPL vmlinux 0x5172538a dma_free_pages -EXPORT_SYMBOL_GPL vmlinux 0x517309f3 __SCK__tp_func_wbc_writepage -EXPORT_SYMBOL_GPL vmlinux 0x5187ac4b xen_store_evtchn -EXPORT_SYMBOL_GPL vmlinux 0x518c2fc6 hpet_rtc_dropped_irq -EXPORT_SYMBOL_GPL vmlinux 0x519f5bf1 dax_supported -EXPORT_SYMBOL_GPL vmlinux 0x51a348cc usb_role_switch_set_drvdata -EXPORT_SYMBOL_GPL vmlinux 0x51ac3b0c led_init_default_state_get -EXPORT_SYMBOL_GPL vmlinux 0x51b3963f dev_pm_opp_init_cpufreq_table -EXPORT_SYMBOL_GPL vmlinux 0x521d5ea0 max8997_bulk_read -EXPORT_SYMBOL_GPL vmlinux 0x52252316 clk_unregister_fixed_rate -EXPORT_SYMBOL_GPL vmlinux 0x52284b6e cpci_hp_unregister_bus -EXPORT_SYMBOL_GPL vmlinux 0x522aa63f devm_blk_ksm_init -EXPORT_SYMBOL_GPL vmlinux 0x523ff947 gpiochip_irq_domain_deactivate -EXPORT_SYMBOL_GPL vmlinux 0x52431348 xenbus_transaction_start -EXPORT_SYMBOL_GPL vmlinux 0x524a3d00 rt_mutex_lock_killable -EXPORT_SYMBOL_GPL vmlinux 0x524a6129 vfs_truncate -EXPORT_SYMBOL_GPL vmlinux 0x524c9b5d mctrl_gpio_free -EXPORT_SYMBOL_GPL vmlinux 0x525d0aa3 trace_seq_printf -EXPORT_SYMBOL_GPL vmlinux 0x528ccf1b rio_dma_prep_slave_sg -EXPORT_SYMBOL_GPL vmlinux 0x5294196e posix_acl_create -EXPORT_SYMBOL_GPL vmlinux 0x52a70c46 metadata_dst_alloc_percpu -EXPORT_SYMBOL_GPL vmlinux 0x52b1e3c7 pci_flags -EXPORT_SYMBOL_GPL vmlinux 0x52c35e83 call_rcu_tasks_trace -EXPORT_SYMBOL_GPL vmlinux 0x52d54fce devlink_info_version_stored_put -EXPORT_SYMBOL_GPL vmlinux 0x52d5e486 crypto_stats_akcipher_encrypt -EXPORT_SYMBOL_GPL vmlinux 0x52dea348 clean_acked_data_enable -EXPORT_SYMBOL_GPL vmlinux 0x52fec0f2 hrtimer_try_to_cancel -EXPORT_SYMBOL_GPL vmlinux 0x530431b2 trace_array_printk -EXPORT_SYMBOL_GPL vmlinux 0x530550a4 thermal_zone_bind_cooling_device -EXPORT_SYMBOL_GPL vmlinux 0x5317bece devlink_reload_enable -EXPORT_SYMBOL_GPL vmlinux 0x531b11cb bpf_verifier_log_write -EXPORT_SYMBOL_GPL vmlinux 0x531fad67 driver_find -EXPORT_SYMBOL_GPL vmlinux 0x53200e19 fwnode_graph_get_remote_port_parent -EXPORT_SYMBOL_GPL vmlinux 0x5321d3d6 sbitmap_get -EXPORT_SYMBOL_GPL vmlinux 0x532b90b5 kprobe_event_cmd_init -EXPORT_SYMBOL_GPL vmlinux 0x53406586 ata_bmdma_stop -EXPORT_SYMBOL_GPL vmlinux 0x5344fc54 invalidate_inode_pages2 -EXPORT_SYMBOL_GPL vmlinux 0x53471c82 mmc_app_cmd -EXPORT_SYMBOL_GPL vmlinux 0x534d269e wm831x_auxadc_read -EXPORT_SYMBOL_GPL vmlinux 0x534d678f vfio_device_get_from_dev -EXPORT_SYMBOL_GPL vmlinux 0x5358864e devlink_fmsg_binary_pair_nest_end -EXPORT_SYMBOL_GPL vmlinux 0x535f788e xa_delete_node -EXPORT_SYMBOL_GPL vmlinux 0x536753ef gpiod_get_index -EXPORT_SYMBOL_GPL vmlinux 0x536822e3 sfp_module_insert -EXPORT_SYMBOL_GPL vmlinux 0x536b8678 lwtunnel_output -EXPORT_SYMBOL_GPL vmlinux 0x5376cce7 sk_psock_tls_strp_read -EXPORT_SYMBOL_GPL vmlinux 0x537e97f6 acpi_dev_suspend -EXPORT_SYMBOL_GPL vmlinux 0x5381284f devm_memunmap_pages -EXPORT_SYMBOL_GPL vmlinux 0x5383f349 tty_standard_install -EXPORT_SYMBOL_GPL vmlinux 0x538d073d phy_duplex_to_str -EXPORT_SYMBOL_GPL vmlinux 0x5391f2c7 gnttab_end_foreign_access_ref -EXPORT_SYMBOL_GPL vmlinux 0x539982dc devm_irq_alloc_generic_chip -EXPORT_SYMBOL_GPL vmlinux 0x539f157b pci_xen_swiotlb_init_late -EXPORT_SYMBOL_GPL vmlinux 0x53bd24d0 fb_deferred_io_fsync -EXPORT_SYMBOL_GPL vmlinux 0x53c089f5 property_entries_dup -EXPORT_SYMBOL_GPL vmlinux 0x53c9c7ea regulator_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x53d7c01e __traceiter_cpu_idle -EXPORT_SYMBOL_GPL vmlinux 0x53dab274 sk_psock_drop -EXPORT_SYMBOL_GPL vmlinux 0x53e4d12b pci_reset_function -EXPORT_SYMBOL_GPL vmlinux 0x53f645d9 nvdimm_region_notify -EXPORT_SYMBOL_GPL vmlinux 0x53f9a1d7 gpiod_set_value -EXPORT_SYMBOL_GPL vmlinux 0x54062d07 device_attach -EXPORT_SYMBOL_GPL vmlinux 0x5418de0e pwm_free -EXPORT_SYMBOL_GPL vmlinux 0x541bc434 intel_pinctrl_resume_noirq -EXPORT_SYMBOL_GPL vmlinux 0x541bd60a irq_work_run -EXPORT_SYMBOL_GPL vmlinux 0x541ddc1a dev_pm_qos_expose_latency_tolerance -EXPORT_SYMBOL_GPL vmlinux 0x54215db5 visitor64 -EXPORT_SYMBOL_GPL vmlinux 0x5422e044 ata_sff_exec_command -EXPORT_SYMBOL_GPL vmlinux 0x542798a6 __sock_recv_wifi_status -EXPORT_SYMBOL_GPL vmlinux 0x5435454c divider_ro_round_rate_parent -EXPORT_SYMBOL_GPL vmlinux 0x54478648 dev_attr_link_power_management_policy -EXPORT_SYMBOL_GPL vmlinux 0x545025e5 nvmem_add_cell_table -EXPORT_SYMBOL_GPL vmlinux 0x54503880 kthread_func -EXPORT_SYMBOL_GPL vmlinux 0x5463abfb clk_hw_get_parent_index -EXPORT_SYMBOL_GPL vmlinux 0x546de525 xfrm_dev_state_add -EXPORT_SYMBOL_GPL vmlinux 0x54838060 pci_epc_put -EXPORT_SYMBOL_GPL vmlinux 0x548d2db2 serial8250_handle_irq -EXPORT_SYMBOL_GPL vmlinux 0x549525ef handle_nested_irq -EXPORT_SYMBOL_GPL vmlinux 0x549ac473 usb_get_phy -EXPORT_SYMBOL_GPL vmlinux 0x54a47c47 component_master_del -EXPORT_SYMBOL_GPL vmlinux 0x54c604fd nvdimm_security_setup_events -EXPORT_SYMBOL_GPL vmlinux 0x550ce709 pat_enabled -EXPORT_SYMBOL_GPL vmlinux 0x550f3918 user_update -EXPORT_SYMBOL_GPL vmlinux 0x550f3e05 i2c_freq_mode_string -EXPORT_SYMBOL_GPL vmlinux 0x551b2ecc i2c_dw_probe_master -EXPORT_SYMBOL_GPL vmlinux 0x551b7df4 ping_queue_rcv_skb -EXPORT_SYMBOL_GPL vmlinux 0x551bee82 hsu_dma_do_irq -EXPORT_SYMBOL_GPL vmlinux 0x55339365 flush_delayed_fput -EXPORT_SYMBOL_GPL vmlinux 0x55392e6f __traceiter_pelt_se_tp -EXPORT_SYMBOL_GPL vmlinux 0x553b49a4 cpufreq_get_driver_data -EXPORT_SYMBOL_GPL vmlinux 0x553ef000 bd_prepare_to_claim -EXPORT_SYMBOL_GPL vmlinux 0x55417264 unregister_vt_notifier -EXPORT_SYMBOL_GPL vmlinux 0x55547dee ata_scsi_slave_config -EXPORT_SYMBOL_GPL vmlinux 0x5559c8ca __skb_tstamp_tx -EXPORT_SYMBOL_GPL vmlinux 0x5560e6c2 acpi_dma_controller_free -EXPORT_SYMBOL_GPL vmlinux 0x55699b1b key_type_encrypted -EXPORT_SYMBOL_GPL vmlinux 0x556e4390 clk_get_rate -EXPORT_SYMBOL_GPL vmlinux 0x55784228 regmap_irq_get_virq -EXPORT_SYMBOL_GPL vmlinux 0x55834c9e regulator_is_enabled_regmap -EXPORT_SYMBOL_GPL vmlinux 0x55aafee1 clockevent_delta2ns -EXPORT_SYMBOL_GPL vmlinux 0x55bd1e5e tty_kopen_shared -EXPORT_SYMBOL_GPL vmlinux 0x55c4d54c mnt_want_write -EXPORT_SYMBOL_GPL vmlinux 0x55c76a23 ksys_sync_helper -EXPORT_SYMBOL_GPL vmlinux 0x55d43f02 usb_unpoison_urb -EXPORT_SYMBOL_GPL vmlinux 0x55dd2497 tty_port_register_device_attr -EXPORT_SYMBOL_GPL vmlinux 0x55eecff4 bit_wait_io_timeout -EXPORT_SYMBOL_GPL vmlinux 0x56054c05 crypto_it_tab -EXPORT_SYMBOL_GPL vmlinux 0x56070bda iommu_group_for_each_dev -EXPORT_SYMBOL_GPL vmlinux 0x5609f79f posix_acl_access_xattr_handler -EXPORT_SYMBOL_GPL vmlinux 0x56173654 pcap_set_ts_bits -EXPORT_SYMBOL_GPL vmlinux 0x56195784 task_cputime_adjusted -EXPORT_SYMBOL_GPL vmlinux 0x561e537c ata_sff_dev_select -EXPORT_SYMBOL_GPL vmlinux 0x56256e8a orderly_poweroff -EXPORT_SYMBOL_GPL vmlinux 0x562f6af2 blk_insert_cloned_request -EXPORT_SYMBOL_GPL vmlinux 0x56310925 regulator_mode_to_status -EXPORT_SYMBOL_GPL vmlinux 0x56398615 mark_tsc_unstable -EXPORT_SYMBOL_GPL vmlinux 0x563ce2d7 gpiochip_line_is_open_source -EXPORT_SYMBOL_GPL vmlinux 0x5641485b tty_termios_encode_baud_rate -EXPORT_SYMBOL_GPL vmlinux 0x564273f5 l3mdev_link_scope_lookup -EXPORT_SYMBOL_GPL vmlinux 0x5649830f irq_chip_disable_parent -EXPORT_SYMBOL_GPL vmlinux 0x5674f4ac hwmon_device_register -EXPORT_SYMBOL_GPL vmlinux 0x56933955 iopf_queue_add_device -EXPORT_SYMBOL_GPL vmlinux 0x56948896 spec_ctrl_current -EXPORT_SYMBOL_GPL vmlinux 0x56b0d390 pm_genpd_remove -EXPORT_SYMBOL_GPL vmlinux 0x56c88dd7 devm_clk_get_prepared -EXPORT_SYMBOL_GPL vmlinux 0x56ce1fb3 i2c_add_numbered_adapter -EXPORT_SYMBOL_GPL vmlinux 0x56d2c858 vfs_cancel_lock -EXPORT_SYMBOL_GPL vmlinux 0x56d2eff6 dev_pm_qos_update_request -EXPORT_SYMBOL_GPL vmlinux 0x56d61dce context_tracking_enter -EXPORT_SYMBOL_GPL vmlinux 0x56e16e3a elv_register -EXPORT_SYMBOL_GPL vmlinux 0x56e3d5d9 led_trigger_blink -EXPORT_SYMBOL_GPL vmlinux 0x56f84ce9 usb_autopm_get_interface_no_resume -EXPORT_SYMBOL_GPL vmlinux 0x56f895dc anon_inode_getfd_secure -EXPORT_SYMBOL_GPL vmlinux 0x56fbb130 no_hash_pointers -EXPORT_SYMBOL_GPL vmlinux 0x57232e83 i2c_bus_type -EXPORT_SYMBOL_GPL vmlinux 0x572cf9c5 bpf_trace_run5 -EXPORT_SYMBOL_GPL vmlinux 0x57352db2 sata_link_debounce -EXPORT_SYMBOL_GPL vmlinux 0x573b5453 ipv6_fixup_options -EXPORT_SYMBOL_GPL vmlinux 0x574609c5 apei_exec_write_register_value -EXPORT_SYMBOL_GPL vmlinux 0x57504c88 bpf_event_output -EXPORT_SYMBOL_GPL vmlinux 0x577089a1 devfreq_event_remove_edev -EXPORT_SYMBOL_GPL vmlinux 0x57719632 gnttab_grant_foreign_access -EXPORT_SYMBOL_GPL vmlinux 0x5773e9e7 fwnode_get_parent -EXPORT_SYMBOL_GPL vmlinux 0x57777c40 blk_queue_write_cache -EXPORT_SYMBOL_GPL vmlinux 0x577f81cd dm_internal_suspend_noflush -EXPORT_SYMBOL_GPL vmlinux 0x5781f8fc sk_setup_caps -EXPORT_SYMBOL_GPL vmlinux 0x57861a5c gds_ucode_mitigated -EXPORT_SYMBOL_GPL vmlinux 0x5787f1f9 dw_pcie_find_ext_capability -EXPORT_SYMBOL_GPL vmlinux 0x578eeb4d hugetlb_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x5790e7a0 pci_unlock_rescan_remove -EXPORT_SYMBOL_GPL vmlinux 0x5793b77f devm_acpi_dev_remove_driver_gpios -EXPORT_SYMBOL_GPL vmlinux 0x579600c8 __rio_local_read_config_8 -EXPORT_SYMBOL_GPL vmlinux 0x5797638b serial8250_em485_config -EXPORT_SYMBOL_GPL vmlinux 0x579c8e14 skb_pull_rcsum -EXPORT_SYMBOL_GPL vmlinux 0x579e0bf5 rtnl_unregister_all -EXPORT_SYMBOL_GPL vmlinux 0x57a2ac76 sysfs_remove_link_from_group -EXPORT_SYMBOL_GPL vmlinux 0x57a6fffc regmap_noinc_read -EXPORT_SYMBOL_GPL vmlinux 0x57d4050a xhci_get_endpoint_index -EXPORT_SYMBOL_GPL vmlinux 0x57e14c23 thermal_zone_device_register -EXPORT_SYMBOL_GPL vmlinux 0x57f576b9 mpi_ec_curve_point -EXPORT_SYMBOL_GPL vmlinux 0x5809a87a skb_send_sock_locked -EXPORT_SYMBOL_GPL vmlinux 0x58276f93 cper_next_record_id -EXPORT_SYMBOL_GPL vmlinux 0x5831e062 cpus_read_trylock -EXPORT_SYMBOL_GPL vmlinux 0x58413e4c pci_hp_add -EXPORT_SYMBOL_GPL vmlinux 0x584d4791 extcon_get_property_capability -EXPORT_SYMBOL_GPL vmlinux 0x58535acc regmap_multi_reg_write_bypassed -EXPORT_SYMBOL_GPL vmlinux 0x58695f69 scsi_ioctl_block_when_processing_errors -EXPORT_SYMBOL_GPL vmlinux 0x58728bd8 make_device_exclusive_range -EXPORT_SYMBOL_GPL vmlinux 0x58738140 devres_get -EXPORT_SYMBOL_GPL vmlinux 0x5879a27d sfp_get_module_info -EXPORT_SYMBOL_GPL vmlinux 0x587f0fbe pm_clk_suspend -EXPORT_SYMBOL_GPL vmlinux 0x5886e65f fat_attach -EXPORT_SYMBOL_GPL vmlinux 0x5895dfe3 ata_dev_disable -EXPORT_SYMBOL_GPL vmlinux 0x58a42ee5 wm8350_reg_unlock -EXPORT_SYMBOL_GPL vmlinux 0x58cae29e register_asymmetric_key_parser -EXPORT_SYMBOL_GPL vmlinux 0x58d6311d trace_clock -EXPORT_SYMBOL_GPL vmlinux 0x58d8dfb1 regmap_get_device -EXPORT_SYMBOL_GPL vmlinux 0x58d91448 device_rename -EXPORT_SYMBOL_GPL vmlinux 0x58def6ca sfp_module_remove -EXPORT_SYMBOL_GPL vmlinux 0x58e09c43 vp_modern_get_driver_features -EXPORT_SYMBOL_GPL vmlinux 0x58ebd130 iommu_sva_unbind_device -EXPORT_SYMBOL_GPL vmlinux 0x58fe4b4b ata_sff_hsm_move -EXPORT_SYMBOL_GPL vmlinux 0x591d94bf transport_setup_device -EXPORT_SYMBOL_GPL vmlinux 0x595f1040 xhci_suspend -EXPORT_SYMBOL_GPL vmlinux 0x5962d57e dev_pm_set_dedicated_wake_irq_reverse -EXPORT_SYMBOL_GPL vmlinux 0x596bcac0 acpi_dev_pm_attach -EXPORT_SYMBOL_GPL vmlinux 0x5970ec1b klp_enable_patch -EXPORT_SYMBOL_GPL vmlinux 0x5976fd38 sock_prot_inuse_add -EXPORT_SYMBOL_GPL vmlinux 0x59826475 nvmem_cell_read_variable_le_u32 -EXPORT_SYMBOL_GPL vmlinux 0x5986d190 kdb_printf -EXPORT_SYMBOL_GPL vmlinux 0x5989eb41 devm_acpi_dma_controller_free -EXPORT_SYMBOL_GPL vmlinux 0x598dc59c serdev_device_set_parity -EXPORT_SYMBOL_GPL vmlinux 0x598eaa4f firmware_request_platform -EXPORT_SYMBOL_GPL vmlinux 0x599ccb37 hvc_poll -EXPORT_SYMBOL_GPL vmlinux 0x59a4b58f phy_remove_lookup -EXPORT_SYMBOL_GPL vmlinux 0x59b0b226 skb_zerocopy -EXPORT_SYMBOL_GPL vmlinux 0x59b2adbf input_ff_effect_from_user -EXPORT_SYMBOL_GPL vmlinux 0x59bc6be0 phy_led_triggers_unregister -EXPORT_SYMBOL_GPL vmlinux 0x59c43dc9 __traceiter_non_standard_event -EXPORT_SYMBOL_GPL vmlinux 0x59c6aff4 irq_set_affinity_hint -EXPORT_SYMBOL_GPL vmlinux 0x59e0f053 fpu_free_guest_fpstate -EXPORT_SYMBOL_GPL vmlinux 0x59e8ece3 elv_rqhash_add -EXPORT_SYMBOL_GPL vmlinux 0x59eb038d pinctrl_pm_select_sleep_state -EXPORT_SYMBOL_GPL vmlinux 0x59efcace gpiod_get -EXPORT_SYMBOL_GPL vmlinux 0x59f32720 mpi_subm -EXPORT_SYMBOL_GPL vmlinux 0x59ff80a4 rdev_get_drvdata -EXPORT_SYMBOL_GPL vmlinux 0x5a1b360a gpiod_to_irq -EXPORT_SYMBOL_GPL vmlinux 0x5a1d134a rcu_momentary_dyntick_idle -EXPORT_SYMBOL_GPL vmlinux 0x5a1dc6eb pm_generic_thaw -EXPORT_SYMBOL_GPL vmlinux 0x5a286128 devm_regmap_add_irq_chip_fwnode -EXPORT_SYMBOL_GPL vmlinux 0x5a31d02a fsnotify_alloc_group -EXPORT_SYMBOL_GPL vmlinux 0x5a3709db inet_twsk_hashdance -EXPORT_SYMBOL_GPL vmlinux 0x5a3c8ce3 crypto_alg_extsize -EXPORT_SYMBOL_GPL vmlinux 0x5a412d28 isa_register_driver -EXPORT_SYMBOL_GPL vmlinux 0x5a49dbc9 timerqueue_del -EXPORT_SYMBOL_GPL vmlinux 0x5a5334b6 shash_free_singlespawn_instance -EXPORT_SYMBOL_GPL vmlinux 0x5a6cdb52 nf_ct_zone_dflt -EXPORT_SYMBOL_GPL vmlinux 0x5a7bfe41 crypto_probing_notify -EXPORT_SYMBOL_GPL vmlinux 0x5a91f6e4 edac_mc_del_mc -EXPORT_SYMBOL_GPL vmlinux 0x5a99a0f0 __traceiter_br_fdb_update -EXPORT_SYMBOL_GPL vmlinux 0x5aa0a667 iommu_dev_feature_enabled -EXPORT_SYMBOL_GPL vmlinux 0x5aa70984 acpi_reduced_hardware -EXPORT_SYMBOL_GPL vmlinux 0x5aabe4c3 iommu_detach_device -EXPORT_SYMBOL_GPL vmlinux 0x5ab09745 edac_get_owner -EXPORT_SYMBOL_GPL vmlinux 0x5aca3954 usb_put_intf -EXPORT_SYMBOL_GPL vmlinux 0x5ade8f85 hwspin_lock_unregister -EXPORT_SYMBOL_GPL vmlinux 0x5af64cea icc_sync_state -EXPORT_SYMBOL_GPL vmlinux 0x5b111141 umd_unload_blob -EXPORT_SYMBOL_GPL vmlinux 0x5b21ceff ring_buffer_iter_peek -EXPORT_SYMBOL_GPL vmlinux 0x5b2b2cdb xfrm_output_resume -EXPORT_SYMBOL_GPL vmlinux 0x5b2cf088 netdev_rx_handler_register -EXPORT_SYMBOL_GPL vmlinux 0x5b35c4f9 vfio_group_set_kvm -EXPORT_SYMBOL_GPL vmlinux 0x5b3ab32d __iomap_dio_rw -EXPORT_SYMBOL_GPL vmlinux 0x5b3accc9 __mmc_send_status -EXPORT_SYMBOL_GPL vmlinux 0x5b45ba1e sched_set_fifo -EXPORT_SYMBOL_GPL vmlinux 0x5b4c6a0b synth_event_add_val -EXPORT_SYMBOL_GPL vmlinux 0x5b4e07c6 icmp_build_probe -EXPORT_SYMBOL_GPL vmlinux 0x5b61dae8 usb_phy_get_charger_current -EXPORT_SYMBOL_GPL vmlinux 0x5b693ef9 edac_pci_free_ctl_info -EXPORT_SYMBOL_GPL vmlinux 0x5b6b0329 swiotlb_max_segment -EXPORT_SYMBOL_GPL vmlinux 0x5b7a8dca fat_sync_inode -EXPORT_SYMBOL_GPL vmlinux 0x5b88b68e vfio_init_group_dev -EXPORT_SYMBOL_GPL vmlinux 0x5b90d4c3 clk_bulk_get_optional -EXPORT_SYMBOL_GPL vmlinux 0x5b96b26a sdio_readl -EXPORT_SYMBOL_GPL vmlinux 0x5bbdfa26 scatterwalk_ffwd -EXPORT_SYMBOL_GPL vmlinux 0x5bbf7d89 ata_bmdma_post_internal_cmd -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 0x5bdd4157 kernel_read_file -EXPORT_SYMBOL_GPL vmlinux 0x5be0e742 rio_map_inb_region -EXPORT_SYMBOL_GPL vmlinux 0x5bf2a99c n_tty_inherit_ops -EXPORT_SYMBOL_GPL vmlinux 0x5bf87d9c device_link_remove -EXPORT_SYMBOL_GPL vmlinux 0x5bfe1d1e tun_get_tx_ring -EXPORT_SYMBOL_GPL vmlinux 0x5c02e7da bus_find_device -EXPORT_SYMBOL_GPL vmlinux 0x5c045293 spi_replace_transfers -EXPORT_SYMBOL_GPL vmlinux 0x5c0c165e __SCT__tp_func_neigh_update -EXPORT_SYMBOL_GPL vmlinux 0x5c0d29aa proc_create_net_data -EXPORT_SYMBOL_GPL vmlinux 0x5c0eaf31 acpi_dev_resource_interrupt -EXPORT_SYMBOL_GPL vmlinux 0x5c23b5da usb_disable_autosuspend -EXPORT_SYMBOL_GPL vmlinux 0x5c28893a blkcg_deactivate_policy -EXPORT_SYMBOL_GPL vmlinux 0x5c2bcd37 bpf_warn_invalid_xdp_action -EXPORT_SYMBOL_GPL vmlinux 0x5c309e65 hibernate_quiet_exec -EXPORT_SYMBOL_GPL vmlinux 0x5c56a597 hrtimer_sleeper_start_expires -EXPORT_SYMBOL_GPL vmlinux 0x5c5a1b16 tick_broadcast_control -EXPORT_SYMBOL_GPL vmlinux 0x5c5c6826 phy_10gbit_full_features -EXPORT_SYMBOL_GPL vmlinux 0x5c678981 rtc_set_alarm -EXPORT_SYMBOL_GPL vmlinux 0x5c8891ae gov_attr_set_init -EXPORT_SYMBOL_GPL vmlinux 0x5c8efea5 pci_hp_add_bridge -EXPORT_SYMBOL_GPL vmlinux 0x5c989bae sdio_writel -EXPORT_SYMBOL_GPL vmlinux 0x5c9ddd4e ata_sff_qc_issue -EXPORT_SYMBOL_GPL vmlinux 0x5cab9945 unregister_xenbus_watch -EXPORT_SYMBOL_GPL vmlinux 0x5cad8fc3 power_supply_ocv2cap_simple -EXPORT_SYMBOL_GPL vmlinux 0x5cd2f117 security_inode_setattr -EXPORT_SYMBOL_GPL vmlinux 0x5cdb2863 devfreq_event_enable_edev -EXPORT_SYMBOL_GPL vmlinux 0x5cdd19a1 __pm_runtime_disable -EXPORT_SYMBOL_GPL vmlinux 0x5ce5dc64 ip6_local_out -EXPORT_SYMBOL_GPL vmlinux 0x5cea5582 fscrypt_ioctl_add_key -EXPORT_SYMBOL_GPL vmlinux 0x5cec6a59 __cpuhp_state_remove_instance -EXPORT_SYMBOL_GPL vmlinux 0x5cede0a7 xdp_flush_frame_bulk -EXPORT_SYMBOL_GPL vmlinux 0x5cf44530 dev_pm_opp_is_turbo -EXPORT_SYMBOL_GPL vmlinux 0x5cf44d4b blkdev_report_zones -EXPORT_SYMBOL_GPL vmlinux 0x5d0113e0 x86_pred_cmd -EXPORT_SYMBOL_GPL vmlinux 0x5d09d245 xenbus_free_evtchn -EXPORT_SYMBOL_GPL vmlinux 0x5d17148b apei_write -EXPORT_SYMBOL_GPL vmlinux 0x5d26cd32 irq_chip_set_vcpu_affinity_parent -EXPORT_SYMBOL_GPL vmlinux 0x5d2bc42a reset_control_rearm -EXPORT_SYMBOL_GPL vmlinux 0x5d2eb734 register_trace_event -EXPORT_SYMBOL_GPL vmlinux 0x5d2f55ba extcon_get_edev_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0x5d5cdfcf nvmem_device_find -EXPORT_SYMBOL_GPL vmlinux 0x5d8476d3 bpf_sk_storage_diag_alloc -EXPORT_SYMBOL_GPL vmlinux 0x5d8670ad iommu_unmap -EXPORT_SYMBOL_GPL vmlinux 0x5d8d49c9 wm831x_reg_unlock -EXPORT_SYMBOL_GPL vmlinux 0x5d8f20c7 devm_get_free_pages -EXPORT_SYMBOL_GPL vmlinux 0x5d9317d7 uv_teardown_irq -EXPORT_SYMBOL_GPL vmlinux 0x5d949802 dev_pm_qos_hide_latency_tolerance -EXPORT_SYMBOL_GPL vmlinux 0x5d9bd645 rio_mport_class -EXPORT_SYMBOL_GPL vmlinux 0x5da3dc2f tpm_get_timeouts -EXPORT_SYMBOL_GPL vmlinux 0x5da67adc zs_compact -EXPORT_SYMBOL_GPL vmlinux 0x5dbcfa4f boot_cpu_physical_apicid -EXPORT_SYMBOL_GPL vmlinux 0x5dc3d682 __SCK__tp_func_xhci_dbg_quirks -EXPORT_SYMBOL_GPL vmlinux 0x5dcb2b91 nvdimm_in_overwrite -EXPORT_SYMBOL_GPL vmlinux 0x5ddd1b82 tpm_chip_alloc -EXPORT_SYMBOL_GPL vmlinux 0x5deb3f39 trace_array_destroy -EXPORT_SYMBOL_GPL vmlinux 0x5dee45dc tps65912_regmap_config -EXPORT_SYMBOL_GPL vmlinux 0x5def223c dax_driver_unregister -EXPORT_SYMBOL_GPL vmlinux 0x5dfe9de0 blk_clear_pm_only -EXPORT_SYMBOL_GPL vmlinux 0x5e09db95 devres_add -EXPORT_SYMBOL_GPL vmlinux 0x5e173309 cpu_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0x5e1ebb30 param_set_bool_enable_only -EXPORT_SYMBOL_GPL vmlinux 0x5e2a9cd1 xenbus_probe_node -EXPORT_SYMBOL_GPL vmlinux 0x5e3d016c vfio_pci_core_match -EXPORT_SYMBOL_GPL vmlinux 0x5e515be6 ktime_get_ts64 -EXPORT_SYMBOL_GPL vmlinux 0x5e5468be nvdimm_setup_pfn -EXPORT_SYMBOL_GPL vmlinux 0x5e644108 fsverity_verify_page -EXPORT_SYMBOL_GPL vmlinux 0x5e798ffb divider_get_val -EXPORT_SYMBOL_GPL vmlinux 0x5e85415b ring_buffer_consume -EXPORT_SYMBOL_GPL vmlinux 0x5e95e6f1 get_governor_parent_kobj -EXPORT_SYMBOL_GPL vmlinux 0x5e9fe9a2 pinctrl_utils_add_map_configs -EXPORT_SYMBOL_GPL vmlinux 0x5ea8aee6 __traceiter_pelt_irq_tp -EXPORT_SYMBOL_GPL vmlinux 0x5ea8c95d netdev_walk_all_lower_dev -EXPORT_SYMBOL_GPL vmlinux 0x5ea9819b __lock_page_killable -EXPORT_SYMBOL_GPL vmlinux 0x5eae5408 clk_is_enabled_when_prepared -EXPORT_SYMBOL_GPL vmlinux 0x5ecaf3dc irq_chip_set_affinity_parent -EXPORT_SYMBOL_GPL vmlinux 0x5ed3ff33 rio_release_inb_dbell -EXPORT_SYMBOL_GPL vmlinux 0x5eda32d3 pci_pri_supported -EXPORT_SYMBOL_GPL vmlinux 0x5eeddaf6 device_store_ulong -EXPORT_SYMBOL_GPL vmlinux 0x5efb0807 rio_enable_rx_tx_port -EXPORT_SYMBOL_GPL vmlinux 0x5f0493f6 inet6_hash -EXPORT_SYMBOL_GPL vmlinux 0x5f0781c1 spi_bus_unlock -EXPORT_SYMBOL_GPL vmlinux 0x5f23e3fa insert_resource -EXPORT_SYMBOL_GPL vmlinux 0x5f2da8c4 check_tsc_unstable -EXPORT_SYMBOL_GPL vmlinux 0x5f2fcc83 ioremap_uc -EXPORT_SYMBOL_GPL vmlinux 0x5f3565c8 usb_show_dynids -EXPORT_SYMBOL_GPL vmlinux 0x5f3666a8 devlink_dpipe_entry_ctx_close -EXPORT_SYMBOL_GPL vmlinux 0x5f442557 iommu_attach_device -EXPORT_SYMBOL_GPL vmlinux 0x5f5cc8ac irq_domain_xlate_onecell -EXPORT_SYMBOL_GPL vmlinux 0x5f6e03db ata_sff_freeze -EXPORT_SYMBOL_GPL vmlinux 0x5f6f1e9e dax_get_private -EXPORT_SYMBOL_GPL vmlinux 0x5f74862f sched_set_fifo_low -EXPORT_SYMBOL_GPL vmlinux 0x5f975b87 get_device -EXPORT_SYMBOL_GPL vmlinux 0x5fa07636 nvdimm_pmem_region_create -EXPORT_SYMBOL_GPL vmlinux 0x5fa238d0 usb_create_hcd -EXPORT_SYMBOL_GPL vmlinux 0x5fa625ed mpi_ec_mul_point -EXPORT_SYMBOL_GPL vmlinux 0x5fc8007a xhci_resume -EXPORT_SYMBOL_GPL vmlinux 0x5fd96260 irq_get_domain_generic_chip -EXPORT_SYMBOL_GPL vmlinux 0x5fdfa2c1 amd_pmu_enable_virt -EXPORT_SYMBOL_GPL vmlinux 0x5fe73f6a __mnt_drop_write -EXPORT_SYMBOL_GPL vmlinux 0x60009bd3 __traceiter_io_page_fault -EXPORT_SYMBOL_GPL vmlinux 0x60091316 clk_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0x602138c1 udp4_hwcsum -EXPORT_SYMBOL_GPL vmlinux 0x6021af8a skb_partial_csum_set -EXPORT_SYMBOL_GPL vmlinux 0x6025522c ip6_sk_dst_lookup_flow -EXPORT_SYMBOL_GPL vmlinux 0x602d4c1f hsu_dma_probe -EXPORT_SYMBOL_GPL vmlinux 0x60325e49 pci_epc_unmap_addr -EXPORT_SYMBOL_GPL vmlinux 0x603d0d51 acpi_os_map_iomem -EXPORT_SYMBOL_GPL vmlinux 0x60426bc6 usb_phy_set_charger_state -EXPORT_SYMBOL_GPL vmlinux 0x604554bb dw_pcie_own_conf_map_bus -EXPORT_SYMBOL_GPL vmlinux 0x604722fd devices_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x60599f85 vfs_read -EXPORT_SYMBOL_GPL vmlinux 0x606200af thermal_of_cooling_device_register -EXPORT_SYMBOL_GPL vmlinux 0x6065de02 ata_sff_port_ops -EXPORT_SYMBOL_GPL vmlinux 0x607c4683 devlink_info_version_fixed_put -EXPORT_SYMBOL_GPL vmlinux 0x6091797f synchronize_rcu -EXPORT_SYMBOL_GPL vmlinux 0x60937722 lwtunnel_fill_encap -EXPORT_SYMBOL_GPL vmlinux 0x60a13e90 rcu_barrier -EXPORT_SYMBOL_GPL vmlinux 0x60a634c4 vfio_info_cap_add -EXPORT_SYMBOL_GPL vmlinux 0x60a7a273 crypto_aead_setauthsize -EXPORT_SYMBOL_GPL vmlinux 0x60d58849 vp_modern_get_features -EXPORT_SYMBOL_GPL vmlinux 0x60e85139 pinctrl_get -EXPORT_SYMBOL_GPL vmlinux 0x60ebc96f ring_buffer_read_prepare -EXPORT_SYMBOL_GPL vmlinux 0x60f99e1b cppc_set_perf -EXPORT_SYMBOL_GPL vmlinux 0x60fb1c1c rio_del_device -EXPORT_SYMBOL_GPL vmlinux 0x60fca373 PageHuge -EXPORT_SYMBOL_GPL vmlinux 0x6105762d udp6_lib_lookup -EXPORT_SYMBOL_GPL vmlinux 0x6113dbdb sysfs_create_mount_point -EXPORT_SYMBOL_GPL vmlinux 0x61224a8e kthread_flush_work -EXPORT_SYMBOL_GPL vmlinux 0x6128a298 nf_hook_entries_delete_raw -EXPORT_SYMBOL_GPL vmlinux 0x6129fb93 sfp_remove_phy -EXPORT_SYMBOL_GPL vmlinux 0x612bfd89 errno_to_blk_status -EXPORT_SYMBOL_GPL vmlinux 0x6135f264 crypto_req_done -EXPORT_SYMBOL_GPL vmlinux 0x6147fe32 irq_set_chained_handler_and_data -EXPORT_SYMBOL_GPL vmlinux 0x615d3447 kernel_read_file_from_path -EXPORT_SYMBOL_GPL vmlinux 0x6172a558 subsys_virtual_register -EXPORT_SYMBOL_GPL vmlinux 0x61748584 dma_buf_mmap -EXPORT_SYMBOL_GPL vmlinux 0x617b026c hwrng_register -EXPORT_SYMBOL_GPL vmlinux 0x6181e79f timerqueue_add -EXPORT_SYMBOL_GPL vmlinux 0x6182250a ata_host_start -EXPORT_SYMBOL_GPL vmlinux 0x6198dfea __ring_buffer_alloc -EXPORT_SYMBOL_GPL vmlinux 0x6199ad5d crypto_has_skcipher -EXPORT_SYMBOL_GPL vmlinux 0x619d2eca acpi_gpio_get_irq_resource -EXPORT_SYMBOL_GPL vmlinux 0x61b443f8 x86_spec_ctrl_current -EXPORT_SYMBOL_GPL vmlinux 0x61bd56a3 __auxiliary_driver_register -EXPORT_SYMBOL_GPL vmlinux 0x61c8fbf3 poll_state_synchronize_srcu -EXPORT_SYMBOL_GPL vmlinux 0x61d9b7e0 pci_enable_pcie_error_reporting -EXPORT_SYMBOL_GPL vmlinux 0x61e67bf6 __xas_next -EXPORT_SYMBOL_GPL vmlinux 0x61f44da4 power_supply_notifier -EXPORT_SYMBOL_GPL vmlinux 0x61f45b36 __traceiter_rpm_return_int -EXPORT_SYMBOL_GPL vmlinux 0x61f5602e fat_alloc_new_dir -EXPORT_SYMBOL_GPL vmlinux 0x61f67c92 phy_gbit_features_array -EXPORT_SYMBOL_GPL vmlinux 0x61f87c3b __tracepoint_napi_poll -EXPORT_SYMBOL_GPL vmlinux 0x620a302a cgroup_get_from_fd -EXPORT_SYMBOL_GPL vmlinux 0x620b995e acpi_kobj -EXPORT_SYMBOL_GPL vmlinux 0x62106da5 devlink_flash_update_timeout_notify -EXPORT_SYMBOL_GPL vmlinux 0x62196855 bpf_trace_run4 -EXPORT_SYMBOL_GPL vmlinux 0x6222584a proc_mkdir_data -EXPORT_SYMBOL_GPL vmlinux 0x622c7922 register_oom_notifier -EXPORT_SYMBOL_GPL vmlinux 0x62354148 spi_mem_adjust_op_size -EXPORT_SYMBOL_GPL vmlinux 0x62377a7b blk_io_schedule -EXPORT_SYMBOL_GPL vmlinux 0x623dfd7c usb_autopm_put_interface -EXPORT_SYMBOL_GPL vmlinux 0x62449fb5 ftrace_set_notrace -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 0x6260496d cpufreq_dbs_governor_exit -EXPORT_SYMBOL_GPL vmlinux 0x62788563 ata_platform_remove_one -EXPORT_SYMBOL_GPL vmlinux 0x627a1643 genphy_c45_aneg_done -EXPORT_SYMBOL_GPL vmlinux 0x6298bd51 __tracepoint_block_split -EXPORT_SYMBOL_GPL vmlinux 0x62aacbf6 acpi_subsys_prepare -EXPORT_SYMBOL_GPL vmlinux 0x62aea705 __SCK__tp_func_io_page_fault -EXPORT_SYMBOL_GPL vmlinux 0x62bb09bf clocks_calc_mult_shift -EXPORT_SYMBOL_GPL vmlinux 0x62da9484 __SCK__tp_func_neigh_update -EXPORT_SYMBOL_GPL vmlinux 0x62dd9084 pinctrl_utils_free_map -EXPORT_SYMBOL_GPL vmlinux 0x62f1e4f0 raw_seq_next -EXPORT_SYMBOL_GPL vmlinux 0x630090bd __pm_relax -EXPORT_SYMBOL_GPL vmlinux 0x63026490 unregister_kprobe -EXPORT_SYMBOL_GPL vmlinux 0x6311829a xfrm_audit_state_delete -EXPORT_SYMBOL_GPL vmlinux 0x6313865a class_for_each_device -EXPORT_SYMBOL_GPL vmlinux 0x63150e06 clk_get_parent -EXPORT_SYMBOL_GPL vmlinux 0x63197685 s2idle_wake -EXPORT_SYMBOL_GPL vmlinux 0x631e389d wm831x_auxadc_read_uv -EXPORT_SYMBOL_GPL vmlinux 0x63255f36 mbox_client_txdone -EXPORT_SYMBOL_GPL vmlinux 0x6330912a gpiod_export -EXPORT_SYMBOL_GPL vmlinux 0x63385136 phy_pm_runtime_forbid -EXPORT_SYMBOL_GPL vmlinux 0x6340434e x86_model -EXPORT_SYMBOL_GPL vmlinux 0x63407219 __hvc_resize -EXPORT_SYMBOL_GPL vmlinux 0x63533430 bsg_job_put -EXPORT_SYMBOL_GPL vmlinux 0x63579108 pci_create_slot -EXPORT_SYMBOL_GPL vmlinux 0x6369b62c clockevents_config_and_register -EXPORT_SYMBOL_GPL vmlinux 0x636ac72a usb_get_role_switch_default_mode -EXPORT_SYMBOL_GPL vmlinux 0x637dc8b7 pci_epf_alloc_space -EXPORT_SYMBOL_GPL vmlinux 0x637fb15b gpiod_get_array_optional -EXPORT_SYMBOL_GPL vmlinux 0x6380caf3 __ip6_datagram_connect -EXPORT_SYMBOL_GPL vmlinux 0x6387a16e __class_create -EXPORT_SYMBOL_GPL vmlinux 0x6387d0a8 iommu_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0x638a9653 memory_add_physaddr_to_nid -EXPORT_SYMBOL_GPL vmlinux 0x63944708 __SCK__tp_func_block_rq_remap -EXPORT_SYMBOL_GPL vmlinux 0x639931a0 dev_pm_opp_xlate_required_opp -EXPORT_SYMBOL_GPL vmlinux 0x63b65c29 hwpoison_filter -EXPORT_SYMBOL_GPL vmlinux 0x63c08029 clk_bulk_unprepare -EXPORT_SYMBOL_GPL vmlinux 0x63c813e3 __platform_driver_register -EXPORT_SYMBOL_GPL vmlinux 0x63c9303d tpm_chip_register -EXPORT_SYMBOL_GPL vmlinux 0x63cefee5 rcu_read_unlock_trace_special -EXPORT_SYMBOL_GPL vmlinux 0x63ea80b3 cper_mem_err_type_str -EXPORT_SYMBOL_GPL vmlinux 0x63eda2e7 platform_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0x640ce3c1 cpufreq_cpu_get_raw -EXPORT_SYMBOL_GPL vmlinux 0x642697fe vfs_write -EXPORT_SYMBOL_GPL vmlinux 0x642b39d6 simple_attr_write_signed -EXPORT_SYMBOL_GPL vmlinux 0x644d4d2d device_unregister -EXPORT_SYMBOL_GPL vmlinux 0x644e7dfd sfp_add_phy -EXPORT_SYMBOL_GPL vmlinux 0x64549b60 gnttab_page_cache_shrink -EXPORT_SYMBOL_GPL vmlinux 0x645563c2 __unwind_start -EXPORT_SYMBOL_GPL vmlinux 0x64575bdc usb_store_new_id -EXPORT_SYMBOL_GPL vmlinux 0x64647acd dev_pm_opp_set_clkname -EXPORT_SYMBOL_GPL vmlinux 0x64762c41 pci_epf_remove_vepf -EXPORT_SYMBOL_GPL vmlinux 0x64866d15 dax_finish_sync_fault -EXPORT_SYMBOL_GPL vmlinux 0x64925270 __dax_synchronous -EXPORT_SYMBOL_GPL vmlinux 0x64952826 tty_mode_ioctl -EXPORT_SYMBOL_GPL vmlinux 0x6496bfa3 efivar_entry_set_get_size -EXPORT_SYMBOL_GPL vmlinux 0x64a62e11 acpi_processor_ffh_cstate_enter -EXPORT_SYMBOL_GPL vmlinux 0x64bfa718 kthread_data -EXPORT_SYMBOL_GPL vmlinux 0x64c3bb9f regulator_set_pull_down_regmap -EXPORT_SYMBOL_GPL vmlinux 0x64e27c4f synth_event_delete -EXPORT_SYMBOL_GPL vmlinux 0x64f36620 dax_flush -EXPORT_SYMBOL_GPL vmlinux 0x64f5d66a devm_nvmem_device_put -EXPORT_SYMBOL_GPL vmlinux 0x6502d9c2 xenbus_scanf -EXPORT_SYMBOL_GPL vmlinux 0x65075b61 __scsi_init_queue -EXPORT_SYMBOL_GPL vmlinux 0x65222504 blkcg_policy_register -EXPORT_SYMBOL_GPL vmlinux 0x6527a231 dbgp_external_startup -EXPORT_SYMBOL_GPL vmlinux 0x652b194d __SCK__tp_func_block_rq_insert -EXPORT_SYMBOL_GPL vmlinux 0x6531a37f mpi_add -EXPORT_SYMBOL_GPL vmlinux 0x6545b6c7 phy_get -EXPORT_SYMBOL_GPL vmlinux 0x6546ad12 ohci_init_driver -EXPORT_SYMBOL_GPL vmlinux 0x654bc544 platform_get_mem_or_io -EXPORT_SYMBOL_GPL vmlinux 0x655b61a4 __page_mapcount -EXPORT_SYMBOL_GPL vmlinux 0x656ebd4a nd_cmd_in_size -EXPORT_SYMBOL_GPL vmlinux 0x65704d22 hv_stimer_cleanup -EXPORT_SYMBOL_GPL vmlinux 0x65846b1e l3mdev_fib_table_rcu -EXPORT_SYMBOL_GPL vmlinux 0x659e093b xfrm_state_mtu -EXPORT_SYMBOL_GPL vmlinux 0x65a10da9 platform_get_irq_byname -EXPORT_SYMBOL_GPL vmlinux 0x65c6e60d ethtool_set_ethtool_phy_ops -EXPORT_SYMBOL_GPL vmlinux 0x65ccb6f0 call_netevent_notifiers -EXPORT_SYMBOL_GPL vmlinux 0x65d57cb6 usb_sg_init -EXPORT_SYMBOL_GPL vmlinux 0x65efaecf power_supply_register -EXPORT_SYMBOL_GPL vmlinux 0x65fd3b3b ata_pci_device_do_suspend -EXPORT_SYMBOL_GPL vmlinux 0x6608c897 mbox_chan_txdone -EXPORT_SYMBOL_GPL vmlinux 0x660a8fc6 path_noexec -EXPORT_SYMBOL_GPL vmlinux 0x661601de sprint_symbol -EXPORT_SYMBOL_GPL vmlinux 0x662ee28c crypto_skcipher_encrypt -EXPORT_SYMBOL_GPL vmlinux 0x6634cfaf xen_pci_frontend -EXPORT_SYMBOL_GPL vmlinux 0x6635af91 gpiochip_irq_map -EXPORT_SYMBOL_GPL vmlinux 0x6636c3c9 irq_set_vcpu_affinity -EXPORT_SYMBOL_GPL vmlinux 0x663bb448 devlink_fmsg_obj_nest_end -EXPORT_SYMBOL_GPL vmlinux 0x664db5c3 devm_pinctrl_register -EXPORT_SYMBOL_GPL vmlinux 0x6654e287 devm_gpiod_get_array -EXPORT_SYMBOL_GPL vmlinux 0x6657ea8a crypto_stats_kpp_compute_shared_secret -EXPORT_SYMBOL_GPL vmlinux 0x665c5b3a leds_list_lock -EXPORT_SYMBOL_GPL vmlinux 0x665e307d ping_getfrag -EXPORT_SYMBOL_GPL vmlinux 0x665e92a0 clk_set_duty_cycle -EXPORT_SYMBOL_GPL vmlinux 0x6661a90f synchronize_srcu -EXPORT_SYMBOL_GPL vmlinux 0x66670efc devm_acpi_dev_add_driver_gpios -EXPORT_SYMBOL_GPL vmlinux 0x66730d29 pid_nr_ns -EXPORT_SYMBOL_GPL vmlinux 0x667bf6cb ata_eh_analyze_ncq_error -EXPORT_SYMBOL_GPL vmlinux 0x6681c37a extcon_get_extcon_dev -EXPORT_SYMBOL_GPL vmlinux 0x668224be virtqueue_get_avail_addr -EXPORT_SYMBOL_GPL vmlinux 0x668402aa crypto_put_default_rng -EXPORT_SYMBOL_GPL vmlinux 0x669356c7 efivars_register -EXPORT_SYMBOL_GPL vmlinux 0x66b15f34 usb_find_alt_setting -EXPORT_SYMBOL_GPL vmlinux 0x66b26b2b clk_hw_unregister_divider -EXPORT_SYMBOL_GPL vmlinux 0x66b97421 sfp_link_up -EXPORT_SYMBOL_GPL vmlinux 0x66bac7f5 pin_get_name -EXPORT_SYMBOL_GPL vmlinux 0x66c872f7 vp_modern_generation -EXPORT_SYMBOL_GPL vmlinux 0x66cc452c devm_nvmem_register -EXPORT_SYMBOL_GPL vmlinux 0x66d87d38 symbol_put_addr -EXPORT_SYMBOL_GPL vmlinux 0x66ed519c __tracepoint_sched_cpu_capacity_tp -EXPORT_SYMBOL_GPL vmlinux 0x66ee644e __srcu_read_lock -EXPORT_SYMBOL_GPL vmlinux 0x66f8b227 blocking_notifier_call_chain_robust -EXPORT_SYMBOL_GPL vmlinux 0x66fce437 phy_validate -EXPORT_SYMBOL_GPL vmlinux 0x6707d6d4 devlink_rate_nodes_destroy -EXPORT_SYMBOL_GPL vmlinux 0x670fda9e iommu_uapi_cache_invalidate -EXPORT_SYMBOL_GPL vmlinux 0x6716d850 acpi_initialize_hp_context -EXPORT_SYMBOL_GPL vmlinux 0x671cba97 devm_thermal_of_cooling_device_register -EXPORT_SYMBOL_GPL vmlinux 0x6735d56e tcp_ca_get_name_by_key -EXPORT_SYMBOL_GPL vmlinux 0x67365ce0 sfp_bus_find_fwnode -EXPORT_SYMBOL_GPL vmlinux 0x6739a503 balloon_set_new_target -EXPORT_SYMBOL_GPL vmlinux 0x67559a95 virtqueue_disable_cb -EXPORT_SYMBOL_GPL vmlinux 0x6759bd00 __SCT__tp_func_rpm_idle -EXPORT_SYMBOL_GPL vmlinux 0x67652b17 node_to_amd_nb -EXPORT_SYMBOL_GPL vmlinux 0x6786213b set_primary_fwnode -EXPORT_SYMBOL_GPL vmlinux 0x678e8c36 sock_map_destroy -EXPORT_SYMBOL_GPL vmlinux 0x6790ebd3 mce_is_memory_error -EXPORT_SYMBOL_GPL vmlinux 0x6793b559 rtc_initialize_alarm -EXPORT_SYMBOL_GPL vmlinux 0x67955ce6 profile_hits -EXPORT_SYMBOL_GPL vmlinux 0x67a2b3df iommu_setup_dma_ops -EXPORT_SYMBOL_GPL vmlinux 0x67a4884b scsi_schedule_eh -EXPORT_SYMBOL_GPL vmlinux 0x67a8a3e0 fib_rules_register -EXPORT_SYMBOL_GPL vmlinux 0x67b292ca ata_port_desc -EXPORT_SYMBOL_GPL vmlinux 0x67c65614 fuse_file_poll -EXPORT_SYMBOL_GPL vmlinux 0x67da9f7c sha512_zero_message_hash -EXPORT_SYMBOL_GPL vmlinux 0x67dcd76b uv_setup_irq -EXPORT_SYMBOL_GPL vmlinux 0x67def57c regulator_get_drvdata -EXPORT_SYMBOL_GPL vmlinux 0x67e1f23c hwmon_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0x67eb9402 gnttab_dma_free_pages -EXPORT_SYMBOL_GPL vmlinux 0x67f35268 blk_ksm_intersect_modes -EXPORT_SYMBOL_GPL vmlinux 0x67fc7586 cpufreq_policy_transition_delay_us -EXPORT_SYMBOL_GPL vmlinux 0x6801798c genphy_c45_restart_aneg -EXPORT_SYMBOL_GPL vmlinux 0x680f209b rt_mutex_trylock -EXPORT_SYMBOL_GPL vmlinux 0x68131b94 usb_root_hub_lost_power -EXPORT_SYMBOL_GPL vmlinux 0x6815026d led_put -EXPORT_SYMBOL_GPL vmlinux 0x6824af60 fwnode_property_read_u64_array -EXPORT_SYMBOL_GPL vmlinux 0x682ff057 ring_buffer_commit_overrun_cpu -EXPORT_SYMBOL_GPL vmlinux 0x683a7a15 __inet_twsk_schedule -EXPORT_SYMBOL_GPL vmlinux 0x684fc8f4 fuse_conn_put -EXPORT_SYMBOL_GPL vmlinux 0x687ae126 regulator_sync_voltage -EXPORT_SYMBOL_GPL vmlinux 0x68952493 rcu_note_context_switch -EXPORT_SYMBOL_GPL vmlinux 0x68a5134a xenbus_unmap_ring_vfree -EXPORT_SYMBOL_GPL vmlinux 0x68ac7533 tty_port_register_device_serdev -EXPORT_SYMBOL_GPL vmlinux 0x68d4b699 ata_ehi_clear_desc -EXPORT_SYMBOL_GPL vmlinux 0x68d63702 net_ns_type_operations -EXPORT_SYMBOL_GPL vmlinux 0x68f2cc1a __traceiter_xdp_bulk_tx -EXPORT_SYMBOL_GPL vmlinux 0x68f5f232 xas_create_range -EXPORT_SYMBOL_GPL vmlinux 0x6904d297 addrconf_prefix_rcv_add_addr -EXPORT_SYMBOL_GPL vmlinux 0x6905d32e nf_ip_route -EXPORT_SYMBOL_GPL vmlinux 0x690eaa01 of_devfreq_cooling_register -EXPORT_SYMBOL_GPL vmlinux 0x690f585e phy_basic_ports_array -EXPORT_SYMBOL_GPL vmlinux 0x691674f9 blk_req_zone_write_trylock -EXPORT_SYMBOL_GPL vmlinux 0x69183e22 pwmchip_remove -EXPORT_SYMBOL_GPL vmlinux 0x69192a4c spi_mem_dirmap_read -EXPORT_SYMBOL_GPL vmlinux 0x691d5bd3 regmap_noinc_write -EXPORT_SYMBOL_GPL vmlinux 0x692628ac wakeup_sources_walk_next -EXPORT_SYMBOL_GPL vmlinux 0x692a8789 intel_pinctrl_get_soc_data -EXPORT_SYMBOL_GPL vmlinux 0x692bf08a nfs42_ssc_unregister -EXPORT_SYMBOL_GPL vmlinux 0x69353044 pci_epc_get_msi -EXPORT_SYMBOL_GPL vmlinux 0x69384b0a usb_hcd_start_port_resume -EXPORT_SYMBOL_GPL vmlinux 0x694f49d7 blk_mq_unquiesce_queue -EXPORT_SYMBOL_GPL vmlinux 0x69518b29 irq_get_default_host -EXPORT_SYMBOL_GPL vmlinux 0x69563ff3 pci_status_get_and_clear_errors -EXPORT_SYMBOL_GPL vmlinux 0x6959b8b4 genphy_c45_pma_setup_forced -EXPORT_SYMBOL_GPL vmlinux 0x6962ef04 dev_attr_unload_heads -EXPORT_SYMBOL_GPL vmlinux 0x69637b2c __traceiter_powernv_throttle -EXPORT_SYMBOL_GPL vmlinux 0x6968678b clk_hw_register_fixed_factor -EXPORT_SYMBOL_GPL vmlinux 0x696d7e0b l1tf_mitigation -EXPORT_SYMBOL_GPL vmlinux 0x697c5d0d tracing_snapshot_alloc -EXPORT_SYMBOL_GPL vmlinux 0x6990aff8 powercap_unregister_zone -EXPORT_SYMBOL_GPL vmlinux 0x6994b62c int_active_memcg -EXPORT_SYMBOL_GPL vmlinux 0x699539ce usb_disable_ltm -EXPORT_SYMBOL_GPL vmlinux 0x6996e790 crypto_default_rng -EXPORT_SYMBOL_GPL vmlinux 0x69a0d255 skb_defer_rx_timestamp -EXPORT_SYMBOL_GPL vmlinux 0x69adf381 serial8250_request_dma -EXPORT_SYMBOL_GPL vmlinux 0x69b1bb5b irq_domain_create_simple -EXPORT_SYMBOL_GPL vmlinux 0x69b9dcbe xenbus_dev_probe -EXPORT_SYMBOL_GPL vmlinux 0x69cf0632 mpi_fromstr -EXPORT_SYMBOL_GPL vmlinux 0x69dc03bc blk_mq_update_nr_hw_queues -EXPORT_SYMBOL_GPL vmlinux 0x69e323d6 extcon_dev_free -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 0x69f0e70d d_walk -EXPORT_SYMBOL_GPL vmlinux 0x69f1e603 cpci_hp_register_controller -EXPORT_SYMBOL_GPL vmlinux 0x6a05b65b fb_videomode_from_videomode -EXPORT_SYMBOL_GPL vmlinux 0x6a12b29f perf_event_release_kernel -EXPORT_SYMBOL_GPL vmlinux 0x6a1733eb iommu_group_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x6a17e435 tty_ldisc_receive_buf -EXPORT_SYMBOL_GPL vmlinux 0x6a3333e4 crypto_register_kpp -EXPORT_SYMBOL_GPL vmlinux 0x6a421062 memory_failure_queue -EXPORT_SYMBOL_GPL vmlinux 0x6a44a126 dma_buf_get -EXPORT_SYMBOL_GPL vmlinux 0x6a460dc5 schedule_hrtimeout -EXPORT_SYMBOL_GPL vmlinux 0x6a4f623b mmu_notifier_synchronize -EXPORT_SYMBOL_GPL vmlinux 0x6a551f64 cpufreq_unregister_governor -EXPORT_SYMBOL_GPL vmlinux 0x6a643008 iomap_readpage -EXPORT_SYMBOL_GPL vmlinux 0x6a7173f5 devlink_param_driverinit_value_get -EXPORT_SYMBOL_GPL vmlinux 0x6a8441be cpci_hp_start -EXPORT_SYMBOL_GPL vmlinux 0x6a8818ea clk_gate_restore_context -EXPORT_SYMBOL_GPL vmlinux 0x6a8daaf6 bpf_prog_put -EXPORT_SYMBOL_GPL vmlinux 0x6aa2a877 xenbus_printf -EXPORT_SYMBOL_GPL vmlinux 0x6aab52fd fuse_direct_io -EXPORT_SYMBOL_GPL vmlinux 0x6aad9152 xen_set_callback_via -EXPORT_SYMBOL_GPL vmlinux 0x6ab09162 agp_add_bridge -EXPORT_SYMBOL_GPL vmlinux 0x6ab8ada3 locks_alloc_lock -EXPORT_SYMBOL_GPL vmlinux 0x6ac4c1e6 rio_request_inb_dbell -EXPORT_SYMBOL_GPL vmlinux 0x6acbc255 devm_clk_bulk_get_optional -EXPORT_SYMBOL_GPL vmlinux 0x6aed3d3a devlink_resource_size_get -EXPORT_SYMBOL_GPL vmlinux 0x6aef1d0d vfs_fallocate -EXPORT_SYMBOL_GPL vmlinux 0x6aeff953 devm_thermal_add_hwmon_sysfs -EXPORT_SYMBOL_GPL vmlinux 0x6afbd3cc ip_route_output_tunnel -EXPORT_SYMBOL_GPL vmlinux 0x6b05e7c6 usb_mon_register -EXPORT_SYMBOL_GPL vmlinux 0x6b0dc565 xen_set_irq_priority -EXPORT_SYMBOL_GPL vmlinux 0x6b1134b2 __SCK__tp_func_block_bio_complete -EXPORT_SYMBOL_GPL vmlinux 0x6b198c77 led_colors -EXPORT_SYMBOL_GPL vmlinux 0x6b1e032d pci_d3cold_enable -EXPORT_SYMBOL_GPL vmlinux 0x6b2b69f7 static_key_enable -EXPORT_SYMBOL_GPL vmlinux 0x6b2c8710 devm_serdev_device_open -EXPORT_SYMBOL_GPL vmlinux 0x6b35a16b intel_scu_ipc_dev_get -EXPORT_SYMBOL_GPL vmlinux 0x6b37555b ata_timing_compute -EXPORT_SYMBOL_GPL vmlinux 0x6b3ae022 acpi_os_unmap_iomem -EXPORT_SYMBOL_GPL vmlinux 0x6b413c9b sfp_link_down -EXPORT_SYMBOL_GPL vmlinux 0x6b70b594 ping_unhash -EXPORT_SYMBOL_GPL vmlinux 0x6b7a4335 hyperv_cleanup -EXPORT_SYMBOL_GPL vmlinux 0x6b81c38b power_supply_unreg_notifier -EXPORT_SYMBOL_GPL vmlinux 0x6b890f41 sched_trace_rq_avg_rt -EXPORT_SYMBOL_GPL vmlinux 0x6b97261b led_classdev_resume -EXPORT_SYMBOL_GPL vmlinux 0x6b9839af atomic_notifier_chain_unregister -EXPORT_SYMBOL_GPL vmlinux 0x6ba36c6a hwpoison_filter_flags_value -EXPORT_SYMBOL_GPL vmlinux 0x6ba89723 led_trigger_write -EXPORT_SYMBOL_GPL vmlinux 0x6bac5d20 pm_generic_freeze_noirq -EXPORT_SYMBOL_GPL vmlinux 0x6bacf530 __fscrypt_prepare_readdir -EXPORT_SYMBOL_GPL vmlinux 0x6bad7bee dev_pm_opp_find_freq_exact -EXPORT_SYMBOL_GPL vmlinux 0x6bc75662 bd_unlink_disk_holder -EXPORT_SYMBOL_GPL vmlinux 0x6bcdedc0 mpi_point_init -EXPORT_SYMBOL_GPL vmlinux 0x6bd1aa56 stack_trace_save -EXPORT_SYMBOL_GPL vmlinux 0x6bdd99fa gpiochip_irq_domain_activate -EXPORT_SYMBOL_GPL vmlinux 0x6bdef35c acpi_ec_mark_gpe_for_wake -EXPORT_SYMBOL_GPL vmlinux 0x6be3a96b hv_remove_vmbus_handler -EXPORT_SYMBOL_GPL vmlinux 0x6befca1c restore_online_page_callback -EXPORT_SYMBOL_GPL vmlinux 0x6bff1e12 kern_mount -EXPORT_SYMBOL_GPL vmlinux 0x6bffd43c rio_route_add_entry -EXPORT_SYMBOL_GPL vmlinux 0x6c138375 sk_msg_clone -EXPORT_SYMBOL_GPL vmlinux 0x6c19fd0a to_nvdimm_bus -EXPORT_SYMBOL_GPL vmlinux 0x6c205008 mpi_print -EXPORT_SYMBOL_GPL vmlinux 0x6c2135da debugfs_lookup_and_remove -EXPORT_SYMBOL_GPL vmlinux 0x6c26ac70 pm_generic_poweroff_late -EXPORT_SYMBOL_GPL vmlinux 0x6c2be30e power_supply_external_power_changed -EXPORT_SYMBOL_GPL vmlinux 0x6c389761 acpi_bus_get_private_data -EXPORT_SYMBOL_GPL vmlinux 0x6c3f70e0 guid_gen -EXPORT_SYMBOL_GPL vmlinux 0x6c3fc7f8 gpiod_direction_output -EXPORT_SYMBOL_GPL vmlinux 0x6c435971 serial8250_do_shutdown -EXPORT_SYMBOL_GPL vmlinux 0x6c4922bf cpufreq_disable_fast_switch -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 0x6c6fb868 class_create_file_ns -EXPORT_SYMBOL_GPL vmlinux 0x6c7b435f mc146818_does_rtc_work -EXPORT_SYMBOL_GPL vmlinux 0x6c7f8730 device_match_of_node -EXPORT_SYMBOL_GPL vmlinux 0x6c9a571f __traceiter_attach_device_to_domain -EXPORT_SYMBOL_GPL vmlinux 0x6ca4bf88 async_synchronize_full_domain -EXPORT_SYMBOL_GPL vmlinux 0x6cc1ebe3 sdio_align_size -EXPORT_SYMBOL_GPL vmlinux 0x6ccecdb0 __traceiter_neigh_timer_handler -EXPORT_SYMBOL_GPL vmlinux 0x6cda1621 vfs_getxattr_alloc -EXPORT_SYMBOL_GPL vmlinux 0x6cdaf12a blk_revalidate_disk_zones -EXPORT_SYMBOL_GPL vmlinux 0x6cee654f rio_mport_send_doorbell -EXPORT_SYMBOL_GPL vmlinux 0x6cf3bc65 __pci_hp_initialize -EXPORT_SYMBOL_GPL vmlinux 0x6cfd7c5c tcp_reno_cong_avoid -EXPORT_SYMBOL_GPL vmlinux 0x6d0824fa devm_regmap_field_bulk_alloc -EXPORT_SYMBOL_GPL vmlinux 0x6d09843f copy_bpf_fprog_from_user -EXPORT_SYMBOL_GPL vmlinux 0x6d0ae550 pinctrl_gpio_request -EXPORT_SYMBOL_GPL vmlinux 0x6d0cd209 kick_process -EXPORT_SYMBOL_GPL vmlinux 0x6d179a76 __SCK__tp_func_pelt_dl_tp -EXPORT_SYMBOL_GPL vmlinux 0x6d264e0b btree_update -EXPORT_SYMBOL_GPL vmlinux 0x6d2e899d mce_usable_address -EXPORT_SYMBOL_GPL vmlinux 0x6d2fc5a6 net_namespace_list -EXPORT_SYMBOL_GPL vmlinux 0x6d37d963 start_critical_timings -EXPORT_SYMBOL_GPL vmlinux 0x6d38275c register_acpi_bus_type -EXPORT_SYMBOL_GPL vmlinux 0x6d44cf42 iomap_fiemap -EXPORT_SYMBOL_GPL vmlinux 0x6d5d6901 validate_xmit_xfrm -EXPORT_SYMBOL_GPL vmlinux 0x6d6fec1f ktime_mono_to_any -EXPORT_SYMBOL_GPL vmlinux 0x6d7e951e rcu_exp_batches_completed -EXPORT_SYMBOL_GPL vmlinux 0x6da016d4 apei_get_debugfs_dir -EXPORT_SYMBOL_GPL vmlinux 0x6dbaafd3 put_old_timespec32 -EXPORT_SYMBOL_GPL vmlinux 0x6dd5680d sprint_symbol_build_id -EXPORT_SYMBOL_GPL vmlinux 0x6de7bbab sysfs_remove_groups -EXPORT_SYMBOL_GPL vmlinux 0x6df9ca00 fib_rules_lookup -EXPORT_SYMBOL_GPL vmlinux 0x6e00fcfb modify_ftrace_direct -EXPORT_SYMBOL_GPL vmlinux 0x6e0f3d5b ohci_restart -EXPORT_SYMBOL_GPL vmlinux 0x6e128872 __devm_of_phy_provider_register -EXPORT_SYMBOL_GPL vmlinux 0x6e31eb75 bus_get_device_klist -EXPORT_SYMBOL_GPL vmlinux 0x6e35003d __traceiter_block_bio_remap -EXPORT_SYMBOL_GPL vmlinux 0x6e3ff83a edac_device_alloc_index -EXPORT_SYMBOL_GPL vmlinux 0x6e427a7a mmc_cmdq_enable -EXPORT_SYMBOL_GPL vmlinux 0x6e4bc056 spi_res_free -EXPORT_SYMBOL_GPL vmlinux 0x6e53a2fc device_remove_bin_file -EXPORT_SYMBOL_GPL vmlinux 0x6e5c1460 pci_epc_map_msi_irq -EXPORT_SYMBOL_GPL vmlinux 0x6e5f0fe7 usb_hcd_map_urb_for_dma -EXPORT_SYMBOL_GPL vmlinux 0x6e609e38 query_asymmetric_key -EXPORT_SYMBOL_GPL vmlinux 0x6e6595a7 regcache_cache_only -EXPORT_SYMBOL_GPL vmlinux 0x6e72df0d filemap_read -EXPORT_SYMBOL_GPL vmlinux 0x6e7943ec iommu_group_id -EXPORT_SYMBOL_GPL vmlinux 0x6e85b00b local_touch_nmi -EXPORT_SYMBOL_GPL vmlinux 0x6e89a560 regmap_irq_chip_get_base -EXPORT_SYMBOL_GPL vmlinux 0x6e8f46f7 pwm_set_chip_data -EXPORT_SYMBOL_GPL vmlinux 0x6e90ec85 extcon_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x6e9fed13 ata_sff_port_intr -EXPORT_SYMBOL_GPL vmlinux 0x6ea3d82d i2c_probe_func_quick_read -EXPORT_SYMBOL_GPL vmlinux 0x6ebe366f ktime_get_mono_fast_ns -EXPORT_SYMBOL_GPL vmlinux 0x6ec2f079 usb_reset_configuration -EXPORT_SYMBOL_GPL vmlinux 0x6ec41521 usb_altnum_to_altsetting -EXPORT_SYMBOL_GPL vmlinux 0x6ecc7c4c serial8250_em485_stop_tx -EXPORT_SYMBOL_GPL vmlinux 0x6ee0a701 adp5520_write -EXPORT_SYMBOL_GPL vmlinux 0x6ee8c94b sfp_get_module_eeprom -EXPORT_SYMBOL_GPL vmlinux 0x6ee9ea5c __tracepoint_pelt_irq_tp -EXPORT_SYMBOL_GPL vmlinux 0x6eef0304 xfrm_audit_policy_add -EXPORT_SYMBOL_GPL vmlinux 0x6ef6b54f ktime_get_boot_fast_ns -EXPORT_SYMBOL_GPL vmlinux 0x6eff7350 irq_remove_generic_chip -EXPORT_SYMBOL_GPL vmlinux 0x6f04d941 md_new_event -EXPORT_SYMBOL_GPL vmlinux 0x6f06d159 acpi_dma_controller_register -EXPORT_SYMBOL_GPL vmlinux 0x6f0f095c pci_probe_reset_slot -EXPORT_SYMBOL_GPL vmlinux 0x6f104613 xas_clear_mark -EXPORT_SYMBOL_GPL vmlinux 0x6f12560a get_old_timespec32 -EXPORT_SYMBOL_GPL vmlinux 0x6f1e42f0 debugfs_create_atomic_t -EXPORT_SYMBOL_GPL vmlinux 0x6f1f575f rio_mport_read_config_32 -EXPORT_SYMBOL_GPL vmlinux 0x6f2a6638 irq_set_default_host -EXPORT_SYMBOL_GPL vmlinux 0x6f2c91fb crypto_remove_spawns -EXPORT_SYMBOL_GPL vmlinux 0x6f389f07 l3mdev_table_lookup_unregister -EXPORT_SYMBOL_GPL vmlinux 0x6f612cbc regmap_get_reg_stride -EXPORT_SYMBOL_GPL vmlinux 0x6f79ebd6 spi_controller_resume -EXPORT_SYMBOL_GPL vmlinux 0x6f7e6040 irq_has_action -EXPORT_SYMBOL_GPL vmlinux 0x6f8a4d7d sk_detach_filter -EXPORT_SYMBOL_GPL vmlinux 0x6f9922e9 acpi_debugfs_dir -EXPORT_SYMBOL_GPL vmlinux 0x6f9acb7e usb_unlocked_enable_lpm -EXPORT_SYMBOL_GPL vmlinux 0x6f9e763b timecounter_read -EXPORT_SYMBOL_GPL vmlinux 0x6fa211ff __of_phy_provider_register -EXPORT_SYMBOL_GPL vmlinux 0x6fb466fa skb_segment_list -EXPORT_SYMBOL_GPL vmlinux 0x6fcef6ab ring_buffer_reset -EXPORT_SYMBOL_GPL vmlinux 0x6fe41a07 extcon_unregister_notifier_all -EXPORT_SYMBOL_GPL vmlinux 0x6ff607b6 crypto_get_default_rng -EXPORT_SYMBOL_GPL vmlinux 0x6ff7a117 phy_save_page -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 0x70136738 regulator_get -EXPORT_SYMBOL_GPL vmlinux 0x701cfc12 pm_stay_awake -EXPORT_SYMBOL_GPL vmlinux 0x701dfc11 securityfs_create_file -EXPORT_SYMBOL_GPL vmlinux 0x702641d6 blk_ksm_update_capabilities -EXPORT_SYMBOL_GPL vmlinux 0x702d4f95 icc_provider_del -EXPORT_SYMBOL_GPL vmlinux 0x702f3d7f disk_force_media_change -EXPORT_SYMBOL_GPL vmlinux 0x703f8572 __inet_lookup_established -EXPORT_SYMBOL_GPL vmlinux 0x70459f92 unmap_mapping_pages -EXPORT_SYMBOL_GPL vmlinux 0x7047e70a klist_iter_init -EXPORT_SYMBOL_GPL vmlinux 0x704be923 phy_pm_runtime_get_sync -EXPORT_SYMBOL_GPL vmlinux 0x70576fee acpi_processor_ffh_cstate_probe -EXPORT_SYMBOL_GPL vmlinux 0x7073c04f phy_10_100_features_array -EXPORT_SYMBOL_GPL vmlinux 0x70790d4e regulator_list_voltage -EXPORT_SYMBOL_GPL vmlinux 0x707b38b7 xenbus_dev_changed -EXPORT_SYMBOL_GPL vmlinux 0x709864db irq_chip_ack_parent -EXPORT_SYMBOL_GPL vmlinux 0x70a2ee26 udp_abort -EXPORT_SYMBOL_GPL vmlinux 0x70a93943 dev_pm_opp_add -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 0x70c5f8c1 request_firmware_direct -EXPORT_SYMBOL_GPL vmlinux 0x70c6d827 mc146818_set_time -EXPORT_SYMBOL_GPL vmlinux 0x70cf032f usb_hcd_irq -EXPORT_SYMBOL_GPL vmlinux 0x70dacfe8 vfs_listxattr -EXPORT_SYMBOL_GPL vmlinux 0x70e06e33 pkcs7_free_message -EXPORT_SYMBOL_GPL vmlinux 0x70f7971b __tracepoint_detach_device_from_domain -EXPORT_SYMBOL_GPL vmlinux 0x71006e18 gpiod_get_raw_array_value -EXPORT_SYMBOL_GPL vmlinux 0x710c73b6 crypto_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x712011db debugfs_attr_read -EXPORT_SYMBOL_GPL vmlinux 0x71245de1 strp_data_ready -EXPORT_SYMBOL_GPL vmlinux 0x7129a6f4 osc_sb_native_usb4_support_confirmed -EXPORT_SYMBOL_GPL vmlinux 0x712e845b mmu_interval_notifier_insert -EXPORT_SYMBOL_GPL vmlinux 0x715b0abb pci_dev_unlock -EXPORT_SYMBOL_GPL vmlinux 0x716265c7 debugfs_initialized -EXPORT_SYMBOL_GPL vmlinux 0x71782333 devfreq_event_is_enabled -EXPORT_SYMBOL_GPL vmlinux 0x7178541d xenbus_dev_groups -EXPORT_SYMBOL_GPL vmlinux 0x71832172 regulator_suspend_enable -EXPORT_SYMBOL_GPL vmlinux 0x71937ecf __raw_v4_lookup -EXPORT_SYMBOL_GPL vmlinux 0x719e17ff clk_notifier_unregister -EXPORT_SYMBOL_GPL vmlinux 0x719f0d51 devlink_dpipe_entry_ctx_append -EXPORT_SYMBOL_GPL vmlinux 0x71b15008 lwtunnel_valid_encap_type -EXPORT_SYMBOL_GPL vmlinux 0x71b6cf94 dst_cache_reset_now -EXPORT_SYMBOL_GPL vmlinux 0x71bdbe63 nfs_ssc_register -EXPORT_SYMBOL_GPL vmlinux 0x71c059d8 __traceiter_map -EXPORT_SYMBOL_GPL vmlinux 0x71d128ad pci_cfg_access_lock -EXPORT_SYMBOL_GPL vmlinux 0x71e97f45 __traceiter_fib6_table_lookup -EXPORT_SYMBOL_GPL vmlinux 0x71f55952 __tracepoint_sched_util_est_cfs_tp -EXPORT_SYMBOL_GPL vmlinux 0x71fb901b acpi_gpiochip_request_interrupts -EXPORT_SYMBOL_GPL vmlinux 0x720a04bb virtqueue_enable_cb_prepare -EXPORT_SYMBOL_GPL vmlinux 0x722387e8 tty_port_register_device -EXPORT_SYMBOL_GPL vmlinux 0x723155eb __list_lru_init -EXPORT_SYMBOL_GPL vmlinux 0x7234e839 cgroup_attach_task_all -EXPORT_SYMBOL_GPL vmlinux 0x723a74e3 sysfs_update_group -EXPORT_SYMBOL_GPL vmlinux 0x724af69c ata_cable_40wire -EXPORT_SYMBOL_GPL vmlinux 0x7250dc7d pci_generic_config_read -EXPORT_SYMBOL_GPL vmlinux 0x7262702b sfp_get_module_eeprom_by_page -EXPORT_SYMBOL_GPL vmlinux 0x72655bd3 usb_alloc_urb -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 0x7284642f inet6_csk_xmit -EXPORT_SYMBOL_GPL vmlinux 0x728ee75c devm_free_percpu -EXPORT_SYMBOL_GPL vmlinux 0x7294e742 crypto_aead_decrypt -EXPORT_SYMBOL_GPL vmlinux 0x729fd496 acpi_subsys_freeze -EXPORT_SYMBOL_GPL vmlinux 0x72cde06e irq_set_chip_and_handler_name -EXPORT_SYMBOL_GPL vmlinux 0x72d267dc nvmem_del_cell_lookups -EXPORT_SYMBOL_GPL vmlinux 0x72d6c2cd do_splice_from -EXPORT_SYMBOL_GPL vmlinux 0x72dc4a57 tty_port_default_client_ops -EXPORT_SYMBOL_GPL vmlinux 0x72dcaf4a phy_speed_up -EXPORT_SYMBOL_GPL vmlinux 0x730d3a22 genphy_c45_an_disable_aneg -EXPORT_SYMBOL_GPL vmlinux 0x73152c52 fixup_user_fault -EXPORT_SYMBOL_GPL vmlinux 0x7319d73f power_supply_set_battery_charged -EXPORT_SYMBOL_GPL vmlinux 0x731dba7a xen_domain_type -EXPORT_SYMBOL_GPL vmlinux 0x732466a6 smpboot_register_percpu_thread -EXPORT_SYMBOL_GPL vmlinux 0x7324c938 balloon_page_list_enqueue -EXPORT_SYMBOL_GPL vmlinux 0x73277a86 rio_register_scan -EXPORT_SYMBOL_GPL vmlinux 0x732852fe xenbus_transaction_end -EXPORT_SYMBOL_GPL vmlinux 0x732b5a0a trace_array_get_by_name -EXPORT_SYMBOL_GPL vmlinux 0x733ec33e __SCT__tp_func_fdb_delete -EXPORT_SYMBOL_GPL vmlinux 0x7347e3f9 inet_peer_base_init -EXPORT_SYMBOL_GPL vmlinux 0x7381287f trace_handle_return -EXPORT_SYMBOL_GPL vmlinux 0x73880aa6 xdp_return_frame -EXPORT_SYMBOL_GPL vmlinux 0x7389a71e rio_map_outb_region -EXPORT_SYMBOL_GPL vmlinux 0x738fe32b amd_get_nodes_per_socket -EXPORT_SYMBOL_GPL vmlinux 0x73a48b4a ata_sff_std_ports -EXPORT_SYMBOL_GPL vmlinux 0x73bbc7b9 relay_subbufs_consumed -EXPORT_SYMBOL_GPL vmlinux 0x73c0b098 misc_cg_try_charge -EXPORT_SYMBOL_GPL vmlinux 0x73c2554f __iowrite64_copy -EXPORT_SYMBOL_GPL vmlinux 0x73cc8631 oiap -EXPORT_SYMBOL_GPL vmlinux 0x73d9be34 pci_dev_lock -EXPORT_SYMBOL_GPL vmlinux 0x73efe78c clk_hw_is_enabled -EXPORT_SYMBOL_GPL vmlinux 0x73f37391 dev_pm_opp_get_level -EXPORT_SYMBOL_GPL vmlinux 0x7405153b blkg_prfill_rwstat -EXPORT_SYMBOL_GPL vmlinux 0x74099e2b gnttab_page_cache_put -EXPORT_SYMBOL_GPL vmlinux 0x74150c56 ata_pci_device_resume -EXPORT_SYMBOL_GPL vmlinux 0x7415a9dc nf_checksum_partial -EXPORT_SYMBOL_GPL vmlinux 0x741baafb devm_rtc_nvmem_register -EXPORT_SYMBOL_GPL vmlinux 0x7429c4d7 attribute_container_find_class_device -EXPORT_SYMBOL_GPL vmlinux 0x743a165e ata_pack_xfermask -EXPORT_SYMBOL_GPL vmlinux 0x743d983e dev_pm_opp_get_freq -EXPORT_SYMBOL_GPL vmlinux 0x7441223c sk_msg_free_partial -EXPORT_SYMBOL_GPL vmlinux 0x74457e56 apei_resources_fini -EXPORT_SYMBOL_GPL vmlinux 0x744657f4 led_trigger_event -EXPORT_SYMBOL_GPL vmlinux 0x7452adff user_return_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0x7480b2ff to_nvdimm -EXPORT_SYMBOL_GPL vmlinux 0x748e7f61 alloc_io_pgtable_ops -EXPORT_SYMBOL_GPL vmlinux 0x749367df virtio_max_dma_size -EXPORT_SYMBOL_GPL vmlinux 0x74996f7b netif_carrier_event -EXPORT_SYMBOL_GPL vmlinux 0x74afc6ec gen_pool_size -EXPORT_SYMBOL_GPL vmlinux 0x74b5ea68 lcm_not_zero -EXPORT_SYMBOL_GPL vmlinux 0x74b7abb8 sdio_writeb -EXPORT_SYMBOL_GPL vmlinux 0x74baf17a tracing_is_on -EXPORT_SYMBOL_GPL vmlinux 0x74c7bffa stack_trace_snprint -EXPORT_SYMBOL_GPL vmlinux 0x74dd4a34 page_cache_async_ra -EXPORT_SYMBOL_GPL vmlinux 0x74e73871 housekeeping_overridden -EXPORT_SYMBOL_GPL vmlinux 0x74fe2bb4 ohci_resume -EXPORT_SYMBOL_GPL vmlinux 0x751069a3 tty_buffer_unlock_exclusive -EXPORT_SYMBOL_GPL vmlinux 0x75133f6e visitor128 -EXPORT_SYMBOL_GPL vmlinux 0x7518e8fe mmc_regulator_set_ocr -EXPORT_SYMBOL_GPL vmlinux 0x7519907a fsnotify_alloc_user_group -EXPORT_SYMBOL_GPL vmlinux 0x7521afb6 leave_mm -EXPORT_SYMBOL_GPL vmlinux 0x7522f3ba irq_modify_status -EXPORT_SYMBOL_GPL vmlinux 0x75433748 tty_ldisc_ref_wait -EXPORT_SYMBOL_GPL vmlinux 0x75756b5e crypto_alloc_tfm_node -EXPORT_SYMBOL_GPL vmlinux 0x757fef46 fuse_request_end -EXPORT_SYMBOL_GPL vmlinux 0x758b6e6c tps80031_ext_power_req_config -EXPORT_SYMBOL_GPL vmlinux 0x759041ae free_io_pgtable_ops -EXPORT_SYMBOL_GPL vmlinux 0x7591c7f0 ipv6_bpf_stub -EXPORT_SYMBOL_GPL vmlinux 0x75a8e7fa class_compat_create_link -EXPORT_SYMBOL_GPL vmlinux 0x75cf1fb1 blk_mq_free_request -EXPORT_SYMBOL_GPL vmlinux 0x75e9c735 pci_ats_disabled -EXPORT_SYMBOL_GPL vmlinux 0x75e9e675 devlink_params_register -EXPORT_SYMBOL_GPL vmlinux 0x75ea26fb regulator_list_voltage_linear_range -EXPORT_SYMBOL_GPL vmlinux 0x75ebf68d __tracepoint_rpm_idle -EXPORT_SYMBOL_GPL vmlinux 0x75f58625 security_path_chmod -EXPORT_SYMBOL_GPL vmlinux 0x7607c58a crypto_unregister_acomp -EXPORT_SYMBOL_GPL vmlinux 0x76111aaf devm_gpiod_unhinge -EXPORT_SYMBOL_GPL vmlinux 0x761a1557 max8997_write_reg -EXPORT_SYMBOL_GPL vmlinux 0x762640ab __SCT__tp_func_sched_cpu_capacity_tp -EXPORT_SYMBOL_GPL vmlinux 0x7629a0d9 synth_event_create -EXPORT_SYMBOL_GPL vmlinux 0x762b2033 tcp_reno_ssthresh -EXPORT_SYMBOL_GPL vmlinux 0x76348a12 tun_get_socket -EXPORT_SYMBOL_GPL vmlinux 0x764ffefa page_reporting_register -EXPORT_SYMBOL_GPL vmlinux 0x765f8830 __SCT__tp_func_neigh_event_send_dead -EXPORT_SYMBOL_GPL vmlinux 0x765fa66c usb_hcd_platform_shutdown -EXPORT_SYMBOL_GPL vmlinux 0x7665ee72 crypto_dh_decode_key -EXPORT_SYMBOL_GPL vmlinux 0x7667b122 dev_pm_opp_put_clkname -EXPORT_SYMBOL_GPL vmlinux 0x766c5ec6 iomap_is_partially_uptodate -EXPORT_SYMBOL_GPL vmlinux 0x7681946c unregister_pm_notifier -EXPORT_SYMBOL_GPL vmlinux 0x768d46f2 perf_aux_output_flag -EXPORT_SYMBOL_GPL vmlinux 0x769c8886 __platform_create_bundle -EXPORT_SYMBOL_GPL vmlinux 0x769cefb5 percpu_ref_switch_to_atomic -EXPORT_SYMBOL_GPL vmlinux 0x76a2bf8d ata_acpi_cbl_80wire -EXPORT_SYMBOL_GPL vmlinux 0x76a6d065 ata_sas_port_resume -EXPORT_SYMBOL_GPL vmlinux 0x76aac657 virtqueue_detach_unused_buf -EXPORT_SYMBOL_GPL vmlinux 0x76d03d0d fwnode_get_named_gpiod -EXPORT_SYMBOL_GPL vmlinux 0x76d16f79 __SCK__tp_func_error_report_end -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 0x76dd8197 platform_device_alloc -EXPORT_SYMBOL_GPL vmlinux 0x76e465a2 genphy_c45_loopback -EXPORT_SYMBOL_GPL vmlinux 0x76e85b92 gnttab_request_free_callback -EXPORT_SYMBOL_GPL vmlinux 0x76eeeb0f sha384_zero_message_hash -EXPORT_SYMBOL_GPL vmlinux 0x76fb66db free_iova_fast -EXPORT_SYMBOL_GPL vmlinux 0x770009c4 usb_control_msg_recv -EXPORT_SYMBOL_GPL vmlinux 0x77055e6a xdp_rxq_info_reg_mem_model -EXPORT_SYMBOL_GPL vmlinux 0x77060437 setfl -EXPORT_SYMBOL_GPL vmlinux 0x770abe4e xhci_init_driver -EXPORT_SYMBOL_GPL vmlinux 0x7712771a unbind_from_irqhandler -EXPORT_SYMBOL_GPL vmlinux 0x77144a3d bpf_sk_storage_diag_put -EXPORT_SYMBOL_GPL vmlinux 0x771ab154 pm_generic_runtime_resume -EXPORT_SYMBOL_GPL vmlinux 0x77222306 ring_buffer_read_page -EXPORT_SYMBOL_GPL vmlinux 0x7727990d pinctrl_utils_reserve_map -EXPORT_SYMBOL_GPL vmlinux 0x7729cbdd task_handoff_register -EXPORT_SYMBOL_GPL vmlinux 0x773aebc4 pci_epc_remove_epf -EXPORT_SYMBOL_GPL vmlinux 0x773c0d4d pm_generic_thaw_early -EXPORT_SYMBOL_GPL vmlinux 0x773cad63 __xenbus_register_frontend -EXPORT_SYMBOL_GPL vmlinux 0x773f2713 clk_hw_unregister_mux -EXPORT_SYMBOL_GPL vmlinux 0x7757b51a clk_unregister -EXPORT_SYMBOL_GPL vmlinux 0x7767323d regulator_get_mode -EXPORT_SYMBOL_GPL vmlinux 0x776fc049 nexthop_select_path -EXPORT_SYMBOL_GPL vmlinux 0x7774ef83 pci_probe_reset_bus -EXPORT_SYMBOL_GPL vmlinux 0x7783c7cd md_start -EXPORT_SYMBOL_GPL vmlinux 0x778c9ca7 ipv6_proxy_select_ident -EXPORT_SYMBOL_GPL vmlinux 0x7791a838 pci_epc_get_features -EXPORT_SYMBOL_GPL vmlinux 0x7791e066 dw_pcie_read -EXPORT_SYMBOL_GPL vmlinux 0x779f19e6 devm_regulator_get -EXPORT_SYMBOL_GPL vmlinux 0x77a0c289 cleanup_srcu_struct -EXPORT_SYMBOL_GPL vmlinux 0x77ae495d usb_speed_string -EXPORT_SYMBOL_GPL vmlinux 0x77b7e049 dev_pm_qos_hide_flags -EXPORT_SYMBOL_GPL vmlinux 0x77bde785 __traceiter_tcp_bad_csum -EXPORT_SYMBOL_GPL vmlinux 0x77c5f5d0 devres_find -EXPORT_SYMBOL_GPL vmlinux 0x77ddac27 pinctrl_force_sleep -EXPORT_SYMBOL_GPL vmlinux 0x77e75be3 sfp_bus_put -EXPORT_SYMBOL_GPL vmlinux 0x77e7e991 serial8250_do_startup -EXPORT_SYMBOL_GPL vmlinux 0x77ecf68d memalloc_socks_key -EXPORT_SYMBOL_GPL vmlinux 0x77f81b93 rio_unmap_outb_region -EXPORT_SYMBOL_GPL vmlinux 0x78041b8f byte_rev_table -EXPORT_SYMBOL_GPL vmlinux 0x780433df __traceiter_remove_device_from_group -EXPORT_SYMBOL_GPL vmlinux 0x7815619f gpiod_get_raw_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0x781ab5c5 do_unregister_con_driver -EXPORT_SYMBOL_GPL vmlinux 0x7827bbbc cros_ec_get_sensor_count -EXPORT_SYMBOL_GPL vmlinux 0x782adb74 hpet_rtc_interrupt -EXPORT_SYMBOL_GPL vmlinux 0x7841bea4 pinctrl_find_gpio_range_from_pin_nolock -EXPORT_SYMBOL_GPL vmlinux 0x7846f311 acpi_is_pnp_device -EXPORT_SYMBOL_GPL vmlinux 0x78559c3d edac_device_handle_ce_count -EXPORT_SYMBOL_GPL vmlinux 0x785a93b4 si_mem_available -EXPORT_SYMBOL_GPL vmlinux 0x786039ae evm_inode_init_security -EXPORT_SYMBOL_GPL vmlinux 0x786cc698 fl6_update_dst -EXPORT_SYMBOL_GPL vmlinux 0x7874156f scsi_eh_ready_devs -EXPORT_SYMBOL_GPL vmlinux 0x787c882b lzo1x_1_compress -EXPORT_SYMBOL_GPL vmlinux 0x788bfbad ring_buffer_empty -EXPORT_SYMBOL_GPL vmlinux 0x788fc0f0 gpiod_set_raw_array_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0x7891f44b cpufreq_generic_init -EXPORT_SYMBOL_GPL vmlinux 0x789320f9 __irq_alloc_domain_generic_chips -EXPORT_SYMBOL_GPL vmlinux 0x789c73d9 rcu_cpu_stall_suppress_at_boot -EXPORT_SYMBOL_GPL vmlinux 0x78ac99f2 irq_domain_free_irqs_common -EXPORT_SYMBOL_GPL vmlinux 0x78b063bd spi_statistics_add_transfer_stats -EXPORT_SYMBOL_GPL vmlinux 0x78b8192f rio_mport_get_efb -EXPORT_SYMBOL_GPL vmlinux 0x78bab66b irq_force_affinity -EXPORT_SYMBOL_GPL vmlinux 0x78d68788 debugfs_create_file_unsafe -EXPORT_SYMBOL_GPL vmlinux 0x78ddb76b dmi_match -EXPORT_SYMBOL_GPL vmlinux 0x78fa64e2 fpu_copy_guest_fpstate_to_uabi -EXPORT_SYMBOL_GPL vmlinux 0x7908fe48 regulator_get_current_limit -EXPORT_SYMBOL_GPL vmlinux 0x790c8d5c shmem_file_setup -EXPORT_SYMBOL_GPL vmlinux 0x7914bab3 ata_bmdma_setup -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 0x7919de43 efivars_kobject -EXPORT_SYMBOL_GPL vmlinux 0x791b09ba pcie_aspm_enabled -EXPORT_SYMBOL_GPL vmlinux 0x791c9c50 security_inode_permission -EXPORT_SYMBOL_GPL vmlinux 0x791cdccd acpi_dev_get_resources -EXPORT_SYMBOL_GPL vmlinux 0x79231a45 pci_pr3_present -EXPORT_SYMBOL_GPL vmlinux 0x79336344 usb_put_phy -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 0x7970f4b9 skb_consume_udp -EXPORT_SYMBOL_GPL vmlinux 0x797c2ac0 ip6_push_pending_frames -EXPORT_SYMBOL_GPL vmlinux 0x797c34a4 ata_sff_data_xfer32 -EXPORT_SYMBOL_GPL vmlinux 0x797c70b6 freq_qos_add_request -EXPORT_SYMBOL_GPL vmlinux 0x798e1e85 crypto_stats_rng_seed -EXPORT_SYMBOL_GPL vmlinux 0x7991fd8d crash_vmclear_loaded_vmcss -EXPORT_SYMBOL_GPL vmlinux 0x799879e2 devm_of_pwm_get -EXPORT_SYMBOL_GPL vmlinux 0x79b43c18 __spi_alloc_controller -EXPORT_SYMBOL_GPL vmlinux 0x79bf5c4b input_ff_upload -EXPORT_SYMBOL_GPL vmlinux 0x79c08bee uprobe_unregister -EXPORT_SYMBOL_GPL vmlinux 0x79da3ecf raw_hash_sk -EXPORT_SYMBOL_GPL vmlinux 0x79daf4de __SCT__tp_func_tcp_send_reset -EXPORT_SYMBOL_GPL vmlinux 0x79defbe1 kthread_should_park -EXPORT_SYMBOL_GPL vmlinux 0x79e69460 intel_iommu_gfx_mapped -EXPORT_SYMBOL_GPL vmlinux 0x79f697e4 lzorle1x_1_compress -EXPORT_SYMBOL_GPL vmlinux 0x7a098afc uart_handle_cts_change -EXPORT_SYMBOL_GPL vmlinux 0x7a0ac9bf regulator_set_load -EXPORT_SYMBOL_GPL vmlinux 0x7a0d70a3 pci_cfg_access_unlock -EXPORT_SYMBOL_GPL vmlinux 0x7a198a4f ip_route_output_key_hash -EXPORT_SYMBOL_GPL vmlinux 0x7a330c3d inet_hashinfo2_init_mod -EXPORT_SYMBOL_GPL vmlinux 0x7a33f504 power_supply_find_ocv2cap_table -EXPORT_SYMBOL_GPL vmlinux 0x7a3876f4 scsi_host_complete_all_commands -EXPORT_SYMBOL_GPL vmlinux 0x7a4002db dm_copy_name_and_uuid -EXPORT_SYMBOL_GPL vmlinux 0x7a449f01 ata_sff_check_status -EXPORT_SYMBOL_GPL vmlinux 0x7a4f707c udp_bpf_update_proto -EXPORT_SYMBOL_GPL vmlinux 0x7a59c9d8 devm_regmap_add_irq_chip -EXPORT_SYMBOL_GPL vmlinux 0x7a5df8af serial8250_read_char -EXPORT_SYMBOL_GPL vmlinux 0x7a61eaad crypto_stats_decompress -EXPORT_SYMBOL_GPL vmlinux 0x7a655f68 acpi_processor_claim_cst_control -EXPORT_SYMBOL_GPL vmlinux 0x7a73e605 wm831x_isinkv_values -EXPORT_SYMBOL_GPL vmlinux 0x7a79380a pci_epc_raise_irq -EXPORT_SYMBOL_GPL vmlinux 0x7a81541b async_synchronize_cookie -EXPORT_SYMBOL_GPL vmlinux 0x7a904481 intel_pinctrl_probe_by_uid -EXPORT_SYMBOL_GPL vmlinux 0x7a924cb9 devm_clk_bulk_get_all -EXPORT_SYMBOL_GPL vmlinux 0x7a9429d8 devm_usb_get_phy_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0x7a944007 rcu_idle_enter -EXPORT_SYMBOL_GPL vmlinux 0x7a96ae40 __SCK__tp_func_kfree_skb -EXPORT_SYMBOL_GPL vmlinux 0x7a98f4b4 copy_from_user_nofault -EXPORT_SYMBOL_GPL vmlinux 0x7a9e4c23 software_node_register_node_group -EXPORT_SYMBOL_GPL vmlinux 0x7aa15cbf ata_scsi_port_error_handler -EXPORT_SYMBOL_GPL vmlinux 0x7aa55656 of_hwspin_lock_get_id -EXPORT_SYMBOL_GPL vmlinux 0x7abc7853 devlink_params_unpublish -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 0x7ad6ef77 dax_layout_busy_page_range -EXPORT_SYMBOL_GPL vmlinux 0x7add676f platform_get_irq_byname_optional -EXPORT_SYMBOL_GPL vmlinux 0x7ae48707 sk_set_memalloc -EXPORT_SYMBOL_GPL vmlinux 0x7aefc0e9 ip4_datagram_release_cb -EXPORT_SYMBOL_GPL vmlinux 0x7af03771 usb_interrupt_msg -EXPORT_SYMBOL_GPL vmlinux 0x7af29bcf strp_check_rcv -EXPORT_SYMBOL_GPL vmlinux 0x7af58f0d gpiochip_add_pingroup_range -EXPORT_SYMBOL_GPL vmlinux 0x7afa30e2 thermal_zone_device_update -EXPORT_SYMBOL_GPL vmlinux 0x7afcb7db __kprobe_event_add_fields -EXPORT_SYMBOL_GPL vmlinux 0x7afd0b54 perf_aux_output_end -EXPORT_SYMBOL_GPL vmlinux 0x7b028115 blkcg_activate_policy -EXPORT_SYMBOL_GPL vmlinux 0x7b0f5274 fat_detach -EXPORT_SYMBOL_GPL vmlinux 0x7b0f90b1 tty_perform_flush -EXPORT_SYMBOL_GPL vmlinux 0x7b178afe unlock_system_sleep -EXPORT_SYMBOL_GPL vmlinux 0x7b2c2c53 get_device_system_crosststamp -EXPORT_SYMBOL_GPL vmlinux 0x7b51f934 devm_clk_unregister -EXPORT_SYMBOL_GPL vmlinux 0x7b5452b8 acpi_unregister_gsi -EXPORT_SYMBOL_GPL vmlinux 0x7b5a4926 sha1_zero_message_hash -EXPORT_SYMBOL_GPL vmlinux 0x7b6b7fe3 dm_post_suspending -EXPORT_SYMBOL_GPL vmlinux 0x7b6f9536 acpi_register_wakeup_handler -EXPORT_SYMBOL_GPL vmlinux 0x7b79265d transport_class_unregister -EXPORT_SYMBOL_GPL vmlinux 0x7b7bffea serdev_controller_remove -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 0x7bb045a7 __request_percpu_irq -EXPORT_SYMBOL_GPL vmlinux 0x7bd3c0f1 __traceiter_sched_update_nr_running_tp -EXPORT_SYMBOL_GPL vmlinux 0x7bdac5d9 pinctrl_force_default -EXPORT_SYMBOL_GPL vmlinux 0x7bfd743d btree_lookup -EXPORT_SYMBOL_GPL vmlinux 0x7bfe02a3 msg_zerocopy_callback -EXPORT_SYMBOL_GPL vmlinux 0x7c01d563 gpiochip_is_requested -EXPORT_SYMBOL_GPL vmlinux 0x7c0defa9 pci_platform_power_transition -EXPORT_SYMBOL_GPL vmlinux 0x7c1b47a6 fwnode_property_read_string -EXPORT_SYMBOL_GPL vmlinux 0x7c20b6a0 load_direct_gdt -EXPORT_SYMBOL_GPL vmlinux 0x7c22abba blk_mq_freeze_queue -EXPORT_SYMBOL_GPL vmlinux 0x7c2808bd __traceiter_fdb_delete -EXPORT_SYMBOL_GPL vmlinux 0x7c291e86 show_rcu_tasks_trace_gp_kthread -EXPORT_SYMBOL_GPL vmlinux 0x7c2afc2a usb_phy_set_event -EXPORT_SYMBOL_GPL vmlinux 0x7c2ec2a2 crypto_unregister_alg -EXPORT_SYMBOL_GPL vmlinux 0x7c31a8f0 pci_reset_function_locked -EXPORT_SYMBOL_GPL vmlinux 0x7c32bf2c kthread_park -EXPORT_SYMBOL_GPL vmlinux 0x7c3388c0 handle_irq_desc -EXPORT_SYMBOL_GPL vmlinux 0x7c39b0ec root_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0x7c3ab418 __SCK__tp_func_fdb_delete -EXPORT_SYMBOL_GPL vmlinux 0x7c3d8a4b icc_bulk_put -EXPORT_SYMBOL_GPL vmlinux 0x7c3e736a rcu_nocb_cpu_offload -EXPORT_SYMBOL_GPL vmlinux 0x7c524aca spi_bus_type -EXPORT_SYMBOL_GPL vmlinux 0x7c52e074 bus_remove_file -EXPORT_SYMBOL_GPL vmlinux 0x7c5f3711 ioasid_unregister_allocator -EXPORT_SYMBOL_GPL vmlinux 0x7c636697 md_stop -EXPORT_SYMBOL_GPL vmlinux 0x7c663f0f __xdp_build_skb_from_frame -EXPORT_SYMBOL_GPL vmlinux 0x7c6799ab cpufreq_freq_transition_end -EXPORT_SYMBOL_GPL vmlinux 0x7c81a1ff pwm_request_from_chip -EXPORT_SYMBOL_GPL vmlinux 0x7c868b62 dev_pm_genpd_suspend -EXPORT_SYMBOL_GPL vmlinux 0x7c8a6fc3 regulator_set_voltage_time -EXPORT_SYMBOL_GPL vmlinux 0x7c8bddab clean_record_shared_mapping_range -EXPORT_SYMBOL_GPL vmlinux 0x7c95980c cpufreq_dbs_governor_init -EXPORT_SYMBOL_GPL vmlinux 0x7c983a5d dmi_walk -EXPORT_SYMBOL_GPL vmlinux 0x7c9a7371 clk_prepare -EXPORT_SYMBOL_GPL vmlinux 0x7ca2ab14 debugfs_create_x16 -EXPORT_SYMBOL_GPL vmlinux 0x7ca64a0b __cookie_v4_init_sequence -EXPORT_SYMBOL_GPL vmlinux 0x7ca85256 ms_hyperv -EXPORT_SYMBOL_GPL vmlinux 0x7cb6cb11 spi_async_locked -EXPORT_SYMBOL_GPL vmlinux 0x7cc32921 pm_runtime_allow -EXPORT_SYMBOL_GPL vmlinux 0x7cceaf92 zs_pool_stats -EXPORT_SYMBOL_GPL vmlinux 0x7cd6f042 cpufreq_get_current_driver -EXPORT_SYMBOL_GPL vmlinux 0x7cda7dd4 subsys_interface_unregister -EXPORT_SYMBOL_GPL vmlinux 0x7cde8b4e pci_hp_del -EXPORT_SYMBOL_GPL vmlinux 0x7ceaf0d5 generic_handle_irq -EXPORT_SYMBOL_GPL vmlinux 0x7cf62097 crypto_create_tfm_node -EXPORT_SYMBOL_GPL vmlinux 0x7cfbae86 ethnl_cable_test_step -EXPORT_SYMBOL_GPL vmlinux 0x7cffc1fb gpiochip_populate_parent_fwspec_twocell -EXPORT_SYMBOL_GPL vmlinux 0x7d00c65b nd_synchronize -EXPORT_SYMBOL_GPL vmlinux 0x7d0e1d95 hv_setup_crash_handler -EXPORT_SYMBOL_GPL vmlinux 0x7d17da04 misc_cg_uncharge -EXPORT_SYMBOL_GPL vmlinux 0x7d1bb1d4 tnum_strn -EXPORT_SYMBOL_GPL vmlinux 0x7d1e6949 virtqueue_add_inbuf -EXPORT_SYMBOL_GPL vmlinux 0x7d224bcc synth_event_add_next_val -EXPORT_SYMBOL_GPL vmlinux 0x7d2f393c ahash_register_instance -EXPORT_SYMBOL_GPL vmlinux 0x7d3b057d crypto_find_alg -EXPORT_SYMBOL_GPL vmlinux 0x7d477202 ohci_suspend -EXPORT_SYMBOL_GPL vmlinux 0x7d4b3225 devlink_dpipe_headers_unregister -EXPORT_SYMBOL_GPL vmlinux 0x7d59dd46 pm_wq -EXPORT_SYMBOL_GPL vmlinux 0x7d8df4ee __page_file_index -EXPORT_SYMBOL_GPL vmlinux 0x7d970d49 pci_epc_mem_free_addr -EXPORT_SYMBOL_GPL vmlinux 0x7da50461 spi_mem_get_name -EXPORT_SYMBOL_GPL vmlinux 0x7db21fa1 debugfs_create_x64 -EXPORT_SYMBOL_GPL vmlinux 0x7dbe5e74 pinctrl_pm_select_default_state -EXPORT_SYMBOL_GPL vmlinux 0x7dc2d43f powercap_register_control_type -EXPORT_SYMBOL_GPL vmlinux 0x7dd52b42 bsg_setup_queue -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 0x7e0c76a9 apply_to_page_range -EXPORT_SYMBOL_GPL vmlinux 0x7e1103b3 acpi_get_and_request_gpiod -EXPORT_SYMBOL_GPL vmlinux 0x7e1d2a30 spi_mem_default_supports_op -EXPORT_SYMBOL_GPL vmlinux 0x7e2bb929 devm_add_action -EXPORT_SYMBOL_GPL vmlinux 0x7e3bdecd __ftrace_vprintk -EXPORT_SYMBOL_GPL vmlinux 0x7e42ae40 relay_open -EXPORT_SYMBOL_GPL vmlinux 0x7e4a7a2f serial8250_update_uartclk -EXPORT_SYMBOL_GPL vmlinux 0x7e559a1b fscrypt_set_test_dummy_encryption -EXPORT_SYMBOL_GPL vmlinux 0x7e5db80b pstore_name_to_type -EXPORT_SYMBOL_GPL vmlinux 0x7e64181d usb_calc_bus_time -EXPORT_SYMBOL_GPL vmlinux 0x7e7a47c9 pci_acpi_clear_companion_lookup_hook -EXPORT_SYMBOL_GPL vmlinux 0x7e7daaf4 __sbitmap_queue_get_shallow -EXPORT_SYMBOL_GPL vmlinux 0x7e7e3f58 ring_buffer_reset_cpu -EXPORT_SYMBOL_GPL vmlinux 0x7e8317be device_store_int -EXPORT_SYMBOL_GPL vmlinux 0x7e8d735b sdio_readw -EXPORT_SYMBOL_GPL vmlinux 0x7e929090 usb_find_interface -EXPORT_SYMBOL_GPL vmlinux 0x7e996770 devm_acpi_dma_controller_register -EXPORT_SYMBOL_GPL vmlinux 0x7ea8db3d __xenmem_reservation_va_mapping_reset -EXPORT_SYMBOL_GPL vmlinux 0x7eb808d0 add_cpu -EXPORT_SYMBOL_GPL vmlinux 0x7ebf5848 bpf_prog_free -EXPORT_SYMBOL_GPL vmlinux 0x7ec0308f bio_associate_blkg -EXPORT_SYMBOL_GPL vmlinux 0x7ed4ca24 __SCK__tp_func_pelt_se_tp -EXPORT_SYMBOL_GPL vmlinux 0x7ed7454e inet_ctl_sock_create -EXPORT_SYMBOL_GPL vmlinux 0x7ed7736b shake_page -EXPORT_SYMBOL_GPL vmlinux 0x7eea6b8b pcap_adc_async -EXPORT_SYMBOL_GPL vmlinux 0x7eee9f21 kobject_init_and_add -EXPORT_SYMBOL_GPL vmlinux 0x7f025173 perf_event_refresh -EXPORT_SYMBOL_GPL vmlinux 0x7f034485 xfrm_get_translator -EXPORT_SYMBOL_GPL vmlinux 0x7f0742a6 pinconf_generic_dump_config -EXPORT_SYMBOL_GPL vmlinux 0x7f372255 serdev_device_write -EXPORT_SYMBOL_GPL vmlinux 0x7f41dd99 con_debug_enter -EXPORT_SYMBOL_GPL vmlinux 0x7f5720d6 generic_fsdax_supported -EXPORT_SYMBOL_GPL vmlinux 0x7f6b5307 efivar_entry_find -EXPORT_SYMBOL_GPL vmlinux 0x7f71c9c5 __tracepoint_block_rq_remap -EXPORT_SYMBOL_GPL vmlinux 0x7f7cbc64 ip_tunnel_need_metadata -EXPORT_SYMBOL_GPL vmlinux 0x7f80e154 usb_kill_urb -EXPORT_SYMBOL_GPL vmlinux 0x7fa96509 erst_get_record_id_next -EXPORT_SYMBOL_GPL vmlinux 0x7fafdec9 clk_fixed_factor_ops -EXPORT_SYMBOL_GPL vmlinux 0x7fb69012 inet_unhash -EXPORT_SYMBOL_GPL vmlinux 0x7fd9d833 dev_get_regmap -EXPORT_SYMBOL_GPL vmlinux 0x7fda7a3d da903x_set_bits -EXPORT_SYMBOL_GPL vmlinux 0x7fe15aed blk_poll -EXPORT_SYMBOL_GPL vmlinux 0x7febdc80 regulator_get_bypass_regmap -EXPORT_SYMBOL_GPL vmlinux 0x7fff7854 dev_attr_em_message -EXPORT_SYMBOL_GPL vmlinux 0x800a289e __traceiter_tcp_send_reset -EXPORT_SYMBOL_GPL vmlinux 0x800c7b3c spi_write_then_read -EXPORT_SYMBOL_GPL vmlinux 0x800d11a2 pci_assign_unassigned_bus_resources -EXPORT_SYMBOL_GPL vmlinux 0x8048979b gpiochip_add_pin_range -EXPORT_SYMBOL_GPL vmlinux 0x805667cf devlink_fmsg_u64_put -EXPORT_SYMBOL_GPL vmlinux 0x80578144 ping_init_sock -EXPORT_SYMBOL_GPL vmlinux 0x806230ac fat_dir_empty -EXPORT_SYMBOL_GPL vmlinux 0x8062a0de wm8350_device_init -EXPORT_SYMBOL_GPL vmlinux 0x807fdcc4 call_rcu_tasks_rude -EXPORT_SYMBOL_GPL vmlinux 0x808a8088 handle_guest_split_lock -EXPORT_SYMBOL_GPL vmlinux 0x808e715b blk_mq_rdma_map_queues -EXPORT_SYMBOL_GPL vmlinux 0x808ec1a3 crypto_alg_tested -EXPORT_SYMBOL_GPL vmlinux 0x8094f715 perf_tp_event -EXPORT_SYMBOL_GPL vmlinux 0x80ab0f6b led_init_core -EXPORT_SYMBOL_GPL vmlinux 0x80b7e3c1 crypto_aes_set_key -EXPORT_SYMBOL_GPL vmlinux 0x80c0bb80 iomap_file_buffered_write -EXPORT_SYMBOL_GPL vmlinux 0x80c3a92c debugfs_create_devm_seqfile -EXPORT_SYMBOL_GPL vmlinux 0x80c68137 nf_log_buf_close -EXPORT_SYMBOL_GPL vmlinux 0x80d5e57a mpi_free -EXPORT_SYMBOL_GPL vmlinux 0x80d6a96f __dma_request_channel -EXPORT_SYMBOL_GPL vmlinux 0x80e242ce __tracepoint_block_rq_insert -EXPORT_SYMBOL_GPL vmlinux 0x80f186c5 device_create -EXPORT_SYMBOL_GPL vmlinux 0x8100e7ae register_user_hw_breakpoint -EXPORT_SYMBOL_GPL vmlinux 0x810830e5 skcipher_walk_complete -EXPORT_SYMBOL_GPL vmlinux 0x811dc334 usb_unregister_notify -EXPORT_SYMBOL_GPL vmlinux 0x81221cad amd_nb_num -EXPORT_SYMBOL_GPL vmlinux 0x81268126 dma_max_mapping_size -EXPORT_SYMBOL_GPL vmlinux 0x81363982 scsi_flush_work -EXPORT_SYMBOL_GPL vmlinux 0x8147f1e4 acpi_subsys_suspend_late -EXPORT_SYMBOL_GPL vmlinux 0x814e2386 kcpustat_field -EXPORT_SYMBOL_GPL vmlinux 0x815588a6 clk_enable -EXPORT_SYMBOL_GPL vmlinux 0x815fda83 sed_ioctl -EXPORT_SYMBOL_GPL vmlinux 0x816145e7 spi_mem_supports_op -EXPORT_SYMBOL_GPL vmlinux 0x816a41ca cpufreq_update_limits -EXPORT_SYMBOL_GPL vmlinux 0x8180cede asn1_encode_sequence -EXPORT_SYMBOL_GPL vmlinux 0x81837fa5 regmap_reinit_cache -EXPORT_SYMBOL_GPL vmlinux 0x8184e4e5 event_triggers_post_call -EXPORT_SYMBOL_GPL vmlinux 0x819828f8 set_secondary_fwnode -EXPORT_SYMBOL_GPL vmlinux 0x81a7f541 percpu_ref_init -EXPORT_SYMBOL_GPL vmlinux 0x81b03377 efivar_entry_set_safe -EXPORT_SYMBOL_GPL vmlinux 0x81b84419 switchdev_handle_fdb_del_to_device -EXPORT_SYMBOL_GPL vmlinux 0x81c888d3 bind_interdomain_evtchn_to_irqhandler_lateeoi -EXPORT_SYMBOL_GPL vmlinux 0x81c9f8f4 pwm_adjust_config -EXPORT_SYMBOL_GPL vmlinux 0x81ce596d devres_close_group -EXPORT_SYMBOL_GPL vmlinux 0x81d6b8c4 irq_chip_request_resources_parent -EXPORT_SYMBOL_GPL vmlinux 0x81db6487 l3mdev_ifindex_lookup_by_table_id -EXPORT_SYMBOL_GPL vmlinux 0x81e179bc xenbus_probe_devices -EXPORT_SYMBOL_GPL vmlinux 0x81e2bdf4 generic_handle_irq_safe -EXPORT_SYMBOL_GPL vmlinux 0x81f372a2 unregister_ftrace_export -EXPORT_SYMBOL_GPL vmlinux 0x81f6df6a desc_to_gpio -EXPORT_SYMBOL_GPL vmlinux 0x81fffb4c nvdimm_delete -EXPORT_SYMBOL_GPL vmlinux 0x820793c8 gen10g_config_aneg -EXPORT_SYMBOL_GPL vmlinux 0x8209c177 clk_mux_determine_rate_flags -EXPORT_SYMBOL_GPL vmlinux 0x821ec7f1 clk_mux_ro_ops -EXPORT_SYMBOL_GPL vmlinux 0x82226c53 pinctrl_unregister_mappings -EXPORT_SYMBOL_GPL vmlinux 0x822db7cc virtqueue_get_buf -EXPORT_SYMBOL_GPL vmlinux 0x822fe538 xen_unmap_domain_gfn_range -EXPORT_SYMBOL_GPL vmlinux 0x82491a32 __traceiter_pelt_rt_tp -EXPORT_SYMBOL_GPL vmlinux 0x824e0c22 scsi_target_unblock -EXPORT_SYMBOL_GPL vmlinux 0x825143e6 ehci_adjust_port_wakeup_flags -EXPORT_SYMBOL_GPL vmlinux 0x82538b0c wait_on_page_writeback_killable -EXPORT_SYMBOL_GPL vmlinux 0x82740b9c bpf_prog_inc -EXPORT_SYMBOL_GPL vmlinux 0x827bde8f phy_resolve_aneg_linkmode -EXPORT_SYMBOL_GPL vmlinux 0x827e61f8 acpi_has_watchdog -EXPORT_SYMBOL_GPL vmlinux 0x8286a306 __SCK__tp_func_br_fdb_update -EXPORT_SYMBOL_GPL vmlinux 0x8290cfcd blk_mq_alloc_request_hctx -EXPORT_SYMBOL_GPL vmlinux 0x829336ea dma_buf_vmap -EXPORT_SYMBOL_GPL vmlinux 0x82bb8d16 component_add -EXPORT_SYMBOL_GPL vmlinux 0x82c90ecf regmap_field_update_bits_base -EXPORT_SYMBOL_GPL vmlinux 0x82d79b51 sysctl_vfs_cache_pressure -EXPORT_SYMBOL_GPL vmlinux 0x82e959e8 pci_dev_trylock -EXPORT_SYMBOL_GPL vmlinux 0x82f3da80 irq_create_fwspec_mapping -EXPORT_SYMBOL_GPL vmlinux 0x82ff4b95 clk_hw_unregister_fixed_factor -EXPORT_SYMBOL_GPL vmlinux 0x82ff9f47 vp_modern_probe -EXPORT_SYMBOL_GPL vmlinux 0x830a0beb dev_pm_opp_find_level_ceil -EXPORT_SYMBOL_GPL vmlinux 0x830ad689 set_selection_kernel -EXPORT_SYMBOL_GPL vmlinux 0x8328673f uv_bios_get_master_nasid -EXPORT_SYMBOL_GPL vmlinux 0x8335ca43 __SCT__tp_func_io_page_fault -EXPORT_SYMBOL_GPL vmlinux 0x8339df73 klist_add_behind -EXPORT_SYMBOL_GPL vmlinux 0x8343e421 gnttab_unmap_refs -EXPORT_SYMBOL_GPL vmlinux 0x8349a895 nvmem_device_put -EXPORT_SYMBOL_GPL vmlinux 0x83523557 __sync_filesystem -EXPORT_SYMBOL_GPL vmlinux 0x8353dfff acpi_os_get_iomem -EXPORT_SYMBOL_GPL vmlinux 0x83552b09 watchdog_set_last_hw_keepalive -EXPORT_SYMBOL_GPL vmlinux 0x835a590f __tracepoint_block_unplug -EXPORT_SYMBOL_GPL vmlinux 0x835cb7d6 elv_rqhash_del -EXPORT_SYMBOL_GPL vmlinux 0x835de4ca irqchip_fwnode_ops -EXPORT_SYMBOL_GPL vmlinux 0x836d3696 efivar_entry_add -EXPORT_SYMBOL_GPL vmlinux 0x837383f2 ata_scsi_queuecmd -EXPORT_SYMBOL_GPL vmlinux 0x83bcefac __rtnl_link_unregister -EXPORT_SYMBOL_GPL vmlinux 0x83c6040d unregister_kretprobes -EXPORT_SYMBOL_GPL vmlinux 0x83e23843 devfreq_event_get_edev_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0x83edebbb sbitmap_del_wait_queue -EXPORT_SYMBOL_GPL vmlinux 0x83f00f18 iomap_finish_ioends -EXPORT_SYMBOL_GPL vmlinux 0x84106f36 devlink_trap_ctx_priv -EXPORT_SYMBOL_GPL vmlinux 0x841d68b5 xfrm_audit_policy_delete -EXPORT_SYMBOL_GPL vmlinux 0x841e389f md_rdev_clear -EXPORT_SYMBOL_GPL vmlinux 0x84264ced fs_umode_to_ftype -EXPORT_SYMBOL_GPL vmlinux 0x8429a367 fat_time_unix2fat -EXPORT_SYMBOL_GPL vmlinux 0x842f06cc power_supply_put -EXPORT_SYMBOL_GPL vmlinux 0x84352a70 devfreq_event_disable_edev -EXPORT_SYMBOL_GPL vmlinux 0x84368c65 find_pid_ns -EXPORT_SYMBOL_GPL vmlinux 0x843d70ef acpi_is_root_bridge -EXPORT_SYMBOL_GPL vmlinux 0x84502a47 blk_status_to_errno -EXPORT_SYMBOL_GPL vmlinux 0x8451bfaf clk_hw_get_rate -EXPORT_SYMBOL_GPL vmlinux 0x8456250a gnttab_foreach_grant_in_range -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 0x8473c5df __traceiter_neigh_cleanup_and_release -EXPORT_SYMBOL_GPL vmlinux 0x848182d1 bio_alloc_kiocb -EXPORT_SYMBOL_GPL vmlinux 0x848acd37 sdio_signal_irq -EXPORT_SYMBOL_GPL vmlinux 0x8498683f clk_hw_get_num_parents -EXPORT_SYMBOL_GPL vmlinux 0x84a715b8 __netpoll_setup -EXPORT_SYMBOL_GPL vmlinux 0x84aed1ed blk_mq_sched_mark_restart_hctx -EXPORT_SYMBOL_GPL vmlinux 0x84b268cf sn_coherency_id -EXPORT_SYMBOL_GPL vmlinux 0x84c08015 ata_pci_bmdma_prepare_host -EXPORT_SYMBOL_GPL vmlinux 0x84c0cb6f __dev_change_net_namespace -EXPORT_SYMBOL_GPL vmlinux 0x84d3a9bf ata_sff_dev_classify -EXPORT_SYMBOL_GPL vmlinux 0x84d6acd7 fat_truncate_time -EXPORT_SYMBOL_GPL vmlinux 0x84e80188 crypto_comp_decompress -EXPORT_SYMBOL_GPL vmlinux 0x84ef27f5 synth_event_add_fields -EXPORT_SYMBOL_GPL vmlinux 0x84f1ee1d alarm_start_relative -EXPORT_SYMBOL_GPL vmlinux 0x84f21367 __tracepoint_error_report_end -EXPORT_SYMBOL_GPL vmlinux 0x84fb32b8 lwtunnel_cmp_encap -EXPORT_SYMBOL_GPL vmlinux 0x8506baa8 clk_unregister_gate -EXPORT_SYMBOL_GPL vmlinux 0x8507d137 ata_sff_prereset -EXPORT_SYMBOL_GPL vmlinux 0x85087361 regmap_fields_update_bits_base -EXPORT_SYMBOL_GPL vmlinux 0x850bb6db devlink_health_reporter_destroy -EXPORT_SYMBOL_GPL vmlinux 0x851e6003 usb_phy_roothub_calibrate -EXPORT_SYMBOL_GPL vmlinux 0x851ff7af spi_sync -EXPORT_SYMBOL_GPL vmlinux 0x8541e906 ata_std_postreset -EXPORT_SYMBOL_GPL vmlinux 0x8546ad93 l3mdev_update_flow -EXPORT_SYMBOL_GPL vmlinux 0x854a7a6f serdev_device_wait_until_sent -EXPORT_SYMBOL_GPL vmlinux 0x854b4caf shmem_zero_setup -EXPORT_SYMBOL_GPL vmlinux 0x85525aef tpm_calc_ordinal_duration -EXPORT_SYMBOL_GPL vmlinux 0x85540ebc nvmem_cell_put -EXPORT_SYMBOL_GPL vmlinux 0x85862277 ioasid_find -EXPORT_SYMBOL_GPL vmlinux 0x85935a61 acpi_dev_irq_flags -EXPORT_SYMBOL_GPL vmlinux 0x859490c5 regcache_sync_region -EXPORT_SYMBOL_GPL vmlinux 0x85a0b9e1 devm_kmalloc -EXPORT_SYMBOL_GPL vmlinux 0x85a581b9 xenbus_match -EXPORT_SYMBOL_GPL vmlinux 0x85b15444 arch_set_max_freq_ratio -EXPORT_SYMBOL_GPL vmlinux 0x85b4ac1d trace_event_ignore_this_pid -EXPORT_SYMBOL_GPL vmlinux 0x85bfc5f9 __SCT__tp_func_block_rq_insert -EXPORT_SYMBOL_GPL vmlinux 0x85c02fbc __reset_control_get -EXPORT_SYMBOL_GPL vmlinux 0x85c54b61 efivar_validate -EXPORT_SYMBOL_GPL vmlinux 0x85cb2c45 xen_has_pv_devices -EXPORT_SYMBOL_GPL vmlinux 0x85cdab42 fsverity_prepare_setattr -EXPORT_SYMBOL_GPL vmlinux 0x85d7edfd hpet_set_periodic_freq -EXPORT_SYMBOL_GPL vmlinux 0x85e2fea5 __devm_clk_hw_register_divider -EXPORT_SYMBOL_GPL vmlinux 0x85e6464c sata_pmp_error_handler -EXPORT_SYMBOL_GPL vmlinux 0x85eed1be iopf_queue_discard_partial -EXPORT_SYMBOL_GPL vmlinux 0x8607d4f3 usb_get_descriptor -EXPORT_SYMBOL_GPL vmlinux 0x86169f3e amd_smn_write -EXPORT_SYMBOL_GPL vmlinux 0x862258db timecounter_init -EXPORT_SYMBOL_GPL vmlinux 0x862a3732 task_cgroup_path -EXPORT_SYMBOL_GPL vmlinux 0x862bb17b linear_range_values_in_range_array -EXPORT_SYMBOL_GPL vmlinux 0x86347b71 devm_regmap_field_free -EXPORT_SYMBOL_GPL vmlinux 0x8648af88 ata_link_next -EXPORT_SYMBOL_GPL vmlinux 0x86585a33 devlink_fmsg_obj_nest_start -EXPORT_SYMBOL_GPL vmlinux 0x865d3c1e regulator_map_voltage_linear_range -EXPORT_SYMBOL_GPL vmlinux 0x8661c606 tty_init_termios -EXPORT_SYMBOL_GPL vmlinux 0x86623fd7 notify_remote_via_irq -EXPORT_SYMBOL_GPL vmlinux 0x8663ff03 rio_pw_enable -EXPORT_SYMBOL_GPL vmlinux 0x866d81e5 fwnode_property_read_u16_array -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 0x868784cb __symbol_get -EXPORT_SYMBOL_GPL vmlinux 0x869b26b0 nf_hook_entries_insert_raw -EXPORT_SYMBOL_GPL vmlinux 0x869bb874 gpiod_get_value -EXPORT_SYMBOL_GPL vmlinux 0x86b427ce clkdev_create -EXPORT_SYMBOL_GPL vmlinux 0x86b626d5 skb_mpls_dec_ttl -EXPORT_SYMBOL_GPL vmlinux 0x86c43a8c cper_estatus_check -EXPORT_SYMBOL_GPL vmlinux 0x86c961b3 __set_dax_synchronous -EXPORT_SYMBOL_GPL vmlinux 0x86cde1f8 pwm_get_chip_data -EXPORT_SYMBOL_GPL vmlinux 0x86dda6ef rtm_getroute_parse_ip_proto -EXPORT_SYMBOL_GPL vmlinux 0x86e982de virtqueue_notify -EXPORT_SYMBOL_GPL vmlinux 0x86f2787e is_software_node -EXPORT_SYMBOL_GPL vmlinux 0x86f69b2c fuse_mount_remove -EXPORT_SYMBOL_GPL vmlinux 0x86f6b99d synchronize_rcu_expedited -EXPORT_SYMBOL_GPL vmlinux 0x86f85114 net_dec_egress_queue -EXPORT_SYMBOL_GPL vmlinux 0x86f8b9e0 vring_transport_features -EXPORT_SYMBOL_GPL vmlinux 0x86f94402 __tracepoint_pelt_se_tp -EXPORT_SYMBOL_GPL vmlinux 0x86f96110 mmc_regulator_set_vqmmc -EXPORT_SYMBOL_GPL vmlinux 0x86febec5 kill_device -EXPORT_SYMBOL_GPL vmlinux 0x8703dc77 pci_ats_supported -EXPORT_SYMBOL_GPL vmlinux 0x870e16b7 xen_test_irq_shared -EXPORT_SYMBOL_GPL vmlinux 0x870e39a7 freq_qos_remove_notifier -EXPORT_SYMBOL_GPL vmlinux 0x87149223 iommu_sva_alloc_pasid -EXPORT_SYMBOL_GPL vmlinux 0x8717e776 usb_hcd_unlink_urb_from_ep -EXPORT_SYMBOL_GPL vmlinux 0x871f0c79 device_wakeup_disable -EXPORT_SYMBOL_GPL vmlinux 0x872d4f7c __SCT__tp_func_xdp_bulk_tx -EXPORT_SYMBOL_GPL vmlinux 0x8735ed3d irq_set_affinity_notifier -EXPORT_SYMBOL_GPL vmlinux 0x875582b7 nvmem_del_cell_table -EXPORT_SYMBOL_GPL vmlinux 0x875c8cc7 kill_dev_dax -EXPORT_SYMBOL_GPL vmlinux 0x87600ade devm_usb_get_phy -EXPORT_SYMBOL_GPL vmlinux 0x87764e86 hrtimer_start_range_ns -EXPORT_SYMBOL_GPL vmlinux 0x877801f3 i2c_adapter_type -EXPORT_SYMBOL_GPL vmlinux 0x877efcf0 led_sysfs_disable -EXPORT_SYMBOL_GPL vmlinux 0x878eda77 pci_epc_linkup -EXPORT_SYMBOL_GPL vmlinux 0x87962047 phy_set_speed -EXPORT_SYMBOL_GPL vmlinux 0x87998e8b bpf_trace_run7 -EXPORT_SYMBOL_GPL vmlinux 0x87a2f4cb devm_usb_put_phy -EXPORT_SYMBOL_GPL vmlinux 0x87a8c3f6 bpf_trace_run12 -EXPORT_SYMBOL_GPL vmlinux 0x87ae27d5 platform_get_resource_byname -EXPORT_SYMBOL_GPL vmlinux 0x87b6c7ef driver_find_device -EXPORT_SYMBOL_GPL vmlinux 0x87c3fbd7 pci_slots_kset -EXPORT_SYMBOL_GPL vmlinux 0x87c5a510 dev_set_name -EXPORT_SYMBOL_GPL vmlinux 0x87e64181 amd_nb_has_feature -EXPORT_SYMBOL_GPL vmlinux 0x87f34e99 disable_kprobe -EXPORT_SYMBOL_GPL vmlinux 0x880dc4a5 __traceiter_block_rq_insert -EXPORT_SYMBOL_GPL vmlinux 0x881b236e _proc_mkdir -EXPORT_SYMBOL_GPL vmlinux 0x881e8f83 ata_sff_busy_sleep -EXPORT_SYMBOL_GPL vmlinux 0x882bff96 switchdev_handle_fdb_add_to_device -EXPORT_SYMBOL_GPL vmlinux 0x883780f7 __tracepoint_tcp_send_reset -EXPORT_SYMBOL_GPL vmlinux 0x883b1490 irq_find_matching_fwspec -EXPORT_SYMBOL_GPL vmlinux 0x883ffb08 __traceiter_block_unplug -EXPORT_SYMBOL_GPL vmlinux 0x884be839 devlink_resource_occ_get_register -EXPORT_SYMBOL_GPL vmlinux 0x885528a6 ring_buffer_discard_commit -EXPORT_SYMBOL_GPL vmlinux 0x88598fe8 kernel_kobj -EXPORT_SYMBOL_GPL vmlinux 0x88667a48 freq_qos_add_notifier -EXPORT_SYMBOL_GPL vmlinux 0x88674c0b ncsi_start_dev -EXPORT_SYMBOL_GPL vmlinux 0x88897e2c hwspin_lock_free -EXPORT_SYMBOL_GPL vmlinux 0x888c5be5 irq_bypass_register_consumer -EXPORT_SYMBOL_GPL vmlinux 0x8890f31c scsi_register_device_handler -EXPORT_SYMBOL_GPL vmlinux 0x88a052a8 acpi_register_gsi -EXPORT_SYMBOL_GPL vmlinux 0x88a1611a nvdimm_bus_unregister -EXPORT_SYMBOL_GPL vmlinux 0x88ab6fe3 kgdb_active -EXPORT_SYMBOL_GPL vmlinux 0x88abfa0c bpf_trace_run3 -EXPORT_SYMBOL_GPL vmlinux 0x88b4ae92 ring_buffer_normalize_time_stamp -EXPORT_SYMBOL_GPL vmlinux 0x88bfc17f tty_ldisc_ref -EXPORT_SYMBOL_GPL vmlinux 0x88c050f3 crypto_ahash_finup -EXPORT_SYMBOL_GPL vmlinux 0x88c726b4 devlink_dpipe_table_resource_set -EXPORT_SYMBOL_GPL vmlinux 0x88d0af30 devlink_port_attrs_pci_pf_set -EXPORT_SYMBOL_GPL vmlinux 0x88d73d38 wb_writeout_inc -EXPORT_SYMBOL_GPL vmlinux 0x88e3c404 tpm_pcr_extend -EXPORT_SYMBOL_GPL vmlinux 0x88fe3d65 tpm_try_get_ops -EXPORT_SYMBOL_GPL vmlinux 0x89099675 kthread_queue_work -EXPORT_SYMBOL_GPL vmlinux 0x890ba82a srcutorture_get_gp_data -EXPORT_SYMBOL_GPL vmlinux 0x890be7e6 fixed_phy_register_with_gpiod -EXPORT_SYMBOL_GPL vmlinux 0x890f4f97 __kprobe_event_gen_cmd_start -EXPORT_SYMBOL_GPL vmlinux 0x8917782b virtqueue_poll -EXPORT_SYMBOL_GPL vmlinux 0x891a5a7f gnttab_max_grant_frames -EXPORT_SYMBOL_GPL vmlinux 0x89210e74 apply_to_existing_page_range -EXPORT_SYMBOL_GPL vmlinux 0x8924eb1e rcu_force_quiescent_state -EXPORT_SYMBOL_GPL vmlinux 0x89278337 crypto_unregister_acomps -EXPORT_SYMBOL_GPL vmlinux 0x892a44dd regulator_set_voltage_time_sel -EXPORT_SYMBOL_GPL vmlinux 0x892a60f6 devm_remove_action -EXPORT_SYMBOL_GPL vmlinux 0x892f9f04 __SCT__tp_func_devlink_hwerr -EXPORT_SYMBOL_GPL vmlinux 0x89335eec fw_devlink_purge_absent_suppliers -EXPORT_SYMBOL_GPL vmlinux 0x893541f8 regulator_bulk_free -EXPORT_SYMBOL_GPL vmlinux 0x8937d928 usb_get_dev -EXPORT_SYMBOL_GPL vmlinux 0x893abbdd devlink_fmsg_u32_pair_put -EXPORT_SYMBOL_GPL vmlinux 0x89485687 iommu_group_put -EXPORT_SYMBOL_GPL vmlinux 0x89523ae8 __tracepoint_devlink_trap_report -EXPORT_SYMBOL_GPL vmlinux 0x89902be3 xfrm_dev_offload_ok -EXPORT_SYMBOL_GPL vmlinux 0x899117e7 usb_phy_roothub_alloc -EXPORT_SYMBOL_GPL vmlinux 0x8991274b bpf_prog_destroy -EXPORT_SYMBOL_GPL vmlinux 0x89a3e159 irq_chip_retrigger_hierarchy -EXPORT_SYMBOL_GPL vmlinux 0x89ae7aa0 rsa_parse_pub_key -EXPORT_SYMBOL_GPL vmlinux 0x89bbafc6 usb_register_notify -EXPORT_SYMBOL_GPL vmlinux 0x89c1ec87 usb_autopm_get_interface -EXPORT_SYMBOL_GPL vmlinux 0x89e278b6 usb_disable_xhci_ports -EXPORT_SYMBOL_GPL vmlinux 0x89e340cf acpi_bus_get_ejd -EXPORT_SYMBOL_GPL vmlinux 0x89fb4eb2 usb_autopm_put_interface_async -EXPORT_SYMBOL_GPL vmlinux 0x89fe3a0b __blkg_prfill_rwstat -EXPORT_SYMBOL_GPL vmlinux 0x8a0785d4 usb_asmedia_modifyflowcontrol -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 0x8a5227bd lwtunnel_encap_del_ops -EXPORT_SYMBOL_GPL vmlinux 0x8a5dd855 __phy_modify_mmd_changed -EXPORT_SYMBOL_GPL vmlinux 0x8a62b81b sfp_upstream_stop -EXPORT_SYMBOL_GPL vmlinux 0x8a7c9415 device_for_each_child -EXPORT_SYMBOL_GPL vmlinux 0x8a7cb9c4 platform_thermal_package_rate_control -EXPORT_SYMBOL_GPL vmlinux 0x8a838ef6 intel_scu_ipc_dev_put -EXPORT_SYMBOL_GPL vmlinux 0x8a83fb45 mpi_point_free_parts -EXPORT_SYMBOL_GPL vmlinux 0x8aa2d4e5 sk_free_unlock_clone -EXPORT_SYMBOL_GPL vmlinux 0x8aaf3a8d btree_merge -EXPORT_SYMBOL_GPL vmlinux 0x8ab1155e wbc_attach_and_unlock_inode -EXPORT_SYMBOL_GPL vmlinux 0x8ab370c8 __traceiter_block_bio_complete -EXPORT_SYMBOL_GPL vmlinux 0x8abacc47 get_max_files -EXPORT_SYMBOL_GPL vmlinux 0x8ad272f5 rtc_read_alarm -EXPORT_SYMBOL_GPL vmlinux 0x8ad5ceb1 __uv_hub_info_list -EXPORT_SYMBOL_GPL vmlinux 0x8aec53e0 crypto_skcipher_decrypt -EXPORT_SYMBOL_GPL vmlinux 0x8b097310 gpiochip_reqres_irq -EXPORT_SYMBOL_GPL vmlinux 0x8b0b255b devm_regulator_register -EXPORT_SYMBOL_GPL vmlinux 0x8b133fe2 serial8250_rpm_get_tx -EXPORT_SYMBOL_GPL vmlinux 0x8b149c36 clk_is_match -EXPORT_SYMBOL_GPL vmlinux 0x8b1b1ff1 tty_set_ldisc -EXPORT_SYMBOL_GPL vmlinux 0x8b1bbcd3 input_ff_destroy -EXPORT_SYMBOL_GPL vmlinux 0x8b3a59be pci_disable_rom -EXPORT_SYMBOL_GPL vmlinux 0x8b40217c vp_modern_get_queue_enable -EXPORT_SYMBOL_GPL vmlinux 0x8b47ea1d __SCT__tp_func_extlog_mem_event -EXPORT_SYMBOL_GPL vmlinux 0x8b5f2e6e vfio_pci_core_write -EXPORT_SYMBOL_GPL vmlinux 0x8b67d834 btree_visitor -EXPORT_SYMBOL_GPL vmlinux 0x8b863d05 crypto_register_scomps -EXPORT_SYMBOL_GPL vmlinux 0x8b8cc689 enable_kprobe -EXPORT_SYMBOL_GPL vmlinux 0x8b9200fd lookup_address -EXPORT_SYMBOL_GPL vmlinux 0x8b95e6a2 __SCT__tp_func_pelt_irq_tp -EXPORT_SYMBOL_GPL vmlinux 0x8b9a92be pm_clk_remove -EXPORT_SYMBOL_GPL vmlinux 0x8b9ed57a fuse_conn_destroy -EXPORT_SYMBOL_GPL vmlinux 0x8ba0fd64 spi_register_controller -EXPORT_SYMBOL_GPL vmlinux 0x8bb89d63 inet6_csk_addr2sockaddr -EXPORT_SYMBOL_GPL vmlinux 0x8bbffa6c ata_sas_sync_probe -EXPORT_SYMBOL_GPL vmlinux 0x8bddb5d4 pinctrl_select_default_state -EXPORT_SYMBOL_GPL vmlinux 0x8c0215f2 pm_system_wakeup -EXPORT_SYMBOL_GPL vmlinux 0x8c03d20c destroy_workqueue -EXPORT_SYMBOL_GPL vmlinux 0x8c0dad9f device_add -EXPORT_SYMBOL_GPL vmlinux 0x8c0ed103 rcu_check_boost_fail -EXPORT_SYMBOL_GPL vmlinux 0x8c151678 __wake_up_sync -EXPORT_SYMBOL_GPL vmlinux 0x8c31b394 nvdimm_cmd_mask -EXPORT_SYMBOL_GPL vmlinux 0x8c341c48 current_save_fsgs -EXPORT_SYMBOL_GPL vmlinux 0x8c36043d usb_poison_anchored_urbs -EXPORT_SYMBOL_GPL vmlinux 0x8c409323 mmc_get_ext_csd -EXPORT_SYMBOL_GPL vmlinux 0x8c42e3f7 exportfs_encode_inode_fh -EXPORT_SYMBOL_GPL vmlinux 0x8c484409 gnttab_release_grant_reference -EXPORT_SYMBOL_GPL vmlinux 0x8c4956d3 alloc_dax_region -EXPORT_SYMBOL_GPL vmlinux 0x8c4fded2 sgx_virt_einit -EXPORT_SYMBOL_GPL vmlinux 0x8c55851b rt_mutex_lock -EXPORT_SYMBOL_GPL vmlinux 0x8c687011 crypto_register_scomp -EXPORT_SYMBOL_GPL vmlinux 0x8c743fb6 reset_control_status -EXPORT_SYMBOL_GPL vmlinux 0x8c78b601 devm_platform_ioremap_resource_byname -EXPORT_SYMBOL_GPL vmlinux 0x8c7a78e5 ata_host_alloc -EXPORT_SYMBOL_GPL vmlinux 0x8c850d2c cpufreq_register_driver -EXPORT_SYMBOL_GPL vmlinux 0x8c88b07b scsi_internal_device_block_nowait -EXPORT_SYMBOL_GPL vmlinux 0x8c897ac2 iommu_device_link -EXPORT_SYMBOL_GPL vmlinux 0x8c89e3b8 usb_phy_roothub_power_off -EXPORT_SYMBOL_GPL vmlinux 0x8c91c8e8 nvmem_cell_read_u8 -EXPORT_SYMBOL_GPL vmlinux 0x8c9a91e7 ip_route_output_flow -EXPORT_SYMBOL_GPL vmlinux 0x8cc08a55 rio_request_inb_pwrite -EXPORT_SYMBOL_GPL vmlinux 0x8cd662b9 adp5520_clr_bits -EXPORT_SYMBOL_GPL vmlinux 0x8cd9fae9 dst_cache_set_ip6 -EXPORT_SYMBOL_GPL vmlinux 0x8cefcc1e tpm_transmit_cmd -EXPORT_SYMBOL_GPL vmlinux 0x8d0140be gpiochip_relres_irq -EXPORT_SYMBOL_GPL vmlinux 0x8d22bb58 iommu_group_alloc -EXPORT_SYMBOL_GPL vmlinux 0x8d2bb12e efivar_entry_size -EXPORT_SYMBOL_GPL vmlinux 0x8d3330b6 cpuacct_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x8d336106 vring_new_virtqueue -EXPORT_SYMBOL_GPL vmlinux 0x8d439f88 inet_csk_listen_start -EXPORT_SYMBOL_GPL vmlinux 0x8d522714 __rcu_read_lock -EXPORT_SYMBOL_GPL vmlinux 0x8d65a769 xfrm_unregister_translator -EXPORT_SYMBOL_GPL vmlinux 0x8d7e3373 hwpoison_filter_dev_major -EXPORT_SYMBOL_GPL vmlinux 0x8d81037f nd_blk_memremap_flags -EXPORT_SYMBOL_GPL vmlinux 0x8d91502b blk_mq_sched_try_merge -EXPORT_SYMBOL_GPL vmlinux 0x8d93d6b0 pci_epc_mem_alloc_addr -EXPORT_SYMBOL_GPL vmlinux 0x8da59f3c crypto_unregister_template -EXPORT_SYMBOL_GPL vmlinux 0x8dafdded lwtunnel_valid_encap_type_attr -EXPORT_SYMBOL_GPL vmlinux 0x8dd218b0 icc_bulk_disable -EXPORT_SYMBOL_GPL vmlinux 0x8de02e48 pci_msi_mask_irq -EXPORT_SYMBOL_GPL vmlinux 0x8de6817a acpi_dev_resource_address_space -EXPORT_SYMBOL_GPL vmlinux 0x8dfcd149 klist_add_tail -EXPORT_SYMBOL_GPL vmlinux 0x8dfdb8e2 fscrypt_set_bio_crypt_ctx_bh -EXPORT_SYMBOL_GPL vmlinux 0x8dfff47f rtc_update_irq_enable -EXPORT_SYMBOL_GPL vmlinux 0x8e187034 sdio_unregister_driver -EXPORT_SYMBOL_GPL vmlinux 0x8e1b0a8a scsi_queue_work -EXPORT_SYMBOL_GPL vmlinux 0x8e1c3b53 devm_kfree -EXPORT_SYMBOL_GPL vmlinux 0x8e272662 relay_close -EXPORT_SYMBOL_GPL vmlinux 0x8e2788c6 __get_task_comm -EXPORT_SYMBOL_GPL vmlinux 0x8e2835b0 __tracepoint_non_standard_event -EXPORT_SYMBOL_GPL vmlinux 0x8e2e808f dev_pm_opp_put_supported_hw -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 0x8e5de202 acpi_driver_match_device -EXPORT_SYMBOL_GPL vmlinux 0x8e641b14 platform_device_del -EXPORT_SYMBOL_GPL vmlinux 0x8e6b1a9e net_selftest_get_count -EXPORT_SYMBOL_GPL vmlinux 0x8e6fa8b5 apei_exec_pre_map_gars -EXPORT_SYMBOL_GPL vmlinux 0x8e788f12 raw_v6_hashinfo -EXPORT_SYMBOL_GPL vmlinux 0x8e7b56fc cpci_hp_unregister_controller -EXPORT_SYMBOL_GPL vmlinux 0x8e92f7c4 static_key_slow_inc -EXPORT_SYMBOL_GPL vmlinux 0x8eab5549 xenbus_frontend_closed -EXPORT_SYMBOL_GPL vmlinux 0x8ead800c user_free_preparse -EXPORT_SYMBOL_GPL vmlinux 0x8eae038c kthread_flush_worker -EXPORT_SYMBOL_GPL vmlinux 0x8edc4c4e sdio_release_host -EXPORT_SYMBOL_GPL vmlinux 0x8eed0fa2 sbitmap_get_shallow -EXPORT_SYMBOL_GPL vmlinux 0x8eee3399 dax_read_unlock -EXPORT_SYMBOL_GPL vmlinux 0x8ef85250 nf_ipv6_ops -EXPORT_SYMBOL_GPL vmlinux 0x8effb505 phy_gbit_features -EXPORT_SYMBOL_GPL vmlinux 0x8f0748af rcu_expedite_gp -EXPORT_SYMBOL_GPL vmlinux 0x8f11a2fc cpu_latency_qos_update_request -EXPORT_SYMBOL_GPL vmlinux 0x8f1d61e2 wm8350_block_write -EXPORT_SYMBOL_GPL vmlinux 0x8f262265 handle_untracked_irq -EXPORT_SYMBOL_GPL vmlinux 0x8f2eb429 kvm_arch_para_hints -EXPORT_SYMBOL_GPL vmlinux 0x8f31f350 ata_sff_thaw -EXPORT_SYMBOL_GPL vmlinux 0x8f4e6c0f devm_extcon_dev_unregister -EXPORT_SYMBOL_GPL vmlinux 0x8f5041f4 i2c_get_device_id -EXPORT_SYMBOL_GPL vmlinux 0x8f510fee pinctrl_register -EXPORT_SYMBOL_GPL vmlinux 0x8f512bdd nf_queue -EXPORT_SYMBOL_GPL vmlinux 0x8f5b6a50 mmu_notifier_range_update_to_read_only -EXPORT_SYMBOL_GPL vmlinux 0x8f5cf064 of_icc_get_by_index -EXPORT_SYMBOL_GPL vmlinux 0x8f6cee77 __round_jiffies_relative -EXPORT_SYMBOL_GPL vmlinux 0x8f786bee fs_umode_to_dtype -EXPORT_SYMBOL_GPL vmlinux 0x8f82eebc clk_hw_register -EXPORT_SYMBOL_GPL vmlinux 0x8f8839ab usb_get_status -EXPORT_SYMBOL_GPL vmlinux 0x8f9b738a exportfs_decode_fh_raw -EXPORT_SYMBOL_GPL vmlinux 0x8fa4410b gpiochip_line_is_irq -EXPORT_SYMBOL_GPL vmlinux 0x8fa9d9e8 __SCT__tp_func_xdp_exception -EXPORT_SYMBOL_GPL vmlinux 0x8faa800d acpi_cpc_valid -EXPORT_SYMBOL_GPL vmlinux 0x8fbb61aa phy_pm_runtime_get -EXPORT_SYMBOL_GPL vmlinux 0x8fc12788 software_node_unregister_node_group -EXPORT_SYMBOL_GPL vmlinux 0x8fcce5b7 devm_hwspin_lock_register -EXPORT_SYMBOL_GPL vmlinux 0x8fcf582c watchdog_register_device -EXPORT_SYMBOL_GPL vmlinux 0x8fd3b8f3 devm_rtc_allocate_device -EXPORT_SYMBOL_GPL vmlinux 0x8fd3cc70 iopf_queue_flush_dev -EXPORT_SYMBOL_GPL vmlinux 0x8fd7413c nf_route -EXPORT_SYMBOL_GPL vmlinux 0x8fdac926 led_classdev_unregister -EXPORT_SYMBOL_GPL vmlinux 0x8fde2eb3 devlink_param_unregister -EXPORT_SYMBOL_GPL vmlinux 0x8ff60436 mpi_ec_add_points -EXPORT_SYMBOL_GPL vmlinux 0x8ffb1df7 acpi_get_psd_map -EXPORT_SYMBOL_GPL vmlinux 0x9010edb0 pkcs7_validate_trust -EXPORT_SYMBOL_GPL vmlinux 0x9024f443 mds_user_clear -EXPORT_SYMBOL_GPL vmlinux 0x902c71c8 ata_host_suspend -EXPORT_SYMBOL_GPL vmlinux 0x903a7884 __SCK__tp_func_neigh_timer_handler -EXPORT_SYMBOL_GPL vmlinux 0x903b627c list_lru_isolate_move -EXPORT_SYMBOL_GPL vmlinux 0x9049b10a __traceiter_devlink_hwmsg -EXPORT_SYMBOL_GPL vmlinux 0x90509c38 __acpi_node_get_property_reference -EXPORT_SYMBOL_GPL vmlinux 0x90531360 dev_pm_genpd_add_notifier -EXPORT_SYMBOL_GPL vmlinux 0x9055ae80 fsverity_ioctl_read_metadata -EXPORT_SYMBOL_GPL vmlinux 0x90688bcd devlink_info_driver_name_put -EXPORT_SYMBOL_GPL vmlinux 0x9069f5e8 efivar_entry_iter -EXPORT_SYMBOL_GPL vmlinux 0x906ee196 strp_process -EXPORT_SYMBOL_GPL vmlinux 0x90743f4d icc_set_bw -EXPORT_SYMBOL_GPL vmlinux 0x908167c2 component_add_typed -EXPORT_SYMBOL_GPL vmlinux 0x90840cc8 i2c_new_client_device -EXPORT_SYMBOL_GPL vmlinux 0x9084b044 clear_page_erms -EXPORT_SYMBOL_GPL vmlinux 0x908e4c71 da9052_enable_irq -EXPORT_SYMBOL_GPL vmlinux 0x908f8207 bpf_prog_get_type_dev -EXPORT_SYMBOL_GPL vmlinux 0x90908c54 skb_tstamp_tx -EXPORT_SYMBOL_GPL vmlinux 0x90a6db1f mbox_client_peek_data -EXPORT_SYMBOL_GPL vmlinux 0x90a9d8cc hv_is_hyperv_initialized -EXPORT_SYMBOL_GPL vmlinux 0x90ad66b1 software_node_unregister_nodes -EXPORT_SYMBOL_GPL vmlinux 0x90b6f0cb mmu_interval_notifier_remove -EXPORT_SYMBOL_GPL vmlinux 0x90c83655 dev_pm_opp_adjust_voltage -EXPORT_SYMBOL_GPL vmlinux 0x90c8498c apei_exec_write_register -EXPORT_SYMBOL_GPL vmlinux 0x90d0968a relay_switch_subbuf -EXPORT_SYMBOL_GPL vmlinux 0x90d341c4 xas_init_marks -EXPORT_SYMBOL_GPL vmlinux 0x90de0452 platform_thermal_package_notify -EXPORT_SYMBOL_GPL vmlinux 0x90de4a75 blk_rq_prep_clone -EXPORT_SYMBOL_GPL vmlinux 0x90ea7e7e rhashtable_walk_next -EXPORT_SYMBOL_GPL vmlinux 0x90ec4a53 fscrypt_set_context -EXPORT_SYMBOL_GPL vmlinux 0x9107d224 __SCT__tp_func_arm_event -EXPORT_SYMBOL_GPL vmlinux 0x910bdf6b trace_seq_vprintf -EXPORT_SYMBOL_GPL vmlinux 0x910da2e4 fwnode_get_phy_mode -EXPORT_SYMBOL_GPL vmlinux 0x9125c342 sysfs_chmod_file -EXPORT_SYMBOL_GPL vmlinux 0x9128128b irq_chip_set_wake_parent -EXPORT_SYMBOL_GPL vmlinux 0x912a3dc0 blocking_notifier_chain_register -EXPORT_SYMBOL_GPL vmlinux 0x91312043 pcie_port_find_device -EXPORT_SYMBOL_GPL vmlinux 0x91326275 xhci_ext_cap_init -EXPORT_SYMBOL_GPL vmlinux 0x913ff919 screen_pos -EXPORT_SYMBOL_GPL vmlinux 0x9140adad sock_diag_check_cookie -EXPORT_SYMBOL_GPL vmlinux 0x915724b9 serial8250_do_set_ldisc -EXPORT_SYMBOL_GPL vmlinux 0x91799380 regmap_field_free -EXPORT_SYMBOL_GPL vmlinux 0x917d953b __SCT__tp_func_wbc_writepage -EXPORT_SYMBOL_GPL vmlinux 0x918bf354 debugfs_print_regs32 -EXPORT_SYMBOL_GPL vmlinux 0x9194e18f xenbus_mkdir -EXPORT_SYMBOL_GPL vmlinux 0x91955a9f start_poll_synchronize_rcu -EXPORT_SYMBOL_GPL vmlinux 0x919fb9ea __tracepoint_neigh_update -EXPORT_SYMBOL_GPL vmlinux 0x91a172e2 pci_destroy_slot -EXPORT_SYMBOL_GPL vmlinux 0x91a573a9 virtio_check_driver_offered_feature -EXPORT_SYMBOL_GPL vmlinux 0x91a96b87 yield_to -EXPORT_SYMBOL_GPL vmlinux 0x91b774a1 mpi_scanval -EXPORT_SYMBOL_GPL vmlinux 0x91b9a4ba e820__mapped_any -EXPORT_SYMBOL_GPL vmlinux 0x91baf52b crypto_grab_shash -EXPORT_SYMBOL_GPL vmlinux 0x91bc18d3 dma_map_sgtable -EXPORT_SYMBOL_GPL vmlinux 0x91c3eab5 nfs_ssc_client_tbl -EXPORT_SYMBOL_GPL vmlinux 0x91c6e5b0 pcap_to_irq -EXPORT_SYMBOL_GPL vmlinux 0x91c9313c acpi_gpio_get_io_resource -EXPORT_SYMBOL_GPL vmlinux 0x91ea8726 asn1_encode_boolean -EXPORT_SYMBOL_GPL vmlinux 0x9205c062 __blk_req_zone_write_lock -EXPORT_SYMBOL_GPL vmlinux 0x920cc389 visitorl -EXPORT_SYMBOL_GPL vmlinux 0x92141343 kvm_async_pf_task_wake -EXPORT_SYMBOL_GPL vmlinux 0x92274fe6 acpi_unregister_lps0_dev -EXPORT_SYMBOL_GPL vmlinux 0x922f32ab devlink_trap_groups_register -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 0x9250094e __blkg_prfill_u64 -EXPORT_SYMBOL_GPL vmlinux 0x926548fa devm_gpiod_get_from_of_node -EXPORT_SYMBOL_GPL vmlinux 0x926f3790 device_driver_attach -EXPORT_SYMBOL_GPL vmlinux 0x9272ce71 crypto_register_acomp -EXPORT_SYMBOL_GPL vmlinux 0x9274d22f dma_resv_wait_timeout -EXPORT_SYMBOL_GPL vmlinux 0x927b1ce9 perf_event_create_kernel_counter -EXPORT_SYMBOL_GPL vmlinux 0x928a3ae6 crypto_register_shashes -EXPORT_SYMBOL_GPL vmlinux 0x92b1f245 crypto_register_rng -EXPORT_SYMBOL_GPL vmlinux 0x92b8c78b hyperv_pcpu_output_arg -EXPORT_SYMBOL_GPL vmlinux 0x92bb50ec mbox_controller_unregister -EXPORT_SYMBOL_GPL vmlinux 0x92d31cfb fixed_phy_add -EXPORT_SYMBOL_GPL vmlinux 0x92d5447b irq_chip_mask_ack_parent -EXPORT_SYMBOL_GPL vmlinux 0x92db53e7 bd_link_disk_holder -EXPORT_SYMBOL_GPL vmlinux 0x92db8f68 do_trace_rcu_torture_read -EXPORT_SYMBOL_GPL vmlinux 0x92de9f8f __devm_reset_control_get -EXPORT_SYMBOL_GPL vmlinux 0x92e8e9ab fsverity_enqueue_verify_work -EXPORT_SYMBOL_GPL vmlinux 0x931ebc96 usb_driver_set_configuration -EXPORT_SYMBOL_GPL vmlinux 0x93255b2b ring_buffer_lock_reserve -EXPORT_SYMBOL_GPL vmlinux 0x932c8d7a linear_range_get_value_array -EXPORT_SYMBOL_GPL vmlinux 0x93327856 blk_mq_freeze_queue_wait_timeout -EXPORT_SYMBOL_GPL vmlinux 0x934f5997 debugfs_create_bool -EXPORT_SYMBOL_GPL vmlinux 0x93575185 rio_mport_initialize -EXPORT_SYMBOL_GPL vmlinux 0x936d0858 blocking_notifier_chain_unregister -EXPORT_SYMBOL_GPL vmlinux 0x9376af66 alarm_start -EXPORT_SYMBOL_GPL vmlinux 0x9377c8ae lwtunnel_xmit -EXPORT_SYMBOL_GPL vmlinux 0x938cc796 devm_hwspin_lock_unregister -EXPORT_SYMBOL_GPL vmlinux 0x938ef02c of_pm_clk_add_clks -EXPORT_SYMBOL_GPL vmlinux 0x9394de60 dma_buf_put -EXPORT_SYMBOL_GPL vmlinux 0x93b9d16a fat_update_time -EXPORT_SYMBOL_GPL vmlinux 0x93c7edeb usb_find_common_endpoints -EXPORT_SYMBOL_GPL vmlinux 0x93d1d424 gnttab_free_grant_references -EXPORT_SYMBOL_GPL vmlinux 0x93d7404f usb_hcd_link_urb_to_ep -EXPORT_SYMBOL_GPL vmlinux 0x93da9d2e tcp_ca_openreq_child -EXPORT_SYMBOL_GPL vmlinux 0x93dc2586 pgprot_writethrough -EXPORT_SYMBOL_GPL vmlinux 0x93edef07 devlink_health_report -EXPORT_SYMBOL_GPL vmlinux 0x93f55fe0 power_supply_batinfo_ocv2cap -EXPORT_SYMBOL_GPL vmlinux 0x93fded49 platform_get_irq_optional -EXPORT_SYMBOL_GPL vmlinux 0x93fe5e52 devm_pwmchip_add -EXPORT_SYMBOL_GPL vmlinux 0x9403a202 device_property_read_u8_array -EXPORT_SYMBOL_GPL vmlinux 0x94045bcc of_led_get -EXPORT_SYMBOL_GPL vmlinux 0x940646c2 __efivar_entry_iter -EXPORT_SYMBOL_GPL vmlinux 0x94140a7a fib6_new_table -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 0x9424058f arch_haltpoll_disable -EXPORT_SYMBOL_GPL vmlinux 0x9425bb34 nvmem_dev_name -EXPORT_SYMBOL_GPL vmlinux 0x9430b198 trace_dump_stack -EXPORT_SYMBOL_GPL vmlinux 0x9436e405 memory_group_register_dynamic -EXPORT_SYMBOL_GPL vmlinux 0x943fc708 xen_setup_shutdown_event -EXPORT_SYMBOL_GPL vmlinux 0x9442253b rio_mport_get_feature -EXPORT_SYMBOL_GPL vmlinux 0x94475e1e gpiochip_irq_unmap -EXPORT_SYMBOL_GPL vmlinux 0x9450f122 mmc_send_tuning -EXPORT_SYMBOL_GPL vmlinux 0x94590a1e __inode_attach_wb -EXPORT_SYMBOL_GPL vmlinux 0x945ec097 devm_device_add_groups -EXPORT_SYMBOL_GPL vmlinux 0x946025d4 device_wakeup_enable -EXPORT_SYMBOL_GPL vmlinux 0x9464ed14 driver_attach -EXPORT_SYMBOL_GPL vmlinux 0x9468ea70 schedule_hrtimeout_range_clock -EXPORT_SYMBOL_GPL vmlinux 0x946dd559 sha224_zero_message_hash -EXPORT_SYMBOL_GPL vmlinux 0x947b40c6 cpu_smt_possible -EXPORT_SYMBOL_GPL vmlinux 0x949b5176 devlink_region_snapshot_create -EXPORT_SYMBOL_GPL vmlinux 0x949f7342 __alloc_percpu -EXPORT_SYMBOL_GPL vmlinux 0x94c05e57 ata_host_detach -EXPORT_SYMBOL_GPL vmlinux 0x94d6c714 evict_inodes -EXPORT_SYMBOL_GPL vmlinux 0x94dd12e9 usb_wakeup_notification -EXPORT_SYMBOL_GPL vmlinux 0x94e5f9b0 __tracepoint_pelt_thermal_tp -EXPORT_SYMBOL_GPL vmlinux 0x94ecac0f __xas_prev -EXPORT_SYMBOL_GPL vmlinux 0x94ef4d05 cpci_hp_stop -EXPORT_SYMBOL_GPL vmlinux 0x94f49b87 reset_controller_register -EXPORT_SYMBOL_GPL vmlinux 0x95036b2d pci_bridge_secondary_bus_reset -EXPORT_SYMBOL_GPL vmlinux 0x950447bc mmu_interval_read_begin -EXPORT_SYMBOL_GPL vmlinux 0x95048c19 rio_unmap_inb_region -EXPORT_SYMBOL_GPL vmlinux 0x9504df26 irq_wake_thread -EXPORT_SYMBOL_GPL vmlinux 0x950daf33 crypto_chain -EXPORT_SYMBOL_GPL vmlinux 0x950e07cf pm_runtime_get_if_active -EXPORT_SYMBOL_GPL vmlinux 0x951a2773 crypto_has_alg -EXPORT_SYMBOL_GPL vmlinux 0x951c5437 xenbus_dev_fatal -EXPORT_SYMBOL_GPL vmlinux 0x95235825 xenbus_unregister_driver -EXPORT_SYMBOL_GPL vmlinux 0x952664c5 do_exit -EXPORT_SYMBOL_GPL vmlinux 0x952f3159 tty_set_termios -EXPORT_SYMBOL_GPL vmlinux 0x95359211 device_remove_properties -EXPORT_SYMBOL_GPL vmlinux 0x953a1450 __tracepoint_pelt_dl_tp -EXPORT_SYMBOL_GPL vmlinux 0x953e1b9e ktime_get_real_seconds -EXPORT_SYMBOL_GPL vmlinux 0x955b0e2e kthread_worker_fn -EXPORT_SYMBOL_GPL vmlinux 0x95609b26 context_tracking_key -EXPORT_SYMBOL_GPL vmlinux 0x956ac400 ring_buffer_dropped_events_cpu -EXPORT_SYMBOL_GPL vmlinux 0x957c13d0 edac_device_handle_ue_count -EXPORT_SYMBOL_GPL vmlinux 0x95843030 mpi_ec_init -EXPORT_SYMBOL_GPL vmlinux 0x95864a1e tty_get_icount -EXPORT_SYMBOL_GPL vmlinux 0x958df3ac zs_free -EXPORT_SYMBOL_GPL vmlinux 0x9593ef31 register_ftrace_export -EXPORT_SYMBOL_GPL vmlinux 0x9595eda1 dev_pm_opp_find_level_exact -EXPORT_SYMBOL_GPL vmlinux 0x959ec5f5 call_rcu_tasks -EXPORT_SYMBOL_GPL vmlinux 0x95a54e75 sdio_memcpy_toio -EXPORT_SYMBOL_GPL vmlinux 0x95ac1cfb virtqueue_get_buf_ctx -EXPORT_SYMBOL_GPL vmlinux 0x95bc9078 btree_free -EXPORT_SYMBOL_GPL vmlinux 0x95db7f3f da903x_writes -EXPORT_SYMBOL_GPL vmlinux 0x95e7f9d3 tcp_bpf_sendmsg_redir -EXPORT_SYMBOL_GPL vmlinux 0x95ebf834 wm8350_clear_bits -EXPORT_SYMBOL_GPL vmlinux 0x95ef1ccc dmi_memdev_size -EXPORT_SYMBOL_GPL vmlinux 0x95ef46f5 ata_sff_error_handler -EXPORT_SYMBOL_GPL vmlinux 0x95f5bce0 devlink_dpipe_table_register -EXPORT_SYMBOL_GPL vmlinux 0x961286e0 ring_buffer_read_events_cpu -EXPORT_SYMBOL_GPL vmlinux 0x9615b005 hv_map_ioapic_interrupt -EXPORT_SYMBOL_GPL vmlinux 0x963a23e0 rio_local_get_device_id -EXPORT_SYMBOL_GPL vmlinux 0x9651bc8a fib_rules_unregister -EXPORT_SYMBOL_GPL vmlinux 0x9652fb43 icc_set_tag -EXPORT_SYMBOL_GPL vmlinux 0x96530fef pid_vnr -EXPORT_SYMBOL_GPL vmlinux 0x96554810 register_keyboard_notifier -EXPORT_SYMBOL_GPL vmlinux 0x9681edad devm_regmap_field_alloc -EXPORT_SYMBOL_GPL vmlinux 0x9688b217 gnttab_batch_copy -EXPORT_SYMBOL_GPL vmlinux 0x968cd094 ata_scsi_change_queue_depth -EXPORT_SYMBOL_GPL vmlinux 0x968f9a23 efivar_entry_iter_begin -EXPORT_SYMBOL_GPL vmlinux 0x969fbf59 bsg_job_done -EXPORT_SYMBOL_GPL vmlinux 0x96a696fe usb_hub_claim_port -EXPORT_SYMBOL_GPL vmlinux 0x96b82af6 __tracepoint_neigh_event_send_done -EXPORT_SYMBOL_GPL vmlinux 0x96c884e6 balloon_aops -EXPORT_SYMBOL_GPL vmlinux 0x96ce1534 extcon_set_property_sync -EXPORT_SYMBOL_GPL vmlinux 0x96eafb58 sdio_set_host_pm_flags -EXPORT_SYMBOL_GPL vmlinux 0x96f98526 debugfs_file_get -EXPORT_SYMBOL_GPL vmlinux 0x9705a65c unregister_virtio_driver -EXPORT_SYMBOL_GPL vmlinux 0x9714e0bb ktime_get_raw -EXPORT_SYMBOL_GPL vmlinux 0x97193576 pci_disable_pasid -EXPORT_SYMBOL_GPL vmlinux 0x9719bcfd pmc_atom_read -EXPORT_SYMBOL_GPL vmlinux 0x972b5a7f __fscrypt_prepare_lookup -EXPORT_SYMBOL_GPL vmlinux 0x972fa059 find_mci_by_dev -EXPORT_SYMBOL_GPL vmlinux 0x973622af devm_pinctrl_put -EXPORT_SYMBOL_GPL vmlinux 0x9750da1d devm_pm_opp_set_clkname -EXPORT_SYMBOL_GPL vmlinux 0x975519c1 asymmetric_key_id_same -EXPORT_SYMBOL_GPL vmlinux 0x975791e2 serdev_device_open -EXPORT_SYMBOL_GPL vmlinux 0x978a8a1c ping_seq_start -EXPORT_SYMBOL_GPL vmlinux 0x97a459e2 efivars_unregister -EXPORT_SYMBOL_GPL vmlinux 0x97b228e6 ping_common_sendmsg -EXPORT_SYMBOL_GPL vmlinux 0x97c9d574 do_splice_to -EXPORT_SYMBOL_GPL vmlinux 0x97dd1b40 usb_unlocked_disable_lpm -EXPORT_SYMBOL_GPL vmlinux 0x97dd86fd genphy_c45_read_mdix -EXPORT_SYMBOL_GPL vmlinux 0x97de2b83 debug_locks_silent -EXPORT_SYMBOL_GPL vmlinux 0x97e40b1c __SCK__tp_func_br_fdb_external_learn_add -EXPORT_SYMBOL_GPL vmlinux 0x97ef9699 tpm2_flush_context -EXPORT_SYMBOL_GPL vmlinux 0x97f5ff37 dma_alloc_pages -EXPORT_SYMBOL_GPL vmlinux 0x97ff047c synth_event_trace_end -EXPORT_SYMBOL_GPL vmlinux 0x9801ca71 xenbus_dev_cancel -EXPORT_SYMBOL_GPL vmlinux 0x980fae14 crypto_unregister_akcipher -EXPORT_SYMBOL_GPL vmlinux 0x9813355e nf_nat_hook -EXPORT_SYMBOL_GPL vmlinux 0x9833bc0c hvc_kick -EXPORT_SYMBOL_GPL vmlinux 0x9843f501 __cookie_v4_check -EXPORT_SYMBOL_GPL vmlinux 0x98455f17 fuse_dev_alloc_install -EXPORT_SYMBOL_GPL vmlinux 0x98503a63 mpi_alloc -EXPORT_SYMBOL_GPL vmlinux 0x985453e1 lease_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x9856e7a3 serdev_device_get_tiocm -EXPORT_SYMBOL_GPL vmlinux 0x9858f111 ata_bmdma_dumb_qc_prep -EXPORT_SYMBOL_GPL vmlinux 0x985bc436 pm_generic_resume_early -EXPORT_SYMBOL_GPL vmlinux 0x985c2b82 shmem_read_mapping_page_gfp -EXPORT_SYMBOL_GPL vmlinux 0x985c4c6c iommu_sva_get_pasid -EXPORT_SYMBOL_GPL vmlinux 0x9870aeba metadata_dst_free -EXPORT_SYMBOL_GPL vmlinux 0x987173bf security_path_rmdir -EXPORT_SYMBOL_GPL vmlinux 0x9872f27f proc_create_net_single -EXPORT_SYMBOL_GPL vmlinux 0x9879932b crypto_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x988a1a00 sn_region_size -EXPORT_SYMBOL_GPL vmlinux 0x988f0661 regmap_get_raw_write_max -EXPORT_SYMBOL_GPL vmlinux 0x989074ff kmsg_dump_reason_str -EXPORT_SYMBOL_GPL vmlinux 0x9896b53f irqd_cfg -EXPORT_SYMBOL_GPL vmlinux 0x98a5a036 __SCK__tp_func_neigh_event_send_dead -EXPORT_SYMBOL_GPL vmlinux 0x98b142fa blk_fill_rwbs -EXPORT_SYMBOL_GPL vmlinux 0x98bcb27f task_active_pid_ns -EXPORT_SYMBOL_GPL vmlinux 0x98c820d3 sock_diag_unregister -EXPORT_SYMBOL_GPL vmlinux 0x98d2e587 trace_seq_path -EXPORT_SYMBOL_GPL vmlinux 0x98d2fede lp8788_write_byte -EXPORT_SYMBOL_GPL vmlinux 0x98d3b526 trace_array_set_clr_event -EXPORT_SYMBOL_GPL vmlinux 0x98e4a2b6 devlink_dpipe_table_counter_enabled -EXPORT_SYMBOL_GPL vmlinux 0x98e8e3cb is_skb_forwardable -EXPORT_SYMBOL_GPL vmlinux 0x98ebfaa4 serdev_device_set_tiocm -EXPORT_SYMBOL_GPL vmlinux 0x98ee62b2 ring_buffer_record_disable_cpu -EXPORT_SYMBOL_GPL vmlinux 0x98ee9745 usb_hcd_giveback_urb -EXPORT_SYMBOL_GPL vmlinux 0x98f41042 posix_clock_register -EXPORT_SYMBOL_GPL vmlinux 0x98f4d306 hyperv_flush_guest_mapping -EXPORT_SYMBOL_GPL vmlinux 0x98fa1e20 dm_get_reserved_rq_based_ios -EXPORT_SYMBOL_GPL vmlinux 0x9901f841 auxiliary_find_device -EXPORT_SYMBOL_GPL vmlinux 0x9902c694 firmware_kobj -EXPORT_SYMBOL_GPL vmlinux 0x99146b04 phy_resolve_aneg_pause -EXPORT_SYMBOL_GPL vmlinux 0x99161001 dev_pm_qos_add_notifier -EXPORT_SYMBOL_GPL vmlinux 0x992c9d7c crypto_unregister_rngs -EXPORT_SYMBOL_GPL vmlinux 0x9930f8a3 uv_bios_change_memprotect -EXPORT_SYMBOL_GPL vmlinux 0x9936df72 freq_qos_update_request -EXPORT_SYMBOL_GPL vmlinux 0x9942c4fa device_find_child -EXPORT_SYMBOL_GPL vmlinux 0x99430ba2 acpi_get_phys_id -EXPORT_SYMBOL_GPL vmlinux 0x994f6738 __free_iova -EXPORT_SYMBOL_GPL vmlinux 0x9955eb47 policy_has_boost_freq -EXPORT_SYMBOL_GPL vmlinux 0x9957500c ip6_datagram_release_cb -EXPORT_SYMBOL_GPL vmlinux 0x9958ed74 spi_res_release -EXPORT_SYMBOL_GPL vmlinux 0x995d1071 prof_on -EXPORT_SYMBOL_GPL vmlinux 0x9961bc93 inet6_csk_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0x9968aacb __audit_log_nfcfg -EXPORT_SYMBOL_GPL vmlinux 0x996dfc63 vfs_setlease -EXPORT_SYMBOL_GPL vmlinux 0x9971787c edac_pci_add_device -EXPORT_SYMBOL_GPL vmlinux 0x997e9b7b dma_mmap_pages -EXPORT_SYMBOL_GPL vmlinux 0x998d79d6 x509_decode_time -EXPORT_SYMBOL_GPL vmlinux 0x9994da43 __tracepoint_fdb_delete -EXPORT_SYMBOL_GPL vmlinux 0x99a83bac espintcp_queue_out -EXPORT_SYMBOL_GPL vmlinux 0x99a926cb __reset_control_bulk_get -EXPORT_SYMBOL_GPL vmlinux 0x99ab1fa2 ata_bmdma_irq_clear -EXPORT_SYMBOL_GPL vmlinux 0x99bd76d9 ata_msleep -EXPORT_SYMBOL_GPL vmlinux 0x99c3aea7 regulator_set_mode -EXPORT_SYMBOL_GPL vmlinux 0x99cbc6b3 kthread_use_mm -EXPORT_SYMBOL_GPL vmlinux 0x99dd730c page_reporting_unregister -EXPORT_SYMBOL_GPL vmlinux 0x99dff734 klist_init -EXPORT_SYMBOL_GPL vmlinux 0x99e4c7a4 ohci_hub_status_data -EXPORT_SYMBOL_GPL vmlinux 0x99e991a2 l3mdev_master_ifindex_rcu -EXPORT_SYMBOL_GPL vmlinux 0x99f018c4 nvmem_cell_read -EXPORT_SYMBOL_GPL vmlinux 0x99f2d00a sysfs_emit_at -EXPORT_SYMBOL_GPL vmlinux 0x99f3b62a gpiod_set_array_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0x9a03ffaa bdev_disk_changed -EXPORT_SYMBOL_GPL vmlinux 0x9a06c65d pci_enable_sriov -EXPORT_SYMBOL_GPL vmlinux 0x9a11a0fc crypto_attr_alg_name -EXPORT_SYMBOL_GPL vmlinux 0x9a15c009 shash_register_instance -EXPORT_SYMBOL_GPL vmlinux 0x9a176cf2 watchdog_unregister_device -EXPORT_SYMBOL_GPL vmlinux 0x9a178f56 dequeue_signal -EXPORT_SYMBOL_GPL vmlinux 0x9a185ace tick_nohz_full_running -EXPORT_SYMBOL_GPL vmlinux 0x9a203452 ptdump_walk_pgd_level_debugfs -EXPORT_SYMBOL_GPL vmlinux 0x9a51910c mbox_chan_received_data -EXPORT_SYMBOL_GPL vmlinux 0x9a58dd2d trace_print_bitmask_seq -EXPORT_SYMBOL_GPL vmlinux 0x9a6e75fd phy_put -EXPORT_SYMBOL_GPL vmlinux 0x9a77d5aa clk_register -EXPORT_SYMBOL_GPL vmlinux 0x9a8d4ddf devlink_region_create -EXPORT_SYMBOL_GPL vmlinux 0x9a98c904 blk_queue_required_elevator_features -EXPORT_SYMBOL_GPL vmlinux 0x9aa536ed devm_hwrng_unregister -EXPORT_SYMBOL_GPL vmlinux 0x9aa71c2a efi_query_variable_store -EXPORT_SYMBOL_GPL vmlinux 0x9aaac699 dev_pm_opp_cpumask_remove_table -EXPORT_SYMBOL_GPL vmlinux 0x9ab6d0e0 usb_set_device_state -EXPORT_SYMBOL_GPL vmlinux 0x9ac11b74 suspend_set_ops -EXPORT_SYMBOL_GPL vmlinux 0x9ad92799 pci_stop_root_bus -EXPORT_SYMBOL_GPL vmlinux 0x9ad9efe4 posix_acl_default_xattr_handler -EXPORT_SYMBOL_GPL vmlinux 0x9aeacb87 ring_buffer_iter_empty -EXPORT_SYMBOL_GPL vmlinux 0x9af49514 icc_bulk_set_bw -EXPORT_SYMBOL_GPL vmlinux 0x9b106d72 ata_host_register -EXPORT_SYMBOL_GPL vmlinux 0x9b10ed83 __wake_up_locked -EXPORT_SYMBOL_GPL vmlinux 0x9b12eb68 devm_regulator_get_exclusive -EXPORT_SYMBOL_GPL vmlinux 0x9b1a09e7 receive_fd -EXPORT_SYMBOL_GPL vmlinux 0x9b1bc8a8 cpufreq_dbs_governor_start -EXPORT_SYMBOL_GPL vmlinux 0x9b1dbbde power_supply_set_property -EXPORT_SYMBOL_GPL vmlinux 0x9b3aac8a ip6_append_data -EXPORT_SYMBOL_GPL vmlinux 0x9b555c8c pm_suspend_default_s2idle -EXPORT_SYMBOL_GPL vmlinux 0x9b5c4a6c sk_msg_trim -EXPORT_SYMBOL_GPL vmlinux 0x9b698c42 ioasid_set_data -EXPORT_SYMBOL_GPL vmlinux 0x9b6ec967 ring_buffer_size -EXPORT_SYMBOL_GPL vmlinux 0x9b896724 devlink_param_value_str_fill -EXPORT_SYMBOL_GPL vmlinux 0x9b8f9669 clockevents_unbind_device -EXPORT_SYMBOL_GPL vmlinux 0x9b9071cb get_old_itimerspec32 -EXPORT_SYMBOL_GPL vmlinux 0x9b92d16e pinctrl_gpio_set_config -EXPORT_SYMBOL_GPL vmlinux 0x9b9e12d6 tpm_chip_stop -EXPORT_SYMBOL_GPL vmlinux 0x9b9f3648 pcibios_scan_specific_bus -EXPORT_SYMBOL_GPL vmlinux 0x9ba2a505 seg6_do_srh_inline -EXPORT_SYMBOL_GPL vmlinux 0x9ba2bb2b gpio_request_array -EXPORT_SYMBOL_GPL vmlinux 0x9ba6cbf6 phy_power_off -EXPORT_SYMBOL_GPL vmlinux 0x9bad141d hv_hypercall_pg -EXPORT_SYMBOL_GPL vmlinux 0x9bcf9f7d housekeeping_enabled -EXPORT_SYMBOL_GPL vmlinux 0x9bd72712 virtqueue_add_inbuf_ctx -EXPORT_SYMBOL_GPL vmlinux 0x9be30d27 mhp_get_pluggable_range -EXPORT_SYMBOL_GPL vmlinux 0x9be83de4 pm_generic_resume -EXPORT_SYMBOL_GPL vmlinux 0x9bece81b mpi_cmp_ui -EXPORT_SYMBOL_GPL vmlinux 0x9bf1ba96 vfio_virqfd_disable -EXPORT_SYMBOL_GPL vmlinux 0x9bf8c43a component_unbind_all -EXPORT_SYMBOL_GPL vmlinux 0x9c1e8527 wm8350_reg_read -EXPORT_SYMBOL_GPL vmlinux 0x9c1f8043 cpuidle_unregister_driver -EXPORT_SYMBOL_GPL vmlinux 0x9c267f79 tcp_leave_memory_pressure -EXPORT_SYMBOL_GPL vmlinux 0x9c459fec dma_buf_end_cpu_access -EXPORT_SYMBOL_GPL vmlinux 0x9c47feef pm_clk_destroy -EXPORT_SYMBOL_GPL vmlinux 0x9c4ac720 dma_get_any_slave_channel -EXPORT_SYMBOL_GPL vmlinux 0x9c4d79ec input_class -EXPORT_SYMBOL_GPL vmlinux 0x9c5e9d44 inet6_destroy_sock -EXPORT_SYMBOL_GPL vmlinux 0x9c6ae7f6 power_supply_am_i_supplied -EXPORT_SYMBOL_GPL vmlinux 0x9c6e0c57 blk_ksm_reprogram_all_keys -EXPORT_SYMBOL_GPL vmlinux 0x9c6febfc add_uevent_var -EXPORT_SYMBOL_GPL vmlinux 0x9c70d9c6 debugfs_write_file_bool -EXPORT_SYMBOL_GPL vmlinux 0x9c803020 usb_phy_roothub_power_on -EXPORT_SYMBOL_GPL vmlinux 0x9c843ae9 led_trigger_read -EXPORT_SYMBOL_GPL vmlinux 0x9c86355f mptcp_pm_get_add_addr_accept_max -EXPORT_SYMBOL_GPL vmlinux 0x9c8ecbbf tpm_put_ops -EXPORT_SYMBOL_GPL vmlinux 0x9c9d00ad devm_pm_clk_create -EXPORT_SYMBOL_GPL vmlinux 0x9ca480cc clk_gate_is_enabled -EXPORT_SYMBOL_GPL vmlinux 0x9cc4f70a register_pm_notifier -EXPORT_SYMBOL_GPL vmlinux 0x9cce0a8d dw_pcie_ep_init_notify -EXPORT_SYMBOL_GPL vmlinux 0x9cd7a562 pci_find_ext_capability -EXPORT_SYMBOL_GPL vmlinux 0x9cdeca56 register_kretprobes -EXPORT_SYMBOL_GPL vmlinux 0x9cf37c44 __iowrite32_copy -EXPORT_SYMBOL_GPL vmlinux 0x9d09e8ae ring_buffer_event_data -EXPORT_SYMBOL_GPL vmlinux 0x9d0da2e4 edac_device_alloc_ctl_info -EXPORT_SYMBOL_GPL vmlinux 0x9d126a30 spi_busnum_to_master -EXPORT_SYMBOL_GPL vmlinux 0x9d14205c cr4_read_shadow -EXPORT_SYMBOL_GPL vmlinux 0x9d36684a ip6_pol_route -EXPORT_SYMBOL_GPL vmlinux 0x9d36b5cc regmap_irq_get_domain -EXPORT_SYMBOL_GPL vmlinux 0x9d4509dd perf_event_read_value -EXPORT_SYMBOL_GPL vmlinux 0x9d4894c8 x2apic_mode -EXPORT_SYMBOL_GPL vmlinux 0x9d5c63f3 device_show_bool -EXPORT_SYMBOL_GPL vmlinux 0x9d69327c __sbitmap_queue_get -EXPORT_SYMBOL_GPL vmlinux 0x9d77f8dc ata_host_activate -EXPORT_SYMBOL_GPL vmlinux 0x9d8f36cd ethnl_cable_test_free -EXPORT_SYMBOL_GPL vmlinux 0x9d9562ba i2c_acpi_client_count -EXPORT_SYMBOL_GPL vmlinux 0x9dab90ca dax_region_put -EXPORT_SYMBOL_GPL vmlinux 0x9def9a90 xdp_return_frame_rx_napi -EXPORT_SYMBOL_GPL vmlinux 0x9df17f82 bus_for_each_drv -EXPORT_SYMBOL_GPL vmlinux 0x9e005e6f cppc_get_perf_caps -EXPORT_SYMBOL_GPL vmlinux 0x9e472f5f snmp_fold_field -EXPORT_SYMBOL_GPL vmlinux 0x9e4de156 ksm_madvise -EXPORT_SYMBOL_GPL vmlinux 0x9e4f4abc ata_sff_wait_ready -EXPORT_SYMBOL_GPL vmlinux 0x9e6668c4 inet_twsk_alloc -EXPORT_SYMBOL_GPL vmlinux 0x9e6b21fe do_tcp_sendpages -EXPORT_SYMBOL_GPL vmlinux 0x9e75f455 tpm_pm_suspend -EXPORT_SYMBOL_GPL vmlinux 0x9e77feec sata_pmp_qc_defer_cmd_switch -EXPORT_SYMBOL_GPL vmlinux 0x9e89c4c5 class_dev_iter_next -EXPORT_SYMBOL_GPL vmlinux 0x9e978a95 clk_hw_rate_is_protected -EXPORT_SYMBOL_GPL vmlinux 0x9e993337 nfs42_ssc_register -EXPORT_SYMBOL_GPL vmlinux 0x9e9e9d94 acpi_subsys_suspend_noirq -EXPORT_SYMBOL_GPL vmlinux 0x9eaaecfb genphy_c45_read_link -EXPORT_SYMBOL_GPL vmlinux 0x9eb10df4 genphy_c45_pma_resume -EXPORT_SYMBOL_GPL vmlinux 0x9ec4d70a pinctrl_add_gpio_ranges -EXPORT_SYMBOL_GPL vmlinux 0x9ecbb97a devlink_trap_policers_unregister -EXPORT_SYMBOL_GPL vmlinux 0x9ed554b3 unregister_keyboard_notifier -EXPORT_SYMBOL_GPL vmlinux 0x9ed564a3 pci_create_root_bus -EXPORT_SYMBOL_GPL vmlinux 0x9ed6ac4a phy_modify -EXPORT_SYMBOL_GPL vmlinux 0x9eeb9384 crypto_hash_walk_first -EXPORT_SYMBOL_GPL vmlinux 0x9eebdde7 mpi_point_new -EXPORT_SYMBOL_GPL vmlinux 0x9efeb283 bus_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x9f01dca3 rio_free_net -EXPORT_SYMBOL_GPL vmlinux 0x9f149aed pci_rescan_bus -EXPORT_SYMBOL_GPL vmlinux 0x9f15bd3e devm_i2c_new_dummy_device -EXPORT_SYMBOL_GPL vmlinux 0x9f223fe4 __tracepoint_xdp_exception -EXPORT_SYMBOL_GPL vmlinux 0x9f2799bb nvdimm_bus_add_badrange -EXPORT_SYMBOL_GPL vmlinux 0x9f2f2ee8 relay_late_setup_files -EXPORT_SYMBOL_GPL vmlinux 0x9f391ef4 dma_buf_unpin -EXPORT_SYMBOL_GPL vmlinux 0x9f4c4aa0 spi_delay_to_ns -EXPORT_SYMBOL_GPL vmlinux 0x9f5c6dc2 __cookie_v6_check -EXPORT_SYMBOL_GPL vmlinux 0x9f632dfe vfio_unregister_iommu_driver -EXPORT_SYMBOL_GPL vmlinux 0x9f7795ba __devm_spi_alloc_controller -EXPORT_SYMBOL_GPL vmlinux 0x9f86805b acpi_subsys_poweroff -EXPORT_SYMBOL_GPL vmlinux 0x9f8bfccf amd_iommu_is_attach_deferred -EXPORT_SYMBOL_GPL vmlinux 0x9f91f8f4 pci_vpd_alloc -EXPORT_SYMBOL_GPL vmlinux 0x9fa29e8f dw_pcie_ep_init -EXPORT_SYMBOL_GPL vmlinux 0x9fa4564a timer_shutdown -EXPORT_SYMBOL_GPL vmlinux 0x9fa6b579 sysfs_notify -EXPORT_SYMBOL_GPL vmlinux 0x9fbc7284 ata_slave_link_init -EXPORT_SYMBOL_GPL vmlinux 0x9fbcd8e2 crypto_alloc_shash -EXPORT_SYMBOL_GPL vmlinux 0x9fbfebab erst_write -EXPORT_SYMBOL_GPL vmlinux 0x9fc043a5 vfio_pci_register_dev_region -EXPORT_SYMBOL_GPL vmlinux 0x9fc44390 pci_epf_free_space -EXPORT_SYMBOL_GPL vmlinux 0x9fc95d80 class_interface_register -EXPORT_SYMBOL_GPL vmlinux 0x9fce3d4d crypto_shash_finup -EXPORT_SYMBOL_GPL vmlinux 0x9fce80db fb_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0x9fcf446f tracing_snapshot_cond_enable -EXPORT_SYMBOL_GPL vmlinux 0x9fdceee0 power_supply_get_by_name -EXPORT_SYMBOL_GPL vmlinux 0x9fe899b7 get_cpu_idle_time -EXPORT_SYMBOL_GPL vmlinux 0x9fe939e1 mpi_powm -EXPORT_SYMBOL_GPL vmlinux 0xa01892e2 rio_mport_chk_dev_access -EXPORT_SYMBOL_GPL vmlinux 0xa01a8d9b nd_cmd_bus_desc -EXPORT_SYMBOL_GPL vmlinux 0xa0308364 pci_acpi_set_companion_lookup_hook -EXPORT_SYMBOL_GPL vmlinux 0xa0308bfe l3mdev_fib_table_by_index -EXPORT_SYMBOL_GPL vmlinux 0xa0494d05 iomap_seek_data -EXPORT_SYMBOL_GPL vmlinux 0xa04f945a cpus_read_lock -EXPORT_SYMBOL_GPL vmlinux 0xa05e1872 pci_dev_run_wake -EXPORT_SYMBOL_GPL vmlinux 0xa062769f device_for_each_child_reverse -EXPORT_SYMBOL_GPL vmlinux 0xa06a6bf3 md_allow_write -EXPORT_SYMBOL_GPL vmlinux 0xa07b1008 crypto_mod_get -EXPORT_SYMBOL_GPL vmlinux 0xa080c5e5 smp_call_function_single_async -EXPORT_SYMBOL_GPL vmlinux 0xa090478a arch_has_restricted_virtio_memory_access -EXPORT_SYMBOL_GPL vmlinux 0xa09f1471 usb_enable_lpm -EXPORT_SYMBOL_GPL vmlinux 0xa0afca78 __traceiter_kfree_skb -EXPORT_SYMBOL_GPL vmlinux 0xa0b8b7ac account_locked_vm -EXPORT_SYMBOL_GPL vmlinux 0xa0bb51f3 class_find_device -EXPORT_SYMBOL_GPL vmlinux 0xa0bedb03 dma_buf_fd -EXPORT_SYMBOL_GPL vmlinux 0xa0c0f1d7 __SCT__tp_func_neigh_timer_handler -EXPORT_SYMBOL_GPL vmlinux 0xa0d3456d nr_swap_pages -EXPORT_SYMBOL_GPL vmlinux 0xa0d7d365 gpio_to_desc -EXPORT_SYMBOL_GPL vmlinux 0xa0d81b76 __SCT__tp_func_devlink_hwmsg -EXPORT_SYMBOL_GPL vmlinux 0xa0e671d8 __SCT__tp_func_sched_update_nr_running_tp -EXPORT_SYMBOL_GPL vmlinux 0xa1036e1c usb_reset_device -EXPORT_SYMBOL_GPL vmlinux 0xa1053988 dev_pm_opp_put_opp_table -EXPORT_SYMBOL_GPL vmlinux 0xa11216be xen_store_domain_type -EXPORT_SYMBOL_GPL vmlinux 0xa1153908 device_create_bin_file -EXPORT_SYMBOL_GPL vmlinux 0xa13d7b3b get_user_pages_fast -EXPORT_SYMBOL_GPL vmlinux 0xa144fae6 cpu_device_create -EXPORT_SYMBOL_GPL vmlinux 0xa1468cdc xfrm_audit_state_replay_overflow -EXPORT_SYMBOL_GPL vmlinux 0xa1493285 generic_device_group -EXPORT_SYMBOL_GPL vmlinux 0xa14b1fe4 irq_domain_create_legacy -EXPORT_SYMBOL_GPL vmlinux 0xa156a1f2 erst_get_record_id_end -EXPORT_SYMBOL_GPL vmlinux 0xa16deb13 sbitmap_resize -EXPORT_SYMBOL_GPL vmlinux 0xa16e28a2 debugfs_read_file_bool -EXPORT_SYMBOL_GPL vmlinux 0xa171e971 watchdog_set_restart_priority -EXPORT_SYMBOL_GPL vmlinux 0xa188ba6f fuse_do_ioctl -EXPORT_SYMBOL_GPL vmlinux 0xa189447d usb_check_bulk_endpoints -EXPORT_SYMBOL_GPL vmlinux 0xa18f5d78 pci_iov_virtfn_devfn -EXPORT_SYMBOL_GPL vmlinux 0xa1903a82 blk_queue_max_zone_append_sectors -EXPORT_SYMBOL_GPL vmlinux 0xa19acb1b gpiod_set_config -EXPORT_SYMBOL_GPL vmlinux 0xa19e49b5 fib_nl_delrule -EXPORT_SYMBOL_GPL vmlinux 0xa1a5c6e2 badblocks_store -EXPORT_SYMBOL_GPL vmlinux 0xa1c5c3e7 iommu_fwspec_free -EXPORT_SYMBOL_GPL vmlinux 0xa1d2b896 platform_get_irq -EXPORT_SYMBOL_GPL vmlinux 0xa1d8004a videomode_from_timing -EXPORT_SYMBOL_GPL vmlinux 0xa1f48d36 ata_acpi_gtm -EXPORT_SYMBOL_GPL vmlinux 0xa1f77314 usb_register_driver -EXPORT_SYMBOL_GPL vmlinux 0xa20d01ba __trace_bprintk -EXPORT_SYMBOL_GPL vmlinux 0xa20f54bd __hwspin_lock_timeout -EXPORT_SYMBOL_GPL vmlinux 0xa20fd1fb inet6_compat_ioctl -EXPORT_SYMBOL_GPL vmlinux 0xa218b3bc mbox_flush -EXPORT_SYMBOL_GPL vmlinux 0xa218ccbc synth_event_trace_start -EXPORT_SYMBOL_GPL vmlinux 0xa21fe166 ip6_datagram_recv_ctl -EXPORT_SYMBOL_GPL vmlinux 0xa22c89d4 sched_setattr_nocheck -EXPORT_SYMBOL_GPL vmlinux 0xa2389c16 rdev_clear_badblocks -EXPORT_SYMBOL_GPL vmlinux 0xa23c4cf6 ata_bmdma_port_start32 -EXPORT_SYMBOL_GPL vmlinux 0xa24e3bab devm_power_supply_register_no_ws -EXPORT_SYMBOL_GPL vmlinux 0xa269ae8b kill_pid_usb_asyncio -EXPORT_SYMBOL_GPL vmlinux 0xa26d9b4f workqueue_congested -EXPORT_SYMBOL_GPL vmlinux 0xa27c7ebf iommu_report_device_fault -EXPORT_SYMBOL_GPL vmlinux 0xa287005a fat_scan -EXPORT_SYMBOL_GPL vmlinux 0xa2882b41 ip_fib_metrics_init -EXPORT_SYMBOL_GPL vmlinux 0xa29931c6 crypto_unregister_rng -EXPORT_SYMBOL_GPL vmlinux 0xa2a54b95 nvmem_register -EXPORT_SYMBOL_GPL vmlinux 0xa2a7e826 device_get_dma_attr -EXPORT_SYMBOL_GPL vmlinux 0xa2af54b3 irq_from_evtchn -EXPORT_SYMBOL_GPL vmlinux 0xa2bd1755 device_create_file -EXPORT_SYMBOL_GPL vmlinux 0xa2c87c7f inet_csk_get_port -EXPORT_SYMBOL_GPL vmlinux 0xa2d0b59d mmio_stale_data_clear -EXPORT_SYMBOL_GPL vmlinux 0xa2d95b6b strp_unpause -EXPORT_SYMBOL_GPL vmlinux 0xa2e0cdf4 xas_nomem -EXPORT_SYMBOL_GPL vmlinux 0xa2e1b3ef trace_printk_init_buffers -EXPORT_SYMBOL_GPL vmlinux 0xa2e5bd84 skb_copy_ubufs -EXPORT_SYMBOL_GPL vmlinux 0xa2e76f87 pinctrl_utils_add_map_mux -EXPORT_SYMBOL_GPL vmlinux 0xa2f7487f hv_is_hibernation_supported -EXPORT_SYMBOL_GPL vmlinux 0xa30b9ec9 vp_modern_set_queue_enable -EXPORT_SYMBOL_GPL vmlinux 0xa3195c99 find_iova -EXPORT_SYMBOL_GPL vmlinux 0xa31ee501 ata_acpi_stm -EXPORT_SYMBOL_GPL vmlinux 0xa31ef874 irq_gc_mask_clr_bit -EXPORT_SYMBOL_GPL vmlinux 0xa329d081 __fscrypt_prepare_rename -EXPORT_SYMBOL_GPL vmlinux 0xa330287a hwspin_lock_request_specific -EXPORT_SYMBOL_GPL vmlinux 0xa3484b56 pci_sriov_set_totalvfs -EXPORT_SYMBOL_GPL vmlinux 0xa34b089b __traceiter_br_fdb_external_learn_add -EXPORT_SYMBOL_GPL vmlinux 0xa352c7b8 subsys_dev_iter_next -EXPORT_SYMBOL_GPL vmlinux 0xa35b3495 scsi_internal_device_unblock_nowait -EXPORT_SYMBOL_GPL vmlinux 0xa36f50fb is_binary_blacklisted -EXPORT_SYMBOL_GPL vmlinux 0xa38602cd drain_workqueue -EXPORT_SYMBOL_GPL vmlinux 0xa3887435 perf_event_period -EXPORT_SYMBOL_GPL vmlinux 0xa389a49a profile_event_register -EXPORT_SYMBOL_GPL vmlinux 0xa38a9f71 get_itimerspec64 -EXPORT_SYMBOL_GPL vmlinux 0xa38ad3a0 debugfs_create_dir -EXPORT_SYMBOL_GPL vmlinux 0xa39bbb87 crypto_stats_kpp_set_secret -EXPORT_SYMBOL_GPL vmlinux 0xa3a04602 btree_geo64 -EXPORT_SYMBOL_GPL vmlinux 0xa3b15e2f regulator_bulk_force_disable -EXPORT_SYMBOL_GPL vmlinux 0xa3b958ce reset_hung_task_detector -EXPORT_SYMBOL_GPL vmlinux 0xa3d1f451 iomap_zero_range -EXPORT_SYMBOL_GPL vmlinux 0xa3ece414 freezer_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0xa3ef4dc3 bpf_offload_dev_netdev_register -EXPORT_SYMBOL_GPL vmlinux 0xa3f12f69 __crypto_xor -EXPORT_SYMBOL_GPL vmlinux 0xa3f412e2 __nf_ip6_route -EXPORT_SYMBOL_GPL vmlinux 0xa3fcdb35 param_ops_bool_enable_only -EXPORT_SYMBOL_GPL vmlinux 0xa4031b7f sfp_parse_port -EXPORT_SYMBOL_GPL vmlinux 0xa4045e89 kernfs_find_and_get_ns -EXPORT_SYMBOL_GPL vmlinux 0xa408d747 regmap_field_bulk_free -EXPORT_SYMBOL_GPL vmlinux 0xa410a295 devlink_region_destroy -EXPORT_SYMBOL_GPL vmlinux 0xa410d6bb devfreq_event_set_event -EXPORT_SYMBOL_GPL vmlinux 0xa418e2a1 devlink_region_snapshot_id_put -EXPORT_SYMBOL_GPL vmlinux 0xa42d0278 devm_pwm_get -EXPORT_SYMBOL_GPL vmlinux 0xa431bcd4 genphy_c45_read_pma -EXPORT_SYMBOL_GPL vmlinux 0xa445b8a9 msg_zerocopy_put_abort -EXPORT_SYMBOL_GPL vmlinux 0xa44a1307 interval_tree_iter_first -EXPORT_SYMBOL_GPL vmlinux 0xa452c297 hpet_mask_rtc_irq_bit -EXPORT_SYMBOL_GPL vmlinux 0xa452f2a4 xen_pirq_from_irq -EXPORT_SYMBOL_GPL vmlinux 0xa45c7b90 stack_trace_print -EXPORT_SYMBOL_GPL vmlinux 0xa45ec163 ehci_suspend -EXPORT_SYMBOL_GPL vmlinux 0xa462d5a6 __SCT__tp_func_sched_overutilized_tp -EXPORT_SYMBOL_GPL vmlinux 0xa462e7b5 ip6_datagram_connect_v6_only -EXPORT_SYMBOL_GPL vmlinux 0xa46a2d7c devm_hwmon_device_register_with_groups -EXPORT_SYMBOL_GPL vmlinux 0xa46b0c2f devm_led_trigger_register -EXPORT_SYMBOL_GPL vmlinux 0xa47a3201 __traceiter_rpm_suspend -EXPORT_SYMBOL_GPL vmlinux 0xa47fbd78 edac_get_sysfs_subsys -EXPORT_SYMBOL_GPL vmlinux 0xa48196c8 kdb_poll_idx -EXPORT_SYMBOL_GPL vmlinux 0xa4848e8f scsi_unregister_device_handler -EXPORT_SYMBOL_GPL vmlinux 0xa4917422 dev_pm_opp_put_prop_name -EXPORT_SYMBOL_GPL vmlinux 0xa49b440a security_inode_create -EXPORT_SYMBOL_GPL vmlinux 0xa49d7284 gpiod_get_raw_array_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0xa4a168a5 unix_peer_get -EXPORT_SYMBOL_GPL vmlinux 0xa4ab7c1c ring_buffer_overruns -EXPORT_SYMBOL_GPL vmlinux 0xa4b07fe7 ring_buffer_change_overwrite -EXPORT_SYMBOL_GPL vmlinux 0xa4b630c6 devm_usb_get_phy_by_node -EXPORT_SYMBOL_GPL vmlinux 0xa4c00324 asn1_encode_octet_string -EXPORT_SYMBOL_GPL vmlinux 0xa4c085f8 ata_tf_from_fis -EXPORT_SYMBOL_GPL vmlinux 0xa4c66b27 skb_zerocopy_iter_stream -EXPORT_SYMBOL_GPL vmlinux 0xa4c88c4f regmap_add_irq_chip -EXPORT_SYMBOL_GPL vmlinux 0xa4cd06a7 balloon_page_alloc -EXPORT_SYMBOL_GPL vmlinux 0xa4cdf940 serdev_device_write_buf -EXPORT_SYMBOL_GPL vmlinux 0xa4df856e crypto_stats_akcipher_decrypt -EXPORT_SYMBOL_GPL vmlinux 0xa4eb5793 sbitmap_weight -EXPORT_SYMBOL_GPL vmlinux 0xa5022949 inet_getpeer -EXPORT_SYMBOL_GPL vmlinux 0xa512de50 xen_register_device_domain_owner -EXPORT_SYMBOL_GPL vmlinux 0xa51da8cc genphy_c45_read_status -EXPORT_SYMBOL_GPL vmlinux 0xa52f03f1 inet_csk_route_req -EXPORT_SYMBOL_GPL vmlinux 0xa531471e clk_save_context -EXPORT_SYMBOL_GPL vmlinux 0xa55a9f02 __traceiter_rpm_idle -EXPORT_SYMBOL_GPL vmlinux 0xa560b398 usb_acpi_power_manageable -EXPORT_SYMBOL_GPL vmlinux 0xa568d5bb xenbus_dev_suspend -EXPORT_SYMBOL_GPL vmlinux 0xa5737056 __pm_runtime_set_status -EXPORT_SYMBOL_GPL vmlinux 0xa5743e17 usb_get_maximum_ssp_rate -EXPORT_SYMBOL_GPL vmlinux 0xa578d6c3 clk_register_fixed_rate -EXPORT_SYMBOL_GPL vmlinux 0xa57bd2b2 fuse_dev_release -EXPORT_SYMBOL_GPL vmlinux 0xa59823f6 kobject_uevent_env -EXPORT_SYMBOL_GPL vmlinux 0xa5ae62d8 pci_host_probe -EXPORT_SYMBOL_GPL vmlinux 0xa5b5698a phy_pm_runtime_put -EXPORT_SYMBOL_GPL vmlinux 0xa5bda8a1 efi_capsule_supported -EXPORT_SYMBOL_GPL vmlinux 0xa5d788ae fwnode_property_present -EXPORT_SYMBOL_GPL vmlinux 0xa5d7c388 pstore_type_to_name -EXPORT_SYMBOL_GPL vmlinux 0xa5e12c67 transport_destroy_device -EXPORT_SYMBOL_GPL vmlinux 0xa5e55ccb regmap_mmio_detach_clk -EXPORT_SYMBOL_GPL vmlinux 0xa5eefcb0 iommu_dev_disable_feature -EXPORT_SYMBOL_GPL vmlinux 0xa5efbf4c async_synchronize_full -EXPORT_SYMBOL_GPL vmlinux 0xa5f1d4c4 __traceiter_napi_poll -EXPORT_SYMBOL_GPL vmlinux 0xa610cdaf mmc_switch -EXPORT_SYMBOL_GPL vmlinux 0xa61e7790 serdev_device_write_room -EXPORT_SYMBOL_GPL vmlinux 0xa62f69fd virtqueue_get_used_addr -EXPORT_SYMBOL_GPL vmlinux 0xa63bc715 device_link_add -EXPORT_SYMBOL_GPL vmlinux 0xa6422b31 devres_destroy -EXPORT_SYMBOL_GPL vmlinux 0xa648677f dev_pm_opp_set_opp -EXPORT_SYMBOL_GPL vmlinux 0xa6507c30 iomap_readahead -EXPORT_SYMBOL_GPL vmlinux 0xa657c7e8 __root_device_register -EXPORT_SYMBOL_GPL vmlinux 0xa662b5bb acpi_match_device -EXPORT_SYMBOL_GPL vmlinux 0xa66e77ed unregister_pernet_device -EXPORT_SYMBOL_GPL vmlinux 0xa671a052 trace_put_event_file -EXPORT_SYMBOL_GPL vmlinux 0xa6849843 screen_glyph -EXPORT_SYMBOL_GPL vmlinux 0xa69faffd acpi_dma_request_slave_chan_by_name -EXPORT_SYMBOL_GPL vmlinux 0xa6a088b7 fscrypt_match_name -EXPORT_SYMBOL_GPL vmlinux 0xa6ad39f4 blk_queue_flag_test_and_set -EXPORT_SYMBOL_GPL vmlinux 0xa6af533d netdev_set_default_ethtool_ops -EXPORT_SYMBOL_GPL vmlinux 0xa6b06f65 ata_sff_queue_work -EXPORT_SYMBOL_GPL vmlinux 0xa6b21ef2 dpm_suspend_end -EXPORT_SYMBOL_GPL vmlinux 0xa6dc8dc9 proc_douintvec_minmax -EXPORT_SYMBOL_GPL vmlinux 0xa6e1a69d kick_all_cpus_sync -EXPORT_SYMBOL_GPL vmlinux 0xa6f761fc powercap_register_zone -EXPORT_SYMBOL_GPL vmlinux 0xa703b317 devm_clk_hw_register_fixed_factor -EXPORT_SYMBOL_GPL vmlinux 0xa7074a23 pci_msi_prepare -EXPORT_SYMBOL_GPL vmlinux 0xa707d5ca wakeup_source_add -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 0xa7393a49 inode_dax -EXPORT_SYMBOL_GPL vmlinux 0xa746b8f9 xenbus_switch_state -EXPORT_SYMBOL_GPL vmlinux 0xa754a72d ncsi_unregister_dev -EXPORT_SYMBOL_GPL vmlinux 0xa756414c __devm_rtc_register_device -EXPORT_SYMBOL_GPL vmlinux 0xa75927f4 clk_register_fractional_divider -EXPORT_SYMBOL_GPL vmlinux 0xa75a2878 ata_pci_sff_activate_host -EXPORT_SYMBOL_GPL vmlinux 0xa75ed44a spi_mem_dtr_supports_op -EXPORT_SYMBOL_GPL vmlinux 0xa7602a4b __ndisc_fill_addr_option -EXPORT_SYMBOL_GPL vmlinux 0xa768f05e switchdev_port_obj_del -EXPORT_SYMBOL_GPL vmlinux 0xa7879e49 regulator_set_voltage -EXPORT_SYMBOL_GPL vmlinux 0xa789693a __kthread_should_park -EXPORT_SYMBOL_GPL vmlinux 0xa7b40150 pci_epc_get_msix -EXPORT_SYMBOL_GPL vmlinux 0xa7cba284 housekeeping_any_cpu -EXPORT_SYMBOL_GPL vmlinux 0xa7d12e04 kthread_mod_delayed_work -EXPORT_SYMBOL_GPL vmlinux 0xa7f182fb mptcp_get_reset_option -EXPORT_SYMBOL_GPL vmlinux 0xa8181460 devfreq_get_devfreq_by_node -EXPORT_SYMBOL_GPL vmlinux 0xa81aa96c virtqueue_enable_cb_delayed -EXPORT_SYMBOL_GPL vmlinux 0xa81c02b0 zap_vma_ptes -EXPORT_SYMBOL_GPL vmlinux 0xa831d10e tty_ldisc_deref -EXPORT_SYMBOL_GPL vmlinux 0xa83a8c73 security_path_symlink -EXPORT_SYMBOL_GPL vmlinux 0xa851973a raw_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0xa8528df2 generic_online_page -EXPORT_SYMBOL_GPL vmlinux 0xa85fd1dd of_clk_hw_register -EXPORT_SYMBOL_GPL vmlinux 0xa86dadb0 pwm_capture -EXPORT_SYMBOL_GPL vmlinux 0xa87de7f0 __tracepoint_suspend_resume -EXPORT_SYMBOL_GPL vmlinux 0xa895f346 trace_array_init_printk -EXPORT_SYMBOL_GPL vmlinux 0xa89d18e6 __raw_v6_lookup -EXPORT_SYMBOL_GPL vmlinux 0xa8aeff3f serial8250_release_dma -EXPORT_SYMBOL_GPL vmlinux 0xa8bd07f0 dst_cache_get_ip6 -EXPORT_SYMBOL_GPL vmlinux 0xa8c02456 dm_noflush_suspending -EXPORT_SYMBOL_GPL vmlinux 0xa8d02921 to_software_node -EXPORT_SYMBOL_GPL vmlinux 0xa8df8c60 __SCK__tp_func_suspend_resume -EXPORT_SYMBOL_GPL vmlinux 0xa8e77a7b devlink_port_param_driverinit_value_get -EXPORT_SYMBOL_GPL vmlinux 0xa8f5c645 mmu_interval_notifier_insert_locked -EXPORT_SYMBOL_GPL vmlinux 0xa9126bff hpet_set_rtc_irq_bit -EXPORT_SYMBOL_GPL vmlinux 0xa9196084 unix_table_lock -EXPORT_SYMBOL_GPL vmlinux 0xa91d1251 rio_register_mport -EXPORT_SYMBOL_GPL vmlinux 0xa92069f0 devm_pinctrl_get -EXPORT_SYMBOL_GPL vmlinux 0xa9320d27 ktime_get_seconds -EXPORT_SYMBOL_GPL vmlinux 0xa9430a1c crypto_rng_reset -EXPORT_SYMBOL_GPL vmlinux 0xa94ad9cc skcipher_walk_virt -EXPORT_SYMBOL_GPL vmlinux 0xa96e8b4e hv_setup_vmbus_handler -EXPORT_SYMBOL_GPL vmlinux 0xa973b5ab strp_init -EXPORT_SYMBOL_GPL vmlinux 0xa974b6d1 devm_pm_opp_set_supported_hw -EXPORT_SYMBOL_GPL vmlinux 0xa9854364 umc_normaddr_to_sysaddr -EXPORT_SYMBOL_GPL vmlinux 0xa9900790 usb_role_switch_register -EXPORT_SYMBOL_GPL vmlinux 0xa99ef899 devlink_fmsg_bool_pair_put -EXPORT_SYMBOL_GPL vmlinux 0xa9b58c98 ata_pci_bmdma_init -EXPORT_SYMBOL_GPL vmlinux 0xa9ccf113 extcon_get_edev_name -EXPORT_SYMBOL_GPL vmlinux 0xa9da7e65 nvdimm_volatile_region_create -EXPORT_SYMBOL_GPL vmlinux 0xa9e18049 task_handoff_unregister -EXPORT_SYMBOL_GPL vmlinux 0xa9e7cf8d __tracepoint_xhci_dbg_quirks -EXPORT_SYMBOL_GPL vmlinux 0xa9f0e2f7 rtnl_register_module -EXPORT_SYMBOL_GPL vmlinux 0xa9f210a0 nvdimm_blk_region_create -EXPORT_SYMBOL_GPL vmlinux 0xa9f7e530 proc_get_parent_data -EXPORT_SYMBOL_GPL vmlinux 0xaa01e893 blk_mq_complete_request_remote -EXPORT_SYMBOL_GPL vmlinux 0xaa01eef8 skb_morph -EXPORT_SYMBOL_GPL vmlinux 0xaa04a903 mptcp_pm_get_subflows_max -EXPORT_SYMBOL_GPL vmlinux 0xaa0a42ca sfp_register_socket -EXPORT_SYMBOL_GPL vmlinux 0xaa1cc2f2 ata_pci_bmdma_clear_simplex -EXPORT_SYMBOL_GPL vmlinux 0xaa230f88 perf_unregister_guest_info_callbacks -EXPORT_SYMBOL_GPL vmlinux 0xaa2d65a6 hsu_dma_remove -EXPORT_SYMBOL_GPL vmlinux 0xaa306818 devm_init_badblocks -EXPORT_SYMBOL_GPL vmlinux 0xaa37b971 unwind_get_return_address -EXPORT_SYMBOL_GPL vmlinux 0xaa3d67de devm_pm_opp_attach_genpd -EXPORT_SYMBOL_GPL vmlinux 0xaa44bde1 kernfs_get -EXPORT_SYMBOL_GPL vmlinux 0xaa5aee1c uv_bios_mq_watchlist_alloc -EXPORT_SYMBOL_GPL vmlinux 0xaa5ea1e5 sk_psock_init -EXPORT_SYMBOL_GPL vmlinux 0xaa6880c2 usb_get_current_frame_number -EXPORT_SYMBOL_GPL vmlinux 0xaa6a50f9 __static_key_deferred_flush -EXPORT_SYMBOL_GPL vmlinux 0xaa86cfb5 uv_possible_blades -EXPORT_SYMBOL_GPL vmlinux 0xaa88f0de free_iova -EXPORT_SYMBOL_GPL vmlinux 0xaa958e6f put_pid_ns -EXPORT_SYMBOL_GPL vmlinux 0xaa9c5e8d scsi_autopm_get_device -EXPORT_SYMBOL_GPL vmlinux 0xaa9e3aca acpi_dev_get_first_consumer_dev -EXPORT_SYMBOL_GPL vmlinux 0xaaa37b38 crypto_register_akcipher -EXPORT_SYMBOL_GPL vmlinux 0xaaa918c9 ftrace_dump -EXPORT_SYMBOL_GPL vmlinux 0xaaab2a40 dma_request_chan_by_mask -EXPORT_SYMBOL_GPL vmlinux 0xaab6bbd4 nl_table -EXPORT_SYMBOL_GPL vmlinux 0xaabd6871 rt_mutex_lock_interruptible -EXPORT_SYMBOL_GPL vmlinux 0xaad16de5 cpu_latency_qos_remove_request -EXPORT_SYMBOL_GPL vmlinux 0xaade6808 blockdev_superblock -EXPORT_SYMBOL_GPL vmlinux 0xaaf3ef2d bpf_offload_dev_match -EXPORT_SYMBOL_GPL vmlinux 0xaaf51e95 devm_spi_register_controller -EXPORT_SYMBOL_GPL vmlinux 0xaafbdd20 dst_cache_get -EXPORT_SYMBOL_GPL vmlinux 0xab07a50e devm_watchdog_register_device -EXPORT_SYMBOL_GPL vmlinux 0xab10b5ee page_mkclean -EXPORT_SYMBOL_GPL vmlinux 0xab18468b proc_create_net_single_write -EXPORT_SYMBOL_GPL vmlinux 0xab1c7426 __regmap_init_mmio_clk -EXPORT_SYMBOL_GPL vmlinux 0xab1e0e93 hv_setup_kexec_handler -EXPORT_SYMBOL_GPL vmlinux 0xab24c838 skb_zerocopy_iter_dgram -EXPORT_SYMBOL_GPL vmlinux 0xab32f0b4 ip6_redirect -EXPORT_SYMBOL_GPL vmlinux 0xab427129 gpiochip_generic_config -EXPORT_SYMBOL_GPL vmlinux 0xab4c0297 to_nd_desc -EXPORT_SYMBOL_GPL vmlinux 0xab58c4ee security_file_ioctl -EXPORT_SYMBOL_GPL vmlinux 0xab5ba807 rio_release_outb_mbox -EXPORT_SYMBOL_GPL vmlinux 0xab6300e0 __SCK__tp_func_map -EXPORT_SYMBOL_GPL vmlinux 0xab8dcd63 class_dev_iter_exit -EXPORT_SYMBOL_GPL vmlinux 0xab943cc3 sched_show_task -EXPORT_SYMBOL_GPL vmlinux 0xab9bd884 perf_register_guest_info_callbacks -EXPORT_SYMBOL_GPL vmlinux 0xabb7c7c2 get_cached_msi_msg -EXPORT_SYMBOL_GPL vmlinux 0xabc1661d fpu_swap_kvm_fpstate -EXPORT_SYMBOL_GPL vmlinux 0xabc298d0 intel_scu_ipc_unregister -EXPORT_SYMBOL_GPL vmlinux 0xabc515a7 fuse_free_conn -EXPORT_SYMBOL_GPL vmlinux 0xabc640f3 list_lru_isolate -EXPORT_SYMBOL_GPL vmlinux 0xabf03fc3 __SCT__tp_func_xhci_dbg_quirks -EXPORT_SYMBOL_GPL vmlinux 0xabf3bdb4 alarm_forward_now -EXPORT_SYMBOL_GPL vmlinux 0xac07f939 __ata_ehi_push_desc -EXPORT_SYMBOL_GPL vmlinux 0xac0bc441 ata_sff_data_xfer -EXPORT_SYMBOL_GPL vmlinux 0xac2084b6 ip6_input -EXPORT_SYMBOL_GPL vmlinux 0xac33b42f ata_sff_qc_fill_rtf -EXPORT_SYMBOL_GPL vmlinux 0xac3dd195 rio_alloc_net -EXPORT_SYMBOL_GPL vmlinux 0xac475a52 inet_hashinfo_init -EXPORT_SYMBOL_GPL vmlinux 0xac504cff pinctrl_dev_get_drvdata -EXPORT_SYMBOL_GPL vmlinux 0xac55f424 pci_ioremap_wc_bar -EXPORT_SYMBOL_GPL vmlinux 0xac6d18cf sk_msg_zerocopy_from_iter -EXPORT_SYMBOL_GPL vmlinux 0xac7270cf tty_register_device_attr -EXPORT_SYMBOL_GPL vmlinux 0xac72bc6f xas_find_conflict -EXPORT_SYMBOL_GPL vmlinux 0xac7d53c8 iommu_set_fault_handler -EXPORT_SYMBOL_GPL vmlinux 0xac827672 klist_next -EXPORT_SYMBOL_GPL vmlinux 0xac92629a usb_hcd_is_primary_hcd -EXPORT_SYMBOL_GPL vmlinux 0xacb3dd60 __devm_regmap_init_spi -EXPORT_SYMBOL_GPL vmlinux 0xacb4d88c clk_rate_exclusive_put -EXPORT_SYMBOL_GPL vmlinux 0xacd605e7 securityfs_remove -EXPORT_SYMBOL_GPL vmlinux 0xacec2e63 bio_start_io_acct -EXPORT_SYMBOL_GPL vmlinux 0xacf501cc crypto_grab_skcipher -EXPORT_SYMBOL_GPL vmlinux 0xad0a8b15 devm_clk_get_optional_enabled -EXPORT_SYMBOL_GPL vmlinux 0xad1f5a32 crypto_alloc_sync_skcipher -EXPORT_SYMBOL_GPL vmlinux 0xad2cf023 pci_set_cacheline_size -EXPORT_SYMBOL_GPL vmlinux 0xad395dd9 mm_account_pinned_pages -EXPORT_SYMBOL_GPL vmlinux 0xad4e6259 remove_cpu -EXPORT_SYMBOL_GPL vmlinux 0xad55fd39 add_page_wait_queue -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 0xad64a5fd thermal_zone_unbind_cooling_device -EXPORT_SYMBOL_GPL vmlinux 0xad6ac8bc md_do_sync -EXPORT_SYMBOL_GPL vmlinux 0xad6f953d icc_nodes_remove -EXPORT_SYMBOL_GPL vmlinux 0xad79ca41 fscrypt_mergeable_bio -EXPORT_SYMBOL_GPL vmlinux 0xada38766 dst_cache_destroy -EXPORT_SYMBOL_GPL vmlinux 0xadaea265 find_asymmetric_key -EXPORT_SYMBOL_GPL vmlinux 0xadca0277 regulator_list_voltage_pickable_linear_range -EXPORT_SYMBOL_GPL vmlinux 0xadd60fd9 verify_signature -EXPORT_SYMBOL_GPL vmlinux 0xadd85408 ata_sff_lost_interrupt -EXPORT_SYMBOL_GPL vmlinux 0xade02ac0 regmap_write -EXPORT_SYMBOL_GPL vmlinux 0xadfbcf42 lp8788_read_byte -EXPORT_SYMBOL_GPL vmlinux 0xae087047 pcie_aspm_capable -EXPORT_SYMBOL_GPL vmlinux 0xae1051b0 net_cls_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0xae1a36bc uart_xchar_out -EXPORT_SYMBOL_GPL vmlinux 0xae1d59a5 ethnl_cable_test_result -EXPORT_SYMBOL_GPL vmlinux 0xae22dba9 badblocks_set -EXPORT_SYMBOL_GPL vmlinux 0xae2d6d94 ata_host_init -EXPORT_SYMBOL_GPL vmlinux 0xae39f80e dst_cache_init -EXPORT_SYMBOL_GPL vmlinux 0xae3ed513 alarm_cancel -EXPORT_SYMBOL_GPL vmlinux 0xae4353c1 bus_create_file -EXPORT_SYMBOL_GPL vmlinux 0xae4746cb tcp_slow_start -EXPORT_SYMBOL_GPL vmlinux 0xae548b33 irq_chip_set_parent_state -EXPORT_SYMBOL_GPL vmlinux 0xae69b1c1 usermodehelper_read_unlock -EXPORT_SYMBOL_GPL vmlinux 0xae70b5eb pci_cfg_access_trylock -EXPORT_SYMBOL_GPL vmlinux 0xae7c231d mpi_cmp -EXPORT_SYMBOL_GPL vmlinux 0xae842559 irq_gc_mask_set_bit -EXPORT_SYMBOL_GPL vmlinux 0xae87c2f1 __tracepoint_attach_device_to_domain -EXPORT_SYMBOL_GPL vmlinux 0xae936b68 clk_hw_unregister -EXPORT_SYMBOL_GPL vmlinux 0xaea2f5ab ata_pci_sff_prepare_host -EXPORT_SYMBOL_GPL vmlinux 0xaea9bd4c lwtunnel_encap_add_ops -EXPORT_SYMBOL_GPL vmlinux 0xaead6d55 xas_set_mark -EXPORT_SYMBOL_GPL vmlinux 0xaebdc4d8 devm_regmap_field_bulk_free -EXPORT_SYMBOL_GPL vmlinux 0xaec6caf7 evm_verifyxattr -EXPORT_SYMBOL_GPL vmlinux 0xaed00e8d ata_sff_tf_read -EXPORT_SYMBOL_GPL vmlinux 0xaed8277f __clocksource_update_freq_scale -EXPORT_SYMBOL_GPL vmlinux 0xaef4b94c clk_register_fixed_factor -EXPORT_SYMBOL_GPL vmlinux 0xaf076aec nd_fletcher64 -EXPORT_SYMBOL_GPL vmlinux 0xaf0b6ba7 blkg_rwstat_init -EXPORT_SYMBOL_GPL vmlinux 0xaf16a4d6 platform_device_add_data -EXPORT_SYMBOL_GPL vmlinux 0xaf277ad7 ata_link_abort -EXPORT_SYMBOL_GPL vmlinux 0xaf322809 bpf_preload_ops -EXPORT_SYMBOL_GPL vmlinux 0xaf3847b1 __SCK__tp_func_sched_cpu_capacity_tp -EXPORT_SYMBOL_GPL vmlinux 0xaf3922b0 devlink_port_attrs_pci_sf_set -EXPORT_SYMBOL_GPL vmlinux 0xaf4014ff usb_amd_quirk_pll_check -EXPORT_SYMBOL_GPL vmlinux 0xaf489a3d store_sampling_rate -EXPORT_SYMBOL_GPL vmlinux 0xaf631ec2 dst_cache_get_ip4 -EXPORT_SYMBOL_GPL vmlinux 0xaf64a752 vtime_guest_enter -EXPORT_SYMBOL_GPL vmlinux 0xaf6bb238 thermal_cooling_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0xaf7412dc edac_pci_handle_npe -EXPORT_SYMBOL_GPL vmlinux 0xaf793668 __alloc_percpu_gfp -EXPORT_SYMBOL_GPL vmlinux 0xaf852873 cpuidle_register_device -EXPORT_SYMBOL_GPL vmlinux 0xaf852c56 fwnode_usb_role_switch_get -EXPORT_SYMBOL_GPL vmlinux 0xaf8784aa bio_release_pages -EXPORT_SYMBOL_GPL vmlinux 0xafc002e6 devm_gpiod_get_index -EXPORT_SYMBOL_GPL vmlinux 0xafc27baa elv_unregister -EXPORT_SYMBOL_GPL vmlinux 0xafc42e05 sk_msg_recvmsg -EXPORT_SYMBOL_GPL vmlinux 0xafca1052 iommu_group_remove_device -EXPORT_SYMBOL_GPL vmlinux 0xafd3ba14 init_pid_ns -EXPORT_SYMBOL_GPL vmlinux 0xafddd545 ata_id_c_string -EXPORT_SYMBOL_GPL vmlinux 0xafe5af13 spi_finalize_current_transfer -EXPORT_SYMBOL_GPL vmlinux 0xafede17a syscon_regmap_lookup_by_phandle_args -EXPORT_SYMBOL_GPL vmlinux 0xaff6214a crypto_shash_tfm_digest -EXPORT_SYMBOL_GPL vmlinux 0xb014697b tpm1_do_selftest -EXPORT_SYMBOL_GPL vmlinux 0xb020a04e agp_remove_bridge -EXPORT_SYMBOL_GPL vmlinux 0xb02ac411 register_xenstore_notifier -EXPORT_SYMBOL_GPL vmlinux 0xb036a1d9 regmap_parse_val -EXPORT_SYMBOL_GPL vmlinux 0xb03ad618 usb_set_interface -EXPORT_SYMBOL_GPL vmlinux 0xb03bef5c iommu_fwspec_init -EXPORT_SYMBOL_GPL vmlinux 0xb0547ab0 __device_reset -EXPORT_SYMBOL_GPL vmlinux 0xb0582f6d __serdev_device_driver_register -EXPORT_SYMBOL_GPL vmlinux 0xb06d3037 crypto_enqueue_request -EXPORT_SYMBOL_GPL vmlinux 0xb06e70d5 pci_hp_destroy -EXPORT_SYMBOL_GPL vmlinux 0xb070850a bio_clone_blkg_association -EXPORT_SYMBOL_GPL vmlinux 0xb0747ed2 rcu_cpu_stall_suppress -EXPORT_SYMBOL_GPL vmlinux 0xb077e70a clk_unprepare -EXPORT_SYMBOL_GPL vmlinux 0xb07c69a9 irq_domain_push_irq -EXPORT_SYMBOL_GPL vmlinux 0xb081e8c7 __traceiter_devlink_trap_report -EXPORT_SYMBOL_GPL vmlinux 0xb0966d1b nvdimm_kobj -EXPORT_SYMBOL_GPL vmlinux 0xb09a0f6d blk_req_needs_zone_write_lock -EXPORT_SYMBOL_GPL vmlinux 0xb0aaccf0 sysfs_add_link_to_group -EXPORT_SYMBOL_GPL vmlinux 0xb0ab03b4 akcipher_register_instance -EXPORT_SYMBOL_GPL vmlinux 0xb0b85f47 ring_buffer_iter_reset -EXPORT_SYMBOL_GPL vmlinux 0xb0cb37c6 crypto_aead_setkey -EXPORT_SYMBOL_GPL vmlinux 0xb0d1656c gpio_free_array -EXPORT_SYMBOL_GPL vmlinux 0xb0e13b70 tps6586x_update -EXPORT_SYMBOL_GPL vmlinux 0xb0e89ac7 crypto_stats_compress -EXPORT_SYMBOL_GPL vmlinux 0xb0e8e671 xenbus_otherend_changed -EXPORT_SYMBOL_GPL vmlinux 0xb0f7f6d4 mmc_regulator_get_supply -EXPORT_SYMBOL_GPL vmlinux 0xb0fbb722 clk_fractional_divider_ops -EXPORT_SYMBOL_GPL vmlinux 0xb10d964d devlink_fmsg_pair_nest_end -EXPORT_SYMBOL_GPL vmlinux 0xb116d9e9 pci_epf_bind -EXPORT_SYMBOL_GPL vmlinux 0xb117f429 sata_sff_hardreset -EXPORT_SYMBOL_GPL vmlinux 0xb1184972 ata_port_abort -EXPORT_SYMBOL_GPL vmlinux 0xb11b7348 regmap_check_range_table -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 0xb1365ab3 i2c_acpi_new_device -EXPORT_SYMBOL_GPL vmlinux 0xb13b1c8c __wake_up_sync_key -EXPORT_SYMBOL_GPL vmlinux 0xb141e70a __traceiter_xdp_exception -EXPORT_SYMBOL_GPL vmlinux 0xb149ef41 __static_call_update -EXPORT_SYMBOL_GPL vmlinux 0xb15810f9 rio_add_net -EXPORT_SYMBOL_GPL vmlinux 0xb15b9cc3 usb_get_intf -EXPORT_SYMBOL_GPL vmlinux 0xb1647fc2 devlink_info_version_running_put -EXPORT_SYMBOL_GPL vmlinux 0xb1755d83 ipv6_stub -EXPORT_SYMBOL_GPL vmlinux 0xb18429eb suspend_device_irqs -EXPORT_SYMBOL_GPL vmlinux 0xb186d6f2 edac_mc_free -EXPORT_SYMBOL_GPL vmlinux 0xb1b715ad ping_bind -EXPORT_SYMBOL_GPL vmlinux 0xb1bd295b vfio_pci_core_mmap -EXPORT_SYMBOL_GPL vmlinux 0xb1bed25d dpm_resume_start -EXPORT_SYMBOL_GPL vmlinux 0xb1e07eef bus_rescan_devices -EXPORT_SYMBOL_GPL vmlinux 0xb1e25684 __trace_bputs -EXPORT_SYMBOL_GPL vmlinux 0xb1e3b07a pci_epc_mem_exit -EXPORT_SYMBOL_GPL vmlinux 0xb1e42a01 uhci_reset_hc -EXPORT_SYMBOL_GPL vmlinux 0xb1e63b6d __udp6_lib_lookup -EXPORT_SYMBOL_GPL vmlinux 0xb1fc1782 pci_speed_string -EXPORT_SYMBOL_GPL vmlinux 0xb2210d64 reset_control_deassert -EXPORT_SYMBOL_GPL vmlinux 0xb2405efc secure_tcp_seq -EXPORT_SYMBOL_GPL vmlinux 0xb2420155 devm_gpiod_get_array_optional -EXPORT_SYMBOL_GPL vmlinux 0xb244d3b0 virtqueue_is_broken -EXPORT_SYMBOL_GPL vmlinux 0xb2475079 sysfs_remove_mount_point -EXPORT_SYMBOL_GPL vmlinux 0xb248653a led_trigger_blink_oneshot -EXPORT_SYMBOL_GPL vmlinux 0xb26066fe ibft_phys_addr -EXPORT_SYMBOL_GPL vmlinux 0xb26a1add elfcorehdr_addr -EXPORT_SYMBOL_GPL vmlinux 0xb26cda54 iommu_page_response -EXPORT_SYMBOL_GPL vmlinux 0xb26fb16b pm_runtime_autosuspend_expiration -EXPORT_SYMBOL_GPL vmlinux 0xb272180b preempt_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0xb29533ee zs_malloc -EXPORT_SYMBOL_GPL vmlinux 0xb2a0d248 irq_domain_alloc_irqs_parent -EXPORT_SYMBOL_GPL vmlinux 0xb2a9efa5 blk_stat_enable_accounting -EXPORT_SYMBOL_GPL vmlinux 0xb2aaa1e1 led_trigger_set_default -EXPORT_SYMBOL_GPL vmlinux 0xb2c1732e rcu_gp_set_torture_wait -EXPORT_SYMBOL_GPL vmlinux 0xb2ce728d fsnotify_get_group -EXPORT_SYMBOL_GPL vmlinux 0xb2cfde3e blk_ksm_destroy -EXPORT_SYMBOL_GPL vmlinux 0xb2dac3a0 serial8250_do_set_divisor -EXPORT_SYMBOL_GPL vmlinux 0xb2db1c48 usb_deregister_dev -EXPORT_SYMBOL_GPL vmlinux 0xb2de4cf2 clk_gate_ops -EXPORT_SYMBOL_GPL vmlinux 0xb2e764e8 suspend_valid_only_mem -EXPORT_SYMBOL_GPL vmlinux 0xb2f6d758 ata_dev_set_feature -EXPORT_SYMBOL_GPL vmlinux 0xb2f85124 rtnl_put_cacheinfo -EXPORT_SYMBOL_GPL vmlinux 0xb30600c4 iommu_register_device_fault_handler -EXPORT_SYMBOL_GPL vmlinux 0xb307c909 devlink_fmsg_u64_pair_put -EXPORT_SYMBOL_GPL vmlinux 0xb3253914 sock_prot_inuse_get -EXPORT_SYMBOL_GPL vmlinux 0xb3253ed9 hpet_rtc_timer_init -EXPORT_SYMBOL_GPL vmlinux 0xb334cc4b xdp_rxq_info_reg -EXPORT_SYMBOL_GPL vmlinux 0xb34d6f65 pci_bus_max_busnr -EXPORT_SYMBOL_GPL vmlinux 0xb35d79fe pktgen_xfrm_outer_mode_output -EXPORT_SYMBOL_GPL vmlinux 0xb3639689 devm_clk_bulk_get -EXPORT_SYMBOL_GPL vmlinux 0xb36cf649 pci_bus_resource_n -EXPORT_SYMBOL_GPL vmlinux 0xb36e4fb2 __account_locked_vm -EXPORT_SYMBOL_GPL vmlinux 0xb36f0be6 fwnode_graph_get_remote_endpoint -EXPORT_SYMBOL_GPL vmlinux 0xb37b4dac xen_xenbus_fops -EXPORT_SYMBOL_GPL vmlinux 0xb3857678 is_current_mnt_ns -EXPORT_SYMBOL_GPL vmlinux 0xb38bd15d __SCK__tp_func_rpm_suspend -EXPORT_SYMBOL_GPL vmlinux 0xb3903115 aead_init_geniv -EXPORT_SYMBOL_GPL vmlinux 0xb39c62e3 devm_ioremap_uc -EXPORT_SYMBOL_GPL vmlinux 0xb3b1f3cd sk_set_peek_off -EXPORT_SYMBOL_GPL vmlinux 0xb3ccf1c0 hrtimer_init_sleeper -EXPORT_SYMBOL_GPL vmlinux 0xb3f270a1 wakeup_sources_walk_start -EXPORT_SYMBOL_GPL vmlinux 0xb3f5d371 cpuidle_register -EXPORT_SYMBOL_GPL vmlinux 0xb3f97c31 set_pages_array_wt -EXPORT_SYMBOL_GPL vmlinux 0xb40f77ca usb_driver_claim_interface -EXPORT_SYMBOL_GPL vmlinux 0xb416ae62 spi_controller_dma_map_mem_op_data -EXPORT_SYMBOL_GPL vmlinux 0xb41a1cf5 ata_cable_ignore -EXPORT_SYMBOL_GPL vmlinux 0xb42c23cd max8997_bulk_write -EXPORT_SYMBOL_GPL vmlinux 0xb437fdf1 devm_mbox_controller_unregister -EXPORT_SYMBOL_GPL vmlinux 0xb43f9365 ktime_get -EXPORT_SYMBOL_GPL vmlinux 0xb4429b64 acpi_dev_resource_ext_address_space -EXPORT_SYMBOL_GPL vmlinux 0xb44bf493 serial8250_rx_chars -EXPORT_SYMBOL_GPL vmlinux 0xb44e18ea audit_enabled -EXPORT_SYMBOL_GPL vmlinux 0xb458ee73 gpiod_set_raw_array_value -EXPORT_SYMBOL_GPL vmlinux 0xb46e4949 tpm_pm_resume -EXPORT_SYMBOL_GPL vmlinux 0xb47d09a7 software_node_fwnode -EXPORT_SYMBOL_GPL vmlinux 0xb4839a3c ip_local_out -EXPORT_SYMBOL_GPL vmlinux 0xb48f0638 software_node_register -EXPORT_SYMBOL_GPL vmlinux 0xb498ff1b pci_epc_add_epf -EXPORT_SYMBOL_GPL vmlinux 0xb4a16c11 btree_grim_visitor -EXPORT_SYMBOL_GPL vmlinux 0xb4ad3a97 ftrace_set_filter -EXPORT_SYMBOL_GPL vmlinux 0xb4b75cf7 pm_clk_init -EXPORT_SYMBOL_GPL vmlinux 0xb4b97c90 pvclock_gtod_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0xb4c1dfe3 devm_gpiod_get -EXPORT_SYMBOL_GPL vmlinux 0xb4cbc213 pci_iomap_wc_range -EXPORT_SYMBOL_GPL vmlinux 0xb4db8b25 pm_runtime_forbid -EXPORT_SYMBOL_GPL vmlinux 0xb4e946bf __traceiter_br_fdb_add -EXPORT_SYMBOL_GPL vmlinux 0xb4ea7cf7 kgdb_connected -EXPORT_SYMBOL_GPL vmlinux 0xb4eda0da ring_buffer_event_length -EXPORT_SYMBOL_GPL vmlinux 0xb4ef2a25 acpi_dev_gpio_irq_get_by -EXPORT_SYMBOL_GPL vmlinux 0xb501b2df nd_cmd_dimm_desc -EXPORT_SYMBOL_GPL vmlinux 0xb505df08 driver_create_file -EXPORT_SYMBOL_GPL vmlinux 0xb5086cdc __SCK__tp_func_unmap -EXPORT_SYMBOL_GPL vmlinux 0xb50c906f rio_mport_write_config_8 -EXPORT_SYMBOL_GPL vmlinux 0xb512f518 crypto_stats_kpp_generate_public_key -EXPORT_SYMBOL_GPL vmlinux 0xb51fbd64 edac_op_state -EXPORT_SYMBOL_GPL vmlinux 0xb5218667 call_switchdev_blocking_notifiers -EXPORT_SYMBOL_GPL vmlinux 0xb528a568 alarm_forward -EXPORT_SYMBOL_GPL vmlinux 0xb5410a48 icc_node_add -EXPORT_SYMBOL_GPL vmlinux 0xb547cba1 regulator_unregister_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0xb54ef1ef ata_dummy_port_info -EXPORT_SYMBOL_GPL vmlinux 0xb585ace8 spi_res_alloc -EXPORT_SYMBOL_GPL vmlinux 0xb5879dd2 tcp_get_info -EXPORT_SYMBOL_GPL vmlinux 0xb592477a tty_buffer_request_room -EXPORT_SYMBOL_GPL vmlinux 0xb5a83e35 gnttab_setup_auto_xlat_frames -EXPORT_SYMBOL_GPL vmlinux 0xb5a8c226 acpi_gsi_to_irq -EXPORT_SYMBOL_GPL vmlinux 0xb5cb86fc __tcp_send_ack -EXPORT_SYMBOL_GPL vmlinux 0xb5e660af dw_pcie_read_dbi -EXPORT_SYMBOL_GPL vmlinux 0xb5ea53eb bpf_offload_dev_netdev_unregister -EXPORT_SYMBOL_GPL vmlinux 0xb6009ff7 mmc_crypto_prepare_req -EXPORT_SYMBOL_GPL vmlinux 0xb60b01d0 usb_deregister_device_driver -EXPORT_SYMBOL_GPL vmlinux 0xb60eda7b ata_pci_bmdma_init_one -EXPORT_SYMBOL_GPL vmlinux 0xb616c480 usb_register_dev -EXPORT_SYMBOL_GPL vmlinux 0xb621f39c trace_get_event_file -EXPORT_SYMBOL_GPL vmlinux 0xb6261484 register_die_notifier -EXPORT_SYMBOL_GPL vmlinux 0xb6349d6d crypto_register_rngs -EXPORT_SYMBOL_GPL vmlinux 0xb6357e53 cpuidle_enable_device -EXPORT_SYMBOL_GPL vmlinux 0xb6410433 mpi_addm -EXPORT_SYMBOL_GPL vmlinux 0xb655f91b pci_epc_get_next_free_bar -EXPORT_SYMBOL_GPL vmlinux 0xb6787346 sfp_unregister_socket -EXPORT_SYMBOL_GPL vmlinux 0xb686b803 gpiod_get_array -EXPORT_SYMBOL_GPL vmlinux 0xb6888188 klp_shadow_get_or_alloc -EXPORT_SYMBOL_GPL vmlinux 0xb6a15eed scsi_dh_activate -EXPORT_SYMBOL_GPL vmlinux 0xb6b5c082 tcp_set_keepalive -EXPORT_SYMBOL_GPL vmlinux 0xb6be190b phy_select_page -EXPORT_SYMBOL_GPL vmlinux 0xb6c5b54a irq_chip_eoi_parent -EXPORT_SYMBOL_GPL vmlinux 0xb6c5e614 acpi_processor_evaluate_cst -EXPORT_SYMBOL_GPL vmlinux 0xb6da0b01 dev_pm_opp_find_freq_floor -EXPORT_SYMBOL_GPL vmlinux 0xb6e25d27 pci_vfs_assigned -EXPORT_SYMBOL_GPL vmlinux 0xb6e6d99d clk_disable -EXPORT_SYMBOL_GPL vmlinux 0xb6eabe37 register_kprobes -EXPORT_SYMBOL_GPL vmlinux 0xb6f4b394 __udp_gso_segment -EXPORT_SYMBOL_GPL vmlinux 0xb707215a icc_put -EXPORT_SYMBOL_GPL vmlinux 0xb70fafa2 gnttab_unmap_refs_async -EXPORT_SYMBOL_GPL vmlinux 0xb71e3bdd devm_gpiod_put -EXPORT_SYMBOL_GPL vmlinux 0xb720fc4e power_supply_get_property_from_supplier -EXPORT_SYMBOL_GPL vmlinux 0xb729e0dd bpf_trace_run11 -EXPORT_SYMBOL_GPL vmlinux 0xb7329c06 clk_set_phase -EXPORT_SYMBOL_GPL vmlinux 0xb732e9a4 unregister_ftrace_function -EXPORT_SYMBOL_GPL vmlinux 0xb73713d7 nvmem_add_cell_lookups -EXPORT_SYMBOL_GPL vmlinux 0xb75041d1 hv_stimer_legacy_init -EXPORT_SYMBOL_GPL vmlinux 0xb75a173d device_show_int -EXPORT_SYMBOL_GPL vmlinux 0xb760771b usb_ifnum_to_if -EXPORT_SYMBOL_GPL vmlinux 0xb761318b sev_active -EXPORT_SYMBOL_GPL vmlinux 0xb7627c1d _copy_mc_to_iter -EXPORT_SYMBOL_GPL vmlinux 0xb7672cf9 spi_controller_dma_unmap_mem_op_data -EXPORT_SYMBOL_GPL vmlinux 0xb76fa0ab regmap_raw_write -EXPORT_SYMBOL_GPL vmlinux 0xb77002de klist_iter_exit -EXPORT_SYMBOL_GPL vmlinux 0xb7741d6c regmap_field_alloc -EXPORT_SYMBOL_GPL vmlinux 0xb7787420 dma_async_device_channel_unregister -EXPORT_SYMBOL_GPL vmlinux 0xb77b08df edac_pci_handle_pe -EXPORT_SYMBOL_GPL vmlinux 0xb783c005 pcc_mbox_free_channel -EXPORT_SYMBOL_GPL vmlinux 0xb79df84c sdio_enable_func -EXPORT_SYMBOL_GPL vmlinux 0xb7a120f3 vfio_group_get_external_user -EXPORT_SYMBOL_GPL vmlinux 0xb7a387fc synchronize_rcu_tasks_rude -EXPORT_SYMBOL_GPL vmlinux 0xb7b16c0c virtqueue_add_outbuf -EXPORT_SYMBOL_GPL vmlinux 0xb7c69a63 unregister_vmap_purge_notifier -EXPORT_SYMBOL_GPL vmlinux 0xb7d22c6d tpm1_getcap -EXPORT_SYMBOL_GPL vmlinux 0xb7d7c12e hpet_set_alarm_time -EXPORT_SYMBOL_GPL vmlinux 0xb7dc5e54 of_phy_provider_unregister -EXPORT_SYMBOL_GPL vmlinux 0xb7ec4fb3 __wake_up_locked_key -EXPORT_SYMBOL_GPL vmlinux 0xb7f990e9 rht_bucket_nested -EXPORT_SYMBOL_GPL vmlinux 0xb7fbff95 kernfs_path_from_node -EXPORT_SYMBOL_GPL vmlinux 0xb8022f49 blk_steal_bios -EXPORT_SYMBOL_GPL vmlinux 0xb8104464 skb_to_sgvec -EXPORT_SYMBOL_GPL vmlinux 0xb811bccb sdio_readsb -EXPORT_SYMBOL_GPL vmlinux 0xb8136359 net_rwsem -EXPORT_SYMBOL_GPL vmlinux 0xb8204f7f __SCK__tp_func_sched_util_est_cfs_tp -EXPORT_SYMBOL_GPL vmlinux 0xb843f92a netlink_add_tap -EXPORT_SYMBOL_GPL vmlinux 0xb847585f is_hash_blacklisted -EXPORT_SYMBOL_GPL vmlinux 0xb84e476e key_type_user -EXPORT_SYMBOL_GPL vmlinux 0xb851e1f9 devm_hwrng_register -EXPORT_SYMBOL_GPL vmlinux 0xb860eea3 phy_configure -EXPORT_SYMBOL_GPL vmlinux 0xb8618afe scsi_free_sgtables -EXPORT_SYMBOL_GPL vmlinux 0xb869bcdc hsu_dma_get_status -EXPORT_SYMBOL_GPL vmlinux 0xb87f40fe cppc_set_enable -EXPORT_SYMBOL_GPL vmlinux 0xb88a358b power_supply_unregister -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 0xb8b2b1f7 mce_register_decode_chain -EXPORT_SYMBOL_GPL vmlinux 0xb8cd3a7f nf_logger_put -EXPORT_SYMBOL_GPL vmlinux 0xb8d67950 wakeup_source_remove -EXPORT_SYMBOL_GPL vmlinux 0xb8d7b4a6 ncsi_stop_dev -EXPORT_SYMBOL_GPL vmlinux 0xb8deb7de platform_bus -EXPORT_SYMBOL_GPL vmlinux 0xb8fe01a4 br_fdb_test_addr_hook -EXPORT_SYMBOL_GPL vmlinux 0xb90b85d3 __tracepoint_br_fdb_external_learn_add -EXPORT_SYMBOL_GPL vmlinux 0xb90bd307 gpiochip_line_is_valid -EXPORT_SYMBOL_GPL vmlinux 0xb912560d static_key_disable -EXPORT_SYMBOL_GPL vmlinux 0xb9681621 xdp_do_flush -EXPORT_SYMBOL_GPL vmlinux 0xb96fbc9a serial8250_rpm_put -EXPORT_SYMBOL_GPL vmlinux 0xb9852d11 __traceiter_mc_event -EXPORT_SYMBOL_GPL vmlinux 0xb98809cd fib_alias_hw_flags_set -EXPORT_SYMBOL_GPL vmlinux 0xb98bb315 phy_gbit_fibre_features -EXPORT_SYMBOL_GPL vmlinux 0xb98fb684 __netif_set_xps_queue -EXPORT_SYMBOL_GPL vmlinux 0xb99d6e72 _copy_from_iter_flushcache -EXPORT_SYMBOL_GPL vmlinux 0xb9b9df41 usb_amd_dev_put -EXPORT_SYMBOL_GPL vmlinux 0xb9ba15dc put_device -EXPORT_SYMBOL_GPL vmlinux 0xb9bb879d da9052_disable_irq_nosync -EXPORT_SYMBOL_GPL vmlinux 0xb9c16f51 hv_max_vp_index -EXPORT_SYMBOL_GPL vmlinux 0xb9c21d0a sata_lpm_ignore_phy_events -EXPORT_SYMBOL_GPL vmlinux 0xb9c425de register_syscore_ops -EXPORT_SYMBOL_GPL vmlinux 0xb9d025c9 llist_del_first -EXPORT_SYMBOL_GPL vmlinux 0xb9da71a0 irq_create_mapping_affinity -EXPORT_SYMBOL_GPL vmlinux 0xb9dc800b __trace_note_message -EXPORT_SYMBOL_GPL vmlinux 0xb9edf1a2 i2c_new_scanned_device -EXPORT_SYMBOL_GPL vmlinux 0xb9f116e7 debugfs_create_u8 -EXPORT_SYMBOL_GPL vmlinux 0xb9f2437e dev_pm_set_wake_irq -EXPORT_SYMBOL_GPL vmlinux 0xb9f36a89 nvdimm_has_flush -EXPORT_SYMBOL_GPL vmlinux 0xba01ec83 hv_stimer_global_cleanup -EXPORT_SYMBOL_GPL vmlinux 0xba045063 of_css -EXPORT_SYMBOL_GPL vmlinux 0xba057786 kernel_read_file_from_path_initns -EXPORT_SYMBOL_GPL vmlinux 0xba0c2eb2 __rio_local_write_config_16 -EXPORT_SYMBOL_GPL vmlinux 0xba1f2c34 mptcp_pm_get_add_addr_signal_max -EXPORT_SYMBOL_GPL vmlinux 0xba23dfd2 nvmem_cell_read_u64 -EXPORT_SYMBOL_GPL vmlinux 0xba24027f usb_amd_pt_check_port -EXPORT_SYMBOL_GPL vmlinux 0xba273b69 page_endio -EXPORT_SYMBOL_GPL vmlinux 0xba2b7f64 cpufreq_generic_get -EXPORT_SYMBOL_GPL vmlinux 0xba312ec1 usb_get_hcd -EXPORT_SYMBOL_GPL vmlinux 0xba550cb0 fib_rules_seq_read -EXPORT_SYMBOL_GPL vmlinux 0xba7bdc75 cdrom_multisession -EXPORT_SYMBOL_GPL vmlinux 0xba82f246 uv_bios_install_heap -EXPORT_SYMBOL_GPL vmlinux 0xba8433e1 clone_private_mount -EXPORT_SYMBOL_GPL vmlinux 0xba8eb3ca tcp_sendpage_locked -EXPORT_SYMBOL_GPL vmlinux 0xba9e3fce crypto_unregister_aead -EXPORT_SYMBOL_GPL vmlinux 0xbaad2524 sock_map_unhash -EXPORT_SYMBOL_GPL vmlinux 0xbab02ea6 extcon_set_state -EXPORT_SYMBOL_GPL vmlinux 0xbab4a08d fat_remove_entries -EXPORT_SYMBOL_GPL vmlinux 0xbab9a9f0 maxim_charger_currents -EXPORT_SYMBOL_GPL vmlinux 0xbac5e88f irq_domain_add_legacy -EXPORT_SYMBOL_GPL vmlinux 0xbacd8193 serdev_device_alloc -EXPORT_SYMBOL_GPL vmlinux 0xbaf22757 kvfree_call_rcu -EXPORT_SYMBOL_GPL vmlinux 0xbaf403a5 sk_clear_memalloc -EXPORT_SYMBOL_GPL vmlinux 0xbaf6850c fsnotify_wait_marks_destroyed -EXPORT_SYMBOL_GPL vmlinux 0xbaf9d785 __tss_limit_invalid -EXPORT_SYMBOL_GPL vmlinux 0xbafbbcde start_poll_synchronize_srcu -EXPORT_SYMBOL_GPL vmlinux 0xbb0ab47b debug_locks -EXPORT_SYMBOL_GPL vmlinux 0xbb0b25d2 register_xenbus_watch -EXPORT_SYMBOL_GPL vmlinux 0xbb379007 xhci_shutdown -EXPORT_SYMBOL_GPL vmlinux 0xbb523dfc of_pwm_xlate_with_flags -EXPORT_SYMBOL_GPL vmlinux 0xbb5598ce get_llc_id -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 0xbb78d8ab sdio_get_host_pm_caps -EXPORT_SYMBOL_GPL vmlinux 0xbb79c23e dbs_update -EXPORT_SYMBOL_GPL vmlinux 0xbb93eec5 ioasid_alloc -EXPORT_SYMBOL_GPL vmlinux 0xbb9cec96 __hwspin_unlock -EXPORT_SYMBOL_GPL vmlinux 0xbba0524d pci_user_read_config_dword -EXPORT_SYMBOL_GPL vmlinux 0xbba3451e regulator_suspend_disable -EXPORT_SYMBOL_GPL vmlinux 0xbbb485e8 sdio_readb -EXPORT_SYMBOL_GPL vmlinux 0xbbb98859 edid_info -EXPORT_SYMBOL_GPL vmlinux 0xbbbae040 regulator_is_enabled -EXPORT_SYMBOL_GPL vmlinux 0xbbd3f37d sock_diag_destroy -EXPORT_SYMBOL_GPL vmlinux 0xbbd5f7de crypto_lookup_template -EXPORT_SYMBOL_GPL vmlinux 0xbbe338ed pm_clk_add_notifier -EXPORT_SYMBOL_GPL vmlinux 0xbbe56404 sprint_OID -EXPORT_SYMBOL_GPL vmlinux 0xbbecd88b ata_sas_port_suspend -EXPORT_SYMBOL_GPL vmlinux 0xbbf3b534 mddev_init_writes_pending -EXPORT_SYMBOL_GPL vmlinux 0xbbf4dfbe phy_basic_t1_features -EXPORT_SYMBOL_GPL vmlinux 0xbbfbbefe phy_set_mode_ext -EXPORT_SYMBOL_GPL vmlinux 0xbbfe6585 nvdimm_provider_data -EXPORT_SYMBOL_GPL vmlinux 0xbc0b1b34 fib_nl_newrule -EXPORT_SYMBOL_GPL vmlinux 0xbc0fbcf6 devm_nvmem_cell_get -EXPORT_SYMBOL_GPL vmlinux 0xbc198649 md_run -EXPORT_SYMBOL_GPL vmlinux 0xbc1c422f __SCK__tp_func_pelt_irq_tp -EXPORT_SYMBOL_GPL vmlinux 0xbc1e7fb5 attribute_container_classdev_to_container -EXPORT_SYMBOL_GPL vmlinux 0xbc25b6b2 i2c_dw_prepare_clk -EXPORT_SYMBOL_GPL vmlinux 0xbc260168 netlink_has_listeners -EXPORT_SYMBOL_GPL vmlinux 0xbc2dd3a0 of_devfreq_cooling_register_power -EXPORT_SYMBOL_GPL vmlinux 0xbc3f2cb0 timecounter_cyc2time -EXPORT_SYMBOL_GPL vmlinux 0xbc444120 iommu_device_register -EXPORT_SYMBOL_GPL vmlinux 0xbc45c39c pci_check_and_unmask_intx -EXPORT_SYMBOL_GPL vmlinux 0xbc4e24bb copy_mc_to_kernel -EXPORT_SYMBOL_GPL vmlinux 0xbc53d678 add_swap_extent -EXPORT_SYMBOL_GPL vmlinux 0xbc60dc37 cpufreq_show_cpus -EXPORT_SYMBOL_GPL vmlinux 0xbc688d93 __intel_scu_ipc_register -EXPORT_SYMBOL_GPL vmlinux 0xbc6bec66 free_percpu_irq -EXPORT_SYMBOL_GPL vmlinux 0xbc6c9d05 pm_genpd_add_device -EXPORT_SYMBOL_GPL vmlinux 0xbc737a90 pm_wakeup_dev_event -EXPORT_SYMBOL_GPL vmlinux 0xbc789988 devres_remove_group -EXPORT_SYMBOL_GPL vmlinux 0xbc7c2a3c blk_mq_virtio_map_queues -EXPORT_SYMBOL_GPL vmlinux 0xbc938447 fwnode_find_reference -EXPORT_SYMBOL_GPL vmlinux 0xbc94a0d7 sata_link_scr_lpm -EXPORT_SYMBOL_GPL vmlinux 0xbca52470 tcp_twsk_unique -EXPORT_SYMBOL_GPL vmlinux 0xbcb838a1 amd_flush_garts -EXPORT_SYMBOL_GPL vmlinux 0xbcc15e75 ktime_get_coarse_with_offset -EXPORT_SYMBOL_GPL vmlinux 0xbcc80da0 rio_request_outb_mbox -EXPORT_SYMBOL_GPL vmlinux 0xbccfd4d8 register_oldmem_pfn_is_ram -EXPORT_SYMBOL_GPL vmlinux 0xbcdd5b99 iommu_group_set_name -EXPORT_SYMBOL_GPL vmlinux 0xbcdf5ebe spi_get_next_queued_message -EXPORT_SYMBOL_GPL vmlinux 0xbceb3952 xhci_drop_endpoint -EXPORT_SYMBOL_GPL vmlinux 0xbcf1f0e6 zs_create_pool -EXPORT_SYMBOL_GPL vmlinux 0xbd147541 to_nd_region -EXPORT_SYMBOL_GPL vmlinux 0xbd1f37f9 __ata_change_queue_depth -EXPORT_SYMBOL_GPL vmlinux 0xbd3c3f51 bio_start_io_acct_time -EXPORT_SYMBOL_GPL vmlinux 0xbd3fe1e3 disable_hardirq -EXPORT_SYMBOL_GPL vmlinux 0xbd468045 dw_pcie_write_dbi -EXPORT_SYMBOL_GPL vmlinux 0xbd47f268 unwind_next_frame -EXPORT_SYMBOL_GPL vmlinux 0xbd57177a iommu_fwspec_add_ids -EXPORT_SYMBOL_GPL vmlinux 0xbd6f85d3 blkcg_root_css -EXPORT_SYMBOL_GPL vmlinux 0xbd7aaaee add_memory -EXPORT_SYMBOL_GPL vmlinux 0xbd84fc13 srcu_barrier -EXPORT_SYMBOL_GPL vmlinux 0xbd99e873 __SCT__tp_func_cpu_idle -EXPORT_SYMBOL_GPL vmlinux 0xbda5298e dev_pm_qos_expose_latency_limit -EXPORT_SYMBOL_GPL vmlinux 0xbda5a14a gov_attr_set_put -EXPORT_SYMBOL_GPL vmlinux 0xbdae8b98 i2c_recover_bus -EXPORT_SYMBOL_GPL vmlinux 0xbdb2217d hv_is_isolation_supported -EXPORT_SYMBOL_GPL vmlinux 0xbdb2dfd5 uv_bios_reserved_page_pa -EXPORT_SYMBOL_GPL vmlinux 0xbdb72b71 kernfs_put -EXPORT_SYMBOL_GPL vmlinux 0xbdbc6955 device_create_managed_software_node -EXPORT_SYMBOL_GPL vmlinux 0xbdc79a35 platform_bus_type -EXPORT_SYMBOL_GPL vmlinux 0xbdc8f613 blk_mq_debugfs_rq_show -EXPORT_SYMBOL_GPL vmlinux 0xbdeddb4d phy_speed_down -EXPORT_SYMBOL_GPL vmlinux 0xbdeee9c5 vfio_device_put -EXPORT_SYMBOL_GPL vmlinux 0xbdfe7a07 mmu_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0xbe13d4c9 __wake_up_locked_key_bookmark -EXPORT_SYMBOL_GPL vmlinux 0xbe18ad1e regulator_list_voltage_table -EXPORT_SYMBOL_GPL vmlinux 0xbe2399cf acpi_unbind_one -EXPORT_SYMBOL_GPL vmlinux 0xbe26ed1c dma_get_slave_caps -EXPORT_SYMBOL_GPL vmlinux 0xbe30723b dm_hold -EXPORT_SYMBOL_GPL vmlinux 0xbe312d14 tpm2_get_tpm_pt -EXPORT_SYMBOL_GPL vmlinux 0xbe4e3ae2 gpiod_put -EXPORT_SYMBOL_GPL vmlinux 0xbe568fcd led_update_brightness -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 0xbe70cc2b dev_pm_opp_detach_genpd -EXPORT_SYMBOL_GPL vmlinux 0xbe744257 efi_get_embedded_fw -EXPORT_SYMBOL_GPL vmlinux 0xbe7823cd pci_enable_pasid -EXPORT_SYMBOL_GPL vmlinux 0xbe8916ee device_property_read_string -EXPORT_SYMBOL_GPL vmlinux 0xbe99b968 phy_create -EXPORT_SYMBOL_GPL vmlinux 0xbe9a83d5 dw_pcie_write -EXPORT_SYMBOL_GPL vmlinux 0xbe9fbef9 devm_extcon_dev_free -EXPORT_SYMBOL_GPL vmlinux 0xbea5fa78 devm_memremap_pages -EXPORT_SYMBOL_GPL vmlinux 0xbea5ff1e static_key_initialized -EXPORT_SYMBOL_GPL vmlinux 0xbec66c3a __apei_exec_run -EXPORT_SYMBOL_GPL vmlinux 0xbef09416 device_property_read_u64_array -EXPORT_SYMBOL_GPL vmlinux 0xbef0bba3 device_destroy -EXPORT_SYMBOL_GPL vmlinux 0xbf028e03 gpiochip_enable_irq -EXPORT_SYMBOL_GPL vmlinux 0xbf037193 input_ff_event -EXPORT_SYMBOL_GPL vmlinux 0xbf041102 register_vt_notifier -EXPORT_SYMBOL_GPL vmlinux 0xbf06a9b3 genphy_c45_check_and_restart_aneg -EXPORT_SYMBOL_GPL vmlinux 0xbf0f102c __regmap_init_i2c -EXPORT_SYMBOL_GPL vmlinux 0xbf165dec __SCT__tp_func_pelt_se_tp -EXPORT_SYMBOL_GPL vmlinux 0xbf1eb531 pci_find_vsec_capability -EXPORT_SYMBOL_GPL vmlinux 0xbf4a47d2 virtio_break_device -EXPORT_SYMBOL_GPL vmlinux 0xbf53611e dev_coredumpv -EXPORT_SYMBOL_GPL vmlinux 0xbf556649 fscrypt_get_symlink -EXPORT_SYMBOL_GPL vmlinux 0xbf5c7315 pci_hp_deregister -EXPORT_SYMBOL_GPL vmlinux 0xbf7079de devlink_port_unregister -EXPORT_SYMBOL_GPL vmlinux 0xbf81a1cc iomap_bmap -EXPORT_SYMBOL_GPL vmlinux 0xbfa2ae85 fwnode_count_parents -EXPORT_SYMBOL_GPL vmlinux 0xbfb0d145 fat_fill_super -EXPORT_SYMBOL_GPL vmlinux 0xbfb55f4d gpiod_unexport -EXPORT_SYMBOL_GPL vmlinux 0xbfbc5434 pciserial_resume_ports -EXPORT_SYMBOL_GPL vmlinux 0xbfd7016a pernet_ops_rwsem -EXPORT_SYMBOL_GPL vmlinux 0xbfdee896 __SCK__tp_func_block_unplug -EXPORT_SYMBOL_GPL vmlinux 0xbfe5616d tick_broadcast_oneshot_control -EXPORT_SYMBOL_GPL vmlinux 0xbfed2cd9 __wait_rcu_gp -EXPORT_SYMBOL_GPL vmlinux 0xbfeed33a wm831x_bulk_read -EXPORT_SYMBOL_GPL vmlinux 0xc0078b37 acpi_dev_get_memory_resources -EXPORT_SYMBOL_GPL vmlinux 0xc00c169f register_virtio_device -EXPORT_SYMBOL_GPL vmlinux 0xc00dfa4a virtqueue_get_vring -EXPORT_SYMBOL_GPL vmlinux 0xc0165d54 scsi_build_sense -EXPORT_SYMBOL_GPL vmlinux 0xc03c8fd4 get_task_pid -EXPORT_SYMBOL_GPL vmlinux 0xc03d4adb virtqueue_get_vring_size -EXPORT_SYMBOL_GPL vmlinux 0xc03e668a btree_remove -EXPORT_SYMBOL_GPL vmlinux 0xc0579cc2 fwnode_property_read_u8_array -EXPORT_SYMBOL_GPL vmlinux 0xc05f7cee handle_level_irq -EXPORT_SYMBOL_GPL vmlinux 0xc08bbce6 irq_get_percpu_devid_partition -EXPORT_SYMBOL_GPL vmlinux 0xc08ceb54 dax_iomap_rw -EXPORT_SYMBOL_GPL vmlinux 0xc090c376 net_selftest_get_strings -EXPORT_SYMBOL_GPL vmlinux 0xc09a5eff kstrdup_quotable_file -EXPORT_SYMBOL_GPL vmlinux 0xc09e9d85 spi_split_transfers_maxsize -EXPORT_SYMBOL_GPL vmlinux 0xc0a0e1d1 pci_device_is_present -EXPORT_SYMBOL_GPL vmlinux 0xc0a1e770 virtqueue_add_sgs -EXPORT_SYMBOL_GPL vmlinux 0xc0a96e14 rcu_gp_is_expedited -EXPORT_SYMBOL_GPL vmlinux 0xc0af78b7 gpiochip_irqchip_irq_valid -EXPORT_SYMBOL_GPL vmlinux 0xc0d697e5 fscrypt_symlink_getattr -EXPORT_SYMBOL_GPL vmlinux 0xc0d868ec pci_max_pasids -EXPORT_SYMBOL_GPL vmlinux 0xc0dcb59e edac_layer_name -EXPORT_SYMBOL_GPL vmlinux 0xc0f0458a ip_tunnel_unneed_metadata -EXPORT_SYMBOL_GPL vmlinux 0xc0f27d5d xhci_reset_bandwidth -EXPORT_SYMBOL_GPL vmlinux 0xc0f92390 irq_create_of_mapping -EXPORT_SYMBOL_GPL vmlinux 0xc101707b nl_table_lock -EXPORT_SYMBOL_GPL vmlinux 0xc101b306 thermal_zone_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0xc1086e0c sysrq_toggle_support -EXPORT_SYMBOL_GPL vmlinux 0xc10b2449 clk_hw_round_rate -EXPORT_SYMBOL_GPL vmlinux 0xc10fddb8 name_to_dev_t -EXPORT_SYMBOL_GPL vmlinux 0xc126f306 serial8250_rpm_get -EXPORT_SYMBOL_GPL vmlinux 0xc129a040 nvdimm_badblocks_populate -EXPORT_SYMBOL_GPL vmlinux 0xc1389435 crypto_mod_put -EXPORT_SYMBOL_GPL vmlinux 0xc14a44ca devm_gpiod_put_array -EXPORT_SYMBOL_GPL vmlinux 0xc1743430 cpuidle_disable_device -EXPORT_SYMBOL_GPL vmlinux 0xc17515d7 usb_hcds_loaded -EXPORT_SYMBOL_GPL vmlinux 0xc18450f1 dev_pm_genpd_remove_notifier -EXPORT_SYMBOL_GPL vmlinux 0xc18cdf36 amd_df_indirect_read -EXPORT_SYMBOL_GPL vmlinux 0xc1a62f46 crypto_alloc_akcipher -EXPORT_SYMBOL_GPL vmlinux 0xc1a9d700 iomap_writepages -EXPORT_SYMBOL_GPL vmlinux 0xc1bcfe14 __tracepoint_rpm_suspend -EXPORT_SYMBOL_GPL vmlinux 0xc1d989c5 vfio_external_check_extension -EXPORT_SYMBOL_GPL vmlinux 0xc1e3d7bc __udp_enqueue_schedule_skb -EXPORT_SYMBOL_GPL vmlinux 0xc1e51bab crypto_larval_alloc -EXPORT_SYMBOL_GPL vmlinux 0xc2033d9f amd_get_highest_perf -EXPORT_SYMBOL_GPL vmlinux 0xc210ca32 __mnt_is_readonly -EXPORT_SYMBOL_GPL vmlinux 0xc2134ee0 ata_qc_complete -EXPORT_SYMBOL_GPL vmlinux 0xc2298f04 usb_autopm_get_interface_async -EXPORT_SYMBOL_GPL vmlinux 0xc229a59f spi_bus_lock -EXPORT_SYMBOL_GPL vmlinux 0xc22a3091 vm_unmap_aliases -EXPORT_SYMBOL_GPL vmlinux 0xc23601c1 __SCT__tp_func_pelt_cfs_tp -EXPORT_SYMBOL_GPL vmlinux 0xc2474712 sk_attach_filter -EXPORT_SYMBOL_GPL vmlinux 0xc25b8971 hv_remove_crash_handler -EXPORT_SYMBOL_GPL vmlinux 0xc261fb77 cpufreq_frequency_table_get_index -EXPORT_SYMBOL_GPL vmlinux 0xc267d307 adp5520_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0xc2692173 wakeup_sources_read_lock -EXPORT_SYMBOL_GPL vmlinux 0xc274bc16 usb_anchor_resume_wakeups -EXPORT_SYMBOL_GPL vmlinux 0xc2848cbb perf_aux_output_skip -EXPORT_SYMBOL_GPL vmlinux 0xc285e4bd ata_sas_queuecmd -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 0xc29bc141 pci_assign_unassigned_bridge_resources -EXPORT_SYMBOL_GPL vmlinux 0xc29c4af8 icc_node_del -EXPORT_SYMBOL_GPL vmlinux 0xc2a3e570 errata -EXPORT_SYMBOL_GPL vmlinux 0xc2a3fe7d usb_hcd_pci_pm_ops -EXPORT_SYMBOL_GPL vmlinux 0xc2a814db tcp_memory_pressure -EXPORT_SYMBOL_GPL vmlinux 0xc2c1c427 perf_event_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0xc2cb6a84 led_blink_set -EXPORT_SYMBOL_GPL vmlinux 0xc2cf4e6a smp_ops -EXPORT_SYMBOL_GPL vmlinux 0xc2de27ca hest_disable -EXPORT_SYMBOL_GPL vmlinux 0xc2e9dbc8 dm_internal_resume -EXPORT_SYMBOL_GPL vmlinux 0xc2f01ad4 devlink_sb_unregister -EXPORT_SYMBOL_GPL vmlinux 0xc2fb483f __SCT__tp_func_tcp_bad_csum -EXPORT_SYMBOL_GPL vmlinux 0xc2fe2fe0 vfio_register_iommu_driver -EXPORT_SYMBOL_GPL vmlinux 0xc30b0b01 dev_pm_genpd_set_next_wakeup -EXPORT_SYMBOL_GPL vmlinux 0xc3329c64 apic -EXPORT_SYMBOL_GPL vmlinux 0xc341ae6d zs_map_object -EXPORT_SYMBOL_GPL vmlinux 0xc34e3fb9 pci_epc_set_msix -EXPORT_SYMBOL_GPL vmlinux 0xc3708747 trace_vprintk -EXPORT_SYMBOL_GPL vmlinux 0xc3805cd1 fs_ftype_to_dtype -EXPORT_SYMBOL_GPL vmlinux 0xc3828c4b iommu_detach_group -EXPORT_SYMBOL_GPL vmlinux 0xc397b3c3 pci_ignore_hotplug -EXPORT_SYMBOL_GPL vmlinux 0xc3afaedd unix_inq_len -EXPORT_SYMBOL_GPL vmlinux 0xc3b05c7a crypto_enqueue_request_head -EXPORT_SYMBOL_GPL vmlinux 0xc3b95a8d platform_msi_domain_free_irqs -EXPORT_SYMBOL_GPL vmlinux 0xc3c48f11 skb_gso_validate_network_len -EXPORT_SYMBOL_GPL vmlinux 0xc3c4c6cc hash_algo_name -EXPORT_SYMBOL_GPL vmlinux 0xc3d18195 __percpu_init_rwsem -EXPORT_SYMBOL_GPL vmlinux 0xc3d7377f pci_find_host_bridge -EXPORT_SYMBOL_GPL vmlinux 0xc3d9df17 gnttab_unmap_refs_sync -EXPORT_SYMBOL_GPL vmlinux 0xc3ddaddc ata_sff_drain_fifo -EXPORT_SYMBOL_GPL vmlinux 0xc3ddff2b __devm_alloc_percpu -EXPORT_SYMBOL_GPL vmlinux 0xc3de65ff ring_buffer_bytes_cpu -EXPORT_SYMBOL_GPL vmlinux 0xc3dfab8c __traceiter_pelt_cfs_tp -EXPORT_SYMBOL_GPL vmlinux 0xc3e8b8ce rio_del_mport_pw_handler -EXPORT_SYMBOL_GPL vmlinux 0xc3e8f25a max8997_read_reg -EXPORT_SYMBOL_GPL vmlinux 0xc3ea5305 iommu_default_passthrough -EXPORT_SYMBOL_GPL vmlinux 0xc41f3023 spi_slave_abort -EXPORT_SYMBOL_GPL vmlinux 0xc42210b5 phy_create_lookup -EXPORT_SYMBOL_GPL vmlinux 0xc426c51f klp_shadow_free_all -EXPORT_SYMBOL_GPL vmlinux 0xc428068d sata_deb_timing_long -EXPORT_SYMBOL_GPL vmlinux 0xc42a6ffa vchan_find_desc -EXPORT_SYMBOL_GPL vmlinux 0xc4383125 regmap_register_patch -EXPORT_SYMBOL_GPL vmlinux 0xc43e92b9 trace_seq_bprintf -EXPORT_SYMBOL_GPL vmlinux 0xc4408d9f pci_user_write_config_word -EXPORT_SYMBOL_GPL vmlinux 0xc44d26ca gpiochip_unlock_as_irq -EXPORT_SYMBOL_GPL vmlinux 0xc450cccd syscon_regmap_lookup_by_phandle -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 0xc466160a ping_close -EXPORT_SYMBOL_GPL vmlinux 0xc46e2aac pm_genpd_init -EXPORT_SYMBOL_GPL vmlinux 0xc471c67a twl4030_audio_disable_resource -EXPORT_SYMBOL_GPL vmlinux 0xc48b7ccf ata_mode_string -EXPORT_SYMBOL_GPL vmlinux 0xc4913442 vfio_group_put_external_user -EXPORT_SYMBOL_GPL vmlinux 0xc4929673 devm_device_remove_group -EXPORT_SYMBOL_GPL vmlinux 0xc4964a3f xenbus_map_ring_valloc -EXPORT_SYMBOL_GPL vmlinux 0xc49ce021 pci_load_saved_state -EXPORT_SYMBOL_GPL vmlinux 0xc4a31146 rdma_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0xc4a533ed devfreq_event_reset_event -EXPORT_SYMBOL_GPL vmlinux 0xc4a72936 trusted_tpm_send -EXPORT_SYMBOL_GPL vmlinux 0xc4ab2553 unregister_net_sysctl_table -EXPORT_SYMBOL_GPL vmlinux 0xc4b626df md_submit_discard_bio -EXPORT_SYMBOL_GPL vmlinux 0xc4cdedc6 cpuidle_get_driver -EXPORT_SYMBOL_GPL vmlinux 0xc4ce4ee8 skcipher_walk_aead_decrypt -EXPORT_SYMBOL_GPL vmlinux 0xc4d022cb __SCT__tp_func_napi_poll -EXPORT_SYMBOL_GPL vmlinux 0xc4d23228 udp_cmsg_send -EXPORT_SYMBOL_GPL vmlinux 0xc4d92264 tty_port_register_device_attr_serdev -EXPORT_SYMBOL_GPL vmlinux 0xc4eb73f0 devm_regulator_register_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0xc4effc00 bus_set_iommu -EXPORT_SYMBOL_GPL vmlinux 0xc4f0da12 ktime_get_with_offset -EXPORT_SYMBOL_GPL vmlinux 0xc4f14659 clk_register_mux_table -EXPORT_SYMBOL_GPL vmlinux 0xc4f5a7e2 btree_init_mempool -EXPORT_SYMBOL_GPL vmlinux 0xc50138fa wm8350_reg_write -EXPORT_SYMBOL_GPL vmlinux 0xc504476a btree_get_prev -EXPORT_SYMBOL_GPL vmlinux 0xc50dca33 __SCT__tp_func_neigh_cleanup_and_release -EXPORT_SYMBOL_GPL vmlinux 0xc512626a __supported_pte_mask -EXPORT_SYMBOL_GPL vmlinux 0xc521f41c serdev_device_write_flush -EXPORT_SYMBOL_GPL vmlinux 0xc53399d7 wait_on_page_writeback -EXPORT_SYMBOL_GPL vmlinux 0xc53c6576 dev_xdp_prog_count -EXPORT_SYMBOL_GPL vmlinux 0xc53ff241 devm_hwspin_lock_request -EXPORT_SYMBOL_GPL vmlinux 0xc544032c gpiochip_add_data_with_key -EXPORT_SYMBOL_GPL vmlinux 0xc5521574 powercap_unregister_control_type -EXPORT_SYMBOL_GPL vmlinux 0xc55b4da4 espintcp_push_skb -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 0xc56ae8a9 spi_mem_dirmap_destroy -EXPORT_SYMBOL_GPL vmlinux 0xc56f5015 pci_find_next_ext_capability -EXPORT_SYMBOL_GPL vmlinux 0xc574af8c dev_get_tstats64 -EXPORT_SYMBOL_GPL vmlinux 0xc575c737 debug_locks_off -EXPORT_SYMBOL_GPL vmlinux 0xc5777fca linear_range_get_selector_low_array -EXPORT_SYMBOL_GPL vmlinux 0xc57b4070 inet_hash -EXPORT_SYMBOL_GPL vmlinux 0xc57ca5e1 usb_hub_release_port -EXPORT_SYMBOL_GPL vmlinux 0xc57ea80c regulator_set_bypass_regmap -EXPORT_SYMBOL_GPL vmlinux 0xc58106fc crypto_shash_final -EXPORT_SYMBOL_GPL vmlinux 0xc58a3ee6 icc_node_destroy -EXPORT_SYMBOL_GPL vmlinux 0xc590b3f5 sata_link_hardreset -EXPORT_SYMBOL_GPL vmlinux 0xc59ec09a __tracepoint_sched_update_nr_running_tp -EXPORT_SYMBOL_GPL vmlinux 0xc5a5c678 uart_parse_earlycon -EXPORT_SYMBOL_GPL vmlinux 0xc5a5f04b device_release_driver -EXPORT_SYMBOL_GPL vmlinux 0xc5accea1 gpiochip_populate_parent_fwspec_fourcell -EXPORT_SYMBOL_GPL vmlinux 0xc5bd888d nvmem_cell_read_variable_le_u64 -EXPORT_SYMBOL_GPL vmlinux 0xc5c3ca8c tick_nohz_dep_clear_task -EXPORT_SYMBOL_GPL vmlinux 0xc604ab28 __SCT__tp_func_kfree_skb -EXPORT_SYMBOL_GPL vmlinux 0xc617f82c unregister_oom_notifier -EXPORT_SYMBOL_GPL vmlinux 0xc61dca5e crypto_spawn_tfm2 -EXPORT_SYMBOL_GPL vmlinux 0xc62e83e8 vfs_kern_mount -EXPORT_SYMBOL_GPL vmlinux 0xc63a081a create_signature -EXPORT_SYMBOL_GPL vmlinux 0xc641d436 pci_epf_create -EXPORT_SYMBOL_GPL vmlinux 0xc643fefb devlink_port_params_unregister -EXPORT_SYMBOL_GPL vmlinux 0xc64a4042 __alloc_pages_bulk -EXPORT_SYMBOL_GPL vmlinux 0xc64f784c tick_nohz_dep_set_task -EXPORT_SYMBOL_GPL vmlinux 0xc6530efd pm_genpd_add_subdomain -EXPORT_SYMBOL_GPL vmlinux 0xc6552451 debugfs_create_symlink -EXPORT_SYMBOL_GPL vmlinux 0xc6572a90 xenbus_read_unsigned -EXPORT_SYMBOL_GPL vmlinux 0xc6576b23 crypto_alloc_acomp -EXPORT_SYMBOL_GPL vmlinux 0xc66019cc xen_resume_notifier_unregister -EXPORT_SYMBOL_GPL vmlinux 0xc660b9e6 usb_role_switch_find_by_fwnode -EXPORT_SYMBOL_GPL vmlinux 0xc66b77b1 iommu_group_set_iommudata -EXPORT_SYMBOL_GPL vmlinux 0xc66de30a blk_mq_pci_map_queues -EXPORT_SYMBOL_GPL vmlinux 0xc6779093 ring_buffer_record_enable -EXPORT_SYMBOL_GPL vmlinux 0xc67cab09 rio_inb_pwrite_handler -EXPORT_SYMBOL_GPL vmlinux 0xc683da81 set_memory_decrypted -EXPORT_SYMBOL_GPL vmlinux 0xc697b0f7 nvmem_device_read -EXPORT_SYMBOL_GPL vmlinux 0xc6980175 inode_sb_list_add -EXPORT_SYMBOL_GPL vmlinux 0xc69b7ee5 zs_destroy_pool -EXPORT_SYMBOL_GPL vmlinux 0xc6a4a872 __clk_is_enabled -EXPORT_SYMBOL_GPL vmlinux 0xc6ac1d14 acomp_request_alloc -EXPORT_SYMBOL_GPL vmlinux 0xc6c224cb crypto_register_skciphers -EXPORT_SYMBOL_GPL vmlinux 0xc6c62ebd perf_get_aux -EXPORT_SYMBOL_GPL vmlinux 0xc6c658b6 crypto_ahash_setkey -EXPORT_SYMBOL_GPL vmlinux 0xc6c79a1e __tracepoint_rpm_return_int -EXPORT_SYMBOL_GPL vmlinux 0xc6d58027 serial8250_rx_dma_flush -EXPORT_SYMBOL_GPL vmlinux 0xc6db5220 fib_rules_dump -EXPORT_SYMBOL_GPL vmlinux 0xc6def34b gnttab_empty_grant_references -EXPORT_SYMBOL_GPL vmlinux 0xc6e14c3f i2c_dw_acpi_configure -EXPORT_SYMBOL_GPL vmlinux 0xc6e5bcf3 linear_range_get_selector_within -EXPORT_SYMBOL_GPL vmlinux 0xc6eec8f5 clk_divider_ops -EXPORT_SYMBOL_GPL vmlinux 0xc7061ef3 iova_cache_put -EXPORT_SYMBOL_GPL vmlinux 0xc71e64a9 snmp_get_cpu_field -EXPORT_SYMBOL_GPL vmlinux 0xc734baf0 regulator_set_soft_start_regmap -EXPORT_SYMBOL_GPL vmlinux 0xc73755ec sb800_prefetch -EXPORT_SYMBOL_GPL vmlinux 0xc73cebe6 ata_host_alloc_pinfo -EXPORT_SYMBOL_GPL vmlinux 0xc7429c98 tcp_is_ulp_esp -EXPORT_SYMBOL_GPL vmlinux 0xc751d379 ip6_flush_pending_frames -EXPORT_SYMBOL_GPL vmlinux 0xc7719623 vfs_getxattr -EXPORT_SYMBOL_GPL vmlinux 0xc79e1a7b power_supply_put_battery_info -EXPORT_SYMBOL_GPL vmlinux 0xc79eb5c1 dma_get_slave_channel -EXPORT_SYMBOL_GPL vmlinux 0xc7a1840e llist_add_batch -EXPORT_SYMBOL_GPL vmlinux 0xc7a2213a mmc_poll_for_busy -EXPORT_SYMBOL_GPL vmlinux 0xc7a7e770 clk_bulk_enable -EXPORT_SYMBOL_GPL vmlinux 0xc7adf071 pm_clk_add -EXPORT_SYMBOL_GPL vmlinux 0xc7b80e5b ping_rcv -EXPORT_SYMBOL_GPL vmlinux 0xc7b828e8 sdio_disable_func -EXPORT_SYMBOL_GPL vmlinux 0xc7c23ff0 xenbus_exists -EXPORT_SYMBOL_GPL vmlinux 0xc7cc80f0 ip6_datagram_send_ctl -EXPORT_SYMBOL_GPL vmlinux 0xc7cd4ea4 stop_critical_timings -EXPORT_SYMBOL_GPL vmlinux 0xc7e5a25d phy_exit -EXPORT_SYMBOL_GPL vmlinux 0xc7e64fc2 asn1_encode_integer -EXPORT_SYMBOL_GPL vmlinux 0xc7ee7966 fat_get_dotdot_entry -EXPORT_SYMBOL_GPL vmlinux 0xc7f38cf9 blk_lld_busy -EXPORT_SYMBOL_GPL vmlinux 0xc7fa4aa9 kobj_ns_drop -EXPORT_SYMBOL_GPL vmlinux 0xc7ff4ca5 sbitmap_queue_clear -EXPORT_SYMBOL_GPL vmlinux 0xc82c26a3 devfreq_get_devfreq_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0xc82c721f klist_remove -EXPORT_SYMBOL_GPL vmlinux 0xc82d2397 ip6_dst_lookup -EXPORT_SYMBOL_GPL vmlinux 0xc839c1ce trace_seq_to_user -EXPORT_SYMBOL_GPL vmlinux 0xc8411d63 iommu_attach_group -EXPORT_SYMBOL_GPL vmlinux 0xc8594d3d reset_control_acquire -EXPORT_SYMBOL_GPL vmlinux 0xc8671299 fsverity_verify_bio -EXPORT_SYMBOL_GPL vmlinux 0xc86b8ca6 iommu_unregister_device_fault_handler -EXPORT_SYMBOL_GPL vmlinux 0xc874d710 hv_unmap_ioapic_interrupt -EXPORT_SYMBOL_GPL vmlinux 0xc87779e6 balloon_page_dequeue -EXPORT_SYMBOL_GPL vmlinux 0xc87e487a sched_clock_idle_sleep_event -EXPORT_SYMBOL_GPL vmlinux 0xc882f489 vfio_pci_core_request -EXPORT_SYMBOL_GPL vmlinux 0xc88582bd shmem_truncate_range -EXPORT_SYMBOL_GPL vmlinux 0xc88cd1ce crypto_alloc_kpp -EXPORT_SYMBOL_GPL vmlinux 0xc88fe302 pci_disable_ats -EXPORT_SYMBOL_GPL vmlinux 0xc8964a20 device_set_of_node_from_dev -EXPORT_SYMBOL_GPL vmlinux 0xc8984d3c key_type_asymmetric -EXPORT_SYMBOL_GPL vmlinux 0xc8a55c6c pm_clk_remove_clk -EXPORT_SYMBOL_GPL vmlinux 0xc8b61e22 sch_frag_xmit_hook -EXPORT_SYMBOL_GPL vmlinux 0xc8bdf078 tpm_tis_remove -EXPORT_SYMBOL_GPL vmlinux 0xc8ddd5b5 kstrdup_quotable -EXPORT_SYMBOL_GPL vmlinux 0xc8de6025 dm_table_set_type -EXPORT_SYMBOL_GPL vmlinux 0xc8df774a inet_twsk_put -EXPORT_SYMBOL_GPL vmlinux 0xc91eb84b gpiod_set_consumer_name -EXPORT_SYMBOL_GPL vmlinux 0xc91ee1b5 __SCT__tp_func_mc_event -EXPORT_SYMBOL_GPL vmlinux 0xc91fdf58 percpu_ref_is_zero -EXPORT_SYMBOL_GPL vmlinux 0xc93ee1e7 usb_phy_roothub_init -EXPORT_SYMBOL_GPL vmlinux 0xc943117c dmaengine_unmap_put -EXPORT_SYMBOL_GPL vmlinux 0xc95535cf pci_common_swizzle -EXPORT_SYMBOL_GPL vmlinux 0xc9561772 fb_destroy_modelist -EXPORT_SYMBOL_GPL vmlinux 0xc9592f9c fwnode_property_match_string -EXPORT_SYMBOL_GPL vmlinux 0xc9641b48 visitor32 -EXPORT_SYMBOL_GPL vmlinux 0xc967ec1c tty_buffer_space_avail -EXPORT_SYMBOL_GPL vmlinux 0xc9754789 regulator_get_hardware_vsel_register -EXPORT_SYMBOL_GPL vmlinux 0xc9754852 extcon_set_property_capability -EXPORT_SYMBOL_GPL vmlinux 0xc97d1792 xdp_do_redirect -EXPORT_SYMBOL_GPL vmlinux 0xc9827693 __bpf_call_base -EXPORT_SYMBOL_GPL vmlinux 0xc9858ace srcu_init_notifier_head -EXPORT_SYMBOL_GPL vmlinux 0xc9a4b416 copy_to_user_nofault -EXPORT_SYMBOL_GPL vmlinux 0xc9a737d6 pci_check_and_mask_intx -EXPORT_SYMBOL_GPL vmlinux 0xc9a9b585 cpu_latency_qos_request_active -EXPORT_SYMBOL_GPL vmlinux 0xc9af46b7 iterate_mounts -EXPORT_SYMBOL_GPL vmlinux 0xc9b20d26 ata_link_offline -EXPORT_SYMBOL_GPL vmlinux 0xc9b41869 rtc_set_time -EXPORT_SYMBOL_GPL vmlinux 0xc9c01c18 intel_pinctrl_probe_by_hid -EXPORT_SYMBOL_GPL vmlinux 0xc9c3f176 hpet_register_irq_handler -EXPORT_SYMBOL_GPL vmlinux 0xc9ec4e21 free_percpu -EXPORT_SYMBOL_GPL vmlinux 0xc9f118d8 ata_qc_complete_multiple -EXPORT_SYMBOL_GPL vmlinux 0xc9fd634a usb_role_switch_put -EXPORT_SYMBOL_GPL vmlinux 0xca049cc4 driver_unregister -EXPORT_SYMBOL_GPL vmlinux 0xca04a8ec bpf_trace_run1 -EXPORT_SYMBOL_GPL vmlinux 0xca083f98 uart_try_toggle_sysrq -EXPORT_SYMBOL_GPL vmlinux 0xca15a3a8 acpi_gpiochip_free_interrupts -EXPORT_SYMBOL_GPL vmlinux 0xca193032 klist_add_head -EXPORT_SYMBOL_GPL vmlinux 0xca369432 inet6_lookup_listener -EXPORT_SYMBOL_GPL vmlinux 0xca3d5008 platform_device_register -EXPORT_SYMBOL_GPL vmlinux 0xca3ea984 vfio_iommu_group_get -EXPORT_SYMBOL_GPL vmlinux 0xca454a34 vt_get_leds -EXPORT_SYMBOL_GPL vmlinux 0xca467318 hibernation_set_ops -EXPORT_SYMBOL_GPL vmlinux 0xca5c30d4 pm_generic_restore_noirq -EXPORT_SYMBOL_GPL vmlinux 0xca644f8a devm_i2c_add_adapter -EXPORT_SYMBOL_GPL vmlinux 0xca73d770 ata_pci_device_suspend -EXPORT_SYMBOL_GPL vmlinux 0xca7d8764 kthread_freezable_should_stop -EXPORT_SYMBOL_GPL vmlinux 0xca824900 xhci_update_hub_device -EXPORT_SYMBOL_GPL vmlinux 0xca88cc19 rio_attach_device -EXPORT_SYMBOL_GPL vmlinux 0xca9a1d5e ring_buffer_free -EXPORT_SYMBOL_GPL vmlinux 0xcaa01e57 blk_mq_hctx_set_fq_lock_class -EXPORT_SYMBOL_GPL vmlinux 0xcaa68533 cpu_has_xfeatures -EXPORT_SYMBOL_GPL vmlinux 0xcaaa82cd fixed_phy_unregister -EXPORT_SYMBOL_GPL vmlinux 0xcab67c55 sk_msg_free_nocharge -EXPORT_SYMBOL_GPL vmlinux 0xcab850be xfrm_audit_state_add -EXPORT_SYMBOL_GPL vmlinux 0xcabe04de cpuidle_resume_and_unlock -EXPORT_SYMBOL_GPL vmlinux 0xcac2b9cb fwnode_handle_put -EXPORT_SYMBOL_GPL vmlinux 0xcac517cd __nvdimm_create -EXPORT_SYMBOL_GPL vmlinux 0xcad31a8c gpiod_to_chip -EXPORT_SYMBOL_GPL vmlinux 0xcad3a79a list_lru_del -EXPORT_SYMBOL_GPL vmlinux 0xcaec8348 vfs_setxattr -EXPORT_SYMBOL_GPL vmlinux 0xcaf0c7f1 seg6_do_srh_encap -EXPORT_SYMBOL_GPL vmlinux 0xcaf1d958 evtchn_get -EXPORT_SYMBOL_GPL vmlinux 0xcaf4780f raw_abort -EXPORT_SYMBOL_GPL vmlinux 0xcaf8e3e9 get_net_ns_by_pid -EXPORT_SYMBOL_GPL vmlinux 0xcb15eee9 sdhci_pci_get_data -EXPORT_SYMBOL_GPL vmlinux 0xcb160d11 xdp_build_skb_from_frame -EXPORT_SYMBOL_GPL vmlinux 0xcb1c8459 crypto_unregister_kpp -EXPORT_SYMBOL_GPL vmlinux 0xcb1d03e2 __dax_driver_register -EXPORT_SYMBOL_GPL vmlinux 0xcb1ed0a4 __fsnotify_parent -EXPORT_SYMBOL_GPL vmlinux 0xcb1f8b5c devlink_region_snapshot_id_get -EXPORT_SYMBOL_GPL vmlinux 0xcb26a55f genphy_c45_pma_suspend -EXPORT_SYMBOL_GPL vmlinux 0xcb28b077 pci_iomap_wc -EXPORT_SYMBOL_GPL vmlinux 0xcb2a4d89 debugfs_lookup -EXPORT_SYMBOL_GPL vmlinux 0xcb2bfe2b nvmem_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0xcb2f6be6 dma_resv_get_fences -EXPORT_SYMBOL_GPL vmlinux 0xcb34ac29 cros_ec_check_features -EXPORT_SYMBOL_GPL vmlinux 0xcb37d2e4 ping_seq_next -EXPORT_SYMBOL_GPL vmlinux 0xcb393961 cpufreq_enable_fast_switch -EXPORT_SYMBOL_GPL vmlinux 0xcb464e65 __devm_intel_scu_ipc_register -EXPORT_SYMBOL_GPL vmlinux 0xcb4e0ba1 dev_pm_opp_remove_all_dynamic -EXPORT_SYMBOL_GPL vmlinux 0xcb554d40 platform_device_put -EXPORT_SYMBOL_GPL vmlinux 0xcb561441 mem_dump_obj -EXPORT_SYMBOL_GPL vmlinux 0xcb67314b cpufreq_dbs_governor_limits -EXPORT_SYMBOL_GPL vmlinux 0xcb7fb980 ehci_handshake -EXPORT_SYMBOL_GPL vmlinux 0xcb88f0ec vchan_tx_desc_free -EXPORT_SYMBOL_GPL vmlinux 0xcb8a461c hv_stimer_legacy_cleanup -EXPORT_SYMBOL_GPL vmlinux 0xcb970751 stop_machine -EXPORT_SYMBOL_GPL vmlinux 0xcb9c2908 __inet_inherit_port -EXPORT_SYMBOL_GPL vmlinux 0xcbb46ca0 misc_cg_set_capacity -EXPORT_SYMBOL_GPL vmlinux 0xcbe56bc2 zs_get_total_pages -EXPORT_SYMBOL_GPL vmlinux 0xcc0c0e3a i2c_adapter_depth -EXPORT_SYMBOL_GPL vmlinux 0xcc1938cf acpi_subsys_runtime_resume -EXPORT_SYMBOL_GPL vmlinux 0xcc2dbfd8 irq_domain_check_msi_remap -EXPORT_SYMBOL_GPL vmlinux 0xcc3095a1 regulator_is_equal -EXPORT_SYMBOL_GPL vmlinux 0xcc312197 clk_mux_ops -EXPORT_SYMBOL_GPL vmlinux 0xcc36c4fb crypto_shash_alg_has_setkey -EXPORT_SYMBOL_GPL vmlinux 0xcc39c03e nvmem_unregister -EXPORT_SYMBOL_GPL vmlinux 0xcc3b4011 tpm_default_chip -EXPORT_SYMBOL_GPL vmlinux 0xcc3f1ce5 gpiochip_find -EXPORT_SYMBOL_GPL vmlinux 0xcc435621 transport_class_register -EXPORT_SYMBOL_GPL vmlinux 0xcc56650a skb_mpls_push -EXPORT_SYMBOL_GPL vmlinux 0xcc633ba1 subsys_system_register -EXPORT_SYMBOL_GPL vmlinux 0xcc7f26ca firmware_request_cache -EXPORT_SYMBOL_GPL vmlinux 0xcc9268fc hwpoison_filter_enable -EXPORT_SYMBOL_GPL vmlinux 0xcc935375 walk_iomem_res_desc -EXPORT_SYMBOL_GPL vmlinux 0xcc9e211f __irq_set_handler -EXPORT_SYMBOL_GPL vmlinux 0xccbd9234 perf_aux_output_begin -EXPORT_SYMBOL_GPL vmlinux 0xccc25180 od_register_powersave_bias_handler -EXPORT_SYMBOL_GPL vmlinux 0xcccfb2fa sata_deb_timing_hotplug -EXPORT_SYMBOL_GPL vmlinux 0xccd7dc6c dev_pm_qos_expose_flags -EXPORT_SYMBOL_GPL vmlinux 0xccd86806 ata_id_string -EXPORT_SYMBOL_GPL vmlinux 0xccdf4167 irq_gc_set_wake -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 0xcd1a8b4f spi_controller_suspend -EXPORT_SYMBOL_GPL vmlinux 0xcd1ef09b l3mdev_master_upper_ifindex_by_index_rcu -EXPORT_SYMBOL_GPL vmlinux 0xcd24e146 hash_digest_size -EXPORT_SYMBOL_GPL vmlinux 0xcd3e5c7c acpi_release_memory -EXPORT_SYMBOL_GPL vmlinux 0xcd4cd84c atomic_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0xcd61efc8 dev_pm_qos_update_user_latency_tolerance -EXPORT_SYMBOL_GPL vmlinux 0xcd6abee6 nvmem_cell_read_u16 -EXPORT_SYMBOL_GPL vmlinux 0xcd6f2dc9 nf_log_buf_add -EXPORT_SYMBOL_GPL vmlinux 0xcd7d720d genphy_c45_an_config_aneg -EXPORT_SYMBOL_GPL vmlinux 0xcd81a945 switch_fpu_return -EXPORT_SYMBOL_GPL vmlinux 0xcd893063 debugfs_create_file -EXPORT_SYMBOL_GPL vmlinux 0xcd8e8f82 uv_bios_enum_objs -EXPORT_SYMBOL_GPL vmlinux 0xcd91b127 system_highpri_wq -EXPORT_SYMBOL_GPL vmlinux 0xcd95ebf7 dummy_con -EXPORT_SYMBOL_GPL vmlinux 0xcd9cd2ff wakeme_after_rcu -EXPORT_SYMBOL_GPL vmlinux 0xcdac9991 device_initialize -EXPORT_SYMBOL_GPL vmlinux 0xcdb6adcc ras_userspace_consumers -EXPORT_SYMBOL_GPL vmlinux 0xcdb6b400 tpm2_get_cc_attrs_tbl -EXPORT_SYMBOL_GPL vmlinux 0xcdca3691 nr_irqs -EXPORT_SYMBOL_GPL vmlinux 0xcdde2e49 ping_seq_stop -EXPORT_SYMBOL_GPL vmlinux 0xcde26600 cppc_get_transition_latency -EXPORT_SYMBOL_GPL vmlinux 0xcdf6de4e devlink_param_unpublish -EXPORT_SYMBOL_GPL vmlinux 0xcdfef1cf dev_pm_opp_set_supported_hw -EXPORT_SYMBOL_GPL vmlinux 0xce07bd29 __tracepoint_neigh_update_done -EXPORT_SYMBOL_GPL vmlinux 0xce0a4020 xenbus_directory -EXPORT_SYMBOL_GPL vmlinux 0xce13e640 pci_enable_rom -EXPORT_SYMBOL_GPL vmlinux 0xce14db69 compat_only_sysfs_link_entry_to_kobj -EXPORT_SYMBOL_GPL vmlinux 0xce257b61 encrypt_blob -EXPORT_SYMBOL_GPL vmlinux 0xce2cf206 acpi_device_update_power -EXPORT_SYMBOL_GPL vmlinux 0xce34eaac reset_control_get_count -EXPORT_SYMBOL_GPL vmlinux 0xce379bce usb_deregister -EXPORT_SYMBOL_GPL vmlinux 0xce46e3dd tps6586x_read -EXPORT_SYMBOL_GPL vmlinux 0xce48ca0e uhci_check_and_reset_hc -EXPORT_SYMBOL_GPL vmlinux 0xce558b27 list_lru_destroy -EXPORT_SYMBOL_GPL vmlinux 0xce6db656 rcu_is_watching -EXPORT_SYMBOL_GPL vmlinux 0xce7a08ef hwmon_notify_event -EXPORT_SYMBOL_GPL vmlinux 0xce7c848a blkcg_policy_unregister -EXPORT_SYMBOL_GPL vmlinux 0xce962497 pci_find_next_capability -EXPORT_SYMBOL_GPL vmlinux 0xce987bc6 device_show_ulong -EXPORT_SYMBOL_GPL vmlinux 0xceb1f126 mpi_read_raw_data -EXPORT_SYMBOL_GPL vmlinux 0xceb66bec sched_clock_cpu -EXPORT_SYMBOL_GPL vmlinux 0xceb6d04a regulator_get_voltage_sel_regmap -EXPORT_SYMBOL_GPL vmlinux 0xcec08c33 irq_work_queue -EXPORT_SYMBOL_GPL vmlinux 0xcee1641c kgdb_unregister_nmi_console -EXPORT_SYMBOL_GPL vmlinux 0xceeb598e scsi_host_busy_iter -EXPORT_SYMBOL_GPL vmlinux 0xcf02ab71 __SCT__tp_func_block_rq_remap -EXPORT_SYMBOL_GPL vmlinux 0xcf052f76 class_interface_unregister -EXPORT_SYMBOL_GPL vmlinux 0xcf13b7d4 regulator_set_active_discharge_regmap -EXPORT_SYMBOL_GPL vmlinux 0xcf222e49 rdev_get_id -EXPORT_SYMBOL_GPL vmlinux 0xcf2c597c acpi_device_uevent_modalias -EXPORT_SYMBOL_GPL vmlinux 0xcf3249ba blk_set_pm_only -EXPORT_SYMBOL_GPL vmlinux 0xcf40ab91 tty_port_tty_hangup -EXPORT_SYMBOL_GPL vmlinux 0xcf4d5cb3 skb_complete_wifi_ack -EXPORT_SYMBOL_GPL vmlinux 0xcf50a7ee xenbus_dev_resume -EXPORT_SYMBOL_GPL vmlinux 0xcf570f9e power_supply_get_battery_info -EXPORT_SYMBOL_GPL vmlinux 0xcf6d501e dev_fill_metadata_dst -EXPORT_SYMBOL_GPL vmlinux 0xcf7a332c tpm_chip_unregister -EXPORT_SYMBOL_GPL vmlinux 0xcf7a7e21 regulator_map_voltage_linear -EXPORT_SYMBOL_GPL vmlinux 0xcf90819e rio_request_inb_mbox -EXPORT_SYMBOL_GPL vmlinux 0xcf912d4f netdev_walk_all_upper_dev_rcu -EXPORT_SYMBOL_GPL vmlinux 0xcf97cccf tcp_register_congestion_control -EXPORT_SYMBOL_GPL vmlinux 0xcf9c4e45 metadata_dst_free_percpu -EXPORT_SYMBOL_GPL vmlinux 0xcf9d2963 crypto_register_aead -EXPORT_SYMBOL_GPL vmlinux 0xcfc5108a devlink_fmsg_u8_pair_put -EXPORT_SYMBOL_GPL vmlinux 0xcfc7b4e4 rcu_barrier_tasks_trace -EXPORT_SYMBOL_GPL vmlinux 0xcfc94d17 virtio_device_restore -EXPORT_SYMBOL_GPL vmlinux 0xcfd30d71 acpi_os_map_memory -EXPORT_SYMBOL_GPL vmlinux 0xcfdebb27 pwm_put -EXPORT_SYMBOL_GPL vmlinux 0xcfe9e58c iommu_sva_bind_device -EXPORT_SYMBOL_GPL vmlinux 0xcffbe346 crypto_get_default_null_skcipher -EXPORT_SYMBOL_GPL vmlinux 0xd0177a65 acrn_setup_intr_handler -EXPORT_SYMBOL_GPL vmlinux 0xd01f9899 relay_reset -EXPORT_SYMBOL_GPL vmlinux 0xd0271d31 mmc_send_abort_tuning -EXPORT_SYMBOL_GPL vmlinux 0xd02f7314 usb_hcd_unmap_urb_setup_for_dma -EXPORT_SYMBOL_GPL vmlinux 0xd03eaf4c schedule_hrtimeout_range -EXPORT_SYMBOL_GPL vmlinux 0xd0458ccb xenbus_strstate -EXPORT_SYMBOL_GPL vmlinux 0xd04642af inet_twsk_purge -EXPORT_SYMBOL_GPL vmlinux 0xd046cf9d tpm_tis_core_init -EXPORT_SYMBOL_GPL vmlinux 0xd04a4251 pci_epc_start -EXPORT_SYMBOL_GPL vmlinux 0xd04b8f39 usb_bulk_msg -EXPORT_SYMBOL_GPL vmlinux 0xd060d132 __mmdrop -EXPORT_SYMBOL_GPL vmlinux 0xd06524ba raw_notifier_chain_unregister -EXPORT_SYMBOL_GPL vmlinux 0xd0679665 xen_unregister_device_domain_owner -EXPORT_SYMBOL_GPL vmlinux 0xd067d3c5 system_freezable_power_efficient_wq -EXPORT_SYMBOL_GPL vmlinux 0xd09911a6 acpi_dev_get_irq_type -EXPORT_SYMBOL_GPL vmlinux 0xd0ba6ee5 regmap_attach_dev -EXPORT_SYMBOL_GPL vmlinux 0xd0be4eed cpufreq_freq_attr_scaling_boost_freqs -EXPORT_SYMBOL_GPL vmlinux 0xd0bec8e1 irq_chip_enable_parent -EXPORT_SYMBOL_GPL vmlinux 0xd0c05159 emergency_restart -EXPORT_SYMBOL_GPL vmlinux 0xd0c37ed2 cdrom_read_tocentry -EXPORT_SYMBOL_GPL vmlinux 0xd0d156e9 __rht_bucket_nested -EXPORT_SYMBOL_GPL vmlinux 0xd0db0f12 run_dax -EXPORT_SYMBOL_GPL vmlinux 0xd0df12ba __SCT__tp_func_powernv_throttle -EXPORT_SYMBOL_GPL vmlinux 0xd0f5df2b sdio_retune_crc_enable -EXPORT_SYMBOL_GPL vmlinux 0xd1081a2f tpm_send -EXPORT_SYMBOL_GPL vmlinux 0xd10eb456 ata_bmdma_start -EXPORT_SYMBOL_GPL vmlinux 0xd122c805 dev_pm_qos_add_ancestor_request -EXPORT_SYMBOL_GPL vmlinux 0xd1386738 x509_cert_parse -EXPORT_SYMBOL_GPL vmlinux 0xd138922f sdio_retune_crc_disable -EXPORT_SYMBOL_GPL vmlinux 0xd13a94d1 __SCT__tp_func_devlink_trap_report -EXPORT_SYMBOL_GPL vmlinux 0xd13cf2ef device_move -EXPORT_SYMBOL_GPL vmlinux 0xd1481de7 mpi_clear -EXPORT_SYMBOL_GPL vmlinux 0xd14faf0b wm831x_reg_read -EXPORT_SYMBOL_GPL vmlinux 0xd159586c net_prio_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0xd17bf4cd dax_layout_busy_page -EXPORT_SYMBOL_GPL vmlinux 0xd17d2a22 phy_basic_features -EXPORT_SYMBOL_GPL vmlinux 0xd18e7889 nd_tbl -EXPORT_SYMBOL_GPL vmlinux 0xd1964e81 acomp_request_free -EXPORT_SYMBOL_GPL vmlinux 0xd1ae385e call_srcu -EXPORT_SYMBOL_GPL vmlinux 0xd1b0e14d dw_pcie_ep_linkup -EXPORT_SYMBOL_GPL vmlinux 0xd1c3adf3 crypto_stats_skcipher_encrypt -EXPORT_SYMBOL_GPL vmlinux 0xd1cac7bf unregister_ftrace_direct -EXPORT_SYMBOL_GPL vmlinux 0xd1cbc23c add_timer_on -EXPORT_SYMBOL_GPL vmlinux 0xd1e10794 sdev_evt_send_simple -EXPORT_SYMBOL_GPL vmlinux 0xd1e536f6 usb_get_from_anchor -EXPORT_SYMBOL_GPL vmlinux 0xd1e9b2ad __SCT__tp_func_rpm_resume -EXPORT_SYMBOL_GPL vmlinux 0xd1ed9f1e dm_get_md -EXPORT_SYMBOL_GPL vmlinux 0xd1f2eee2 nf_logger_find_get -EXPORT_SYMBOL_GPL vmlinux 0xd1fb33a0 regulator_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0xd20c66ab __SCT__tp_func_sched_util_est_se_tp -EXPORT_SYMBOL_GPL vmlinux 0xd214f32f efivar_entry_get -EXPORT_SYMBOL_GPL vmlinux 0xd217e9e6 trace_set_clr_event -EXPORT_SYMBOL_GPL vmlinux 0xd21b61bd async_schedule_node_domain -EXPORT_SYMBOL_GPL vmlinux 0xd23179ad rhashtable_destroy -EXPORT_SYMBOL_GPL vmlinux 0xd238efc9 ata_wait_register -EXPORT_SYMBOL_GPL vmlinux 0xd2423f76 i2c_acpi_get_i2c_resource -EXPORT_SYMBOL_GPL vmlinux 0xd260af0d ring_buffer_write -EXPORT_SYMBOL_GPL vmlinux 0xd26e7257 trace_array_put -EXPORT_SYMBOL_GPL vmlinux 0xd273b1b1 __round_jiffies_up_relative -EXPORT_SYMBOL_GPL vmlinux 0xd274ae6e __SCK__tp_func_br_fdb_add -EXPORT_SYMBOL_GPL vmlinux 0xd279021f usb_unanchor_urb -EXPORT_SYMBOL_GPL vmlinux 0xd27f215d gnttab_alloc_grant_references -EXPORT_SYMBOL_GPL vmlinux 0xd2826bbf devm_kstrdup -EXPORT_SYMBOL_GPL vmlinux 0xd28960c5 spi_mem_exec_op -EXPORT_SYMBOL_GPL vmlinux 0xd298436d regulator_set_suspend_voltage -EXPORT_SYMBOL_GPL vmlinux 0xd299b9ec xas_split_alloc -EXPORT_SYMBOL_GPL vmlinux 0xd2b10a05 ata_timing_find_mode -EXPORT_SYMBOL_GPL vmlinux 0xd2b28a72 page_cache_sync_ra -EXPORT_SYMBOL_GPL vmlinux 0xd2eec5ac unix_outq_len -EXPORT_SYMBOL_GPL vmlinux 0xd30dde82 max8997_update_reg -EXPORT_SYMBOL_GPL vmlinux 0xd30e4053 bpf_prog_sub -EXPORT_SYMBOL_GPL vmlinux 0xd3174f54 rio_bus_type -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 0xd35bc5da usb_autopm_put_interface_no_suspend -EXPORT_SYMBOL_GPL vmlinux 0xd36760ef __usb_get_extra_descriptor -EXPORT_SYMBOL_GPL vmlinux 0xd36c67d0 bus_for_each_dev -EXPORT_SYMBOL_GPL vmlinux 0xd377b686 tcp_bpf_update_proto -EXPORT_SYMBOL_GPL vmlinux 0xd385a96d irq_chip_set_type_parent -EXPORT_SYMBOL_GPL vmlinux 0xd395fee5 pci_reset_bus -EXPORT_SYMBOL_GPL vmlinux 0xd39e9848 put_itimerspec64 -EXPORT_SYMBOL_GPL vmlinux 0xd3b2331a fsnotify_destroy_mark -EXPORT_SYMBOL_GPL vmlinux 0xd3d23025 ata_qc_get_active -EXPORT_SYMBOL_GPL vmlinux 0xd3d79dfa da903x_reads -EXPORT_SYMBOL_GPL vmlinux 0xd3e8ac67 acpi_bus_trim -EXPORT_SYMBOL_GPL vmlinux 0xd3ec851c __traceiter_unmap -EXPORT_SYMBOL_GPL vmlinux 0xd3f41b80 sysfs_add_file_to_group -EXPORT_SYMBOL_GPL vmlinux 0xd4034828 system_freezable_wq -EXPORT_SYMBOL_GPL vmlinux 0xd405fcec devlink_dpipe_match_put -EXPORT_SYMBOL_GPL vmlinux 0xd426dbc4 erst_get_record_count -EXPORT_SYMBOL_GPL vmlinux 0xd42f1d4e show_rcu_tasks_rude_gp_kthread -EXPORT_SYMBOL_GPL vmlinux 0xd438fcf0 of_reset_control_array_get -EXPORT_SYMBOL_GPL vmlinux 0xd4404350 __SCT__tp_func_block_split -EXPORT_SYMBOL_GPL vmlinux 0xd44a5eac kgdb_register_nmi_console -EXPORT_SYMBOL_GPL vmlinux 0xd45818a2 regulator_bulk_enable -EXPORT_SYMBOL_GPL vmlinux 0xd4613a30 gpiochip_line_is_open_drain -EXPORT_SYMBOL_GPL vmlinux 0xd46648b9 rio_route_get_entry -EXPORT_SYMBOL_GPL vmlinux 0xd46af5ef cppc_get_perf_ctrs -EXPORT_SYMBOL_GPL vmlinux 0xd46cc0df iptunnel_handle_offloads -EXPORT_SYMBOL_GPL vmlinux 0xd4814903 ping_recvmsg -EXPORT_SYMBOL_GPL vmlinux 0xd48eba76 blk_ksm_init -EXPORT_SYMBOL_GPL vmlinux 0xd499139f crypto_alloc_acomp_node -EXPORT_SYMBOL_GPL vmlinux 0xd4ad51be blk_mq_quiesce_queue -EXPORT_SYMBOL_GPL vmlinux 0xd4adee98 regulator_register -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 0xd4c237c0 devlink_port_type_clear -EXPORT_SYMBOL_GPL vmlinux 0xd4c448a5 inode_congested -EXPORT_SYMBOL_GPL vmlinux 0xd4caa547 __SCK__tp_func_remove_device_from_group -EXPORT_SYMBOL_GPL vmlinux 0xd4d00fd9 acpi_bind_one -EXPORT_SYMBOL_GPL vmlinux 0xd4d54538 usb_free_urb -EXPORT_SYMBOL_GPL vmlinux 0xd4decbbb usb_enable_ltm -EXPORT_SYMBOL_GPL vmlinux 0xd4e5c155 rio_mport_write_config_16 -EXPORT_SYMBOL_GPL vmlinux 0xd4e6d7e0 linear_range_get_value -EXPORT_SYMBOL_GPL vmlinux 0xd4f5bfa5 iommu_queue_iopf -EXPORT_SYMBOL_GPL vmlinux 0xd4f61903 power_supply_class -EXPORT_SYMBOL_GPL vmlinux 0xd501e815 acct_bioset_exit -EXPORT_SYMBOL_GPL vmlinux 0xd502cdb6 iommu_uapi_sva_bind_gpasid -EXPORT_SYMBOL_GPL vmlinux 0xd50673be pci_generic_config_read32 -EXPORT_SYMBOL_GPL vmlinux 0xd5081939 inet_ehash_nolisten -EXPORT_SYMBOL_GPL vmlinux 0xd52e0282 pm_clk_runtime_suspend -EXPORT_SYMBOL_GPL vmlinux 0xd5301b2c linear_range_get_max_value -EXPORT_SYMBOL_GPL vmlinux 0xd53f0bbb blkg_lookup_slowpath -EXPORT_SYMBOL_GPL vmlinux 0xd5474690 usb_role_switch_set_role -EXPORT_SYMBOL_GPL vmlinux 0xd55ad93b iommu_group_get_iommudata -EXPORT_SYMBOL_GPL vmlinux 0xd572d676 tpm_chip_start -EXPORT_SYMBOL_GPL vmlinux 0xd574f6cb led_sysfs_enable -EXPORT_SYMBOL_GPL vmlinux 0xd57fbd31 hwrng_unregister -EXPORT_SYMBOL_GPL vmlinux 0xd5828737 acpi_find_child_device -EXPORT_SYMBOL_GPL vmlinux 0xd59a1587 linkmode_resolve_pause -EXPORT_SYMBOL_GPL vmlinux 0xd5a3a69e regulator_set_voltage_rdev -EXPORT_SYMBOL_GPL vmlinux 0xd5ce97a9 devm_power_supply_register -EXPORT_SYMBOL_GPL vmlinux 0xd5d04769 regulator_bulk_register_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0xd5e38ab0 acpi_dma_simple_xlate -EXPORT_SYMBOL_GPL vmlinux 0xd5e946c6 syscon_regmap_lookup_by_phandle_optional -EXPORT_SYMBOL_GPL vmlinux 0xd5eb0d4e acpi_register_lps0_dev -EXPORT_SYMBOL_GPL vmlinux 0xd5ed11bf crypto_register_ahashes -EXPORT_SYMBOL_GPL vmlinux 0xd5f3bb7b set_memory_encrypted -EXPORT_SYMBOL_GPL vmlinux 0xd5fc9b00 mmc_cmdq_disable -EXPORT_SYMBOL_GPL vmlinux 0xd61c52ec devm_of_phy_get -EXPORT_SYMBOL_GPL vmlinux 0xd61caa8b thermal_zone_device_disable -EXPORT_SYMBOL_GPL vmlinux 0xd61cb246 ata_do_dev_read_id -EXPORT_SYMBOL_GPL vmlinux 0xd6245db0 sysfs_remove_files -EXPORT_SYMBOL_GPL vmlinux 0xd6332fae phy_driver_is_genphy -EXPORT_SYMBOL_GPL vmlinux 0xd64ed259 __memcat_p -EXPORT_SYMBOL_GPL vmlinux 0xd6662a4d intel_pinctrl_suspend_noirq -EXPORT_SYMBOL_GPL vmlinux 0xd6702301 gpiod_get_index_optional -EXPORT_SYMBOL_GPL vmlinux 0xd67364f7 eventfd_ctx_fdget -EXPORT_SYMBOL_GPL vmlinux 0xd67a1aee wm831x_reg_write -EXPORT_SYMBOL_GPL vmlinux 0xd68249cd sdio_register_driver -EXPORT_SYMBOL_GPL vmlinux 0xd6893686 acpiphp_register_attention -EXPORT_SYMBOL_GPL vmlinux 0xd69b6c0f __tracepoint_wbc_writepage -EXPORT_SYMBOL_GPL vmlinux 0xd69ddd41 clk_hw_get_name -EXPORT_SYMBOL_GPL vmlinux 0xd69fccc7 debugfs_create_blob -EXPORT_SYMBOL_GPL vmlinux 0xd6bb7c25 acpi_subsys_suspend -EXPORT_SYMBOL_GPL vmlinux 0xd6bc3f0b klist_iter_init_node -EXPORT_SYMBOL_GPL vmlinux 0xd6d8ff4a input_ff_create -EXPORT_SYMBOL_GPL vmlinux 0xd6e09157 cpuidle_unregister -EXPORT_SYMBOL_GPL vmlinux 0xd6feefa5 agp_num_entries -EXPORT_SYMBOL_GPL vmlinux 0xd71b90fb __traceiter_rpm_resume -EXPORT_SYMBOL_GPL vmlinux 0xd7250108 ata_std_prereset -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 0xd7329d55 vchan_tx_submit -EXPORT_SYMBOL_GPL vmlinux 0xd7399d2a efivar_entry_iter_end -EXPORT_SYMBOL_GPL vmlinux 0xd747413b __crypto_alloc_tfm -EXPORT_SYMBOL_GPL vmlinux 0xd74e400f show_rcu_tasks_classic_gp_kthread -EXPORT_SYMBOL_GPL vmlinux 0xd755f7b6 __traceiter_sched_cpu_capacity_tp -EXPORT_SYMBOL_GPL vmlinux 0xd75b20aa rsa_parse_priv_key -EXPORT_SYMBOL_GPL vmlinux 0xd768e985 regulator_has_full_constraints -EXPORT_SYMBOL_GPL vmlinux 0xd769c1a0 wakeup_source_destroy -EXPORT_SYMBOL_GPL vmlinux 0xd774957d mpi_write_to_sgl -EXPORT_SYMBOL_GPL vmlinux 0xd778c458 xfrm_register_translator -EXPORT_SYMBOL_GPL vmlinux 0xd785aa53 mnt_want_write_file -EXPORT_SYMBOL_GPL vmlinux 0xd78f8f97 tps65912_device_init -EXPORT_SYMBOL_GPL vmlinux 0xd794aa56 wm831x_reg_lock -EXPORT_SYMBOL_GPL vmlinux 0xd7954d72 i2c_dw_configure_master -EXPORT_SYMBOL_GPL vmlinux 0xd7ac75eb efivar_entry_delete -EXPORT_SYMBOL_GPL vmlinux 0xd7b1450f xdp_convert_zc_to_xdp_frame -EXPORT_SYMBOL_GPL vmlinux 0xd7bf2088 devfreq_event_add_edev -EXPORT_SYMBOL_GPL vmlinux 0xd7c3b6c9 ehci_hub_control -EXPORT_SYMBOL_GPL vmlinux 0xd7c70060 gpiochip_remove_pin_ranges -EXPORT_SYMBOL_GPL vmlinux 0xd7cd3ad1 spi_new_device -EXPORT_SYMBOL_GPL vmlinux 0xd7cea889 edac_mod_work -EXPORT_SYMBOL_GPL vmlinux 0xd7d7f2a7 devlink_port_health_reporter_destroy -EXPORT_SYMBOL_GPL vmlinux 0xd7eeb9dd sk_msg_alloc -EXPORT_SYMBOL_GPL vmlinux 0xd7f50e66 radix_tree_preloads -EXPORT_SYMBOL_GPL vmlinux 0xd80d8df5 sata_scr_write_flush -EXPORT_SYMBOL_GPL vmlinux 0xd8232cf3 trace_event_raw_init -EXPORT_SYMBOL_GPL vmlinux 0xd83824ed __mmc_poll_for_busy -EXPORT_SYMBOL_GPL vmlinux 0xd84d35bd dax_read_lock -EXPORT_SYMBOL_GPL vmlinux 0xd8512189 hrtimer_init -EXPORT_SYMBOL_GPL vmlinux 0xd866ecf8 mmu_notifier_put -EXPORT_SYMBOL_GPL vmlinux 0xd87023c4 sdio_f0_readb -EXPORT_SYMBOL_GPL vmlinux 0xd875ca45 acpi_device_get_match_data -EXPORT_SYMBOL_GPL vmlinux 0xd877ac12 usb_hcd_pci_shutdown -EXPORT_SYMBOL_GPL vmlinux 0xd87fc0a0 usb_amd_prefetch_quirk -EXPORT_SYMBOL_GPL vmlinux 0xd88ce786 kobject_rename -EXPORT_SYMBOL_GPL vmlinux 0xd8904ed4 sysfs_create_link -EXPORT_SYMBOL_GPL vmlinux 0xd8bec5dd nvdimm_bus_check_dimm_count -EXPORT_SYMBOL_GPL vmlinux 0xd8d065dd hv_stimer_alloc -EXPORT_SYMBOL_GPL vmlinux 0xd8d68ab1 dmi_memdev_type -EXPORT_SYMBOL_GPL vmlinux 0xd8e1b2ac sbitmap_prepare_to_wait -EXPORT_SYMBOL_GPL vmlinux 0xd8f91234 of_hwspin_lock_get_id_byname -EXPORT_SYMBOL_GPL vmlinux 0xd8fbb14d net_cls_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0xd9013d64 phy_calibrate -EXPORT_SYMBOL_GPL vmlinux 0xd918cab8 pinctrl_register_and_init -EXPORT_SYMBOL_GPL vmlinux 0xd919806a amd_cache_northbridges -EXPORT_SYMBOL_GPL vmlinux 0xd91d7b5d i2c_generic_scl_recovery -EXPORT_SYMBOL_GPL vmlinux 0xd91dbd1f xdp_alloc_skb_bulk -EXPORT_SYMBOL_GPL vmlinux 0xd92ef192 security_kernel_post_load_data -EXPORT_SYMBOL_GPL vmlinux 0xd93a5cb1 efivar_variable_is_removable -EXPORT_SYMBOL_GPL vmlinux 0xd9458306 devm_intel_scu_ipc_dev_get -EXPORT_SYMBOL_GPL vmlinux 0xd9500c5a i2c_unregister_device -EXPORT_SYMBOL_GPL vmlinux 0xd958401e blk_rq_unprep_clone -EXPORT_SYMBOL_GPL vmlinux 0xd959d6b8 devres_release -EXPORT_SYMBOL_GPL vmlinux 0xd96b5eb8 __iptunnel_pull_header -EXPORT_SYMBOL_GPL vmlinux 0xd96b8171 hvc_remove -EXPORT_SYMBOL_GPL vmlinux 0xd96babb4 interval_tree_iter_next -EXPORT_SYMBOL_GPL vmlinux 0xd9765972 devlink_params_publish -EXPORT_SYMBOL_GPL vmlinux 0xd97cf20e __vfs_setxattr_noperm -EXPORT_SYMBOL_GPL vmlinux 0xd995b4ae platform_irq_count -EXPORT_SYMBOL_GPL vmlinux 0xd9992eb4 uv_bios_get_geoinfo -EXPORT_SYMBOL_GPL vmlinux 0xd99ec64d regulator_unregister -EXPORT_SYMBOL_GPL vmlinux 0xd9ad31e4 spi_finalize_current_message -EXPORT_SYMBOL_GPL vmlinux 0xd9aecb60 sched_trace_rq_avg_dl -EXPORT_SYMBOL_GPL vmlinux 0xd9b7cdaa blkcg_print_blkgs -EXPORT_SYMBOL_GPL vmlinux 0xd9c14a97 __pm_runtime_idle -EXPORT_SYMBOL_GPL vmlinux 0xd9cb20bb mctrl_gpio_init_noauto -EXPORT_SYMBOL_GPL vmlinux 0xd9cd5f24 crypto_unregister_aeads -EXPORT_SYMBOL_GPL vmlinux 0xd9d31049 tty_find_polling_driver -EXPORT_SYMBOL_GPL vmlinux 0xd9e24457 ring_buffer_peek -EXPORT_SYMBOL_GPL vmlinux 0xd9ef6c50 acpi_ec_remove_query_handler -EXPORT_SYMBOL_GPL vmlinux 0xd9f30f8f md_find_rdev_nr_rcu -EXPORT_SYMBOL_GPL vmlinux 0xd9f975aa __clk_hw_register_mux -EXPORT_SYMBOL_GPL vmlinux 0xd9f9b29f balloon_page_list_dequeue -EXPORT_SYMBOL_GPL vmlinux 0xd9ff2172 ezx_pcap_write -EXPORT_SYMBOL_GPL vmlinux 0xda0947de kmsg_dump_unregister -EXPORT_SYMBOL_GPL vmlinux 0xda0edf77 acpi_dev_resume -EXPORT_SYMBOL_GPL vmlinux 0xda1f78ee clear_hv_tscchange_cb -EXPORT_SYMBOL_GPL vmlinux 0xda21963a platform_msi_domain_alloc_irqs -EXPORT_SYMBOL_GPL vmlinux 0xda262a36 syscon_node_to_regmap -EXPORT_SYMBOL_GPL vmlinux 0xda26b05a __tracepoint_block_bio_remap -EXPORT_SYMBOL_GPL vmlinux 0xda320d31 sfp_module_start -EXPORT_SYMBOL_GPL vmlinux 0xda4082e7 shash_ahash_digest -EXPORT_SYMBOL_GPL vmlinux 0xda5ddae8 ata_scsi_ioctl -EXPORT_SYMBOL_GPL vmlinux 0xda63ae4f devlink_port_attrs_pci_vf_set -EXPORT_SYMBOL_GPL vmlinux 0xda75e1af wbt_disable_default -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 0xdab5a1eb interval_tree_insert -EXPORT_SYMBOL_GPL vmlinux 0xdac0f80e pinctrl_dev_get_name -EXPORT_SYMBOL_GPL vmlinux 0xdac3f74c rtc_class_open -EXPORT_SYMBOL_GPL vmlinux 0xdac4d01c devlink_port_param_driverinit_value_set -EXPORT_SYMBOL_GPL vmlinux 0xdacfb3f8 unregister_virtio_device -EXPORT_SYMBOL_GPL vmlinux 0xdad57d5e iptunnel_xmit -EXPORT_SYMBOL_GPL vmlinux 0xdade6cce crypto_larval_kill -EXPORT_SYMBOL_GPL vmlinux 0xdaeeea52 events_hybrid_sysfs_show -EXPORT_SYMBOL_GPL vmlinux 0xdaf3fe58 intel_pmic_install_opregion_handler -EXPORT_SYMBOL_GPL vmlinux 0xdaf4dfb3 fb_mode_option -EXPORT_SYMBOL_GPL vmlinux 0xdaffd027 gpiod_toggle_active_low -EXPORT_SYMBOL_GPL vmlinux 0xdb09703e icc_get -EXPORT_SYMBOL_GPL vmlinux 0xdb244a06 dev_err_probe -EXPORT_SYMBOL_GPL vmlinux 0xdb3aa1e3 blk_ksm_is_superset -EXPORT_SYMBOL_GPL vmlinux 0xdb540938 __netpoll_free -EXPORT_SYMBOL_GPL vmlinux 0xdb5ae649 fsl_mc_device_group -EXPORT_SYMBOL_GPL vmlinux 0xdb62dc67 __SCT__tp_func_map -EXPORT_SYMBOL_GPL vmlinux 0xdb63a944 acpi_lpat_get_conversion_table -EXPORT_SYMBOL_GPL vmlinux 0xdb653fcf irq_chip_unmask_parent -EXPORT_SYMBOL_GPL vmlinux 0xdb67952f sdio_claim_irq -EXPORT_SYMBOL_GPL vmlinux 0xdb76df5e vfio_iommu_group_put -EXPORT_SYMBOL_GPL vmlinux 0xdb8233f9 dev_pm_opp_remove_table -EXPORT_SYMBOL_GPL vmlinux 0xdb82f71f sbitmap_init_node -EXPORT_SYMBOL_GPL vmlinux 0xdb8a1b3f usermodehelper_read_trylock -EXPORT_SYMBOL_GPL vmlinux 0xdb925cf3 devm_pm_opp_set_regulators -EXPORT_SYMBOL_GPL vmlinux 0xdb9efbfd iommu_aux_attach_device -EXPORT_SYMBOL_GPL vmlinux 0xdba0e344 machine_check_poll -EXPORT_SYMBOL_GPL vmlinux 0xdbdadb59 crypto_register_algs -EXPORT_SYMBOL_GPL vmlinux 0xdbdb0e8b request_any_context_irq -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 0xdc1947d3 tty_get_pgrp -EXPORT_SYMBOL_GPL vmlinux 0xdc1fa3f5 dev_pm_opp_put_regulators -EXPORT_SYMBOL_GPL vmlinux 0xdc22f7c3 usb_choose_configuration -EXPORT_SYMBOL_GPL vmlinux 0xdc261331 switchdev_port_attr_set -EXPORT_SYMBOL_GPL vmlinux 0xdc4158c1 fuse_simple_background -EXPORT_SYMBOL_GPL vmlinux 0xdc43bdc6 pci_vpd_find_ro_info_keyword -EXPORT_SYMBOL_GPL vmlinux 0xdc45a5db edac_stop_work -EXPORT_SYMBOL_GPL vmlinux 0xdc508a1e anon_inode_getfd -EXPORT_SYMBOL_GPL vmlinux 0xdc513376 __tracepoint_cpu_idle -EXPORT_SYMBOL_GPL vmlinux 0xdc540393 crypto_register_shash -EXPORT_SYMBOL_GPL vmlinux 0xdc58e98a serial8250_clear_and_reinit_fifos -EXPORT_SYMBOL_GPL vmlinux 0xdc598fe3 __hrtimer_get_remaining -EXPORT_SYMBOL_GPL vmlinux 0xdc6596fa irq_set_parent -EXPORT_SYMBOL_GPL vmlinux 0xdc6699cb acpi_dev_free_resource_list -EXPORT_SYMBOL_GPL vmlinux 0xdc68bd31 scsi_dh_attached_handler_name -EXPORT_SYMBOL_GPL vmlinux 0xdc756ff1 devlink_traps_register -EXPORT_SYMBOL_GPL vmlinux 0xdc7df67f apei_exec_ctx_init -EXPORT_SYMBOL_GPL vmlinux 0xdc802ef4 thermal_zone_get_slope -EXPORT_SYMBOL_GPL vmlinux 0xdc803f52 platform_device_register_full -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 0xdc9cdbc8 pci_sriov_get_totalvfs -EXPORT_SYMBOL_GPL vmlinux 0xdc9fa232 raw_notifier_chain_register -EXPORT_SYMBOL_GPL vmlinux 0xdc9fe764 gpiochip_get_data -EXPORT_SYMBOL_GPL vmlinux 0xdca03bdf __tracepoint_rpm_resume -EXPORT_SYMBOL_GPL vmlinux 0xdcb35694 of_pm_clk_add_clk -EXPORT_SYMBOL_GPL vmlinux 0xdcb44f56 device_match_fwnode -EXPORT_SYMBOL_GPL vmlinux 0xdcbcac8e irq_domain_disconnect_hierarchy -EXPORT_SYMBOL_GPL vmlinux 0xdcd9282e edac_device_free_ctl_info -EXPORT_SYMBOL_GPL vmlinux 0xdcdeaf50 ethnl_cable_test_pulse -EXPORT_SYMBOL_GPL vmlinux 0xdcdfc9c2 __ip6_local_out -EXPORT_SYMBOL_GPL vmlinux 0xdce045f6 regmap_update_bits_base -EXPORT_SYMBOL_GPL vmlinux 0xdcf1181a shmem_file_setup_with_mnt -EXPORT_SYMBOL_GPL vmlinux 0xdd050d08 devm_phy_package_join -EXPORT_SYMBOL_GPL vmlinux 0xdd0762df set_worker_desc -EXPORT_SYMBOL_GPL vmlinux 0xdd0ad9ba usb_driver_release_interface -EXPORT_SYMBOL_GPL vmlinux 0xdd11289e bpfilter_umh_cleanup -EXPORT_SYMBOL_GPL vmlinux 0xdd20005d vp_modern_get_queue_size -EXPORT_SYMBOL_GPL vmlinux 0xdd225309 vchan_dma_desc_free_list -EXPORT_SYMBOL_GPL vmlinux 0xdd2b2223 fib6_get_table -EXPORT_SYMBOL_GPL vmlinux 0xdd2b6d18 iomap_dio_iopoll -EXPORT_SYMBOL_GPL vmlinux 0xdd31a4e6 bpf_map_inc_with_uref -EXPORT_SYMBOL_GPL vmlinux 0xdd37e8c0 iommu_group_get -EXPORT_SYMBOL_GPL vmlinux 0xdd391eff profile_event_unregister -EXPORT_SYMBOL_GPL vmlinux 0xdd3a1ef3 gpiod_cansleep -EXPORT_SYMBOL_GPL vmlinux 0xdd3fffb5 regmap_exit -EXPORT_SYMBOL_GPL vmlinux 0xdd4253c7 unregister_kretprobe -EXPORT_SYMBOL_GPL vmlinux 0xdd4c56cc wbc_detach_inode -EXPORT_SYMBOL_GPL vmlinux 0xdd590901 devm_regulator_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0xdd626ee3 fuse_len_args -EXPORT_SYMBOL_GPL vmlinux 0xdd666a6a vp_modern_config_vector -EXPORT_SYMBOL_GPL vmlinux 0xdd6754ff device_change_owner -EXPORT_SYMBOL_GPL vmlinux 0xdd69d272 thermal_zone_get_zone_by_name -EXPORT_SYMBOL_GPL vmlinux 0xdd6ddcec __traceiter_error_report_end -EXPORT_SYMBOL_GPL vmlinux 0xdd809a2d get_net_ns -EXPORT_SYMBOL_GPL vmlinux 0xdd816c8f blk_trace_setup -EXPORT_SYMBOL_GPL vmlinux 0xdd8fa19e subsys_interface_register -EXPORT_SYMBOL_GPL vmlinux 0xdd971e2e screen_glyph_unicode -EXPORT_SYMBOL_GPL vmlinux 0xdd9dd80d xen_pvh -EXPORT_SYMBOL_GPL vmlinux 0xdda6f36e usb_anchor_empty -EXPORT_SYMBOL_GPL vmlinux 0xdda74bc4 spi_mem_driver_unregister -EXPORT_SYMBOL_GPL vmlinux 0xddb11a11 access_process_vm -EXPORT_SYMBOL_GPL vmlinux 0xddbeeecc pci_lock_rescan_remove -EXPORT_SYMBOL_GPL vmlinux 0xddc0357b led_blink_set_oneshot -EXPORT_SYMBOL_GPL vmlinux 0xddc2c093 ipv4_sk_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0xddd93ca0 of_icc_bulk_get -EXPORT_SYMBOL_GPL vmlinux 0xdde6afb4 dev_pm_genpd_set_performance_state -EXPORT_SYMBOL_GPL vmlinux 0xddf01f26 auxiliary_driver_unregister -EXPORT_SYMBOL_GPL vmlinux 0xddfb9929 devm_pm_runtime_enable -EXPORT_SYMBOL_GPL vmlinux 0xde1620a3 vfio_pci_core_disable -EXPORT_SYMBOL_GPL vmlinux 0xde192a0b sysfs_update_groups -EXPORT_SYMBOL_GPL vmlinux 0xde19869b extcon_dev_unregister -EXPORT_SYMBOL_GPL vmlinux 0xde355a33 fs_kobj -EXPORT_SYMBOL_GPL vmlinux 0xde3bfe7e __tracepoint_sched_util_est_se_tp -EXPORT_SYMBOL_GPL vmlinux 0xde51664f spi_unregister_controller -EXPORT_SYMBOL_GPL vmlinux 0xde569971 nvmem_device_get -EXPORT_SYMBOL_GPL vmlinux 0xde5a80c5 badrange_forget -EXPORT_SYMBOL_GPL vmlinux 0xde5c4c39 alloc_iova -EXPORT_SYMBOL_GPL vmlinux 0xde5ce758 simple_attr_write -EXPORT_SYMBOL_GPL vmlinux 0xde6dcd8b __synth_event_gen_cmd_start -EXPORT_SYMBOL_GPL vmlinux 0xde6f1851 TSS_checkhmac1 -EXPORT_SYMBOL_GPL vmlinux 0xde7041b5 regulator_get_optional -EXPORT_SYMBOL_GPL vmlinux 0xde8584cd balloon_page_enqueue -EXPORT_SYMBOL_GPL vmlinux 0xde964b08 bpf_prog_add -EXPORT_SYMBOL_GPL vmlinux 0xde9ab8c7 xenbus_rm -EXPORT_SYMBOL_GPL vmlinux 0xdec35359 acpi_dev_add_driver_gpios -EXPORT_SYMBOL_GPL vmlinux 0xdecff138 device_set_wakeup_enable -EXPORT_SYMBOL_GPL vmlinux 0xdee5b1f9 device_match_name -EXPORT_SYMBOL_GPL vmlinux 0xdeffa0a7 edac_raw_mc_handle_error -EXPORT_SYMBOL_GPL vmlinux 0xdf017c0a bsg_job_get -EXPORT_SYMBOL_GPL vmlinux 0xdf0462f5 tty_release_struct -EXPORT_SYMBOL_GPL vmlinux 0xdf0c757f ata_tf_to_fis -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 0xdf6c1356 gpiochip_irqchip_add_domain -EXPORT_SYMBOL_GPL vmlinux 0xdf81924d uv_bios_mq_watchlist_free -EXPORT_SYMBOL_GPL vmlinux 0xdf9617c2 dev_pm_opp_set_rate -EXPORT_SYMBOL_GPL vmlinux 0xdfaa5400 __bio_add_page -EXPORT_SYMBOL_GPL vmlinux 0xdfaa79d4 tracepoint_probe_register_prio -EXPORT_SYMBOL_GPL vmlinux 0xdfb45bb0 devm_platform_get_irqs_affinity -EXPORT_SYMBOL_GPL vmlinux 0xdfbc610c blkdev_ioctl -EXPORT_SYMBOL_GPL vmlinux 0xdfbf0f47 dev_pm_opp_set_regulators -EXPORT_SYMBOL_GPL vmlinux 0xdfc89882 vfio_pci_core_read -EXPORT_SYMBOL_GPL vmlinux 0xdfcb6c90 mctrl_gpio_set -EXPORT_SYMBOL_GPL vmlinux 0xdfe1d599 to_nd_blk_region -EXPORT_SYMBOL_GPL vmlinux 0xdfe5305c dma_buf_dynamic_attach -EXPORT_SYMBOL_GPL vmlinux 0xdfe92894 mddev_suspend -EXPORT_SYMBOL_GPL vmlinux 0xdfee7b78 pinctrl_lookup_state -EXPORT_SYMBOL_GPL vmlinux 0xe001832a dw_pcie_host_init -EXPORT_SYMBOL_GPL vmlinux 0xe010cf95 pci_epc_clear_bar -EXPORT_SYMBOL_GPL vmlinux 0xe03a1202 iommu_device_unlink -EXPORT_SYMBOL_GPL vmlinux 0xe03c8a66 serdev_device_close -EXPORT_SYMBOL_GPL vmlinux 0xe0413a0d sbitmap_finish_wait -EXPORT_SYMBOL_GPL vmlinux 0xe045ae5d scsi_check_sense -EXPORT_SYMBOL_GPL vmlinux 0xe04c78db __SCT__tp_func_neigh_event_send_done -EXPORT_SYMBOL_GPL vmlinux 0xe05e2f85 nexthop_free_rcu -EXPORT_SYMBOL_GPL vmlinux 0xe064dc85 kgdb_unregister_io_module -EXPORT_SYMBOL_GPL vmlinux 0xe06f36a6 wbt_enable_default -EXPORT_SYMBOL_GPL vmlinux 0xe089cfcc agp_memory_reserved -EXPORT_SYMBOL_GPL vmlinux 0xe091fbf5 sk_msg_return_zero -EXPORT_SYMBOL_GPL vmlinux 0xe098b0ac gpiochip_lock_as_irq -EXPORT_SYMBOL_GPL vmlinux 0xe09a5f99 acpi_storage_d3 -EXPORT_SYMBOL_GPL vmlinux 0xe0b1c103 clk_set_max_rate -EXPORT_SYMBOL_GPL vmlinux 0xe0c77bb5 mce_notify_irq -EXPORT_SYMBOL_GPL vmlinux 0xe0c7f360 lwtunnel_build_state -EXPORT_SYMBOL_GPL vmlinux 0xe0d1d910 usb_reset_endpoint -EXPORT_SYMBOL_GPL vmlinux 0xe0d39f1c sgx_set_attribute -EXPORT_SYMBOL_GPL vmlinux 0xe0d78d66 isa_unregister_driver -EXPORT_SYMBOL_GPL vmlinux 0xe0d8b014 usb_hub_clear_tt_buffer -EXPORT_SYMBOL_GPL vmlinux 0xe0f25f18 tcp_unregister_congestion_control -EXPORT_SYMBOL_GPL vmlinux 0xe0f3e50f tcp_abort -EXPORT_SYMBOL_GPL vmlinux 0xe0fbce2c tpm2_probe -EXPORT_SYMBOL_GPL vmlinux 0xe10cd6ad erst_get_record_id_begin -EXPORT_SYMBOL_GPL vmlinux 0xe11e1a47 md_bitmap_load -EXPORT_SYMBOL_GPL vmlinux 0xe11e6304 cgroup_get_e_css -EXPORT_SYMBOL_GPL vmlinux 0xe13a4a07 serdev_device_set_baudrate -EXPORT_SYMBOL_GPL vmlinux 0xe14f072d bpf_prog_inc_not_zero -EXPORT_SYMBOL_GPL vmlinux 0xe15d3428 iommu_unmap_fast -EXPORT_SYMBOL_GPL vmlinux 0xe1635cfa ip6_route_output_flags_noref -EXPORT_SYMBOL_GPL vmlinux 0xe17549ab ip6_route_output_flags -EXPORT_SYMBOL_GPL vmlinux 0xe1775ee7 dm_get_reserved_bio_based_ios -EXPORT_SYMBOL_GPL vmlinux 0xe180cad8 dst_cache_set_ip4 -EXPORT_SYMBOL_GPL vmlinux 0xe191fc52 pm_generic_poweroff_noirq -EXPORT_SYMBOL_GPL vmlinux 0xe194eeef devm_phy_destroy -EXPORT_SYMBOL_GPL vmlinux 0xe1aa2d62 set_hv_tscchange_cb -EXPORT_SYMBOL_GPL vmlinux 0xe1b39286 vfs_inode_has_locks -EXPORT_SYMBOL_GPL vmlinux 0xe1bd6c99 rio_init_mports -EXPORT_SYMBOL_GPL vmlinux 0xe1c63523 blk_ksm_get_slot_idx -EXPORT_SYMBOL_GPL vmlinux 0xe1cbcdd6 i2c_new_smbus_alert_device -EXPORT_SYMBOL_GPL vmlinux 0xe1cc6ef9 sock_diag_register_inet_compat -EXPORT_SYMBOL_GPL vmlinux 0xe1d7c1ac regulator_set_drvdata -EXPORT_SYMBOL_GPL vmlinux 0xe1da5f82 rdev_set_badblocks -EXPORT_SYMBOL_GPL vmlinux 0xe1e5a8a5 raw_seq_stop -EXPORT_SYMBOL_GPL vmlinux 0xe1ed0623 xas_find -EXPORT_SYMBOL_GPL vmlinux 0xe1ed80c3 dev_pm_opp_put -EXPORT_SYMBOL_GPL vmlinux 0xe2047e32 inet_csk_route_child_sock -EXPORT_SYMBOL_GPL vmlinux 0xe2157767 blk_mark_disk_dead -EXPORT_SYMBOL_GPL vmlinux 0xe216e3c1 dev_pm_opp_set_sharing_cpus -EXPORT_SYMBOL_GPL vmlinux 0xe2226fbf gpiochip_remove -EXPORT_SYMBOL_GPL vmlinux 0xe22b3c7b clocksource_verify_percpu -EXPORT_SYMBOL_GPL vmlinux 0xe233762a input_event_from_user -EXPORT_SYMBOL_GPL vmlinux 0xe24ecf91 __hwspin_trylock -EXPORT_SYMBOL_GPL vmlinux 0xe2620d3b rhltable_init -EXPORT_SYMBOL_GPL vmlinux 0xe27191eb usb_get_maximum_speed -EXPORT_SYMBOL_GPL vmlinux 0xe271f20c __SCT__tp_func_pelt_rt_tp -EXPORT_SYMBOL_GPL vmlinux 0xe28488dd dma_vunmap_noncontiguous -EXPORT_SYMBOL_GPL vmlinux 0xe286c746 acct_bioset_init -EXPORT_SYMBOL_GPL vmlinux 0xe294d36f devm_namespace_disable -EXPORT_SYMBOL_GPL vmlinux 0xe295c0ff is_hpet_enabled -EXPORT_SYMBOL_GPL vmlinux 0xe296985b fuse_dev_free -EXPORT_SYMBOL_GPL vmlinux 0xe2b0b7b8 devlink_param_register -EXPORT_SYMBOL_GPL vmlinux 0xe2b3207a unregister_switchdev_notifier -EXPORT_SYMBOL_GPL vmlinux 0xe2c5729f list_lru_walk_node -EXPORT_SYMBOL_GPL vmlinux 0xe2ce2b4d evm_set_key -EXPORT_SYMBOL_GPL vmlinux 0xe2d70f58 add_wait_queue_priority -EXPORT_SYMBOL_GPL vmlinux 0xe2f1ded9 dev_pm_disable_wake_irq -EXPORT_SYMBOL_GPL vmlinux 0xe3023526 sched_trace_rq_cpu_capacity -EXPORT_SYMBOL_GPL vmlinux 0xe31315a4 spi_delay_exec -EXPORT_SYMBOL_GPL vmlinux 0xe31e13dc vfio_group_get_external_user_from_dev -EXPORT_SYMBOL_GPL vmlinux 0xe3216f61 sdio_f0_writeb -EXPORT_SYMBOL_GPL vmlinux 0xe325b660 devlink_dpipe_table_unregister -EXPORT_SYMBOL_GPL vmlinux 0xe342029e fwnode_device_is_available -EXPORT_SYMBOL_GPL vmlinux 0xe358272b bsg_remove_queue -EXPORT_SYMBOL_GPL vmlinux 0xe35888cd usb_sg_wait -EXPORT_SYMBOL_GPL vmlinux 0xe35fc39c rio_unregister_mport -EXPORT_SYMBOL_GPL vmlinux 0xe361585a sysfs_create_group -EXPORT_SYMBOL_GPL vmlinux 0xe3693319 pci_scan_child_bus -EXPORT_SYMBOL_GPL vmlinux 0xe3744bb0 dev_pm_domain_attach_by_id -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 0xe3a1c4e3 devm_clk_get_optional_prepared -EXPORT_SYMBOL_GPL vmlinux 0xe3aab628 sysfs_create_bin_file -EXPORT_SYMBOL_GPL vmlinux 0xe3b09712 kprobe_event_delete -EXPORT_SYMBOL_GPL vmlinux 0xe3b58b8a regulator_get_current_limit_regmap -EXPORT_SYMBOL_GPL vmlinux 0xe3bc1945 crypto_grab_aead -EXPORT_SYMBOL_GPL vmlinux 0xe3bc7fd4 hpet_unregister_irq_handler -EXPORT_SYMBOL_GPL vmlinux 0xe3c11bff wp_shared_mapping_range -EXPORT_SYMBOL_GPL vmlinux 0xe3c43e2f skb_splice_bits -EXPORT_SYMBOL_GPL vmlinux 0xe3d4b983 pm_relax -EXPORT_SYMBOL_GPL vmlinux 0xe3d6e45f fib_nh_common_release -EXPORT_SYMBOL_GPL vmlinux 0xe3e1be63 tty_port_tty_wakeup -EXPORT_SYMBOL_GPL vmlinux 0xe3e2bf7a freq_qos_remove_request -EXPORT_SYMBOL_GPL vmlinux 0xe3e88acb __get_current_cr3_fast -EXPORT_SYMBOL_GPL vmlinux 0xe40bb23e devlink_health_reporter_priv -EXPORT_SYMBOL_GPL vmlinux 0xe4227111 ip6_dst_lookup_flow -EXPORT_SYMBOL_GPL vmlinux 0xe4248980 cper_estatus_print -EXPORT_SYMBOL_GPL vmlinux 0xe42a7fc9 vchan_init -EXPORT_SYMBOL_GPL vmlinux 0xe4309905 syscore_resume -EXPORT_SYMBOL_GPL vmlinux 0xe43fd956 fuse_abort_conn -EXPORT_SYMBOL_GPL vmlinux 0xe441d989 crypto_unregister_instance -EXPORT_SYMBOL_GPL vmlinux 0xe4429f40 ipv6_recv_error -EXPORT_SYMBOL_GPL vmlinux 0xe44dcf50 lwtunnel_input -EXPORT_SYMBOL_GPL vmlinux 0xe463aa94 ata_pci_sff_init_one -EXPORT_SYMBOL_GPL vmlinux 0xe469411d reset_controller_unregister -EXPORT_SYMBOL_GPL vmlinux 0xe47541d6 sata_std_hardreset -EXPORT_SYMBOL_GPL vmlinux 0xe481ba41 security_path_chown -EXPORT_SYMBOL_GPL vmlinux 0xe48611ac trace_clock_global -EXPORT_SYMBOL_GPL vmlinux 0xe48a1dcb ata_port_wait_eh -EXPORT_SYMBOL_GPL vmlinux 0xe48d9bca klp_get_state -EXPORT_SYMBOL_GPL vmlinux 0xe48eca65 rhashtable_walk_stop -EXPORT_SYMBOL_GPL vmlinux 0xe4971ade tracing_alloc_snapshot -EXPORT_SYMBOL_GPL vmlinux 0xe49e168d umd_cleanup_helper -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 0xe4e48b12 swphy_validate_state -EXPORT_SYMBOL_GPL vmlinux 0xe4ec2985 xas_find_marked -EXPORT_SYMBOL_GPL vmlinux 0xe4f26121 sock_map_close -EXPORT_SYMBOL_GPL vmlinux 0xe4fdae03 ata_bmdma32_port_ops -EXPORT_SYMBOL_GPL vmlinux 0xe4fe4873 crypto_unregister_scomps -EXPORT_SYMBOL_GPL vmlinux 0xe5004cbb dma_mmap_noncontiguous -EXPORT_SYMBOL_GPL vmlinux 0xe5091bc2 power_supply_get_drvdata -EXPORT_SYMBOL_GPL vmlinux 0xe515dfd0 devlink_rate_leaf_destroy -EXPORT_SYMBOL_GPL vmlinux 0xe5227b67 dw_pcie_wait_for_link -EXPORT_SYMBOL_GPL vmlinux 0xe52cdfcc devm_gpiochip_add_data_with_key -EXPORT_SYMBOL_GPL vmlinux 0xe52d2f1c proc_dou8vec_minmax -EXPORT_SYMBOL_GPL vmlinux 0xe532ab20 spi_mem_poll_status -EXPORT_SYMBOL_GPL vmlinux 0xe534418b fwnode_property_read_string_array -EXPORT_SYMBOL_GPL vmlinux 0xe53e092f __traceiter_wbc_writepage -EXPORT_SYMBOL_GPL vmlinux 0xe55f362e __SCK__tp_func_neigh_event_send_done -EXPORT_SYMBOL_GPL vmlinux 0xe5870647 init_iova_domain -EXPORT_SYMBOL_GPL vmlinux 0xe5883bd9 class_compat_unregister -EXPORT_SYMBOL_GPL vmlinux 0xe5998b1c devlink_dpipe_headers_register -EXPORT_SYMBOL_GPL vmlinux 0xe5a8eb5c blkcg_root -EXPORT_SYMBOL_GPL vmlinux 0xe5ade0bd devm_clk_hw_register -EXPORT_SYMBOL_GPL vmlinux 0xe5af9169 led_trigger_set -EXPORT_SYMBOL_GPL vmlinux 0xe5b0a455 da903x_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0xe5b1e055 dev_queue_xmit_nit -EXPORT_SYMBOL_GPL vmlinux 0xe5b363c5 __SCK__tp_func_powernv_throttle -EXPORT_SYMBOL_GPL vmlinux 0xe5c42f82 dev_pm_opp_get_sharing_cpus -EXPORT_SYMBOL_GPL vmlinux 0xe5cc3955 dev_pm_opp_get_max_clock_latency -EXPORT_SYMBOL_GPL vmlinux 0xe5cdf575 __SCK__tp_func_block_split -EXPORT_SYMBOL_GPL vmlinux 0xe5d6893b perf_trace_run_bpf_submit -EXPORT_SYMBOL_GPL vmlinux 0xe5f7b55d dm_per_bio_data -EXPORT_SYMBOL_GPL vmlinux 0xe604b89c devlink_reload_disable -EXPORT_SYMBOL_GPL vmlinux 0xe60632a9 edac_queue_work -EXPORT_SYMBOL_GPL vmlinux 0xe6087761 fwnode_gpiod_get_index -EXPORT_SYMBOL_GPL vmlinux 0xe60a5e8d pids_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0xe614558d __rio_local_write_config_8 -EXPORT_SYMBOL_GPL vmlinux 0xe614b1c9 rtc_alarm_irq_enable -EXPORT_SYMBOL_GPL vmlinux 0xe628bb9f phy_fibre_port_array -EXPORT_SYMBOL_GPL vmlinux 0xe63a00f1 fib_nexthop_info -EXPORT_SYMBOL_GPL vmlinux 0xe64ad8ea unregister_nmi_handler -EXPORT_SYMBOL_GPL vmlinux 0xe653acf2 nf_queue_nf_hook_drop -EXPORT_SYMBOL_GPL vmlinux 0xe6680588 sdio_retune_hold_now -EXPORT_SYMBOL_GPL vmlinux 0xe67010e2 __vfs_removexattr_noperm -EXPORT_SYMBOL_GPL vmlinux 0xe677dc86 pm_generic_runtime_suspend -EXPORT_SYMBOL_GPL vmlinux 0xe6836441 usb_hcd_amd_remote_wakeup_quirk -EXPORT_SYMBOL_GPL vmlinux 0xe68ee49e kobject_uevent -EXPORT_SYMBOL_GPL vmlinux 0xe6963238 xenbus_dev_is_online -EXPORT_SYMBOL_GPL vmlinux 0xe6a257f1 divider_round_rate_parent -EXPORT_SYMBOL_GPL vmlinux 0xe6a74bb3 mbox_request_channel -EXPORT_SYMBOL_GPL vmlinux 0xe6b53b83 edac_mc_add_mc_with_groups -EXPORT_SYMBOL_GPL vmlinux 0xe6c8f979 blk_mq_alloc_sq_tag_set -EXPORT_SYMBOL_GPL vmlinux 0xe6d05377 __wake_up_locked_sync_key -EXPORT_SYMBOL_GPL vmlinux 0xe6dd538c dev_pm_enable_wake_irq -EXPORT_SYMBOL_GPL vmlinux 0xe6e40502 rcu_get_gp_seq -EXPORT_SYMBOL_GPL vmlinux 0xe6e9a8e4 regulator_irq_helper -EXPORT_SYMBOL_GPL vmlinux 0xe6f83837 acpi_bus_attach_private_data -EXPORT_SYMBOL_GPL vmlinux 0xe6feffcb wm831x_regmap_config -EXPORT_SYMBOL_GPL vmlinux 0xe7005e75 tps6586x_clr_bits -EXPORT_SYMBOL_GPL vmlinux 0xe700d767 reset_control_bulk_deassert -EXPORT_SYMBOL_GPL vmlinux 0xe71a64f6 wm8400_reset_codec_reg_cache -EXPORT_SYMBOL_GPL vmlinux 0xe7232e0f user_return_notifier_unregister -EXPORT_SYMBOL_GPL vmlinux 0xe72ceb75 xhci_get_ep_ctx -EXPORT_SYMBOL_GPL vmlinux 0xe7340b11 rtc_read_time -EXPORT_SYMBOL_GPL vmlinux 0xe73a8cac regulator_is_supported_voltage -EXPORT_SYMBOL_GPL vmlinux 0xe73ef3b3 regulator_set_voltage_sel_pickable_regmap -EXPORT_SYMBOL_GPL vmlinux 0xe73fb337 nd_cmd_out_size -EXPORT_SYMBOL_GPL vmlinux 0xe740b58a hv_vp_assist_page -EXPORT_SYMBOL_GPL vmlinux 0xe743888b dma_buf_begin_cpu_access -EXPORT_SYMBOL_GPL vmlinux 0xe753b68d devlink_fmsg_arr_pair_nest_end -EXPORT_SYMBOL_GPL vmlinux 0xe75ec538 usb_bus_idr -EXPORT_SYMBOL_GPL vmlinux 0xe769232e sprint_symbol_no_offset -EXPORT_SYMBOL_GPL vmlinux 0xe76ef7c0 switchdev_bridge_port_unoffload -EXPORT_SYMBOL_GPL vmlinux 0xe783e261 sysfs_emit -EXPORT_SYMBOL_GPL vmlinux 0xe791df1f rcu_nocb_cpu_deoffload -EXPORT_SYMBOL_GPL vmlinux 0xe793216a sysfs_file_change_owner -EXPORT_SYMBOL_GPL vmlinux 0xe79bf0c4 klp_shadow_get -EXPORT_SYMBOL_GPL vmlinux 0xe7bcf315 sysfs_create_files -EXPORT_SYMBOL_GPL vmlinux 0xe7c1b988 devm_kmemdup -EXPORT_SYMBOL_GPL vmlinux 0xe7d6d2d4 filter_match_preds -EXPORT_SYMBOL_GPL vmlinux 0xe7f3a0d8 sdio_writew -EXPORT_SYMBOL_GPL vmlinux 0xe7fefb3c virtio_device_freeze -EXPORT_SYMBOL_GPL vmlinux 0xe80409c9 ata_pci_shutdown_one -EXPORT_SYMBOL_GPL vmlinux 0xe808a7b3 __SCK__tp_func_pelt_rt_tp -EXPORT_SYMBOL_GPL vmlinux 0xe812431b class_dev_iter_init -EXPORT_SYMBOL_GPL vmlinux 0xe818b32b ata_bmdma_interrupt -EXPORT_SYMBOL_GPL vmlinux 0xe83eba32 itlb_multihit_kvm_mitigation -EXPORT_SYMBOL_GPL vmlinux 0xe845975f ima_file_hash -EXPORT_SYMBOL_GPL vmlinux 0xe84ec0e0 vp_modern_set_status -EXPORT_SYMBOL_GPL vmlinux 0xe84f6e5c pciserial_remove_ports -EXPORT_SYMBOL_GPL vmlinux 0xe856ec8d __fscrypt_inode_uses_inline_crypto -EXPORT_SYMBOL_GPL vmlinux 0xe85f6af1 regulator_enable -EXPORT_SYMBOL_GPL vmlinux 0xe862c4b7 dpm_suspend_start -EXPORT_SYMBOL_GPL vmlinux 0xe8693dbc acpi_pm_set_device_wakeup -EXPORT_SYMBOL_GPL vmlinux 0xe86a865e iomap_truncate_page -EXPORT_SYMBOL_GPL vmlinux 0xe8802232 skb_zerocopy_headlen -EXPORT_SYMBOL_GPL vmlinux 0xe8835b5e __xenmem_reservation_va_mapping_update -EXPORT_SYMBOL_GPL vmlinux 0xe88df8e1 rio_request_dma -EXPORT_SYMBOL_GPL vmlinux 0xe894b16f bpfilter_ops -EXPORT_SYMBOL_GPL vmlinux 0xe89b7f90 gpiod_set_debounce -EXPORT_SYMBOL_GPL vmlinux 0xe89d4214 ata_pci_device_do_resume -EXPORT_SYMBOL_GPL vmlinux 0xe89f2bb9 netdev_rx_handler_unregister -EXPORT_SYMBOL_GPL vmlinux 0xe8a4c79e icc_node_create -EXPORT_SYMBOL_GPL vmlinux 0xe8aaa5c8 perf_msr_probe -EXPORT_SYMBOL_GPL vmlinux 0xe8baab15 devlink_port_param_value_changed -EXPORT_SYMBOL_GPL vmlinux 0xe8c0065d memory_group_register_static -EXPORT_SYMBOL_GPL vmlinux 0xe8e0bd3f attribute_container_unregister -EXPORT_SYMBOL_GPL vmlinux 0xe8e235c8 arch_static_call_transform -EXPORT_SYMBOL_GPL vmlinux 0xe8e7a3ad mmc_sanitize -EXPORT_SYMBOL_GPL vmlinux 0xe8f43560 devm_extcon_dev_allocate -EXPORT_SYMBOL_GPL vmlinux 0xe90c97b0 device_get_phy_mode -EXPORT_SYMBOL_GPL vmlinux 0xe911df29 eventfd_ctx_do_read -EXPORT_SYMBOL_GPL vmlinux 0xe9173ead devm_request_pci_bus_resources -EXPORT_SYMBOL_GPL vmlinux 0xe9245695 badblocks_init -EXPORT_SYMBOL_GPL vmlinux 0xe92fd78a kernfs_notify -EXPORT_SYMBOL_GPL vmlinux 0xe93e49c3 devres_free -EXPORT_SYMBOL_GPL vmlinux 0xe94f6c4d handle_bad_irq -EXPORT_SYMBOL_GPL vmlinux 0xe9532eed __bio_crypt_clone -EXPORT_SYMBOL_GPL vmlinux 0xe9561a74 fib_info_nh_uses_dev -EXPORT_SYMBOL_GPL vmlinux 0xe9716117 spi_setup -EXPORT_SYMBOL_GPL vmlinux 0xe97ec946 acpiphp_unregister_attention -EXPORT_SYMBOL_GPL vmlinux 0xe97f2475 da903x_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0xe985d958 __kernel_write -EXPORT_SYMBOL_GPL vmlinux 0xe994c451 task_cls_state -EXPORT_SYMBOL_GPL vmlinux 0xe9a5e744 class_destroy -EXPORT_SYMBOL_GPL vmlinux 0xe9b50732 ip_icmp_error_rfc4884 -EXPORT_SYMBOL_GPL vmlinux 0xe9b8ce6e __tracepoint_cpu_frequency -EXPORT_SYMBOL_GPL vmlinux 0xe9ce931a kvm_para_available -EXPORT_SYMBOL_GPL vmlinux 0xe9d0d44c dm_send_uevents -EXPORT_SYMBOL_GPL vmlinux 0xe9d1b7cf irq_to_pcap -EXPORT_SYMBOL_GPL vmlinux 0xe9d534da gnttab_dma_alloc_pages -EXPORT_SYMBOL_GPL vmlinux 0xe9dce882 devm_regulator_get_optional -EXPORT_SYMBOL_GPL vmlinux 0xe9ef527e gpiochip_request_own_desc -EXPORT_SYMBOL_GPL vmlinux 0xe9fadf16 __SCT__tp_func_neigh_update_done -EXPORT_SYMBOL_GPL vmlinux 0xe9fb17c6 rdev_get_dev -EXPORT_SYMBOL_GPL vmlinux 0xea018bbb mpi_test_bit -EXPORT_SYMBOL_GPL vmlinux 0xea0b6582 icc_link_create -EXPORT_SYMBOL_GPL vmlinux 0xea124bd1 gcd -EXPORT_SYMBOL_GPL vmlinux 0xea1ad2d1 devlink_free -EXPORT_SYMBOL_GPL vmlinux 0xea38036f ring_buffer_entries -EXPORT_SYMBOL_GPL vmlinux 0xea3a23f3 public_key_free -EXPORT_SYMBOL_GPL vmlinux 0xea50bfde synchronize_srcu_expedited -EXPORT_SYMBOL_GPL vmlinux 0xea534287 iomap_releasepage -EXPORT_SYMBOL_GPL vmlinux 0xea5ac373 sata_scr_write -EXPORT_SYMBOL_GPL vmlinux 0xea5eda9a do_take_over_console -EXPORT_SYMBOL_GPL vmlinux 0xea660091 xenbus_watch_path -EXPORT_SYMBOL_GPL vmlinux 0xea8b7273 put_pid -EXPORT_SYMBOL_GPL vmlinux 0xeab497b6 pcc_mbox_request_channel -EXPORT_SYMBOL_GPL vmlinux 0xeabe92ea regmap_read -EXPORT_SYMBOL_GPL vmlinux 0xeac3aa75 devfreq_cooling_em_register -EXPORT_SYMBOL_GPL vmlinux 0xeacbd717 acpi_cppc_processor_probe -EXPORT_SYMBOL_GPL vmlinux 0xead3e41b __traceiter_cpu_frequency -EXPORT_SYMBOL_GPL vmlinux 0xead52cbd ata_sff_wait_after_reset -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 0xeaeb3d48 btree_last -EXPORT_SYMBOL_GPL vmlinux 0xeaf0a57c look_up_OID -EXPORT_SYMBOL_GPL vmlinux 0xeaf16893 fuse_conn_init -EXPORT_SYMBOL_GPL vmlinux 0xeb1d7cf4 fixed_phy_change_carrier -EXPORT_SYMBOL_GPL vmlinux 0xeb24b642 gpiod_count -EXPORT_SYMBOL_GPL vmlinux 0xeb29ccc2 reserve_iova -EXPORT_SYMBOL_GPL vmlinux 0xeb2d9e66 usb_string -EXPORT_SYMBOL_GPL vmlinux 0xeb2fe9b9 tty_kopen_exclusive -EXPORT_SYMBOL_GPL vmlinux 0xeb42bcee __tracepoint_neigh_event_send_dead -EXPORT_SYMBOL_GPL vmlinux 0xeb47c5cc phy_destroy -EXPORT_SYMBOL_GPL vmlinux 0xeb5a98e8 dma_request_chan -EXPORT_SYMBOL_GPL vmlinux 0xeb5c8c8e peernet2id_alloc -EXPORT_SYMBOL_GPL vmlinux 0xeb6e2fa1 unregister_wide_hw_breakpoint -EXPORT_SYMBOL_GPL vmlinux 0xeb7259fb extcon_get_property -EXPORT_SYMBOL_GPL vmlinux 0xeb73360e crypto_stats_akcipher_verify -EXPORT_SYMBOL_GPL vmlinux 0xeb833c22 xen_has_pv_disk_devices -EXPORT_SYMBOL_GPL vmlinux 0xeb8ca870 device_phy_find_device -EXPORT_SYMBOL_GPL vmlinux 0xeb94536f x86_platform -EXPORT_SYMBOL_GPL vmlinux 0xeb961640 cpufreq_table_index_unsorted -EXPORT_SYMBOL_GPL vmlinux 0xeba011aa pci_find_ht_capability -EXPORT_SYMBOL_GPL vmlinux 0xebaaf363 security_file_permission -EXPORT_SYMBOL_GPL vmlinux 0xebb37b81 extcon_dev_register -EXPORT_SYMBOL_GPL vmlinux 0xebbb4283 __tracepoint_mc_event -EXPORT_SYMBOL_GPL vmlinux 0xebc9a09f lock_system_sleep -EXPORT_SYMBOL_GPL vmlinux 0xebd4cc11 mctrl_gpio_enable_ms -EXPORT_SYMBOL_GPL vmlinux 0xebe6d3ca btree_init -EXPORT_SYMBOL_GPL vmlinux 0xebe73b51 ata_std_qc_defer -EXPORT_SYMBOL_GPL vmlinux 0xebfae86d strp_stop -EXPORT_SYMBOL_GPL vmlinux 0xec053eff gpiod_get_raw_value -EXPORT_SYMBOL_GPL vmlinux 0xec2a3b90 tcf_dev_queue_xmit -EXPORT_SYMBOL_GPL vmlinux 0xec480605 tps65912_device_exit -EXPORT_SYMBOL_GPL vmlinux 0xec4c5b78 blk_crypto_evict_key -EXPORT_SYMBOL_GPL vmlinux 0xec5668f6 dax_zero_page_range -EXPORT_SYMBOL_GPL vmlinux 0xec581293 rhashtable_walk_exit -EXPORT_SYMBOL_GPL vmlinux 0xec5ad73b trace_seq_bitmask -EXPORT_SYMBOL_GPL vmlinux 0xec5c2452 fsverity_file_open -EXPORT_SYMBOL_GPL vmlinux 0xec6a3c36 generic_fh_to_parent -EXPORT_SYMBOL_GPL vmlinux 0xec7193a9 skcipher_walk_done -EXPORT_SYMBOL_GPL vmlinux 0xec774acb cpufreq_frequency_table_verify -EXPORT_SYMBOL_GPL vmlinux 0xec788566 acpi_target_system_state -EXPORT_SYMBOL_GPL vmlinux 0xec8b8677 i2c_acpi_find_adapter_by_handle -EXPORT_SYMBOL_GPL vmlinux 0xec9d4c0b device_pm_wait_for_dev -EXPORT_SYMBOL_GPL vmlinux 0xeca73964 tpm_get_random -EXPORT_SYMBOL_GPL vmlinux 0xeca84250 ata_host_put -EXPORT_SYMBOL_GPL vmlinux 0xecb33738 __tracepoint_devlink_hwerr -EXPORT_SYMBOL_GPL vmlinux 0xecba68e3 gnttab_batch_map -EXPORT_SYMBOL_GPL vmlinux 0xecba89db perf_pmu_migrate_context -EXPORT_SYMBOL_GPL vmlinux 0xecc9d136 rt_mutex_unlock -EXPORT_SYMBOL_GPL vmlinux 0xeccaeff7 disk_update_readahead -EXPORT_SYMBOL_GPL vmlinux 0xecd8f23d xenbus_read -EXPORT_SYMBOL_GPL vmlinux 0xece8f719 __SCK__tp_func_rpm_resume -EXPORT_SYMBOL_GPL vmlinux 0xeceea656 device_node_to_regmap -EXPORT_SYMBOL_GPL vmlinux 0xecef3665 paste_selection -EXPORT_SYMBOL_GPL vmlinux 0xecf1be43 ata_scsi_unlock_native_capacity -EXPORT_SYMBOL_GPL vmlinux 0xed1abd36 usb_control_msg_send -EXPORT_SYMBOL_GPL vmlinux 0xed2f7a8d __traceiter_block_split -EXPORT_SYMBOL_GPL vmlinux 0xed324206 sbitmap_queue_show -EXPORT_SYMBOL_GPL vmlinux 0xed39b7b8 parse_OID -EXPORT_SYMBOL_GPL vmlinux 0xed3d9c5d rio_local_set_device_id -EXPORT_SYMBOL_GPL vmlinux 0xed403e4b __platform_driver_probe -EXPORT_SYMBOL_GPL vmlinux 0xed41956e crypto_spawn_tfm -EXPORT_SYMBOL_GPL vmlinux 0xed48f90c pci_walk_bus -EXPORT_SYMBOL_GPL vmlinux 0xed4c19a4 tcp_rate_check_app_limited -EXPORT_SYMBOL_GPL vmlinux 0xed4df7e2 __fl6_sock_lookup -EXPORT_SYMBOL_GPL vmlinux 0xed5f0082 fwnode_handle_get -EXPORT_SYMBOL_GPL vmlinux 0xed66c50a usb_for_each_dev -EXPORT_SYMBOL_GPL vmlinux 0xed74ac07 __tracepoint_tcp_bad_csum -EXPORT_SYMBOL_GPL vmlinux 0xed7957cb virtio_config_changed -EXPORT_SYMBOL_GPL vmlinux 0xed9eb0ab inet6_lookup -EXPORT_SYMBOL_GPL vmlinux 0xedb6a407 crypto_register_acomps -EXPORT_SYMBOL_GPL vmlinux 0xedc13c1a pci_find_next_ht_capability -EXPORT_SYMBOL_GPL vmlinux 0xedc1f53f umd_load_blob -EXPORT_SYMBOL_GPL vmlinux 0xedc2dc98 iommu_sva_find -EXPORT_SYMBOL_GPL vmlinux 0xedc444e0 vp_modern_set_queue_size -EXPORT_SYMBOL_GPL vmlinux 0xeddc4caf i2c_new_dummy_device -EXPORT_SYMBOL_GPL vmlinux 0xede98ec5 intel_pt_validate_hw_cap -EXPORT_SYMBOL_GPL vmlinux 0xedfefb03 dev_pm_opp_attach_genpd -EXPORT_SYMBOL_GPL vmlinux 0xee03fed7 ata_eh_freeze_port -EXPORT_SYMBOL_GPL vmlinux 0xee107e26 ata_pio_need_iordy -EXPORT_SYMBOL_GPL vmlinux 0xee13e697 set_personality_ia32 -EXPORT_SYMBOL_GPL vmlinux 0xee38ef57 register_switchdev_blocking_notifier -EXPORT_SYMBOL_GPL vmlinux 0xee4ef709 srcu_batches_completed -EXPORT_SYMBOL_GPL vmlinux 0xee518148 kmsg_dump_get_buffer -EXPORT_SYMBOL_GPL vmlinux 0xee636b22 devlink_port_register -EXPORT_SYMBOL_GPL vmlinux 0xee6b71c4 syscon_regmap_lookup_by_compatible -EXPORT_SYMBOL_GPL vmlinux 0xee6b8d55 aead_geniv_alloc -EXPORT_SYMBOL_GPL vmlinux 0xee6c633a devices_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0xee700b24 irq_domain_associate_many -EXPORT_SYMBOL_GPL vmlinux 0xee7b89dd sata_async_notification -EXPORT_SYMBOL_GPL vmlinux 0xee94534c ata_sas_port_init -EXPORT_SYMBOL_GPL vmlinux 0xeea5a711 list_lru_count_one -EXPORT_SYMBOL_GPL vmlinux 0xeea79771 mddev_resume -EXPORT_SYMBOL_GPL vmlinux 0xeeaaecde iommu_domain_free -EXPORT_SYMBOL_GPL vmlinux 0xeeab8650 smca_get_long_name -EXPORT_SYMBOL_GPL vmlinux 0xeeb6f865 trace_event_buffer_commit -EXPORT_SYMBOL_GPL vmlinux 0xeeb90f08 dev_pm_qos_remove_notifier -EXPORT_SYMBOL_GPL vmlinux 0xeec99eb1 ftrace_set_filter_ip -EXPORT_SYMBOL_GPL vmlinux 0xeed0cea4 kernel_read_file_from_fd -EXPORT_SYMBOL_GPL vmlinux 0xeedd987e phy_10gbit_features_array -EXPORT_SYMBOL_GPL vmlinux 0xeedfcec3 task_work_run -EXPORT_SYMBOL_GPL vmlinux 0xeee12970 sysfs_merge_group -EXPORT_SYMBOL_GPL vmlinux 0xeee667d3 fpregs_assert_state_consistent -EXPORT_SYMBOL_GPL vmlinux 0xeef5a56d sched_set_normal -EXPORT_SYMBOL_GPL vmlinux 0xeefb9adf devlink_param_driverinit_value_set -EXPORT_SYMBOL_GPL vmlinux 0xef06c607 nf_queue_entry_free -EXPORT_SYMBOL_GPL vmlinux 0xef1f6e23 apei_resources_request -EXPORT_SYMBOL_GPL vmlinux 0xef29fcdd clk_bulk_put -EXPORT_SYMBOL_GPL vmlinux 0xef3bdbae ohci_hub_control -EXPORT_SYMBOL_GPL vmlinux 0xef45b5b5 crypto_stats_aead_decrypt -EXPORT_SYMBOL_GPL vmlinux 0xef464c28 getboottime64 -EXPORT_SYMBOL_GPL vmlinux 0xef4c5c7c mbox_free_channel -EXPORT_SYMBOL_GPL vmlinux 0xef585421 raw_v4_hashinfo -EXPORT_SYMBOL_GPL vmlinux 0xef5db66d regulator_get_init_drvdata -EXPORT_SYMBOL_GPL vmlinux 0xef60ae52 clk_register_gate -EXPORT_SYMBOL_GPL vmlinux 0xef60bd9b pci_load_and_free_saved_state -EXPORT_SYMBOL_GPL vmlinux 0xef6c3f70 round_jiffies_up_relative -EXPORT_SYMBOL_GPL vmlinux 0xef6d8ae2 xhci_gen_setup -EXPORT_SYMBOL_GPL vmlinux 0xef70eb7e ring_buffer_iter_advance -EXPORT_SYMBOL_GPL vmlinux 0xef819358 usb_hcd_setup_local_mem -EXPORT_SYMBOL_GPL vmlinux 0xef8f310c sysfs_group_change_owner -EXPORT_SYMBOL_GPL vmlinux 0xef8fc95f kvm_async_pf_task_wait_schedule -EXPORT_SYMBOL_GPL vmlinux 0xef94348f pinctrl_utils_add_config -EXPORT_SYMBOL_GPL vmlinux 0xef9e45a5 sysfs_groups_change_owner -EXPORT_SYMBOL_GPL vmlinux 0xefa2c27d register_tracepoint_module_notifier -EXPORT_SYMBOL_GPL vmlinux 0xefbbd0cf xas_split -EXPORT_SYMBOL_GPL vmlinux 0xefbbf0a0 rdev_get_name -EXPORT_SYMBOL_GPL vmlinux 0xefd480ec proc_create_net_data_write -EXPORT_SYMBOL_GPL vmlinux 0xefdc7fe4 ata_sas_tport_delete -EXPORT_SYMBOL_GPL vmlinux 0xefeafcf1 edac_has_mcs -EXPORT_SYMBOL_GPL vmlinux 0xf0073888 pinctrl_select_state -EXPORT_SYMBOL_GPL vmlinux 0xf0093b60 __phy_modify -EXPORT_SYMBOL_GPL vmlinux 0xf0119ed9 cpci_hp_register_bus -EXPORT_SYMBOL_GPL vmlinux 0xf04429b4 acpi_bus_get_status_handle -EXPORT_SYMBOL_GPL vmlinux 0xf04b29af unregister_pernet_subsys -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 0xf06eaba4 strp_done -EXPORT_SYMBOL_GPL vmlinux 0xf0791449 msg_zerocopy_alloc -EXPORT_SYMBOL_GPL vmlinux 0xf085d27b devfreq_event_get_event -EXPORT_SYMBOL_GPL vmlinux 0xf089806c fscrypt_ioctl_get_nonce -EXPORT_SYMBOL_GPL vmlinux 0xf0910075 sfp_bus_del_upstream -EXPORT_SYMBOL_GPL vmlinux 0xf09f7702 user_destroy -EXPORT_SYMBOL_GPL vmlinux 0xf0a93437 __tracepoint_sched_overutilized_tp -EXPORT_SYMBOL_GPL vmlinux 0xf0af63ae sched_trace_rq_cpu -EXPORT_SYMBOL_GPL vmlinux 0xf0b17e92 devlink_dpipe_entry_ctx_prepare -EXPORT_SYMBOL_GPL vmlinux 0xf0b5e2e9 devm_rtc_device_register -EXPORT_SYMBOL_GPL vmlinux 0xf0b9acdd platform_get_resource -EXPORT_SYMBOL_GPL vmlinux 0xf0ce8563 pci_add_dynid -EXPORT_SYMBOL_GPL vmlinux 0xf0e5a1d3 crypto_hash_alg_has_setkey -EXPORT_SYMBOL_GPL vmlinux 0xf10aeecc kthread_unpark -EXPORT_SYMBOL_GPL vmlinux 0xf1176015 platform_device_add -EXPORT_SYMBOL_GPL vmlinux 0xf1328c04 vp_modern_get_num_queues -EXPORT_SYMBOL_GPL vmlinux 0xf16387cc devlink_trap_policers_register -EXPORT_SYMBOL_GPL vmlinux 0xf184d189 kernel_power_off -EXPORT_SYMBOL_GPL vmlinux 0xf19035c4 regulator_force_disable -EXPORT_SYMBOL_GPL vmlinux 0xf193176c devm_pinctrl_unregister -EXPORT_SYMBOL_GPL vmlinux 0xf1b00fbe ata_do_set_mode -EXPORT_SYMBOL_GPL vmlinux 0xf1b73859 tps6586x_get_version -EXPORT_SYMBOL_GPL vmlinux 0xf1cb4e9c xenbus_read_otherend_details -EXPORT_SYMBOL_GPL vmlinux 0xf1cd8929 kvm_read_and_reset_apf_flags -EXPORT_SYMBOL_GPL vmlinux 0xf1ce2118 get_kernel_pages -EXPORT_SYMBOL_GPL vmlinux 0xf1d1c613 icc_enable -EXPORT_SYMBOL_GPL vmlinux 0xf1d6863f rio_set_port_lockout -EXPORT_SYMBOL_GPL vmlinux 0xf1e54f8c perf_pmu_register -EXPORT_SYMBOL_GPL vmlinux 0xf1e83fb6 regulator_map_voltage_ascend -EXPORT_SYMBOL_GPL vmlinux 0xf203dec1 uart_handle_dcd_change -EXPORT_SYMBOL_GPL vmlinux 0xf20864e2 sysfs_remove_link -EXPORT_SYMBOL_GPL vmlinux 0xf211cee0 pci_bus_add_device -EXPORT_SYMBOL_GPL vmlinux 0xf21d93e6 rio_unregister_driver -EXPORT_SYMBOL_GPL vmlinux 0xf21e1f9b disable_percpu_irq -EXPORT_SYMBOL_GPL vmlinux 0xf226533e pstore_unregister -EXPORT_SYMBOL_GPL vmlinux 0xf22bc2c3 xenbus_watch_pathfmt -EXPORT_SYMBOL_GPL vmlinux 0xf24c03bb device_set_wakeup_capable -EXPORT_SYMBOL_GPL vmlinux 0xf2515c06 scsi_host_unblock -EXPORT_SYMBOL_GPL vmlinux 0xf255d277 icc_get_name -EXPORT_SYMBOL_GPL vmlinux 0xf25f67f9 fat_time_fat2unix -EXPORT_SYMBOL_GPL vmlinux 0xf26df9f5 rio_dev_get -EXPORT_SYMBOL_GPL vmlinux 0xf2780d13 iommu_enable_nesting -EXPORT_SYMBOL_GPL vmlinux 0xf27bd752 mmu_notifier_unregister -EXPORT_SYMBOL_GPL vmlinux 0xf27d0a7b gnttab_grant_foreign_access_ref -EXPORT_SYMBOL_GPL vmlinux 0xf2854e0a __traceiter_sched_util_est_cfs_tp -EXPORT_SYMBOL_GPL vmlinux 0xf28568ef regulator_bulk_unregister_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0xf2967796 ring_buffer_record_on -EXPORT_SYMBOL_GPL vmlinux 0xf2a3afa2 __fscrypt_encrypt_symlink -EXPORT_SYMBOL_GPL vmlinux 0xf2b15fde skb_gso_validate_mac_len -EXPORT_SYMBOL_GPL vmlinux 0xf2b33cb7 memory_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0xf2c1e7bb crypto_drop_spawn -EXPORT_SYMBOL_GPL vmlinux 0xf2c53d53 pci_write_msi_msg -EXPORT_SYMBOL_GPL vmlinux 0xf2c79d54 dma_buf_map_attachment -EXPORT_SYMBOL_GPL vmlinux 0xf2f04716 iomap_writepage -EXPORT_SYMBOL_GPL vmlinux 0xf2f9c71c blk_queue_can_use_dma_map_merging -EXPORT_SYMBOL_GPL vmlinux 0xf2fb61bd vprintk_default -EXPORT_SYMBOL_GPL vmlinux 0xf30a5502 cpufreq_enable_boost_support -EXPORT_SYMBOL_GPL vmlinux 0xf311e156 key_being_used_for -EXPORT_SYMBOL_GPL vmlinux 0xf31632e0 ezx_pcap_read -EXPORT_SYMBOL_GPL vmlinux 0xf3189f7e __uv_cpu_info -EXPORT_SYMBOL_GPL vmlinux 0xf31acf5b alloc_iova_fast -EXPORT_SYMBOL_GPL vmlinux 0xf31b3fd1 workqueue_set_max_active -EXPORT_SYMBOL_GPL vmlinux 0xf321d49a crypto_unregister_ahashes -EXPORT_SYMBOL_GPL vmlinux 0xf32bdc5d unregister_xenstore_notifier -EXPORT_SYMBOL_GPL vmlinux 0xf32ee4c5 ata_port_pbar_desc -EXPORT_SYMBOL_GPL vmlinux 0xf331236f btree_geo32 -EXPORT_SYMBOL_GPL vmlinux 0xf33d5a50 dma_get_required_mask -EXPORT_SYMBOL_GPL vmlinux 0xf34b52aa irq_domain_associate -EXPORT_SYMBOL_GPL vmlinux 0xf34d45a1 udp_destruct_common -EXPORT_SYMBOL_GPL vmlinux 0xf352023f memory_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0xf365b55b nf_queue_entry_get_refs -EXPORT_SYMBOL_GPL vmlinux 0xf366d494 __fib_lookup -EXPORT_SYMBOL_GPL vmlinux 0xf36a5cab phy_reset -EXPORT_SYMBOL_GPL vmlinux 0xf3741eaf perf_event_pause -EXPORT_SYMBOL_GPL vmlinux 0xf3797506 mpi_ec_deinit -EXPORT_SYMBOL_GPL vmlinux 0xf3808cb1 get_state_synchronize_rcu -EXPORT_SYMBOL_GPL vmlinux 0xf3911f89 vfs_test_lock -EXPORT_SYMBOL_GPL vmlinux 0xf39dfeb3 __SCK__tp_func_neigh_update_done -EXPORT_SYMBOL_GPL vmlinux 0xf3a0a021 iomap_migrate_page -EXPORT_SYMBOL_GPL vmlinux 0xf3ae16af usb_hcd_end_port_resume -EXPORT_SYMBOL_GPL vmlinux 0xf3b451ca kdb_poll_funcs -EXPORT_SYMBOL_GPL vmlinux 0xf3e37aef devm_regulator_bulk_get -EXPORT_SYMBOL_GPL vmlinux 0xf3ee56cf device_get_named_child_node -EXPORT_SYMBOL_GPL vmlinux 0xf3f4ff7f regmap_async_complete -EXPORT_SYMBOL_GPL vmlinux 0xf403184f dev_pm_qos_flags -EXPORT_SYMBOL_GPL vmlinux 0xf40d9d00 virtqueue_kick -EXPORT_SYMBOL_GPL vmlinux 0xf41530db tps6586x_writes -EXPORT_SYMBOL_GPL vmlinux 0xf4252265 pci_store_saved_state -EXPORT_SYMBOL_GPL vmlinux 0xf428e227 i2c_dw_validate_speed -EXPORT_SYMBOL_GPL vmlinux 0xf430e063 tcp_ca_get_key_by_name -EXPORT_SYMBOL_GPL vmlinux 0xf430f90c iomap_swapfile_activate -EXPORT_SYMBOL_GPL vmlinux 0xf43af3fa devm_regulator_put -EXPORT_SYMBOL_GPL vmlinux 0xf44137a4 __tracepoint_neigh_timer_handler -EXPORT_SYMBOL_GPL vmlinux 0xf447644e scsi_dh_set_params -EXPORT_SYMBOL_GPL vmlinux 0xf45379ec skb_scrub_packet -EXPORT_SYMBOL_GPL vmlinux 0xf45459a7 virtqueue_kick_prepare -EXPORT_SYMBOL_GPL vmlinux 0xf45c4673 bus_sort_breadthfirst -EXPORT_SYMBOL_GPL vmlinux 0xf4689d50 linkmode_set_pause -EXPORT_SYMBOL_GPL vmlinux 0xf46b4b59 led_set_brightness -EXPORT_SYMBOL_GPL vmlinux 0xf46e4745 iomap_ioend_try_merge -EXPORT_SYMBOL_GPL vmlinux 0xf47654df irq_check_status_bit -EXPORT_SYMBOL_GPL vmlinux 0xf485d7a6 ring_buffer_swap_cpu -EXPORT_SYMBOL_GPL vmlinux 0xf4930678 devm_spi_mem_dirmap_destroy -EXPORT_SYMBOL_GPL vmlinux 0xf49f620b fuse_dax_cancel_work -EXPORT_SYMBOL_GPL vmlinux 0xf4af35c2 rcu_gp_is_normal -EXPORT_SYMBOL_GPL vmlinux 0xf4b3eeed led_trigger_unregister_simple -EXPORT_SYMBOL_GPL vmlinux 0xf4b7292c dm_accept_partial_bio -EXPORT_SYMBOL_GPL vmlinux 0xf4b81372 cpufreq_register_governor -EXPORT_SYMBOL_GPL vmlinux 0xf4bb0cbc ncsi_register_dev -EXPORT_SYMBOL_GPL vmlinux 0xf4c0b513 xen_xlate_remap_gfn_array -EXPORT_SYMBOL_GPL vmlinux 0xf4cd9f8f reset_control_bulk_release -EXPORT_SYMBOL_GPL vmlinux 0xf4dd89bf uv_get_hubless_system -EXPORT_SYMBOL_GPL vmlinux 0xf4deba5a dev_pm_opp_free_cpufreq_table -EXPORT_SYMBOL_GPL vmlinux 0xf4f69d1f clk_hw_unregister_gate -EXPORT_SYMBOL_GPL vmlinux 0xf4f6d968 handle_mm_fault -EXPORT_SYMBOL_GPL vmlinux 0xf5284695 sata_scr_valid -EXPORT_SYMBOL_GPL vmlinux 0xf53cf90d pci_msi_unmask_irq -EXPORT_SYMBOL_GPL vmlinux 0xf54859f3 regmap_write_async -EXPORT_SYMBOL_GPL vmlinux 0xf54bd49b lcm -EXPORT_SYMBOL_GPL vmlinux 0xf54ec654 devm_clk_hw_get_clk -EXPORT_SYMBOL_GPL vmlinux 0xf553318d cpuidle_pause_and_lock -EXPORT_SYMBOL_GPL vmlinux 0xf55d0883 devm_phy_get -EXPORT_SYMBOL_GPL vmlinux 0xf572b8c3 usb_free_coherent -EXPORT_SYMBOL_GPL vmlinux 0xf57379ec debugfs_create_file_size -EXPORT_SYMBOL_GPL vmlinux 0xf57bbc3c decrypt_blob -EXPORT_SYMBOL_GPL vmlinux 0xf57e8a3e ack_all_badblocks -EXPORT_SYMBOL_GPL vmlinux 0xf58f477e vfio_register_group_dev -EXPORT_SYMBOL_GPL vmlinux 0xf5950dd6 usb_control_msg -EXPORT_SYMBOL_GPL vmlinux 0xf59f228e irq_domain_set_hwirq_and_chip -EXPORT_SYMBOL_GPL vmlinux 0xf5a3ba99 linear_range_values_in_range -EXPORT_SYMBOL_GPL vmlinux 0xf5a691cd invalidate_bh_lrus -EXPORT_SYMBOL_GPL vmlinux 0xf5acd414 sdio_writeb_readb -EXPORT_SYMBOL_GPL vmlinux 0xf5c6e010 driver_for_each_device -EXPORT_SYMBOL_GPL vmlinux 0xf5d5736a fscrypt_show_test_dummy_encryption -EXPORT_SYMBOL_GPL vmlinux 0xf5f370e0 async_schedule_node -EXPORT_SYMBOL_GPL vmlinux 0xf5fd961b handle_simple_irq -EXPORT_SYMBOL_GPL vmlinux 0xf6038d1b add_to_page_cache_lru -EXPORT_SYMBOL_GPL vmlinux 0xf62c2c53 phy_pm_runtime_allow -EXPORT_SYMBOL_GPL vmlinux 0xf62ea426 raw_unhash_sk -EXPORT_SYMBOL_GPL vmlinux 0xf6382013 devm_regulator_irq_helper -EXPORT_SYMBOL_GPL vmlinux 0xf663ee2f pcap_adc_sync -EXPORT_SYMBOL_GPL vmlinux 0xf67ec7ac pci_try_reset_function -EXPORT_SYMBOL_GPL vmlinux 0xf6800e2b vp_modern_queue_address -EXPORT_SYMBOL_GPL vmlinux 0xf6875f4b fscrypt_prepare_new_inode -EXPORT_SYMBOL_GPL vmlinux 0xf68edbc7 extcon_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0xf691499b wakeup_source_unregister -EXPORT_SYMBOL_GPL vmlinux 0xf691e7bc verify_pkcs7_signature -EXPORT_SYMBOL_GPL vmlinux 0xf6a28554 region_intersects -EXPORT_SYMBOL_GPL vmlinux 0xf6ae7ba4 pinctrl_find_gpio_range_from_pin -EXPORT_SYMBOL_GPL vmlinux 0xf6b21c94 tty_prepare_flip_string -EXPORT_SYMBOL_GPL vmlinux 0xf6c71a25 cper_severity_str -EXPORT_SYMBOL_GPL vmlinux 0xf6c8dc62 cpu_hotplug_enable -EXPORT_SYMBOL_GPL vmlinux 0xf6e687bb __sock_recv_ts_and_drops -EXPORT_SYMBOL_GPL vmlinux 0xf6e772c3 irq_bypass_unregister_producer -EXPORT_SYMBOL_GPL vmlinux 0xf6e874f5 ata_timing_merge -EXPORT_SYMBOL_GPL vmlinux 0xf6f16c56 rcu_barrier_tasks -EXPORT_SYMBOL_GPL vmlinux 0xf6f36274 sysfs_remove_file_self -EXPORT_SYMBOL_GPL vmlinux 0xf6f68b1b vfio_external_group_match_file -EXPORT_SYMBOL_GPL vmlinux 0xf6fa00b7 sbitmap_queue_wake_all -EXPORT_SYMBOL_GPL vmlinux 0xf6fe2a29 acpi_dev_get_dma_resources -EXPORT_SYMBOL_GPL vmlinux 0xf706763b md_bitmap_resize -EXPORT_SYMBOL_GPL vmlinux 0xf707b5f6 tty_port_unregister_device -EXPORT_SYMBOL_GPL vmlinux 0xf70cd08f sk_msg_memcopy_from_iter -EXPORT_SYMBOL_GPL vmlinux 0xf70e4a4d preempt_schedule_notrace -EXPORT_SYMBOL_GPL vmlinux 0xf72a65ea tty_get_char_size -EXPORT_SYMBOL_GPL vmlinux 0xf7342736 regulator_disable_regmap -EXPORT_SYMBOL_GPL vmlinux 0xf7455c16 input_event_to_user -EXPORT_SYMBOL_GPL vmlinux 0xf746c431 ata_sff_queue_pio_task -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 0xf767ca35 fixed_percpu_data -EXPORT_SYMBOL_GPL vmlinux 0xf773f4a4 regmap_fields_read -EXPORT_SYMBOL_GPL vmlinux 0xf7745bcf inet_csk_listen_stop -EXPORT_SYMBOL_GPL vmlinux 0xf77fe479 trace_event_reg -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 0xf78b573a vfio_group_iommu_domain -EXPORT_SYMBOL_GPL vmlinux 0xf7a89cc3 iommu_dev_enable_feature -EXPORT_SYMBOL_GPL vmlinux 0xf7bc95b0 devlink_fmsg_pair_nest_start -EXPORT_SYMBOL_GPL vmlinux 0xf7c3f273 xen_resume_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0xf7cecaa0 xdp_rxq_info_unused -EXPORT_SYMBOL_GPL vmlinux 0xf7d961d8 clk_hw_unregister_composite -EXPORT_SYMBOL_GPL vmlinux 0xf7e4e0ca phy_power_on -EXPORT_SYMBOL_GPL vmlinux 0xf7f2aae7 da9052_disable_irq -EXPORT_SYMBOL_GPL vmlinux 0xf7f81357 dummy_irq_chip -EXPORT_SYMBOL_GPL vmlinux 0xf7fdec45 klist_prev -EXPORT_SYMBOL_GPL vmlinux 0xf7fe3526 acpi_processor_get_performance_info -EXPORT_SYMBOL_GPL vmlinux 0xf8116f31 skcipher_walk_async -EXPORT_SYMBOL_GPL vmlinux 0xf8227afb ehci_cf_port_reset_rwsem -EXPORT_SYMBOL_GPL vmlinux 0xf82f3657 work_on_cpu -EXPORT_SYMBOL_GPL vmlinux 0xf851c436 usb_add_phy -EXPORT_SYMBOL_GPL vmlinux 0xf857299e rhashtable_walk_peek -EXPORT_SYMBOL_GPL vmlinux 0xf859c2e1 unregister_trace_event -EXPORT_SYMBOL_GPL vmlinux 0xf85e1e0c ata_bmdma_error_handler -EXPORT_SYMBOL_GPL vmlinux 0xf8640742 vfio_pci_core_uninit_device -EXPORT_SYMBOL_GPL vmlinux 0xf86b08a1 device_remove_file -EXPORT_SYMBOL_GPL vmlinux 0xf873d4dc fpu_copy_uabi_to_guest_fpstate -EXPORT_SYMBOL_GPL vmlinux 0xf878974a msg_zerocopy_realloc -EXPORT_SYMBOL_GPL vmlinux 0xf881cecd load_fixmap_gdt -EXPORT_SYMBOL_GPL vmlinux 0xf8851b1b ip6_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0xf89a3c83 spi_res_add -EXPORT_SYMBOL_GPL vmlinux 0xf8a730a6 ata_std_sched_eh -EXPORT_SYMBOL_GPL vmlinux 0xf8a8d0c9 kgdb_register_io_module -EXPORT_SYMBOL_GPL vmlinux 0xf8f153a2 init_uts_ns -EXPORT_SYMBOL_GPL vmlinux 0xf8f3a0fb ata_ratelimit -EXPORT_SYMBOL_GPL vmlinux 0xf8fe3986 pat_pfn_immune_to_uc_mtrr -EXPORT_SYMBOL_GPL vmlinux 0xf90330ed dev_attr_ncq_prio_supported -EXPORT_SYMBOL_GPL vmlinux 0xf919d912 phy_package_leave -EXPORT_SYMBOL_GPL vmlinux 0xf92bfee2 device_del -EXPORT_SYMBOL_GPL vmlinux 0xf95322f4 kthread_parkme -EXPORT_SYMBOL_GPL vmlinux 0xf955e9c5 bprintf -EXPORT_SYMBOL_GPL vmlinux 0xf98258d7 phy_modify_mmd -EXPORT_SYMBOL_GPL vmlinux 0xf98bb37f regmap_can_raw_write -EXPORT_SYMBOL_GPL vmlinux 0xf98d95e1 noop_invalidatepage -EXPORT_SYMBOL_GPL vmlinux 0xf98dd96a blk_queue_zone_write_granularity -EXPORT_SYMBOL_GPL vmlinux 0xf99cc696 transport_configure_device -EXPORT_SYMBOL_GPL vmlinux 0xf9a054b5 __round_jiffies -EXPORT_SYMBOL_GPL vmlinux 0xf9b34a0b iopf_queue_free -EXPORT_SYMBOL_GPL vmlinux 0xf9bac5d3 pm_generic_thaw_noirq -EXPORT_SYMBOL_GPL vmlinux 0xfa1eb910 unregister_syscore_ops -EXPORT_SYMBOL_GPL vmlinux 0xfa255556 regcache_drop_region -EXPORT_SYMBOL_GPL vmlinux 0xfa349688 aer_recover_queue -EXPORT_SYMBOL_GPL vmlinux 0xfa35044a alternatives_patched -EXPORT_SYMBOL_GPL vmlinux 0xfa49f5a7 xas_load -EXPORT_SYMBOL_GPL vmlinux 0xfa56c934 icc_std_aggregate -EXPORT_SYMBOL_GPL vmlinux 0xfa5866b0 debugfs_attr_write -EXPORT_SYMBOL_GPL vmlinux 0xfa666974 queue_work_node -EXPORT_SYMBOL_GPL vmlinux 0xfa690589 netdev_cmd_to_name -EXPORT_SYMBOL_GPL vmlinux 0xfa82b4fc dev_pm_opp_remove -EXPORT_SYMBOL_GPL vmlinux 0xfa82b503 fl6_merge_options -EXPORT_SYMBOL_GPL vmlinux 0xfa936ae8 skb_complete_tx_timestamp -EXPORT_SYMBOL_GPL vmlinux 0xfa97a1b8 phy_restore_page -EXPORT_SYMBOL_GPL vmlinux 0xfa992a5f fwnode_graph_get_remote_node -EXPORT_SYMBOL_GPL vmlinux 0xfaa921c1 skb_cow_data -EXPORT_SYMBOL_GPL vmlinux 0xfaaf3ed8 component_bind_all -EXPORT_SYMBOL_GPL vmlinux 0xfab30dc0 mdio_bus_exit -EXPORT_SYMBOL_GPL vmlinux 0xfab53ed9 pinctrl_gpio_can_use_line -EXPORT_SYMBOL_GPL vmlinux 0xfab5f313 sk_msg_is_readable -EXPORT_SYMBOL_GPL vmlinux 0xfabefbd6 user_read -EXPORT_SYMBOL_GPL vmlinux 0xfac3a0a8 inet6_sock_destruct -EXPORT_SYMBOL_GPL vmlinux 0xfac8958c inet6_cleanup_sock -EXPORT_SYMBOL_GPL vmlinux 0xfaceacce crypto_inst_setname -EXPORT_SYMBOL_GPL vmlinux 0xfad9c827 kill_dax -EXPORT_SYMBOL_GPL vmlinux 0xfad9cb02 crypto_unregister_skcipher -EXPORT_SYMBOL_GPL vmlinux 0xfaeb0e8c __SCK__tp_func_pelt_cfs_tp -EXPORT_SYMBOL_GPL vmlinux 0xfb04e255 sata_pmp_port_ops -EXPORT_SYMBOL_GPL vmlinux 0xfb32b30f ring_buffer_read_prepare_sync -EXPORT_SYMBOL_GPL vmlinux 0xfb3a678b pci_epf_type_add_cfs -EXPORT_SYMBOL_GPL vmlinux 0xfb3dcd13 irq_alloc_generic_chip -EXPORT_SYMBOL_GPL vmlinux 0xfb41400f device_create_with_groups -EXPORT_SYMBOL_GPL vmlinux 0xfb44cdd0 usb_acpi_port_lpm_incapable -EXPORT_SYMBOL_GPL vmlinux 0xfb4ea6e8 tracepoint_probe_register_prio_may_exist -EXPORT_SYMBOL_GPL vmlinux 0xfb636f5d fscrypt_ioctl_get_policy_ex -EXPORT_SYMBOL_GPL vmlinux 0xfb65f78a crypto_shash_update -EXPORT_SYMBOL_GPL vmlinux 0xfb6eedf9 power_group_name -EXPORT_SYMBOL_GPL vmlinux 0xfb799bee pinctrl_dev_get_devname -EXPORT_SYMBOL_GPL vmlinux 0xfb92ad78 vfs_submount -EXPORT_SYMBOL_GPL vmlinux 0xfba205d7 gpiod_get_direction -EXPORT_SYMBOL_GPL vmlinux 0xfbad83e1 usb_alloc_coherent -EXPORT_SYMBOL_GPL vmlinux 0xfbb0ed93 device_init_wakeup -EXPORT_SYMBOL_GPL vmlinux 0xfbbd41ca no_action -EXPORT_SYMBOL_GPL vmlinux 0xfbcdf71f fib_nh_common_init -EXPORT_SYMBOL_GPL vmlinux 0xfbde0447 tty_buffer_set_limit -EXPORT_SYMBOL_GPL vmlinux 0xfbeeb13c phy_gbit_all_ports_features -EXPORT_SYMBOL_GPL vmlinux 0xfbf8ba68 blk_rq_err_bytes -EXPORT_SYMBOL_GPL vmlinux 0xfbfa45b8 dma_wait_for_async_tx -EXPORT_SYMBOL_GPL vmlinux 0xfbffd601 net_prio_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0xfc0385f3 edac_device_del_device -EXPORT_SYMBOL_GPL vmlinux 0xfc03d97a page_is_ram -EXPORT_SYMBOL_GPL vmlinux 0xfc14bb2e dm_get_dev_t -EXPORT_SYMBOL_GPL vmlinux 0xfc199555 tty_ldisc_flush -EXPORT_SYMBOL_GPL vmlinux 0xfc19bc45 crypto_dh_encode_key -EXPORT_SYMBOL_GPL vmlinux 0xfc1cb271 sbitmap_queue_min_shallow_depth -EXPORT_SYMBOL_GPL vmlinux 0xfc1f99e8 edac_mc_find_csrow_by_page -EXPORT_SYMBOL_GPL vmlinux 0xfc201b66 sprint_oid -EXPORT_SYMBOL_GPL vmlinux 0xfc224115 dev_attr_ncq_prio_enable -EXPORT_SYMBOL_GPL vmlinux 0xfc254d15 gnttab_free_auto_xlat_frames -EXPORT_SYMBOL_GPL vmlinux 0xfc2a18fb kset_find_obj -EXPORT_SYMBOL_GPL vmlinux 0xfc3731ba init_dummy_netdev -EXPORT_SYMBOL_GPL vmlinux 0xfc3b4246 acpi_bus_update_power -EXPORT_SYMBOL_GPL vmlinux 0xfc4f2756 spi_mem_dirmap_create -EXPORT_SYMBOL_GPL vmlinux 0xfc77d7ec usb_intf_get_dma_device -EXPORT_SYMBOL_GPL vmlinux 0xfca79b8b srcu_torture_stats_print -EXPORT_SYMBOL_GPL vmlinux 0xfcbfec70 add_memory_driver_managed -EXPORT_SYMBOL_GPL vmlinux 0xfcc1edd3 memory_block_size_bytes -EXPORT_SYMBOL_GPL vmlinux 0xfcc5aa4d pci_remove_root_bus -EXPORT_SYMBOL_GPL vmlinux 0xfcca5424 register_kprobe -EXPORT_SYMBOL_GPL vmlinux 0xfcd17f1d ip_valid_fib_dump_req -EXPORT_SYMBOL_GPL vmlinux 0xfce6ce12 locks_release_private -EXPORT_SYMBOL_GPL vmlinux 0xfcf4920e tcp_enter_memory_pressure -EXPORT_SYMBOL_GPL vmlinux 0xfcf4f949 phy_set_media -EXPORT_SYMBOL_GPL vmlinux 0xfcf7ef4c scsi_mode_select -EXPORT_SYMBOL_GPL vmlinux 0xfcf9ef73 hw_protection_shutdown -EXPORT_SYMBOL_GPL vmlinux 0xfcffee6d serdev_device_add -EXPORT_SYMBOL_GPL vmlinux 0xfd0ac750 alloc_skb_for_msg -EXPORT_SYMBOL_GPL vmlinux 0xfd0c90b2 crypto_grab_ahash -EXPORT_SYMBOL_GPL vmlinux 0xfd1d1947 pinctrl_unregister -EXPORT_SYMBOL_GPL vmlinux 0xfd22cf22 ata_bmdma_port_ops -EXPORT_SYMBOL_GPL vmlinux 0xfd27b881 xen_remap_pfn -EXPORT_SYMBOL_GPL vmlinux 0xfd338549 pcie_port_bus_type -EXPORT_SYMBOL_GPL vmlinux 0xfd4a294d simple_attr_release -EXPORT_SYMBOL_GPL vmlinux 0xfd5b79a0 ncsi_vlan_rx_add_vid -EXPORT_SYMBOL_GPL vmlinux 0xfd619ff4 sock_gen_put -EXPORT_SYMBOL_GPL vmlinux 0xfd717269 ata_sas_port_alloc -EXPORT_SYMBOL_GPL vmlinux 0xfd7243c7 erst_disable -EXPORT_SYMBOL_GPL vmlinux 0xfd7bbb51 nf_hooks_lwtunnel_sysctl_handler -EXPORT_SYMBOL_GPL vmlinux 0xfd8578f4 usb_debug_root -EXPORT_SYMBOL_GPL vmlinux 0xfda1cb5b devfreq_cooling_register -EXPORT_SYMBOL_GPL vmlinux 0xfda55a76 mmc_crypto_setup_queue -EXPORT_SYMBOL_GPL vmlinux 0xfda61c25 irq_domain_get_irq_data -EXPORT_SYMBOL_GPL vmlinux 0xfda94c85 virtqueue_enable_cb -EXPORT_SYMBOL_GPL vmlinux 0xfdaa0e19 usb_phy_roothub_resume -EXPORT_SYMBOL_GPL vmlinux 0xfdaea4ca usb_unlink_urb -EXPORT_SYMBOL_GPL vmlinux 0xfdbd0d46 pci_generic_config_write32 -EXPORT_SYMBOL_GPL vmlinux 0xfdbd7a17 crypto_get_attr_type -EXPORT_SYMBOL_GPL vmlinux 0xfdc1cf50 nd_blk_region_set_provider_data -EXPORT_SYMBOL_GPL vmlinux 0xfdd29408 phy_modify_mmd_changed -EXPORT_SYMBOL_GPL vmlinux 0xfdd6e1b6 fat_build_inode -EXPORT_SYMBOL_GPL vmlinux 0xfde3085f vga_default_device -EXPORT_SYMBOL_GPL vmlinux 0xfde98ae8 fuse_conn_get -EXPORT_SYMBOL_GPL vmlinux 0xfe05983e usb_remove_phy -EXPORT_SYMBOL_GPL vmlinux 0xfe0e7cd3 apei_exec_post_unmap_gars -EXPORT_SYMBOL_GPL vmlinux 0xfe1a7a7b mpi_point_release -EXPORT_SYMBOL_GPL vmlinux 0xfe1ddddf usb_free_streams -EXPORT_SYMBOL_GPL vmlinux 0xfe1eff23 acpi_device_modalias -EXPORT_SYMBOL_GPL vmlinux 0xfe220ed4 tty_buffer_lock_exclusive -EXPORT_SYMBOL_GPL vmlinux 0xfe27af16 gpiod_put_array -EXPORT_SYMBOL_GPL vmlinux 0xfe37a4c0 dev_pm_put_subsys_data -EXPORT_SYMBOL_GPL vmlinux 0xfe476039 ktime_get_resolution_ns -EXPORT_SYMBOL_GPL vmlinux 0xfe5a27f8 bpf_redirect_info -EXPORT_SYMBOL_GPL vmlinux 0xfe5aad0c divider_ro_determine_rate -EXPORT_SYMBOL_GPL vmlinux 0xfe5f7982 tracepoint_probe_unregister -EXPORT_SYMBOL_GPL vmlinux 0xfe695369 __pm_runtime_resume -EXPORT_SYMBOL_GPL vmlinux 0xfe727411 get_phys_to_machine -EXPORT_SYMBOL_GPL vmlinux 0xfe8cdb84 ring_buffer_alloc_read_page -EXPORT_SYMBOL_GPL vmlinux 0xfe951da2 crypto_destroy_tfm -EXPORT_SYMBOL_GPL vmlinux 0xfe975714 da9052_regmap_config -EXPORT_SYMBOL_GPL vmlinux 0xfe990052 gpio_free -EXPORT_SYMBOL_GPL vmlinux 0xfeb46432 md_find_rdev_rcu -EXPORT_SYMBOL_GPL vmlinux 0xfeb64a42 iommu_get_domain_for_dev -EXPORT_SYMBOL_GPL vmlinux 0xfec3bf84 icst_clk_setup -EXPORT_SYMBOL_GPL vmlinux 0xfeca271c extcon_set_state_sync -EXPORT_SYMBOL_GPL vmlinux 0xfed11ed1 usb_mon_deregister -EXPORT_SYMBOL_GPL vmlinux 0xfed561ff divider_determine_rate -EXPORT_SYMBOL_GPL vmlinux 0xfeea7728 pci_user_write_config_dword -EXPORT_SYMBOL_GPL vmlinux 0xfeeecd05 apei_read -EXPORT_SYMBOL_GPL vmlinux 0xfef1594b xdp_rxq_info_unreg_mem_model -EXPORT_SYMBOL_GPL vmlinux 0xfef8cf54 __i2c_board_lock -EXPORT_SYMBOL_GPL vmlinux 0xfefba995 devm_platform_get_and_ioremap_resource -EXPORT_SYMBOL_GPL vmlinux 0xff05fa13 vring_interrupt -EXPORT_SYMBOL_GPL vmlinux 0xff0aab52 console_drivers -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 0xff337599 pci_intx -EXPORT_SYMBOL_GPL vmlinux 0xff39cc21 __SCK__tp_func_devlink_hwmsg -EXPORT_SYMBOL_GPL vmlinux 0xff3a40ba tcp_twsk_destructor -EXPORT_SYMBOL_GPL vmlinux 0xff405498 lwtstate_free -EXPORT_SYMBOL_GPL vmlinux 0xff42c374 usb_role_switch_get_role -EXPORT_SYMBOL_GPL vmlinux 0xff6c0dd5 get_state_synchronize_srcu -EXPORT_SYMBOL_GPL vmlinux 0xff70e4ff vring_del_virtqueue -EXPORT_SYMBOL_GPL vmlinux 0xff7274ab acpi_dev_remove_driver_gpios -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 0xff9e23d1 hugetlb_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0xff9f4e08 netdev_walk_all_lower_dev_rcu -EXPORT_SYMBOL_GPL vmlinux 0xffae8e8b nsecs_to_jiffies -EXPORT_SYMBOL_GPL vmlinux 0xffc2a112 crypto_ahash_final -EXPORT_SYMBOL_GPL vmlinux 0xffc9eecb pci_epc_destroy -EXPORT_SYMBOL_GPL vmlinux 0xffce7966 pci_set_pcie_reset_state -EXPORT_SYMBOL_GPL vmlinux 0xffd8230f dev_pm_opp_get_voltage -EXPORT_SYMBOL_GPL vmlinux 0xffe5a9e6 to_nvdimm_bus_dev -EXPORT_SYMBOL_GPL vmlinux 0xffe73a66 devres_open_group -FIRMWARE_LOADER_PRIVATE EXPORT_SYMBOL_GPL 0xd3ae7756 fw_fallback_config vmlinux -IDXD EXPORT_SYMBOL_GPL 0x0ded4a18 idxd_drv drivers/dma/idxd/idxd -IDXD EXPORT_SYMBOL_GPL 0x17df8783 __idxd_driver_register drivers/dma/idxd/idxd_bus -IDXD EXPORT_SYMBOL_GPL 0x4e2e610d idxd_dmaengine_drv drivers/dma/idxd/idxd -IDXD EXPORT_SYMBOL_GPL 0x724c46a3 dsa_bus_type drivers/dma/idxd/idxd_bus -IDXD EXPORT_SYMBOL_GPL 0x9198a15a idxd_user_drv drivers/dma/idxd/idxd -IDXD EXPORT_SYMBOL_GPL 0xe668551b idxd_driver_unregister drivers/dma/idxd/idxd_bus -IIO_ADISLIB EXPORT_SYMBOL 0x66e66bd5 adis_debugfs_reg_access drivers/iio/imu/adis_lib -IIO_ADISLIB EXPORT_SYMBOL 0xc3f6423c __adis_enable_irq drivers/iio/imu/adis_lib -IIO_ADISLIB EXPORT_SYMBOL_GPL 0x036bfa91 adis_init drivers/iio/imu/adis_lib -IIO_ADISLIB EXPORT_SYMBOL_GPL 0x14e29bf7 adis_single_conversion drivers/iio/imu/adis_lib -IIO_ADISLIB EXPORT_SYMBOL_GPL 0x1d62265d devm_adis_probe_trigger drivers/iio/imu/adis_lib -IIO_ADISLIB EXPORT_SYMBOL_GPL 0x3285de14 __adis_initial_startup drivers/iio/imu/adis_lib -IIO_ADISLIB EXPORT_SYMBOL_GPL 0x3f553d81 devm_adis_setup_buffer_and_trigger drivers/iio/imu/adis_lib -IIO_ADISLIB EXPORT_SYMBOL_GPL 0x6a0d3d4b __adis_write_reg drivers/iio/imu/adis_lib -IIO_ADISLIB EXPORT_SYMBOL_GPL 0x6bc97e2d __adis_read_reg drivers/iio/imu/adis_lib -IIO_ADISLIB EXPORT_SYMBOL_GPL 0x7168b6ed __adis_check_status drivers/iio/imu/adis_lib -IIO_ADISLIB EXPORT_SYMBOL_GPL 0xcf9c5935 __adis_update_bits_base drivers/iio/imu/adis_lib -IIO_ADISLIB EXPORT_SYMBOL_GPL 0xd65fe0f6 adis_update_scan_mode drivers/iio/imu/adis_lib -IIO_ADIS_LIB EXPORT_SYMBOL_GPL 0x1fe5a0fb __adis_reset drivers/iio/imu/adis_lib -IIO_HID EXPORT_SYMBOL 0x237ec6ff hid_sensor_convert_timestamp drivers/iio/common/hid-sensors/hid-sensor-iio-common -IIO_HID EXPORT_SYMBOL 0x31f5bc2e hid_sensor_remove_trigger drivers/iio/common/hid-sensors/hid-sensor-trigger -IIO_HID EXPORT_SYMBOL 0x43374924 hid_sensor_write_samp_freq_value drivers/iio/common/hid-sensors/hid-sensor-iio-common -IIO_HID EXPORT_SYMBOL 0x4820a196 hid_sensor_power_state drivers/iio/common/hid-sensors/hid-sensor-trigger -IIO_HID EXPORT_SYMBOL 0x498370cb hid_sensor_write_raw_hyst_value drivers/iio/common/hid-sensors/hid-sensor-iio-common -IIO_HID EXPORT_SYMBOL 0x6618ec63 hid_sensor_read_samp_freq_value drivers/iio/common/hid-sensors/hid-sensor-iio-common -IIO_HID EXPORT_SYMBOL 0x7f7621ec hid_sensor_format_scale drivers/iio/common/hid-sensors/hid-sensor-iio-common -IIO_HID EXPORT_SYMBOL 0x8fa59a95 hid_sensor_parse_common_attributes drivers/iio/common/hid-sensors/hid-sensor-iio-common -IIO_HID EXPORT_SYMBOL 0x98f4dbbe hid_sensor_read_raw_hyst_value drivers/iio/common/hid-sensors/hid-sensor-iio-common -IIO_HID EXPORT_SYMBOL 0x9f0041f7 hid_sensor_read_raw_hyst_rel_value drivers/iio/common/hid-sensors/hid-sensor-iio-common -IIO_HID EXPORT_SYMBOL 0xbcd6d94a hid_sensor_setup_trigger drivers/iio/common/hid-sensors/hid-sensor-trigger -IIO_HID EXPORT_SYMBOL 0xbd14869c hid_sensor_write_raw_hyst_rel_value drivers/iio/common/hid-sensors/hid-sensor-iio-common -IIO_HID EXPORT_SYMBOL 0xf8726aba hid_sensor_pm_ops drivers/iio/common/hid-sensors/hid-sensor-trigger -IIO_HID_ATTRIBUTES EXPORT_SYMBOL 0x35ca2652 hid_sensor_batch_mode_supported drivers/iio/common/hid-sensors/hid-sensor-iio-common -IIO_HID_ATTRIBUTES EXPORT_SYMBOL 0x63a6da2a hid_sensor_read_poll_value drivers/iio/common/hid-sensors/hid-sensor-iio-common -IIO_HID_ATTRIBUTES EXPORT_SYMBOL 0x7b3c4f22 hid_sensor_set_report_latency drivers/iio/common/hid-sensors/hid-sensor-iio-common -IIO_HID_ATTRIBUTES EXPORT_SYMBOL 0xf5d84b17 hid_sensor_get_report_latency drivers/iio/common/hid-sensors/hid-sensor-iio-common -INT340X_THERMAL EXPORT_SYMBOL_GPL 0x08d80887 processor_thermal_send_mbox_write_cmd drivers/thermal/intel/int340x_thermal/processor_thermal_mbox -INT340X_THERMAL EXPORT_SYMBOL_GPL 0x43be6b92 processor_thermal_send_mbox_read_cmd drivers/thermal/intel/int340x_thermal/processor_thermal_mbox -LTC2497 EXPORT_SYMBOL 0x4266e3bb ltc2497core_probe drivers/iio/adc/ltc2497-core -LTC2497 EXPORT_SYMBOL 0x5aa7d413 ltc2497core_remove drivers/iio/adc/ltc2497-core -MCB EXPORT_SYMBOL_GPL 0x162ca5e8 mcb_device_register drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0x31483914 mcb_bus_get drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0x3666c840 mcb_bus_put drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0x3ce7757a mcb_free_dev drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0x66123219 mcb_bus_add_devices drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0x67911730 mcb_unregister_driver drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0x712f8197 mcb_get_resource drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0x854083f5 __mcb_register_driver drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0x872877d1 mcb_get_irq drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0x8c86dd51 mcb_request_mem drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0xa51e719c chameleon_parse_cells drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0xcf424977 mcb_alloc_bus drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0xd8ee27dd mcb_alloc_dev drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0xeb2c8905 mcb_release_mem drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0xf4783366 mcb_release_bus drivers/mcb/mcb -NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x0dc6145e nvme_find_get_ns drivers/nvme/host/nvme-core -NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x584c7b74 nvme_put_ns drivers/nvme/host/nvme-core -NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x8b354413 nvme_command_effects drivers/nvme/host/nvme-core -NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0xacf534bf nvme_ctrl_from_file drivers/nvme/host/nvme-core -NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0xdbaaac4a nvme_execute_passthru_rq drivers/nvme/host/nvme-core -PMBUS EXPORT_SYMBOL_GPL 0x15ec2dc5 pmbus_get_fan_rate_device drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0x1d7ff522 pmbus_read_byte_data drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0x25b1292d pmbus_update_byte_data drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0x35398a8c pmbus_write_byte_data drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0x3db6fcf2 pmbus_get_debugfs_dir drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0x42b33ef7 pmbus_write_byte drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0x43180b39 pmbus_update_fan drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0x47709c24 pmbus_set_update drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0x6bd7bf63 pmbus_clear_cache drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0x745e341f pmbus_clear_faults drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0x76db1c16 pmbus_check_word_register drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0x97904864 pmbus_check_byte_register drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0x9df1e8b9 pmbus_do_probe drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0xb0568b4c pmbus_get_fan_rate_cached drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0xb22f9d04 pmbus_write_word_data drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0xb981034d pmbus_set_page drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0xd53f5011 pmbus_regulator_ops drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0xd6cf0966 pmbus_get_driver_info drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0xe60a964c pmbus_read_word_data drivers/hwmon/pmbus/pmbus_core -SND_HDA_SCODEC_CS35L41 EXPORT_SYMBOL_GPL 0xd40fa943 cs35l41_hda_probe sound/pci/hda/snd-hda-scodec-cs35l41 -SND_HDA_SCODEC_CS35L41 EXPORT_SYMBOL_GPL 0xe5717f86 cs35l41_hda_remove sound/pci/hda/snd-hda-scodec-cs35l41 -SND_INTEL_SOUNDWIRE_ACPI EXPORT_SYMBOL 0xbb4f9d1f sdw_intel_acpi_scan sound/hda/snd-intel-sdw-acpi -SND_SOC_INTEL_HDA_DSP_COMMON EXPORT_SYMBOL 0xe152662f hda_dsp_hdmi_build_controls sound/soc/intel/boards/snd-soc-intel-hda-dsp-common -SND_SOC_INTEL_SOF_MAXIM_COMMON EXPORT_SYMBOL 0x54fec7e0 max_98357a_dai_link sound/soc/intel/boards/snd-soc-intel-sof-maxim-common -SND_SOC_INTEL_SOF_MAXIM_COMMON EXPORT_SYMBOL 0x56e43d1c max_98373_ops sound/soc/intel/boards/snd-soc-intel-sof-maxim-common -SND_SOC_INTEL_SOF_MAXIM_COMMON EXPORT_SYMBOL 0x60f14e02 max_98360a_dai_link sound/soc/intel/boards/snd-soc-intel-sof-maxim-common -SND_SOC_INTEL_SOF_MAXIM_COMMON EXPORT_SYMBOL 0x70b75a54 max_98373_spk_codec_init sound/soc/intel/boards/snd-soc-intel-sof-maxim-common -SND_SOC_INTEL_SOF_MAXIM_COMMON EXPORT_SYMBOL 0x7cf359ab max_98373_dapm_routes sound/soc/intel/boards/snd-soc-intel-sof-maxim-common -SND_SOC_INTEL_SOF_MAXIM_COMMON EXPORT_SYMBOL 0x7fce1c85 max_98373_trigger sound/soc/intel/boards/snd-soc-intel-sof-maxim-common -SND_SOC_INTEL_SOF_MAXIM_COMMON EXPORT_SYMBOL 0x9cc9daa3 max_98373_set_codec_conf sound/soc/intel/boards/snd-soc-intel-sof-maxim-common -SND_SOC_INTEL_SOF_MAXIM_COMMON EXPORT_SYMBOL 0xb8f4ef41 max_98373_components sound/soc/intel/boards/snd-soc-intel-sof-maxim-common -SND_SOC_SOF_ACPI_DEV EXPORT_SYMBOL 0x7518f126 sof_acpi_probe sound/soc/sof/snd-sof-acpi -SND_SOC_SOF_ACPI_DEV EXPORT_SYMBOL 0xb3215cbd sof_acpi_remove sound/soc/sof/snd-sof-acpi -SND_SOC_SOF_ACPI_DEV EXPORT_SYMBOL 0xc0e33ec8 sof_acpi_pm sound/soc/sof/snd-sof-acpi -SND_SOC_SOF_HDA_AUDIO_CODEC EXPORT_SYMBOL 0x3649dd90 hda_codec_jack_check sound/soc/sof/intel/snd-sof-intel-hda -SND_SOC_SOF_HDA_AUDIO_CODEC EXPORT_SYMBOL 0xbb3937c7 hda_codec_jack_wake_enable sound/soc/sof/intel/snd-sof-intel-hda -SND_SOC_SOF_HDA_AUDIO_CODEC EXPORT_SYMBOL 0xd5b8c6a3 hda_codec_probe_bus sound/soc/sof/intel/snd-sof-intel-hda -SND_SOC_SOF_HDA_AUDIO_CODEC_I915 EXPORT_SYMBOL 0x29494515 hda_codec_i915_init sound/soc/sof/intel/snd-sof-intel-hda -SND_SOC_SOF_HDA_AUDIO_CODEC_I915 EXPORT_SYMBOL 0x6db95263 hda_codec_i915_display_power sound/soc/sof/intel/snd-sof-intel-hda -SND_SOC_SOF_HDA_AUDIO_CODEC_I915 EXPORT_SYMBOL 0xd8aae652 hda_codec_i915_exit sound/soc/sof/intel/snd-sof-intel-hda -SND_SOC_SOF_INTEL_ATOM_HIFI_EP EXPORT_SYMBOL 0x22faf20e atom_send_msg sound/soc/sof/intel/snd-sof-intel-atom -SND_SOC_SOF_INTEL_ATOM_HIFI_EP EXPORT_SYMBOL 0x251b56d0 atom_dai 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 0x5184c02b atom_get_window_offset sound/soc/sof/intel/snd-sof-intel-atom -SND_SOC_SOF_INTEL_ATOM_HIFI_EP EXPORT_SYMBOL 0x706b85c6 atom_get_mailbox_offset sound/soc/sof/intel/snd-sof-intel-atom -SND_SOC_SOF_INTEL_ATOM_HIFI_EP EXPORT_SYMBOL 0x9e0700fc atom_set_mach_params sound/soc/sof/intel/snd-sof-intel-atom -SND_SOC_SOF_INTEL_ATOM_HIFI_EP EXPORT_SYMBOL 0xb36a94ba atom_reset sound/soc/sof/intel/snd-sof-intel-atom -SND_SOC_SOF_INTEL_ATOM_HIFI_EP EXPORT_SYMBOL 0xdf5c5509 atom_dump sound/soc/sof/intel/snd-sof-intel-atom -SND_SOC_SOF_INTEL_ATOM_HIFI_EP EXPORT_SYMBOL 0xefa4a41a atom_irq_handler sound/soc/sof/intel/snd-sof-intel-atom -SND_SOC_SOF_INTEL_ATOM_HIFI_EP EXPORT_SYMBOL 0xf05e1d62 atom_machine_select sound/soc/sof/intel/snd-sof-intel-atom -SND_SOC_SOF_INTEL_ATOM_HIFI_EP EXPORT_SYMBOL 0xf8c3a440 atom_run sound/soc/sof/intel/snd-sof-intel-atom -SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0x001c563b sof_cnl_ops sound/soc/sof/intel/snd-sof-intel-hda-common -SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0x14394178 adls_chip_info sound/soc/sof/intel/snd-sof-intel-hda-common -SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0x47531300 icl_chip_info sound/soc/sof/intel/snd-sof-intel-hda-common -SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0x56a235a1 tgl_chip_info sound/soc/sof/intel/snd-sof-intel-hda-common -SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0x62370c95 tglh_chip_info sound/soc/sof/intel/snd-sof-intel-hda-common -SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0x6fc3e755 hda_pci_intel_probe sound/soc/sof/intel/snd-sof-intel-hda-common -SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0x75d8b6d5 sof_apl_ops sound/soc/sof/intel/snd-sof-intel-hda-common -SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0x7dc7c722 apl_chip_info sound/soc/sof/intel/snd-sof-intel-hda-common -SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0x8a6f3d8e ehl_chip_info sound/soc/sof/intel/snd-sof-intel-hda-common -SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0x8f359001 jsl_chip_info sound/soc/sof/intel/snd-sof-intel-hda-common -SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0xd248a9e5 cnl_chip_info sound/soc/sof/intel/snd-sof-intel-hda-common -SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0xe3fa2bda sof_tgl_ops sound/soc/sof/intel/snd-sof-intel-hda-common -SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0xf00b2b33 sof_icl_ops sound/soc/sof/intel/snd-sof-intel-hda-common -SND_SOC_SOF_INTEL_HIFI_EP_IPC EXPORT_SYMBOL 0x00b17bf9 intel_pcm_open sound/soc/sof/intel/snd-sof-intel-ipc -SND_SOC_SOF_INTEL_HIFI_EP_IPC EXPORT_SYMBOL 0x5bcd98c0 intel_ipc_msg_data sound/soc/sof/intel/snd-sof-intel-ipc -SND_SOC_SOF_INTEL_HIFI_EP_IPC EXPORT_SYMBOL 0x67e13273 intel_pcm_close sound/soc/sof/intel/snd-sof-intel-ipc -SND_SOC_SOF_INTEL_HIFI_EP_IPC EXPORT_SYMBOL 0xb2ffb108 intel_ipc_pcm_params sound/soc/sof/intel/snd-sof-intel-ipc -SND_SOC_SOF_PCI_DEV EXPORT_SYMBOL 0x332a1af7 sof_pci_remove sound/soc/sof/snd-sof-pci -SND_SOC_SOF_PCI_DEV EXPORT_SYMBOL 0x6e6dfb4e sof_pci_probe sound/soc/sof/snd-sof-pci -SND_SOC_SOF_PCI_DEV EXPORT_SYMBOL 0x8a01d783 sof_pci_shutdown sound/soc/sof/snd-sof-pci -SND_SOC_SOF_PCI_DEV EXPORT_SYMBOL 0xeb318061 sof_pci_pm sound/soc/sof/snd-sof-pci -SND_SOC_SOF_XTENSA EXPORT_SYMBOL 0x8b22a8cb sof_xtensa_arch_ops sound/soc/sof/xtensa/snd-sof-xtensa-dsp -SOUNDWIRE_INTEL_INIT EXPORT_SYMBOL 0x0c6edacf sdw_intel_exit drivers/soundwire/soundwire-intel -SOUNDWIRE_INTEL_INIT EXPORT_SYMBOL 0x44376c8f 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 0xd2cc652f sdw_intel_probe drivers/soundwire/soundwire-intel -SOUNDWIRE_INTEL_INIT EXPORT_SYMBOL 0xe9815b1a sdw_intel_process_wakeen_event drivers/soundwire/soundwire-intel -TEST_FIRMWARE EXPORT_SYMBOL_GPL 0x9d8a8803 efi_embedded_fw_list vmlinux -TEST_FIRMWARE EXPORT_SYMBOL_GPL 0x9dd8d0e2 efi_embedded_fw_checked vmlinux -USB_STORAGE EXPORT_SYMBOL_GPL 0x01cc9c8b usb_stor_ctrl_transfer drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x0d2ea338 usb_stor_bulk_srb drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x0fb5933f usb_stor_post_reset drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x1bc3edc2 usb_stor_sense_invalidCDB drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x425eaf06 usb_stor_probe1 drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x5e9c1d22 usb_stor_suspend drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x67be9871 usb_stor_transparent_scsi_command drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x68f66697 fill_inquiry_response drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x724c2a9e usb_stor_resume drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x76455546 usb_stor_reset_resume drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x8196a41b usb_stor_probe2 drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x8442aa49 usb_stor_bulk_transfer_sg drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x915dd16b usb_stor_set_xfer_buf drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0xa08cfa06 usb_stor_access_xfer_buf drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0xa7cf040e usb_stor_Bulk_reset drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0xa9ff359c usb_stor_Bulk_transport drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0xad64df5b usb_stor_bulk_transfer_buf drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0xb5fd721a usb_stor_pre_reset drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0xbec37b73 usb_stor_control_msg drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0xc9fc56ec usb_stor_CB_reset drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0xe0d7f8ce usb_stor_clear_halt drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0xe32dc0bd usb_stor_CB_transport drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0xe699066f usb_stor_host_template_init drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0xeab96671 usb_stor_adjust_quirks drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0xf5bcd22f usb_stor_disconnect drivers/usb/storage/usb-storage reverted: --- linux-nvidia-tegra-5.15.0/debian.realtime/abi/amd64/realtime.compiler +++ linux-nvidia-tegra-5.15.0.orig/debian.realtime/abi/amd64/realtime.compiler @@ -1 +0,0 @@ -GCC: (Ubuntu 11.4.0-1ubuntu1~22.04) 11.4.0 reverted: --- linux-nvidia-tegra-5.15.0/debian.realtime/abi/amd64/realtime.modules +++ linux-nvidia-tegra-5.15.0.orig/debian.realtime/abi/amd64/realtime.modules @@ -1,6015 +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 -cec-gpio -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 -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 -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 -f81604 -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-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-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 -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 -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-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 -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 -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 -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_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 -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-nvidia-tegra-5.15.0/debian.realtime/abi/amd64/realtime.modules.builtin +++ linux-nvidia-tegra-5.15.0.orig/debian.realtime/abi/amd64/realtime.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-nvidia-tegra-5.15.0/debian.realtime/abi/amd64/realtime.retpoline +++ linux-nvidia-tegra-5.15.0.orig/debian.realtime/abi/amd64/realtime.retpoline @@ -1 +0,0 @@ -# retpoline v1.0 reverted: --- linux-nvidia-tegra-5.15.0/debian.realtime/abi/arm64/realtime +++ linux-nvidia-tegra-5.15.0.orig/debian.realtime/abi/arm64/realtime @@ -1,26479 +0,0 @@ -CRYPTO_INTERNAL EXPORT_SYMBOL_GPL 0x21503986 crypto_cipher_encrypt_one vmlinux -CRYPTO_INTERNAL EXPORT_SYMBOL_GPL 0x5793b4e9 crypto_cipher_setkey vmlinux -CRYPTO_INTERNAL EXPORT_SYMBOL_GPL 0x807d09d6 crypto_cipher_decrypt_one vmlinux -CXL EXPORT_SYMBOL_GPL 0x0708da90 is_cxl_nvdimm drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x308996b4 devm_cxl_add_nvdimm drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x3e88ee87 cxl_probe_component_regs drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x45cd7fe6 is_root_decoder drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x4f12ae08 to_cxl_nvdimm_bridge drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x5b221aeb devm_cxl_add_decoder drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x5c65269e cxl_bus_type drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x5f0cf869 cxl_add_dport drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x608ef5a0 to_cxl_decoder drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x73ae1358 devm_cxl_add_memdev drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x75746083 cxl_map_device_regs drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x80171ba5 devm_cxl_add_nvdimm_bridge drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x98f1e2be devm_cxl_add_port drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xb35ae122 to_cxl_nvdimm drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xd11dd922 cxl_probe_device_regs drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xe26232ae cxl_driver_unregister drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xe6694a33 cxl_map_component_regs drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xf3c8c832 __cxl_driver_register drivers/cxl/core/cxl_core -EXPORT_SYMBOL arch/arm64/crypto/aes-ce-cipher 0x3b620e48 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 0x094b234a crypto_nhpoly1305_setkey -EXPORT_SYMBOL crypto/nhpoly1305 0x2f828a58 crypto_nhpoly1305_update -EXPORT_SYMBOL crypto/nhpoly1305 0x49e2d14e crypto_nhpoly1305_final_helper -EXPORT_SYMBOL crypto/nhpoly1305 0x9ebaad8f crypto_nhpoly1305_init -EXPORT_SYMBOL crypto/nhpoly1305 0xe9d9fded crypto_nhpoly1305_update_helper -EXPORT_SYMBOL crypto/nhpoly1305 0xf2ce2866 crypto_nhpoly1305_final -EXPORT_SYMBOL crypto/sha3_generic 0x64c7444e crypto_sha3_final -EXPORT_SYMBOL crypto/sha3_generic 0xa64f5ec2 crypto_sha3_update -EXPORT_SYMBOL crypto/sha3_generic 0xab97471e crypto_sha3_init -EXPORT_SYMBOL crypto/sm2_generic 0x8a566d43 sm2_compute_z_digest -EXPORT_SYMBOL crypto/sm3_generic 0x205e08e8 crypto_sm3_final -EXPORT_SYMBOL crypto/sm3_generic 0xc98c713d crypto_sm3_update -EXPORT_SYMBOL crypto/sm3_generic 0xed894af6 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 0x75471812 suni_init -EXPORT_SYMBOL drivers/bcma/bcma 0x0339b209 bcma_core_dma_translation -EXPORT_SYMBOL drivers/bcma/bcma 0xcc0e59a9 bcma_core_irq -EXPORT_SYMBOL drivers/block/drbd/drbd 0x127a5901 drbd_set_st_err_str -EXPORT_SYMBOL drivers/block/drbd/drbd 0x35131b36 drbd_role_str -EXPORT_SYMBOL drivers/block/drbd/drbd 0x7730f22d drbd_conn_str -EXPORT_SYMBOL drivers/block/drbd/drbd 0xaf27bebf drbd_disk_str -EXPORT_SYMBOL drivers/bluetooth/btbcm 0x85d165b9 btbcm_patchram -EXPORT_SYMBOL drivers/bluetooth/btrsi 0xb0992e9c rsi_bt_ops -EXPORT_SYMBOL drivers/bus/mhi/host/mhi 0x3b1943b5 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 0x48e668c5 ipmi_add_smi -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x4c2054d7 ipmi_request_settime -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x50f65edf ipmi_set_gets_events -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x67369b42 ipmi_addr_src_to_str -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x6a4cfadf ipmi_smi_watcher_unregister -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x74778a80 ipmi_get_my_LUN -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x78b56a57 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 0x8902c818 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 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 0x018a61dc st33zp24_remove -EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x851ddfa1 st33zp24_pm_suspend -EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0xb99e8b7c st33zp24_probe -EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0xef445762 st33zp24_pm_resume -EXPORT_SYMBOL drivers/char/xillybus/xillybus_class 0x8206aa58 xillybus_find_inode -EXPORT_SYMBOL drivers/char/xillybus/xillybus_class 0x9d7438f4 xillybus_init_chrdev -EXPORT_SYMBOL drivers/char/xillybus/xillybus_class 0xcd9ab951 xillybus_cleanup_chrdev -EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x25978d50 xillybus_isr -EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x303429bf xillybus_init_endpoint -EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x85dcdc55 xillybus_endpoint_discovery -EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0xd22f5fa7 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 0x491bf28d atmel_i2c_enqueue -EXPORT_SYMBOL drivers/crypto/atmel-i2c 0x80a11b1d atmel_i2c_init_read_cmd -EXPORT_SYMBOL drivers/crypto/atmel-i2c 0x8582c6d6 atmel_i2c_probe -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/atmel-i2c 0xff73a9e1 atmel_i2c_send_receive -EXPORT_SYMBOL drivers/crypto/caam/caam 0x17572340 caam_congested -EXPORT_SYMBOL drivers/crypto/caam/caam 0x22ecf70d 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 0x5e9b5a6a caam_drv_ctx_update -EXPORT_SYMBOL drivers/crypto/caam/caam 0x67468af7 caam_drv_ctx_init -EXPORT_SYMBOL drivers/crypto/caam/caam 0xb01991ba caam_qi_enqueue -EXPORT_SYMBOL drivers/crypto/caam/caam 0xc0eaa792 qi_cache_alloc -EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0x0f16b162 split_key_done -EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0xa33ce837 caam_jr_free -EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0xbdb8c882 gen_split_key -EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0xc1bfae45 caam_jr_alloc -EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0xe1ae96de caam_jr_enqueue -EXPORT_SYMBOL drivers/crypto/caam/caamalg_desc 0x2e152bb7 cnstr_shdsc_xts_skcipher_encap -EXPORT_SYMBOL drivers/crypto/caam/caamalg_desc 0x3b54a9ad cnstr_shdsc_aead_decap -EXPORT_SYMBOL drivers/crypto/caam/caamalg_desc 0x76a68e3e cnstr_shdsc_chachapoly -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 0x3e335b5d dpaa2_caam_enqueue -EXPORT_SYMBOL drivers/crypto/caam/error 0x53d0fc97 caam_ptr_sz -EXPORT_SYMBOL drivers/crypto/caam/error 0xa51f16c7 caam_little_end -EXPORT_SYMBOL drivers/crypto/caam/error 0xbd67c092 caam_imx -EXPORT_SYMBOL drivers/crypto/caam/error 0xcd3344ae caam_strstatus -EXPORT_SYMBOL drivers/crypto/caam/error 0xd25da602 caam_dump_sg -EXPORT_SYMBOL drivers/dma/xilinx/xilinx_dma 0x282b171b xilinx_vdma_channel_set_config -EXPORT_SYMBOL drivers/firewire/firewire-core 0x07cfc2c7 fw_bus_type -EXPORT_SYMBOL drivers/firewire/firewire-core 0x0bc6094c fw_core_remove_descriptor -EXPORT_SYMBOL drivers/firewire/firewire-core 0x2885fec5 fw_get_request_speed -EXPORT_SYMBOL drivers/firewire/firewire-core 0x2d86dd98 fw_core_remove_card -EXPORT_SYMBOL drivers/firewire/firewire-core 0x3a4b4521 fw_iso_context_stop -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 0x3e302f0c fw_core_add_address_handler -EXPORT_SYMBOL drivers/firewire/firewire-core 0x41654f98 fw_send_request -EXPORT_SYMBOL drivers/firewire/firewire-core 0x44d33438 fw_iso_context_destroy -EXPORT_SYMBOL drivers/firewire/firewire-core 0x4c7a3723 fw_card_initialize -EXPORT_SYMBOL drivers/firewire/firewire-core 0x5ce10c3b fw_core_remove_address_handler -EXPORT_SYMBOL drivers/firewire/firewire-core 0x678476e5 fw_iso_context_flush_completions -EXPORT_SYMBOL drivers/firewire/firewire-core 0x6afece1c fw_iso_context_create -EXPORT_SYMBOL drivers/firewire/firewire-core 0x6dc50487 fw_csr_string -EXPORT_SYMBOL drivers/firewire/firewire-core 0x7fd56640 fw_iso_buffer_destroy -EXPORT_SYMBOL drivers/firewire/firewire-core 0x861fb8cd fw_iso_context_start -EXPORT_SYMBOL drivers/firewire/firewire-core 0x86468d44 fw_rcode_string -EXPORT_SYMBOL drivers/firewire/firewire-core 0xa507b7d4 fw_send_response -EXPORT_SYMBOL drivers/firewire/firewire-core 0xa7eb87ab fw_iso_resource_manage -EXPORT_SYMBOL drivers/firewire/firewire-core 0xa88a2d30 fw_run_transaction -EXPORT_SYMBOL drivers/firewire/firewire-core 0xaedf84ce fw_high_memory_region -EXPORT_SYMBOL drivers/firewire/firewire-core 0xb6cc21b1 fw_iso_context_queue -EXPORT_SYMBOL drivers/firewire/firewire-core 0xb780c1b0 fw_fill_response -EXPORT_SYMBOL drivers/firewire/firewire-core 0xc7a2d4ce fw_core_handle_request -EXPORT_SYMBOL drivers/firewire/firewire-core 0xc91b14b2 fw_iso_context_queue_flush -EXPORT_SYMBOL drivers/firewire/firewire-core 0xcc042034 fw_device_enable_phys_dma -EXPORT_SYMBOL drivers/firewire/firewire-core 0xd244673c fw_iso_buffer_init -EXPORT_SYMBOL drivers/firewire/firewire-core 0xe070839e fw_card_add -EXPORT_SYMBOL drivers/firewire/firewire-core 0xe3fde125 fw_csr_iterator_next -EXPORT_SYMBOL drivers/firewire/firewire-core 0xe52157ac fw_cancel_transaction -EXPORT_SYMBOL drivers/firewire/firewire-core 0xe80e5087 fw_csr_iterator_init -EXPORT_SYMBOL drivers/firewire/firewire-core 0xed5e8744 fw_schedule_bus_reset -EXPORT_SYMBOL drivers/firewire/firewire-core 0xf5ddddeb fw_core_handle_response -EXPORT_SYMBOL drivers/firewire/firewire-core 0xfad4453a 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 0x3924ecff imx_dsp_request_channel -EXPORT_SYMBOL drivers/firmware/imx/imx-dsp 0xb15bb0b2 imx_dsp_ring_doorbell -EXPORT_SYMBOL drivers/firmware/imx/imx-dsp 0xff482996 imx_dsp_free_channel -EXPORT_SYMBOL drivers/firmware/meson/meson_sm 0x5fed178c meson_sm_call -EXPORT_SYMBOL drivers/firmware/meson/meson_sm 0x755b78c6 meson_sm_call_write -EXPORT_SYMBOL drivers/firmware/meson/meson_sm 0xc2f11eac meson_sm_call_read -EXPORT_SYMBOL drivers/fpga/dfl 0x920773b8 __dfl_driver_register -EXPORT_SYMBOL drivers/fpga/dfl 0xfc460796 dfl_driver_unregister -EXPORT_SYMBOL drivers/gpu/drm/drm 0x00247d15 drm_atomic_get_crtc_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0x005b3031 drm_atomic_bridge_chain_pre_enable -EXPORT_SYMBOL drivers/gpu/drm/drm 0x00ceb585 drm_mode_parse_command_line_for_connector -EXPORT_SYMBOL drivers/gpu/drm/drm 0x00d7c1df drm_gem_handle_delete -EXPORT_SYMBOL drivers/gpu/drm/drm 0x00e61b71 drm_gem_dmabuf_vmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0x028601ad drm_gem_unmap_dma_buf -EXPORT_SYMBOL drivers/gpu/drm/drm 0x02885107 drm_writeback_queue_job -EXPORT_SYMBOL drivers/gpu/drm/drm 0x02fe410b drm_vblank_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x03c63897 __drm_get_edid_firmware_path -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0435a13f drm_atomic_state_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x05183bca drm_property_create -EXPORT_SYMBOL drivers/gpu/drm/drm 0x05b48869 drm_crtc_vblank_put -EXPORT_SYMBOL drivers/gpu/drm/drm 0x05d1de41 drm_plane_create_zpos_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x060df2d6 drm_gem_shmem_put_pages -EXPORT_SYMBOL drivers/gpu/drm/drm 0x064a4bf2 drm_vma_node_allow -EXPORT_SYMBOL drivers/gpu/drm/drm 0x070b28aa drm_ht_remove_item -EXPORT_SYMBOL drivers/gpu/drm/drm 0x07555c48 drm_framebuffer_lookup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x08009813 drm_i2c_encoder_mode_fixup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x08752333 drm_client_framebuffer_flush -EXPORT_SYMBOL drivers/gpu/drm/drm 0x08ad19ac drm_connector_attach_hdr_output_metadata_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0928e90a drm_debugfs_create_files -EXPORT_SYMBOL drivers/gpu/drm/drm 0x092e6c4f drm_crtc_vblank_helper_get_vblank_timestamp -EXPORT_SYMBOL drivers/gpu/drm/drm 0x097171d7 drm_dev_register -EXPORT_SYMBOL drivers/gpu/drm/drm 0x09f69316 drm_atomic_get_old_connector_for_encoder -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0a1f26df drm_mode_create_content_type_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0a47d1ca drm_atomic_private_obj_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0a72f765 drm_clflush_virt_range -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0ac4278d drmm_mode_config_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0b7bbe20 drm_gem_dmabuf_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0bdfe80a drm_client_modeset_dpms -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0c21d7b3 drm_atomic_bridge_chain_enable -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0c42214b drm_property_create_enum -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0c7c50c8 drm_ioctl_permit -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0d9b4753 drm_mode_equal -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0db1ec9b drm_connector_set_link_status_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0e408c01 drm_property_replace_blob -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0e84b246 __drmm_universal_plane_alloc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0ede744a drm_atomic_get_new_connector_for_encoder -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 0x101471f1 drm_mode_create_hdmi_colorspace_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x102706a0 drm_gem_prime_import -EXPORT_SYMBOL drivers/gpu/drm/drm 0x107742a9 drm_get_subpixel_order_name -EXPORT_SYMBOL drivers/gpu/drm/drm 0x11913fae drm_mode_find_dmt -EXPORT_SYMBOL drivers/gpu/drm/drm 0x12319b0f drm_add_modes_noedid -EXPORT_SYMBOL drivers/gpu/drm/drm 0x12518e5c drm_client_framebuffer_delete -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1282908e drm_edid_to_speaker_allocation -EXPORT_SYMBOL drivers/gpu/drm/drm 0x12f3ba7b __drmm_add_action_or_reset -EXPORT_SYMBOL drivers/gpu/drm/drm 0x13958a0b drm_framebuffer_remove -EXPORT_SYMBOL drivers/gpu/drm/drm 0x15d7806b drm_crtc_vblank_count_and_time -EXPORT_SYMBOL drivers/gpu/drm/drm 0x15eb8da4 drm_bridge_remove -EXPORT_SYMBOL drivers/gpu/drm/drm 0x170983fb drm_modeset_drop_locks -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1731f9c3 drm_gem_shmem_vunmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1757ca9b drm_plane_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x17e27064 drm_vma_node_is_allowed -EXPORT_SYMBOL drivers/gpu/drm/drm 0x181175b1 drm_gem_prime_mmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0x182a3f46 drm_flip_work_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x18b8f102 drm_connector_attach_edid_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x191010bb drm_display_info_set_bus_formats -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1a24616c drm_connector_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1a411479 drm_syncobj_free -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1bb73c76 __drm_atomic_helper_disable_plane -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1c383780 drm_dev_alloc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1c533788 drm_connector_unregister -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1c818a21 drm_client_modeset_probe -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1ce07a49 drm_object_attach_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1e5e5323 drm_dev_has_vblank -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1f8f9798 drm_ioctl -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1f9eeb97 drm_property_blob_get -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1fc085bc drm_color_lut_check -EXPORT_SYMBOL drivers/gpu/drm/drm 0x20625b01 drm_framebuffer_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2183c08c drm_mm_scan_add_block -EXPORT_SYMBOL drivers/gpu/drm/drm 0x21a3bc54 drm_modeset_backoff -EXPORT_SYMBOL drivers/gpu/drm/drm 0x22b3589c drm_release_noglobal -EXPORT_SYMBOL drivers/gpu/drm/drm 0x239aa8ba drm_invalid_op -EXPORT_SYMBOL drivers/gpu/drm/drm 0x23e330d5 drm_clflush_pages -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 0x24b3a898 drm_framebuffer_unregister_private -EXPORT_SYMBOL drivers/gpu/drm/drm 0x24c12862 drm_panel_unprepare -EXPORT_SYMBOL drivers/gpu/drm/drm 0x24d124ac drm_mode_equal_no_clocks_no_stereo -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2588c3ad drm_gem_cma_print_info -EXPORT_SYMBOL drivers/gpu/drm/drm 0x25daad93 __drm_mm_interval_first -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2603d86c drm_framebuffer_plane_height -EXPORT_SYMBOL drivers/gpu/drm/drm 0x264529c3 drm_crtc_enable_color_mgmt -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2754dad8 drm_mm_reserve_node -EXPORT_SYMBOL drivers/gpu/drm/drm 0x27a90cc0 drm_atomic_bridge_chain_disable -EXPORT_SYMBOL drivers/gpu/drm/drm 0x28383fee drm_property_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm 0x28779e52 drm_printf -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2993410b drm_mode_create_tile_group -EXPORT_SYMBOL drivers/gpu/drm/drm 0x299760a0 __drmm_crtc_alloc_with_planes -EXPORT_SYMBOL drivers/gpu/drm/drm 0x29a9f63c drm_master_put -EXPORT_SYMBOL drivers/gpu/drm/drm 0x29f078d1 drm_mode_legacy_fb_format -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2a1c328e drm_bridge_chain_mode_valid -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2a962499 drm_mm_scan_init_with_range -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2b28767d drm_property_create_object -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2beb40cb drm_mode_create_tv_properties -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2c112006 drm_event_cancel_free -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2c21f255 drm_hdcp_update_content_protection -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2d50570f drm_rect_calc_hscale -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2d5d376d drm_gem_vm_close -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2dcbeae0 drm_bridge_chain_pre_enable -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2e299e82 drm_dev_printk -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2ed3c600 drm_mode_debug_printmodeline -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3021b0c8 drm_cvt_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0x30659835 drm_connector_attach_encoder -EXPORT_SYMBOL drivers/gpu/drm/drm 0x306fb9aa drm_atomic_state_default_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3075a071 drm_syncobj_get_handle -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3079fd40 drm_of_crtc_port_mask -EXPORT_SYMBOL drivers/gpu/drm/drm 0x30b2a891 drm_gem_shmem_purge -EXPORT_SYMBOL drivers/gpu/drm/drm 0x31b8a5e3 __drm_set_edid_firmware_path -EXPORT_SYMBOL drivers/gpu/drm/drm 0x31bbb410 drm_crtc_send_vblank_event -EXPORT_SYMBOL drivers/gpu/drm/drm 0x31f6f6b6 devm_aperture_acquire_from_firmware -EXPORT_SYMBOL drivers/gpu/drm/drm 0x32550164 drm_hdmi_vendor_infoframe_from_display_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0x32a0cc37 drm_print_bits -EXPORT_SYMBOL drivers/gpu/drm/drm 0x32f43914 drm_panel_disable -EXPORT_SYMBOL drivers/gpu/drm/drm 0x33624b5c drm_file_get_master -EXPORT_SYMBOL drivers/gpu/drm/drm 0x340b2e3c drm_atomic_set_mode_for_crtc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x346e1e6d drm_i2c_encoder_restore -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3648cb83 drm_crtc_vblank_waitqueue -EXPORT_SYMBOL drivers/gpu/drm/drm 0x37d3b41b drm_connector_init_with_ddc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x381406a0 drm_connector_attach_vrr_capable_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x39331eb9 drm_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0x39392f62 drm_plane_create_rotation_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3960a06a drm_syncobj_replace_fence -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3999829c drm_put_dev -EXPORT_SYMBOL drivers/gpu/drm/drm 0x39a0d60a drm_i2c_encoder_mode_set -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3a83e342 drm_atomic_set_crtc_for_plane -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 0x3b68c4d1 drm_crtc_init_with_planes -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3ba17eab drm_ht_insert_item -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3ca57dae drm_gem_map_attach -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3cf10462 drm_of_find_possible_crtcs -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3e7f046c drm_client_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3f405489 __drm_printfn_err -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3fc39511 drm_object_property_set_value -EXPORT_SYMBOL drivers/gpu/drm/drm 0x41697518 drm_prime_sg_to_page_array -EXPORT_SYMBOL drivers/gpu/drm/drm 0x417b01f5 drm_hdmi_infoframe_set_hdr_metadata -EXPORT_SYMBOL drivers/gpu/drm/drm 0x42777baa drm_connector_attach_content_protection_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x42fbf757 drm_panel_remove -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4365f02e drm_atomic_state_clear -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4403a9c3 drm_mode_get_hv_timing -EXPORT_SYMBOL drivers/gpu/drm/drm 0x445f87c3 drm_crtc_vblank_off -EXPORT_SYMBOL drivers/gpu/drm/drm 0x449fa77d drm_prime_gem_destroy -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 0x4587603d drm_sysfs_hotplug_event -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4589b501 drm_atomic_nonblocking_commit -EXPORT_SYMBOL drivers/gpu/drm/drm 0x45dd4c7b drm_event_reserve_init_locked -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4618b1e8 drm_modeset_unlock -EXPORT_SYMBOL drivers/gpu/drm/drm 0x48b76c3c drm_mode_create -EXPORT_SYMBOL drivers/gpu/drm/drm 0x49e7dc39 drm_atomic_get_new_bridge_state -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 0x4ae66e77 drm_i2c_encoder_commit -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4b7ebf95 drm_mm_remove_node -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4b9f7699 drm_open -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4d2f3bc0 drm_get_format_info -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4d985a09 drm_modeset_lock_all -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4f18a150 __drm_debug -EXPORT_SYMBOL drivers/gpu/drm/drm 0x500f77b5 drm_mode_validate_driver -EXPORT_SYMBOL drivers/gpu/drm/drm 0x50674de7 drm_timeout_abs_to_jiffies -EXPORT_SYMBOL drivers/gpu/drm/drm 0x506ee1ec drm_plane_get_damage_clips -EXPORT_SYMBOL drivers/gpu/drm/drm 0x507208ec drm_syncobj_find -EXPORT_SYMBOL drivers/gpu/drm/drm 0x50991e98 drm_gem_unlock_reservations -EXPORT_SYMBOL drivers/gpu/drm/drm 0x513072fe __drm_puts_seq_file -EXPORT_SYMBOL drivers/gpu/drm/drm 0x517f8df1 drm_gem_get_pages -EXPORT_SYMBOL drivers/gpu/drm/drm 0x51f8bf0a drm_connector_attach_scaling_mode_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x521ad6d0 drm_puts -EXPORT_SYMBOL drivers/gpu/drm/drm 0x525e129b drm_universal_plane_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5352f22c drmm_kfree -EXPORT_SYMBOL drivers/gpu/drm/drm 0x539ec888 drm_handle_vblank -EXPORT_SYMBOL drivers/gpu/drm/drm 0x543d0f93 drm_master_internal_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0x548156e4 drm_writeback_prepare_job -EXPORT_SYMBOL drivers/gpu/drm/drm 0x549abb1c drm_of_component_probe -EXPORT_SYMBOL drivers/gpu/drm/drm 0x54c95049 drm_connector_attach_dp_subconnector_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5522d5f1 drm_dev_unregister -EXPORT_SYMBOL drivers/gpu/drm/drm 0x55433405 drm_gem_dmabuf_vunmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5630a429 drm_i2c_encoder_prepare -EXPORT_SYMBOL drivers/gpu/drm/drm 0x57698a50 drm_mm_takedown -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5772e93b drm_atomic_set_mode_prop_for_crtc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x57b6efe3 drm_ioctl_flags -EXPORT_SYMBOL drivers/gpu/drm/drm 0x58952133 drm_mode_crtc_set_gamma_size -EXPORT_SYMBOL drivers/gpu/drm/drm 0x59056243 drm_mm_replace_node -EXPORT_SYMBOL drivers/gpu/drm/drm 0x590c43d1 drm_atomic_add_affected_planes -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5ae3c3e8 drm_crtc_vblank_get -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5af2e6a3 drm_noop -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5b332678 drm_gem_dmabuf_export -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5bb5d909 drm_plane_enable_fb_damage_clips -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5c2cf230 drm_gtf_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5cd8b3cb drm_mode_is_420_also -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5cff4d29 drm_av_sync_delay -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5d9ca5d3 drm_atomic_set_fb_for_plane -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5e26e477 drm_get_edid_switcheroo -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5ed99980 drm_crtc_vblank_helper_get_vblank_timestamp_internal -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5f7985a5 drm_mm_scan_remove_block -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5fb2ebd1 drm_gem_objects_lookup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5fbc33c2 drm_mode_validate_ycbcr420 -EXPORT_SYMBOL drivers/gpu/drm/drm 0x604a8263 drm_vma_offset_remove -EXPORT_SYMBOL drivers/gpu/drm/drm 0x609ea5de drm_gem_cma_prime_import_sg_table_vmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0x60cd9ec1 drm_dev_enter -EXPORT_SYMBOL drivers/gpu/drm/drm 0x615f8565 drm_gem_free_mmap_offset -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6193dfac drm_atomic_set_fence_for_plane -EXPORT_SYMBOL drivers/gpu/drm/drm 0x638964c0 drm_plane_force_disable -EXPORT_SYMBOL drivers/gpu/drm/drm 0x63b59b57 drm_mode_get_tile_group -EXPORT_SYMBOL drivers/gpu/drm/drm 0x63ba3380 drm_plane_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x64cd06bf drm_add_override_edid_modes -EXPORT_SYMBOL drivers/gpu/drm/drm 0x650c004d drm_gem_create_mmap_offset -EXPORT_SYMBOL drivers/gpu/drm/drm 0x656842a7 drm_aperture_remove_conflicting_framebuffers -EXPORT_SYMBOL drivers/gpu/drm/drm 0x65702bd6 drm_default_rgb_quant_range -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6588b880 drm_connector_attach_colorspace_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x67a0002d drm_vma_offset_lookup_locked -EXPORT_SYMBOL drivers/gpu/drm/drm 0x67fb7d34 drm_dev_get -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6857a15c drm_gem_dma_resv_wait -EXPORT_SYMBOL drivers/gpu/drm/drm 0x68e290cb drm_encoder_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6930f707 drm_mode_create_tv_margin_properties -EXPORT_SYMBOL drivers/gpu/drm/drm 0x69595305 drm_connector_set_panel_orientation_with_quirk -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6961dce8 drm_prime_pages_to_sg -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6a67fadc drm_sysfs_connector_status_event -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6afcc909 drm_syncobj_add_point -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6b569877 drm_hdmi_avi_infoframe_content_type -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6c308a10 drm_connector_set_panel_orientation -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6c4c4f94 drm_crtc_vblank_on -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6e0890de drm_get_edid -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6e30ba8e drm_rect_rotate_inv -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6e5b0b7e drm_display_mode_from_cea_vic -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6ecaa9c4 drm_gem_fence_array_add -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6ef2f78e drm_format_info -EXPORT_SYMBOL drivers/gpu/drm/drm 0x71d3be9f drm_gem_prime_import_dev -EXPORT_SYMBOL drivers/gpu/drm/drm 0x72f11500 drm_compat_ioctl -EXPORT_SYMBOL drivers/gpu/drm/drm 0x73a12b3f drm_print_regset32 -EXPORT_SYMBOL drivers/gpu/drm/drm 0x75a526e2 drm_plane_get_damage_clips_count -EXPORT_SYMBOL drivers/gpu/drm/drm 0x75e0f55e drm_writeback_connector_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x76180098 drm_connector_list_update -EXPORT_SYMBOL drivers/gpu/drm/drm 0x761c60ed drm_syncobj_create -EXPORT_SYMBOL drivers/gpu/drm/drm 0x77ff3cee drm_plane_create_scaling_filter_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7942005a drm_property_replace_global_blob -EXPORT_SYMBOL drivers/gpu/drm/drm 0x794b67ef drm_writeback_cleanup_job -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7b4c5353 drm_any_plane_has_format -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7ce9a4f2 drm_atomic_bridge_chain_check -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7ddfff70 drm_crtc_set_max_vblank_count -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7df81d19 drm_modeset_acquire_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7e61afec drm_atomic_check_only -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7edf470b drm_edid_duplicate -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7f780d63 drm_gem_vunmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fbdd60e drm_modeset_lock_single_interruptible -EXPORT_SYMBOL drivers/gpu/drm/drm 0x80071d73 drm_connector_list_iter_begin -EXPORT_SYMBOL drivers/gpu/drm/drm 0x80515400 drm_atomic_set_crtc_for_connector -EXPORT_SYMBOL drivers/gpu/drm/drm 0x80af53ac drm_property_add_enum -EXPORT_SYMBOL drivers/gpu/drm/drm 0x80b9af94 drm_gem_shmem_print_info -EXPORT_SYMBOL drivers/gpu/drm/drm 0x80c52ad1 drm_syncobj_get_fd -EXPORT_SYMBOL drivers/gpu/drm/drm 0x81992424 drm_edid_header_is_valid -EXPORT_SYMBOL drivers/gpu/drm/drm 0x82035556 drm_gem_vm_open -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8216eb78 drm_property_lookup_blob -EXPORT_SYMBOL drivers/gpu/drm/drm 0x82955839 drm_bridge_attach -EXPORT_SYMBOL drivers/gpu/drm/drm 0x82ae3491 drm_connector_register -EXPORT_SYMBOL drivers/gpu/drm/drm 0x82cab1b4 drm_client_rotation -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8311e790 drm_connector_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x83142b3b drm_set_preferred_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0x833201d9 drm_bridge_chain_disable -EXPORT_SYMBOL drivers/gpu/drm/drm 0x837c933f drm_gem_dmabuf_mmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0x837f38a9 __devm_drm_dev_alloc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x838a7096 drm_vma_offset_add -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8563a554 drm_ht_remove -EXPORT_SYMBOL drivers/gpu/drm/drm 0x857d49ee drm_atomic_get_private_obj_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8610ac48 drm_master_get -EXPORT_SYMBOL drivers/gpu/drm/drm 0x86d8d1f2 drm_vblank_work_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x86e8c644 drm_panel_of_backlight -EXPORT_SYMBOL drivers/gpu/drm/drm 0x871ab41a drm_rect_intersect -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8720040e drm_i2c_encoder_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8767404f drm_crtc_wait_one_vblank -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8803deb9 drm_crtc_check_viewport -EXPORT_SYMBOL drivers/gpu/drm/drm 0x888d2f5d drm_vblank_work_cancel_sync -EXPORT_SYMBOL drivers/gpu/drm/drm 0x897b1fcb drm_bridge_chain_post_disable -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8b1d8a67 drm_gem_handle_create -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8bb875e9 drm_gem_shmem_unpin -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8c4fe317 drm_atomic_private_obj_fini -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8cd33ccb drm_send_event_timestamp_locked -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8d0879bb drmm_kmalloc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8d72789e drm_edid_is_valid -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8e414cb5 drm_plane_create_alpha_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8eb17363 drm_driver_legacy_fb_format -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8f308a23 drm_hdmi_avi_infoframe_from_display_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8fa40d00 drm_connector_update_edid_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x902749be drm_framebuffer_plane_width -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9092a4f7 drm_connector_has_possible_encoder -EXPORT_SYMBOL drivers/gpu/drm/drm 0x91cbef22 drm_connector_set_vrr_capable_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x91fec1cc drm_rect_calc_vscale -EXPORT_SYMBOL drivers/gpu/drm/drm 0x92d84e89 drm_gem_shmem_pin -EXPORT_SYMBOL drivers/gpu/drm/drm 0x930609d5 drm_bridge_chain_enable -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9341b791 drm_atomic_get_old_bridge_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0x93669390 drm_mode_is_420_only -EXPORT_SYMBOL drivers/gpu/drm/drm 0x93bc8f0f drm_connector_set_tile_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x95100d86 drm_atomic_get_bridge_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0x95dbc76d drm_ht_create -EXPORT_SYMBOL drivers/gpu/drm/drm 0x960a41bf drm_gem_lock_reservations -EXPORT_SYMBOL drivers/gpu/drm/drm 0x961f14fe drm_crtc_commit_wait -EXPORT_SYMBOL drivers/gpu/drm/drm 0x96712805 drm_mode_set_config_internal -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9695a753 drm_modeset_lock_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x96a64751 drm_connector_atomic_hdr_metadata_equal -EXPORT_SYMBOL drivers/gpu/drm/drm 0x96c83817 drm_mode_put_tile_group -EXPORT_SYMBOL drivers/gpu/drm/drm 0x97927bca drm_gem_map_detach -EXPORT_SYMBOL drivers/gpu/drm/drm 0x99968751 drm_event_reserve_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x99fd20aa drm_rect_clip_scaled -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9aa86fc1 drm_client_register -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9ac84a70 drm_atomic_print_new_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9b24ffaf drm_gem_object_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9b285573 drm_match_cea_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9b4f9d07 drm_crtc_handle_vblank -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 0x9bfbca1e drm_atomic_add_affected_connectors -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9c8e7244 drm_crtc_vblank_count -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9ce050be drm_mode_copy -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9e54ab81 drm_property_create_blob -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9ebba417 drm_detect_monitor_audio -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9ef93352 drm_gem_shmem_vmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9f3f1198 drm_calc_timestamping_constants -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9f6c35d5 drm_modeset_acquire_fini -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa006a892 drm_vblank_work_flush -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa0713087 drm_ht_find_item -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa0a2c2a3 drm_plane_from_index -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa0b77066 drm_gem_vmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa1112063 drm_modeset_unlock_all -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa1dbde81 drm_warn_on_modeset_not_all_locked -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa2b7b8c7 drm_gem_fence_array_add_implicit -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa2dec3c3 drm_property_blob_put -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa398e837 drm_mode_create_dvi_i_properties -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa4015529 drm_connector_attach_content_type_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa504eed5 drm_framebuffer_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa54f9641 drm_encoder_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa73cd639 drm_atomic_commit -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa750a246 drm_gem_object_lookup -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa8ab88d5 drm_atomic_get_plane_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa924c909 drm_modeset_lock -EXPORT_SYMBOL drivers/gpu/drm/drm 0xaab96808 drm_property_create_range -EXPORT_SYMBOL drivers/gpu/drm/drm 0xaacca2cc drm_property_create_signed_range -EXPORT_SYMBOL drivers/gpu/drm/drm 0xab28b1a0 drm_flip_work_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xad3b9bf3 drm_gem_map_dma_buf -EXPORT_SYMBOL drivers/gpu/drm/drm 0xad4e902b drm_color_ctm_s31_32_to_qm_n -EXPORT_SYMBOL drivers/gpu/drm/drm 0xadb4d812 drm_client_modeset_commit_locked -EXPORT_SYMBOL drivers/gpu/drm/drm 0xae1c550f drm_aperture_remove_conflicting_pci_framebuffers -EXPORT_SYMBOL drivers/gpu/drm/drm 0xae277372 __drm_crtc_commit_free -EXPORT_SYMBOL drivers/gpu/drm/drm 0xafa44678 drm_vma_node_revoke -EXPORT_SYMBOL drivers/gpu/drm/drm 0xafdf99e0 drm_crtc_arm_vblank_event -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 0xb150cd40 drm_client_buffer_vmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb22dfd68 drm_format_info_min_pitch -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb3f43562 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 0xb49a7e41 drm_mode_plane_set_obj_prop -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb4bed843 drm_gem_object_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb58977a0 drm_mode_create_suggested_offset_properties -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb6127243 drm_need_swiotlb -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb737c41a drm_mode_probed_add -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb83edc27 drm_vma_offset_manager_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb875968c drm_mode_prune_invalid -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb8bd3f92 drm_ioctl_kernel -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb8bdab98 drm_crtc_vblank_restore -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb9531558 drm_modeset_lock_all_ctx -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb96f39d5 drm_syncobj_find_fence -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb9cad492 __drm_atomic_state_free -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbb011553 drm_property_create_bitmask -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbb4e70fd of_drm_find_bridge -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbd28ce43 drm_mode_object_put -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbda47d68 drm_mode_create_from_cmdline_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbf0c9bf6 drm_plane_create_zpos_immutable_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbf557a21 drm_panel_add -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbf8a4706 drm_vma_offset_manager_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc017378a drm_crtc_accurate_vblank_count -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc07c96cf drm_gem_prime_handle_to_fd -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc1be87cf drm_wait_one_vblank -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc29d4c8c drm_client_framebuffer_create -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc43ea940 drm_is_current_master -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc4ae06bd drm_bridge_chain_mode_set -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc5121f8b drm_client_modeset_commit -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc807e2ef drm_flip_work_queue_task -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc80e450b drm_dev_unplug -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc82cd17c __drm_atomic_helper_set_config -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc9a08f4e drm_mode_create_dp_colorspace_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc9f0e68e drm_i2c_encoder_dpms -EXPORT_SYMBOL drivers/gpu/drm/drm 0xca190085 drm_format_info_block_height -EXPORT_SYMBOL drivers/gpu/drm/drm 0xca2a2db6 drm_client_modeset_check -EXPORT_SYMBOL drivers/gpu/drm/drm 0xca562bc8 drm_gem_prime_fd_to_handle -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcaa55edf drm_connector_attach_tv_margin_properties -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcadb32be of_drm_get_panel_orientation -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcb2340b8 drm_rect_debug_print -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcb9974a6 drm_read -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcbfc2e31 drm_atomic_add_encoder_bridges -EXPORT_SYMBOL drivers/gpu/drm/drm 0xccc59759 drm_format_info_block_width -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcdcb95aa drm_gem_create_mmap_offset_size -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcf11a549 drm_flip_work_allocate_task -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd049e37b drm_gtf_mode_complex -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd055488f drm_crtc_vblank_reset -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd05fda43 drm_prime_get_contiguous_size -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd0d67b9b __drmm_encoder_alloc -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd13f9985 drm_edid_block_valid -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd1901d16 drm_gem_prime_export -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd1950196 of_drm_find_panel -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd1dd9456 drm_gem_shmem_madvise -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd44d692a drm_mode_config_reset -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd4a5675a drm_connector_list_iter_end -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd5759800 drm_gem_shmem_purge_locked -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd5979fa8 drm_state_dump -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd5a6af6c drm_send_event -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 0xd82ef7fc drm_plane_create_color_properties -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd8e833a2 drm_atomic_get_old_private_obj_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd921d390 drm_panel_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd939eef2 drm_mode_duplicate -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd981e1b5 drm_flip_work_queue -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd9c67b05 drm_poll -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd9cd1008 drm_object_property_get_value -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd9f309ec drm_master_internal_acquire -EXPORT_SYMBOL drivers/gpu/drm/drm 0xda648cd1 drm_dev_dbg -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdab2712e drm_atomic_normalize_zpos -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdb0a2b39 drm_property_create_bool -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdb58e845 drm_debugfs_remove_files -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdbf5c002 drm_gem_mmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdd2d8ed7 drm_crtc_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdd671fc8 drm_detect_hdmi_monitor -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdd8930c1 drm_writeback_get_out_fence -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdda9ed2b drm_connector_list_iter_next -EXPORT_SYMBOL drivers/gpu/drm/drm 0xddccf40e drm_hdmi_avi_infoframe_bars -EXPORT_SYMBOL drivers/gpu/drm/drm 0xde607eaa drm_send_event_locked -EXPORT_SYMBOL drivers/gpu/drm/drm 0xde821e11 drm_hdmi_avi_infoframe_colorspace -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 0xdfc0d4fe drm_atomic_get_new_private_obj_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe1115b67 drm_mode_create_scaling_mode_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe1559dbd drm_crtc_from_index -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe18f8800 drm_flip_work_commit -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe215dbe9 drm_client_buffer_vunmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe2d52040 drm_panel_prepare -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe2eeddac drm_gem_private_object_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe317082a __drm_printfn_info -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe3cc62dd drm_client_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe52c764e __drmm_add_action -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe61a4b63 drm_mode_object_get -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe8a034df drm_dev_exit -EXPORT_SYMBOL drivers/gpu/drm/drm 0xea00fe81 __drm_printfn_coredump -EXPORT_SYMBOL drivers/gpu/drm/drm 0xeb5c0c04 drm_mode_object_find -EXPORT_SYMBOL drivers/gpu/drm/drm 0xebdd329e drm_writeback_signal_completion -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 0xed8523fe drm_i2c_encoder_save -EXPORT_SYMBOL drivers/gpu/drm/drm 0xedb5588f drm_gem_mmap_obj -EXPORT_SYMBOL drivers/gpu/drm/drm 0xedb8e0ee drm_vblank_work_schedule -EXPORT_SYMBOL drivers/gpu/drm/drm 0xeedcc979 drm_mode_create_aspect_ratio_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xef33799b drm_hdmi_avi_infoframe_quant_range -EXPORT_SYMBOL drivers/gpu/drm/drm 0xefa64c48 drm_plane_create_blend_mode_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xefcc1419 drm_atomic_state_default_clear -EXPORT_SYMBOL drivers/gpu/drm/drm 0xeff5dd3c drm_dev_put -EXPORT_SYMBOL drivers/gpu/drm/drm 0xeffbcd5a drm_panel_get_modes -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf0517d7a drm_mm_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf0b6b124 drm_i2c_encoder_destroy -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 0xf1cf24ab drm_probe_ddc -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf3737269 drm_bridge_chain_mode_fixup -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf406e46a drm_get_connector_type_name -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf4fc5435 drm_atomic_state_alloc -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf7f231c3 drm_gem_put_pages -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf818e872 drm_atomic_get_connector_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf824c7db __drm_printfn_debug -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf9e6638d drm_connector_set_path_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfa47ef7a drm_mode_config_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfa87485c drm_add_edid_modes -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfae04d25 drm_connector_attach_max_bpc_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfc063749 drm_dev_set_unique -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfc662074 drm_crtc_create_scaling_filter_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfcc489ff drm_mode_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfd0ee454 drm_atomic_bridge_chain_post_disable -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfd69015a drm_i2c_encoder_detect -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfeb953b1 __drm_printfn_seq_file -EXPORT_SYMBOL drivers/gpu/drm/drm 0xffaa2005 drm_client_dev_hotplug -EXPORT_SYMBOL drivers/gpu/drm/drm 0xffe2a4a6 drm_panel_enable -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfff3fcf3 drm_bridge_add -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x00d77976 drm_self_refresh_helper_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x01c4bba9 drm_dp_lttpr_max_link_rate -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0259d93e drm_gem_simple_kms_prepare_shadow_fb -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x02893046 drm_dp_dual_mode_read -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x034c16eb drm_dp_pcon_frl_configure_2 -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x03728f86 drm_dp_pcon_reset_frl_config -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x03746bc3 drm_atomic_helper_commit_duplicated_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0400cd18 drm_fb_helper_debug_leave -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0615e01f drm_atomic_helper_disable_plane -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x06ecf542 drm_dp_dual_mode_detect -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x06f72e06 drm_dp_read_sink_count -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x07a00858 drm_fb_memcpy_dstclip -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x08ab9371 __drm_gem_destroy_shadow_plane_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0a6b40e3 __drm_atomic_helper_crtc_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0aa56f93 drm_dp_downstream_id -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0bab0b31 drm_primary_helper_funcs -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0c20cce9 drm_dp_check_act_status -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1072903f drm_dp_mst_deallocate_vcpi -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x10cb9f63 __drm_gem_reset_shadow_plane -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x11f31adc drm_helper_resume_force_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x12ca5f7e drm_gem_simple_display_pipe_prepare_fb -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x13d163d3 drm_fb_helper_restore_fbdev_mode_unlocked -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x148f2e6b drm_atomic_helper_cleanup_planes -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1605d0ed drm_dp_lttpr_max_lane_count -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x164d1c83 __drm_atomic_helper_crtc_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1709ddcf drm_dp_lttpr_link_train_clock_recovery_delay -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x17236168 drm_atomic_helper_commit_tail_rpm -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1819a256 drm_dp_update_payload_part2 -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1a4dac2d drm_atomic_helper_commit_planes_on_crtc -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 0x1bbd5e9d drm_dp_mst_dsc_aux_for_port -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1c231bbd drm_dp_mst_atomic_check -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1dcb140c drm_dp_read_lttpr_phy_caps -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1dd7f74f drm_atomic_helper_commit -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1eeb2a15 devm_drm_panel_bridge_add_typed -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1f228650 drm_dp_cec_unset_edid -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1f30adbc drm_edp_backlight_enable -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1f813d99 drm_mode_config_helper_suspend -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x219976fe drm_dp_mst_dump_topology -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x21ad5316 drm_atomic_helper_wait_for_fences -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x239547cf drm_atomic_helper_commit_modeset_enables -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x23961837 drm_dp_downstream_max_bpc -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2396f592 drm_dp_mst_get_vcpi_slots -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x23c4b1bf drm_dp_link_train_clock_recovery_delay -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x26418776 drm_dp_mst_connector_late_register -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x26815dbc drm_dp_link_rate_to_bw_code -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x269a1fb9 drm_atomic_helper_check_modeset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x26dd6d1b drm_helper_probe_single_connector_modes -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x291e92a0 drm_dp_mst_get_port_malloc -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2ab3be25 drm_dp_read_lttpr_common_caps -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2d0f71be drm_dp_pcon_frl_enable -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2dd77b51 drm_atomic_helper_commit_hw_done -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2e4b1958 drm_atomic_helper_commit_modeset_disables -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2edfa92a drm_fb_helper_output_poll_changed -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2fa94ef2 drm_dp_downstream_444_to_420_conversion -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x323a45e0 drm_gem_prepare_shadow_fb -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3449bdb1 drm_dp_pcon_frl_configure_1 -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3466a48f drm_dp_mst_add_affected_dsc_crtcs -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x34e16826 drm_scdc_set_high_tmds_clock_ratio -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3578dcec drm_gem_destroy_shadow_plane_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x36a75125 drm_dp_set_phy_test_pattern -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x37ed985f drm_dp_atomic_release_vcpi_slots -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x38ab4380 drm_panel_bridge_add_typed -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x392a838b drm_dp_downstream_max_dotclock -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x397665d6 drm_atomic_helper_disable_all -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x39d2b63d drm_fb_helper_fini -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3c0682b4 drm_dp_link_train_channel_eq_delay -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3c7a6558 drm_dp_remote_aux_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3d5c1ea7 drm_atomic_helper_wait_for_dependencies -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x425098fc drm_atomic_helper_wait_for_flip_done -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4300641f drm_dp_lttpr_link_train_channel_eq_delay -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4381ceb4 drm_dp_cec_unregister_connector -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x439a8a1a drm_fb_helper_blank -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x43ac4547 drm_atomic_helper_crtc_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x444d1d85 drm_atomic_helper_connector_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x447b17f2 drm_helper_move_panel_connectors_to_head -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4493d310 drm_atomic_helper_connector_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x456c7832 __drm_atomic_helper_bridge_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x45fa10d0 drm_atomic_helper_bridge_propagate_bus_fmt -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4603c416 drm_dp_pcon_dsc_bpp_incr -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x467a3f50 drm_atomic_helper_shutdown -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4761b1e2 __drm_atomic_helper_private_obj_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4a73e587 drm_dp_downstream_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4c29ec80 drm_atomic_helper_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4e212c1a 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 0x4f6d9610 drm_scdc_set_scrambling -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4f96cb1c drm_fb_helper_cfb_imageblit -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4ffe6a56 drm_atomic_helper_bridge_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5148a078 drm_dp_mst_detect_port -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 0x544a643d drm_helper_connector_dpms -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x554cda16 drm_scdc_write -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x560eaadf drm_atomic_helper_bridge_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5622953e __drm_atomic_helper_bridge_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x56a663e9 drm_dp_dsc_sink_line_buf_depth -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x56cb0045 drm_atomic_helper_update_plane -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x56f4dff2 drm_dp_dpcd_read -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x582f248e drm_dp_get_adjust_request_pre_emphasis -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x58d8fcaa drm_dsc_pps_payload_pack -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x59f27ed7 drm_dp_pcon_enc_is_dsc_1_2 -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5a4734d1 drm_kms_helper_is_poll_worker -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5a8a8548 drm_fb_helper_debug_enter -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5b900684 drm_atomic_helper_page_flip_target -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5c1675f1 drm_dp_set_subconnector_property -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5e17d01f drm_dp_mst_put_port_malloc -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5e1d65ef drm_fb_helper_ioctl -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5e56eb6f drm_dp_pcon_pps_override_buf -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5e9dfcdb __drm_atomic_helper_connector_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5f7e90ad drm_dp_mst_topology_mgr_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5fcdf632 drm_kms_helper_poll_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x63a477fb drm_dp_downstream_min_tmds_clock -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x63d281fe drm_crtc_helper_set_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x648d953b drm_dsc_dp_pps_header_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x64a342de drm_atomic_helper_suspend -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x65f3d5d3 drm_fb_helper_sys_fillrect -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x671f7a19 drm_dp_cec_register_connector -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x682b079b drm_fb_helper_prepare -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x684d05af drm_dp_pcon_convert_rgb_to_ycbcr -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x68d16009 drm_edp_backlight_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x68d8dce7 drm_dp_downstream_is_tmds -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x695c8a37 drm_fb_helper_pan_display -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x696d1e90 drm_atomic_helper_resume -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6a739c8c drm_gem_cleanup_shadow_fb -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 0x6b6ae3eb drm_helper_mode_fill_fb_struct -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6ba18f0d drm_dp_mst_hpd_irq -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6bb38f2b drm_dp_read_dpcd_caps -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6be020ff drm_dp_pcon_frl_prepare -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6c2c02ec drm_atomic_helper_commit_planes -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6ce21a46 drm_gem_simple_kms_duplicate_shadow_plane_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7053fa72 drm_dp_get_pcon_max_frl_bw -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7057de11 drm_edp_backlight_set_level -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x70e3f952 drm_atomic_helper_crtc_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7108b519 drm_gem_duplicate_shadow_plane_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x71a325bc drm_dp_cec_set_edid -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x71d4168c drm_atomic_get_mst_topology_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x71f5aebc drm_atomic_helper_async_check -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x72f7c2c7 drm_gem_simple_kms_destroy_shadow_plane_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 0x7619fadf drm_fb_helper_lastclose -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x76c7e888 drm_fb_helper_cfb_copyarea -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x76ff6644 drm_dp_lttpr_pre_emphasis_level_3_supported -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7ae669d0 drm_fb_xrgb8888_to_gray8 -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7b72f036 drm_dp_mst_topology_state_funcs -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7bbad244 drm_gem_fb_begin_cpu_access -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7c60b47a drm_atomic_helper_calc_timestamping_constants -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7d49be53 drm_atomic_helper_damage_merged -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7d893548 __drm_atomic_helper_crtc_state_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7de463c9 __drm_gem_duplicate_shadow_plane_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7e565461 drm_dp_read_sink_count_cap -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7e9be88c drm_dp_send_power_updown_phy -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x80e6fd03 drm_fb_helper_set_suspend -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x813a12e9 drm_gem_fb_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x81a16b88 drm_self_refresh_helper_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8286cbee drm_atomic_helper_plane_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 0x82a4984f drm_helper_probe_detect -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x838a8fa0 drm_fb_memcpy -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x87592870 drm_atomic_helper_commit_cleanup_done -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x883fff08 drm_kms_helper_hotplug_event -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x88774c88 drm_atomic_helper_commit_tail -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x890305c7 drm_scdc_get_scrambling_status -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 0x8ceca5b1 devm_drm_of_get_bridge -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8cf2c1b7 drm_dp_mst_topology_mgr_resume -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8d701329 drm_dp_clock_recovery_ok -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8d83bd8d drm_dp_pcon_pps_default -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8e64bbe4 drm_dp_get_phy_test_pattern -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8edb5e22 drm_fb_helper_initial_config -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8fe2c839 drm_atomic_helper_crtc_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9031b99f drm_atomic_helper_swap_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x904c2124 drm_dp_aux_unregister -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x906ee0b8 drm_atomic_helper_check_plane_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x94bfae2c drm_fb_helper_check_var -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x954f092f drm_dp_read_downstream_info -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x96118d61 drm_atomic_helper_setup_commit -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x96935472 drm_fb_helper_unregister_fbi -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x993d4628 drm_simple_encoder_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x99db19b5 drm_dp_stop_crc -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9ab58e98 drm_atomic_helper_connector_tv_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9afcfd25 drm_dp_cec_irq -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9b07b2ff drm_crtc_helper_set_config -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9b5bcaa4 drm_atomic_helper_disable_planes_on_crtc -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9c7766aa drm_dp_dual_mode_max_tmds_clock -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9cb02afd __drmm_simple_encoder_alloc -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9cdac92f drm_fb_helper_set_par -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9e564c2a drm_simple_display_pipe_attach_bridge -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9f386d0c drm_atomic_helper_connector_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa0254532 __drm_atomic_helper_plane_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa1586046 drm_gem_fb_vmap -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa15938d5 drm_dp_pcon_pps_override_param -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa1fefe6a drm_dp_psr_setup_time -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa2eeb8fb drm_atomic_helper_plane_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa4844c91 drm_self_refresh_helper_update_avg_times -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa4f2d120 drm_dp_get_vc_payload_bw -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa555302f __drm_atomic_helper_connector_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 0xa88064e6 drm_fb_helper_sys_read -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa88f6ef2 drm_helper_encoder_in_use -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa89e8361 drm_fb_helper_cfb_fillrect -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa9325cd7 drm_dp_downstream_debug -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa96d59b0 drm_fb_helper_set_suspend_unlocked -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xabfcc7ae drm_dp_find_vcpi_slots -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xad0d33a4 __drm_atomic_helper_connector_state_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xad87bba8 drm_panel_bridge_connector -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xaea4b847 __drm_atomic_helper_connector_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xaf267620 drm_dp_lttpr_count -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xaf4b78e8 drm_kms_helper_poll_disable -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xafb6c50b drm_fb_helper_hotplug_event -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb0895cbc drm_atomic_helper_prepare_planes -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb259d09f drm_lspcon_set_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb2cf8033 drm_fb_helper_alloc_fbi -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb407933c drm_edp_backlight_disable -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb60010f1 drm_helper_disable_unused_functions -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb635791d drm_fb_helper_setcmap -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb668764a drm_atomic_helper_update_legacy_modeset_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb7059a27 drm_gem_reset_shadow_plane -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb8a27a49 drm_atomic_helper_check_plane_damage -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xba5494ff drm_fbdev_generic_setup -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xba72e1d6 drm_atomic_helper_dirtyfb -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbae6f8b7 drm_dp_mst_topology_mgr_set_mst -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbb68fb55 drm_dp_pcon_hdmi_frl_link_error_count -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbbaabe3a drm_fb_helper_sys_copyarea -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbe8fd3f0 drm_dp_aux_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbf2fe1b8 drm_atomic_helper_page_flip -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbfad807e drm_atomic_helper_damage_iter_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc020c0c1 drm_dp_pcon_dsc_max_slice_width -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc03e837b drm_crtc_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc0b790bd __drm_atomic_helper_plane_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc1cee522 drm_scdc_read -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc1e28da5 drm_dp_pcon_hdmi_link_active -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc25db413 drm_lspcon_get_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc3aa8e26 __drm_atomic_helper_plane_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc507c32b drm_dp_aux_register -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc5583f03 drm_panel_bridge_add -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc5c99a79 drm_dp_get_adjust_request_voltage -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc6c5d0d8 drm_atomic_helper_bridge_destroy_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 0xcdebf9eb drm_dp_vsc_sdp_log -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xce45320b drm_dp_send_query_stream_enc_status -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcf74400b drm_gem_fb_create_handle -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcf813be8 drm_fb_helper_sys_imageblit -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd087eb6f drm_dp_atomic_find_vcpi_slots -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd2936b41 drm_dp_pcon_hdmi_link_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd2a9f461 drm_atomic_helper_wait_for_vblanks -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd302b46a drm_fb_helper_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd30b518b drm_dp_start_crc -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd4983d85 drm_fb_swab -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd4d3e2c6 drm_fb_helper_sys_write -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd5f65dd4 drm_atomic_helper_fake_vblank -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd883d647 drm_dp_pcon_is_frl_ready -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd931b33d drm_atomic_helper_set_config -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xda3b17d3 drm_dp_mst_topology_mgr_suspend -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdbc3c128 drm_fb_blit_dstclip -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdc83851a drm_atomic_helper_async_commit -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdefaa63a drm_dp_dual_mode_set_tmds_output -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdfccd66c drm_dp_dpcd_read_link_status -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdfd3a3af drm_dp_dpcd_write -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe247baae devm_drm_panel_bridge_add -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe39cbfe4 drm_helper_force_disable_all -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe4820538 drm_dp_dpcd_read_phy_link_status -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe5357943 drm_gem_fb_vunmap -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe5360b84 drm_dp_pcon_dsc_max_slices -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe66dfacd drm_dp_dual_mode_write -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe6bcc577 drm_atomic_helper_check -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe82f200a drm_fb_helper_fill_info -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe93aa621 drm_dp_dual_mode_get_tmds_output -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe9aa82d5 drm_dp_send_real_edid_checksum -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xea6b1413 drm_dp_mst_reset_vcpi_slots -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xeab0ddd6 drm_self_refresh_helper_alter_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xeb374ad5 drm_mode_config_helper_resume -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xebf9987e drm_dp_mst_atomic_enable_dsc -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xec0b232b drm_atomic_helper_check_planes -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xec29fd8b drm_dp_mst_connector_early_unregister -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xec528c28 drm_dp_mst_allocate_vcpi -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xed686186 drm_dp_read_mst_cap -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xedcf81ce drm_dp_channel_eq_ok -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xee6f7b34 drm_simple_display_pipe_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf2b41a80 drm_helper_hpd_irq_event -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf3bc9aab drm_dp_read_desc -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf3c26b8c drm_primary_helper_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf573d801 drm_helper_crtc_in_use -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf64ab931 drm_fb_helper_deferred_io -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf65d7b12 drm_dp_mst_topology_mgr_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf68741fb drm_dp_subconnector_type -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf689ad25 drm_dp_downstream_420_passthrough -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf78af713 __drm_atomic_helper_crtc_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf944fc65 drm_dp_update_payload_part1 -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf960c3bd __drm_atomic_helper_plane_state_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf9cd3af8 drm_atomic_helper_plane_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfa797264 drm_dp_mst_get_edid -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfb0ab6d9 drm_gem_simple_kms_cleanup_shadow_fb -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfb1a7a5a drm_dp_downstream_rgb_to_ycbcr_conversion -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfc2b27b9 drm_gem_simple_kms_reset_shadow_plane -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfc6568cc drm_kms_helper_poll_fini -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfdfc4b3b drm_kms_helper_poll_enable -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfe103574 drm_gem_fb_end_cpu_access -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfe12bcb9 drm_dsc_compute_rc_parameters -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfee88f54 drm_panel_bridge_remove -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x086a6253 mipi_dbi_poweron_conditional_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x1649eea7 mipi_dbi_command_stackbuf -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x2605a3f4 mipi_dbi_pipe_disable -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x2881eec2 mipi_dbi_spi_transfer -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x39d6cc77 mipi_dbi_spi_cmd_max_speed -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x4ff084a6 mipi_dbi_hw_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x50bc98a5 mipi_dbi_enable_flush -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x646e9ffa mipi_dbi_dev_init_with_formats -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x780c4c3a mipi_dbi_poweron_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x79b39d43 mipi_dbi_buf_copy -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x82244bdb mipi_dbi_command_buf -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x92a84dd9 mipi_dbi_dev_init -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x93273774 mipi_dbi_spi_init -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x998fd142 mipi_dbi_pipe_update -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xda7fadc5 mipi_dbi_debugfs_init -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xdd10dc13 mipi_dbi_display_is_on -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xe7b7b945 mipi_dbi_command_read -EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0x4c5d87f0 drm_gem_ttm_dumb_map_offset -EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0x602563ff drm_gem_ttm_vunmap -EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0x618ff93f drm_gem_ttm_print_info -EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0xd353341a drm_gem_ttm_vmap -EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0xd9898106 drm_gem_ttm_mmap -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x0d7b1a9c drm_gem_vram_simple_display_pipe_cleanup_fb -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x1a70b591 drm_gem_vram_simple_display_pipe_prepare_fb -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x2a5e5aa2 drmm_vram_helper_init -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x35af28e4 drm_gem_vram_offset -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x35f1225c drm_gem_vram_create -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x676e2158 drm_vram_helper_mode_valid -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x6e98c000 drm_gem_vram_vmap -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x911b8888 drm_vram_mm_debugfs_init -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x98d2a518 drm_gem_vram_put -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xbccd3828 drm_gem_vram_vunmap -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xbe57a657 drm_gem_vram_plane_helper_prepare_fb -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xc60be877 drm_gem_vram_unpin -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xd19484d2 drm_gem_vram_plane_helper_cleanup_fb -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xd60bdf9c drm_gem_vram_pin -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xe0019218 drm_gem_vram_driver_dumb_create -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xea7e4505 drm_gem_vram_fill_create_dumb -EXPORT_SYMBOL drivers/gpu/drm/rockchip/rockchipdrm 0x42d60d39 rockchip_drm_wait_vact_end -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x02e3dc82 drm_sched_entity_destroy -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x1708f767 drm_sched_reset_karma -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x1966cdf1 drm_sched_dependency_optimized -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x2fb541e8 drm_sched_pick_best -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x2fecb794 drm_sched_entity_fini -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x39dedae6 drm_sched_job_cleanup -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x3adc5caf drm_sched_job_init -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x407c5690 drm_sched_entity_flush -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x5260cc13 drm_sched_start -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x54f991ca drm_sched_entity_modify_sched -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x5bc404eb drm_sched_resubmit_jobs -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x63f11879 drm_sched_fini -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x6e469cb7 drm_sched_entity_init -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x7f3bf95b to_drm_sched_fence -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x820ceb1f drm_sched_resubmit_jobs_ext -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x9868cfaf drm_sched_suspend_timeout -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x9c38adc8 drm_sched_resume_timeout -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xa0d3793a drm_sched_increase_karma -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xae658e2a drm_sched_fault -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xd814ef86 drm_sched_stop -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xd9c305bc drm_sched_entity_push_job -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xf3a511af drm_sched_entity_set_priority -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xf3c09bbf drm_sched_init -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xfbb26f83 drm_sched_increase_karma_ext -EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-frontend 0x15aa84cd sun4i_frontend_enable -EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-frontend 0x175b0f29 sun4i_frontend_update_formats -EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-frontend 0x5bae8c62 sun4i_frontend_exit -EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-frontend 0x69bbe534 sun4i_frontend_init -EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-frontend 0x70927771 sun4i_frontend_update_buffer -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 0xb38e6658 sun4i_frontend_update_coord -EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-frontend 0xe13164ef sun4i_frontend_of_table -EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-tcon 0x0b94d7e1 sun4i_tcon_enable_vblank -EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-tcon 0x2ca721be sun4i_dclk_create -EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-tcon 0x311d2ec5 sun4i_lvds_init -EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-tcon 0x3777fded sun4i_rgb_init -EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-tcon 0x47d21bd4 sun4i_dclk_free -EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-tcon 0x6c10c7a7 sun4i_tcon_of_table -EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-tcon 0x6cc38c7f sun4i_tcon_mode_set -EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun8i_tcon_top 0x0c186a59 sun8i_tcon_top_de_config -EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun8i_tcon_top 0x350e5dcd sun8i_tcon_top_of_table -EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun8i_tcon_top 0x7118b978 sun8i_tcon_top_set_hdmi_src -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x06c6a185 ttm_bo_vm_fault -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x0aa7a297 ttm_bo_move_accel_cleanup -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x0b3a927a ttm_bo_vm_access -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x122ef789 ttm_bo_vm_fault_reserved -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x177209cd ttm_range_man_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1913fb0c ttm_io_prot -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x28cad0a3 ttm_glob -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x29d76a9a ttm_bo_vm_dummy_page -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2f636923 ttm_device_swapout -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x39fa223d ttm_bo_lock_delayed_workqueue -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x3d2b673e ttm_device_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x41fe70c7 ttm_bo_vm_close -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x420fe555 ttm_bo_eviction_valuable -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4ceb65f1 ttm_resource_manager_debug -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x521cadd0 ttm_bo_vunmap -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x63cad446 ttm_bo_kunmap -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6557e0cd ttm_move_memcpy -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x67e2f8c9 ttm_global_swapout -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6adf33e2 ttm_resource_free -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7089d8e9 ttm_eu_fence_buffer_objects -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7838a62e ttm_kmap_iter_tt_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x79bd8530 ttm_tt_destroy_common -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x889d9c93 ttm_eu_backoff_reservation -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x892b6ca5 ttm_bo_mem_space -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8c03e660 ttm_pool_alloc -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x978e48ee ttm_bo_vm_open -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x9cb4d40b ttm_bo_vm_reserve -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa108afe1 ttm_range_man_fini -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa141ea6b ttm_pool_debugfs -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa489a488 ttm_tt_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xadde438a ttm_resource_manager_evict_all -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb6bbbb54 ttm_sg_tt_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb753ca08 ttm_bo_mem_compat -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb82f7919 ttm_bo_validate -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb9b3d7c2 ttm_pool_free -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xbb728738 ttm_resource_manager_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc1798430 ttm_resource_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc54adf01 ttm_bo_move_memcpy -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc6613a28 ttm_bo_move_to_lru_tail -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc784ce4d ttm_bo_unmap_virtual -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc8e3f86d ttm_bo_wait -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xca5a51dc ttm_bo_put -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xccf26680 ttm_bo_bulk_move_lru_tail -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd0cb3b4d ttm_bo_mmap_obj -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xdc137688 ttm_bo_unlock_delayed_workqueue -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xdcc0e868 ttm_tt_fini -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xdd485213 ttm_eu_reserve_buffers -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe213463e ttm_bo_kmap -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe2e20d9f ttm_bo_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe62ad343 ttm_device_fini -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe8c74f50 ttm_bo_vmap -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xef4b8306 ttm_bo_init_reserved -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf0279c52 ttm_tt_populate -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf03f94e3 ttm_kmap_iter_iomap_init -EXPORT_SYMBOL drivers/gpu/drm/vmwgfx/vmwgfx 0x34665831 ttm_mem_global_alloc -EXPORT_SYMBOL drivers/gpu/drm/vmwgfx/vmwgfx 0x446c961c ttm_base_object_noref_lookup -EXPORT_SYMBOL drivers/gpu/drm/vmwgfx/vmwgfx 0x51126ece ttm_mem_global_free -EXPORT_SYMBOL drivers/gpu/drm/vmwgfx/vmwgfx 0x6052860c ttm_round_pot -EXPORT_SYMBOL drivers/gpu/drm/vmwgfx/vmwgfx 0xcbabd4a2 ttm_mem_glob -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x217400fa host1x_syncpt_wait -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x22612ba7 host1x_syncpt_id -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x22e1bd53 host1x_job_alloc -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x2a3250a3 host1x_syncpt_incr -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x2aabdfb0 host1x_client_resume -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x33aa048c host1x_job_add_gather -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x3f5b7fbc host1x_client_unregister -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x41eb3aa7 host1x_device_exit -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x4bf117ae host1x_job_submit -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x51de13ce host1x_syncpt_base_id -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x5a0e68cf host1x_syncpt_read_min -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x67a0e495 host1x_syncpt_get_base -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x6910a703 host1x_job_add_wait -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x7014c769 host1x_syncpt_incr_max -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x724365ef host1x_driver_register_full -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x72e78e54 tegra_mipi_start_calibration -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x86358af5 host1x_fence_create -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x89fde4df host1x_client_suspend -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x8e470d52 __host1x_client_init -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x9451a33e tegra_mipi_free -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x9978194e __host1x_client_register -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xa733ff60 tegra_mipi_disable -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xb307da8c host1x_job_pin -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xbac97536 host1x_syncpt_release_vblank_reservation -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xbcbe65a0 tegra_mipi_finish_calibration -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xbd1bb267 host1x_syncpt_read -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xbe29b996 host1x_channel_request -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xbeec2207 host1x_syncpt_get_by_id -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xc36f753a host1x_job_unpin -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xc5522e45 host1x_syncpt_alloc -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xca7d460d host1x_client_exit -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xcccdaefa host1x_syncpt_get_by_id_noref -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xd1aff238 host1x_syncpt_get -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xd507ce31 host1x_syncpt_read_max -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xd576b033 host1x_channel_get -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xd69099a4 host1x_device_init -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xd8f22269 host1x_job_get -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xdf011253 host1x_get_dma_mask -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xe741cb75 host1x_channel_put -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xeb742a29 host1x_job_put -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xf0bb0360 tegra_mipi_request -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xf0fb97ca host1x_syncpt_request -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xf63c7e03 host1x_driver_unregister -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xf8a79b19 tegra_mipi_enable -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xfadea808 host1x_syncpt_put -EXPORT_SYMBOL drivers/hid/hid 0x1c2171d4 hid_bus_type -EXPORT_SYMBOL drivers/hv/hv_vmbus 0xa69119e3 vmbus_sendpacket -EXPORT_SYMBOL drivers/hv/hv_vmbus 0xe74eba12 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 0x96ec3b26 sch56xx_read_virtual_reg12 -EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0xaa17a737 sch56xx_write_virtual_reg -EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0xad8827f2 sch56xx_watchdog_register -EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0xb37b9b81 sch56xx_read_virtual_reg16 -EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0xa2adeb07 i2c_bit_add_bus -EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0xab30dce8 i2c_bit_algo -EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0xd495c10a i2c_bit_add_numbered_bus -EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-pca 0x18de007d i2c_pca_add_numbered_bus -EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-pca 0x5d43a8eb i2c_pca_add_bus -EXPORT_SYMBOL drivers/i2c/busses/i2c-amd756 0x77568aa0 amd756_smbus -EXPORT_SYMBOL drivers/iio/accel/bma400_core 0x2433298f bma400_probe -EXPORT_SYMBOL drivers/iio/accel/bma400_core 0x4b9f0cbb bma400_regmap_config -EXPORT_SYMBOL drivers/iio/accel/bma400_core 0xfdb201a4 bma400_remove -EXPORT_SYMBOL drivers/iio/accel/kxsd9 0x12615caa kxsd9_dev_pm_ops -EXPORT_SYMBOL drivers/iio/accel/kxsd9 0x62ac4c53 kxsd9_common_probe -EXPORT_SYMBOL drivers/iio/accel/kxsd9 0x67ef162f kxsd9_common_remove -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x14d6d1c0 mma9551_read_status_word -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x16234383 mma9551_read_status_words -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x1f6b6215 mma9551_app_reset -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x329aabcc mma9551_read_status_byte -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x32b403de mma9551_set_device_state -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x381277ec mma9551_write_config_words -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x41ef446c mma9551_read_accel_scale -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x48e95590 mma9551_write_config_byte -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x5e452722 mma9551_read_accel_chan -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x745fe74b mma9551_gpio_config -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x7eebdf2b mma9551_read_config_words -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x8a56ff07 mma9551_read_config_word -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x8b877494 mma9551_read_version -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xbcd7fe96 mma9551_sleep -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xd5e39bd8 mma9551_update_config_bits -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xd621cfcb mma9551_read_config_byte -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xe18f0fe7 mma9551_write_config_word -EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xf27b923a mma9551_set_power_state -EXPORT_SYMBOL drivers/iio/accel/st_accel 0x28cdc8e3 st_accel_get_settings -EXPORT_SYMBOL drivers/iio/accel/st_accel 0x3ccaff47 st_accel_common_probe -EXPORT_SYMBOL drivers/iio/accel/st_accel 0x945452db 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 0x6f0a8472 iio_triggered_buffer_cleanup -EXPORT_SYMBOL drivers/iio/buffer/industrialio-triggered-buffer 0xef480cac iio_triggered_buffer_setup_ext -EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0x3680b223 iio_kfifo_free -EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0x50949637 iio_kfifo_allocate -EXPORT_SYMBOL drivers/iio/chemical/bme680_core 0x5969f7cd bme680_regmap_config -EXPORT_SYMBOL drivers/iio/chemical/scd30_core 0x6cadf9e1 scd30_probe -EXPORT_SYMBOL drivers/iio/chemical/scd30_core 0xb966a277 scd30_suspend -EXPORT_SYMBOL drivers/iio/chemical/scd30_core 0xfbaeae6b 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 0x198ae891 ms_sensors_ht_read_temperature -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x263e09f2 ms_sensors_show_battery_low -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x2d2f5cd5 ms_sensors_reset -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x318d2785 ms_sensors_write_resolution -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x35658972 ms_sensors_show_heater -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x42b6a050 ms_sensors_convert_and_read -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x7107b8ad ms_sensors_tp_read_prom -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x74b065cd ms_sensors_ht_read_humidity -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x882d8d6b ms_sensors_write_heater -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xce88c5c4 ms_sensors_read_serial -EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xe3de539f ms_sensors_read_temp_and_pressure -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x18b7e757 ssp_register_consumer -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x552dbaa8 ssp_disable_sensor -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x7817ddb2 ssp_enable_sensor -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x785701a0 ssp_get_sensor_delay -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0xa83f1b72 ssp_change_delay -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/ssp_iio 0x06ecfb81 ssp_common_buffer_postdisable -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/ssp_iio 0x0d12a56e ssp_common_process_data -EXPORT_SYMBOL drivers/iio/common/ssp_sensors/ssp_iio 0x97acce36 ssp_common_buffer_postenable -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x02f56ab8 st_sensors_sysfs_sampling_frequency_avail -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x06d32147 st_sensors_validate_device -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x074d7047 st_sensors_trigger_handler -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x08fa206a st_sensors_set_enable -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x11e963a2 st_sensors_sysfs_scale_avail -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x3ef9a131 st_sensors_read_info_raw -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x4130415a st_sensors_verify_id -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x566b7f44 st_sensors_init_sensor -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x5dc06748 st_sensors_power_enable -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x663ff202 st_sensors_allocate_trigger -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x670fddbd st_sensors_debugfs_reg_access -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x88e2d06b st_sensors_deallocate_trigger -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xa7c12a8e st_sensors_set_fullscale_by_gain -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xc446027d st_sensors_power_disable -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xc56cd7f0 st_sensors_set_dataready_irq -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xc88ee936 st_sensors_get_settings_index -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xd93d432e st_sensors_dev_name_probe -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xe27f756e st_sensors_set_odr -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xe4b52e9e st_sensors_set_axis_enable -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors_i2c 0x46271753 st_sensors_i2c_configure -EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors_spi 0x1b6d20c5 st_sensors_spi_configure -EXPORT_SYMBOL drivers/iio/gyro/mpu3050 0x117e9b93 mpu3050_dev_pm_ops -EXPORT_SYMBOL drivers/iio/gyro/mpu3050 0x43023147 mpu3050_common_probe -EXPORT_SYMBOL drivers/iio/gyro/mpu3050 0xe1831857 mpu3050_common_remove -EXPORT_SYMBOL drivers/iio/gyro/st_gyro 0x0aa5ff96 st_gyro_get_settings -EXPORT_SYMBOL drivers/iio/gyro/st_gyro 0x5f8d2abc st_gyro_common_remove -EXPORT_SYMBOL drivers/iio/gyro/st_gyro 0x92df749c st_gyro_common_probe -EXPORT_SYMBOL drivers/iio/humidity/hts221 0x4e0c4209 hts221_probe -EXPORT_SYMBOL drivers/iio/humidity/hts221 0x5e3bb7ca hts221_pm_ops -EXPORT_SYMBOL drivers/iio/imu/bmi160/bmi160_core 0x9933474e bmi160_regmap_config -EXPORT_SYMBOL drivers/iio/imu/bmi160/bmi160_core 0xca19cfae bmi160_enable_irq -EXPORT_SYMBOL drivers/iio/imu/fxos8700_core 0x01275243 fxos8700_regmap_config -EXPORT_SYMBOL drivers/iio/imu/st_lsm6dsx/st_lsm6dsx 0x21754cb8 st_lsm6dsx_probe -EXPORT_SYMBOL drivers/iio/imu/st_lsm6dsx/st_lsm6dsx 0xbcb93438 st_lsm6dsx_pm_ops -EXPORT_SYMBOL drivers/iio/industrialio 0x04da92c3 iio_buffer_init -EXPORT_SYMBOL drivers/iio/industrialio 0x08f9f8f0 __iio_trigger_register -EXPORT_SYMBOL drivers/iio/industrialio 0x1c150b31 iio_device_set_clock -EXPORT_SYMBOL drivers/iio/industrialio 0x1e639ce9 iio_device_unregister -EXPORT_SYMBOL drivers/iio/industrialio 0x2d6bcdcb iio_trigger_generic_data_rdy_poll -EXPORT_SYMBOL drivers/iio/industrialio 0x2e6fff39 iio_device_alloc -EXPORT_SYMBOL drivers/iio/industrialio 0x4d47870c iio_trigger_unregister -EXPORT_SYMBOL drivers/iio/industrialio 0x6077679c iio_trigger_notify_done -EXPORT_SYMBOL drivers/iio/industrialio 0x666ab4f9 iio_device_get_clock -EXPORT_SYMBOL drivers/iio/industrialio 0x6e27b263 iio_trigger_using_own -EXPORT_SYMBOL drivers/iio/industrialio 0x70127eb7 iio_trigger_poll_chained -EXPORT_SYMBOL drivers/iio/industrialio 0x8525d392 iio_trigger_free -EXPORT_SYMBOL drivers/iio/industrialio 0x868c587c iio_read_mount_matrix -EXPORT_SYMBOL drivers/iio/industrialio 0x8798cc4b iio_bus_type -EXPORT_SYMBOL drivers/iio/industrialio 0x8acd79c2 iio_trigger_validate_own_device -EXPORT_SYMBOL drivers/iio/industrialio 0x8be7e488 iio_trigger_poll -EXPORT_SYMBOL drivers/iio/industrialio 0xa00376bf iio_get_time_res -EXPORT_SYMBOL drivers/iio/industrialio 0xa1d4ec74 iio_device_free -EXPORT_SYMBOL drivers/iio/industrialio 0xaf670a88 __iio_device_register -EXPORT_SYMBOL drivers/iio/industrialio 0xbbb98973 iio_trigger_set_immutable -EXPORT_SYMBOL drivers/iio/industrialio 0xc71bed00 iio_get_time_ns -EXPORT_SYMBOL drivers/iio/industrialio 0xdf76bbeb iio_pollfunc_store_time -EXPORT_SYMBOL drivers/iio/industrialio 0xe3cf75bb iio_push_event -EXPORT_SYMBOL drivers/iio/industrialio 0xe6abc742 iio_trigger_alloc -EXPORT_SYMBOL drivers/iio/industrialio 0xe8815146 iio_read_const_attr -EXPORT_SYMBOL drivers/iio/industrialio-configfs 0x6d389622 iio_configfs_subsys -EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0x308c76da iio_sw_device_destroy -EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0x96c0c090 iio_sw_device_create -EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0xdd0a048d iio_register_sw_device_type -EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0xebe9f039 iio_unregister_sw_device_type -EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0x2750d0d9 iio_register_sw_trigger_type -EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0x597846b5 iio_unregister_sw_trigger_type -EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0xae687d4b iio_sw_trigger_destroy -EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0xc06080f4 iio_sw_trigger_create -EXPORT_SYMBOL drivers/iio/industrialio-triggered-event 0x543cab07 iio_triggered_event_cleanup -EXPORT_SYMBOL drivers/iio/industrialio-triggered-event 0xae0e68d9 iio_triggered_event_setup -EXPORT_SYMBOL drivers/iio/light/st_uvis25_core 0x9c3be30e st_uvis25_probe -EXPORT_SYMBOL drivers/iio/light/st_uvis25_core 0xbfaada59 st_uvis25_pm_ops -EXPORT_SYMBOL drivers/iio/magnetometer/bmc150_magn 0x4e201686 bmc150_magn_regmap_config -EXPORT_SYMBOL drivers/iio/magnetometer/bmc150_magn 0x74e52688 bmc150_magn_probe -EXPORT_SYMBOL drivers/iio/magnetometer/bmc150_magn 0xbc237eb8 bmc150_magn_pm_ops -EXPORT_SYMBOL drivers/iio/magnetometer/bmc150_magn 0xe27bf34b bmc150_magn_remove -EXPORT_SYMBOL drivers/iio/magnetometer/hmc5843_core 0x3c475edd hmc5843_common_remove -EXPORT_SYMBOL drivers/iio/magnetometer/hmc5843_core 0x5a446450 hmc5843_common_resume -EXPORT_SYMBOL drivers/iio/magnetometer/hmc5843_core 0x7297c14e hmc5843_common_suspend -EXPORT_SYMBOL drivers/iio/magnetometer/hmc5843_core 0x86b45b29 hmc5843_common_probe -EXPORT_SYMBOL drivers/iio/magnetometer/st_magn 0x14b6cc96 st_magn_common_probe -EXPORT_SYMBOL drivers/iio/magnetometer/st_magn 0x9b513437 st_magn_get_settings -EXPORT_SYMBOL drivers/iio/magnetometer/st_magn 0xbfdeaa1a st_magn_common_remove -EXPORT_SYMBOL drivers/iio/pressure/bmp280 0x233d1aa4 bmp280_regmap_config -EXPORT_SYMBOL drivers/iio/pressure/bmp280 0xab1a8370 bmp280_common_probe -EXPORT_SYMBOL drivers/iio/pressure/bmp280 0xc9bbc7c6 bmp180_regmap_config -EXPORT_SYMBOL drivers/iio/pressure/bmp280 0xe63ec4d6 bmp280_dev_pm_ops -EXPORT_SYMBOL drivers/iio/pressure/ms5611_core 0x1338f12c ms5611_probe -EXPORT_SYMBOL drivers/iio/pressure/ms5611_core 0x5acf3e62 ms5611_remove -EXPORT_SYMBOL drivers/iio/pressure/st_pressure 0x10edad8b st_press_common_remove -EXPORT_SYMBOL drivers/iio/pressure/st_pressure 0x2ea9e2ad st_press_get_settings -EXPORT_SYMBOL drivers/iio/pressure/st_pressure 0x3b747154 st_press_common_probe -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x03928462 ib_send_cm_rej -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x07f56d7d ib_send_cm_drep -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x272d1fd6 ib_send_cm_req -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x2985eae2 ib_send_cm_rep -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x2e5cc112 ib_send_cm_mra -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x43c72854 ib_send_cm_rtu -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x4f496527 ib_destroy_cm_id -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x5677b76f ib_cm_listen -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x69824a14 ibcm_reject_msg -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x81629b34 ib_cm_insert_listen -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x96d0a358 ib_cm_notify -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xb002d90c ib_cm_init_qp_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xc1240310 ib_send_cm_dreq -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xcf7a1b59 ib_create_cm_id -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xf21610a2 ib_send_cm_sidr_rep -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xf8ee00ad ib_send_cm_sidr_req -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x00cd25ea ib_get_rdma_header_version -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x013e1afd ibnl_put_msg -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0509dc8e ib_dealloc_xrcd_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x057c5c18 ib_create_qp_security -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x074259fe ib_sa_guid_info_rec_query -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0a42ab2d rdma_nl_multicast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0a61abca ib_unregister_event_handler -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0bb05beb ib_create_wq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0c86f5cb ib_sa_register_client -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0f3c65c5 ib_get_device_fw_str -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0f8ec6d4 roce_gid_type_mask_support -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0fa7f5c0 ib_find_exact_cached_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0fe899dc ib_unregister_device_queued -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x116e2cb6 rdma_create_ah -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x147cea4a ib_attach_mcast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x15580647 rdma_get_gid_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1732685f rdma_rw_ctx_signature_init -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x17ed6529 ib_query_srq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1a0fa853 ibdev_info -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1b037462 __rdma_block_iter_start -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1bee46d4 ib_modify_qp_with_udata -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x21e115c0 ib_device_get_by_name -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x22344104 ib_get_cached_subnet_prefix -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x22f3cf93 ib_pack -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x22f75c20 rdma_restrack_get_byid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x245ee8da rdma_nl_put_driver_u64 -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x250331b2 rdma_rw_ctx_init -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x260bde4d rdma_user_mmap_entry_remove -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x26b37f5a ib_detach_mcast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x27eacea1 ib_query_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x29a713ef rdma_replace_ah_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2f1e7c85 ib_unregister_device_and_put -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2f4052ec ib_create_qp_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x305e5701 rdma_addr_size_kss -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x306575e9 rdma_translate_ip -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x30a6fd9a ib_free_cq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x31abbec7 ib_cq_pool_get -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x33f1270d rdma_nl_register -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x35876f00 rdma_restrack_new -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x36cf146a ib_modify_port -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3b60cc6f rdma_user_mmap_entry_put -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3b971164 ib_register_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3c0af2dc rdma_put_gid_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3db22438 ib_get_cached_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3ec36b68 rdma_user_mmap_entry_insert -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3f3a140a ib_dispatch_event -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3fc2387c ib_ud_header_unpack -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x403fe525 ib_mr_pool_put -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4157a5e5 ibdev_printk -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x419e432a rdma_hold_gid_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x429be950 ib_init_ah_from_mcmember -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 0x4b7bb2ae ib_register_event_handler -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4c28d247 ibdev_warn -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4d07d191 ib_check_mr_status -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 0x50201d01 ib_destroy_cq_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x52171760 rdma_resolve_ip -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x523a3430 rdma_nl_put_driver_u32_hex -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x527158b1 ib_port_register_client_groups -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x544b9885 ib_mr_pool_destroy -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x549ce528 rdma_user_mmap_io -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x55bb02f3 ib_cache_gid_type_str -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5756e4ff ib_destroy_srq_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x583776fc ib_port_immutable_read -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x58df5b94 ib_get_gids_from_rdma_hdr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5c6edece ib_get_vf_stats -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5ce3dca9 ib_sa_join_multicast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5ddc588d ib_free_send_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5df53039 ib_device_get_by_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 0x62056c70 ib_dealloc_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x62b6c5fa rdma_link_register -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x63b60c99 ib_map_mr_sg -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6627a1af rdma_link_unregister -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x673e5275 ibdev_emerg -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x67da5074 ib_alloc_mr_integrity -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6a5dc4fb rdma_nl_stat_hwcounter_entry -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6acf39fb ib_drain_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6b64e437 ib_unregister_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6b958320 ib_ud_ip4_csum -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6dfc9d38 ib_alloc_xrcd_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6ecc6499 ib_set_client_data -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6f3614b6 rdma_is_zero_gid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x731eb878 rdma_addr_cancel -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x73baf9a2 ib_modify_qp_is_ok -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x748dc300 ib_get_net_dev_by_params -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x75a729a0 rdma_nl_unregister -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x75d66241 rdma_restrack_get -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x76b25a9d rdma_restrack_add -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x76c2e70c ib_destroy_qp_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x76e77e81 rdma_umap_priv_init -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x778f0a97 rdma_port_get_link_layer -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x780e34a8 rdma_restrack_del -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x786cc062 rdma_alloc_netdev -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x787ccc4c ib_get_mad_data_offset -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7b311245 rdma_set_cq_moderation -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7e4f9f82 ib_device_set_netdev -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7e786630 rdma_copy_ah_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x83b94781 rdma_nl_put_driver_u32 -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8546985d ib_set_vf_link_state -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x85ec7760 ib_free_recv_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8634f0bc ib_destroy_wq_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x86cef180 rdma_addr_size -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8b953639 ib_mr_pool_get -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8c6a7b7f ib_device_put -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8e7528da __rdma_block_iter_next -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x90e807c7 ib_cache_gid_parse_type_str -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x96923451 rdma_rw_ctx_destroy -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x97165677 ib_register_mad_agent -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x981f36f7 rdma_nl_unicast_wait -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x98857ae3 ib_get_cached_port_state -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9922c3b0 __ib_alloc_cq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x995d723f rdma_read_gid_attr_ndev_rcu -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x99f7ccf8 ib_drain_rq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9a180f09 ib_qp_usecnt_dec -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9a240cfc _ib_alloc_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9a8ac5fd ib_register_client -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9ab21c60 ib_init_ah_attr_from_path -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9c4758de ib_set_vf_guid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9d4ec895 rdma_read_gid_l2_fields -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9dd73c45 ib_unregister_mad_agent -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9fb11457 ib_get_vf_config -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa087da82 ib_post_send_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa122045c rdma_query_gid_table -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa1bf8b71 ib_modify_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa23dc3f5 ib_dealloc_pd_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa32afb36 ib_modify_srq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa3a7f1b7 ib_sa_get_mcmember_rec -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa4021650 ib_create_qp_kernel -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa432baf6 ib_unpack -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa4ec69ca rdma_nl_put_driver_u64_hex -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa63b954d rdma_modify_ah -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa90a6c7a ib_create_srq_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xaac0f9c1 rdma_restrack_parent_name -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xaadfe06e rdma_query_ah -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xaaeae1ef ib_create_ah_from_wc -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xac5f90dc rdma_read_gid_hw_context -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xae332f02 ib_process_cq_direct -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xae956dce ib_rate_to_mult -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xaf113fe8 rdma_restrack_put -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xaf5789e2 ib_resize_cq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb1ae6356 __ib_create_cq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb36e4148 ib_sa_pack_path -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb38b5bc1 ib_advise_mr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb3b768d0 ib_mr_pool_init -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb3c3383b ib_query_port -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb608ee91 ib_qp_usecnt_inc -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb7834f51 ib_mad_kernel_rmpp_agent -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb7852a05 ib_ud_header_init -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb792c26f ib_reg_user_mr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb967b54b ib_modify_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xba45315f ib_query_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbac62ea1 ib_get_eth_speed -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbc14d773 ib_dma_virt_map_sg -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbe14971f rdma_init_netdev -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbe986a90 ib_find_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbeec5243 ib_close_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc13375ee rdma_nl_unicast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc15c13ba ib_alloc_mr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc2532995 rdma_user_mmap_entry_get_pgoff -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc2a9c2cf rdma_dev_access_netns -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc34c75c5 ibdev_notice -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc5935a72 ib_sa_path_rec_get -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc8909a6f rdma_roce_rescan_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc8b1d2e6 ib_port_unregister_client_groups -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc8c963fc rdma_move_ah_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc98054dd ib_create_send_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xca9fac5b rdma_rw_mr_factor -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcab4ce72 ib_rdmacg_uncharge -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcda4ff8a ibdev_crit -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xce9ee909 ibdev_err -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcfbc053b ib_unregister_driver -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd034ace0 ib_modify_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd5937a36 rdma_rw_ctx_post -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd6636ca6 rdma_addr_size_in6 -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd8f4f6e7 ib_init_ah_attr_from_wc -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd9a1756f rdma_query_gid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xda0d50ec ib_sa_cancel_query -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xda3686a7 rdma_restrack_set_name -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdb71e61e ib_drain_sq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe0a0d5df rdma_move_grh_sgid_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe1ef8807 rdma_destroy_ah_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe21bb585 rdma_find_gid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe45835a0 ib_find_cached_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe5840ec6 ib_wc_status_msg -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe5a344d4 rdma_destroy_ah_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe5a78c1e ib_sa_unpack_path -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe62e056f ib_sg_to_pages -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe6651768 rdma_nl_put_driver_string -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe6b1f8ae ibdev_alert -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe78c3914 __ib_alloc_cq_any -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe7b52e5f mult_to_ib_rate -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe81f689b ib_get_vf_guid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe854cddb ibnl_put_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe9cdc643 rdma_rw_ctx_wrs -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe9e799fc ib_ud_header_pack -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xea6c3bf1 ib_set_device_ops -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xec9c7b56 rdma_user_mmap_entry_insert_range -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xee28c533 ib_find_gid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xee484116 rdma_create_user_ah -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf0916f8c rdma_restrack_count -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf0b0abe4 __ib_alloc_pd -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf1fae160 ib_dereg_mr_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf5dedb30 rdma_node_get_transport -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf606f1c0 ib_unregister_client -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf68fb6cf ib_open_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf690c31b rdma_copy_src_l2_addr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf6ed3334 ib_event_msg -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf79d01a6 ib_port_sysfs_get_ibdev_kobj -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf8c17e8b ib_cq_pool_put -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfafdb92d ib_map_mr_sg_pi -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfbee7dc7 rdma_user_mmap_entry_get -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfc980c27 ib_get_cached_lmc -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfcb86db7 rdma_rw_ctx_destroy_signature -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfd117d49 ib_rdmacg_try_charge -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xff028d49 ib_get_rmpp_segment -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xff4309a9 rdma_find_gid_by_port -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x01fbbb2d uverbs_idr_class -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x1b54bd5d ib_copy_path_rec_from_user -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x1fa3972e ib_uverbs_flow_resources_free -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x20cf7490 _uverbs_get_const_unsigned -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x20e8c1d5 uverbs_copy_to_struct_or_zero -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x26812586 ib_umem_odp_get -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x276d4a71 flow_resources_add -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x28c9ff59 uverbs_copy_to -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x2a06ded1 _uverbs_get_const_signed -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x2f0f9531 ib_umem_odp_map_dma_and_lock -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x3ad0477c ib_umem_stop_invalidation_notifier -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x3f305ca8 uverbs_uobject_fd_release -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x63057f4b ib_copy_path_rec_to_user -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x6cd84d7d flow_resources_alloc -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x718da98c ib_umem_odp_release -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x77026b53 uverbs_get_flags32 -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x7c523c5a ib_umem_get_peer -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x7c6c62ed ib_copy_qp_attr_to_user -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x85f1506e ib_umem_release -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x8ea08b3b ib_umem_dmabuf_unmap_pages -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x904803f9 ib_copy_ah_attr_to_user -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x9aa4ae05 ib_uverbs_get_ucontext_file -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xa2e294f1 uverbs_destroy_def_handler -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xa3dcec2a ib_umem_activate_invalidation_notifier -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xa6c827e4 ib_umem_get -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xa87c0652 ib_umem_odp_alloc_implicit -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xb0313340 uverbs_fd_class -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xb4c459e5 ib_umem_odp_alloc_child -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xb66896f0 _uverbs_alloc -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xbaeb3a4b ib_umem_copy_from -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xbde5c050 ib_unregister_peer_memory_client -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xc83b49fd ib_register_peer_memory_client -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xcca60094 uverbs_uobject_put -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xcf7df97c ib_umem_odp_unmap_dma_pages -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xddda4a04 ib_umem_dmabuf_get -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xdeda3eb7 ib_umem_dmabuf_map_pages -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xefe1b1d9 uverbs_get_flags64 -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xfbf1e4c8 uverbs_finalize_uobj_create -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xfc79ddda ib_umem_find_best_pgsz -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x0eb96ff5 iw_cm_disconnect -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x0fa3227b iw_cm_connect -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x5a22e00f iw_cm_accept -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x5eefd5c8 iw_cm_init_qp_attr -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x7692f7e0 iw_cm_reject -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x790d7259 iw_create_cm_id -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xbe7e25a9 iw_destroy_cm_id -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xdda92de0 iw_cm_listen -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xf3df871f iwcm_reject_msg -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x051e821f rdma_set_reuseaddr -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x0d4917e0 rdma_reject -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x0fecee8e rdma_read_gids -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x11fd9205 rdma_set_ib_path -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x18f8cfab rdma_resolve_route -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x1b798ae8 rdma_set_service_type -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x2337de3a rdma_lock_handler -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x2ac3e059 rdma_bind_addr -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x2b411fec rdma_join_multicast -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x3121eb88 rdma_listen -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x3ba1567a rdma_connect_locked -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x417c1ffc rdma_create_qp -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x419b928a rdma_destroy_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x437946d0 rdma_set_afonly -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x4e8e24b8 rdma_leave_multicast -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x525a8c9c rdma_reject_msg -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x58bdc553 rdma_connect -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x61ca901b rdma_res_to_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x61ecbba1 rdma_resolve_addr -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x63d01615 rdma_disconnect -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x647c0c2c rdma_set_ack_timeout -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x7a020823 rdma_accept -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x7e4b7676 rdma_get_service_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x8e9eaabe rdma_connect_ece -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x907df803 rdma_event_msg -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x994ac49d rdma_init_qp_attr -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xa306e35d rdma_consumer_reject_data -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xac48d1ce __rdma_create_kernel_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xbced4af9 rdma_unlock_handler -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xc746c897 rdma_set_min_rnr_timer -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xde73378a rdma_notify -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xe53bdfab rdma_accept_ece -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xf1f3d10a rdma_iw_cm_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xfcbb73df rdma_destroy_qp -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xfff185f2 rdma_create_user_id -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x13d596eb rtrs_clt_close -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x563efd89 rtrs_clt_rdma_cq_direct -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x5d43616a rtrs_clt_get_permit -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x5e9dd81b rtrs_clt_open -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x6fc04648 rtrs_clt_put_permit -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0xc1a3680b rtrs_clt_query -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0xd4bbf30d rtrs_clt_request -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x242a8646 rtrs_addr_to_str -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x2ae2796f rtrs_rdma_dev_pd_deinit -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x395a1c62 rtrs_rdma_dev_pd_init -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x5b01e41d sockaddr_to_str -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x887302f3 rtrs_addr_to_sockaddr -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x911067f0 rtrs_ib_dev_find_or_add -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x9bbb0389 rtrs_ib_dev_put -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x1113ca81 rtrs_srv_get_path_name -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x60f94210 rtrs_srv_open -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x8810a735 rtrs_srv_set_sess_priv -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x99f3c389 rtrs_srv_close -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0xc899b661 rtrs_srv_get_queue_depth -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0xcb9bc608 rtrs_srv_resp_rdma -EXPORT_SYMBOL drivers/input/gameport/gameport 0x03d91845 gameport_start_polling -EXPORT_SYMBOL drivers/input/gameport/gameport 0x0c467250 __gameport_register_port -EXPORT_SYMBOL drivers/input/gameport/gameport 0x21798a14 __gameport_register_driver -EXPORT_SYMBOL drivers/input/gameport/gameport 0x2546a897 gameport_close -EXPORT_SYMBOL drivers/input/gameport/gameport 0x50e6887d gameport_set_phys -EXPORT_SYMBOL drivers/input/gameport/gameport 0x564e89ce gameport_stop_polling -EXPORT_SYMBOL drivers/input/gameport/gameport 0x896f6c02 gameport_open -EXPORT_SYMBOL drivers/input/gameport/gameport 0xb75394bf gameport_unregister_driver -EXPORT_SYMBOL drivers/input/gameport/gameport 0xbbdf3536 gameport_unregister_port -EXPORT_SYMBOL drivers/input/joystick/iforce/iforce 0x310d7ad4 iforce_init_device -EXPORT_SYMBOL drivers/input/joystick/iforce/iforce 0x61d086ba iforce_send_packet -EXPORT_SYMBOL drivers/input/joystick/iforce/iforce 0xb92b6f54 iforce_process_packet -EXPORT_SYMBOL drivers/input/matrix-keymap 0x96e94cbb matrix_keypad_build_keymap -EXPORT_SYMBOL drivers/input/misc/ad714x 0xa51d19d4 ad714x_disable -EXPORT_SYMBOL drivers/input/misc/ad714x 0xcd3c228f ad714x_probe -EXPORT_SYMBOL drivers/input/misc/ad714x 0xd8b978f4 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 0x9433e46d cma3000_init -EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0xca3f100a cma3000_suspend -EXPORT_SYMBOL drivers/input/rmi4/rmi_core 0xe8b36e25 rmi_unregister_transport_device -EXPORT_SYMBOL drivers/input/sparse-keymap 0x0e50cfc9 sparse_keymap_report_event -EXPORT_SYMBOL drivers/input/sparse-keymap 0x194d77d2 sparse_keymap_entry_from_keycode -EXPORT_SYMBOL drivers/input/sparse-keymap 0x901f17cd sparse_keymap_report_entry -EXPORT_SYMBOL drivers/input/sparse-keymap 0xdb37a808 sparse_keymap_entry_from_scancode -EXPORT_SYMBOL drivers/input/sparse-keymap 0xec1e429c sparse_keymap_setup -EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0x0e0ae019 ad7879_pm_ops -EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0x3db786b1 ad7879_probe -EXPORT_SYMBOL drivers/interconnect/qcom/icc-smd-rpm 0xb94e2485 qnoc_probe -EXPORT_SYMBOL drivers/interconnect/qcom/icc-smd-rpm 0xd1ac50a1 qnoc_remove -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x1c15b90a detach_capi_ctr -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x1f92108b attach_capi_ctr -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xc34ecd68 capi_ctr_handle_message -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xddbce13b capi_ctr_ready -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xf8986ce0 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 0x1460c8ed mISDNipac_irq -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x20b23eb2 mISDNipac_init -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x6a585a64 mISDNisac_init -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x971845e2 mISDNisac_irq -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNisar 0x3cbd8fc6 mISDNisar_init -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNisar 0x77c6c2b0 mISDNisar_irq -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x03a68066 mISDN_FsmRestartTimer -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x0514cd81 create_l1 -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x0edfbb96 dchannel_senddata -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x1e018bc9 mISDN_initbchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x2348cc3c mISDN_FsmFree -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x26236de8 mISDN_clock_update -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x30d25b0d mISDN_FsmDelTimer -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x313b1fde mISDN_FsmAddTimer -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x385f2fb0 get_next_bframe -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x3941f0da mISDN_clear_bchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x456d6629 bchannel_senddata -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x4cc420af mISDNDevName4ch -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x4d8c3842 mISDN_register_Bprotocol -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x50c2230c mISDN_FsmChangeState -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x588886a6 l1_event -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x5b29c135 mISDN_freebchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x6047df40 mISDN_FsmInitTimer -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x62b8065a mISDN_register_device -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x7ba41981 recv_Bchannel_skb -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x8bda585b get_next_dframe -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x94b77532 recv_Bchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x9c928457 mISDN_FsmNew -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xac138d60 mISDN_freedchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xaef86c8e mISDN_initdchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xaf116ea7 bchannel_get_rxbuf -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xb9dcce31 mISDN_unregister_device -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xbfa77e53 mISDN_unregister_Bprotocol -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xc3401729 mISDN_register_clock -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xc5070a82 mISDN_ctrl_bchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd285995f mISDN_clock_get -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd5145151 mISDN_FsmEvent -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd82f9791 recv_Dchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xe8f617eb mISDN_unregister_clock -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xef48d58c recv_Echannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xfb9eedf2 queue_ch_frame -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xfbf92761 recv_Dchannel_skb -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0x01087af0 mISDN_dsp_element_unregister -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0x93df9e4b dsp_audio_law_to_s32 -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0xb07a21b8 dsp_audio_s16_to_law -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0xb98308d8 mISDN_dsp_element_register -EXPORT_SYMBOL drivers/leds/leds-ti-lmu-common 0x280d7e84 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 0x81c19e27 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 0xa48e8c54 cmdq_get_shift_pa -EXPORT_SYMBOL drivers/mailbox/omap-mailbox 0x15cd26d1 omap_mbox_enable_irq -EXPORT_SYMBOL drivers/mailbox/omap-mailbox 0xe49e33e4 omap_mbox_disable_irq -EXPORT_SYMBOL drivers/mailbox/omap-mailbox 0xea543e2b omap_mbox_request_channel -EXPORT_SYMBOL drivers/md/dm-log 0x19189513 dm_dirty_log_type_unregister -EXPORT_SYMBOL drivers/md/dm-log 0x6d24cca1 dm_dirty_log_create -EXPORT_SYMBOL drivers/md/dm-log 0x760be569 dm_dirty_log_type_register -EXPORT_SYMBOL drivers/md/dm-log 0xd00f4638 dm_dirty_log_destroy -EXPORT_SYMBOL drivers/md/dm-snapshot 0x0d2bea55 dm_exception_store_type_unregister -EXPORT_SYMBOL drivers/md/dm-snapshot 0x485cb8fa dm_snap_origin -EXPORT_SYMBOL drivers/md/dm-snapshot 0x53e1ebef dm_exception_store_destroy -EXPORT_SYMBOL drivers/md/dm-snapshot 0x7518411f dm_exception_store_create -EXPORT_SYMBOL drivers/md/dm-snapshot 0xbc6305ea dm_exception_store_type_register -EXPORT_SYMBOL drivers/md/dm-snapshot 0xbeb474bf dm_snap_cow -EXPORT_SYMBOL drivers/md/raid456 0xe12ec51d raid5_set_cache_size -EXPORT_SYMBOL drivers/md/raid456 0xff2cca77 r5c_journal_mode_set -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x05d77973 flexcop_eeprom_check_mac_addr -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x07659ef6 flexcop_pid_feed_control -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x07b3e35b flexcop_dump_reg -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x24ef4289 flexcop_device_kfree -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x5e22d9cb flexcop_i2c_request -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x5fa61bca flexcop_sram_ctrl -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x6c8fe30d flexcop_sram_set_dest -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x71928316 flexcop_device_initialize -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x79f73a49 flexcop_pass_dmx_data -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x8efa48c8 flexcop_device_exit -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xa2c1ee80 flexcop_wan_set_speed -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xb41c2290 flexcop_pass_dmx_packets -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xbb06f661 flexcop_device_kmalloc -EXPORT_SYMBOL drivers/media/common/cx2341x 0x0e1dee68 cx2341x_handler_setup -EXPORT_SYMBOL drivers/media/common/cx2341x 0x15ac1bd0 cx2341x_ctrl_query -EXPORT_SYMBOL drivers/media/common/cx2341x 0x28240e61 cx2341x_ctrl_get_menu -EXPORT_SYMBOL drivers/media/common/cx2341x 0x4dbaf802 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 0xa1d14f00 cx2341x_handler_set_50hz -EXPORT_SYMBOL drivers/media/common/cx2341x 0xa5168ac4 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 0x2401ae2d cypress_load_firmware -EXPORT_SYMBOL drivers/media/common/ttpci-eeprom 0x693e74ba ttpci_eeprom_decode_mac -EXPORT_SYMBOL drivers/media/common/ttpci-eeprom 0x7085362e ttpci_eeprom_parse_mac -EXPORT_SYMBOL drivers/media/common/tveeprom 0x0dbf0296 tveeprom_hauppauge_analog -EXPORT_SYMBOL drivers/media/common/tveeprom 0xa2c8fd39 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 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 0xd967ab31 vb2_verify_memory_type -EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-common 0xdffb744b frame_vector_to_pfns -EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-common 0xe9b6a670 vb2_buffer_in_use -EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0x133be0b2 vb2_dvb_register_bus -EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0x1605d4f7 vb2_dvb_find_frontend -EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0x3b1c317a vb2_dvb_alloc_frontend -EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0xa699a908 vb2_dvb_get_frontend -EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0xc0c94175 vb2_dvb_unregister_bus -EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0xe27cdf03 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 0xb2c7cba6 vb2_querybuf -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x06bd7fe2 dvb_ringbuffer_flush -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x08733236 intlog10 -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x0a932eae dvb_ringbuffer_read -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x0dba1dc0 dvb_frontend_suspend -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x129527d1 dvb_register_device -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x1991428a dvb_generic_ioctl -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x2a088535 dvb_ca_en50221_frda_irq -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x2a4aac44 dvb_ringbuffer_avail -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x2bdf2d4a dvb_generic_release -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x301250da dvb_register_adapter -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x39aa3ddb dvb_ca_en50221_init -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x3b93d71a dvb_frontend_sleep_until -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x3bf93c01 dvb_ringbuffer_write_user -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x3e7669b1 dvb_ca_en50221_camchange_irq -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x43126d30 dvb_frontend_resume -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x438d671e dvb_dmx_swfilter_204 -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x45fb9ac7 dvb_generic_open -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x48de64b9 dvb_dmxdev_init -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x4a8b267c dvb_ca_en50221_release -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x5f2b1d95 intlog2 -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x706ab995 dvb_dmxdev_release -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x7230138f dvb_unregister_adapter -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x7423cad3 dvb_ringbuffer_read_user -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x797ed781 dvb_dmx_init -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x86e3ebbb dvb_remove_device -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x8a5068f9 dvb_ringbuffer_write -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x8a60b4ed dvb_net_init -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x9369fcf3 dvb_unregister_device -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x9ef33769 dvb_unregister_frontend -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xa969dd23 dvb_ringbuffer_flush_spinlock_wakeup -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xaade287d dvb_ringbuffer_empty -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xad09e893 dvb_dmx_swfilter -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xb63dd3cc dvb_ca_en50221_camready_irq -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xc02ddd91 dvb_dmx_release -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xc0bb7491 dvb_register_frontend -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xcc9938f3 dvb_frontend_reinitialise -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xd116c315 dvb_dmx_swfilter_raw -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xd273282c dvb_frontend_detach -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xe03af56f dvb_ringbuffer_free -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xe1e69204 dvb_dmx_swfilter_packets -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xf615edcf dvb_net_release -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xfb7f2925 dvb_device_get -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xfc1cd12d dvb_ringbuffer_init -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x014bf525 au8522_writereg -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x0c175233 au8522_i2c_gate_ctrl -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x0f603d08 au8522_init -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x4bf81d6c au8522_sleep -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x8983089b au8522_readreg -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xadf8aa15 au8522_get_state -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xaf4031e7 au8522_led_ctrl -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xc3cbdf16 au8522_release_state -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xf0cbef5d au8522_analog_i2c_gate_ctrl -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24113 0x5f17bfab cx24113_agc_callback -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24123 0x1ac85b27 cx24123_get_tuner_i2c_adapter -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x958320a8 dib0070_wbd_offset -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0xc159c72f dib0070_set_rf_output -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0xc5ef0144 dib0070_ctrl_agc_filter -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0xd465afee dib0070_get_rf_output -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x03a52354 dib0090_get_current_gain -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x0e75d15a dib0090_dcc_freq -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x3b3f31e8 dib0090_update_tuning_table_7090 -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x415c3834 dib0090_pwm_gain_reset -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x52fa656c dib0090_update_rframp_7090 -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x6278ed2b dib0090_set_dc_servo -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x6cad0ed6 dib0090_set_vga -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x79365232 dib0090_get_tune_state -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x99ece5d9 dib0090_get_wbd_offset -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xa9e97631 dib0090_gain_control -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xb3d7cf2e dib0090_get_wbd_target -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xda543955 dib0090_set_switch -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xe5947485 dib0090_set_tune_state -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x6c1057f7 dib3000mc_pid_parse -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x9108b27d dib3000mc_i2c_enumeration -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0xa0517cae dib3000mc_get_tuner_i2c_master -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0xa33fc364 dib3000mc_pid_control -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0xe94c75de dib3000mc_set_config -EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x34ef335e dib7000m_pid_filter_ctrl -EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x3ca412c5 dib7000m_pid_filter -EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0xbd5c24fb dib7000m_get_i2c_master -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x2e2e2b60 dib9000_i2c_enumeration -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x596f33d9 dib9000_get_tuner_interface -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x64a04616 dib9000_get_slave_frontend -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x834117e5 dib9000_set_slave_frontend -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x94bb7c7e dib9000_fw_set_component_bus_speed -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xa1621d5b dib9000_fw_pid_filter -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xa97dcf41 dib9000_fw_pid_filter_ctrl -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xb414396d dib9000_get_component_bus_interface -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xbc5a3ef6 dib9000_set_gpio -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xc59d60c9 dib9000_get_i2c_master -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xd823f11f dib9000_firmware_post_pll_init -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xea0615d1 dib9000_set_i2c_adapter -EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x16061430 dibx000_init_i2c_master -EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x1f346519 dibx000_get_i2c_adapter -EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x21d005a8 dibx000_exit_i2c_master -EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0xd20efd37 dibx000_reset_i2c_master -EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0xf1e23f04 dibx000_i2c_set_speed -EXPORT_SYMBOL drivers/media/dvb-frontends/dvb_dummy_fe 0x222bc79a dvb_dummy_fe_qpsk_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dvb_dummy_fe 0x7c09ce0e dvb_dummy_fe_qam_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dvb_dummy_fe 0x89e5e3f2 dvb_dummy_fe_ofdm_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lgs8gl5 0x873c8289 lgs8gl5_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lnbh29 0xa23c9fda lnbh29_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/m88ds3103 0x10432e22 m88ds3103_get_agc_pwm -EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1420 0xfaf8cec9 s5h1420_get_tuner_i2c_adapter -EXPORT_SYMBOL drivers/media/dvb-frontends/zd1301_demod 0x0b385b1e zd1301_demod_get_dvb_frontend -EXPORT_SYMBOL drivers/media/dvb-frontends/zd1301_demod 0xcec6b9bb zd1301_demod_get_i2c_adapter -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x024a9fc7 flexcop_dma_free -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x1c9ebad1 flexcop_dma_allocate -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x2b433d27 flexcop_dma_control_size_irq -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x6ce5471b flexcop_dma_control_timer_irq -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x83689ca7 flexcop_dma_xfer_control -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xabe60214 flexcop_dma_config_timer -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xf710f86a flexcop_dma_config -EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x7c1d1e09 bt878_start -EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x8e4d81c7 bt878_device_control -EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0xd5d0bdef bt878_num -EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0xddd1b08f bt878_stop -EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0xf756268f bt878 -EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x11dc4b6d bttv_gpio_enable -EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x4e77ce42 bttv_get_pcidev -EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x630ea974 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 0xf198f187 bttv_sub_register -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x199bbc91 dst_comm_init -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x1d16cf59 rdc_reset_state -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x23ae0416 dst_error_recovery -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x43a983fd dst_check_sum -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x7718dc36 dst_error_bailout -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x993eefb6 dst_wait_dst_ready -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xb7b54e29 read_dst -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xb7ea2a5e write_dst -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xea5eacee dst_pio_disable -EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x2cdea06d cx18_reset_ir_gpio -EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x2fcba178 cx18_release_stream -EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0xa11de8ba cx18_claim_stream -EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0xd538a069 cx18_ext_init -EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0xd6a0a964 cx18_stop_v4l2_encode_stream -EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0xdf2fada8 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 0xdb3faf38 altera_ci_release -EXPORT_SYMBOL drivers/media/pci/cx23885/altera-ci 0xe66b9812 altera_ci_irq -EXPORT_SYMBOL drivers/media/pci/cx23885/altera-ci 0xea4c5603 altera_ci_init -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x44b517f5 cx25821_print_irqbits -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x66b94119 cx25821_risc_databuffer_audio -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x7ddcc6d8 cx25821_sram_channel_dump_audio -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x81372a3e cx25821_dev_unregister -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xacb8c598 cx25821_sram_channel_setup_audio -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xd7586b64 cx25821_set_gpiopin_direction -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xdb7da4e3 cx25821_riscmem_alloc -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xe9050411 cx25821_sram_channels -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xec7477d6 cx25821_dev_get -EXPORT_SYMBOL drivers/media/pci/cx88/cx88-vp3054-i2c 0x051650db vp3054_i2c_probe -EXPORT_SYMBOL drivers/media/pci/cx88/cx88-vp3054-i2c 0xcd07d52f vp3054_i2c_remove -EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x13b2778b cx88_querycap -EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x6239a9b3 cx88_enum_input -EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x6ced57bb cx88_video_mux -EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0xde1cff39 cx88_set_freq -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x31c26638 cx8802_cancel_buffers -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x40c032a8 cx8802_register_driver -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x4b00a720 cx8802_get_driver -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x913b1bcf cx8802_unregister_driver -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x9f3bd6f3 cx8802_buf_prepare -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xf2efd070 cx8802_buf_queue -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xf3637e49 cx8802_start_dma -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x508d3874 cx88_core_get -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x5edb7ae5 cx88_print_irqbits -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x60aa652c cx88_set_tvaudio -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x6141c8c5 cx88_tuner_callback -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x64bf47f4 cx88_set_stereo -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x794eaa29 cx88_shutdown -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x8ad9751a 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 0x99638ed5 cx88_sram_channel_dump -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x9b4a203a cx88_set_scale -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xa2298473 cx88_wakeup -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xa9be13ca cx88_risc_databuffer -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xab1c453f cx88_set_tvnorm -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xb125fc33 cx88_dsp_detect_stereo_sap -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xb37806a6 cx88_core_irq -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xbbe5e456 cx88_sram_channel_setup -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xc7db7fa7 cx88_vdev_init -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xcb371a85 cx88_ir_start -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xcfe2784d cx88_ir_stop -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xd4748194 cx88_core_put -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xe01c9b86 cx88_newstation -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xe421f007 cx88_risc_buffer -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xf2329c26 cx88_reset -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x10d63e0a ivtv_udma_prepare -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x14dfcc54 ivtv_vapi_result -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x14f67530 ivtv_debug -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x18aebf73 ivtv_vapi -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x2c656c21 ivtv_reset_ir_gpio -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x5d1a8d66 ivtv_claim_stream -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x5e77e45a ivtv_ext_init -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x68ed0be0 ivtv_release_stream -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x81039bbc ivtv_init_on_first_open -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x8b98a5b8 ivtv_clear_irq_mask -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x8da2710b ivtv_api -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xa2b60a21 ivtv_start_v4l2_encode_stream -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xcba7a2d4 ivtv_udma_alloc -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xcc45269e ivtv_stop_v4l2_encode_stream -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xdfc79cf5 ivtv_firmware_check -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xe2f8c2ae ivtv_udma_unmap -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xe7a05069 ivtv_set_irq_mask -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xfa204c48 ivtv_udma_setup -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 0x293da36b saa7134_ts_register -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x2fe763b4 saa7134_devlist_lock -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x39781489 saa7134_pgtable_alloc -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x3aea9396 saa7134_set_dmabits -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x45d26596 saa7134_ts_unregister -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x471aa79e saa7134_pgtable_free -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x6609ec19 saa7134_dmasound_exit -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x730c4be3 saa7134_boards -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x87cca571 saa_dsp_writel -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x99506c2a saa7134_set_gpio -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xb441d722 saa7134_dmasound_init -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xb75c3a60 saa7134_pgtable_build -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xc20f9ce9 saa7134_tvaudio_setmute -EXPORT_SYMBOL drivers/media/platform/allegro-dvt/allegro 0x2c79d0f2 msg_type_name -EXPORT_SYMBOL drivers/media/radio/tea575x 0x0666741d snd_tea575x_g_tuner -EXPORT_SYMBOL drivers/media/radio/tea575x 0x1bfd36d7 snd_tea575x_exit -EXPORT_SYMBOL drivers/media/radio/tea575x 0x338d6820 snd_tea575x_init -EXPORT_SYMBOL drivers/media/radio/tea575x 0x709aa656 snd_tea575x_enum_freq_bands -EXPORT_SYMBOL drivers/media/radio/tea575x 0x9a8cd464 snd_tea575x_s_hw_freq_seek -EXPORT_SYMBOL drivers/media/radio/tea575x 0xc5d82c79 snd_tea575x_hw_init -EXPORT_SYMBOL drivers/media/radio/tea575x 0xed89ab75 snd_tea575x_set_freq -EXPORT_SYMBOL drivers/media/rc/rc-core 0x0d62371c ir_raw_handler_register -EXPORT_SYMBOL drivers/media/rc/rc-core 0x2ad91f6e ir_raw_gen_pl -EXPORT_SYMBOL drivers/media/rc/rc-core 0x416ed10d 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 0x297e8b0d fc0013_rc_cal_reset -EXPORT_SYMBOL drivers/media/tuners/fc0013 0x485ce80b 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 0x6a9befb9 xc2028_attach -EXPORT_SYMBOL drivers/media/usb/cx231xx/cx231xx 0xc5c354ff cx231xx_register_extension -EXPORT_SYMBOL drivers/media/usb/cx231xx/cx231xx 0xd32a3660 cx231xx_unregister_extension -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x019a0b7d dvb_usbv2_disconnect -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x03095fa9 dvb_usbv2_reset_resume -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x273a3c7e dvb_usbv2_generic_rw -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x35e4bc0c dvb_usbv2_probe -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x5fae47f1 dvb_usbv2_generic_write_locked -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xda5d6661 dvb_usbv2_generic_rw_locked -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xea14a569 dvb_usbv2_suspend -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xeff7c4c6 dvb_usbv2_generic_write -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xf71b483c dvb_usbv2_resume -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x1d27b4b0 dvb_usb_generic_rw -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x2a10adb9 dvb_usb_device_exit -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x2ac43339 dvb_usb_nec_rc_key_to_event -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x8b6f5395 dvb_usb_get_hexline -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xc186476b usb_cypress_load_firmware -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xd8cc39c1 dvb_usb_generic_write -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xfa9deacf dvb_usb_device_init -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 0xc6a2fb4a 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 0x123b8298 dibusb_pid_filter_ctrl -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x2a35c1e5 dibusb2_0_streaming_ctrl -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x32a6676b dibusb_streaming_ctrl -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x4a6d6f9c dibusb_read_eeprom_byte -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x93822ecb rc_map_dibusb_table -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xa70b7b25 dibusb_rc_query -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xcc555620 dibusb_power_ctrl -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xec4a53a5 dibusb_pid_filter -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xf0085993 dibusb2_0_power_ctrl -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xf124efbc dibusb_i2c_algo -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-mc-common 0x1cd41994 dibusb_dib3000mc_tuner_attach -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-mc-common 0x771642c7 dibusb_dib3000mc_frontend_attach -EXPORT_SYMBOL drivers/media/usb/em28xx/em28xx 0x03e904c9 em28xx_unregister_extension -EXPORT_SYMBOL drivers/media/usb/em28xx/em28xx 0xb0ec4e3e em28xx_register_extension -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x149b5a65 go7007_boot_encoder -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x1561bee7 go7007_snd_remove -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x1ed3331e go7007_read_interrupt -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x2824b047 go7007_register_encoder -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x51efaa83 go7007_alloc -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x6ba23b6f go7007_read_addr -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xda836547 go7007_update_board -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xddc4840a go7007_snd_init -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xfe6ade34 go7007_parse_video_stream -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x02915eec gspca_dev_probe -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x33e49ff9 gspca_disconnect -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x467d73b6 gspca_suspend -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x6a73f187 gspca_frame_add -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x857c21d4 gspca_expo_autogain -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x9670af2c gspca_debug -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xa27c06a5 gspca_coarse_grained_expo_autogain -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xb9f762f3 gspca_resume -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xfbd8a090 gspca_dev_probe2 -EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0x6d967ed5 tm6000_unregister_extension -EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0x7aa6ef82 tm6000_init_digital_mode -EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0xd9b3816f tm6000_register_extension -EXPORT_SYMBOL drivers/media/usb/ttusb-dec/ttusbdecfe 0x9988a99e ttusbdecfe_dvbt_attach -EXPORT_SYMBOL drivers/media/usb/ttusb-dec/ttusbdecfe 0xb24fa854 ttusbdecfe_dvbs_attach -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0x09f1313b v4l2_async_notifier_init -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0x1043a74a v4l2_async_notifier_unregister -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0x8b70d70c v4l2_async_notifier_register -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0xb8f78913 v4l2_async_register_subdev -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0xc2bbacca v4l2_async_subdev_notifier_register -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0xd8d21885 v4l2_async_unregister_subdev -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x3885c2ef 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 0x48c5ca9f v4l2_m2m_job_finish -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x5352d022 v4l2_m2m_resume -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0xb37a9de0 v4l2_m2m_buf_done_and_job_finish -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0xd665af77 v4l2_m2m_get_vq -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0xf626dd03 v4l2_m2m_suspend -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0614dd5a v4l2_video_std_frame_period -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x082737e8 v4l2_ctrl_merge -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x082be5a0 v4l2_ctrl_subscribe_event -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x10797d19 v4l2_g_ext_ctrls -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x123959a1 v4l2_type_names -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x15d50637 v4l2_queryctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x16244fe5 v4l2_prio_check -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1f29b64b v4l2_subdev_call_wrappers -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x22bc8fe4 v4l2_ctrl_new_std_menu -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2342f1ae v4l2_prio_open -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x27bce772 __v4l2_ctrl_s_ctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x28b12cc9 v4l2_format_info -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2bc757af video_unregister_device -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2e903eee v4l2_ctrl_sub_ev_ops -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x315351f6 video_device_release -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 0x342edbd5 v4l2_ctrl_cluster -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x34bd6a0b v4l2_ctrl_handler_free -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 0x4786afb7 v4l2_ctrl_new_std -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x493fe5eb v4l2_querymenu -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4a898aae __v4l2_ctrl_modify_range -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x529fb41b v4l2_ctrl_add_handler -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x566f2ce5 __v4l2_ctrl_grab -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x60231418 v4l2_ctrl_poll -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x67dc9b30 v4l2_ctrl_request_setup -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x6e4701a3 v4l2_ctrl_radio_filter -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x6edbdcef __v4l2_ctrl_s_ctrl_string -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x72635781 v4l2_ctrl_find -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x73056363 v4l2_ctrl_notify -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x771d9155 __video_register_device -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7ac6f910 v4l2_ctrl_handler_log_status -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7cbf7b34 v4l2_ctrl_new_fwnode_properties -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7ea3a49b v4l2_ctrl_activate -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x80deb1a2 v4l2_g_ctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8106095a v4l2_prio_max -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8569a091 v4l2_ctrl_log_status -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x89e3897d v4l2_ctrl_query_fill -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8cca9404 v4l2_ctrl_subdev_subscribe_event -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8dc919e1 v4l2_ctrl_new_custom -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x906a2d0a video_devdata -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x959d7d45 v4l2_s_ctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x97067ad6 v4l2_ctrl_handler_init_class -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa12918ae v4l2_ctrl_handler_setup -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa2c13fdf v4l2_ctrl_g_ctrl_int64 -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa7b46c1d v4l2_subdev_init -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb50e4ea2 __v4l2_ctrl_s_ctrl_compound -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb733a67a v4l2_ctrl_subdev_log_status -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb77b0159 v4l2_prio_init -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xba16f134 v4l2_try_ext_ctrls -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xbc5671dc v4l_printk_ioctl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xbeb96c63 v4l2_query_ext_ctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc05053dc v4l2_s_ext_ctrls -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 0xd26191d0 v4l2_ctrl_auto_cluster -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xdc7e0128 v4l2_ctrl_fill -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xde32275f v4l2_ctrl_new_int_menu -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe2857be6 v4l2_ctrl_g_ctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe2b92059 v4l2_video_std_construct -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xec4bdc72 video_ioctl2 -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 0xf863a9e5 video_device_release_empty -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf90a0f93 v4l2_ctrl_new_std_compound -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xfa4babe4 v4l2_ctrl_new_std_menu_items -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xfb0bd5a7 video_device_alloc -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xfe6d63fa __v4l2_ctrl_s_ctrl_int64 -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xffc2b0cb v4l2_ctrl_request_complete -EXPORT_SYMBOL drivers/memory/renesas-rpc-if 0x140ed94d rpcif_sw_init -EXPORT_SYMBOL drivers/memory/renesas-rpc-if 0x332eab83 rpcif_manual_xfer -EXPORT_SYMBOL drivers/memory/renesas-rpc-if 0x942567fb rpcif_hw_init -EXPORT_SYMBOL drivers/memory/renesas-rpc-if 0xaedfd674 rpcif_dirmap_read -EXPORT_SYMBOL drivers/memory/renesas-rpc-if 0xd97ba1ac rpcif_prepare -EXPORT_SYMBOL drivers/memstick/core/memstick 0x29a7117a memstick_suspend_host -EXPORT_SYMBOL drivers/memstick/core/memstick 0x4a4e5778 memstick_init_req_sg -EXPORT_SYMBOL drivers/memstick/core/memstick 0x4ad01a1c memstick_add_host -EXPORT_SYMBOL drivers/memstick/core/memstick 0x6046842c memstick_register_driver -EXPORT_SYMBOL drivers/memstick/core/memstick 0x6588080c memstick_set_rw_addr -EXPORT_SYMBOL drivers/memstick/core/memstick 0x6bb0be45 memstick_alloc_host -EXPORT_SYMBOL drivers/memstick/core/memstick 0x6efb5a63 memstick_unregister_driver -EXPORT_SYMBOL drivers/memstick/core/memstick 0x71a14efb memstick_remove_host -EXPORT_SYMBOL drivers/memstick/core/memstick 0x99273e62 memstick_free_host -EXPORT_SYMBOL drivers/memstick/core/memstick 0xae50437c memstick_init_req -EXPORT_SYMBOL drivers/memstick/core/memstick 0xccb79da4 memstick_next_req -EXPORT_SYMBOL drivers/memstick/core/memstick 0xd23a9660 memstick_resume_host -EXPORT_SYMBOL drivers/memstick/core/memstick 0xe431c35c memstick_detect_change -EXPORT_SYMBOL drivers/memstick/core/memstick 0xff73804a memstick_new_req -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x048b5cf4 mpt_register -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x0735d93d mpt_clear_taskmgmt_in_progress_flag -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x0c37849d mpt_reset_register -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x12d259c7 mpt_alloc_fw_memory -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x26f440f3 mpt_put_msg_frame -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x33bd789a mpt_send_handshake_request -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x39037b23 mpt_suspend -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x3cc6a856 mpt_resume -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x3fcddcbe mpt_get_msg_frame -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x502108d0 mpt_fwfault_debug -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x59fd470b mpt_set_taskmgmt_in_progress_flag -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x5aa2b6d9 mpt_detach -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x610b257e mpt_reset_deregister -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x6282beab mpt_free_fw_memory -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x6bb6cf7a mpt_device_driver_register -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x74a0134a mpt_device_driver_deregister -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x7badf308 mpt_raid_phys_disk_get_num_paths -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x7fb378b0 mpt_Soft_Hard_ResetHandler -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x7fd0e2e8 mpt_raid_phys_disk_pg0 -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x981efe92 mpt_deregister -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xa4665d1f mpt_free_msg_frame -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xa518eb06 mpt_put_msg_frame_hi_pri -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xaa89d213 mptbase_sas_persist_operation -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xabd45839 mpt_GetIocState -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xb4449e6c mpt_attach -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xb60c1949 mpt_raid_phys_disk_pg1 -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xb7594338 mpt_HardResetHandler -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xb86df390 mpt_findImVolumes -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xc53d02cb mpt_event_register -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xccd83c91 mpt_halt_firmware -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xd2a1d7b4 mpt_verify_adapter -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 0xf484f8f0 mpt_config -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xfd609816 mpt_print_ioc_summary -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x01927fe8 mptscsih_bus_reset -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x063ac88c mptscsih_raid_id_to_num -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x076a4d12 mptscsih_IssueTaskMgmt -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x0d6935d4 mptscsih_change_queue_depth -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x0f11dd45 mptscsih_flush_running_cmds -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x18662b3e mptscsih_event_process -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x2f8f84c4 mptscsih_ioc_reset -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x33c228e7 mptscsih_info -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x37878f03 mptscsih_slave_configure -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x398ef293 mptscsih_bios_param -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x39b04bed mptscsih_is_phys_disk -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x44426df6 mptscsih_io_done -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x60ee4a44 mptscsih_scandv_complete -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x7987d2bc mptscsih_taskmgmt_complete -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x7cdb1a8d mptscsih_remove -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x8a100c36 mptscsih_suspend -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x9725367f mptscsih_qcmd -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xa3c0657b mptscsih_show_info -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xb489a82b mptscsih_abort -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xb6a315c4 mptscsih_taskmgmt_response_code -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xd05e1323 mptscsih_dev_reset -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xe31fe714 mptscsih_resume -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xe4818b6d mptscsih_slave_destroy -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xee6bdf4d mptscsih_get_scsi_lookup -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xf2655276 mptscsih_host_reset -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xfe80d0b3 mptscsih_shutdown -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xff06a50d mptscsih_host_attrs -EXPORT_SYMBOL drivers/mfd/axp20x 0x3c76ab82 axp20x_match_device -EXPORT_SYMBOL drivers/mfd/axp20x 0x51916791 axp20x_device_probe -EXPORT_SYMBOL drivers/mfd/axp20x 0x74f2c9de axp20x_device_remove -EXPORT_SYMBOL drivers/mfd/dln2 0x2075d9cc dln2_transfer -EXPORT_SYMBOL drivers/mfd/dln2 0x54159706 dln2_register_event_cb -EXPORT_SYMBOL drivers/mfd/dln2 0x6a6b93ec dln2_unregister_event_cb -EXPORT_SYMBOL drivers/mfd/htc-pasic3 0x02fd1411 pasic3_write_register -EXPORT_SYMBOL drivers/mfd/htc-pasic3 0x6b67fd76 pasic3_read_register -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x0a499109 mc13xxx_irq_unmask -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x180d899d mc13xxx_reg_read -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x2db6cb2e mc13xxx_irq_status -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x519b2dfd mc13xxx_reg_rmw -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x84234730 mc13xxx_irq_request -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x914c5c9f mc13xxx_irq_free -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x9db4946b mc13xxx_reg_write -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xb152f977 mc13xxx_unlock -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xc8f9d830 mc13xxx_irq_mask -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xcc355d9f mc13xxx_get_flags -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xf3bca99e mc13xxx_lock -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 0x39a5dd9c wm1811_regmap_config -EXPORT_SYMBOL drivers/mfd/wm8994 0x8b190f8c wm8994_base_regmap_config -EXPORT_SYMBOL drivers/mfd/wm8994 0x94fd6428 wm8994_regmap_config -EXPORT_SYMBOL drivers/mfd/wm8994 0xa6c7dfb1 wm8958_regmap_config -EXPORT_SYMBOL drivers/mfd/wm8994 0xaca2cb68 wm8994_irq_exit -EXPORT_SYMBOL drivers/mfd/wm8994 0xb1d3e0b1 wm8994_irq_init -EXPORT_SYMBOL drivers/misc/ad525x_dpot 0xc26bf850 ad_dpot_remove -EXPORT_SYMBOL drivers/misc/ad525x_dpot 0xfd0a6ce3 ad_dpot_probe -EXPORT_SYMBOL drivers/misc/altera-stapl/altera-stapl 0x5bafa76e altera_init -EXPORT_SYMBOL drivers/misc/c2port/core 0x957b250b c2port_device_register -EXPORT_SYMBOL drivers/misc/c2port/core 0xfad849ad c2port_device_unregister -EXPORT_SYMBOL drivers/misc/tifm_core 0x0ad17639 tifm_unregister_driver -EXPORT_SYMBOL drivers/misc/tifm_core 0x0ffb277f tifm_queue_work -EXPORT_SYMBOL drivers/misc/tifm_core 0x17fb24a3 tifm_unmap_sg -EXPORT_SYMBOL drivers/misc/tifm_core 0x1c9a7abf tifm_remove_adapter -EXPORT_SYMBOL drivers/misc/tifm_core 0x2ba472c8 tifm_eject -EXPORT_SYMBOL drivers/misc/tifm_core 0x48183c8f tifm_register_driver -EXPORT_SYMBOL drivers/misc/tifm_core 0x5801cefa tifm_map_sg -EXPORT_SYMBOL drivers/misc/tifm_core 0x66c5aa5c tifm_add_adapter -EXPORT_SYMBOL drivers/misc/tifm_core 0x9f7d870a tifm_alloc_adapter -EXPORT_SYMBOL drivers/misc/tifm_core 0xa1b3767d tifm_free_adapter -EXPORT_SYMBOL drivers/misc/tifm_core 0xb2915280 tifm_has_ms_pif -EXPORT_SYMBOL drivers/misc/tifm_core 0xd951404c tifm_free_device -EXPORT_SYMBOL drivers/misc/tifm_core 0xfc1eb488 tifm_alloc_device -EXPORT_SYMBOL drivers/mmc/host/cqhci 0x4fe665b6 cqhci_init -EXPORT_SYMBOL drivers/mmc/host/cqhci 0x8eff4835 cqhci_resume -EXPORT_SYMBOL drivers/mmc/host/cqhci 0xcd784b1f cqhci_pltfm_init -EXPORT_SYMBOL drivers/mmc/host/cqhci 0xd7e8b5a7 cqhci_irq -EXPORT_SYMBOL drivers/mmc/host/cqhci 0xdb0d13ec cqhci_deactivate -EXPORT_SYMBOL drivers/mmc/host/dw_mmc 0x051191ba dw_mci_runtime_resume -EXPORT_SYMBOL drivers/mmc/host/dw_mmc 0x3a5c01f0 dw_mci_remove -EXPORT_SYMBOL drivers/mmc/host/dw_mmc 0x6ce29975 dw_mci_runtime_suspend -EXPORT_SYMBOL drivers/mmc/host/dw_mmc 0x81aefa6d dw_mci_probe -EXPORT_SYMBOL drivers/mmc/host/of_mmc_spi 0x1b136d13 mmc_spi_put_pdata -EXPORT_SYMBOL drivers/mmc/host/of_mmc_spi 0xeba40d4b mmc_spi_get_pdata -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x417437e2 cfi_fixup -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x4ff2d8e6 cfi_build_cmd -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x79ead010 cfi_varsize_frob -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x7a0cfb9a cfi_read_pri -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x974bb207 cfi_merge_status -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xcabc4343 cfi_build_cmd_addr -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xea9df08b cfi_send_gen_cmd -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xff9fa623 cfi_udelay -EXPORT_SYMBOL drivers/mtd/chips/chipreg 0x373161c7 unregister_mtd_chip_driver -EXPORT_SYMBOL drivers/mtd/chips/chipreg 0x698f28b4 map_destroy -EXPORT_SYMBOL drivers/mtd/chips/chipreg 0xc8fdd018 register_mtd_chip_driver -EXPORT_SYMBOL drivers/mtd/chips/chipreg 0xf15526a8 do_map_probe -EXPORT_SYMBOL drivers/mtd/chips/gen_probe 0xf13ad1e7 mtd_do_chip_probe -EXPORT_SYMBOL drivers/mtd/lpddr/lpddr_cmds 0xc9dbccde lpddr_cmdset -EXPORT_SYMBOL drivers/mtd/maps/map_funcs 0x2968ecc7 simple_map_init -EXPORT_SYMBOL drivers/mtd/mtd 0x1a16f408 mtd_concat_destroy -EXPORT_SYMBOL drivers/mtd/mtd 0xa85cfb3c mtd_concat_create -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x1624255b nand_ecc_finish_io_req -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x1b8ad452 nand_ecc_sw_bch_get_engine -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x37e6a730 nand_ecc_cleanup_ctx -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x3949d725 nand_ecc_init_ctx -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x3955fa15 nand_ecc_sw_hamming_init_ctx -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x43b5abf6 nand_ecc_sw_hamming_get_engine -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x672cb7d4 nand_ecc_prepare_io_req -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x85512f83 nand_ecc_sw_hamming_calculate -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x89edcb71 nand_ecc_get_on_die_hw_engine -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xa1386653 nand_ecc_sw_hamming_cleanup_ctx -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xb3b9f0c2 nand_ecc_sw_hamming_correct -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xc1bac220 nand_ecc_get_sw_engine -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xd16a789f nand_ecc_sw_bch_init_ctx -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xdd5aa754 of_get_nand_ecc_user_config -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xde8751b8 nand_ecc_sw_bch_calculate -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xe6db989b ecc_sw_hamming_correct -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xe73a79fa nand_ecc_is_strong_enough -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xf33cddee nand_ecc_sw_bch_cleanup_ctx -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xfa6b539c nand_ecc_sw_bch_correct -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xff4351b0 ecc_sw_hamming_calculate -EXPORT_SYMBOL drivers/mtd/nand/onenand/onenand 0xb422d903 onenand_addr -EXPORT_SYMBOL drivers/mtd/nand/onenand/onenand 0xc6941e3a flexonenand_region -EXPORT_SYMBOL drivers/mtd/nand/raw/denali 0x30db096f denali_calc_ecc_bytes -EXPORT_SYMBOL drivers/mtd/nand/raw/denali 0x40d0ef41 denali_init -EXPORT_SYMBOL drivers/mtd/nand/raw/denali 0xf85d3945 denali_remove -EXPORT_SYMBOL drivers/mtd/nand/raw/mtk_ecc 0x018313c0 of_mtk_ecc_get -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 0xda64ef4a mtk_ecc_adjust_strength -EXPORT_SYMBOL drivers/mtd/nand/raw/mtk_ecc 0xec8b9207 mtk_ecc_encode -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x02878bd1 rawnand_sw_hamming_cleanup -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x0a477abf nand_scan_with_ids -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x16797acc rawnand_sw_bch_correct -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x2e892e26 rawnand_dt_parse_gpio_cs -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x37869980 nand_write_page_raw -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x54981e18 nand_write_oob_std -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x6f9b53f0 rawnand_sw_bch_init -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x78a57c48 rawnand_sw_hamming_init -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x8aa14b23 nand_create_bbt -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x8ecbb3b8 nand_check_erased_ecc_chunk -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x97604360 rawnand_sw_hamming_calculate -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xa9b1ae48 nand_monolithic_write_page_raw -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xb0d6a982 nand_get_set_features_notsupp -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xb585af5d rawnand_sw_hamming_correct -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xbf8aef91 nand_monolithic_read_page_raw -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xc2a72bc3 nand_read_page_raw -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xcf25f2d7 nand_read_oob_std -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xe3c81612 rawnand_sw_bch_cleanup -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x100224c6 arcnet_open -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x184f8b21 arcnet_send_packet -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x6534792a arcnet_debug -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x77e7de10 arcnet_timeout -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x785163b2 arcnet_unregister_proto -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x9a056c3c arc_proto_map -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x9c17fdec arcnet_close -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xb03c4745 free_arcdev -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xc178f638 arc_raw_proto -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xecb730b0 arcnet_interrupt -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xfd5606ee alloc_arcdev -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xfdc72ef4 arc_bcast_proto -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xff48769c arc_proto_default -EXPORT_SYMBOL drivers/net/arcnet/com20020 0x4c07100f com20020_check -EXPORT_SYMBOL drivers/net/arcnet/com20020 0xc0e73063 com20020_netdev_ops -EXPORT_SYMBOL drivers/net/arcnet/com20020 0xfd76f2a1 com20020_found -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x00587185 b53_setup_devlink_resources -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x127a4946 b53_phylink_mac_link_state -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x13e76f5c b53_br_leave -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x191f4738 b53_brcm_hdr_setup -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x197447a4 b53_get_sset_count -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x1a6c76e5 b53_get_ethtool_stats -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x21921f80 b53_phylink_validate -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x22a55b64 b53_get_ethtool_phy_stats -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x260556c6 b53_br_set_stp_state -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x347d6712 b53_mdb_add -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x3cd4a54a b53_br_flags_pre -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x475ab23e b53_switch_detect -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x48a2544d b53_mdb_del -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x4af98102 b53_eee_init -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x4b3f95fd b53_get_tag_protocol -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x5033fa71 b53_phylink_mac_link_up -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x53e54ed0 b53_enable_port -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x545a3a74 b53_disable_port -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x6d59e46c b53_port_event -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x6f361af2 b53_mirror_del -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x842ddbcd b53_fdb_del -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x881944af b53_eee_enable_set -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x9128b1b1 b53_br_fast_age -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x939b7cba b53_switch_alloc -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x9b53941c b53_fdb_dump -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x9b5844a2 b53_phylink_mac_an_restart -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x9d4770d0 b53_get_strings -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xab562069 b53_fdb_add -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xafbe85e9 b53_vlan_del -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xb3a699a0 b53_br_flags -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xba91991a b53_switch_register -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xbe64af6e b53_get_mac_eee -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xd29dd06e b53_configure_vlan -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xdcc487b3 b53_vlan_filtering -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xde0732a1 b53_mirror_add -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xe4ba7394 b53_br_join -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xe949673c b53_set_mac_eee -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xee440508 b53_phylink_mac_link_down -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xf56dd3bc b53_imp_vlan_setup -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xf951bc5f b53_phylink_mac_config -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xfb399d91 b53_vlan_add -EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x18fd04e6 b53_serdes_link_state -EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x5d634a11 b53_serdes_phylink_validate -EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0xb22294ef b53_serdes_link_set -EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0xb3da8234 b53_serdes_an_restart -EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0xc1cea46c b53_serdes_config -EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0xd99c94e6 b53_serdes_init -EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0x1e356316 lan9303_shutdown -EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0x635afa2d lan9303_remove -EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0x7f4836cc lan9303_probe -EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0xada83f40 lan9303_register_set -EXPORT_SYMBOL drivers/net/dsa/microchip/ksz8795 0x98b39d92 ksz8_switch_register -EXPORT_SYMBOL drivers/net/dsa/microchip/ksz9477 0x7dbaaad3 ksz9477_switch_register -EXPORT_SYMBOL drivers/net/dsa/microchip/ksz_common 0x21517d15 ksz_switch_alloc -EXPORT_SYMBOL drivers/net/dsa/microchip/ksz_common 0x2233ecae ksz_switch_remove -EXPORT_SYMBOL drivers/net/dsa/microchip/ksz_common 0xdb6fefc9 ksz_switch_register -EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0x44db0e08 vsc73xx_shutdown -EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0x4c18c5bb vsc73xx_probe -EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0x8558fc20 vsc73xx_remove -EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0x99d242fe vsc73xx_is_addr_valid -EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0x19620a8b xrs700x_switch_shutdown -EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0x5c9d6d10 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 0x8b448d02 xrs700x_switch_register -EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0xa76ec849 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 0x345adf49 ei_close -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x4265b92c ei_start_xmit -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x4284db09 ei_open -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x4285d6b0 ei_get_stats -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x5b42d4ea NS8390_init -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x7a0c6373 ei_poll -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x7e25ac35 __alloc_ei_netdev -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x87362857 ei_netdev_ops -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x94b9e9e1 ei_tx_timeout -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xbd700f29 ei_set_multicast_list -EXPORT_SYMBOL drivers/net/ethernet/broadcom/bnxt/bnxt_en 0x589404b4 bnxt_ulp_probe -EXPORT_SYMBOL drivers/net/ethernet/broadcom/cnic 0x636af174 cnic_unregister_driver -EXPORT_SYMBOL drivers/net/ethernet/broadcom/cnic 0x9b0edbec cnic_register_driver -EXPORT_SYMBOL drivers/net/ethernet/cavium/common/cavium_ptp 0x0c1c38d6 cavium_ptp_get -EXPORT_SYMBOL drivers/net/ethernet/cavium/common/cavium_ptp 0x2ac8694b 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 0x02dbd162 t3_l2t_send_slow -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x070f39df cxgb3_alloc_stid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x2e3aeeaf t3_register_cpl_handler -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x3971defe cxgb3_free_stid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x4041212f cxgb3_ofld_send -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x44262966 dev2t3cdev -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x49085ec1 cxgb3_alloc_atid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x5b9cb382 t3_l2t_send_event -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x6100269d cxgb3_free_atid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x8387ee42 cxgb3_remove_tid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xa7179027 cxgb3_unregister_client -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xa878944a t3_l2t_get -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xbe27440a cxgb3_queue_tid_release -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xd46dc872 cxgb3_insert_tid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xdee81a82 cxgb3_register_client -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xf72a4895 t3_l2e_free -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x02e64616 cxgb4_select_ntuple -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x032bf5ac cxgb4_remove_server_filter -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x0f1a5528 cxgb4_unregister_uld -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x0fb36b8d cxgb4_read_tpte -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x12497367 cxgb4_port_chan -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x16450b07 cxgb4_dbfifo_count -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x1735780a cxgb4_sync_txq_pidx -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x1769a23b cxgb4_l2t_send -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x20621643 cxgb4_alloc_atid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x2240039a cxgb4_immdata_send -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x236501c0 t4_cleanup_clip_tbl -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x23c87ab8 cxgb4_free_atid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x288915d3 cxgb4_map_skb -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x2a4b092d cxgb4_alloc_sftid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x2f1a375f cxgb4_remove_server -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x45d62a3b cxgb4_update_root_dev_clip -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x4a6b57bc cxgb4_create_server -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x4faea1f1 cxgb4_iscsi_init -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x50ee5c07 cxgb4_best_aligned_mtu -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x55caab3d cxgb4_create_server_filter -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x5b435ab1 cxgb4_write_partial_sgl -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x5c5d3198 cxgb4_get_srq_entry -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x5d7f36bd cxgb4_get_tcp_stats -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x627181b1 cxgb4_l2t_get -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x6600b94c cxgb4_bar2_sge_qregs -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x7732c64c cxgb4_write_sgl -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x7d1ab82e cxgb4_port_idx -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x94a8e53d cxgb4_smt_alloc_switching -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x94eef600 cxgb4_l2t_alloc_switching -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x96d5a267 cxgb4_remove_tid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa321e540 cxgb4_port_e2cchan -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa406345d cxgb4_check_l2t_valid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa6464bbe cxgb4_inline_tx_skb -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa77c7f28 cxgb4_l2t_release -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xad3b9c16 cxgb4_flush_eq_cache -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xb27a472f cxgb4_ring_tx_db -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xbb7338cb cxgb4_alloc_stid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xbc1365ac cxgb4_smt_release -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xbe5c534e cxgb4_pktgl_to_skb -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xbeec1edb cxgb4_free_stid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xc47793a6 cxgb4_clip_release -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xc77dbe86 cxgb4_port_viid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xcad72f1f cxgb4_ofld_send -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd69a0294 cxgb4_best_mtu -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xdec0acf8 cxgb4_create_server6 -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xe90b3c45 cxgb4_register_uld -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xf0b5d632 cxgb4_crypto_send -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xf4ad7eed cxgb4_reclaim_completed_tx -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xfb3ed7eb cxgb4_clip_get -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xff49771c cxgb4_read_sge_timestamp -EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x1baa9f87 cxgb_find_route -EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x1bdaafe1 cxgbi_tagmask_set -EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x20721294 cxgbi_ppm_make_ppod_hdr -EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x255ab30f cxgb_get_4tuple -EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x347d6da3 cxgb_find_route6 -EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x9b2bff03 cxgbi_ppm_ppod_release -EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x9d066631 cxgbi_ppm_init -EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0xc48bcc3d cxgbi_ppm_ppods_reserve -EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0xe86192f9 cxgbi_ppm_release -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x58a330c5 enic_api_devcmd_proxy_by_index -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x6ed362ad vnic_dev_register -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xaee98dc3 vnic_dev_unregister -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xca4dd20b vnic_dev_get_res_count -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xd3aab0df vnic_dev_get_pdev -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xdd132d45 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 0x9ceec18b be_roce_register_driver -EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0xc941ba41 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 0x56ad9d14 dpaa2_ptp -EXPORT_SYMBOL drivers/net/ethernet/freescale/enetc/fsl-enetc-ierb 0x35edec60 enetc_ierb_register_pf -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0x0398c3cd hnae_put_handle -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0x074a4a17 hnae_ae_register -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0x15d4a29c hnae_get_handle -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0xabda6929 hnae_reinit_handle -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0xb1266858 hnae_register_notifier -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0xb4bc6317 hnae_ae_unregister -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0xdf24adef hnae_unregister_notifier -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hns_dsaf 0x67479c9f hns_dsaf_roce_reset -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0x32ee10f7 hnae3_unregister_ae_algo -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0x3bf3db8d hnae3_register_ae_algo -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0x8385a953 hnae3_set_client_init_flag -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0x8f52ff11 hnae3_register_ae_dev -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0x973ce149 hnae3_unregister_ae_algo_prepare -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0xa6eca4c7 hnae3_unregister_ae_dev -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0xdb4b4c8d hnae3_unregister_client -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0xf2f5175b hnae3_register_client -EXPORT_SYMBOL drivers/net/ethernet/intel/iavf/iavf 0x7aa9ffc5 iavf_unregister_client -EXPORT_SYMBOL drivers/net/ethernet/intel/iavf/iavf 0xd8827cda iavf_register_client -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x040b75bc otx2_mbox_msg_send -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x364e8761 __SCK__tp_func_otx2_msg_interrupt -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 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 0x5998e402 otx2_mbox_destroy -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x5a78a420 otx2_reply_invalid_msg -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x6092ff0a otx2_mbox_wait_for_rsp -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x60e1a6f1 otx2_mbox_reset -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 0x7587cb5c __otx2_mbox_reset -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x7775c76f otx2_mbox_busy_poll_for_rsp -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x7b62075d otx2_mbox_check_rsp_msgs -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x8f772a3f otx2_mbox_id2name -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0xaf1f152b __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 0xbcf6b0db __traceiter_otx2_msg_alloc -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0xbf8177ef otx2_mbox_regions_init -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0xcef3985a __SCK__tp_func_otx2_msg_process -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0xe4cabfb1 otx2_mbox_get_rsp -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0xecdd30f4 otx2_mbox_alloc_msg_rsp -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0xf725dfde otx2_mbox_init -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0xfa0df790 otx2_mbox_nonempty -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0xfc64627c __traceiter_otx2_msg_interrupt -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x02c61b06 mbox_handler_nix_lf_alloc -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x16122fcc otx2_set_real_num_queues -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x18cffcff otx2_get_max_mtu -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x19c14ac7 otx2_stop -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x1a73ebbb otx2_set_mac_address -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x20bb4380 otx2_tx_timeout -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x2a4a8a61 otx2_alloc_mcam_entries -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x3fd8645c cn10k_lmtst_init -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x55e688e7 otx2_mcam_flow_del -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x644a153e mbox_handler_nix_txsch_alloc -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x6662b8f2 otx2_get_stats64 -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x7286c636 otx2_tc_alloc_ent_bitmap -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x81e44c52 otx2_open -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x849a7ef6 otx2_mbox_up_handler_cgx_link_event -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x9f1e6493 otx2_sq_append_skb -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xa34bbb03 otx2_get_mac_from_af -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xab3fafe6 otx2_attach_npa_nix -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xb3ae1f23 mbox_handler_npa_lf_alloc -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xb70946f9 mbox_handler_nix_bp_enable -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xd14e4ca4 otx2_detach_resources -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xd5829b9b otx2vf_set_ethtool_ops -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xe1556934 mbox_handler_msix_offset -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xe4c54e0c otx2vf_mcam_flow_init -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xeffd130b otx2_get_maxflows -EXPORT_SYMBOL drivers/net/ethernet/marvell/prestera/prestera 0x7ac2cf7b prestera_device_unregister -EXPORT_SYMBOL drivers/net/ethernet/marvell/prestera/prestera 0xa130ec87 prestera_device_register -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x082d1815 mlx4_is_eq_shared -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0a4f42ee mlx4_SET_PORT_qpn_calc -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0f4a63ab mlx4_get_slave_pkey_gid_tbl_len -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x117567b3 mlx4_get_slave_node_guid -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x117f9502 mlx4_get_module_info -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1fd86142 set_and_calc_slave_port_state -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x213dc6ae mlx4_test_interrupt -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x277ceb47 mlx4_release_eq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3378c6be mlx4_SET_PORT_user_mtu -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x34a42009 mlx4_ALLOCATE_VPP_set -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3a98c6e0 mlx4_SET_PORT_general -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3ad875c3 mlx4_SET_PORT_SCHEDULER -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3e58404c mlx4_gen_pkey_eqe -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4255d58c get_phv_bit -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x47653566 mlx4_ALLOCATE_VPP_get -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4e0bdda3 mlx4_sync_pkey_table -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x515262bd mlx4_SET_PORT_user_mac -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x54b54d13 mlx4_query_diag_counters -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5c7eacd6 mlx4_get_roce_gid_from_slave -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6499bcb4 mlx4_SET_PORT_PRIO2TC -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x75550f95 mlx4_gen_guid_change_eqe -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x789bad19 mlx4_tunnel_steer_add -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7b876026 mlx4_SET_PORT_VXLAN -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 0x811a1417 mlx4_test_async -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8d089e71 mlx4_is_slave_active -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa9070f5c mlx4_get_slave_port_state -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa9162824 mlx4_SET_VPORT_QOS_set -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xafa90a29 mlx4_get_eqs_per_port -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb04f2037 mlx4_get_cpu_rmap -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb3717f29 mlx4_SET_PORT_fcs_check -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb4dca44a mlx4_assign_eq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb6d3e618 mlx4_gen_port_state_change_eqe -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbbc9309a set_phv_bit -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc02de4b2 mlx4_get_parav_qkey -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc02e4677 mlx4_put_slave_node_guid -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc650f244 mlx4_SET_PORT_BEACON -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc7e8a3d8 mlx4_get_slave_from_roce_gid -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcc38be12 mlx4_gen_slaves_port_mgt_ev -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd5ef1a56 mlx4_get_is_vlan_offload_disabled -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdebb5809 mlx4_SET_MCAST_FLTR -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe7b56b28 mlx4_SET_VPORT_QOS_get -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf5576079 mlx4_is_eq_vector_valid -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfe1fe344 mlx4_eq_get_irq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xff5f6c05 mlx4_max_tc -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x05c1dcaf __traceiter_mlx5_fs_del_fte -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0748c09d mlx5_qp_debugfs_init -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x07a9bb69 mlx5_cmd_alloc_uar -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x098ed96f mlx5_core_modify_cq_moderation -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0bc6d765 mlx5_rl_add_rate -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0c3c8089 mlx5_packet_reformat_dealloc -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0e9ab56b mlx5_fc_destroy -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0ef86dc2 mlx5_get_flow_namespace -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0f3073ac __traceiter_mlx5_fs_del_ft -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1210e93c mlx5_get_uars_page -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x13d30e8b mlx5_core_create_cq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x15030e2a mlx5_rdma_rn_get_params -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1535a675 __traceiter_mlx5_fs_add_rule -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x16b06025 mlx5_del_flow_rules -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1bf0bee8 mlx5_core_create_rq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1ce9657b mlx5_buf_alloc -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1d92d9cd mlx5_cmd_destroy_vport_lag -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1e38486c __tracepoint_mlx5_fs_add_ft -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2298b9f1 mlx5_lag_is_master -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 0x24711c69 mlx5_cmd_create_vport_lag -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2538308a mlx5_core_query_sq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2c44149a mlx5_cmd_exec -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2e7d33c8 mlx5_rl_is_in_range -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x31e89603 mlx5_fc_query -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 0x3460a31d mlx5_eswitch_vport_match_metadata_enabled -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 0x37491aa8 mlx5_fc_create -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x38f7b59c mlx5_eq_destroy_generic -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x399b1470 mlx5_cmd_init_async_ctx -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3b661e66 mlx5_fs_remove_rx_underlay_qpn -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3f1e1888 mlx5_debugfs_root -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x40b73fd0 mlx5_core_create_rqt -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4651734d mlx5_mpfs_add_mac -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x46cecdf8 mlx5_core_query_mkey -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x46e2e7d1 mlx5_comp_vectors_count -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4d34090b mlx5_eq_notifier_unregister -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 0x4ee1477a mlx5_lag_is_active -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4f2a7bf3 mlx5_eq_notifier_register -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4f41c8eb mlx5_destroy_flow_table -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x53277bd0 __traceiter_mlx5_fs_del_fg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x53ee750b mlx5_core_query_vendor_id -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x542ee4a5 mlx5_rsc_dump_cmd_create -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 0x5a0b236b mlx5_comp_irq_get_affinity_mask -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5a75adac mlx5_notifier_unregister -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5db2d4f8 __traceiter_mlx5_fs_add_fg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5dc885d0 mlx5_cmd_exec_polling -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5f5aa43b mlx5_eswitch_get_proto_dev -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x60a9c0a2 mlx5_core_destroy_cq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x61492bb7 mlx5_rl_are_equal -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x628e9c33 mlx5_add_flow_rules -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x64354be9 mlx5_lag_is_sriov -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x645a8f22 mlx5_fpga_sbu_conn_create -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x64ae5ca3 mlx5_fpga_mem_write -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x64b3364c mlx5_lag_get_roce_netdev -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x65c049b3 mlx5_eq_create_generic -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x65f8612d mlx5_core_query_cq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6d206f02 mlx5_notifier_register -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6fbcf698 mlx5_core_create_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 0x72f425ad mlx5_debug_qp_remove -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x73c9f365 mlx5_core_modify_sq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x75d27313 mlx5_debug_qp_add -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x76a910b4 mlx5_core_destroy_tir -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7ab212ca mlx5_create_flow_table -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 0x7ca26f18 mlx5_core_roce_gid_set -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7d06984f mlx5_rsc_dump_next -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7da62cfb mlx5_fpga_get_sbu_caps -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 0x801a0392 mlx5_core_modify_rq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8141d522 mlx5_eswitch_uplink_get_proto_dev -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x814cf2e4 mlx5_core_modify_tis -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x83db767f mlx5_eswitch_get_core_dev -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x84c9b795 __traceiter_mlx5_fs_add_ft -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x84e57365 mlx5_core_dealloc_pd -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x85477097 mlx5_lag_get_slave_port -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x865e6b86 mlx5_create_flow_group -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 0x880718da mlx5_create_auto_grouped_flow_table -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8ffbd0b5 mlx5_core_detach_mcg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8ffc1d6e mlx5_query_ib_port_oper -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x906f98f9 mlx5_mpfs_del_mac -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9283e6e4 mlx5_eq_enable -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x934a3578 mlx5_lag_is_roce -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x94653508 mlx5_core_create_tis -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x96eb2c99 mlx5_fc_id -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9771429d __traceiter_mlx5_fw -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x983b6bd1 mlx5_get_fdb_sub_ns -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9a0d9066 mlx5_lag_get_peer_mdev -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9cc69588 mlx5_core_destroy_psv -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 0x9e255cd8 mlx5_core_create_mkey -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9ef66f82 mlx5_vector2eqn -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9f0878fc mlx5_create_lag_demux_flow_table -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa670a56d __traceiter_mlx5_fs_del_rule -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa7a90308 mlx5_free_bfreg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa7ee0341 mlx5_eswitch_register_vport_reps -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa9736423 mlx5_put_uars_page -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xaac3479b mlx5_eswitch_add_send_to_vport_rule -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xaba52c01 mlx5_fpga_mem_read -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xac7d1bb3 mlx5_cmd_exec_cb -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 0xaebc53f2 mlx5_eq_disable -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xaedca6c3 mlx5_destroy_flow_group -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xaf221968 mlx5_fpga_sbu_conn_destroy -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb0a1761e mlx5_fs_add_rx_underlay_qpn -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb0c3cad2 mlx5_rl_remove_rate -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb0e386a2 mlx5_core_alloc_pd -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb10914ff mlx5_core_destroy_mkey -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb25d5bf4 mlx5_eswitch_get_vport_metadata_for_match -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb2a25270 mlx5_eq_update_ci -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb4d9bdff mlx5_packet_reformat_alloc -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb565aea6 mlx5_cmd_free_uar -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb648614c mlx5_core_attach_mcg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb72cffaf __tracepoint_mlx5_fs_del_ft -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb74f8147 mlx5_core_create_tir -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbadab69c mlx5_rl_remove_rate_raw -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 0xbd0dbe20 mlx5_core_destroy_rqt -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc1390bd4 mlx5_eswitch_unregister_vport_reps -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc340b33d mlx5_eswitch_vport_rep -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc93d039c mlx5_fpga_sbu_conn_sendmsg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd2c5f2a2 __traceiter_mlx5_fs_set_fte -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd35290d3 mlx5_eswitch_get_encap_mode -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd5365c9b mlx5_lag_query_cong_counters -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 0xd6ebc07d mlx5_core_query_rq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdaf29b4f mlx5_lag_is_shared_fdb -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdbe29865 mlx5_eswitch_reg_c1_loopback_enabled -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdf000009 mlx5_rl_add_rate_raw -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe471454f mlx5_alloc_bfreg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe4e09c2b __tracepoint_mlx5_fw -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe58bebac mlx5_nic_vport_disable_roce -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe85aceab mlx5_eswitch_get_vport_metadata_for_set -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xeb3a052c mlx5_core_alloc_transport_domain -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xeb9a8bcf __SCK__tp_func_mlx5_fs_del_fte -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xee4a8719 mlx5_core_destroy_tis -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xef4f2767 mlx5_qp_debugfs_cleanup -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf09a8c7d mlx5_cmd_cleanup_async_ctx -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf52746b3 mlx5_core_dealloc_transport_domain -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf7c8ceb2 mlx5_eq_get_eqe -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 0xf8b53613 mlx5_core_modify_cq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf977d70c mlx5_modify_header_dealloc -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfa4359d9 mlx5_core_destroy_rq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfc8e744e __SCK__tp_func_mlx5_fs_del_fg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfcb70347 mlx5_modify_header_alloc -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxfw/mlxfw 0x2f355238 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 0x0767fa02 mlxsw_core_bus_device_register -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x07abcc0c mlxsw_afa_block_append_trap -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x0ca34ccf mlxsw_core_max_ports -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x0e81c09c mlxsw_afk_destroy -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x0ec22a56 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 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 0x3f776241 mlxsw_afa_create -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 0x5b7c052c mlxsw_afa_block_append_mirror -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 0x602d7457 mlxsw_core_driver_register -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x618a30ab mlxsw_afa_block_commit -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x61c1cfb8 mlxsw_core_port_devlink_port_get -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 0x6ac14bee mlxsw_core_skb_transmit -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x71060caf mlxsw_core_trap_unregister -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x71e1d813 mlxsw_core_port_clear -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x749556a2 mlxsw_afk_key_info_subset -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x74eb7c9e mlxsw_core_res_valid -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 0x7a49a257 mlxsw_core_port_eth_set -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x7f659d4c mlxsw_afa_block_append_vlan_modify -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 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 0x830b30be mlxsw_core_skb_receive -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 0x8b3a9cc3 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 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 0x9adae48f mlxsw_core_driver_unregister -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x9cbf026d mlxsw_afa_destroy -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x9e41f494 mlxsw_afk_encode -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xa7765e88 mlxsw_reg_query -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xb5e762fa mlxsw_afk_values_add_buf -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xb6517b2e mlxsw_afa_block_append_trap_and_forward -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xb9f797a9 mlxsw_env_module_overheat_counter_get -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xba05b3b0 mlxsw_core_emad_string_tlv_enable -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xbbb7a867 mlxsw_afa_block_append_sampler -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xbc222a8d mlxsw_afk_clear -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xbd88855e mlxsw_env_get_module_eeprom -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xbe82d6cc mlxsw_env_get_module_info -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xbfb7df3c mlxsw_core_driver_priv -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xbfd01f33 mlxsw_core_port_ib_set -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xc24a9f9d mlxsw_core_trap_state_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 0xca361868 mlxsw_core_rx_listener_unregister -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xcbab836f mlxsw_core_fw_rev_minor_subminor_validate -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 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 0xfd72c1b8 mlxsw_core_rx_listener_register -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xff007c25 mlxsw_core_cpu_port_fini -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_i2c 0x95632012 mlxsw_i2c_driver_unregister -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_i2c 0xd86abf00 mlxsw_i2c_driver_register -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_pci 0x76499ab8 mlxsw_pci_driver_unregister -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_pci 0xf390d3dd mlxsw_pci_driver_register -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x03268a54 ocelot_deinit_timestamp -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x04c39721 ocelot_vlan_prepare -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x06ca2dd7 ocelot_devlink_sb_register -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x083c43c0 ocelot_vlan_add -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x0de020bf ocelot_port_txtstamp_request -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x13b84a9e ocelot_sb_pool_set -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x19b8f4ed ocelot_get_strings -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x1b60ed45 ocelot_mact_learn -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x1de1d415 ocelot_port_lag_leave -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x1de55a34 ocelot_init_port -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x1f4b04c8 ocelot_port_vlan_filtering -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 0x2b5a5319 ocelot_init -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x2c83422e ocelot_bridge_stp_state_set -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x3181eae6 ocelot_port_bridge_flags -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x3a0a8a0a ocelot_fdb_add -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x4b10bbfa ocelot_port_policer_del -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x4cd7b9fb ocelot_mrp_del -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x51295688 ocelot_port_mdb_del -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x5472a90a ocelot_drain_cpu_queue -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x58cf843a ocelot_deinit -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x5a817d77 ocelot_get_sset_count -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x5c313052 ocelot_ptp_adjfine -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x5cda675f ocelot_sb_pool_get -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x5dcb8f75 ocelot_sb_occ_tc_port_bind_get -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x5ea48874 ocelot_sb_port_pool_get -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x618b5402 ocelot_vcap_filter_add -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x6c0f5778 ocelot_deinit_port -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x6e666a51 ocelot_port_mdb_add -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x702817e1 ocelot_ptp_gettime64 -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x70549ba5 ocelot_vcap_filter_del -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x70f7c401 ocelot_vlan_del -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x71b2e8f2 ocelot_devlink_sb_unregister -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x73ee452b ocelot_xtr_poll_frame -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x75a6965b ocelot_sb_occ_port_pool_get -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x77078b92 ocelot_set_ageing_time -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7b649b72 ocelot_mrp_add_ring_role -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7c7d0242 ocelot_ptp_adjtime -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x840be485 ocelot_fdb_del -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x85198d16 ocelot_get_txtstamp -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x86b958f4 ocelot_port_bridge_join -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x8a85c6a8 ocelot_vcap_block_find_filter_by_id -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x8b945f08 ocelot_sb_occ_max_clear -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x8bc4c816 ocelot_port_inject_frame -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x97f1f5d9 ocelot_ptp_enable -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xa40b31fa ocelot_init_timestamp -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xa4d1bf71 ocelot_sb_tc_pool_bind_get -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xa9f00785 ocelot_mact_forget -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xaac145e3 ocelot_get_ts_info -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb06ba0e6 ocelot_mrp_del_ring_role -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb36f3903 ocelot_port_policer_add -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xbf24acc8 ocelot_port_lag_join -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xc2705ab0 ocelot_port_set_maxlen -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xcc491264 ocelot_apply_bridge_fwd_mask -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xce4b6796 ocelot_sb_port_pool_set -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xd0c7923b ocelot_hwstamp_get -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xd6eeed8a ocelot_ptp_verify -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xd805af74 ocelot_port_lag_change -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xdb722365 ocelot_sb_occ_snapshot -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xdf1cf789 ocelot_mrp_add -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xdf22a2f0 ocelot_sb_tc_pool_bind_set -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xe0769e17 ocelot_port_pre_bridge_flags -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xe1a932af ocelot_ptp_settime64 -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xe83b68a6 ocelot_can_inject -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xeae5a425 ocelot_fdb_dump -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xebdf4892 ocelot_hwstamp_set -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xecaa3e84 ocelot_get_max_mtu -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xf65a15d4 ocelot_port_bridge_leave -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xf8867e6e ocelot_get_ethtool_stats -EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x4f264472 qed_put_iscsi_ops -EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x731bf35b qed_get_iscsi_ops -EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x947ff529 qed_get_rdma_ops -EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x992e03d0 qed_put_fcoe_ops -EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x9eeeef48 qed_put_eth_ops -EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0xca69c0cb qed_get_fcoe_ops -EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0xe4fe58a0 qed_get_eth_ops -EXPORT_SYMBOL drivers/net/ethernet/qlogic/qede/qede 0x42606f80 qede_rdma_unregister_driver -EXPORT_SYMBOL drivers/net/ethernet/qlogic/qede/qede 0xefe6380d qede_rdma_register_driver -EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x3f03e0c8 hdlcdrv_register -EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x7eab9154 hdlcdrv_unregister -EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x87ba6d89 hdlcdrv_transmitter -EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0xd09b4fa2 hdlcdrv_receiver -EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0xe792c541 hdlcdrv_arbitrate -EXPORT_SYMBOL drivers/net/mdio 0x3e17f466 mdio_set_flag -EXPORT_SYMBOL drivers/net/mdio 0x424a69a2 mdio45_ethtool_ksettings_get_npage -EXPORT_SYMBOL drivers/net/mdio 0x60443957 mdio45_probe -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 0x1c60bc88 cavium_mdiobus_write -EXPORT_SYMBOL drivers/net/mdio/mdio-cavium 0x63ef15ed cavium_mdiobus_read -EXPORT_SYMBOL drivers/net/mdio/mdio-xgene 0x0c0bdfe5 xgene_mdio_rgmii_write -EXPORT_SYMBOL drivers/net/mdio/mdio-xgene 0x19316bb0 xgene_mdio_rgmii_read -EXPORT_SYMBOL drivers/net/mdio/mdio-xgene 0xb3f03ef5 xgene_enet_phy_register -EXPORT_SYMBOL drivers/net/mdio/mdio-xgene 0xb8cd0f81 xgene_mdio_rd_mac -EXPORT_SYMBOL drivers/net/mdio/mdio-xgene 0xb9bd471a xgene_mdio_wr_mac -EXPORT_SYMBOL drivers/net/pcs/pcs-lynx 0x16990e2c lynx_pcs_create -EXPORT_SYMBOL drivers/net/pcs/pcs-lynx 0x28fc4a48 lynx_pcs_destroy -EXPORT_SYMBOL drivers/net/phy/bcm-phy-lib 0x073b1aa4 bcm54xx_auxctl_write -EXPORT_SYMBOL drivers/net/ppp/pppox 0xa74a3a33 pppox_compat_ioctl -EXPORT_SYMBOL drivers/net/ppp/pppox 0xbfb0e7fe pppox_ioctl -EXPORT_SYMBOL drivers/net/ppp/pppox 0xdb47d1bf register_pppox_proto -EXPORT_SYMBOL drivers/net/ppp/pppox 0xe0ff7a18 unregister_pppox_proto -EXPORT_SYMBOL drivers/net/ppp/pppox 0xe6975e57 pppox_unbind_sock -EXPORT_SYMBOL drivers/net/sungem_phy 0x9aa05d27 sungem_phy_probe -EXPORT_SYMBOL drivers/net/team/team 0x04796e01 team_options_register -EXPORT_SYMBOL drivers/net/team/team 0x06174cb1 team_mode_register -EXPORT_SYMBOL drivers/net/team/team 0x14ef63a4 team_modeop_port_change_dev_addr -EXPORT_SYMBOL drivers/net/team/team 0x15939583 team_mode_unregister -EXPORT_SYMBOL drivers/net/team/team 0x3894102b team_modeop_port_enter -EXPORT_SYMBOL drivers/net/team/team 0x45a85daa team_option_inst_set_change -EXPORT_SYMBOL drivers/net/team/team 0x52770f6d team_options_change_check -EXPORT_SYMBOL drivers/net/team/team 0xeac4a9bf team_options_unregister -EXPORT_SYMBOL drivers/net/usb/usbnet 0xa98e109f usbnet_device_suggests_idle -EXPORT_SYMBOL drivers/net/usb/usbnet 0xad6f1b8a usbnet_link_change -EXPORT_SYMBOL drivers/net/usb/usbnet 0xbb933933 usbnet_manage_power -EXPORT_SYMBOL drivers/net/wan/hdlc 0x1534aa2d hdlc_start_xmit -EXPORT_SYMBOL drivers/net/wan/hdlc 0x46f68cd9 hdlc_open -EXPORT_SYMBOL drivers/net/wan/hdlc 0x4b98d42f unregister_hdlc_protocol -EXPORT_SYMBOL drivers/net/wan/hdlc 0x4e15c0a0 detach_hdlc_protocol -EXPORT_SYMBOL drivers/net/wan/hdlc 0x74521370 register_hdlc_protocol -EXPORT_SYMBOL drivers/net/wan/hdlc 0x9801f9ca attach_hdlc_protocol -EXPORT_SYMBOL drivers/net/wan/hdlc 0xc9bc90aa alloc_hdlcdev -EXPORT_SYMBOL drivers/net/wan/hdlc 0xd30bbf15 hdlc_close -EXPORT_SYMBOL drivers/net/wan/hdlc 0xf7256b2d unregister_hdlc_device -EXPORT_SYMBOL drivers/net/wan/hdlc 0xfda9266d hdlc_ioctl -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x108b188f ath_is_49ghz_allowed -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x44fa43aa ath_reg_notifier_apply -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x4571aea8 ath_is_world_regd -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x498f76ba ath_hw_setbssidmask -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x4abadcea ath_key_config -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x7ab27f31 ath_hw_get_listen_time -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x9986dc0e 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 0xaa7063c6 ath_printk -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xb6588ba6 ath_bus_type_strings -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xcdcfbfe4 ath_hw_keyreset -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xd8726527 dfs_pattern_detector_init -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xe2edf061 ath_hw_keysetmac -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xe731d6fa ath_key_delete -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xf02c477f ath_is_mybeacon -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xf98605d5 ath_regd_get_band_ctl -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xfc5b42c3 ath_regd_init -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xfd56e8c4 ath_rxbuf_alloc -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x015e5db2 ath10k_debug_mask -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x052b9254 ath10k_htc_tx_completion_handler -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x057eb070 ath10k_core_napi_sync_disable -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x08c83469 ath10k_coredump_new -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x0b2d4841 ath10k_ce_completed_send_next -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x0d5ad7b7 ath10k_htc_notify_tx_completion -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x12fd0be4 ath10k_ce_disable_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x2ad6c9de ath10k_core_start_recovery -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x3449f371 ath10k_ce_free_rri -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x3520cd59 ath10k_warn -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x3e826461 ath10k_ce_alloc_pipe -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x4368efef ath10k_core_check_dt -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x45b14cb2 ath10k_ce_per_engine_service_any -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x4bf32c3c ath10k_ce_send -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x556b8d15 ath10k_core_napi_enable -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x6845fc84 ath10k_core_free_board_files -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x6f1d40da __ath10k_ce_send_revert -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x70869aca ath10k_coredump_get_mem_layout -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x70d69b6d ath10k_core_stop -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x73d20a12 ath10k_htt_t2h_msg_handler -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x78471e40 ath10k_bmi_start -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x79f6ebf2 ath10k_htc_rx_completion_handler -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x7be0a7b6 ath10k_ce_cancel_send_next -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x7dcf52b3 ath10k_htt_hif_tx_complete -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x7fd066b4 ath10k_ce_rx_update_write_idx -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x81b55a79 __ath10k_ce_rx_num_free_bufs -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x88359851 ath10k_ce_send_nolock -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x8b0b14b2 ath10k_ce_completed_recv_next_nolock -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x8f9273fc ath10k_ce_num_free_src_entries -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x945ef6f7 ath10k_ce_per_engine_service -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x97748d88 ath10k_htt_rx_hl_indication -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x9775dbd3 ath10k_core_destroy -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xa172121e ath10k_ce_completed_send_next_nolock -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xa1e4849a __tracepoint_ath10k_log_dbg -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xa89bd823 ath10k_ce_init_pipe -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xace70251 ath10k_ce_enable_interrupt -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xb0c3b56f ath10k_err -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xb21e8fdb ath10k_core_fetch_board_file -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xb253ee08 ath10k_print_driver_info -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xb6663c8a ath10k_core_start -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xb8175d76 ath10k_ce_rx_post_buf -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xb9fb8bd6 ath10k_mac_tx_push_pending -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xbb944dfa ath10k_ce_completed_recv_next -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xbe0849d8 ath10k_ce_revoke_recv_next -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xc4b4015f ath10k_ce_disable_interrupt -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xcd376cb8 ath10k_htt_rx_pktlog_completion_handler -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xcdb62700 ath10k_ce_deinit_pipe -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xcf9e5054 ath10k_core_create -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xd0ec9423 ath10k_info -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xdcd9948d ath10k_ce_dump_registers -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xe24a4680 ath10k_htt_txrx_compl_task -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xe266ddb5 ath10k_htc_process_trailer -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xebdc6db2 ath10k_bmi_read_memory -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xee7bba9c ath10k_core_register -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xf1a44d46 ath10k_ce_free_pipe -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xf3802d67 ath10k_ce_enable_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xf828ed38 ath10k_ce_alloc_rri -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xf928c80b ath10k_core_unregister -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x0406d64c ath11k_info -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x1647f9d7 ath11k_dp_service_srng -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x1ed4be72 ath11k_debugfs_soc_destroy -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x54646874 ath11k_ce_free_pipes -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x5870faf9 ath11k_warn -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x614fb814 ath11k_core_resume -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x6f280166 ath11k_ce_per_engine_service -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x793687a3 ath11k_qmi_deinit_service -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x7cb91d2c ath11k_core_free -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x84e7db2c ath11k_ce_alloc_pipes -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x8e72b3cc ath11k_core_pre_init -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x930fbbca ath11k_core_suspend -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x9c51bcc4 ath11k_debug_mask -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xa45628e2 ath11k_hal_srng_deinit -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xaffee256 ath11k_core_init -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xb51f8fb4 ath11k_ce_get_attr_flags -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xd0831d0b ath11k_ce_get_shadow_config -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xd22d23dd ath11k_hal_srng_init -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xd4da30a2 ath11k_err -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xd600ce9e ath11k_core_deinit -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xdde36ed2 ath11k_core_alloc -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xf00a6bf3 ath11k_ce_rx_post_buf -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xf0197188 ath11k_cold_boot_cal -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xff3ed5c9 ath11k_ce_cleanup_pipes -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x0482d703 ath6kl_hif_intr_bh_handler -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x05da17c8 ath6kl_core_destroy -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x1354043d ath6kl_warn -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x1faf95fa ath6kl_core_create -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x2e99cf92 ath6kl_stop_txrx -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x3502feef ath6kl_info -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x441c1d09 ath6kl_cfg80211_suspend -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x8dec1ff5 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 0xbb08a082 ath6kl_core_init -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xda7dd388 ath6kl_core_cleanup -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xe0d56d1d ath6kl_read_tgt_stats -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xe28c5394 ath6kl_core_tx_complete -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xef43e478 ath6kl_cfg80211_resume -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x01f7b46d ath9k_cmn_beacon_config_ap -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x0ae7dd20 ath9k_cmn_rx_skb_postprocess -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x183b7807 ath9k_cmn_debug_recv -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x19598d4b ath9k_cmn_beacon_config_adhoc -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x1dfdf664 ath9k_cmn_get_channel -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x1f49a347 ath9k_cmn_beacon_config_sta -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x2f2725be ath9k_cmn_spectral_deinit_debug -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x324d69b6 ath9k_cmn_debug_base_eeprom -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x4fb5b218 ath9k_cmn_debug_modal_eeprom -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x51d31179 ath9k_cmn_spectral_init_debug -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x671d5baa ath9k_cmn_update_txpow -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x6ec9b9f8 ath9k_cmn_setup_ht_cap -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x7063b8f3 ath9k_cmn_rx_accept -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x79d3aa2d ath9k_cmn_init_crypto -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x9c4aeb67 ath9k_cmn_spectral_scan_config -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x9c5382a8 ath9k_cmn_debug_phy_err -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xa349a20b ath9k_cmn_get_hw_crypto_keytype -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xb07c6539 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 0xc14929dd ath9k_cmn_process_rate -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xc64e54b4 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 0xef3d4268 ath9k_cmn_process_rssi -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xf3b5d73c ath9k_cmn_reload_chainmask -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xf8ad109a ath9k_cmn_init_channels_rates -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x00e62ba9 ar9003_mci_state -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x014f485b ath9k_hw_gpio_free -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x020ebba0 ath9k_hw_resume_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x074d463b ath9k_hw_putrxbuf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0873b629 ar9003_mci_cleanup -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0cb8425a ath9k_hw_btcoex_bt_stomp -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0f77dafc ath9k_hw_get_tsf_offset -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x11311aa3 ar9003_hw_bb_watchdog_dbg_info -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x147b1917 ath9k_hw_resettxqueue -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1d9889c1 ath9k_hw_init_global_settings -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1db48c22 ath9k_hw_startpcureceive -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1f5516e6 ath9k_hw_getchan_noise -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x20a71fa2 ath9k_hw_wow_wakeup -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x214c45c7 ath9k_hw_setuptxqueue -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x25d91248 ath9k_hw_abort_tx_dma -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x26f673eb ath9k_hw_set_rx_bufsize -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2f3a2836 ath9k_hw_kill_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2fc5f9be ath9k_hw_numtxpending -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x321ca6d2 ath9k_hw_gen_timer_start -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x33c9fb0d ar9003_is_paprd_enabled -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x35602864 ar9003_paprd_is_done -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x37d6f3e0 ath9k_hw_setrxabort -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x37f577cf ar9003_mci_get_interrupt -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x380e3881 ath9k_hw_btcoex_init_scheme -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x39f17762 ath9k_hw_set_sta_beacon_timers -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3e8c4153 ath9k_hw_setrxfilter -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x476c2b89 ar9003_mci_send_wlan_channels -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x47fd34bc ath9k_hw_gen_timer_stop -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x48b8a605 ath9k_hw_gettsf64 -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4d89d68f ath9k_hw_beaconinit -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5103805a ar9003_paprd_populate_single_table -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5818b642 ath9k_hw_get_txq_props -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x591d941b ar9003_paprd_setup_gain_table -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5dc247db ath9k_hw_write_associd -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5ef9815a ath9k_hw_reset_tsf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x61e2a4e8 ath9k_hw_loadnf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x62dcfbdf ath9k_hw_txstart -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x630dfd02 ar9003_get_pll_sqsum_dvc -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6322a56a ath9k_hw_settsf64 -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x634ce592 ath9k_hw_set_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x63a040ab ar9003_mci_send_message -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x64fdadbc ar9003_paprd_create_curve -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x688281b5 ath9k_hw_process_rxdesc_edma -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6e52547f ath9k_hw_set_tsfadjust -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6ecc4765 ath9k_hw_disable_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6f3a9e1c ath9k_hw_abortpcurecv -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7065f87a ath9k_hw_setup_statusring -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x772470b6 ath9k_hw_btcoex_enable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7e47a8f0 ath9k_hw_set_txpowerlimit -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7ed5830c ath_gen_timer_free -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x815dcec4 ath9k_hw_btcoex_set_concur_txprio -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x81d35ae8 ath9k_hw_setuprxdesc -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x84f918ff ath9k_hw_btcoex_init_mci -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x85bfe811 ath9k_hw_setantenna -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x86543c0d ath9k_hw_wow_apply_pattern -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8a1c4064 ath9k_hw_gpio_request_out -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8c66c474 ath9k_hw_btcoex_init_2wire -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8fe5c7f7 ar9003_hw_disable_phy_restart -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x963328b1 ath_gen_timer_alloc -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x973014b2 ath9k_hw_btcoex_deinit -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x973d026c ath9k_hw_wait -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x98cb10b7 ar9003_hw_bb_watchdog_check -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x99368f9e ath9k_hw_set_tx_filter -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9d5b0e6f ath9k_hw_stopdmarecv -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9dcd7867 ar9003_mci_setup -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa1a930a8 ath9k_hw_gettxbuf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa3369457 ath9k_hw_btcoex_init_3wire -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa6ac1e79 ath9k_hw_btcoex_set_weight -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xaa19ab7c ath9k_hw_ani_monitor -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xab7a7cb6 ar9003_paprd_enable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb15f37b3 ath9k_hw_stop_dma_queue -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb2b93d45 ath9k_hw_setmcastfilter -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb3a7ba65 ath9k_hw_addrxbuf_edma -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb3fd687e ath9k_hw_init_btcoex_hw -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb591ddd0 ath9k_hw_intrpend -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb66987c7 ath9k_hw_wow_enable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb6865248 ar9003_mci_set_bt_version -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xba8f7d3e ath9k_hw_disable_mib_counters -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbbb76a20 ath9k_hw_disable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbd9a6288 ath9k_hw_phy_disable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbe20d3e2 ath9k_hw_init -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc3e3d5e5 ath9k_hw_computetxtime -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc6bd4e86 ath9k_hw_deinit -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc80eac2a ath9k_hw_getrxfilter -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xca09bc5f ath9k_hw_puttxbuf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xcbe9bf37 ath9k_hw_gettsf32 -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xcda6b319 ath9k_hw_beaconq_setup -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd62c8dcd ath9k_hw_gpio_get -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xdadd85e5 ath9k_hw_check_alive -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xdc243d52 ath9k_hw_check_nav -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xdc9c5138 ath9k_hw_name -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xdf701c78 ath9k_hw_updatetxtriglevel -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xdfa01224 ath_gen_timer_isr -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe10b2a89 ar9003_paprd_init_table -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe27aba24 ath9k_hw_getnf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe329b21c ath9k_hw_bstuck_nfcal -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe4ed39ac ath9k_hw_gpio_request_in -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe5f9ec22 ath9k_hw_setpower -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe646b057 ath9k_hw_btcoex_disable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe6b4b0ef ath9k_hw_reset -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe86f51f0 ath9k_hw_set_txq_props -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xeb24c027 ath9k_hw_enable_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xeba5542f ath9k_hw_releasetxqueue -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xed61a895 ath9k_hw_set_gpio -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf60d1d02 ath9k_hw_setopmode -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf647561e ath9k_hw_reset_calvalid -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xfb2d8823 ar9003_mci_get_next_gpm_offset -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xfc049b71 ath9k_hw_rxprocdesc -EXPORT_SYMBOL drivers/net/wireless/atmel/atmel 0x0e665af2 stop_atmel_card -EXPORT_SYMBOL drivers/net/wireless/atmel/atmel 0x29e466de init_atmel_card -EXPORT_SYMBOL drivers/net/wireless/atmel/atmel 0xa1304b75 atmel_open -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x013ae905 brcmu_pktq_mdeq -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x0e98ebad brcmu_pktq_penq -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x1906648e brcmu_boardrev_str -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x1e21612b brcmu_pktq_mlen -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x1f463001 brcmu_pktq_pflush -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x34ed9a67 brcmu_pkt_buf_free_skb -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x38e94e26 brcmu_pktq_pdeq_tail -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x3c8edd0f brcmu_pktq_pdeq -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x885c9bb6 brcmu_pktq_flush -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xa17c0ccf brcmu_dotrev_str -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xc4a9d611 brcmu_pktq_init -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xd5ed0f9d brcmu_pkt_buf_get_skb -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xd6217d91 brcmu_d11_attach -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xd997cf1c brcmu_pktq_penq_head -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xebd97bfb brcmu_pktq_peek_tail -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xff47681a brcmu_pktq_pdeq_match -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x03c58dc8 libipw_txb_free -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x1307a6ea libipw_is_valid_channel -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x13f56fe2 libipw_wx_set_encodeext -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x20649164 alloc_libipw -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x25ab03f2 libipw_wx_get_scan -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x26d88585 libipw_channel_to_freq -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x2ef881e1 libipw_wx_set_encode -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x5805f4cb libipw_freq_to_channel -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x666d8a85 free_libipw -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x80fb097b libipw_rx -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xa27fb6d6 libipw_wx_get_encode -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xbd27ed7d libipw_set_geo -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xbee614b2 libipw_channel_to_index -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xc9e2070c libipw_rx_mgt -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xd10a2acc libipw_wx_get_encodeext -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xd2d85b26 libipw_get_channel -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xd87040d3 libipw_get_geo -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xe31cee94 libipw_get_channel_flags -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xf120f800 libipw_xmit -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xfb3af845 libipw_networks_age -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x00f040c0 il_tx_queue_init -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x028ae62a _il_apm_stop -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x03d0103a il_check_rxon_cmd -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x04c2ef42 il_pm_ops -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x04e1a749 il_set_rate -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x06844e77 il_init_geos -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x072ddb35 il_alloc_txq_mem -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x127adb7b il_apm_init -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x13dfe0b1 il_get_single_channel_number -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1659e7b0 il_mac_sta_remove -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x23c11cd5 il_rd_prph -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x24fa483c il_is_ht40_tx_allowed -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x258917f2 il_eeprom_free -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x26fc1c6f il_hdl_error -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x287a33ae il_poll_bit -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2902b7de il_add_station_common -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2a2b1915 il_set_bit -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2bf7eea6 il_queue_space -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2db79725 il_hdl_pm_debug_stats -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2f389f96 il_cancel_scan_deferred_work -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2f6213b4 il_irq_handle_error -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3281d509 il_set_flags_for_band -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3a40ffbf il_setup_rx_scan_handlers -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x416bd26a il_debug_level -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x425818d1 il_get_active_dwell_time -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x446993ab il_send_cmd_sync -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x44d417f0 il_add_beacon_time -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x4ba8757c il_mac_remove_interface -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x4ddc75bd il_tx_cmd_complete -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x4dfec922 il_set_tx_power -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x4e028ce9 il_rx_queue_alloc -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x4ff31b94 il_tx_queue_unmap -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x515bb7c4 il_get_passive_dwell_time -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x52f76806 il_send_lq_cmd -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x578f8448 il_mac_conf_tx -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x5add3f59 il_scan_cancel_timeout -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x5bbf4a57 il_send_bt_config -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x5faf3346 il_apm_stop -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6309af82 il_setup_scan_deferred_work -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x64eb4a39 il_send_add_sta -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x68b6c213 il_mac_bss_info_changed -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6a49c0ed il_set_rxon_hwcrypto -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6b669e2c il_mac_change_interface -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6d6299e7 il_eeprom_init -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x729a2bf7 il_send_cmd_pdu_async -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x72f9256b il_get_channel_info -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7af4865f il_free_geos -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7c61f403 il_init_scan_params -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7f17580f il_free_channel_map -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x875011d0 il_read_targ_mem -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x8a075124 il_cmd_queue_free -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x8b15cd66 il_leds_init -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x8b5d593c il_power_initialize -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x8be24c64 il_force_reset -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x950e3da0 il_rx_queue_update_write_ptr -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x977e1f79 il_mac_flush -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9bf44513 il_mac_add_interface -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9cc714af il_bg_watchdog -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9cfc0fad il_wr_prph -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9f97ed35 il_set_rxon_ht -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa25cd2dd il_chswitch_done -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa366867b il_eeprom_query16 -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa40cd6a5 _il_poll_bit -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa6c54cc6 il_init_channel_map -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa94497e0 il_set_decrypted_flag -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa9569d76 il_write_targ_mem -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xaa390a87 il_restore_stations -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xacc86820 il_rx_queue_space -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xad9db286 il_get_free_ucode_key_idx -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xaec1faf9 il_free_txq_mem -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb65510a3 il_get_cmd_string -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb7bd33ff il_isr -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb7fa2a3f il_hdl_csa -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xbaa96a9a il_send_cmd -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xbc6f766e il_clear_ucode_stations -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc504d960 il_tx_queue_reset -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc65fda8d il_connection_init_rx_config -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc8c45cfd il_mac_config -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xca0ca5c7 il_send_stats_request -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xcad7bd10 il_clear_bit -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xcc44bcee il_dbgfs_unregister -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xcf1d73fc il_setup_watchdog -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xcf66cfd0 il_set_rxon_channel -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd058a598 il_tx_queue_free -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd1019d35 il_send_rxon_timing -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd4109604 il_get_lowest_plcp -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd4ac712e il_tx_cmd_protection -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd7c8805c il_power_update_mode -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd8557e02 il_leds_exit -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd8c47e48 il_fill_probe_req -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd96ef177 il_hdl_spectrum_measurement -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xdd7d417c il_mac_hw_scan -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe335cee4 il_usecs_to_beacons -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe56fe9c5 il_scan_cancel -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xea82cb68 il_dbgfs_register -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xeb31c86c il_txq_update_write_ptr -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xebe2594b il_hdl_pm_sleep -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf0736132 il_update_stats -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf076b98f il_cmd_queue_unmap -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf1f11139 il_eeprom_query_addr -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf3fa7916 il_mac_reset_tsf -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf4c610f5 il_send_cmd_pdu -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf66babb2 il_full_rxon_required -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf70a693b il_bcast_addr -EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x19fa8c53 __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 0x82f970b1 __traceiter_iwlwifi_dev_ucode_wrap_event -EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x970bf4ef __SCK__tp_func_iwlwifi_dev_ucode_event -EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xaaafbd3e __tracepoint_iwlwifi_dev_ucode_cont_event -EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xc93b89b1 __traceiter_iwlwifi_dev_ucode_cont_event -EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xd1e69877 __SCK__tp_func_iwlwifi_dev_ucode_cont_event -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x01558cdc hostap_init_ap_proc -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x02512e16 hostap_info_process -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x05c0d354 hostap_80211_ops -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x13abdd5a hostap_dump_tx_header -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x2e89f9f7 hostap_get_porttype -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x351e5482 hostap_80211_rx -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x520dcb90 hostap_set_encryption -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x545c6ab2 hostap_master_start_xmit -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x579078e2 prism2_update_comms_qual -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x5a97041b hostap_set_roaming -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x5fb199a8 hostap_set_auth_algs -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x667352ba hostap_set_string -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x6bb438ad hostap_check_sta_fw_version -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x75934c58 hostap_set_multicast_list_queue -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x7fb75891 hostap_dump_rx_header -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x8623c11b hostap_remove_proc -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x90b2c1a4 hostap_handle_sta_tx_exc -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x923555c8 hostap_info_init -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x93821920 hostap_remove_interface -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x9820018f hostap_set_word -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xa6b43c51 hostap_set_hostapd -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xb4b77c8b hostap_80211_get_hdrlen -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xd7143fce hostap_init_proc -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xd9ad5047 hostap_add_interface -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xe7b894c5 hostap_set_antsel -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xf313d92d hostap_setup_dev -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xf3e3ae4a hostap_free_data -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xfa347f39 hostap_init_data -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xff5c950a hostap_set_hostapd_sta -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x000f6cef orinoco_if_del -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x36d39902 orinoco_stop -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x46c9d3c0 __orinoco_ev_rx -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x4bd5ca5c orinoco_if_add -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x4d2d5fd8 __orinoco_ev_info -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x54ff512c orinoco_init -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x60a03007 alloc_orinocodev -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x6dc44df5 orinoco_up -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x84162fec orinoco_set_multicast_list -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x896f93e4 free_orinocodev -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x938a670e orinoco_open -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x977eb065 orinoco_tx_timeout -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x9c8c46d6 orinoco_down -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xa6053d70 hermes_struct_init -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xcdb80be4 orinoco_change_mtu -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xeb0c91f6 orinoco_process_xmit_skb -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xffe27bca orinoco_interrupt -EXPORT_SYMBOL drivers/net/wireless/mediatek/mt76/mt76 0x6e17d1b8 mt76_wcid_key_setup -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/btcoexist/btcoexist 0x8bbe22d7 rtl_btc_get_ops_pointer -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x054ef7d1 rtl92c_phy_set_rfpath_switch -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x10644bc7 rtl92c_dm_init_edca_turbo -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x1069fc71 rtl92c_dm_bt_coexist -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x2327d91c _rtl92c_phy_calculate_bit_shift -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x2956b613 rtl92c_dm_write_dig -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x2e7349ed rtl92c_phy_set_txpower_level -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x2ecb71ac rtl92c_phy_update_txpower_dbm -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x3679dba9 _rtl92c_phy_rf_serial_write -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x41b0e7b5 _rtl92c_phy_rf_serial_read -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x45801d4d rtl92c_phy_iq_calibrate -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x4ca9d697 _rtl92c_phy_fw_rf_serial_write -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x53e905ea _rtl92c_store_pwrindex_diffrate_offset -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x68c839c1 _rtl92c_phy_txpwr_idx_to_dbm -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x6d055bd5 rtl92c_phy_set_io -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x7612bb9b rtl92c_phy_query_bb_reg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x7f7512b9 rtl92c_set_fw_rsvdpagepkt -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x863a29d9 rtl92c_phy_sw_chnl -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x8b9c4e90 rtl8192_phy_check_is_legal_rfpath -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x8d0a466a rtl92c_dm_rf_saving -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x91886636 rtl92c_phy_lc_calibrate -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x93db5677 _rtl92c_phy_dbm_to_txpwr_idx -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xa38cc6ac rtl92c_firmware_selfreset -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xa479b153 rtl92c_dm_init -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xa8acf17f rtl92c_dm_init_rate_adaptive_mask -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xa8fc1efe _rtl92c_phy_bb8192c_config_parafile -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xac2268ae rtl92c_dm_watchdog -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xace39912 rtl92c_phy_set_bw_mode -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xb913247a rtl92c_download_fw -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xbeedcafb rtl92c_set_fw_joinbss_report_cmd -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xbefccbc6 rtl92c_set_fw_pwrmode_cmd -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xcb9b845a rtl92c_phy_rf_config -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xccff995d _rtl92c_phy_fw_rf_serial_read -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xd60b9401 rtl92c_phy_set_io_cmd -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xd6194f3d _rtl92c_phy_init_bb_rf_register_definition -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xd7a5c7cb rtl92c_dm_check_txpower_tracking -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xdf5abeb1 rtl92c_fill_h2c_cmd -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xe098adc4 rtl92c_bt_rssi_state_change -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xe86a22f1 rtl92c_phy_set_bb_reg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xf4e77f29 rtl92ce_phy_set_rf_on -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xfa556404 _rtl92c_phy_set_rf_sleep -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xfbd3e250 rtl92c_phy_ap_calibrate -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xfd47c4b6 rtl92c_phy_sw_chnl_callback -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x2511ab7d rtl_pci_suspend -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x4a567625 rtl_pci_disconnect -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x9f867467 rtl_pci_resume -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0xfc6cd232 rtl_pci_probe -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x5f792acf rtl_usb_suspend -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0xbbada3c3 rtl_usb_probe -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0xd432b9b3 rtl_usb_disconnect -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0xf0ee96fe rtl_usb_resume -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x016b39cb rtl_cam_empty_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0b038e24 channel5g_80m -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0b5d531a rtl_send_smps_action -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x133e32e5 rtl_process_phyinfo -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x1560dd11 rtl_cam_reset_all_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x1b945315 rtl_addr_delay -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x218bc426 rtl_dm_diginit -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x280e7856 rtl_cam_mark_invalid -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x3037ad53 efuse_one_byte_read -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x30534bb3 rtl_rx_ampdu_apply -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x30a956d7 rtl_query_rxpwrpercentage -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x33069cd9 efuse_shadow_read -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x3352f78c rtl_cam_add_one_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x367245cf rtl_phy_scan_operation_backup -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x3b6b7448 rtl_efuse_shadow_map_update -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x52837691 rtlwifi_rate_mapping -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x54824f58 channel5g -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x57cf4df1 efuse_power_switch -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x696c1850 rtl_hal_pwrseqcmdparsing -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x76666b1f rtl_get_tcb_desc -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7c70e81f rtl_mrate_idx_to_arfr_id -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7f38733a rtl_cam_delete_one_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x885dc8aa rtl_cmd_send_packet -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x8ea60059 rtl_fw_cb -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x9d79fbe8 rtl_ps_disable_nic -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xbf10b84b efuse_read_1byte -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc01afe61 rtl_ps_enable_nic -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xcc8946eb rtl_rfreg_delay -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xe373264b rtl_signal_scale_mapping -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xe49307d6 rtl_bb_delay -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xe5278262 rtl_cam_del_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 0xeed6f873 rtl_init_rfkill -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf4632bed rtl_collect_scan_list -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf9f336d5 rtl_cam_get_free_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xfc4fe60d rtl_c2hcmd_enqueue -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8723d 0xd3f358d1 rtw8723d_hw_spec -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8821c 0x4e332f5c rtw8821c_hw_spec -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8822b 0x38132263 rtw8822b_hw_spec -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8822c 0xd7d1495d rtw8822c_hw_spec -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x028beba4 rtw_tx_write_data_h2c_get -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x02dbb612 rtw_phy_cfg_bb -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x16490872 rtw_phy_config_swing_table -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x1e744795 rtw_parse_tbl_txpwr_lmt -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x22ca7d0b rtw_phy_read_rf -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x2515f6a2 rtw_phy_cfg_mac -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x2f4a6678 rtw_bf_remove_bfee_su -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 0x36e55afd rtw_coex_write_indirect_reg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x37defe68 rtw_phy_read_rf_sipi -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x38f52357 rtw_phy_pwrtrack_avg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x39a257f1 rtw_phy_pwrtrack_need_iqk -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x3bae53e1 rtw_phy_load_tables -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x41112aae rtw_bf_remove_bfee_mu -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x440b7589 rtw_phy_rf_power_2_rssi -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x448a6d6b rtw_phy_pwrtrack_need_lck -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x4734d70d check_hw_ready -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x4e7b3c39 rtw_unregister_hw -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 0x5875af4d rtw_fw_c2h_cmd_isr -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x58e4f46d rtw_parse_tbl_phy_cond -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x5e4402be rtw_rx_stats -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x633d05e2 rtw_coex_read_indirect_reg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x67238ff5 rtw_core_init -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x75038d4f rtw_ops -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x75121d78 rtw_tx_report_enqueue -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x7d1004fc rtw_rx_fill_rx_status -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x7f893d2b rtw_phy_pwrtrack_get_delta -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x8c06499f rtw_bf_phy_init -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x970dbb12 rtw_phy_get_tx_power_index -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xa0e3d721 rtw_phy_write_rf_reg_mix -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xa78fdd27 rtw_bf_cfg_csi_rate -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xaadfd069 rtw_phy_parsing_cfo -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xabca1914 rtw_parse_tbl_bb_pg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xadb0bbf8 rtw_read8_physical_efuse -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xae538f0a rtw_phy_cfg_rf -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xb0508dc7 rtw_register_hw -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xb3a0accf rtw_set_channel_mac -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xb4c05cc9 rtw_dump_fw -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xbdfa52ee rtw_power_mode_change -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xcac6a20a rtw_chip_info_setup -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xcfbd2eb2 rtw_bf_enable_bfee_mu -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xd610b006 rtw_bf_enable_bfee_su -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xd73511a0 rtw_coex_write_scbd -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xd8433d21 rtw_core_deinit -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xd8c99990 rtw_phy_pwrtrack_thermal_changed -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xda2313e0 rtw_bf_set_gid_table -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xe42eed7d rtw_fw_c2h_cmd_rx_irqsafe -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xe461ab0c rtw_phy_write_rf_reg_sipi -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xe631879f rtw_tx_fill_tx_desc -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xe7a620d3 rtw_phy_init -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xe897bf9b rtw_fw_inform_rfk_status -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xea21138a rtw_phy_pwrtrack_get_pwridx -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xec44fc17 rtw_phy_cfg_agc -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xee68386b __rtw_dbg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xee712542 rtw_phy_set_tx_power_level -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xee8f6d00 rtw_tx_write_data_rsvd_page_get -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xf5013efa rtw_fw_do_iqk -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xfa36ff8a rtw_dump_reg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xfc408a6d rtw_restore_reg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_pci 0x07c87914 rtw_pci_probe -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_pci 0x4c10e40a rtw_pci_shutdown -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_pci 0x81204ca0 rtw_pci_remove -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_pci 0xa45bebed rtw_pm_ops -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x05a0d7ba rtw89_phy_write_rf -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x0cb9fa65 rtw89_chip_info_setup -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x13564461 rtw89_core_register -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x1f7ec13a rtw89_core_query_rxdesc -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x216d4b39 __rtw89_debug -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x278449f0 rtw89_mac_get_err_status -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x28b25119 rtw89_core_napi_stop -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x2c313618 rtw89_core_napi_deinit -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x3b692695 rtw89_ops -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x41bf465e rtw89_core_rx -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x44e22667 rtw89_core_napi_init -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x6f81abf2 rtw89_ser_notify -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x7f4b145b rtw8852a_chip_info -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x8f5ab059 rtw89_core_napi_start -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x94cecca7 rtw89_mac_set_err_status -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xae44f13b rtw89_core_fill_txdesc -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xcab65005 rtw89_core_unregister -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xd016ff8f rtw89_core_deinit -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xe3f57b04 rtw89_debug_mask -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xe4ceff10 rtw89_core_init -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xfa575706 rtw89_phy_read_rf -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x65906261 rtw89_pm_ops -EXPORT_SYMBOL drivers/net/wireless/rsi/rsi_91x 0xe21a86b7 rsi_config_wowlan -EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x0ad52af9 wl1271_free_tx_id -EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x40eed542 wlcore_tx_complete -EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x7c355056 wlcore_calc_packet_alignment -EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0xafbdf9c1 wl12xx_is_dummy_packet -EXPORT_SYMBOL drivers/nfc/fdp/fdp 0x2044781d fdp_nci_probe -EXPORT_SYMBOL drivers/nfc/fdp/fdp 0x634b6c09 fdp_nci_remove -EXPORT_SYMBOL drivers/nfc/microread/microread 0x1a2ba086 microread_probe -EXPORT_SYMBOL drivers/nfc/microread/microread 0x4e625784 microread_remove -EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0x39ae7ff5 nxp_nci_remove -EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0x93d8a830 nxp_nci_probe -EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0xa075bbc0 nxp_nci_fw_recv_frame -EXPORT_SYMBOL drivers/nfc/pn533/pn533 0x6c4cd4de pn533_recv_frame -EXPORT_SYMBOL drivers/nfc/pn544/pn544 0xac205d5a pn544_hci_remove -EXPORT_SYMBOL drivers/nfc/pn544/pn544 0xc8b9eb13 pn544_hci_probe -EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x774203fc s3fwrn5_phy_set_wake -EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x8542addb s3fwrn5_remove -EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x89398afd s3fwrn5_probe -EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x8feccb92 s3fwrn5_phy_power_ctrl -EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0xc9b015eb 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 0x0963d417 ndlc_recv -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x16b524c4 st_nci_se_deinit -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x1c639433 ndlc_open -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x28039fa6 ndlc_close -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x478d78d9 st_nci_vendor_cmds_init -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x6deb4757 st_nci_se_init -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x8fed17b7 ndlc_send -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x914b39af ndlc_probe -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xb077f7c0 st_nci_se_io -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xc1a66c8e ndlc_remove -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x039fa097 st21nfca_hci_se_io -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x0ddca617 st21nfca_dep_deinit -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x0fad087f st21nfca_hci_enable_se -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x11d1002d st21nfca_hci_probe -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x22c2cbde st21nfca_vendor_cmds_init -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x3c9018d0 st21nfca_connectivity_event_received -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x429a19b6 st21nfca_hci_discover_se -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x55a70e8a st21nfca_im_send_atr_req -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x5c83faee st21nfca_tm_send_dep_res -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x5fc4fb2a st21nfca_hci_disable_se -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x87b99ac5 st21nfca_dep_init -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x9a1d3809 st21nfca_se_deinit -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xacb7c7dd st21nfca_se_init -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xb37f6b02 st21nfca_im_send_dep_req -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xb86d89a1 st21nfca_dep_event_received -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xc40347cf st21nfca_hci_loopback_event_received -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xd288704d st21nfca_apdu_reader_event_received -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xf3321824 st21nfca_hci_remove -EXPORT_SYMBOL drivers/ntb/ntb 0x01b05ebf ntb_msi_init -EXPORT_SYMBOL drivers/ntb/ntb 0x1b0ec4e3 ntb_msi_peer_trigger -EXPORT_SYMBOL drivers/ntb/ntb 0x32ebb75c ntb_default_port_number -EXPORT_SYMBOL drivers/ntb/ntb 0x385b68e7 ntb_msi_setup_mws -EXPORT_SYMBOL drivers/ntb/ntb 0x39cccb1c ntb_unregister_device -EXPORT_SYMBOL drivers/ntb/ntb 0x3bb1e9c8 ntb_unregister_client -EXPORT_SYMBOL drivers/ntb/ntb 0x45ba8ebb ntb_msg_event -EXPORT_SYMBOL drivers/ntb/ntb 0x61316d23 ntb_msi_clear_mws -EXPORT_SYMBOL drivers/ntb/ntb 0x64056618 __ntb_register_client -EXPORT_SYMBOL drivers/ntb/ntb 0x65f5ba30 ntbm_msi_request_threaded_irq -EXPORT_SYMBOL drivers/ntb/ntb 0x72a39032 ntb_register_device -EXPORT_SYMBOL drivers/ntb/ntb 0x7c9da06b ntbm_msi_free_irq -EXPORT_SYMBOL drivers/ntb/ntb 0x83a683b0 ntb_set_ctx -EXPORT_SYMBOL drivers/ntb/ntb 0x97252269 ntb_msi_peer_addr -EXPORT_SYMBOL drivers/ntb/ntb 0xbb95f31a ntb_default_peer_port_idx -EXPORT_SYMBOL drivers/ntb/ntb 0xcb69cfcf ntb_clear_ctx -EXPORT_SYMBOL drivers/ntb/ntb 0xd9aa3d72 ntb_link_event -EXPORT_SYMBOL drivers/ntb/ntb 0xe24b6d7e ntb_db_event -EXPORT_SYMBOL drivers/ntb/ntb 0xe44a09ee ntb_default_peer_port_count -EXPORT_SYMBOL drivers/ntb/ntb 0xea6b566f ntb_default_peer_port_number -EXPORT_SYMBOL drivers/nvdimm/nd_btt 0x88335321 nvdimm_namespace_detach_btt -EXPORT_SYMBOL drivers/nvdimm/nd_btt 0xb6cb1355 nvdimm_namespace_attach_btt -EXPORT_SYMBOL drivers/parport/parport 0x00e84c21 parport_negotiate -EXPORT_SYMBOL drivers/parport/parport 0x0177c3ec parport_set_timeout -EXPORT_SYMBOL drivers/parport/parport 0x09d70286 parport_ieee1284_write_compat -EXPORT_SYMBOL drivers/parport/parport 0x0b4dee37 parport_write -EXPORT_SYMBOL drivers/parport/parport 0x1b69d51b parport_announce_port -EXPORT_SYMBOL drivers/parport/parport 0x2ec068cd parport_ieee1284_epp_write_data -EXPORT_SYMBOL drivers/parport/parport 0x40023158 parport_find_number -EXPORT_SYMBOL drivers/parport/parport 0x4946cbba parport_register_port -EXPORT_SYMBOL drivers/parport/parport 0x4d2a941b parport_ieee1284_interrupt -EXPORT_SYMBOL drivers/parport/parport 0x53c0b3c9 parport_del_port -EXPORT_SYMBOL drivers/parport/parport 0x5ad70004 parport_ieee1284_ecp_write_addr -EXPORT_SYMBOL drivers/parport/parport 0x5e3a3912 parport_irq_handler -EXPORT_SYMBOL drivers/parport/parport 0x6419e099 parport_put_port -EXPORT_SYMBOL drivers/parport/parport 0x7cb172e3 parport_ieee1284_epp_read_addr -EXPORT_SYMBOL drivers/parport/parport 0x81691079 parport_remove_port -EXPORT_SYMBOL drivers/parport/parport 0x860dad4d parport_ieee1284_epp_read_data -EXPORT_SYMBOL drivers/parport/parport 0x9b2f3f59 parport_wait_event -EXPORT_SYMBOL drivers/parport/parport 0x9d939f36 parport_ieee1284_ecp_write_data -EXPORT_SYMBOL drivers/parport/parport 0xa216dbd4 parport_unregister_driver -EXPORT_SYMBOL drivers/parport/parport 0xb2f00fb8 parport_claim_or_block -EXPORT_SYMBOL drivers/parport/parport 0xb5d26b97 __parport_register_driver -EXPORT_SYMBOL drivers/parport/parport 0xba0fd220 parport_register_dev_model -EXPORT_SYMBOL drivers/parport/parport 0xbf7cf3c6 parport_wait_peripheral -EXPORT_SYMBOL drivers/parport/parport 0xc2b0a33b parport_read -EXPORT_SYMBOL drivers/parport/parport 0xc45009ef parport_claim -EXPORT_SYMBOL drivers/parport/parport 0xcf38db98 parport_ieee1284_read_nibble -EXPORT_SYMBOL drivers/parport/parport 0xd28db732 parport_release -EXPORT_SYMBOL drivers/parport/parport 0xd761d156 parport_get_port -EXPORT_SYMBOL drivers/parport/parport 0xd8446277 parport_unregister_device -EXPORT_SYMBOL drivers/parport/parport 0xdd42dca7 parport_find_base -EXPORT_SYMBOL drivers/parport/parport 0xe342870f parport_ieee1284_read_byte -EXPORT_SYMBOL drivers/parport/parport 0xe984f7ff parport_ieee1284_epp_write_addr -EXPORT_SYMBOL drivers/parport/parport 0xfd5ddd9f parport_ieee1284_ecp_read_data -EXPORT_SYMBOL drivers/pci/controller/pcie-iproc 0xc8483304 iproc_pcie_remove -EXPORT_SYMBOL drivers/pci/controller/pcie-iproc 0xca0446ce iproc_pcie_setup -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x212db8d2 pcmcia_socket_list -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x2a40fe2b pcmcia_parse_uevents -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x70bbfdea pcmcia_socket_class -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x77f75ea4 pccard_register_pcmcia -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x784e9ce5 pcmcia_get_socket -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x81fa1d81 pcmcia_register_socket -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x849c8635 pcmcia_put_socket -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x9180d046 pcmcia_parse_events -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xcf97f3bd dead_socket -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xd5b46c7a pcmcia_get_socket_by_nr -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xdf94fd4a pcmcia_reset_card -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xe640d4fb pcmcia_unregister_socket -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xedc7ba26 pcmcia_socket_list_rwsem -EXPORT_SYMBOL drivers/pcmcia/pcmcia_rsrc 0xa151a187 pccard_static_ops -EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0x00618d33 cros_ec_unregister -EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0x0531e588 cros_ec_resume -EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0x4979f774 cros_ec_register -EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0x82195e49 cros_ec_suspend -EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0xf25aacf5 cros_ec_irq_thread -EXPORT_SYMBOL drivers/regulator/rohm-regulator 0x5e926331 rohm_regulator_set_dvs_levels -EXPORT_SYMBOL drivers/rpmsg/qcom_smd 0x3330a1c8 qcom_smd_unregister_edge -EXPORT_SYMBOL drivers/rpmsg/qcom_smd 0x6cc80199 qcom_smd_register_edge -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x0f83ece7 rpmsg_trysendto -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x124ba97b rpmsg_send_offchannel -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x1698d33a rpmsg_find_device -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x2c5f8a19 rpmsg_release_channel -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x2f2788dc unregister_rpmsg_driver -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x368ff426 rpmsg_register_device -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x37a99e71 rpmsg_sendto -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x5326ccbd rpmsg_destroy_ept -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x60c7dbc7 rpmsg_create_ept -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x62fb43c5 rpmsg_unregister_device -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x75f35854 __register_rpmsg_driver -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x8471f1ab rpmsg_create_channel -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xaa5108bc rpmsg_trysend_offchannel -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xc1443c34 rpmsg_send -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xc39466b0 rpmsg_trysend -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xcf73494e rpmsg_poll -EXPORT_SYMBOL drivers/rpmsg/rpmsg_ns 0x18e6c49c rpmsg_ns_register_device -EXPORT_SYMBOL drivers/scsi/esp_scsi 0x256c6773 scsi_esp_register -EXPORT_SYMBOL drivers/scsi/esp_scsi 0x4a29ab38 scsi_esp_intr -EXPORT_SYMBOL drivers/scsi/esp_scsi 0x585f9831 scsi_esp_cmd -EXPORT_SYMBOL drivers/scsi/esp_scsi 0x80c635cc scsi_esp_template -EXPORT_SYMBOL drivers/scsi/esp_scsi 0xc192ce7a scsi_esp_unregister -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x00ae37be fcoe_ctlr_init -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x275096ff fcoe_fcf_get_selected -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x50f6b201 fcoe_transport_detach -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x650994ed fcoe_ctlr_recv_flogi -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x67651c31 fcoe_ctlr_link_up -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x6d282543 fcoe_ctlr_els_send -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x74ef46ea fcoe_ctlr_link_down -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x8264771c fcoe_ctlr_set_fip_mode -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x96026a44 fcoe_ctlr_recv -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xb503bb2d fcoe_ctlr_destroy -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xf61903e3 fcoe_transport_attach -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x06397f7c fc_seq_send -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x13eeff69 fc_seq_set_resp -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x13fdf6db libfc_vport_create -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x167d2195 fc_elsct_send -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x16e90c10 fc_exch_init -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x195666f4 fc_exch_mgr_alloc -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 0x246eec3d fc_set_mfs -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x2b73b7a3 fc_lport_config -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x34a00a38 fc_lport_init -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x35bb080b fc_lport_recv -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x3fcefde7 fc_fcp_init -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x4a82a817 fc_get_host_stats -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x4b68bd81 fc_slave_alloc -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x4c192754 fc_fabric_login -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x4ed5b69b fc_queuecommand -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x4f767fd4 fc_exch_mgr_reset -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x53f3b8e9 fc_lport_destroy -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x553307c4 fc_exch_mgr_list_clone -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x5628a1eb fc_rport_logoff -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x57b607fe fc_exch_update_stats -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x5fce67cf fc_exch_seq_send -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x60f06d67 fc_get_host_speed -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x690c26d6 fc_lport_notifier_head -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x697a5850 fc_linkdown -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x6b30474b fc_eh_host_reset -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x6d0daef9 fc_seq_assign -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x6f67bfab fc_vport_id_lookup -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x72b4f805 fc_fcp_destroy -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x760b0254 fc_exch_mgr_add -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x76d4e505 fc_frame_crc_check -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7b7722e9 fc_eh_abort -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 0x811d60cf fc_rport_lookup -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8898de37 fc_vport_setlink -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8ce45022 fc_rport_login -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x95f0c82c fc_eh_device_reset -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 0xa3a26d88 fc_rport_terminate_io -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa3f5029a fc_elsct_init -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa40f2577 fc_rport_create -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa7938b99 fc_set_rport_loss_tmo -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb0ddd5a1 fc_rport_flush_queue -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb1cf7444 fc_exch_recv -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb2abf867 fc_rport_recv_req -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb33f0ec4 fc_fc4_register_provider -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xbc8e80c8 fc_disc_config -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc01bdd88 fc_fabric_logoff -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc122c4b8 fc_lport_iterate -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc1eaca36 fc_lport_set_local_id -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc81c7676 fc_linkup -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc9d517a9 fc_lport_bsg_request -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xca81018f _fc_frame_alloc -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd23440cb fc_fc4_deregister_provider -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd36d7f94 fc_exch_mgr_free -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe22e0e63 fc_lport_reset -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe26981ed fc_fill_hdr -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe5d97444 fc_disc_init -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf2ef259b fc_lport_flogi_resp -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf49435cf fc_get_host_port_state -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xfa4667d1 fc_seq_release -EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x0c3064e7 sas_resume_ha -EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x4a8e3d34 try_test_sas_gpio_gp_bit -EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x4ee28efc sas_suspend_ha -EXPORT_SYMBOL drivers/scsi/libsas/libsas 0xdbcae60c sas_prep_resume_ha -EXPORT_SYMBOL drivers/scsi/megaraid/megaraid_mm 0x41854ace 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 0x039bfa98 qlt_free_mcmd -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x0f13dae7 qlt_free_cmd -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x0f747085 qlt_enable_vha -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x308b4bb0 qlt_stop_phase1 -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x5196621a qlt_lport_deregister -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x561ddb70 qlt_rdy_to_xfer -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x8a210b3f qlt_xmit_response -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x9f707645 qlt_unreg_sess -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xa3ba34f2 qlt_abort_cmd -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xdab41597 qlt_xmit_tm_rsp -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xdbfc2390 qlt_lport_register -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xf4e086fc qlt_stop_phase2 -EXPORT_SYMBOL drivers/scsi/raid_class 0xa225ecc8 raid_class_release -EXPORT_SYMBOL drivers/scsi/raid_class 0xaf011557 raid_class_attach -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x02960b30 fc_remote_port_add -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x05627df1 fc_vport_create -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x0a04bac3 fc_remote_port_delete -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x0d4fcac7 fc_remove_host -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x11495d52 fc_block_scsi_eh -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x1a1d8ce5 fc_remote_port_rolechg -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x234812ec fc_vport_terminate -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x375f8bbd fc_get_event_number -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x6edad680 fc_eh_timed_out -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x72634805 fc_host_post_vendor_event -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x72c91348 fc_release_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x7ea0aad3 fc_host_fpin_rcv -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x8da01e48 fc_host_post_event -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x93a093fa fc_host_post_fc_event -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x9e24d876 fc_block_rport -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xa61eb474 fc_attach_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xcee6fdcb scsi_is_fc_rport -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xe166698f fc_find_rport_by_wwpn -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x03e712de sas_rphy_delete -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x0b6e102b sas_get_address -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x0e0c93a3 sas_port_add_phy -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x167b3e13 sas_release_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x1eec79f4 sas_phy_free -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x20a56fe7 sas_phy_delete -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x256f2085 sas_phy_add -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x3cffa4df sas_port_alloc -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x44683ba3 sas_port_get_phy -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x466b6032 scsi_is_sas_rphy -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x4835a125 sas_end_device_alloc -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x491daeee sas_port_delete_phy -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x4c78fac3 scsi_is_sas_port -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x5efaec40 scsi_is_sas_phy -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x620b6978 sas_phy_alloc -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x6bf35185 sas_port_mark_backlink -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x7c7506ef sas_port_free -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x82e2cd27 sas_expander_alloc -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x8efc4970 sas_port_alloc_num -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x992e8b8b sas_port_add -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x9f3b3764 sas_attach_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xa6eaf1a4 sas_port_delete -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xc2ffe9d7 sas_rphy_add -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xc9c7c5a5 sas_rphy_remove -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xd3db65a7 sas_remove_children -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xd740b84f sas_rphy_free -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xdf38db28 sas_remove_host -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xeb0563e7 sas_read_port_mode_page -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xfc628be4 sas_rphy_unlink -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x3686ea09 spi_print_msg -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x77a9659b spi_release_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x9af2fd9e spi_attach_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xa74c29d3 spi_dv_device -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xc6e1ed1c spi_schedule_dv_device -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xdf90513c spi_display_xfer_agreement -EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x405b6e05 srp_parse_tmo -EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x764e8220 srp_rport_get -EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0xd19c63b1 srp_rport_put -EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0xd2d16d5f srp_reconnect_rport -EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0xd49744ee srp_start_tl_fail_timers -EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0xdc7b8511 srp_timed_out -EXPORT_SYMBOL drivers/scsi/ufs/tc-dwc-g210 0x8d5e4907 tc_dwc_g210_config_40_bit -EXPORT_SYMBOL drivers/scsi/ufs/tc-dwc-g210 0xcd5e7981 tc_dwc_g210_config_20_bit -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0x4e50037d ufshcd_alloc_host -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0x65f1f5c8 ufshcd_runtime_resume -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0x6be35dbb ufshcd_shutdown -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0x762db713 ufshcd_map_desc_id_to_length -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0x7737767b ufshcd_system_suspend -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0x8fff2143 ufshcd_runtime_suspend -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0x98a35885 ufshcd_get_local_unipro_ver -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-core 0xcf08a415 ufshcd_system_resume -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-dwc 0x319a17a1 ufshcd_dwc_link_startup_notify -EXPORT_SYMBOL drivers/scsi/ufs/ufshcd-dwc 0x94db0f0a ufshcd_dwc_dme_set_attrs -EXPORT_SYMBOL drivers/soc/fsl/dpio/fsl-mc-dpio 0x030f2d6c dpaa2_io_service_enqueue_fq -EXPORT_SYMBOL drivers/soc/fsl/dpio/fsl-mc-dpio 0x3d01f417 dpaa2_io_service_pull_fq -EXPORT_SYMBOL drivers/soc/fsl/dpio/fsl-mc-dpio 0xc4ccef03 dpaa2_io_get_cpu -EXPORT_SYMBOL drivers/soc/fsl/dpio/fsl-mc-dpio 0xdb008703 dpaa2_io_service_enqueue_multiple_fq -EXPORT_SYMBOL drivers/soc/fsl/dpio/fsl-mc-dpio 0xe0f67b93 dpaa2_io_service_enqueue_multiple_desc_fq -EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x0f4b7285 cmdq_pkt_destroy -EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x1c91b6c6 cmdq_pkt_poll -EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x1eaf3cc3 cmdq_pkt_create -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 0x375e127a cmdq_mbox_destroy -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 0x802688dd cmdq_mbox_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 0xb5c0bb8d 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 0x5ad0c332 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 0x18429cff geni_se_init -EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x2c5cb96b geni_se_resources_on -EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x2cc3a4bc geni_se_select_mode -EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x4d9d30b6 geni_se_rx_dma_unprep -EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x65896dae geni_icc_disable -EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x75591b57 geni_se_clk_freq_match -EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x83a9314a geni_se_rx_dma_prep -EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x83c2534e geni_se_tx_dma_prep -EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x8ca6d9ce geni_icc_set_bw -EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x922ff3f9 geni_se_resources_off -EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0xb352bc20 geni_icc_get -EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0xc1419064 geni_se_get_qup_hw_version -EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0xcde0909e geni_se_tx_dma_unprep -EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0xd6ecc7da geni_icc_enable -EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0xe2fbfc61 geni_se_config_packing -EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0xf12d712d geni_icc_set_tag -EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0xf83d767e geni_se_clk_tbl_get -EXPORT_SYMBOL drivers/soc/qcom/qcom_aoss 0x2333aed6 qmp_put -EXPORT_SYMBOL drivers/soc/qcom/qcom_aoss 0x9120354f qmp_get -EXPORT_SYMBOL drivers/soc/qcom/qcom_aoss 0x9e2aa1df qmp_send -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x0c684897 qmi_send_response -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x0ef12cc9 qmi_encode_message -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x182f5dd0 qmi_send_request -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x20204e43 qmi_txn_init -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x21ce5888 qmi_response_type_v01_ei -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x27501359 qmi_send_indication -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x4955fad0 qmi_handle_release -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x630b9716 qmi_add_server -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x68772745 qmi_decode_message -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x79357304 qmi_txn_wait -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x7ab425c1 qmi_txn_cancel -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xbe6ec238 qmi_handle_init -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xca610ac4 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 0xee1a5a20 qcom_wcnss_open_channel -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x02462ee3 sdw_nwrite -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x065ec1b7 sdw_bwrite_no_pm_unlocked -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x16a67242 sdw_slave_add -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 0x3b0a8582 sdw_startup_stream -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x45bfaaed sdw_stream_remove_slave -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x463db5ab sdw_bus_clk_stop -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x4b92c917 sdw_update_no_pm -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x4cde88bf sdw_disable_stream -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x4dec7094 sdw_bread_no_pm_unlocked -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x4e739739 sdw_slave_read_prop -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x5a4e7ce5 sdw_update -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x5d514253 sdw_extract_slave_id -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x60e31fbb sdw_find_col_index -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x6cfea1f0 sdw_bus_master_add -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x6d06e0b2 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 0x74f07da4 sdw_nread -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x787dc196 sdw_handle_slave_status -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x78c8a556 sdw_write_no_pm -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x8833c80c sdw_read -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x8ef7d80b sdw_compare_devid -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x9e122d79 sdw_alloc_stream -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xa1717fac sdw_read_no_pm -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xafb7fa6f sdw_stream_remove_master -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xb001b882 sdw_master_read_prop -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xb0cdd149 sdw_stream_add_master -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xb37d29b4 sdw_stream_add_slave -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xb42611d8 sdw_bus_exit_clk_stop -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xba54b904 sdw_cols -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xbbec2c2e sdw_enable_stream -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xbd301aa3 sdw_bus_master_delete -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xca9edbbb sdw_clear_slave_status -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xda5bce09 sdw_release_stream -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xe1e34306 sdw_write -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xf53ba0b8 sdw_rows -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x0e06527a cdns_reset_page_addr -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x0ef4761f sdw_cdns_check_self_clearing_bits -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x316bd04e sdw_cdns_clock_restart -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x34712074 sdw_cdns_irq -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x43ed5654 cdns_xfer_msg_defer -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x546a796e sdw_cdns_alloc_pdi -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x8501e918 sdw_cdns_pdi_init -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x8e1e44de sdw_cdns_config_stream -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x8fc9f498 cdns_set_sdw_stream -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x9b3ef599 sdw_cdns_exit_reset -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x9e2d3b8f sdw_cdns_init -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xab406ab2 sdw_cdns_enable_interrupt -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xd2afe005 cdns_xfer_msg -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xdf0fabc3 sdw_cdns_probe -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xe407ff8e sdw_cdns_is_clock_stop -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xf912b536 sdw_cdns_clock_stop -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xfa2c6e87 cdns_bus_conf -EXPORT_SYMBOL drivers/soundwire/soundwire-generic-allocation 0xf05f4e00 sdw_compute_params -EXPORT_SYMBOL drivers/ssb/ssb 0x13aa6b78 ssb_driver_unregister -EXPORT_SYMBOL drivers/ssb/ssb 0x239f6ef5 ssb_device_is_enabled -EXPORT_SYMBOL drivers/ssb/ssb 0x24abb74a ssb_device_enable -EXPORT_SYMBOL drivers/ssb/ssb 0x7e64a565 ssb_commit_settings -EXPORT_SYMBOL drivers/ssb/ssb 0x89395122 ssb_pcihost_register -EXPORT_SYMBOL drivers/ssb/ssb 0x8d61687b __ssb_driver_register -EXPORT_SYMBOL drivers/ssb/ssb 0x975460cf ssb_dma_translation -EXPORT_SYMBOL drivers/ssb/ssb 0xa47fb133 ssb_bus_unregister -EXPORT_SYMBOL drivers/ssb/ssb 0xa49154a1 ssb_pcicore_dev_irqvecs_enable -EXPORT_SYMBOL drivers/ssb/ssb 0xac4921b7 ssb_bus_sdiobus_register -EXPORT_SYMBOL drivers/ssb/ssb 0xae7a0faf ssb_pmu_set_ldo_paref -EXPORT_SYMBOL drivers/ssb/ssb 0xb282a6fc ssb_bus_powerup -EXPORT_SYMBOL drivers/ssb/ssb 0xb35d9610 ssb_bus_suspend -EXPORT_SYMBOL drivers/ssb/ssb 0xb705c863 ssb_device_disable -EXPORT_SYMBOL drivers/ssb/ssb 0xbf90eb64 ssb_pmu_set_ldo_voltage -EXPORT_SYMBOL drivers/ssb/ssb 0xc2c0e6d4 ssb_bus_resume -EXPORT_SYMBOL drivers/ssb/ssb 0xcb17f1cb ssb_admatch_base -EXPORT_SYMBOL drivers/ssb/ssb 0xcc542870 ssb_chipco_gpio_control -EXPORT_SYMBOL drivers/ssb/ssb 0xd89aa3f5 ssb_clockspeed -EXPORT_SYMBOL drivers/ssb/ssb 0xdd0b1206 ssb_bus_may_powerdown -EXPORT_SYMBOL drivers/ssb/ssb 0xdfc7c6ef ssb_admatch_size -EXPORT_SYMBOL drivers/ssb/ssb 0xeea23072 ssb_set_devtypedata -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x05e06dba fbtft_unregister_backlight -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x0fec742c fbtft_write_reg16_bus16 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x1c027605 fbtft_write_vmem16_bus8 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x2495b3b3 fbtft_write_reg8_bus8 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x2d204614 fbtft_probe_common -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x3a846175 fbtft_write_vmem16_bus9 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x3e393c2d fbtft_write_spi -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x48801196 fbtft_unregister_framebuffer -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x537a009f fbtft_write_vmem8_bus8 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x5dd04dc2 fbtft_register_framebuffer -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x64d23515 fbtft_write_spi_emulate_9 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x6795deb6 fbtft_write_reg16_bus8 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x77ba134f fbtft_init_display -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x8fce0a72 fbtft_write_buf_dc -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xa2530b29 fbtft_register_backlight -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xa5c4a7d8 fbtft_framebuffer_release -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xb26235ea fbtft_write_gpio8_wr -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xb5fd7745 fbtft_write_vmem16_bus16 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xc38f793e fbtft_remove_common -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xc6007c8c fbtft_write_gpio16_wr -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xcfa7b8f9 fbtft_write_reg8_bus9 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xd53dfc93 fbtft_write_gpio16_wr_latched -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xdfd96916 fbtft_read_spi -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xead24528 fbtft_framebuffer_alloc -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xfc97d2a8 fbtft_dbg_hex -EXPORT_SYMBOL drivers/staging/greybus/gb-audio-codec 0x52342e7b gbaudio_register_module -EXPORT_SYMBOL drivers/staging/greybus/gb-audio-codec 0x70ae6883 gbaudio_unregister_module -EXPORT_SYMBOL drivers/staging/greybus/gb-audio-codec 0xdaf56818 gbaudio_module_update -EXPORT_SYMBOL drivers/staging/iio/addac/adt7316 0xe3ba3155 adt7316_probe -EXPORT_SYMBOL drivers/staging/iio/meter/ade7854 0xe8ddc72f ade7854_probe -EXPORT_SYMBOL drivers/staging/media/zoran/videocodec 0x336cb998 videocodec_register -EXPORT_SYMBOL drivers/staging/media/zoran/videocodec 0x69f9a0c1 videocodec_unregister -EXPORT_SYMBOL drivers/staging/media/zoran/videocodec 0xb401559f videocodec_attach -EXPORT_SYMBOL drivers/staging/media/zoran/videocodec 0xdf2d2a02 videocodec_detach -EXPORT_SYMBOL drivers/staging/nvec/nvec 0x35981da9 nvec_write_async -EXPORT_SYMBOL drivers/staging/nvec/nvec 0xd62c2b7a nvec_write_sync -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x01d1311b rtllib_wx_set_essid -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x071a8208 rtllib_wx_get_mode -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x0c130345 notify_wx_assoc_event -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x0ea93e87 rtllib_wx_set_wap -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x11ba6e5a rtllib_stop_send_beacons -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x12ce8877 rtllib_wx_get_encode -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x1a5db281 rtllib_act_scanning -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x1e59c9e9 rtllib_wx_set_mode -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x21d4ae11 rtllib_wx_get_wap -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x22166084 rt_global_debug_component -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x22a9325a rtllib_wx_set_encode_ext -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x294bb3a7 rtllib_wx_set_scan -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x2cbd39f4 dot11d_channel_map -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x3008f846 rtllib_wx_get_scan -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x3b1f79c7 rtllib_get_beacon -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x40d98f6b HT_update_self_and_peer_setting -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x457a347b rtllib_wx_set_power -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x466a79fc rtllib_reset_queue -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x4abe285c rtllib_wx_set_auth -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x4beed59e rtllib_softmac_stop_protocol -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x4c39114d rtllib_DisableIntelPromiscuousMode -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x861cac6e rtllib_wx_set_gen_ie -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x8b41cadf rtllib_rx -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x8cda7e70 rtllib_ps_tx_ack -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x8db539d6 rtllib_wx_set_rate -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x926ea5de rtllib_wx_get_power -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x94f67237 rtllib_wx_get_rate -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x954cac43 rtllib_legal_channel -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x9a47e3d7 rtllib_start_scan_syncro -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x9de602a8 dot11d_init -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xa298e267 rtllib_softmac_start_protocol -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xacdc6f15 rtllib_wx_set_freq -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xb4a5cb81 rtllib_wx_set_encode -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xb59f24f4 rtllib_wx_get_freq -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xc1325ab0 alloc_rtllib -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xc449739b rtllib_MgntDisconnect -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xc70d5e14 rtllib_sta_ps_send_null_frame -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xcf077284 free_rtllib -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xd17ea829 rtllib_stop_scan_syncro -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xd6c5a0be rtllib_wx_get_essid -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xd90f6570 rtllib_start_send_beacons -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xddd148d3 rtllib_wx_get_rts -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xdf78f620 rtllib_wlan_frequencies -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xe04bfc49 rtllib_wx_get_name -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xe666bcc3 rtllib_xmit -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xede1dde4 rtllib_wx_set_mlme -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xf2acd845 rtllib_wx_set_rts -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xf59b8bfc rtllib_stop_scan -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xf670b3a1 rtllib_EnableIntelPromiscuousMode -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xf8cb7282 RemovePeerTS -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xff51a67a rtllib_wx_set_rawtx -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x02c8dc4b ieee80211_wx_set_auth_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x077331d5 ieee80211_wx_get_essid_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x0e57dfed ieee80211_stop_scan_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x0f6ed7c8 ieee80211_stop_send_beacons_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x19a97c60 ieee80211_wx_set_freq_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x1d66a0ff ieee80211_is_shortslot_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x3296559e ieee80211_wx_get_mode_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x35d7d6c5 ieee80211_softmac_scan_syncro_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x37120b3f ieee80211_wx_set_power_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x3bf01099 ieee80211_wx_get_wap_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x3def145d ieee80211_txb_free_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x4ca519ff ieee80211_start_send_beacons_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x4e4e5bdb to_legal_channel -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x5a2e5942 ieee80211_softmac_stop_protocol_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x5b438da4 ieee80211_wx_get_freq_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x5eaad974 ieee80211_wx_set_gen_ie_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x60ace67e dot11d_update_country_ie -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x6399b8b0 ieee80211_wx_set_wap_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x6d0068de dot11d_get_max_tx_pwr_in_dbm -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7030dcdc ieee80211_ps_tx_ack_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x707ca45a ieee80211_wx_set_mode_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x78c7aa82 ieee80211_wx_set_mlme_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x81bb7e79 ieee80211_start_scan_syncro_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x9213d80b ieee80211_wx_get_rts_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x99a069a7 ieee80211_get_beacon_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x99d67de9 ieee80211_wx_get_name_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x9b38dd8d ieee80211_wx_set_essid_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x9bbdc190 ieee80211_wake_queue_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x9dcdc3f4 ieee80211_wx_get_encode_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa420bcff ieee80211_rx_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa93444b1 ieee80211_wx_set_rate_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xab59e767 ieee80211_wx_get_power_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xae938d31 ieee80211_rx_mgt_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xaf3eb8dd ieee80211_wx_set_rawtx_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xba978845 ieee80211_wpa_supplicant_ioctl_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xbe72f3f9 ieee80211_wx_get_scan_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc370a43e ieee80211_wlan_frequencies_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc4b21d82 ieee80211_wx_set_encode_ext_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc9d3ca45 dot11d_reset -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xca7a7022 ieee80211_wx_set_rts_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd7e0aeec ieee80211_softmac_start_protocol_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd844016e is_legal_channel -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd8cfcb71 SendDisassociation_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xdbd9d1ee ieee80211_stop_queue_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xdc36b7d2 notify_wx_assoc_event_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xddfce952 HTUpdateSelfAndPeerSetting -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xdf8d1ec3 rtl8192u_dot11d_init -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe1636807 ieee80211_reset_queue_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe519c7bf ieee80211_disassociate_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xebdeb575 ieee80211_wx_get_rate_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xecc5fb1b ieee80211_is_54g_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf143c03f ieee80211_wx_get_encode_ext_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf8e151de ieee80211_wx_set_encode_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xfc98023d ieee80211_wx_set_scan_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xfcd57a59 ieee80211_softmac_xmit_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xfd60377d dot11d_scan_complete -EXPORT_SYMBOL drivers/staging/vc04_services/vchiq 0x02f8c431 vchiq_queue_kernel_message -EXPORT_SYMBOL drivers/staging/vc04_services/vchiq 0x1c60d406 vchiq_get_service_userdata -EXPORT_SYMBOL drivers/staging/vc04_services/vchiq 0x2cb1ccc5 vchiq_open_service -EXPORT_SYMBOL drivers/staging/vc04_services/vchiq 0x327c3232 vchiq_msg_hold -EXPORT_SYMBOL drivers/staging/vc04_services/vchiq 0x506fc16f vchiq_shutdown -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 0x9b4755b4 vchiq_initialise -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 0xe95e0941 vchiq_close_service -EXPORT_SYMBOL drivers/staging/vc04_services/vchiq 0xeb784c99 vchiq_connect -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x0231ffd5 iscsit_build_nopin_rsp -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x05b97a59 iscsit_get_datain_values -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x07753539 iscsit_increment_maxcmdsn -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x09c43fbe iscsit_sequence_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x0dc61a7e iscsit_build_datain_pdu -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x0f6666b9 iscsit_build_rsp_pdu -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x1a1868ac iscsit_aborted_task -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x1a557745 iscsit_build_reject -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x3012ed6c iscsit_register_transport -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x3190b2f6 iscsit_find_cmd_from_itt_or_dump -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x35eb6a74 iscsit_process_scsi_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x46a864bd iscsit_handle_logout_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x4c202d72 iscsit_find_cmd_from_itt -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x513c159b iscsit_handle_task_mgt_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x5d2bf30a iscsit_build_r2ts_for_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x5d8aadab iscsit_reject_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x6029a1bc iscsi_change_param_sprintf -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x60b81862 iscsit_process_nop_out -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x65436637 iscsit_queue_rsp -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x68a7ceaa iscsit_response_queue -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x7f87a4cc iscsit_setup_nop_out -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x849f00c9 iscsit_free_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x902ea360 iscsit_add_reject -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x94ddb145 iscsit_immediate_queue -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x95746dcb iscsit_handle_snack -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x95b85b31 iscsit_set_unsolicited_dataout -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x9c8af980 iscsit_setup_scsi_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x9f3fb22c iscsit_logout_post_handler -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xa79ecade iscsit_process_text_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xa95e87ae iscsit_allocate_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xaa483487 iscsit_release_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xaca2b2c6 iscsit_build_logout_rsp -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xb0723d77 iscsit_add_cmd_to_immediate_queue -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xbfe4d87a iscsit_stop_dataout_timer -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xc093655e iscsit_tmr_post_handler -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xc21613a0 iscsit_setup_text_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xc2ab32f9 iscsit_check_dataout_payload -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xcd956773 iscsit_unregister_transport -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xd01fdb1d iscsit_cause_connection_reinstatement -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xd3ee11d3 iscsit_build_text_rsp -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xe0b11280 iscsit_check_dataout_hdr -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xf34332f0 iscsi_find_param_from_key -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xf7c1f121 __iscsit_check_dataout_hdr -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xfae0c837 iscsi_target_check_login_request -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xfded04dd iscsit_build_task_mgt_rsp -EXPORT_SYMBOL drivers/target/target_core_mod 0x0616f45d target_undepend_item -EXPORT_SYMBOL drivers/target/target_core_mod 0x0871ffd6 transport_set_vpd_ident -EXPORT_SYMBOL drivers/target/target_core_mod 0x142072c0 transport_set_vpd_assoc -EXPORT_SYMBOL drivers/target/target_core_mod 0x1671ea27 transport_kunmap_data_sg -EXPORT_SYMBOL drivers/target/target_core_mod 0x195c93e0 target_configure_unmap_from_queue -EXPORT_SYMBOL drivers/target/target_core_mod 0x2229f879 transport_copy_sense_to_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x239d1283 transport_alloc_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x24bff4f1 spc_emulate_report_luns -EXPORT_SYMBOL drivers/target/target_core_mod 0x26640ef5 __target_init_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x273c78c2 target_wait_for_sess_cmds -EXPORT_SYMBOL drivers/target/target_core_mod 0x33c0c730 transport_generic_handle_tmr -EXPORT_SYMBOL drivers/target/target_core_mod 0x35e358e4 target_put_nacl -EXPORT_SYMBOL drivers/target/target_core_mod 0x369dc563 transport_init_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x3844da6a transport_kmap_data_sg -EXPORT_SYMBOL drivers/target/target_core_mod 0x3a20a9d7 transport_set_vpd_ident_type -EXPORT_SYMBOL drivers/target/target_core_mod 0x3c31d03d sbc_get_write_same_sectors -EXPORT_SYMBOL drivers/target/target_core_mod 0x3ccf6448 target_submit_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x3d9e6ed8 target_cmd_parse_cdb -EXPORT_SYMBOL drivers/target/target_core_mod 0x3ecdf727 target_lun_is_rdonly -EXPORT_SYMBOL drivers/target/target_core_mod 0x41c5bc24 target_register_template -EXPORT_SYMBOL drivers/target/target_core_mod 0x439fc79e sbc_attrib_attrs -EXPORT_SYMBOL drivers/target/target_core_mod 0x43d74437 core_tpg_set_initiator_node_tag -EXPORT_SYMBOL drivers/target/target_core_mod 0x4921b074 target_setup_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x4a4164d0 passthrough_attrib_attrs -EXPORT_SYMBOL drivers/target/target_core_mod 0x4ba07b97 transport_backend_register -EXPORT_SYMBOL drivers/target/target_core_mod 0x4dfcba58 spc_emulate_evpd_83 -EXPORT_SYMBOL drivers/target/target_core_mod 0x53106460 target_stop_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x565a9bb9 transport_deregister_session_configfs -EXPORT_SYMBOL drivers/target/target_core_mod 0x5c6ffbab target_backend_unregister -EXPORT_SYMBOL drivers/target/target_core_mod 0x5ecac2c1 transport_register_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x61ac2d17 transport_generic_new_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x62fad205 target_to_linux_sector -EXPORT_SYMBOL drivers/target/target_core_mod 0x638bffb7 target_free_sgl -EXPORT_SYMBOL drivers/target/target_core_mod 0x6543a94f core_tpg_set_initiator_node_queue_depth -EXPORT_SYMBOL drivers/target/target_core_mod 0x69af34e9 target_submit_tmr -EXPORT_SYMBOL drivers/target/target_core_mod 0x6a423d2a target_execute_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x6a4f499f transport_lookup_tmr_lun -EXPORT_SYMBOL drivers/target/target_core_mod 0x6d7ec221 target_set_cmd_data_length -EXPORT_SYMBOL drivers/target/target_core_mod 0x6e5d1ed9 transport_deregister_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x6fa2d564 sbc_dif_verify -EXPORT_SYMBOL drivers/target/target_core_mod 0x72154b13 target_cmd_init_cdb -EXPORT_SYMBOL drivers/target/target_core_mod 0x7802e2da transport_free_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x79b4e7db passthrough_pr_attrib_attrs -EXPORT_SYMBOL drivers/target/target_core_mod 0x7a1d0d3c target_alloc_sgl -EXPORT_SYMBOL drivers/target/target_core_mod 0x81232e9a spc_parse_cdb -EXPORT_SYMBOL drivers/target/target_core_mod 0x837befd9 target_complete_cmd_with_length -EXPORT_SYMBOL drivers/target/target_core_mod 0x8537daed target_nacl_find_deve -EXPORT_SYMBOL drivers/target/target_core_mod 0x86be2920 core_tpg_register -EXPORT_SYMBOL drivers/target/target_core_mod 0x8c5fce42 target_get_sess_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x90f825f9 target_unregister_template -EXPORT_SYMBOL drivers/target/target_core_mod 0x935460f2 transport_generic_request_failure -EXPORT_SYMBOL drivers/target/target_core_mod 0x9beed51c spc_emulate_inquiry_std -EXPORT_SYMBOL drivers/target/target_core_mod 0xa37c08b5 target_put_sess_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0xa3841d32 transport_alloc_session_tags -EXPORT_SYMBOL drivers/target/target_core_mod 0xa589380c core_allocate_nexus_loss_ua -EXPORT_SYMBOL drivers/target/target_core_mod 0xa642c33b core_tmr_alloc_req -EXPORT_SYMBOL drivers/target/target_core_mod 0xa688c253 sbc_dif_copy_prot -EXPORT_SYMBOL drivers/target/target_core_mod 0xaef92028 core_tpg_check_initiator_node_acl -EXPORT_SYMBOL drivers/target/target_core_mod 0xb563aea4 core_alua_check_nonop_delay -EXPORT_SYMBOL drivers/target/target_core_mod 0xb66ded49 target_complete_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0xb9de1993 passthrough_parse_cdb -EXPORT_SYMBOL drivers/target/target_core_mod 0xbc7bcdec transport_generic_free_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0xc07db480 target_remove_session -EXPORT_SYMBOL drivers/target/target_core_mod 0xc8b10638 transport_lookup_cmd_lun -EXPORT_SYMBOL drivers/target/target_core_mod 0xc92e8fd7 transport_handle_cdb_direct -EXPORT_SYMBOL drivers/target/target_core_mod 0xc94783ee core_tpg_deregister -EXPORT_SYMBOL drivers/target/target_core_mod 0xcfaa2bc4 sbc_get_device_type -EXPORT_SYMBOL drivers/target/target_core_mod 0xcfc1c07a target_tpg_has_node_acl -EXPORT_SYMBOL drivers/target/target_core_mod 0xd4584b1a transport_send_check_condition_and_sense -EXPORT_SYMBOL drivers/target/target_core_mod 0xd6876d05 target_send_busy -EXPORT_SYMBOL drivers/target/target_core_mod 0xd9993b5a target_show_dynamic_sessions -EXPORT_SYMBOL drivers/target/target_core_mod 0xdd99d923 __transport_register_session -EXPORT_SYMBOL drivers/target/target_core_mod 0xe1472794 sbc_parse_cdb -EXPORT_SYMBOL drivers/target/target_core_mod 0xe2e4ed9e core_tpg_get_initiator_node_acl -EXPORT_SYMBOL drivers/target/target_core_mod 0xe5194648 target_complete_cmd_with_sense -EXPORT_SYMBOL drivers/target/target_core_mod 0xe8f069e0 target_show_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0xf3c2dfe0 transport_set_vpd_proto_id -EXPORT_SYMBOL drivers/target/target_core_mod 0xf57cc888 transport_wait_for_tasks -EXPORT_SYMBOL drivers/target/target_core_mod 0xfd48ab38 target_depend_item -EXPORT_SYMBOL drivers/usb/class/cdc-wdm 0x23f10188 usb_cdc_wdm_register -EXPORT_SYMBOL drivers/usb/gadget/libcomposite 0x1fa0d1a1 usb_os_desc_prepare_interf_dir -EXPORT_SYMBOL drivers/usb/host/sl811-hcd 0x5ae61401 sl811h_driver -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x197e4fee usb_wwan_close -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x27470fe6 usb_wwan_port_remove -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x2df0fc0f usb_wwan_resume -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x31267666 usb_wwan_tiocmget -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x350fa02b usb_wwan_tiocmset -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x3558ab0e usb_wwan_write_room -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x43322f41 usb_wwan_open -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x7264a0c1 usb_wwan_chars_in_buffer -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x98116861 usb_wwan_suspend -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xbe20cecf usb_wwan_dtr_rts -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xea397a45 usb_wwan_write -EXPORT_SYMBOL drivers/usb/serial/usbserial 0x4cc53327 usb_serial_suspend -EXPORT_SYMBOL drivers/usb/serial/usbserial 0xb1dbeb7e usb_serial_resume -EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x1e469259 mtype_get_type_group_id -EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x2565861e mdev_unregister_device -EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x373e6aa3 mdev_register_device -EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x612d1241 mdev_get_type_group_id -EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x864dfe82 mtype_get_parent_dev -EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x949083c9 mdev_unregister_driver -EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x9d993806 mdev_parent_dev -EXPORT_SYMBOL drivers/vfio/mdev/mdev 0xbc5b82c6 mdev_register_driver -EXPORT_SYMBOL drivers/vfio/vfio 0x1677a6a8 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 0x2e6d3a80 vfio_register_notifier -EXPORT_SYMBOL drivers/vfio/vfio 0x48a81d7e vfio_group_pin_pages -EXPORT_SYMBOL drivers/vfio/vfio 0x6c28be5a vfio_info_add_capability -EXPORT_SYMBOL drivers/vfio/vfio 0x7834defd vfio_group_unpin_pages -EXPORT_SYMBOL drivers/vfio/vfio 0x9f55220b vfio_unpin_pages -EXPORT_SYMBOL drivers/vfio/vfio 0xadc044b7 vfio_set_irqs_validate_and_prepare -EXPORT_SYMBOL drivers/vfio/vfio 0xe2af7363 vfio_pin_pages -EXPORT_SYMBOL drivers/vhost/vhost 0x05ae6aff vhost_chr_write_iter -EXPORT_SYMBOL drivers/vhost/vhost 0xf7638814 vhost_chr_poll -EXPORT_SYMBOL drivers/vhost/vringh 0x0493b248 vringh_abandon_kern -EXPORT_SYMBOL drivers/vhost/vringh 0x0db19e47 vringh_need_notify_kern -EXPORT_SYMBOL drivers/vhost/vringh 0x158d7750 vringh_need_notify_user -EXPORT_SYMBOL drivers/vhost/vringh 0x1fa5ccc1 vringh_notify_enable_iotlb -EXPORT_SYMBOL drivers/vhost/vringh 0x24a20bee vringh_notify_enable_kern -EXPORT_SYMBOL drivers/vhost/vringh 0x39dd5a02 vringh_complete_iotlb -EXPORT_SYMBOL drivers/vhost/vringh 0x3b304ebb vringh_iov_push_user -EXPORT_SYMBOL drivers/vhost/vringh 0x3b59f3d4 vringh_abandon_iotlb -EXPORT_SYMBOL drivers/vhost/vringh 0x3ed57f5b vringh_init_iotlb -EXPORT_SYMBOL drivers/vhost/vringh 0x4311cd91 vringh_iov_pull_user -EXPORT_SYMBOL drivers/vhost/vringh 0x49beb227 vringh_notify_disable_user -EXPORT_SYMBOL drivers/vhost/vringh 0x51825b30 vringh_notify_disable_kern -EXPORT_SYMBOL drivers/vhost/vringh 0x660779c8 vringh_kiov_advance -EXPORT_SYMBOL drivers/vhost/vringh 0x71c562c4 vringh_getdesc_iotlb -EXPORT_SYMBOL drivers/vhost/vringh 0x78d85308 vringh_notify_enable_user -EXPORT_SYMBOL drivers/vhost/vringh 0x7d5c93b1 vringh_need_notify_iotlb -EXPORT_SYMBOL drivers/vhost/vringh 0x96fa6403 vringh_iov_pull_iotlb -EXPORT_SYMBOL drivers/vhost/vringh 0x97fa07e9 vringh_iov_push_kern -EXPORT_SYMBOL drivers/vhost/vringh 0x9deecbd7 vringh_getdesc_kern -EXPORT_SYMBOL drivers/vhost/vringh 0xa2b8c26a vringh_complete_user -EXPORT_SYMBOL drivers/vhost/vringh 0xaa8a7502 vringh_getdesc_user -EXPORT_SYMBOL drivers/vhost/vringh 0xb36144eb vringh_notify_disable_iotlb -EXPORT_SYMBOL drivers/vhost/vringh 0xb3f5ced9 vringh_complete_multi_user -EXPORT_SYMBOL drivers/vhost/vringh 0xb60af394 vringh_set_iotlb -EXPORT_SYMBOL drivers/vhost/vringh 0xd55f8f38 vringh_iov_push_iotlb -EXPORT_SYMBOL drivers/vhost/vringh 0xd932c7b9 vringh_init_kern -EXPORT_SYMBOL drivers/vhost/vringh 0xde804bb9 vringh_iov_pull_kern -EXPORT_SYMBOL drivers/vhost/vringh 0xe397d9e4 vringh_complete_kern -EXPORT_SYMBOL drivers/vhost/vringh 0xe95dbd86 vringh_init_user -EXPORT_SYMBOL drivers/vhost/vringh 0xeddf7240 vringh_abandon_user -EXPORT_SYMBOL drivers/video/backlight/lcd 0x5b1f6937 lcd_device_register -EXPORT_SYMBOL drivers/video/backlight/lcd 0xe2e96e82 devm_lcd_device_register -EXPORT_SYMBOL drivers/video/backlight/lcd 0xf943a009 lcd_device_unregister -EXPORT_SYMBOL drivers/video/backlight/lcd 0xfab5e4df 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 0x29843b65 svga_get_tilemax -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x2ad40029 svga_tilecopy -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x36f166e8 svga_settile -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x4ab38ef2 svga_set_default_crt_regs -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x4bb83f46 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 0xb0ab2b2e svga_check_timings -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xb706ee81 svga_get_caps -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xd22ca511 svga_set_default_atc_regs -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xd6ec2c44 svga_compute_pll -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xdcc5a013 svga_wseq_multi -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xe28d2a49 svga_set_default_gfx_regs -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xe2e72231 svga_tilefill -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xf9f0e04f svga_tilecursor -EXPORT_SYMBOL drivers/video/fbdev/core/syscopyarea 0x4e16dc31 sys_copyarea -EXPORT_SYMBOL drivers/video/fbdev/core/sysfillrect 0x904fb7d8 sys_fillrect -EXPORT_SYMBOL drivers/video/fbdev/core/sysimgblt 0x0fa74210 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 0xc9b77615 cyber2000fb_attach -EXPORT_SYMBOL drivers/video/fbdev/macmodes 0x233917d1 mac_vmode_to_var -EXPORT_SYMBOL drivers/video/fbdev/macmodes 0x684fc126 mac_find_mode -EXPORT_SYMBOL drivers/video/fbdev/macmodes 0xe2304303 mac_map_monitor_sense -EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0x2300df78 g450_mnp2f -EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0x9c9e6820 matroxfb_g450_setclk -EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0xaab7966f matroxfb_g450_setpll_cond -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x53173d15 matrox_mystique -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x5790f592 DAC1064_global_restore -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x5dc1de6d matrox_G100 -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x99bd7535 DAC1064_global_init -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_Ti3026 0x3c01d753 matrox_millennium -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_accel 0x90249135 matrox_cfbX_init -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0xbc08dca6 matroxfb_wait_for_sync -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0xc2481934 matroxfb_enable_irq -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0xf6a1f036 matroxfb_register_driver -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0xfdc5611d matroxfb_unregister_driver -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_g450 0x20ccee7e matroxfb_g450_connect -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_g450 0xd75bf4cf matroxfb_g450_shutdown -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x14f387b7 matroxfb_DAC_in -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x25cf8049 matroxfb_PLL_calcclock -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x2d9aa58f matroxfb_DAC_out -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x43381bc5 matroxfb_read_pins -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x692ebed6 matroxfb_vgaHWinit -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xcdb962d7 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 0xabc3d9c1 virtio_dma_buf_attach -EXPORT_SYMBOL drivers/virtio/virtio_dma_buf 0xc83fe6a9 virtio_dma_buf_export -EXPORT_SYMBOL drivers/virtio/virtio_dma_buf 0xe5a0bb25 virtio_dma_buf_get_uuid -EXPORT_SYMBOL drivers/virtio/virtio_dma_buf 0xf51ba3c9 is_virtio_dma_buf -EXPORT_SYMBOL drivers/w1/slaves/w1_ds2780 0x31411cde w1_ds2780_eeprom_cmd -EXPORT_SYMBOL drivers/w1/slaves/w1_ds2780 0xc4121fa0 w1_ds2780_io -EXPORT_SYMBOL drivers/w1/slaves/w1_ds2781 0x21de5f95 w1_ds2781_io -EXPORT_SYMBOL drivers/w1/slaves/w1_ds2781 0x65ef0707 w1_ds2781_eeprom_cmd -EXPORT_SYMBOL drivers/w1/wire 0x2c6a9516 w1_register_family -EXPORT_SYMBOL drivers/w1/wire 0x41e1bb53 w1_add_master_device -EXPORT_SYMBOL drivers/w1/wire 0x7777b6e2 w1_remove_master_device -EXPORT_SYMBOL drivers/w1/wire 0x95f00767 w1_unregister_family -EXPORT_SYMBOL fs/fscache/fscache 0x0725f01f fscache_operation_init -EXPORT_SYMBOL fs/fscache/fscache 0x11f0a20e __fscache_check_consistency -EXPORT_SYMBOL fs/fscache/fscache 0x24f81c40 __fscache_wait_on_invalidate -EXPORT_SYMBOL fs/fscache/fscache 0x27eb31dc fscache_op_complete -EXPORT_SYMBOL fs/fscache/fscache 0x29de63c3 __fscache_check_page_write -EXPORT_SYMBOL fs/fscache/fscache 0x3c7b73b8 fscache_init_cache -EXPORT_SYMBOL fs/fscache/fscache 0x3dca34e4 fscache_enqueue_operation -EXPORT_SYMBOL fs/fscache/fscache 0x4002328b __fscache_register_netfs -EXPORT_SYMBOL fs/fscache/fscache 0x45c46e80 __fscache_unregister_netfs -EXPORT_SYMBOL fs/fscache/fscache 0x4606e3db __fscache_read_or_alloc_page -EXPORT_SYMBOL fs/fscache/fscache 0x472dbda7 fscache_check_aux -EXPORT_SYMBOL fs/fscache/fscache 0x5139830d fscache_put_operation -EXPORT_SYMBOL fs/fscache/fscache 0x52bb51a7 __fscache_acquire_cookie -EXPORT_SYMBOL fs/fscache/fscache 0x5c29a598 fscache_fsdef_index -EXPORT_SYMBOL fs/fscache/fscache 0x670be41f fscache_cache_cleared_wq -EXPORT_SYMBOL fs/fscache/fscache 0x74530ecd fscache_op_debug_id -EXPORT_SYMBOL fs/fscache/fscache 0x839534c6 __fscache_attr_changed -EXPORT_SYMBOL fs/fscache/fscache 0x8e36dca8 __fscache_maybe_release_page -EXPORT_SYMBOL fs/fscache/fscache 0x95e3b90c __fscache_uncache_page -EXPORT_SYMBOL fs/fscache/fscache 0x9a42477e __fscache_relinquish_cookie -EXPORT_SYMBOL fs/fscache/fscache 0x9d7c02f0 fscache_object_mark_killed -EXPORT_SYMBOL fs/fscache/fscache 0xbb21a379 __fscache_read_or_alloc_pages -EXPORT_SYMBOL fs/fscache/fscache 0xbc2c3a1f __fscache_wait_on_page_write -EXPORT_SYMBOL fs/fscache/fscache 0xc110ac57 fscache_obtained_object -EXPORT_SYMBOL fs/fscache/fscache 0xc3149dd9 __fscache_uncache_all_inode_pages -EXPORT_SYMBOL fs/fscache/fscache 0xc74361b4 fscache_object_init -EXPORT_SYMBOL fs/fscache/fscache 0xcc6ee3be fscache_object_retrying_stale -EXPORT_SYMBOL fs/fscache/fscache 0xd49feb80 fscache_mark_page_cached -EXPORT_SYMBOL fs/fscache/fscache 0xd693f4a3 __fscache_write_page -EXPORT_SYMBOL fs/fscache/fscache 0xd875bb83 fscache_object_lookup_negative -EXPORT_SYMBOL fs/fscache/fscache 0xd9efea3f __fscache_disable_cookie -EXPORT_SYMBOL fs/fscache/fscache 0xda2e311c __fscache_enable_cookie -EXPORT_SYMBOL fs/fscache/fscache 0xdcc0d130 __fscache_invalidate -EXPORT_SYMBOL fs/fscache/fscache 0xdedc8c19 fscache_io_error -EXPORT_SYMBOL fs/fscache/fscache 0xdfe26334 __fscache_begin_read_operation -EXPORT_SYMBOL fs/fscache/fscache 0xe5af7ec7 __fscache_alloc_page -EXPORT_SYMBOL fs/fscache/fscache 0xe76cbbff fscache_withdraw_cache -EXPORT_SYMBOL fs/fscache/fscache 0xf0bef0a3 fscache_add_cache -EXPORT_SYMBOL fs/fscache/fscache 0xf19d3cf0 __fscache_update_cookie -EXPORT_SYMBOL fs/fscache/fscache 0xf5483a2a __fscache_readpages_cancel -EXPORT_SYMBOL fs/fscache/fscache 0xfa684102 fscache_object_destroy -EXPORT_SYMBOL fs/fscache/fscache 0xfca082b0 fscache_mark_pages_cached -EXPORT_SYMBOL fs/netfs/netfs 0x521f379d netfs_subreq_terminated -EXPORT_SYMBOL fs/netfs/netfs 0xb84ad063 netfs_write_begin -EXPORT_SYMBOL fs/netfs/netfs 0xca6ab871 netfs_stats_show -EXPORT_SYMBOL fs/netfs/netfs 0xcc0cb9d0 netfs_readpage -EXPORT_SYMBOL fs/netfs/netfs 0xd65c7513 netfs_readahead -EXPORT_SYMBOL fs/ocfs2/cluster/ocfs2_nodemanager 0xbfd7d7a2 o2hb_global_heartbeat_active -EXPORT_SYMBOL fs/quota/quota_tree 0x1bbb9f42 qtree_read_dquot -EXPORT_SYMBOL fs/quota/quota_tree 0x5eb7a868 qtree_write_dquot -EXPORT_SYMBOL fs/quota/quota_tree 0xa53b4d8b qtree_get_next_id -EXPORT_SYMBOL fs/quota/quota_tree 0xa84af51f qtree_release_dquot -EXPORT_SYMBOL fs/quota/quota_tree 0xb00262be qtree_entry_unused -EXPORT_SYMBOL fs/quota/quota_tree 0xb41aa12f qtree_delete_dquot -EXPORT_SYMBOL lib/crc-itu-t 0x09a34a2b crc_itu_t -EXPORT_SYMBOL lib/crc-itu-t 0xd819a524 crc_itu_t_table -EXPORT_SYMBOL lib/crc7 0x65aaf037 crc7_be_syndrome_table -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 0x4522d82a lc_reset -EXPORT_SYMBOL lib/lru_cache 0x4cf5f5a8 lc_is_used -EXPORT_SYMBOL lib/lru_cache 0x4dd76200 lc_seq_printf_stats -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 0x9e5384a5 lc_seq_dump_details -EXPORT_SYMBOL lib/lru_cache 0xb672aa97 lc_create -EXPORT_SYMBOL lib/lru_cache 0xbfbe53d5 lc_get_cumulative -EXPORT_SYMBOL lib/lru_cache 0xc3a98c1d lc_try_lock -EXPORT_SYMBOL lib/lru_cache 0xcc979a91 lc_set -EXPORT_SYMBOL lib/lru_cache 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 0x2d729add lowpan_unregister_netdev -EXPORT_SYMBOL net/6lowpan/6lowpan 0x5f91a45a lowpan_nhc_add -EXPORT_SYMBOL net/6lowpan/6lowpan 0x999e13d7 lowpan_nhc_del -EXPORT_SYMBOL net/6lowpan/6lowpan 0x9f9d2323 lowpan_register_netdev -EXPORT_SYMBOL net/6lowpan/6lowpan 0xda8dbeff lowpan_unregister_netdevice -EXPORT_SYMBOL net/6lowpan/6lowpan 0xde434c91 lowpan_register_netdevice -EXPORT_SYMBOL net/802/p8022 0x6530e704 unregister_8022_client -EXPORT_SYMBOL net/802/p8022 0x86be2ffa register_8022_client -EXPORT_SYMBOL net/802/psnap 0x8b462b29 register_snap_client -EXPORT_SYMBOL net/802/psnap 0xd704888e unregister_snap_client -EXPORT_SYMBOL net/9p/9pnet 0x035c8d02 p9_client_rename -EXPORT_SYMBOL net/9p/9pnet 0x06437987 p9_client_readlink -EXPORT_SYMBOL net/9p/9pnet 0x0cad66d7 p9_client_read_once -EXPORT_SYMBOL net/9p/9pnet 0x0e1fe58d p9_client_renameat -EXPORT_SYMBOL net/9p/9pnet 0x0fe448b8 p9_client_readdir -EXPORT_SYMBOL net/9p/9pnet 0x2498c3b0 p9_client_destroy -EXPORT_SYMBOL net/9p/9pnet 0x2682494f p9_client_remove -EXPORT_SYMBOL net/9p/9pnet 0x2a3a83cc p9_client_statfs -EXPORT_SYMBOL net/9p/9pnet 0x2cda7a4b p9_client_fsync -EXPORT_SYMBOL net/9p/9pnet 0x324a3ae4 p9_client_create_dotl -EXPORT_SYMBOL net/9p/9pnet 0x3583c542 p9_client_cb -EXPORT_SYMBOL net/9p/9pnet 0x362883c3 v9fs_unregister_trans -EXPORT_SYMBOL net/9p/9pnet 0x3d73a797 p9_errstr2errno -EXPORT_SYMBOL net/9p/9pnet 0x3e1baabb p9_client_lock_dotl -EXPORT_SYMBOL net/9p/9pnet 0x46fb239b p9_client_getattr_dotl -EXPORT_SYMBOL net/9p/9pnet 0x4b88c5a6 p9_client_mknod_dotl -EXPORT_SYMBOL net/9p/9pnet 0x4e239f83 p9_client_getlock_dotl -EXPORT_SYMBOL net/9p/9pnet 0x5a39c604 p9_client_walk -EXPORT_SYMBOL net/9p/9pnet 0x65f89d65 v9fs_get_default_trans -EXPORT_SYMBOL net/9p/9pnet 0x6b424362 p9_client_read -EXPORT_SYMBOL net/9p/9pnet 0x6d413299 p9_client_unlinkat -EXPORT_SYMBOL net/9p/9pnet 0x6fba5312 p9_req_put -EXPORT_SYMBOL net/9p/9pnet 0x7b97adb8 p9_client_wstat -EXPORT_SYMBOL net/9p/9pnet 0x832bbad6 p9_client_stat -EXPORT_SYMBOL net/9p/9pnet 0x93bfbdb0 p9_show_client_options -EXPORT_SYMBOL net/9p/9pnet 0x977dccd7 p9_is_proto_dotu -EXPORT_SYMBOL net/9p/9pnet 0x984c5e73 p9_fcall_fini -EXPORT_SYMBOL net/9p/9pnet 0x9b9a6baa v9fs_register_trans -EXPORT_SYMBOL net/9p/9pnet 0xa5a1c635 p9_client_fcreate -EXPORT_SYMBOL net/9p/9pnet 0xb59532f0 p9_client_link -EXPORT_SYMBOL net/9p/9pnet 0xb79f25fd p9_parse_header -EXPORT_SYMBOL net/9p/9pnet 0xbaed708b p9_client_attach -EXPORT_SYMBOL net/9p/9pnet 0xbdb39dcb p9_client_write -EXPORT_SYMBOL net/9p/9pnet 0xbf5ee1d2 p9_client_mkdir_dotl -EXPORT_SYMBOL net/9p/9pnet 0xc0604939 v9fs_get_trans_by_name -EXPORT_SYMBOL net/9p/9pnet 0xc57409a2 p9_client_open -EXPORT_SYMBOL net/9p/9pnet 0xc6f524c3 p9_is_proto_dotl -EXPORT_SYMBOL net/9p/9pnet 0xc76bc39e p9_client_begin_disconnect -EXPORT_SYMBOL net/9p/9pnet 0xcc2b07f4 p9_client_create -EXPORT_SYMBOL net/9p/9pnet 0xd384c683 p9stat_free -EXPORT_SYMBOL net/9p/9pnet 0xddf81b8d p9_client_symlink -EXPORT_SYMBOL net/9p/9pnet 0xe05d5e3e p9_client_setattr -EXPORT_SYMBOL net/9p/9pnet 0xe58a3360 p9_error_init -EXPORT_SYMBOL net/9p/9pnet 0xe6a2829f p9_release_pages -EXPORT_SYMBOL net/9p/9pnet 0xf41459e3 p9_client_clunk -EXPORT_SYMBOL net/9p/9pnet 0xf7dbaeec p9dirent_read -EXPORT_SYMBOL net/9p/9pnet 0xfb2af4bc p9_tag_lookup -EXPORT_SYMBOL net/9p/9pnet 0xfdcb6daf p9_client_disconnect -EXPORT_SYMBOL net/9p/9pnet 0xfe186409 p9stat_read -EXPORT_SYMBOL net/appletalk/appletalk 0x0f44f569 aarp_send_ddp -EXPORT_SYMBOL net/appletalk/appletalk 0x2392c072 atalk_find_dev_addr -EXPORT_SYMBOL net/appletalk/appletalk 0x69d7af08 atrtr_get_dev -EXPORT_SYMBOL net/appletalk/appletalk 0xef962b0b alloc_ltalkdev -EXPORT_SYMBOL net/atm/atm 0x104607fb vcc_release_async -EXPORT_SYMBOL net/atm/atm 0x1ca1973b atm_alloc_charge -EXPORT_SYMBOL net/atm/atm 0x2cc2d52d vcc_hash -EXPORT_SYMBOL net/atm/atm 0x3ffd0aa2 vcc_process_recv_queue -EXPORT_SYMBOL net/atm/atm 0x4443d399 atm_proc_root -EXPORT_SYMBOL net/atm/atm 0x461fa08b atm_init_aal5 -EXPORT_SYMBOL net/atm/atm 0x46b17ab9 vcc_insert_socket -EXPORT_SYMBOL net/atm/atm 0x4a814dfd atm_dev_register -EXPORT_SYMBOL net/atm/atm 0x4bfcc420 atm_charge -EXPORT_SYMBOL net/atm/atm 0x53fc5452 atm_dev_release_vccs -EXPORT_SYMBOL net/atm/atm 0x64d65c8b atm_dev_lookup -EXPORT_SYMBOL net/atm/atm 0x9feaf287 sonet_subtract_stats -EXPORT_SYMBOL net/atm/atm 0xaa024146 sonet_copy_stats -EXPORT_SYMBOL net/atm/atm 0xb73c566f register_atm_ioctl -EXPORT_SYMBOL net/atm/atm 0xb8e64d6f atm_dev_deregister -EXPORT_SYMBOL net/atm/atm 0xcc1d057e atm_dev_signal_change -EXPORT_SYMBOL net/atm/atm 0xd9f0f8f3 deregister_atm_ioctl -EXPORT_SYMBOL net/atm/atm 0xe1ca478a vcc_sklist_lock -EXPORT_SYMBOL net/atm/atm 0xf49bc67a atm_pcr_goal -EXPORT_SYMBOL net/ax25/ax25 0x14cecd59 ax25_display_timer -EXPORT_SYMBOL net/ax25/ax25 0x1e0aeaff ax25_listen_release -EXPORT_SYMBOL net/ax25/ax25 0x242852b9 ax25_uid_policy -EXPORT_SYMBOL net/ax25/ax25 0x2d9d7133 ax25_send_frame -EXPORT_SYMBOL net/ax25/ax25 0x3d725e27 ax25_ip_xmit -EXPORT_SYMBOL net/ax25/ax25 0x4502c65a asc2ax -EXPORT_SYMBOL net/ax25/ax25 0x53dea1ff ax2asc -EXPORT_SYMBOL net/ax25/ax25 0x72fd4c4d ax25_header_ops -EXPORT_SYMBOL net/ax25/ax25 0x77706a29 ax25_listen_register -EXPORT_SYMBOL net/ax25/ax25 0x8ede9e26 ax25_protocol_release -EXPORT_SYMBOL net/ax25/ax25 0xc1444946 ax25cmp -EXPORT_SYMBOL net/ax25/ax25 0xc80cfbaa ax25_find_cb -EXPORT_SYMBOL net/ax25/ax25 0xd43ecbf1 null_ax25_address -EXPORT_SYMBOL net/ax25/ax25 0xee02e420 ax25_findbyuid -EXPORT_SYMBOL net/ax25/ax25 0xf9a059d1 ax25_linkfail_release -EXPORT_SYMBOL net/ax25/ax25 0xfd941e99 ax25_linkfail_register -EXPORT_SYMBOL net/bluetooth/bluetooth 0x009dfaf2 hci_unregister_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0x0124e1db bt_sock_link -EXPORT_SYMBOL net/bluetooth/bluetooth 0x0718b8b7 bt_info -EXPORT_SYMBOL net/bluetooth/bluetooth 0x073ba602 l2cap_is_socket -EXPORT_SYMBOL net/bluetooth/bluetooth 0x0e1c8b85 hci_free_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0x0ed57646 bt_accept_enqueue -EXPORT_SYMBOL net/bluetooth/bluetooth 0x0f3ea523 l2cap_chan_close -EXPORT_SYMBOL net/bluetooth/bluetooth 0x0f67062b __hci_cmd_sync -EXPORT_SYMBOL net/bluetooth/bluetooth 0x103aab9f bt_sock_stream_recvmsg -EXPORT_SYMBOL net/bluetooth/bluetooth 0x11e1c1a3 l2cap_unregister_user -EXPORT_SYMBOL net/bluetooth/bluetooth 0x214e4265 bt_warn -EXPORT_SYMBOL net/bluetooth/bluetooth 0x29c5c762 hci_register_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0x2f249525 hci_register_cb -EXPORT_SYMBOL net/bluetooth/bluetooth 0x38a22cc9 bt_sock_recvmsg -EXPORT_SYMBOL net/bluetooth/bluetooth 0x3ab06790 hci_alloc_dev_priv -EXPORT_SYMBOL net/bluetooth/bluetooth 0x3b2e2b76 bt_procfs_init -EXPORT_SYMBOL net/bluetooth/bluetooth 0x5786c63a hci_release_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0x58528948 bt_sock_wait_state -EXPORT_SYMBOL net/bluetooth/bluetooth 0x6125c908 bt_accept_unlink -EXPORT_SYMBOL net/bluetooth/bluetooth 0x6467e510 l2cap_conn_put -EXPORT_SYMBOL net/bluetooth/bluetooth 0x653fd953 hci_set_fw_info -EXPORT_SYMBOL net/bluetooth/bluetooth 0x6f090e4d hci_conn_check_secure -EXPORT_SYMBOL net/bluetooth/bluetooth 0x7046f911 hci_unregister_cb -EXPORT_SYMBOL net/bluetooth/bluetooth 0x708f9f24 hci_conn_switch_role -EXPORT_SYMBOL net/bluetooth/bluetooth 0x7aad008b bt_to_errno -EXPORT_SYMBOL net/bluetooth/bluetooth 0x7b5ce5c3 baswap -EXPORT_SYMBOL net/bluetooth/bluetooth 0x7b8c32f1 bt_err -EXPORT_SYMBOL net/bluetooth/bluetooth 0x8d30c05e __hci_cmd_send -EXPORT_SYMBOL net/bluetooth/bluetooth 0x8fea24bd bt_sock_unregister -EXPORT_SYMBOL net/bluetooth/bluetooth 0x97eb6c46 bt_sock_unlink -EXPORT_SYMBOL net/bluetooth/bluetooth 0x9e8e26fc hci_suspend_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0xa29af8da hci_reset_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0xb4e44928 l2cap_register_user -EXPORT_SYMBOL net/bluetooth/bluetooth 0xb62c80c0 hci_cmd_sync -EXPORT_SYMBOL net/bluetooth/bluetooth 0xc0967ebe bt_sock_poll -EXPORT_SYMBOL net/bluetooth/bluetooth 0xc0ac12f2 bt_accept_dequeue -EXPORT_SYMBOL net/bluetooth/bluetooth 0xc37436dd hci_conn_security -EXPORT_SYMBOL net/bluetooth/bluetooth 0xc82e1ce8 bt_sock_ioctl -EXPORT_SYMBOL net/bluetooth/bluetooth 0xcc01f37e hci_recv_frame -EXPORT_SYMBOL net/bluetooth/bluetooth 0xd7613212 bt_err_ratelimited -EXPORT_SYMBOL net/bluetooth/bluetooth 0xdaf5c6f4 hci_resume_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0xddacccf6 bt_warn_ratelimited -EXPORT_SYMBOL net/bluetooth/bluetooth 0xde199693 __hci_cmd_sync_ev -EXPORT_SYMBOL net/bluetooth/bluetooth 0xe1696820 l2cap_conn_get -EXPORT_SYMBOL net/bluetooth/bluetooth 0xe2291490 hci_mgmt_chan_register -EXPORT_SYMBOL net/bluetooth/bluetooth 0xe3147448 hci_get_route -EXPORT_SYMBOL net/bluetooth/bluetooth 0xe33c0633 hci_recv_diag -EXPORT_SYMBOL net/bluetooth/bluetooth 0xe834c300 hci_mgmt_chan_unregister -EXPORT_SYMBOL net/bluetooth/bluetooth 0xec9b7067 bt_sock_register -EXPORT_SYMBOL net/bluetooth/bluetooth 0xef475c8a bt_procfs_cleanup -EXPORT_SYMBOL net/bluetooth/bluetooth 0xf2a48f23 bt_sock_wait_ready -EXPORT_SYMBOL net/bluetooth/bluetooth 0xf3956f06 bt_sock_reclassify_lock -EXPORT_SYMBOL net/bluetooth/bluetooth 0xf7290ff1 hci_set_hw_info -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x0278f7ef ebt_register_template -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x4f29c915 ebt_unregister_table_pre_exit -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x4fa906e1 ebt_do_table -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x51fb3418 ebt_register_table -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x7a5a4031 ebt_unregister_template -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xee3f1c1c ebt_unregister_table -EXPORT_SYMBOL net/caif/caif 0x0e5d5590 caif_connect_client -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 0x3c1e19dc caif_enroll_dev -EXPORT_SYMBOL net/caif/caif 0x3fa84493 cfpkt_add_head -EXPORT_SYMBOL net/caif/caif 0x40babbe0 cfpkt_extr_head -EXPORT_SYMBOL net/caif/caif 0x45a891f6 caif_disconnect_client -EXPORT_SYMBOL net/caif/caif 0x4a237e57 cfpkt_tonative -EXPORT_SYMBOL net/caif/caif 0x59c62a4c cfcnfg_add_phy_layer -EXPORT_SYMBOL net/caif/caif 0x839ddb7b cfcnfg_set_phy_state -EXPORT_SYMBOL net/caif/caif 0x9e3e305d cfpkt_set_prio -EXPORT_SYMBOL net/caif/caif 0xb7b6874e caif_free_client -EXPORT_SYMBOL net/caif/caif 0xbc2c75fe get_cfcnfg -EXPORT_SYMBOL net/can/can 0x5c56c7eb can_rx_unregister -EXPORT_SYMBOL net/can/can 0x8fb1e584 can_proto_unregister -EXPORT_SYMBOL net/can/can 0xaa56e0ef can_send -EXPORT_SYMBOL net/can/can 0xbb36aa0b can_sock_destruct -EXPORT_SYMBOL net/can/can 0xc8c1a43d can_rx_register -EXPORT_SYMBOL net/can/can 0xfb8936c3 can_proto_register -EXPORT_SYMBOL net/ceph/libceph 0x02511de7 ceph_auth_invalidate_authorizer -EXPORT_SYMBOL net/ceph/libceph 0x02626721 ceph_put_page_vector -EXPORT_SYMBOL net/ceph/libceph 0x0516657d ceph_wait_for_latest_osdmap -EXPORT_SYMBOL net/ceph/libceph 0x0cc2aaf5 osd_req_op_extent_osd_data -EXPORT_SYMBOL net/ceph/libceph 0x0eb171ce ceph_monc_open_session -EXPORT_SYMBOL net/ceph/libceph 0x0fc892ec ceph_auth_handle_svc_reply_done -EXPORT_SYMBOL net/ceph/libceph 0x10c8f3f6 ceph_cls_assert_locked -EXPORT_SYMBOL net/ceph/libceph 0x11984fde ceph_reset_client_addr -EXPORT_SYMBOL net/ceph/libceph 0x11992b13 ceph_monc_validate_auth -EXPORT_SYMBOL net/ceph/libceph 0x165b1948 ceph_pagelist_free_reserve -EXPORT_SYMBOL net/ceph/libceph 0x18e2a660 osd_req_op_extent_init -EXPORT_SYMBOL net/ceph/libceph 0x1929ab7b ceph_osdc_list_watchers -EXPORT_SYMBOL net/ceph/libceph 0x1cf4de76 osd_req_op_raw_data_in_pages -EXPORT_SYMBOL net/ceph/libceph 0x1e44285c ceph_msg_data_add_bio -EXPORT_SYMBOL net/ceph/libceph 0x207f1047 ceph_osdc_watch -EXPORT_SYMBOL net/ceph/libceph 0x2087719e ceph_oid_copy -EXPORT_SYMBOL net/ceph/libceph 0x2101cbc9 ceph_oid_destroy -EXPORT_SYMBOL net/ceph/libceph 0x22d7d34f ceph_msg_put -EXPORT_SYMBOL net/ceph/libceph 0x266494ea ceph_osdc_maybe_request_map -EXPORT_SYMBOL net/ceph/libceph 0x289c6159 ceph_msg_data_add_bvecs -EXPORT_SYMBOL net/ceph/libceph 0x295ee373 ceph_osdc_cancel_request -EXPORT_SYMBOL net/ceph/libceph 0x29b7a7fd ceph_copy_from_page_vector -EXPORT_SYMBOL net/ceph/libceph 0x2a983d26 ceph_pagelist_release -EXPORT_SYMBOL net/ceph/libceph 0x2cf62af3 ceph_cls_lock -EXPORT_SYMBOL net/ceph/libceph 0x2e5c1673 osd_req_op_cls_init -EXPORT_SYMBOL net/ceph/libceph 0x2ed51e42 ceph_monc_renew_subs -EXPORT_SYMBOL net/ceph/libceph 0x30bed250 ceph_create_client -EXPORT_SYMBOL net/ceph/libceph 0x3742c688 ceph_release_page_vector -EXPORT_SYMBOL net/ceph/libceph 0x37b0c59c ceph_pg_poolid_by_name -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 0x3ee33bb6 ceph_monc_do_statfs -EXPORT_SYMBOL net/ceph/libceph 0x3f1a8d0c ceph_auth_verify_authorizer_reply -EXPORT_SYMBOL net/ceph/libceph 0x3f5f5ff3 ceph_osdc_unwatch -EXPORT_SYMBOL net/ceph/libceph 0x3fa8e33d ceph_client_addr -EXPORT_SYMBOL net/ceph/libceph 0x3fcabad5 ceph_parse_param -EXPORT_SYMBOL net/ceph/libceph 0x404216f5 ceph_open_session -EXPORT_SYMBOL net/ceph/libceph 0x417a9131 ceph_oloc_destroy -EXPORT_SYMBOL net/ceph/libceph 0x448403bc ceph_monc_got_map -EXPORT_SYMBOL net/ceph/libceph 0x44dd8e5b ceph_osdc_notify_ack -EXPORT_SYMBOL net/ceph/libceph 0x466b85b8 libceph_compatible -EXPORT_SYMBOL net/ceph/libceph 0x47142c24 ceph_object_locator_to_pg -EXPORT_SYMBOL net/ceph/libceph 0x4bcef108 ceph_compare_options -EXPORT_SYMBOL net/ceph/libceph 0x4ca9a6f6 osd_req_op_extent_osd_data_bvec_pos -EXPORT_SYMBOL net/ceph/libceph 0x50603ce3 ceph_decode_entity_addrvec -EXPORT_SYMBOL net/ceph/libceph 0x5394c89f osd_req_op_alloc_hint_init -EXPORT_SYMBOL net/ceph/libceph 0x54bf307b osd_req_op_init -EXPORT_SYMBOL net/ceph/libceph 0x558ab77c ceph_con_open -EXPORT_SYMBOL net/ceph/libceph 0x5663f579 ceph_parse_mon_ips -EXPORT_SYMBOL net/ceph/libceph 0x57baf885 ceph_str_hash -EXPORT_SYMBOL net/ceph/libceph 0x5aeeee62 ceph_oid_aprintf -EXPORT_SYMBOL net/ceph/libceph 0x5d3c79e4 ceph_monc_want_map -EXPORT_SYMBOL net/ceph/libceph 0x5fff0965 ceph_auth_handle_svc_reply_more -EXPORT_SYMBOL net/ceph/libceph 0x605a9dfb osd_req_op_extent_osd_data_pages -EXPORT_SYMBOL net/ceph/libceph 0x6179e620 ceph_osdc_sync -EXPORT_SYMBOL net/ceph/libceph 0x61f70b46 ceph_pg_to_acting_primary -EXPORT_SYMBOL net/ceph/libceph 0x63758856 ceph_str_hash_name -EXPORT_SYMBOL net/ceph/libceph 0x662b38ce ceph_osdc_copy_from -EXPORT_SYMBOL net/ceph/libceph 0x6a169499 ceph_msg_new2 -EXPORT_SYMBOL net/ceph/libceph 0x6a7a38a0 ceph_pr_addr -EXPORT_SYMBOL net/ceph/libceph 0x7026f4ac ceph_cls_break_lock -EXPORT_SYMBOL net/ceph/libceph 0x7e5fb3f8 ceph_osdc_put_request -EXPORT_SYMBOL net/ceph/libceph 0x7f02736c osd_req_op_extent_dup_last -EXPORT_SYMBOL net/ceph/libceph 0x7fe42b7e ceph_destroy_client -EXPORT_SYMBOL net/ceph/libceph 0x8103ad9e ceph_monc_wait_osdmap -EXPORT_SYMBOL net/ceph/libceph 0x813286c5 osd_req_op_cls_response_data_pages -EXPORT_SYMBOL net/ceph/libceph 0x86fca7e4 ceph_put_snap_context -EXPORT_SYMBOL net/ceph/libceph 0x97e0be1d osd_req_op_extent_osd_data_bio -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 0x9beb10e7 osd_req_op_xattr_init -EXPORT_SYMBOL net/ceph/libceph 0x9ca95932 ceph_create_snap_context -EXPORT_SYMBOL net/ceph/libceph 0x9e5b488e ceph_con_keepalive -EXPORT_SYMBOL net/ceph/libceph 0x9fbba67f ceph_buffer_new -EXPORT_SYMBOL net/ceph/libceph 0x9fd005a5 ceph_osdc_alloc_request -EXPORT_SYMBOL net/ceph/libceph 0x9fefa3cb ceph_calc_file_object_mapping -EXPORT_SYMBOL net/ceph/libceph 0xa010f2d7 ceph_auth_get_authorizer -EXPORT_SYMBOL net/ceph/libceph 0xa13c5591 ceph_cls_unlock -EXPORT_SYMBOL net/ceph/libceph 0xa4e13aad ceph_monc_get_version -EXPORT_SYMBOL net/ceph/libceph 0xa59d4f9c osd_req_op_extent_osd_data_bvecs -EXPORT_SYMBOL net/ceph/libceph 0xa698f998 ceph_free_lockers -EXPORT_SYMBOL net/ceph/libceph 0xa6c185ff ceph_msg_data_add_pages -EXPORT_SYMBOL net/ceph/libceph 0xab20ecac ceph_osdc_alloc_messages -EXPORT_SYMBOL net/ceph/libceph 0xad703657 ceph_auth_destroy_authorizer -EXPORT_SYMBOL net/ceph/libceph 0xafb8a407 ceph_msgr_flush -EXPORT_SYMBOL net/ceph/libceph 0xb34ed355 ceph_copy_to_page_vector -EXPORT_SYMBOL net/ceph/libceph 0xb3f18074 ceph_monc_blocklist_add -EXPORT_SYMBOL net/ceph/libceph 0xb42bfda5 ceph_osdc_flush_notifies -EXPORT_SYMBOL net/ceph/libceph 0xb54676fa ceph_msg_type_name -EXPORT_SYMBOL net/ceph/libceph 0xb6b4250f ceph_print_client_options -EXPORT_SYMBOL net/ceph/libceph 0xb72c162e ceph_buffer_release -EXPORT_SYMBOL net/ceph/libceph 0xb7900c41 ceph_con_close -EXPORT_SYMBOL net/ceph/libceph 0xb7c01ed8 ceph_msg_data_add_pagelist -EXPORT_SYMBOL net/ceph/libceph 0xb9631e83 ceph_monc_get_version_async -EXPORT_SYMBOL net/ceph/libceph 0xbab248a6 ceph_zero_page_vector_range -EXPORT_SYMBOL net/ceph/libceph 0xbbfc069c ceph_pg_pool_flags -EXPORT_SYMBOL net/ceph/libceph 0xbd2f79ae ceph_oloc_copy -EXPORT_SYMBOL net/ceph/libceph 0xbdedaefd ceph_osdc_start_request -EXPORT_SYMBOL net/ceph/libceph 0xbe3879aa ceph_get_snap_context -EXPORT_SYMBOL net/ceph/libceph 0xbf2a05eb ceph_osdc_clear_abort_err -EXPORT_SYMBOL net/ceph/libceph 0xc2590c7b __ceph_open_session -EXPORT_SYMBOL net/ceph/libceph 0xc366bfa1 ceph_pagelist_truncate -EXPORT_SYMBOL net/ceph/libceph 0xc40521be ceph_check_fsid -EXPORT_SYMBOL net/ceph/libceph 0xc4138d7b ceph_osdc_wait_request -EXPORT_SYMBOL net/ceph/libceph 0xc47e2c3f ceph_con_send -EXPORT_SYMBOL net/ceph/libceph 0xc4b7020f ceph_auth_handle_bad_authorizer -EXPORT_SYMBOL net/ceph/libceph 0xc54e398e ceph_msg_get -EXPORT_SYMBOL net/ceph/libceph 0xc6125661 ceph_pg_pool_name_by_id -EXPORT_SYMBOL net/ceph/libceph 0xc61270bd ceph_osdc_abort_requests -EXPORT_SYMBOL net/ceph/libceph 0xca7d4ec9 osd_req_op_cls_request_data_bvecs -EXPORT_SYMBOL net/ceph/libceph 0xca80437b ceph_extent_to_file -EXPORT_SYMBOL net/ceph/libceph 0xcc8c3867 ceph_con_init -EXPORT_SYMBOL net/ceph/libceph 0xcf4cce02 osd_req_op_extent_update -EXPORT_SYMBOL net/ceph/libceph 0xcf4e9ffb __ceph_auth_get_authorizer -EXPORT_SYMBOL net/ceph/libceph 0xd15ec733 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 0xda14045e ceph_alloc_page_vector -EXPORT_SYMBOL net/ceph/libceph 0xdf391f30 ceph_osdc_call -EXPORT_SYMBOL net/ceph/libceph 0xdf399a7b ceph_copy_user_to_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 0xe4dde4c8 ceph_client_gid -EXPORT_SYMBOL net/ceph/libceph 0xe5c19223 osd_req_op_cls_request_data_pagelist -EXPORT_SYMBOL net/ceph/libceph 0xe70bea58 ceph_osdc_update_epoch_barrier -EXPORT_SYMBOL net/ceph/libceph 0xe76e7226 ceph_pagelist_alloc -EXPORT_SYMBOL net/ceph/libceph 0xe883a9ac osd_req_op_cls_request_data_pages -EXPORT_SYMBOL net/ceph/libceph 0xe8c12017 ceph_monc_init -EXPORT_SYMBOL net/ceph/libceph 0xe8f9bed3 ceph_cls_set_cookie -EXPORT_SYMBOL net/ceph/libceph 0xea00ce05 ceph_auth_add_authorizer_challenge -EXPORT_SYMBOL net/ceph/libceph 0xeb5fd7c6 ceph_auth_is_authenticated -EXPORT_SYMBOL net/ceph/libceph 0xeb82d122 ceph_osdc_notify -EXPORT_SYMBOL net/ceph/libceph 0xee120c03 ceph_release_string -EXPORT_SYMBOL net/ceph/libceph 0xeef6cfa3 ceph_iterate_extents -EXPORT_SYMBOL net/ceph/libceph 0xef54ab58 ceph_osdc_new_request -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 0xf0ba29c2 ceph_monc_stop -EXPORT_SYMBOL net/ceph/libceph 0xf254297e ceph_addr_is_blank -EXPORT_SYMBOL net/ceph/libceph 0xf5c54932 ceph_osdc_get_request -EXPORT_SYMBOL net/ceph/libceph 0xfb2c56c0 ceph_cls_lock_info -EXPORT_SYMBOL net/ceph/libceph 0xfc3d61a4 osd_req_op_extent_osd_data_pagelist -EXPORT_SYMBOL net/ceph/libceph 0xfd417776 ceph_msg_dump -EXPORT_SYMBOL net/dccp/dccp_ipv4 0x74514ec9 dccp_syn_ack_timeout -EXPORT_SYMBOL net/dccp/dccp_ipv4 0xb276424a dccp_req_err -EXPORT_SYMBOL net/hsr/hsr 0x0bf6d178 is_hsr_master -EXPORT_SYMBOL net/hsr/hsr 0xac73bd0c hsr_get_version -EXPORT_SYMBOL net/ieee802154/ieee802154 0x1edd82fc wpan_phy_new -EXPORT_SYMBOL net/ieee802154/ieee802154 0x1f1bafad wpan_phy_free -EXPORT_SYMBOL net/ieee802154/ieee802154 0x63463460 wpan_phy_for_each -EXPORT_SYMBOL net/ieee802154/ieee802154 0x839ce33c wpan_phy_register -EXPORT_SYMBOL net/ieee802154/ieee802154 0x9eeae250 wpan_phy_find -EXPORT_SYMBOL net/ieee802154/ieee802154 0xaf44ba23 wpan_phy_unregister -EXPORT_SYMBOL net/ipv4/fou 0x0f0bb28d __gue_build_header -EXPORT_SYMBOL net/ipv4/fou 0x1757d1a4 fou_encap_hlen -EXPORT_SYMBOL net/ipv4/fou 0x6dbab455 __fou_build_header -EXPORT_SYMBOL net/ipv4/fou 0xf13914b3 gue_encap_hlen -EXPORT_SYMBOL net/ipv4/gre 0xbd4f277e gre_parse_header -EXPORT_SYMBOL net/ipv4/ip_tunnel 0x08a0e0f0 ip_tunnel_encap_del_ops -EXPORT_SYMBOL net/ipv4/ip_tunnel 0x144b48ff ip_tunnel_encap_add_ops -EXPORT_SYMBOL net/ipv4/ip_tunnel 0x80e814c1 ip_tunnel_get_iflink -EXPORT_SYMBOL net/ipv4/ip_tunnel 0xebef539e ip_tunnel_get_link_net -EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x19ee8748 arpt_unregister_table_pre_exit -EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x709c6ec4 arpt_do_table -EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x9173fca2 arpt_register_table -EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0xf098147e arpt_unregister_table -EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x2752daae ipt_register_table -EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x44be3d13 ipt_unregister_table_pre_exit -EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x6fe0bb33 ipt_do_table -EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0xf8a09432 ipt_unregister_table_exit -EXPORT_SYMBOL net/ipv4/tunnel4 0x33e39e99 xfrm4_tunnel_register -EXPORT_SYMBOL net/ipv4/tunnel4 0xc236bd01 xfrm4_tunnel_deregister -EXPORT_SYMBOL net/ipv4/udp_tunnel 0x66fa16a9 udp_sock_create4 -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x08f415b5 ip6_tnl_parse_tlv_enc_lim -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x37b29509 ip6_tnl_xmit -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x6b58946a ip6_tnl_rcv -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x8023e9cd ip6_tnl_change_mtu -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x94e19a43 ip6_tnl_encap_add_ops -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xee51575e ip6_tnl_encap_del_ops -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xeff241a5 ip6_tnl_get_link_net -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xf0159fd3 ip6_tnl_get_iflink -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xf0294c8a ip6_tnl_get_cap -EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x6af4baf8 ip6t_register_table -EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0xd42d0d12 ip6t_unregister_table_pre_exit -EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0xf2c65701 ip6t_do_table -EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0xf3ef920f ip6t_unregister_table_exit -EXPORT_SYMBOL net/ipv6/tunnel6 0xa01de776 xfrm6_tunnel_deregister -EXPORT_SYMBOL net/ipv6/tunnel6 0xa1eb85c6 xfrm6_tunnel_register -EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0x1d150ed9 xfrm6_tunnel_alloc_spi -EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0x6cfba13f xfrm6_tunnel_spi_lookup -EXPORT_SYMBOL net/lapb/lapb 0x34f3d7e3 lapb_register -EXPORT_SYMBOL net/lapb/lapb 0x40423001 lapb_data_request -EXPORT_SYMBOL net/lapb/lapb 0x7497719b lapb_disconnect_request -EXPORT_SYMBOL net/lapb/lapb 0xa3cc2beb lapb_getparms -EXPORT_SYMBOL net/lapb/lapb 0xbf87fce6 lapb_setparms -EXPORT_SYMBOL net/lapb/lapb 0xdf31e770 lapb_data_received -EXPORT_SYMBOL net/lapb/lapb 0xf49ef284 lapb_connect_request -EXPORT_SYMBOL net/lapb/lapb 0xf5ed45a6 lapb_unregister -EXPORT_SYMBOL net/llc/llc 0x14db56d0 llc_sap_close -EXPORT_SYMBOL net/llc/llc 0x2a035e17 llc_sap_find -EXPORT_SYMBOL net/llc/llc 0x378018fd llc_build_and_send_ui_pkt -EXPORT_SYMBOL net/llc/llc 0x38b92846 llc_remove_pack -EXPORT_SYMBOL net/llc/llc 0x52d7b2fd llc_sap_list -EXPORT_SYMBOL net/llc/llc 0x627bb0f7 llc_set_station_handler -EXPORT_SYMBOL net/llc/llc 0x93812aa2 llc_add_pack -EXPORT_SYMBOL net/llc/llc 0x99185b08 llc_sap_open -EXPORT_SYMBOL net/llc/llc 0xb1745818 llc_mac_hdr_init -EXPORT_SYMBOL net/mac80211/mac80211 0x00200079 __ieee80211_get_tx_led_name -EXPORT_SYMBOL net/mac80211/mac80211 0x02ff50b3 ieee80211_txq_airtime_check -EXPORT_SYMBOL net/mac80211/mac80211 0x0323705b ieee80211_ap_probereq_get -EXPORT_SYMBOL net/mac80211/mac80211 0x034f9534 ieee80211_get_tx_rates -EXPORT_SYMBOL net/mac80211/mac80211 0x04605bb1 ieee80211_tx_rate_update -EXPORT_SYMBOL net/mac80211/mac80211 0x04e25123 ieee80211_iter_keys_rcu -EXPORT_SYMBOL net/mac80211/mac80211 0x0512d78e ieee80211_sta_set_buffered -EXPORT_SYMBOL net/mac80211/mac80211 0x063f5308 ieee80211_get_tkip_p1k_iv -EXPORT_SYMBOL net/mac80211/mac80211 0x08f3ee07 ieee80211_reserve_tid -EXPORT_SYMBOL net/mac80211/mac80211 0x0ea09afc wiphy_to_ieee80211_hw -EXPORT_SYMBOL net/mac80211/mac80211 0x15084497 ieee80211_rate_control_unregister -EXPORT_SYMBOL net/mac80211/mac80211 0x17d39b51 ieee80211_queue_delayed_work -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 0x1a204654 ieee80211_beacon_set_cntdwn -EXPORT_SYMBOL net/mac80211/mac80211 0x1a66fc17 ieee80211_get_tkip_rx_p1k -EXPORT_SYMBOL net/mac80211/mac80211 0x1ac88ddb ieee80211_tx_dequeue -EXPORT_SYMBOL net/mac80211/mac80211 0x1f7d28e6 ieee80211_rts_duration -EXPORT_SYMBOL net/mac80211/mac80211 0x29f975ef ieee80211_start_tx_ba_session -EXPORT_SYMBOL net/mac80211/mac80211 0x2a4ccf11 ieee80211_sta_block_awake -EXPORT_SYMBOL net/mac80211/mac80211 0x2b9d939c ieee80211_nullfunc_get -EXPORT_SYMBOL net/mac80211/mac80211 0x2e7cdb0f __ieee80211_get_radio_led_name -EXPORT_SYMBOL net/mac80211/mac80211 0x2e9dcbdf ieee80211_beacon_update_cntdwn -EXPORT_SYMBOL net/mac80211/mac80211 0x2eadc653 ieee80211_sched_scan_results -EXPORT_SYMBOL net/mac80211/mac80211 0x312bd51e ieee80211_beacon_get_tim -EXPORT_SYMBOL net/mac80211/mac80211 0x3366db30 ieee80211_rate_control_register -EXPORT_SYMBOL net/mac80211/mac80211 0x35b60a89 ieee80211_chswitch_done -EXPORT_SYMBOL net/mac80211/mac80211 0x3730b966 ieee80211_rx_list -EXPORT_SYMBOL net/mac80211/mac80211 0x380ec75d ieee80211_stop_queues -EXPORT_SYMBOL net/mac80211/mac80211 0x3b0fa97a ieee80211_schedule_txq -EXPORT_SYMBOL net/mac80211/mac80211 0x3e91a955 ieee80211_find_sta -EXPORT_SYMBOL net/mac80211/mac80211 0x4131f1d1 ieee80211_get_fils_discovery_tmpl -EXPORT_SYMBOL net/mac80211/mac80211 0x435be336 ieee80211_radar_detected -EXPORT_SYMBOL net/mac80211/mac80211 0x44a7dcf5 ieee80211_disable_rssi_reports -EXPORT_SYMBOL net/mac80211/mac80211 0x49e11556 __ieee80211_create_tpt_led_trigger -EXPORT_SYMBOL net/mac80211/mac80211 0x4b215150 ieee80211_next_txq -EXPORT_SYMBOL net/mac80211/mac80211 0x4c3f05d8 ieee80211_stop_tx_ba_cb_irqsafe -EXPORT_SYMBOL net/mac80211/mac80211 0x53b226ff ieee80211_queue_stopped -EXPORT_SYMBOL net/mac80211/mac80211 0x586db7f7 ieee80211_tdls_oper_request -EXPORT_SYMBOL net/mac80211/mac80211 0x58e8bc0e ieee80211_ctstoself_duration -EXPORT_SYMBOL net/mac80211/mac80211 0x591a14df ieee80211_rx_napi -EXPORT_SYMBOL net/mac80211/mac80211 0x5a750de1 ieee80211_unregister_hw -EXPORT_SYMBOL net/mac80211/mac80211 0x5af5c45e ieee80211_rx_irqsafe -EXPORT_SYMBOL net/mac80211/mac80211 0x5b32ff93 ieee80211_sta_ps_transition -EXPORT_SYMBOL net/mac80211/mac80211 0x5e0f8590 ieee80211_report_wowlan_wakeup -EXPORT_SYMBOL net/mac80211/mac80211 0x60550204 ieee80211_tx_prepare_skb -EXPORT_SYMBOL net/mac80211/mac80211 0x72c31951 ieee80211_rts_get -EXPORT_SYMBOL net/mac80211/mac80211 0x75eb3982 ieee80211_nan_func_match -EXPORT_SYMBOL net/mac80211/mac80211 0x77985574 ieee80211_unreserve_tid -EXPORT_SYMBOL net/mac80211/mac80211 0x7c49987b ieee80211_get_unsol_bcast_probe_resp_tmpl -EXPORT_SYMBOL net/mac80211/mac80211 0x812adbd7 ieee80211_sta_eosp -EXPORT_SYMBOL net/mac80211/mac80211 0x849c258a ieee80211_free_hw -EXPORT_SYMBOL net/mac80211/mac80211 0x8aade305 ieee80211_stop_rx_ba_session -EXPORT_SYMBOL net/mac80211/mac80211 0x90314c44 ieee80211_free_txskb -EXPORT_SYMBOL net/mac80211/mac80211 0x91b0bd89 ieee80211_rx_ba_timer_expired -EXPORT_SYMBOL net/mac80211/mac80211 0x9205ffe3 ieee80211_get_tkip_p2k -EXPORT_SYMBOL net/mac80211/mac80211 0x96823d97 ieee80211_return_txq -EXPORT_SYMBOL net/mac80211/mac80211 0x990e8f93 ieee80211_iter_keys -EXPORT_SYMBOL net/mac80211/mac80211 0x991a0ca0 ieee80211_parse_p2p_noa -EXPORT_SYMBOL net/mac80211/mac80211 0x99ff853f ieee80211_beacon_loss -EXPORT_SYMBOL net/mac80211/mac80211 0x9d6652c2 ieee80211_txq_may_transmit -EXPORT_SYMBOL net/mac80211/mac80211 0xa0aacd07 ieee80211_cqm_beacon_loss_notify -EXPORT_SYMBOL net/mac80211/mac80211 0xae66179c ieee80211_send_bar -EXPORT_SYMBOL net/mac80211/mac80211 0xae8d945b ieee80211_send_eosp_nullfunc -EXPORT_SYMBOL net/mac80211/mac80211 0xb06cdf6d ieee80211_manage_rx_ba_offl -EXPORT_SYMBOL net/mac80211/mac80211 0xb095327f ieee80211_txq_schedule_start -EXPORT_SYMBOL net/mac80211/mac80211 0xb17ee36c ieee80211_alloc_hw_nm -EXPORT_SYMBOL net/mac80211/mac80211 0xb1df3bfb ieee80211_stop_queue -EXPORT_SYMBOL net/mac80211/mac80211 0xb2263937 ieee80211_scan_completed -EXPORT_SYMBOL net/mac80211/mac80211 0xb3e4fbfc ieee80211_beacon_get_template -EXPORT_SYMBOL net/mac80211/mac80211 0xbaa5cfac ieee80211_restart_hw -EXPORT_SYMBOL net/mac80211/mac80211 0xbd33e303 ieee80211_cqm_rssi_notify -EXPORT_SYMBOL net/mac80211/mac80211 0xbf1d8117 ieee80211_generic_frame_duration -EXPORT_SYMBOL net/mac80211/mac80211 0xc140ee1c ieee80211_get_buffered_bc -EXPORT_SYMBOL net/mac80211/mac80211 0xc1cdfc24 rate_control_set_rates -EXPORT_SYMBOL net/mac80211/mac80211 0xc21ff8d3 ieee80211_sta_register_airtime -EXPORT_SYMBOL net/mac80211/mac80211 0xc2d11e81 ieee80211_wake_queue -EXPORT_SYMBOL net/mac80211/mac80211 0xc3768b63 ieee80211_report_low_ack -EXPORT_SYMBOL net/mac80211/mac80211 0xc56ba056 ieee80211_register_hw -EXPORT_SYMBOL net/mac80211/mac80211 0xca3a1b61 ieee80211_connection_loss -EXPORT_SYMBOL net/mac80211/mac80211 0xcb018d8c ieee80211_csa_finish -EXPORT_SYMBOL net/mac80211/mac80211 0xcba0fcd1 ieee80211_queue_work -EXPORT_SYMBOL net/mac80211/mac80211 0xce133545 ieee80211_stop_tx_ba_session -EXPORT_SYMBOL net/mac80211/mac80211 0xd1552601 ieee80211_proberesp_get -EXPORT_SYMBOL net/mac80211/mac80211 0xd37ab85d __ieee80211_get_assoc_led_name -EXPORT_SYMBOL net/mac80211/mac80211 0xd3999816 ieee80211_disconnect -EXPORT_SYMBOL net/mac80211/mac80211 0xd73fe7bf ieee80211_tx_status -EXPORT_SYMBOL net/mac80211/mac80211 0xd80299e6 ieee80211_txq_get_depth -EXPORT_SYMBOL net/mac80211/mac80211 0xdbc0f31f ieee80211_pspoll_get -EXPORT_SYMBOL net/mac80211/mac80211 0xdd8ef4a6 __ieee80211_get_rx_led_name -EXPORT_SYMBOL net/mac80211/mac80211 0xdea87020 ieee80211_ctstoself_get -EXPORT_SYMBOL net/mac80211/mac80211 0xdede0597 ieee80211_start_tx_ba_cb_irqsafe -EXPORT_SYMBOL net/mac80211/mac80211 0xe0b220fd ieee80211_tx_status_ext -EXPORT_SYMBOL net/mac80211/mac80211 0xe5752af3 ieee80211_get_bssid -EXPORT_SYMBOL net/mac80211/mac80211 0xe8b20fc9 ieee80211_sta_pspoll -EXPORT_SYMBOL net/mac80211/mac80211 0xeb3974b4 ieee80211_sta_uapsd_trigger -EXPORT_SYMBOL net/mac80211/mac80211 0xec7867ac ieee80211_sched_scan_stopped -EXPORT_SYMBOL net/mac80211/mac80211 0xefa4046b ieee80211_beacon_cntdwn_is_complete -EXPORT_SYMBOL net/mac80211/mac80211 0xf047192b ieee80211_mark_rx_ba_filtered_frames -EXPORT_SYMBOL net/mac80211/mac80211 0xf43a6bc0 ieee80211_tx_status_8023 -EXPORT_SYMBOL net/mac80211/mac80211 0xfc68aa28 ieee80211_probereq_get -EXPORT_SYMBOL net/mac80211/mac80211 0xfc8f9ba9 ieee80211_wake_queues -EXPORT_SYMBOL net/mac80211/mac80211 0xfd1316c0 ieee80211_enable_rssi_reports -EXPORT_SYMBOL net/mac80211/mac80211 0xfe5b2169 ieee80211_tx_status_irqsafe -EXPORT_SYMBOL net/mac80211/mac80211 0xfe9140dd ieee80211_nan_func_terminated -EXPORT_SYMBOL net/mac802154/mac802154 0x1771a144 ieee802154_wake_queue -EXPORT_SYMBOL net/mac802154/mac802154 0x30ba5ed2 ieee802154_xmit_complete -EXPORT_SYMBOL net/mac802154/mac802154 0x473c9e7e ieee802154_rx_irqsafe -EXPORT_SYMBOL net/mac802154/mac802154 0x4ffe2f8d ieee802154_register_hw -EXPORT_SYMBOL net/mac802154/mac802154 0x889892ed ieee802154_stop_queue -EXPORT_SYMBOL net/mac802154/mac802154 0x9d4f5145 ieee802154_alloc_hw -EXPORT_SYMBOL net/mac802154/mac802154 0xa369a972 ieee802154_free_hw -EXPORT_SYMBOL net/mac802154/mac802154 0xd9c2641d ieee802154_unregister_hw -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x0926de78 ip_vs_proto_data_get -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x0b4ad90c register_ip_vs_app_inc -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x12684f01 ip_vs_conn_put -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x426354dc register_ip_vs_app -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x49171827 ip_vs_tcp_conn_listen -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x5e96f87d ip_vs_new_conn_out -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x71cdfa6a unregister_ip_vs_scheduler -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x802b090d ip_vs_scheduler_err -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x8e56f618 ip_vs_nfct_expect_related -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x9dcc83f4 ip_vs_proto_get -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xa8d83bb4 ip_vs_conn_in_get -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xb4a3214b unregister_ip_vs_app -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xb872d3dc register_ip_vs_scheduler -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xd831a1a2 ip_vs_proto_name -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xec026364 ip_vs_conn_out_get -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xfc71d181 ip_vs_conn_new -EXPORT_SYMBOL net/netfilter/nf_conntrack 0x3b08a8f0 nf_ct_destroy -EXPORT_SYMBOL net/netfilter/nf_conntrack 0xd7109613 nf_ct_ext_add -EXPORT_SYMBOL net/netfilter/nf_conntrack_pptp 0xf2a36612 pptp_msg_name -EXPORT_SYMBOL net/netfilter/nf_nat 0x1503eb0c nf_nat_setup_info -EXPORT_SYMBOL net/netfilter/nf_nat 0x8ddad7be __nf_nat_mangle_tcp_packet -EXPORT_SYMBOL net/netfilter/nf_nat 0xa1dd63cf nf_nat_mangle_udp_packet -EXPORT_SYMBOL net/netfilter/nf_nat 0xd63cb142 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 0x3a5afec5 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 0x4f919150 xt_unregister_target -EXPORT_SYMBOL net/netfilter/x_tables 0x50873741 xt_compat_init_offsets -EXPORT_SYMBOL net/netfilter/x_tables 0x890b6e30 xt_unregister_targets -EXPORT_SYMBOL net/netfilter/x_tables 0x8e40a43c xt_register_matches -EXPORT_SYMBOL net/netfilter/x_tables 0x94414720 xt_find_match -EXPORT_SYMBOL net/netfilter/x_tables 0x977fd4bf xt_alloc_table_info -EXPORT_SYMBOL net/netfilter/x_tables 0xa25fc115 xt_compat_check_entry_offsets -EXPORT_SYMBOL net/netfilter/x_tables 0xa5977de7 xt_register_target -EXPORT_SYMBOL net/netfilter/x_tables 0xb00868f6 xt_unregister_match -EXPORT_SYMBOL net/netfilter/x_tables 0xb07d3ffe xt_unregister_matches -EXPORT_SYMBOL net/netfilter/x_tables 0xcb3e91cc xt_counters_alloc -EXPORT_SYMBOL net/netfilter/x_tables 0xcd721791 xt_register_match -EXPORT_SYMBOL net/netfilter/x_tables 0xd87ae60d xt_check_entry_offsets -EXPORT_SYMBOL net/netfilter/x_tables 0xe204e042 xt_free_table_info -EXPORT_SYMBOL net/netfilter/x_tables 0xfc5ff037 xt_register_targets -EXPORT_SYMBOL net/netfilter/x_tables 0xfef779fa xt_find_jump_offset -EXPORT_SYMBOL net/nfc/hci/hci 0x0c2da3af nfc_hci_disconnect_gate -EXPORT_SYMBOL net/nfc/hci/hci 0x12b11ec7 nfc_hci_allocate_device -EXPORT_SYMBOL net/nfc/hci/hci 0x180eb7c7 nfc_llc_start -EXPORT_SYMBOL net/nfc/hci/hci 0x1db151b5 nfc_hci_send_event -EXPORT_SYMBOL net/nfc/hci/hci 0x47bddb6c nfc_hci_reset_pipes -EXPORT_SYMBOL net/nfc/hci/hci 0x4e6a6534 nfc_hci_send_cmd -EXPORT_SYMBOL net/nfc/hci/hci 0x5ca5050c nfc_hci_unregister_device -EXPORT_SYMBOL net/nfc/hci/hci 0x6101c245 nfc_hci_send_cmd_async -EXPORT_SYMBOL net/nfc/hci/hci 0x671a4bf9 nfc_hci_driver_failure -EXPORT_SYMBOL net/nfc/hci/hci 0x67c6ba03 nfc_hci_connect_gate -EXPORT_SYMBOL net/nfc/hci/hci 0x74fe3670 nfc_hci_result_to_errno -EXPORT_SYMBOL net/nfc/hci/hci 0x7d4704c9 nfc_hci_register_device -EXPORT_SYMBOL net/nfc/hci/hci 0x80635b34 nfc_llc_stop -EXPORT_SYMBOL net/nfc/hci/hci 0x84b3978e nfc_hci_target_discovered -EXPORT_SYMBOL net/nfc/hci/hci 0x89895de0 nfc_hci_get_param -EXPORT_SYMBOL net/nfc/hci/hci 0x974581d9 nfc_hci_set_clientdata -EXPORT_SYMBOL net/nfc/hci/hci 0xb9d8d1bf nfc_hci_disconnect_all_gates -EXPORT_SYMBOL net/nfc/hci/hci 0xbac3d75f nfc_hci_reset_pipes_per_host -EXPORT_SYMBOL net/nfc/hci/hci 0xc0c3b286 nfc_hci_get_clientdata -EXPORT_SYMBOL net/nfc/hci/hci 0xd44ac460 nfc_hci_free_device -EXPORT_SYMBOL net/nfc/hci/hci 0xd5f92abd nfc_hci_set_param -EXPORT_SYMBOL net/nfc/hci/hci 0xdd231c55 nfc_hci_sak_to_protocol -EXPORT_SYMBOL net/nfc/hci/hci 0xe0e12e01 nfc_hci_recv_frame -EXPORT_SYMBOL net/nfc/nci/nci 0x0307802a nci_register_device -EXPORT_SYMBOL net/nfc/nci/nci 0x07202cdb nci_free_device -EXPORT_SYMBOL net/nfc/nci/nci 0x0f508917 nci_nfcee_mode_set -EXPORT_SYMBOL net/nfc/nci/nci 0x1a65b78c nci_core_init -EXPORT_SYMBOL net/nfc/nci/nci 0x1c1f5393 nci_hci_send_cmd -EXPORT_SYMBOL net/nfc/nci/nci 0x30878172 nci_set_config -EXPORT_SYMBOL net/nfc/nci/nci 0x34714b71 nci_core_reset -EXPORT_SYMBOL net/nfc/nci/nci 0x38d3e05a nci_hci_set_param -EXPORT_SYMBOL net/nfc/nci/nci 0x43faf209 nci_prop_cmd -EXPORT_SYMBOL net/nfc/nci/nci 0x4ebc832d nci_nfcc_loopback -EXPORT_SYMBOL net/nfc/nci/nci 0x5b0426ca nci_send_frame -EXPORT_SYMBOL net/nfc/nci/nci 0x6c9bf2ce nci_send_data -EXPORT_SYMBOL net/nfc/nci/nci 0x71eae2fa nci_hci_clear_all_pipes -EXPORT_SYMBOL net/nfc/nci/nci 0x79744530 nci_core_conn_close -EXPORT_SYMBOL net/nfc/nci/nci 0x7c26a212 nci_hci_connect_gate -EXPORT_SYMBOL net/nfc/nci/nci 0x83f3d3d5 nci_hci_send_event -EXPORT_SYMBOL net/nfc/nci/nci 0x8eed2fef nci_nfcee_discover -EXPORT_SYMBOL net/nfc/nci/nci 0xaac6dd3e nci_unregister_device -EXPORT_SYMBOL net/nfc/nci/nci 0xb6ad1e2b nci_recv_frame -EXPORT_SYMBOL net/nfc/nci/nci 0xba490602 nci_to_errno -EXPORT_SYMBOL net/nfc/nci/nci 0xbe1b03d3 nci_hci_get_param -EXPORT_SYMBOL net/nfc/nci/nci 0xc0834644 nci_hci_open_pipe -EXPORT_SYMBOL net/nfc/nci/nci 0xcce58b2a nci_allocate_device -EXPORT_SYMBOL net/nfc/nci/nci 0xd6d634c9 nci_core_cmd -EXPORT_SYMBOL net/nfc/nci/nci 0xdbf7e3a3 nci_req_complete -EXPORT_SYMBOL net/nfc/nci/nci 0xe07b9342 nci_hci_dev_session_init -EXPORT_SYMBOL net/nfc/nci/nci 0xe3cacedc nci_get_conn_info_by_dest_type_params -EXPORT_SYMBOL net/nfc/nci/nci 0xec31064b nci_core_conn_create -EXPORT_SYMBOL net/nfc/nci/nci 0xed1786e5 nci_conn_max_data_pkt_payload_size -EXPORT_SYMBOL net/nfc/nci/nci 0xf5df1879 nci_send_cmd -EXPORT_SYMBOL net/nfc/nfc 0x0bef46af nfc_class -EXPORT_SYMBOL net/nfc/nfc 0x0eeb4525 nfc_allocate_device -EXPORT_SYMBOL net/nfc/nfc 0x0ff6653c nfc_se_transaction -EXPORT_SYMBOL net/nfc/nfc 0x16afd1e8 nfc_tm_data_received -EXPORT_SYMBOL net/nfc/nfc 0x181e2c91 nfc_targets_found -EXPORT_SYMBOL net/nfc/nfc 0x1f4531cf nfc_add_se -EXPORT_SYMBOL net/nfc/nfc 0x2916a5b5 nfc_unregister_device -EXPORT_SYMBOL net/nfc/nfc 0x418c3c56 nfc_vendor_cmd_reply -EXPORT_SYMBOL net/nfc/nfc 0x47670ea1 nfc_alloc_recv_skb -EXPORT_SYMBOL net/nfc/nfc 0x5094855a nfc_register_device -EXPORT_SYMBOL net/nfc/nfc 0x537f2f0f nfc_proto_register -EXPORT_SYMBOL net/nfc/nfc 0x5878daeb nfc_find_se -EXPORT_SYMBOL net/nfc/nfc 0x72c253bc nfc_target_lost -EXPORT_SYMBOL net/nfc/nfc 0x7b571f61 nfc_set_remote_general_bytes -EXPORT_SYMBOL net/nfc/nfc 0x9223f167 nfc_proto_unregister -EXPORT_SYMBOL net/nfc/nfc 0x959119ef nfc_remove_se -EXPORT_SYMBOL net/nfc/nfc 0x9ce04dc3 nfc_send_to_raw_sock -EXPORT_SYMBOL net/nfc/nfc 0xa1af6320 nfc_get_local_general_bytes -EXPORT_SYMBOL net/nfc/nfc 0xbd94e3c0 nfc_driver_failure -EXPORT_SYMBOL net/nfc/nfc 0xcf7e84d3 nfc_fw_download_done -EXPORT_SYMBOL net/nfc/nfc 0xd4b6f9c6 __nfc_alloc_vendor_cmd_reply_skb -EXPORT_SYMBOL net/nfc/nfc 0xd8ac6be6 nfc_se_connectivity -EXPORT_SYMBOL net/nfc/nfc 0xdf6a7329 nfc_tm_activated -EXPORT_SYMBOL net/nfc/nfc 0xebfafdf3 nfc_tm_deactivated -EXPORT_SYMBOL net/nfc/nfc 0xf234a5f1 nfc_dep_link_is_up -EXPORT_SYMBOL net/nfc/nfc_digital 0x399c37d4 nfc_digital_allocate_device -EXPORT_SYMBOL net/nfc/nfc_digital 0x46927c1a nfc_digital_register_device -EXPORT_SYMBOL net/nfc/nfc_digital 0x7454b499 nfc_digital_unregister_device -EXPORT_SYMBOL net/nfc/nfc_digital 0xfc13bc20 nfc_digital_free_device -EXPORT_SYMBOL net/phonet/phonet 0x12ab8c45 pn_skb_send -EXPORT_SYMBOL net/phonet/phonet 0x60f79d46 pn_sock_get_port -EXPORT_SYMBOL net/phonet/phonet 0x9103c406 phonet_stream_ops -EXPORT_SYMBOL net/phonet/phonet 0x98606db7 phonet_proto_register -EXPORT_SYMBOL net/phonet/phonet 0xb0d01f74 pn_sock_unhash -EXPORT_SYMBOL net/phonet/phonet 0xb5549f7a phonet_header_ops -EXPORT_SYMBOL net/phonet/phonet 0xc701a96e phonet_proto_unregister -EXPORT_SYMBOL net/phonet/phonet 0xe819cb54 pn_sock_hash -EXPORT_SYMBOL net/rxrpc/rxrpc 0x1d3056fb rxrpc_kernel_begin_call -EXPORT_SYMBOL net/rxrpc/rxrpc 0x31bf3ca3 rxrpc_debug_id -EXPORT_SYMBOL net/rxrpc/rxrpc 0x416aa74f rxrpc_kernel_end_call -EXPORT_SYMBOL net/rxrpc/rxrpc 0x48c5d6ab rxrpc_kernel_set_tx_length -EXPORT_SYMBOL net/rxrpc/rxrpc 0x59102489 rxrpc_kernel_check_life -EXPORT_SYMBOL net/rxrpc/rxrpc 0x5b5ecdef rxrpc_get_server_data_key -EXPORT_SYMBOL net/rxrpc/rxrpc 0x6a17032b rxrpc_sock_set_min_security_level -EXPORT_SYMBOL net/rxrpc/rxrpc 0x80c71510 rxrpc_kernel_get_reply_time -EXPORT_SYMBOL net/rxrpc/rxrpc 0x842ea784 rxrpc_kernel_send_data -EXPORT_SYMBOL net/rxrpc/rxrpc 0x894f208f rxrpc_kernel_abort_call -EXPORT_SYMBOL net/rxrpc/rxrpc 0x972fecb8 rxrpc_kernel_get_peer -EXPORT_SYMBOL net/rxrpc/rxrpc 0x9fff190c rxrpc_kernel_get_epoch -EXPORT_SYMBOL net/rxrpc/rxrpc 0xacd40432 rxrpc_kernel_set_max_life -EXPORT_SYMBOL net/rxrpc/rxrpc 0xad2eec43 key_type_rxrpc -EXPORT_SYMBOL net/rxrpc/rxrpc 0xb6296959 rxrpc_get_null_key -EXPORT_SYMBOL net/rxrpc/rxrpc 0xb9f3ebbf rxrpc_kernel_get_srtt -EXPORT_SYMBOL net/rxrpc/rxrpc 0xd9b355d4 rxrpc_kernel_new_call_notification -EXPORT_SYMBOL net/rxrpc/rxrpc 0xe4501c6f rxrpc_kernel_recv_data -EXPORT_SYMBOL net/rxrpc/rxrpc 0xe9806c54 rxrpc_kernel_charge_accept -EXPORT_SYMBOL net/sctp/sctp 0xd1d79e73 sctp_do_peeloff -EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x29adff32 gss_mech_put -EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0xfb68d915 gss_mech_get -EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0xfc2a232f gss_pseudoflavor_to_service -EXPORT_SYMBOL net/sunrpc/sunrpc 0x2ff330e1 get_srcport -EXPORT_SYMBOL net/sunrpc/sunrpc 0x7a99a0ef xdr_restrict_buflen -EXPORT_SYMBOL net/sunrpc/sunrpc 0x8fbe04a3 xdr_truncate_encode -EXPORT_SYMBOL net/sunrpc/sunrpc 0xd8a58a78 svc_pool_stats_open -EXPORT_SYMBOL net/tipc/tipc 0x2b9364da tipc_sk_fill_sock_diag -EXPORT_SYMBOL net/tipc/tipc 0x90094053 tipc_dump_start -EXPORT_SYMBOL net/tipc/tipc 0xc0c1eb85 tipc_nl_sk_walk -EXPORT_SYMBOL net/tipc/tipc 0xe3c88e58 tipc_dump_done -EXPORT_SYMBOL net/tls/tls 0xd7eab360 tls_get_record -EXPORT_SYMBOL net/wireless/cfg80211 0x008a8ad7 regulatory_pre_cac_allowed -EXPORT_SYMBOL net/wireless/cfg80211 0x015d4c16 ieee80211_data_to_8023_exthdr -EXPORT_SYMBOL net/wireless/cfg80211 0x01d394a6 cfg80211_report_obss_beacon_khz -EXPORT_SYMBOL net/wireless/cfg80211 0x01e91fff cfg80211_control_port_tx_status -EXPORT_SYMBOL net/wireless/cfg80211 0x03fec15d cfg80211_bss_iter -EXPORT_SYMBOL net/wireless/cfg80211 0x04980094 cfg80211_gtk_rekey_notify -EXPORT_SYMBOL net/wireless/cfg80211 0x064b2aba cfg80211_port_authorized -EXPORT_SYMBOL net/wireless/cfg80211 0x073422a0 cfg80211_check_combinations -EXPORT_SYMBOL net/wireless/cfg80211 0x08b57095 __cfg80211_send_event_skb -EXPORT_SYMBOL net/wireless/cfg80211 0x08ee4e5d cfg80211_unregister_wdev -EXPORT_SYMBOL net/wireless/cfg80211 0x0d86cbc5 cfg80211_get_bss -EXPORT_SYMBOL net/wireless/cfg80211 0x117aca91 cfg80211_merge_profile -EXPORT_SYMBOL net/wireless/cfg80211 0x118fd409 cfg80211_reg_can_beacon_relax -EXPORT_SYMBOL net/wireless/cfg80211 0x120835b6 cfg80211_stop_iface -EXPORT_SYMBOL net/wireless/cfg80211 0x142eed36 cfg80211_cqm_pktloss_notify -EXPORT_SYMBOL net/wireless/cfg80211 0x15a37cf3 cfg80211_calculate_bitrate -EXPORT_SYMBOL net/wireless/cfg80211 0x1687989f cfg80211_inform_bss_data -EXPORT_SYMBOL net/wireless/cfg80211 0x1879fcbd bridge_tunnel_header -EXPORT_SYMBOL net/wireless/cfg80211 0x1afb47e6 cfg80211_cqm_rssi_notify -EXPORT_SYMBOL net/wireless/cfg80211 0x1c2d8f04 cfg80211_abandon_assoc -EXPORT_SYMBOL net/wireless/cfg80211 0x1ce2497f reg_query_regdb_wmm -EXPORT_SYMBOL net/wireless/cfg80211 0x1d6c7eb7 cfg80211_cac_event -EXPORT_SYMBOL net/wireless/cfg80211 0x1f137a3c cfg80211_cqm_txe_notify -EXPORT_SYMBOL net/wireless/cfg80211 0x1f3e1af7 cfg80211_ch_switch_started_notify -EXPORT_SYMBOL net/wireless/cfg80211 0x2310adee ieee80211_bss_get_elem -EXPORT_SYMBOL net/wireless/cfg80211 0x231e6174 wiphy_new_nm -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 0x2891de04 cfg80211_rx_assoc_resp -EXPORT_SYMBOL net/wireless/cfg80211 0x2a5d816f cfg80211_chandef_valid -EXPORT_SYMBOL net/wireless/cfg80211 0x3833a663 ieee80211_get_channel_khz -EXPORT_SYMBOL net/wireless/cfg80211 0x3cfee81d cfg80211_connect_done -EXPORT_SYMBOL net/wireless/cfg80211 0x3d8e5894 cfg80211_chandef_compatible -EXPORT_SYMBOL net/wireless/cfg80211 0x424e6c36 cfg80211_nan_func_terminated -EXPORT_SYMBOL net/wireless/cfg80211 0x43afadee ieee80211_radiotap_iterator_init -EXPORT_SYMBOL net/wireless/cfg80211 0x46d41f9d cfg80211_chandef_dfs_required -EXPORT_SYMBOL net/wireless/cfg80211 0x481c6c0e cfg80211_external_auth_request -EXPORT_SYMBOL net/wireless/cfg80211 0x4a6fc932 cfg80211_rx_spurious_frame -EXPORT_SYMBOL net/wireless/cfg80211 0x4c35e021 ieee80211_get_hdrlen_from_skb -EXPORT_SYMBOL net/wireless/cfg80211 0x4df38cee cfg80211_rx_unprot_mlme_mgmt -EXPORT_SYMBOL net/wireless/cfg80211 0x4e6322fa wiphy_apply_custom_regulatory -EXPORT_SYMBOL net/wireless/cfg80211 0x4f016bf0 regulatory_set_wiphy_regd_sync -EXPORT_SYMBOL net/wireless/cfg80211 0x52454b97 cfg80211_put_bss -EXPORT_SYMBOL net/wireless/cfg80211 0x540b981c cfg80211_rx_unexpected_4addr_frame -EXPORT_SYMBOL net/wireless/cfg80211 0x554382a6 cfg80211_probe_status -EXPORT_SYMBOL net/wireless/cfg80211 0x55b5ea94 cfg80211_auth_timeout -EXPORT_SYMBOL net/wireless/cfg80211 0x5977443d cfg80211_rx_control_port -EXPORT_SYMBOL net/wireless/cfg80211 0x5cb0338c cfg80211_crit_proto_stopped -EXPORT_SYMBOL net/wireless/cfg80211 0x635503b4 cfg80211_register_netdevice -EXPORT_SYMBOL net/wireless/cfg80211 0x6378de42 cfg80211_ref_bss -EXPORT_SYMBOL net/wireless/cfg80211 0x646675e9 cfg80211_nan_match -EXPORT_SYMBOL net/wireless/cfg80211 0x6469c412 cfg80211_inform_bss_frame_data -EXPORT_SYMBOL net/wireless/cfg80211 0x652aeedf ieee80211_mandatory_rates -EXPORT_SYMBOL net/wireless/cfg80211 0x655e62b2 cfg80211_iftype_allowed -EXPORT_SYMBOL net/wireless/cfg80211 0x675a7585 wiphy_free -EXPORT_SYMBOL net/wireless/cfg80211 0x691278d7 cfg80211_unlink_bss -EXPORT_SYMBOL net/wireless/cfg80211 0x69b18f43 rfc1042_header -EXPORT_SYMBOL net/wireless/cfg80211 0x6a5825da cfg80211_get_station -EXPORT_SYMBOL net/wireless/cfg80211 0x6bedf402 ieee80211_freq_khz_to_channel -EXPORT_SYMBOL net/wireless/cfg80211 0x705bfbcb cfg80211_conn_failed -EXPORT_SYMBOL net/wireless/cfg80211 0x70def0fd cfg80211_notify_new_peer_candidate -EXPORT_SYMBOL net/wireless/cfg80211 0x72717db2 cfg80211_chandef_usable -EXPORT_SYMBOL net/wireless/cfg80211 0x7292a53d cfg80211_classify8021d -EXPORT_SYMBOL net/wireless/cfg80211 0x759d3817 cfg80211_tx_mlme_mgmt -EXPORT_SYMBOL net/wireless/cfg80211 0x79b82a71 cfg80211_find_vendor_elem -EXPORT_SYMBOL net/wireless/cfg80211 0x7ab3570b cfg80211_tdls_oper_request -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 0x7d4de18e wiphy_register -EXPORT_SYMBOL net/wireless/cfg80211 0x7dce2ad2 cfg80211_tx_mgmt_expired -EXPORT_SYMBOL net/wireless/cfg80211 0x7ef39823 ieee80211_hdrlen -EXPORT_SYMBOL net/wireless/cfg80211 0x814e0dbc wiphy_rfkill_start_polling -EXPORT_SYMBOL net/wireless/cfg80211 0x81874735 ieee80211_get_response_rate -EXPORT_SYMBOL net/wireless/cfg80211 0x856d5026 cfg80211_update_owe_info_event -EXPORT_SYMBOL net/wireless/cfg80211 0x879e9139 cfg80211_remain_on_channel_expired -EXPORT_SYMBOL net/wireless/cfg80211 0x885c860e freq_reg_info -EXPORT_SYMBOL net/wireless/cfg80211 0x88dc1191 cfg80211_any_usable_channels -EXPORT_SYMBOL net/wireless/cfg80211 0x89d391a0 cfg80211_del_sta_sinfo -EXPORT_SYMBOL net/wireless/cfg80211 0x8bc61b8f ieee80211_amsdu_to_8023s -EXPORT_SYMBOL net/wireless/cfg80211 0x8da0d74b __cfg80211_alloc_reply_skb -EXPORT_SYMBOL net/wireless/cfg80211 0x8db213e7 cfg80211_michael_mic_failure -EXPORT_SYMBOL net/wireless/cfg80211 0x8f6b3ebc cfg80211_bss_flush -EXPORT_SYMBOL net/wireless/cfg80211 0x8f6fccab cfg80211_rx_mgmt_khz -EXPORT_SYMBOL net/wireless/cfg80211 0x8fa02936 cfg80211_free_nan_func -EXPORT_SYMBOL net/wireless/cfg80211 0x954cb243 regulatory_set_wiphy_regd -EXPORT_SYMBOL net/wireless/cfg80211 0x9a424184 cfg80211_get_drvinfo -EXPORT_SYMBOL net/wireless/cfg80211 0x9d6cba30 cfg80211_find_elem_match -EXPORT_SYMBOL net/wireless/cfg80211 0xa65403de cfg80211_cqm_beacon_loss_notify -EXPORT_SYMBOL net/wireless/cfg80211 0xa8cbd2e4 cfg80211_rx_mlme_mgmt -EXPORT_SYMBOL net/wireless/cfg80211 0xa9676e79 cfg80211_ready_on_channel -EXPORT_SYMBOL net/wireless/cfg80211 0xab155090 regulatory_hint -EXPORT_SYMBOL net/wireless/cfg80211 0xafcd54fb cfg80211_ch_switch_notify -EXPORT_SYMBOL net/wireless/cfg80211 0xb73aafb1 ieee80211_chandef_to_operating_class -EXPORT_SYMBOL net/wireless/cfg80211 0xbb68d6f5 cfg80211_reg_can_beacon -EXPORT_SYMBOL net/wireless/cfg80211 0xbcf3d5b0 cfg80211_check_station_change -EXPORT_SYMBOL net/wireless/cfg80211 0xbcfa9f09 cfg80211_sched_scan_stopped_locked -EXPORT_SYMBOL net/wireless/cfg80211 0xbe2f86eb ieee80211_get_num_supported_channels -EXPORT_SYMBOL net/wireless/cfg80211 0xc1b99792 ieee80211_channel_to_freq_khz -EXPORT_SYMBOL net/wireless/cfg80211 0xc22ec5e9 cfg80211_pmksa_candidate_notify -EXPORT_SYMBOL net/wireless/cfg80211 0xc5dcacef ieee80211_operating_class_to_band -EXPORT_SYMBOL net/wireless/cfg80211 0xc63b518a cfg80211_sched_scan_stopped -EXPORT_SYMBOL net/wireless/cfg80211 0xcc1a7c48 cfg80211_is_element_inherited -EXPORT_SYMBOL net/wireless/cfg80211 0xd07b6184 cfg80211_iter_combinations -EXPORT_SYMBOL net/wireless/cfg80211 0xd0b92cc5 cfg80211_assoc_timeout -EXPORT_SYMBOL net/wireless/cfg80211 0xd0d6cb75 cfg80211_report_wowlan_wakeup -EXPORT_SYMBOL net/wireless/cfg80211 0xd56d55f3 ieee80211_get_mesh_hdrlen -EXPORT_SYMBOL net/wireless/cfg80211 0xd5d37629 cfg80211_ft_event -EXPORT_SYMBOL net/wireless/cfg80211 0xda532da5 cfg80211_scan_done -EXPORT_SYMBOL net/wireless/cfg80211 0xdba126c1 reg_initiator_name -EXPORT_SYMBOL net/wireless/cfg80211 0xdd4f685b __cfg80211_alloc_event_skb -EXPORT_SYMBOL net/wireless/cfg80211 0xe2f61c8c cfg80211_disconnected -EXPORT_SYMBOL net/wireless/cfg80211 0xe334e6df cfg80211_sinfo_alloc_tid_stats -EXPORT_SYMBOL net/wireless/cfg80211 0xe56b3597 cfg80211_sched_scan_results -EXPORT_SYMBOL net/wireless/cfg80211 0xe5eb1adf cfg80211_ibss_joined -EXPORT_SYMBOL net/wireless/cfg80211 0xe6a1d4f8 wiphy_read_of_freq_limits -EXPORT_SYMBOL net/wireless/cfg80211 0xe84fe6ba cfg80211_sta_opmode_change_notify -EXPORT_SYMBOL net/wireless/cfg80211 0xeac86bde cfg80211_radar_event -EXPORT_SYMBOL net/wireless/cfg80211 0xeec18253 wiphy_rfkill_set_hw_state_reason -EXPORT_SYMBOL net/wireless/cfg80211 0xef265f27 cfg80211_chandef_create -EXPORT_SYMBOL net/wireless/cfg80211 0xefcc66fd wiphy_unregister -EXPORT_SYMBOL net/wireless/cfg80211 0xf0e4aa17 cfg80211_mgmt_tx_status -EXPORT_SYMBOL net/wireless/cfg80211 0xf3cfba67 cfg80211_send_layer2_update -EXPORT_SYMBOL net/wireless/cfg80211 0xf3e20941 cfg80211_roamed -EXPORT_SYMBOL net/wireless/cfg80211 0xf5596d89 cfg80211_get_p2p_attr -EXPORT_SYMBOL net/wireless/cfg80211 0xfc64810e cfg80211_bss_color_notify -EXPORT_SYMBOL net/wireless/cfg80211 0xfcbd3344 cfg80211_new_sta -EXPORT_SYMBOL net/wireless/cfg80211 0xfeacd2c7 get_wiphy_regdom -EXPORT_SYMBOL net/wireless/lib80211 0x03ba202f lib80211_crypt_info_free -EXPORT_SYMBOL net/wireless/lib80211 0x306dd60f lib80211_crypt_delayed_deinit -EXPORT_SYMBOL net/wireless/lib80211 0x5826e019 lib80211_register_crypto_ops -EXPORT_SYMBOL net/wireless/lib80211 0xc69cd8d1 lib80211_crypt_info_init -EXPORT_SYMBOL net/wireless/lib80211 0xd1db257a lib80211_get_crypto_ops -EXPORT_SYMBOL net/wireless/lib80211 0xef808408 lib80211_unregister_crypto_ops -EXPORT_SYMBOL sound/ac97_bus 0xdff9782a ac97_bus_type -EXPORT_SYMBOL sound/core/oss/snd-mixer-oss 0x172c1513 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 0x4bfa5eeb snd_seq_kernel_client_write_poll -EXPORT_SYMBOL sound/core/seq/snd-seq 0x6927cf6b snd_seq_kernel_client_enqueue -EXPORT_SYMBOL sound/core/seq/snd-seq 0x6bb71038 snd_seq_delete_kernel_client -EXPORT_SYMBOL sound/core/seq/snd-seq 0x7ac2f329 snd_seq_expand_var_event -EXPORT_SYMBOL sound/core/seq/snd-seq 0x7b8699eb snd_seq_event_port_detach -EXPORT_SYMBOL sound/core/seq/snd-seq 0x88c935a7 snd_seq_event_port_attach -EXPORT_SYMBOL sound/core/seq/snd-seq 0xb8e448a0 snd_seq_set_queue_tempo -EXPORT_SYMBOL sound/core/seq/snd-seq 0xe934da1d snd_seq_dump_var_event -EXPORT_SYMBOL sound/core/seq/snd-seq 0xfeba9a30 snd_seq_create_kernel_client -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-emul 0x6ea09972 snd_midi_channel_alloc_set -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-emul 0x833a3e07 snd_midi_channel_set_clear -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-emul 0xb9948d2c snd_midi_channel_free_set -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-emul 0xf912f0c8 snd_midi_process_event -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x2ddc8a7c snd_midi_event_encode_byte -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x77727137 snd_midi_event_decode -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x79bb4d3d snd_midi_event_new -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x9b6c0afe snd_midi_event_reset_encode -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0xa9e22b7b snd_midi_event_reset_decode -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0xd2e49671 snd_midi_event_no_status -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0xe8ffd3a6 snd_midi_event_free -EXPORT_SYMBOL sound/core/seq/snd-seq-virmidi 0x144473a6 snd_virmidi_new -EXPORT_SYMBOL sound/core/snd 0x074ee50d snd_ctl_make_virtual_master -EXPORT_SYMBOL sound/core/snd 0x0bca2386 snd_ctl_replace -EXPORT_SYMBOL sound/core/snd 0x0c75b06b snd_ctl_notify -EXPORT_SYMBOL sound/core/snd 0x0ddb7e7a snd_card_register -EXPORT_SYMBOL sound/core/snd 0x1140bfc6 snd_info_create_module_entry -EXPORT_SYMBOL sound/core/snd 0x1446a733 snd_unregister_oss_device -EXPORT_SYMBOL sound/core/snd 0x16c167e7 snd_device_free -EXPORT_SYMBOL sound/core/snd 0x1975ce1d snd_jack_add_new_kctl -EXPORT_SYMBOL sound/core/snd 0x198788b4 snd_lookup_oss_minor_data -EXPORT_SYMBOL sound/core/snd 0x1de914c8 snd_ctl_unregister_ioctl -EXPORT_SYMBOL sound/core/snd 0x24a94b26 snd_info_get_line -EXPORT_SYMBOL sound/core/snd 0x342a2354 copy_to_user_fromio -EXPORT_SYMBOL sound/core/snd 0x395f64ec snd_ctl_new1 -EXPORT_SYMBOL sound/core/snd 0x3971b4df snd_ecards_limit -EXPORT_SYMBOL sound/core/snd 0x39e53e9e snd_ctl_unregister_ioctl_compat -EXPORT_SYMBOL sound/core/snd 0x43002b82 snd_ctl_rename_id -EXPORT_SYMBOL sound/core/snd 0x43957986 snd_seq_root -EXPORT_SYMBOL sound/core/snd 0x4a3ea5c0 snd_request_card -EXPORT_SYMBOL sound/core/snd 0x4a538eb6 snd_card_disconnect -EXPORT_SYMBOL sound/core/snd 0x4d5738e5 snd_ctl_register_ioctl_compat -EXPORT_SYMBOL sound/core/snd 0x5113e256 snd_ctl_boolean_stereo_info -EXPORT_SYMBOL sound/core/snd 0x59f4cb51 _snd_ctl_add_follower -EXPORT_SYMBOL sound/core/snd 0x5c3651ca snd_ctl_add -EXPORT_SYMBOL sound/core/snd 0x66facb25 snd_ctl_remove_id -EXPORT_SYMBOL sound/core/snd 0x6cc2cac1 snd_mixer_oss_notify_callback -EXPORT_SYMBOL sound/core/snd 0x6e03ca43 snd_ctl_find_id -EXPORT_SYMBOL sound/core/snd 0x6e063ee4 snd_ctl_find_numid -EXPORT_SYMBOL sound/core/snd 0x7000ad75 snd_jack_set_parent -EXPORT_SYMBOL sound/core/snd 0x73076315 snd_pci_quirk_lookup_id -EXPORT_SYMBOL sound/core/snd 0x79265352 snd_jack_set_key -EXPORT_SYMBOL sound/core/snd 0x7a89502d snd_pci_quirk_lookup -EXPORT_SYMBOL sound/core/snd 0x7b829789 snd_ctl_free_one -EXPORT_SYMBOL sound/core/snd 0x804c1b19 snd_ctl_remove -EXPORT_SYMBOL sound/core/snd 0x846697e3 snd_register_device -EXPORT_SYMBOL sound/core/snd 0x8a975def snd_device_new -EXPORT_SYMBOL sound/core/snd 0x8df3789f snd_oss_info_register -EXPORT_SYMBOL sound/core/snd 0x8f1370ae snd_jack_new -EXPORT_SYMBOL sound/core/snd 0x8f595b11 snd_major -EXPORT_SYMBOL sound/core/snd 0x95869e79 snd_card_set_id -EXPORT_SYMBOL sound/core/snd 0x9642d5c4 snd_unregister_device -EXPORT_SYMBOL sound/core/snd 0x9e6d79f8 snd_info_get_str -EXPORT_SYMBOL sound/core/snd 0xa306e1da snd_info_create_card_entry -EXPORT_SYMBOL sound/core/snd 0xb0e9fe35 snd_component_add -EXPORT_SYMBOL sound/core/snd 0xb2613868 snd_card_new -EXPORT_SYMBOL sound/core/snd 0xb2e5ae4a snd_lookup_minor_data -EXPORT_SYMBOL sound/core/snd 0xb647a2b4 snd_card_file_remove -EXPORT_SYMBOL sound/core/snd 0xb741eda1 snd_card_free_when_closed -EXPORT_SYMBOL sound/core/snd 0xbbf778d5 snd_card_file_add -EXPORT_SYMBOL sound/core/snd 0xc5a6d10b release_and_free_resource -EXPORT_SYMBOL sound/core/snd 0xc5d77ab3 snd_device_register -EXPORT_SYMBOL sound/core/snd 0xcc23aa92 snd_info_register -EXPORT_SYMBOL sound/core/snd 0xcc6a729f snd_ctl_enum_info -EXPORT_SYMBOL sound/core/snd 0xd924ecd3 snd_ctl_register_ioctl -EXPORT_SYMBOL sound/core/snd 0xde8e0332 snd_info_free_entry -EXPORT_SYMBOL sound/core/snd 0xe2465247 snd_ctl_boolean_mono_info -EXPORT_SYMBOL sound/core/snd 0xe570e055 snd_jack_report -EXPORT_SYMBOL sound/core/snd 0xe8b20f2c snd_register_oss_device -EXPORT_SYMBOL sound/core/snd 0xf5481fbb snd_ctl_notify_one -EXPORT_SYMBOL sound/core/snd 0xf6a2cf6b snd_card_free -EXPORT_SYMBOL sound/core/snd 0xfbc92b3f snd_power_wait -EXPORT_SYMBOL sound/core/snd 0xfffd89db copy_from_user_toio -EXPORT_SYMBOL sound/core/snd-compress 0x8b7981b2 snd_compr_free_pages -EXPORT_SYMBOL sound/core/snd-compress 0xd12184e7 snd_compr_malloc_pages -EXPORT_SYMBOL sound/core/snd-hwdep 0xe2a42575 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 0x0b9e70f4 snd_pcm_hw_rule_noresample -EXPORT_SYMBOL sound/core/snd-pcm 0x101c8f31 snd_pcm_suspend_all -EXPORT_SYMBOL sound/core/snd-pcm 0x11eba48e snd_pcm_create_iec958_consumer_hw_params -EXPORT_SYMBOL sound/core/snd-pcm 0x16700d5e snd_pcm_set_sync -EXPORT_SYMBOL sound/core/snd-pcm 0x17f524fa snd_pcm_lib_free_vmalloc_buffer -EXPORT_SYMBOL sound/core/snd-pcm 0x188da561 snd_dma_free_pages -EXPORT_SYMBOL sound/core/snd-pcm 0x1d027e4b snd_pcm_format_signed -EXPORT_SYMBOL sound/core/snd-pcm 0x1f29c62b snd_pcm_new_stream -EXPORT_SYMBOL sound/core/snd-pcm 0x23c81c68 snd_pcm_hw_constraint_msbits -EXPORT_SYMBOL sound/core/snd-pcm 0x292cd1c9 snd_pcm_hw_constraint_minmax -EXPORT_SYMBOL sound/core/snd-pcm 0x29384aa3 snd_pcm_hw_constraint_mask64 -EXPORT_SYMBOL sound/core/snd-pcm 0x3796bdcc snd_pcm_format_little_endian -EXPORT_SYMBOL sound/core/snd-pcm 0x39bf9301 _snd_pcm_hw_param_setempty -EXPORT_SYMBOL sound/core/snd-pcm 0x433b38f2 snd_pcm_release_substream -EXPORT_SYMBOL sound/core/snd-pcm 0x4bc4cf41 snd_dma_alloc_pages_fallback -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 0x578175b9 snd_pcm_set_managed_buffer_all -EXPORT_SYMBOL sound/core/snd-pcm 0x5837168f snd_pcm_set_ops -EXPORT_SYMBOL sound/core/snd-pcm 0x5d1f2e11 snd_dma_alloc_pages -EXPORT_SYMBOL sound/core/snd-pcm 0x5d64be3f snd_pcm_open_substream -EXPORT_SYMBOL sound/core/snd-pcm 0x5d8da2d6 snd_sgbuf_get_addr -EXPORT_SYMBOL sound/core/snd-pcm 0x5e4f0bd9 snd_pcm_lib_ioctl -EXPORT_SYMBOL sound/core/snd-pcm 0x5e7f4920 snd_pcm_format_set_silence -EXPORT_SYMBOL sound/core/snd-pcm 0x5eecc9a7 _snd_pcm_lib_alloc_vmalloc_buffer -EXPORT_SYMBOL sound/core/snd-pcm 0x633aebda snd_pcm_period_elapsed -EXPORT_SYMBOL sound/core/snd-pcm 0x64ff2d86 snd_pcm_hw_param_last -EXPORT_SYMBOL sound/core/snd-pcm 0x650f8603 snd_pcm_format_silence_64 -EXPORT_SYMBOL sound/core/snd-pcm 0x686998fc snd_pcm_new -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 0x716ca2b7 snd_pcm_lib_preallocate_pages_for_all -EXPORT_SYMBOL sound/core/snd-pcm 0x7da620f9 snd_pcm_lib_malloc_pages -EXPORT_SYMBOL sound/core/snd-pcm 0x7f7a6b42 snd_pcm_period_elapsed_under_stream_lock -EXPORT_SYMBOL sound/core/snd-pcm 0x8175ccbf snd_pcm_set_managed_buffer -EXPORT_SYMBOL sound/core/snd-pcm 0x834dc955 snd_pcm_format_size -EXPORT_SYMBOL sound/core/snd-pcm 0x83aefc0e snd_pcm_hw_constraint_step -EXPORT_SYMBOL sound/core/snd-pcm 0x84965d9d snd_pcm_hw_param_first -EXPORT_SYMBOL sound/core/snd-pcm 0x882b539f snd_dma_buffer_mmap -EXPORT_SYMBOL sound/core/snd-pcm 0x88617c0f snd_sgbuf_get_chunk_size -EXPORT_SYMBOL sound/core/snd-pcm 0x8954f97e snd_pcm_mmap_data -EXPORT_SYMBOL sound/core/snd-pcm 0x92b3c40a snd_pcm_hw_constraint_list -EXPORT_SYMBOL sound/core/snd-pcm 0x94098ff8 snd_interval_list -EXPORT_SYMBOL sound/core/snd-pcm 0xa1b66e3b __snd_pcm_lib_xfer -EXPORT_SYMBOL sound/core/snd-pcm 0xa34847c1 snd_pcm_lib_preallocate_free_for_all -EXPORT_SYMBOL sound/core/snd-pcm 0xa61aa028 snd_pcm_format_unsigned -EXPORT_SYMBOL sound/core/snd-pcm 0xaa414d80 snd_pcm_hw_rule_add -EXPORT_SYMBOL sound/core/snd-pcm 0xac437f7b snd_interval_ratnum -EXPORT_SYMBOL sound/core/snd-pcm 0xb70a8fab snd_pcm_hw_constraint_ratdens -EXPORT_SYMBOL sound/core/snd-pcm 0xb9638db4 snd_pcm_rate_to_rate_bit -EXPORT_SYMBOL sound/core/snd-pcm 0xc4ec6505 snd_pcm_new_internal -EXPORT_SYMBOL sound/core/snd-pcm 0xcabc2b7a snd_pcm_stop -EXPORT_SYMBOL sound/core/snd-pcm 0xcfeac152 snd_pcm_hw_constraint_ratnums -EXPORT_SYMBOL sound/core/snd-pcm 0xd1069259 snd_pcm_lib_get_vmalloc_page -EXPORT_SYMBOL sound/core/snd-pcm 0xd9b21438 snd_pcm_kernel_ioctl -EXPORT_SYMBOL sound/core/snd-pcm 0xe17b2c6f snd_pcm_lib_preallocate_pages -EXPORT_SYMBOL sound/core/snd-pcm 0xe38c9b50 snd_pcm_hw_refine -EXPORT_SYMBOL sound/core/snd-pcm 0xe56a9336 snd_pcm_format_width -EXPORT_SYMBOL sound/core/snd-pcm 0xe5af1ea4 snd_pcm_hw_constraint_integer -EXPORT_SYMBOL sound/core/snd-pcm 0xedf33fa5 snd_pcm_create_iec958_consumer -EXPORT_SYMBOL sound/core/snd-pcm 0xf161c8e2 snd_sgbuf_get_page -EXPORT_SYMBOL sound/core/snd-pcm 0xf2ac4f48 snd_pcm_lib_free_pages -EXPORT_SYMBOL sound/core/snd-pcm 0xf3178fe0 snd_pcm_hw_constraint_ranges -EXPORT_SYMBOL sound/core/snd-pcm 0xfc5d6dbe snd_pcm_hw_constraint_pow2 -EXPORT_SYMBOL sound/core/snd-pcm 0xff6104d0 snd_pcm_rate_bit_to_rate -EXPORT_SYMBOL sound/core/snd-rawmidi 0x0850108a snd_rawmidi_set_ops -EXPORT_SYMBOL sound/core/snd-rawmidi 0x0aea162f snd_rawmidi_input_params -EXPORT_SYMBOL sound/core/snd-rawmidi 0x13412d49 snd_rawmidi_receive -EXPORT_SYMBOL sound/core/snd-rawmidi 0x151ed378 snd_rawmidi_drop_output -EXPORT_SYMBOL sound/core/snd-rawmidi 0x22a95a9b snd_rawmidi_new -EXPORT_SYMBOL sound/core/snd-rawmidi 0x2af7fd0b snd_rawmidi_output_params -EXPORT_SYMBOL sound/core/snd-rawmidi 0x2d849fb6 snd_rawmidi_kernel_write -EXPORT_SYMBOL sound/core/snd-rawmidi 0x3980200b snd_rawmidi_transmit -EXPORT_SYMBOL sound/core/snd-rawmidi 0x4b1b36d3 snd_rawmidi_kernel_read -EXPORT_SYMBOL sound/core/snd-rawmidi 0x67f29853 __snd_rawmidi_transmit_peek -EXPORT_SYMBOL sound/core/snd-rawmidi 0x75e6415f snd_rawmidi_drain_input -EXPORT_SYMBOL sound/core/snd-rawmidi 0x76e60726 snd_rawmidi_kernel_open -EXPORT_SYMBOL sound/core/snd-rawmidi 0x9b5bd580 snd_rawmidi_proceed -EXPORT_SYMBOL sound/core/snd-rawmidi 0xc9315a21 snd_rawmidi_transmit_empty -EXPORT_SYMBOL sound/core/snd-rawmidi 0xcd6e834d snd_rawmidi_info_select -EXPORT_SYMBOL sound/core/snd-rawmidi 0xd9294c82 snd_rawmidi_transmit_ack -EXPORT_SYMBOL sound/core/snd-rawmidi 0xe30dace6 snd_rawmidi_drain_output -EXPORT_SYMBOL sound/core/snd-rawmidi 0xeea7fcb8 snd_rawmidi_kernel_release -EXPORT_SYMBOL sound/core/snd-rawmidi 0xf36620a6 snd_rawmidi_transmit_peek -EXPORT_SYMBOL sound/core/snd-rawmidi 0xf70c053c __snd_rawmidi_transmit_ack -EXPORT_SYMBOL sound/core/snd-seq-device 0x091def1c snd_seq_autoload_exit -EXPORT_SYMBOL sound/core/snd-seq-device 0x370a0736 snd_seq_autoload_init -EXPORT_SYMBOL sound/core/snd-seq-device 0x6339b6d0 snd_seq_device_load_drivers -EXPORT_SYMBOL sound/core/snd-seq-device 0xdf5b069a snd_seq_device_new -EXPORT_SYMBOL sound/core/snd-timer 0x1dba9e97 snd_timer_global_register -EXPORT_SYMBOL sound/core/snd-timer 0x1e946798 snd_timer_new -EXPORT_SYMBOL sound/core/snd-timer 0x4b9eb355 snd_timer_instance_free -EXPORT_SYMBOL sound/core/snd-timer 0x4ee28c2f snd_timer_continue -EXPORT_SYMBOL sound/core/snd-timer 0x50a697c2 snd_timer_start -EXPORT_SYMBOL sound/core/snd-timer 0x528b2739 snd_timer_notify -EXPORT_SYMBOL sound/core/snd-timer 0x5a9c8d11 snd_timer_open -EXPORT_SYMBOL sound/core/snd-timer 0x630e523c snd_timer_close -EXPORT_SYMBOL sound/core/snd-timer 0x69339dca snd_timer_resolution -EXPORT_SYMBOL sound/core/snd-timer 0x874abb67 snd_timer_stop -EXPORT_SYMBOL sound/core/snd-timer 0x9fb93cab snd_timer_interrupt -EXPORT_SYMBOL sound/core/snd-timer 0xc121d054 snd_timer_pause -EXPORT_SYMBOL sound/core/snd-timer 0xc5ad21d0 snd_timer_global_free -EXPORT_SYMBOL sound/core/snd-timer 0xd205096f snd_timer_instance_new -EXPORT_SYMBOL sound/core/snd-timer 0xd25b0304 snd_timer_global_new -EXPORT_SYMBOL sound/drivers/mpu401/snd-mpu401-uart 0x6d629c59 snd_mpu401_uart_interrupt_tx -EXPORT_SYMBOL sound/drivers/mpu401/snd-mpu401-uart 0x85c0b244 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 0x341413ff snd_opl3_hwdep_new -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x364fdd48 snd_opl3_timer_new -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x36e254cd snd_opl3_find_patch -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x58d8a6e8 snd_opl3_new -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x5f01ed55 snd_opl3_reset -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x7768602f snd_opl3_create -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x8efa5588 snd_opl3_interrupt -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xe5cb75bc snd_opl3_load_patch -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xfd1687cf snd_opl3_init -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x0b598390 snd_vx_load_boot_image -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x0d3c86d9 snd_vx_suspend -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x226138b0 snd_vx_threaded_irq_handler -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x2a4f9113 snd_vx_free_firmware -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x88cc6177 snd_vx_resume -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xa1fc2fd0 snd_vx_check_reg_bit -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xc207cef7 snd_vx_dsp_boot -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xc622e680 snd_vx_create -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xcd379ca8 snd_vx_setup_firmware -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xd649e657 snd_vx_dsp_load -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xf1f04d23 snd_vx_irq_handler -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x01454702 snd_fw_transaction -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x09aa8b20 amdtp_stream_pcm_abort -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x0d156da5 cmp_connection_check_used -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x0df5b44c fcp_avc_transaction -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x1307cceb amdtp_stream_pcm_prepare -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x132fc3b2 cmp_connection_init -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x1968cb2f amdtp_stream_get_max_payload -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x19bb5d0e cmp_connection_establish -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x1cf7a94b fw_iso_resources_allocate -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x20254e45 amdtp_syt_intervals -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x23cc9795 iso_packets_buffer_init -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x2cb79daf amdtp_stream_set_parameters -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x484e7229 avc_general_get_sig_fmt -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x4a8838d4 iso_packets_buffer_destroy -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x53c434a2 cmp_connection_release -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x53ca18e8 amdtp_rate_table -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x613bfc24 fw_iso_resources_destroy -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x665d9cae fw_iso_resources_init -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x693ec346 fcp_bus_reset -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x76ce5b7b amdtp_stream_destroy -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x7787992d cmp_connection_destroy -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x7c648a4b amdtp_stream_update -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x8aaa3cad fw_iso_resources_update -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x8cc353d5 amdtp_stream_add_pcm_hw_constraints -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x93908c93 fw_iso_resources_free -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xa33a77f3 avc_general_get_plug_info -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xc8bfed41 cmp_connection_reserve -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xd8cc13fa amdtp_stream_init -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xe80baade cmp_connection_break -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xf4d445c6 cmp_connection_update -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xf5437ac9 avc_general_set_sig_fmt -EXPORT_SYMBOL sound/i2c/other/snd-ak4113 0xe57aecc6 snd_ak4113_resume -EXPORT_SYMBOL sound/i2c/other/snd-ak4113 0xeda18579 snd_ak4113_suspend -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x01cf707f snd_ak4114_reinit -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x062e04f0 snd_ak4114_resume -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x369b3c78 snd_ak4114_check_rate_and_errors -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x77869c0b snd_ak4114_suspend -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x7abc0331 snd_ak4114_reg_write -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xa1c5f77a snd_ak4114_create -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xa3e75c9e snd_ak4114_external_rate -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xb041fa4c snd_ak4114_build -EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x41850a39 snd_akm4xxx_write -EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x4334fb36 snd_akm4xxx_build_controls -EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x53785854 snd_akm4xxx_init -EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0xd3c195c3 snd_akm4xxx_reset -EXPORT_SYMBOL sound/i2c/other/snd-pt2258 0x73cbdc66 snd_pt2258_build_controls -EXPORT_SYMBOL sound/i2c/other/snd-pt2258 0xf942840f snd_pt2258_reset -EXPORT_SYMBOL sound/i2c/snd-cs8427 0x1f0a15f2 snd_cs8427_iec958_active -EXPORT_SYMBOL sound/i2c/snd-cs8427 0x3cd3422f snd_cs8427_init -EXPORT_SYMBOL sound/i2c/snd-cs8427 0x4c49095e snd_cs8427_iec958_build -EXPORT_SYMBOL sound/i2c/snd-cs8427 0xa1e82f57 snd_cs8427_create -EXPORT_SYMBOL sound/i2c/snd-cs8427 0xcd5b5cc0 snd_cs8427_reg_write -EXPORT_SYMBOL sound/i2c/snd-cs8427 0xf6fee6e8 snd_cs8427_iec958_pcm -EXPORT_SYMBOL sound/i2c/snd-i2c 0x03436d4d snd_i2c_sendbytes -EXPORT_SYMBOL sound/i2c/snd-i2c 0x0fff9cd4 snd_i2c_device_free -EXPORT_SYMBOL sound/i2c/snd-i2c 0x707aaa5f snd_i2c_bus_create -EXPORT_SYMBOL sound/i2c/snd-i2c 0x9783fc14 snd_i2c_readbytes -EXPORT_SYMBOL sound/i2c/snd-i2c 0xc27ae3c7 snd_i2c_device_create -EXPORT_SYMBOL sound/i2c/snd-i2c 0xc7c14261 snd_i2c_probeaddr -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x10569368 snd_ac97_write_cache -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x1a109f5c snd_ac97_update_power -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x5a724b89 snd_ac97_write -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x5c204fb4 snd_ac97_read -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x61462a7d snd_ac97_pcm_open -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x630bd5fb snd_ac97_bus -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x6a08037a snd_ac97_pcm_double_rate_rules -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x76e1b480 snd_ac97_get_short_name -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x7df63001 snd_ac97_pcm_assign -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xb32279bd snd_ac97_mixer -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xcbf01ea5 snd_ac97_update_bits -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xd7f70d2a snd_ac97_tune_hardware -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xe2af13b4 snd_ac97_set_rate -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xe619e0f5 snd_ac97_pcm_close -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xecd144cb snd_ac97_suspend -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xeea4d6fc snd_ac97_update -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xf483b7f3 snd_ac97_resume -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x2a2dd761 snd_emu10k1_ptr_read -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x3a8bedd7 snd_emu10k1_voice_free -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x4575690e snd_emu10k1_synth_copy_from_user -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x4d18da9d snd_emu10k1_voice_alloc -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x5ac1da98 snd_emu10k1_memblk_map -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x864073e2 snd_emu10k1_synth_bzero -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x8bd7d5ff snd_emu10k1_ptr_write -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xee26ac93 snd_emu10k1_synth_alloc -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xfaab71e7 snd_emu10k1_synth_free -EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0x2be62452 snd_ice1712_akm4xxx_build_controls -EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0x390aa2c2 snd_ice1712_akm4xxx_free -EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0x72d2edaa snd_ice1712_akm4xxx_init -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x014ca8c3 oxygen_write_spi -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x1a6806e8 oxygen_write16 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x28ad4731 oxygen_pci_probe -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x311f399f oxygen_pci_shutdown -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x334c99d9 oxygen_read16 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x67429114 oxygen_read32 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x699221af oxygen_pci_pm -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x73cb4e59 oxygen_write_ac97 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x82c19c50 oxygen_write32_masked -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x850f08c3 oxygen_write_ac97_masked -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x883f8d6d oxygen_update_dac_routing -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x98c6c4b1 oxygen_write_i2c -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xa35b4a1e oxygen_write16_masked -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xa9c0cacf oxygen_write8_masked -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xb60c6867 oxygen_read_ac97 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xca6bfc47 oxygen_write_uart -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xcf63505d oxygen_write32 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xe3dee667 oxygen_write8 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xe84f9536 oxygen_reset_uart -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xec5896ea oxygen_read8 -EXPORT_SYMBOL sound/pci/trident/snd-trident 0x01f7d154 snd_trident_write_voice_regs -EXPORT_SYMBOL sound/pci/trident/snd-trident 0x1e975cdf snd_trident_free_voice -EXPORT_SYMBOL sound/pci/trident/snd-trident 0x4015b87d snd_trident_start_voice -EXPORT_SYMBOL sound/pci/trident/snd-trident 0x7007157d snd_trident_alloc_voice -EXPORT_SYMBOL sound/pci/trident/snd-trident 0xd60baa8b snd_trident_stop_voice -EXPORT_SYMBOL sound/soc/amd/acp_audio_dma 0xea74f232 bt_uart_enable -EXPORT_SYMBOL sound/soc/codecs/snd-soc-adau1372 0xbe33521a adau1372_probe -EXPORT_SYMBOL sound/soc/codecs/snd-soc-lpass-wsa-macro 0xbd08a67f wsa_macro_set_spkr_mode -EXPORT_SYMBOL sound/soc/codecs/snd-soc-pcm3060 0x4f2ea64a pcm3060_regmap -EXPORT_SYMBOL sound/soc/codecs/snd-soc-pcm3060 0x835449d5 pcm3060_probe -EXPORT_SYMBOL sound/soc/codecs/snd-soc-rt715 0xed2acb24 hda_to_sdw -EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic23 0x80ec34f5 tlv320aic23_regmap -EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic23 0xb46f745e tlv320aic23_probe -EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic32x4 0xb91bbfe8 aic32x4_remove -EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic32x4 0xd3397fbd aic32x4_regmap_config -EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic32x4 0xe511c8e1 aic32x4_probe -EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic3x 0x7bc0dca6 aic3x_probe -EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic3x 0x91ce6540 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 0xa5758a49 wcd_mbhc_get_hph_type -EXPORT_SYMBOL sound/soc/codecs/snd-soc-wcd-mbhc 0xa704ed4c wcd_mbhc_init -EXPORT_SYMBOL sound/soc/codecs/snd-soc-wcd-mbhc 0xb2c36a37 wcd_mbhc_start -EXPORT_SYMBOL sound/soc/codecs/snd-soc-wcd-mbhc 0xd094df47 wcd_mbhc_deinit -EXPORT_SYMBOL sound/soc/codecs/snd-soc-wcd-mbhc 0xe2beca26 wcd_mbhc_stop -EXPORT_SYMBOL sound/soc/codecs/snd-soc-wcd-mbhc 0xf0b2310d wcd_dt_parse_mbhc_data -EXPORT_SYMBOL sound/soc/mediatek/mt8192/snd-soc-mt8192-afe 0x6fa54864 mt8192_afe_gpio_init -EXPORT_SYMBOL sound/soc/mediatek/mt8192/snd-soc-mt8192-afe 0xb0253e33 mt8192_afe_gpio_request -EXPORT_SYMBOL sound/soc/qcom/qdsp6/q6afe 0x7ca58942 q6afe_unvote_lpass_core_hw -EXPORT_SYMBOL sound/soc/qcom/qdsp6/q6afe 0xe3756f2c q6afe_vote_lpass_core_hw -EXPORT_SYMBOL sound/soc/qcom/snd-soc-qcom-common 0x344d8288 qcom_snd_parse_of -EXPORT_SYMBOL sound/soc/snd-soc-core 0x44676898 snd_soc_alloc_ac97_component -EXPORT_SYMBOL sound/soc/sof/imx/imx-common 0x2b8b230e imx8_dump -EXPORT_SYMBOL sound/soc/sof/imx/snd-sof-imx8 0x6a6374e3 sof_imx8x_ops -EXPORT_SYMBOL sound/soc/sof/imx/snd-sof-imx8 0x91c1dd62 sof_imx8_ops -EXPORT_SYMBOL sound/soc/sof/imx/snd-sof-imx8m 0xf014abb4 sof_imx8m_ops -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x0320c636 sof_machine_register -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x05d195b9 snd_sof_complete -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x0d119f13 snd_sof_dsp_update_bits -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x0e65e7db snd_sof_ipc_reply -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x18d73a2f snd_sof_dsp_update_bits64 -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x1bae375b snd_sof_ipc_msgs_rx -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x1c8b8f86 snd_sof_pcm_period_elapsed -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x1d22a5ea sof_ipc_tx_message_no_pm -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x1e1482b5 snd_sof_run_firmware -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x21553d7c snd_sof_device_remove -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x21c9c81f snd_sof_runtime_idle -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x2351cf3a snd_sof_resume -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x25b526fd snd_sof_dsp_update_bits64_unlocked -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x2b6b179d snd_sof_parse_module_memcpy -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x2c16b39e snd_sof_device_probe_completed -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x2f1bb68c snd_sof_ipc_free -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x3080c774 snd_sof_fw_parse_ext_data -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x31309ad5 sof_block_write -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x36d99297 snd_sof_load_topology -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x41106fc8 snd_sof_dsp_mailbox_init -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x47b8d5bb snd_sof_pci_update_bits -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x50362dde sof_machine_unregister -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x507e7ede snd_sof_trace_notify_for_error -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x5554f4dd sof_io_write -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x5785093f sof_pcm_dai_link_fixup -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x5ecf2978 snd_sof_device_probe -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x6219e191 snd_sof_load_firmware -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x7347d7f3 snd_sof_ipc_init -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x7504fd3b sof_dai_get_bclk -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x88e0dffc snd_sof_free_trace -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x8f14b1ea snd_sof_ipc_stream_posn -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x90ae2d9f sof_fw_ready -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xa7a5015a snd_sof_ipc_set_get_comp_data -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xac0fdc6f snd_sof_get_status -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xafc540bd snd_sof_runtime_resume -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xb0382195 snd_sof_dsp_only_d0i3_compatible_stream_active -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xb12ef9ad snd_sof_fw_unload -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xb3ef3873 snd_sof_runtime_suspend -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xba54cfdb sof_io_read -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xbab31075 sof_machine_check -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xc0bfba7f snd_sof_suspend -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xc6d4f5b4 sof_dai_get_mclk -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xc9db79e3 snd_sof_init_trace -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xcb0275fb snd_sof_ipc_valid -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xcfdc5f98 sof_ipc_tx_message -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xd2c812da snd_sof_dsp_panic -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xd5346f83 sof_block_read -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xd6ecc773 snd_sof_release_trace -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xd803332a snd_sof_load_firmware_memcpy -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xd966074e snd_sof_dsp_update_bits_forced -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xdd2e70ad snd_sof_load_firmware_raw -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xe1c41926 sof_io_write64 -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xe1e55923 snd_sof_create_page_table -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xe63f969e sof_io_read64 -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xea6e84dd snd_sof_prepare -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xf019a35f snd_sof_dsp_update_bits_unlocked -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xf0def16b snd_sof_device_shutdown -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xf3e8a890 sof_mailbox_read -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xf9152d52 snd_sof_handle_fw_exception -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xfa799653 sof_mailbox_write -EXPORT_SYMBOL sound/soundcore 0x2e3a5b92 register_sound_special -EXPORT_SYMBOL sound/soundcore 0x39cf38ee register_sound_mixer -EXPORT_SYMBOL sound/soundcore 0x5f75db6d register_sound_special_device -EXPORT_SYMBOL sound/soundcore 0x6a1a2d00 sound_class -EXPORT_SYMBOL sound/soundcore 0x7afc9d8a unregister_sound_mixer -EXPORT_SYMBOL sound/soundcore 0x99c95fa5 unregister_sound_special -EXPORT_SYMBOL sound/soundcore 0xcd083b10 unregister_sound_dsp -EXPORT_SYMBOL sound/soundcore 0xfab4d319 register_sound_dsp -EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x0fa53573 snd_emux_lock_voice -EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x257afc9b snd_emux_new -EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x3fcad12e snd_emux_register -EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x52025bed snd_emux_unlock_voice -EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x5bafbbc3 snd_emux_terminate_all -EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x655cb202 snd_sf_linear_to_log -EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0xcdba5e1e snd_emux_free -EXPORT_SYMBOL sound/synth/snd-util-mem 0x12e7932a __snd_util_memblk_new -EXPORT_SYMBOL sound/synth/snd-util-mem 0x54131e5d snd_util_memhdr_new -EXPORT_SYMBOL sound/synth/snd-util-mem 0x54309d4c __snd_util_mem_free -EXPORT_SYMBOL sound/synth/snd-util-mem 0x61d26d97 __snd_util_mem_alloc -EXPORT_SYMBOL sound/synth/snd-util-mem 0x6e4a1080 snd_util_mem_free -EXPORT_SYMBOL sound/synth/snd-util-mem 0x852891b9 snd_util_mem_alloc -EXPORT_SYMBOL sound/synth/snd-util-mem 0x908963c9 snd_util_mem_avail -EXPORT_SYMBOL sound/synth/snd-util-mem 0xdad4d7a9 snd_util_memhdr_free -EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0x16756dc0 snd_usbmidi_input_start -EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0x3a2a45e5 __snd_usbmidi_create -EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0x63343b1d snd_usbmidi_input_stop -EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0xb2af19e1 snd_usbmidi_resume -EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0xbed43a41 snd_usbmidi_suspend -EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0xd9d2bb03 snd_usbmidi_disconnect -EXPORT_SYMBOL vmlinux 0x00026447 rt_spin_unlock -EXPORT_SYMBOL vmlinux 0x0006e75e component_match_add_typed -EXPORT_SYMBOL vmlinux 0x000dcc35 pm860x_bulk_write -EXPORT_SYMBOL vmlinux 0x00148653 vsnprintf -EXPORT_SYMBOL vmlinux 0x002872a1 tcp_disconnect -EXPORT_SYMBOL vmlinux 0x003ed690 device_match_acpi_dev -EXPORT_SYMBOL vmlinux 0x00405128 register_netdev -EXPORT_SYMBOL vmlinux 0x0050a009 pci_enable_wake -EXPORT_SYMBOL vmlinux 0x00602198 jbd2_journal_inode_ranged_wait -EXPORT_SYMBOL vmlinux 0x00747857 touchscreen_parse_properties -EXPORT_SYMBOL vmlinux 0x00784716 nd_integrity_init -EXPORT_SYMBOL vmlinux 0x0091b8d3 of_find_property -EXPORT_SYMBOL vmlinux 0x00a03292 scsi_scan_target -EXPORT_SYMBOL vmlinux 0x00b4e615 posix_acl_equiv_mode -EXPORT_SYMBOL vmlinux 0x00b65839 blk_queue_alignment_offset -EXPORT_SYMBOL vmlinux 0x00ba2079 netdev_lower_dev_get_private -EXPORT_SYMBOL vmlinux 0x00bdbb87 netdev_crit -EXPORT_SYMBOL vmlinux 0x00cd6065 remove_arg_zero -EXPORT_SYMBOL vmlinux 0x00d7e722 vme_lm_count -EXPORT_SYMBOL vmlinux 0x00d87531 xa_find -EXPORT_SYMBOL vmlinux 0x00dc424f dev_uc_add_excl -EXPORT_SYMBOL vmlinux 0x00eb843c pci_scan_root_bus -EXPORT_SYMBOL vmlinux 0x00f0a064 __skb_flow_dissect -EXPORT_SYMBOL vmlinux 0x00f4d7c1 inode_sub_bytes -EXPORT_SYMBOL vmlinux 0x00fb75b5 __napi_schedule -EXPORT_SYMBOL vmlinux 0x00fe59ee xfrm_unregister_type_offload -EXPORT_SYMBOL vmlinux 0x01000e51 schedule -EXPORT_SYMBOL vmlinux 0x01019d15 security_sock_graft -EXPORT_SYMBOL vmlinux 0x011fc3fb nvdimm_bus_lock -EXPORT_SYMBOL vmlinux 0x0129c4f8 par_io_data_set -EXPORT_SYMBOL vmlinux 0x012a4e28 xfrm_state_delete_tunnel -EXPORT_SYMBOL vmlinux 0x012de2ea xudma_rchanrt_read -EXPORT_SYMBOL vmlinux 0x0137a9bf __mmap_lock_do_trace_acquire_returned -EXPORT_SYMBOL vmlinux 0x0138b911 ip_getsockopt -EXPORT_SYMBOL vmlinux 0x013c1ed0 tty_unregister_driver -EXPORT_SYMBOL vmlinux 0x01431eb4 pci_clear_master -EXPORT_SYMBOL vmlinux 0x0143d863 kern_path -EXPORT_SYMBOL vmlinux 0x0147812c kblockd_mod_delayed_work_on -EXPORT_SYMBOL vmlinux 0x01505d85 imx_scu_call_rpc -EXPORT_SYMBOL vmlinux 0x015af7f4 system_state -EXPORT_SYMBOL vmlinux 0x01757935 rdmacg_register_device -EXPORT_SYMBOL vmlinux 0x017de3d5 nr_cpu_ids -EXPORT_SYMBOL vmlinux 0x018574a1 mb_cache_entry_delete -EXPORT_SYMBOL vmlinux 0x0188cd88 vme_alloc_consistent -EXPORT_SYMBOL vmlinux 0x018cbd55 tcp_select_initial_window -EXPORT_SYMBOL vmlinux 0x0199c3bd ethtool_intersect_link_masks -EXPORT_SYMBOL vmlinux 0x01b4ef5b __mmap_lock_do_trace_released -EXPORT_SYMBOL vmlinux 0x01bf55fc paddr_vmcoreinfo_note -EXPORT_SYMBOL vmlinux 0x01c03156 ip6_route_me_harder -EXPORT_SYMBOL vmlinux 0x01c4ebe2 generic_fill_statx_attr -EXPORT_SYMBOL vmlinux 0x01c851d6 lockref_mark_dead -EXPORT_SYMBOL vmlinux 0x01cab237 vga_client_register -EXPORT_SYMBOL vmlinux 0x01ee0d7f proc_doulongvec_minmax -EXPORT_SYMBOL vmlinux 0x0200a28f down_read_interruptible -EXPORT_SYMBOL vmlinux 0x0209f3a7 secure_ipv6_port_ephemeral -EXPORT_SYMBOL vmlinux 0x020dbf27 bitmap_alloc -EXPORT_SYMBOL vmlinux 0x021338c2 tegra_ivc_write_advance -EXPORT_SYMBOL vmlinux 0x02192e50 skb_flow_dissect_ct -EXPORT_SYMBOL vmlinux 0x0248efd3 kstrtobool_from_user -EXPORT_SYMBOL vmlinux 0x0273bfaa keyring_clear -EXPORT_SYMBOL vmlinux 0x0274dc2b netif_get_num_default_rss_queues -EXPORT_SYMBOL vmlinux 0x0296695f refcount_warn_saturate -EXPORT_SYMBOL vmlinux 0x029c6169 dma_resv_reserve_shared -EXPORT_SYMBOL vmlinux 0x029d2e7f of_parse_phandle_with_args -EXPORT_SYMBOL vmlinux 0x02a10990 dma_fence_enable_sw_signaling -EXPORT_SYMBOL vmlinux 0x02b8ab42 sg_copy_to_buffer -EXPORT_SYMBOL vmlinux 0x02c065f8 ucc_set_qe_mux_mii_mng -EXPORT_SYMBOL vmlinux 0x02cf76b5 input_mt_sync_frame -EXPORT_SYMBOL vmlinux 0x02da6f5f genphy_read_lpa -EXPORT_SYMBOL vmlinux 0x02e83474 ip6_dst_alloc -EXPORT_SYMBOL vmlinux 0x02eb3aba cleancache_register_ops -EXPORT_SYMBOL vmlinux 0x0320e315 mdiobus_get_phy -EXPORT_SYMBOL vmlinux 0x03310300 nf_hook_slow -EXPORT_SYMBOL vmlinux 0x0334795d icst307_s2div -EXPORT_SYMBOL vmlinux 0x0334da4e scsi_command_size_tbl -EXPORT_SYMBOL vmlinux 0x0354a0f3 sk_capable -EXPORT_SYMBOL vmlinux 0x035fa4b9 dma_fence_signal_timestamp_locked -EXPORT_SYMBOL vmlinux 0x0360d67f make_flow_keys_digest -EXPORT_SYMBOL vmlinux 0x0366307a console_suspend_enabled -EXPORT_SYMBOL vmlinux 0x036bdc30 dma_fence_add_callback -EXPORT_SYMBOL vmlinux 0x03753794 seq_dentry -EXPORT_SYMBOL vmlinux 0x037a0cba kfree -EXPORT_SYMBOL vmlinux 0x03815f35 ledtrig_disk_activity -EXPORT_SYMBOL vmlinux 0x0382ddca __dev_set_mtu -EXPORT_SYMBOL vmlinux 0x038e7154 dev_load -EXPORT_SYMBOL vmlinux 0x0397edd5 fb_edid_to_monspecs -EXPORT_SYMBOL vmlinux 0x0398dd1d seq_puts -EXPORT_SYMBOL vmlinux 0x03b06aa4 netdev_set_sb_channel -EXPORT_SYMBOL vmlinux 0x03b54bb6 sock_set_sndtimeo -EXPORT_SYMBOL vmlinux 0x03bf0e5a acpi_walk_resource_buffer -EXPORT_SYMBOL vmlinux 0x03bff36b pnp_activate_dev -EXPORT_SYMBOL vmlinux 0x03ca5333 generic_pipe_buf_get -EXPORT_SYMBOL vmlinux 0x03ddb6d1 ptp_find_pin -EXPORT_SYMBOL vmlinux 0x03e14a45 security_sock_rcv_skb -EXPORT_SYMBOL vmlinux 0x03e85365 get_user_pages_unlocked -EXPORT_SYMBOL vmlinux 0x03ead089 dev_pick_tx_cpu_id -EXPORT_SYMBOL vmlinux 0x03eaf538 md_write_end -EXPORT_SYMBOL vmlinux 0x03fd2571 vm_unmap_ram -EXPORT_SYMBOL vmlinux 0x040912cd skb_recv_datagram -EXPORT_SYMBOL vmlinux 0x0417bd8b bd_abort_claiming -EXPORT_SYMBOL vmlinux 0x042051f0 dup_iter -EXPORT_SYMBOL vmlinux 0x04482cdb __refrigerator -EXPORT_SYMBOL vmlinux 0x044ca8db rproc_free -EXPORT_SYMBOL vmlinux 0x044f2d3d cdrom_ioctl -EXPORT_SYMBOL vmlinux 0x045e4191 __dev_get_by_index -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 0x0484c6c4 acpi_enter_sleep_state_prep -EXPORT_SYMBOL vmlinux 0x04850eb6 jbd2_journal_get_write_access -EXPORT_SYMBOL vmlinux 0x04863e28 hdmi_audio_infoframe_pack_only -EXPORT_SYMBOL vmlinux 0x04867855 dquot_get_state -EXPORT_SYMBOL vmlinux 0x04895ddb bio_chain -EXPORT_SYMBOL vmlinux 0x048f4224 locks_init_lock -EXPORT_SYMBOL vmlinux 0x04929834 gnet_stats_copy_rate_est -EXPORT_SYMBOL vmlinux 0x04acd441 sk_dst_check -EXPORT_SYMBOL vmlinux 0x04c164ac vfs_fileattr_get -EXPORT_SYMBOL vmlinux 0x04cfcb26 netdev_master_upper_dev_link -EXPORT_SYMBOL vmlinux 0x04d9bf4e blk_set_stacking_limits -EXPORT_SYMBOL vmlinux 0x04dacb7b sock_diag_put_filterinfo -EXPORT_SYMBOL vmlinux 0x04db37c6 mdio_find_bus -EXPORT_SYMBOL vmlinux 0x04e4931d fs_lookup_param -EXPORT_SYMBOL vmlinux 0x04ea5d10 ksize -EXPORT_SYMBOL vmlinux 0x04f42d26 blk_post_runtime_suspend -EXPORT_SYMBOL vmlinux 0x050558fd mempool_resize -EXPORT_SYMBOL vmlinux 0x050877b9 dmi_first_match -EXPORT_SYMBOL vmlinux 0x0518d058 jbd2_journal_inode_ranged_write -EXPORT_SYMBOL vmlinux 0x05194496 bio_copy_data -EXPORT_SYMBOL vmlinux 0x051a864a __cancel_dirty_page -EXPORT_SYMBOL vmlinux 0x05240ee7 percpu_counter_batch -EXPORT_SYMBOL vmlinux 0x053533bc __skb_warn_lro_forwarding -EXPORT_SYMBOL vmlinux 0x054496b4 schedule_timeout_interruptible -EXPORT_SYMBOL vmlinux 0x0553c7e4 rproc_detach -EXPORT_SYMBOL vmlinux 0x055e77e8 jiffies_64 -EXPORT_SYMBOL vmlinux 0x0563425f zerocopy_sg_from_iter -EXPORT_SYMBOL vmlinux 0x056d94f3 migrate_page -EXPORT_SYMBOL vmlinux 0x05741c53 scm_detach_fds -EXPORT_SYMBOL vmlinux 0x0579610d dquot_claim_space_nodirty -EXPORT_SYMBOL vmlinux 0x058d44af sk_wait_data -EXPORT_SYMBOL vmlinux 0x059da0bd param_ops_bint -EXPORT_SYMBOL vmlinux 0x05b19fcb napi_complete_done -EXPORT_SYMBOL vmlinux 0x05bc4318 bio_kmalloc -EXPORT_SYMBOL vmlinux 0x05c14300 mr_table_dump -EXPORT_SYMBOL vmlinux 0x05c904ac devfreq_register_notifier -EXPORT_SYMBOL vmlinux 0x05ce5fd4 gen_pool_best_fit -EXPORT_SYMBOL vmlinux 0x05d2a3f6 __acpi_mdiobus_register -EXPORT_SYMBOL vmlinux 0x05df743f inet_csk_reqsk_queue_drop_and_put -EXPORT_SYMBOL vmlinux 0x05e3f007 ip_fraglist_prepare -EXPORT_SYMBOL vmlinux 0x05e9d311 xattr_full_name -EXPORT_SYMBOL vmlinux 0x05fc8b61 __dev_kfree_skb_any -EXPORT_SYMBOL vmlinux 0x05fdd291 jbd2_journal_start_commit -EXPORT_SYMBOL vmlinux 0x05ff4002 twl6040_get_vibralr_status -EXPORT_SYMBOL vmlinux 0x061651be strcat -EXPORT_SYMBOL vmlinux 0x0626f86f netlink_unicast -EXPORT_SYMBOL vmlinux 0x0634100a bitmap_parselist_user -EXPORT_SYMBOL vmlinux 0x063e6023 tty_port_put -EXPORT_SYMBOL vmlinux 0x0643c671 fwnode_mdio_find_device -EXPORT_SYMBOL vmlinux 0x0645887a phy_write_mmd -EXPORT_SYMBOL vmlinux 0x065a8053 sg_miter_skip -EXPORT_SYMBOL vmlinux 0x0668b595 _kstrtoul -EXPORT_SYMBOL vmlinux 0x069b7e5a get_vm_area -EXPORT_SYMBOL vmlinux 0x06abdc67 tcp_conn_request -EXPORT_SYMBOL vmlinux 0x06b05e34 dm_put_device -EXPORT_SYMBOL vmlinux 0x06b60e8f inc_zone_page_state -EXPORT_SYMBOL vmlinux 0x06bd88b5 ucs2_strnlen -EXPORT_SYMBOL vmlinux 0x06be4550 request_firmware_into_buf -EXPORT_SYMBOL vmlinux 0x06d03853 ___pskb_trim -EXPORT_SYMBOL vmlinux 0x06ee5ceb register_framebuffer -EXPORT_SYMBOL vmlinux 0x0711edc8 xudma_dev_get_tisci_rm -EXPORT_SYMBOL vmlinux 0x07251f02 simple_get_link -EXPORT_SYMBOL vmlinux 0x072f901c vme_master_rmw -EXPORT_SYMBOL vmlinux 0x0781ec97 logic_insl -EXPORT_SYMBOL vmlinux 0x07945201 input_unregister_device -EXPORT_SYMBOL vmlinux 0x07a890c8 fb_alloc_cmap -EXPORT_SYMBOL vmlinux 0x07b01b24 unregister_qdisc -EXPORT_SYMBOL vmlinux 0x07bfe499 phy_write_paged -EXPORT_SYMBOL vmlinux 0x07c20ded i2c_smbus_read_byte_data -EXPORT_SYMBOL vmlinux 0x07c92a02 unlock_rename -EXPORT_SYMBOL vmlinux 0x07cc4a5d printk_timed_ratelimit -EXPORT_SYMBOL vmlinux 0x07cee727 kern_path_create -EXPORT_SYMBOL vmlinux 0x07db17be qman_create_fq -EXPORT_SYMBOL vmlinux 0x07f57478 pci_unmap_iospace -EXPORT_SYMBOL vmlinux 0x0805f2c8 ecryptfs_get_auth_tok_key -EXPORT_SYMBOL vmlinux 0x080e3d04 alloc_file_pseudo -EXPORT_SYMBOL vmlinux 0x081a82a2 ipv6_chk_addr -EXPORT_SYMBOL vmlinux 0x08249512 iwe_stream_add_point -EXPORT_SYMBOL vmlinux 0x08256619 kmem_cache_size -EXPORT_SYMBOL vmlinux 0x082b42bb rproc_boot -EXPORT_SYMBOL vmlinux 0x082c3213 pci_root_buses -EXPORT_SYMBOL vmlinux 0x082cf616 nexthop_bucket_set_hw_flags -EXPORT_SYMBOL vmlinux 0x082e256b blk_queue_max_discard_sectors -EXPORT_SYMBOL vmlinux 0x08356f32 fman_sp_set_buf_pools_in_asc_order_of_buf_sizes -EXPORT_SYMBOL vmlinux 0x083eb21c rfkill_unregister -EXPORT_SYMBOL vmlinux 0x0854ba90 mutex_trylock -EXPORT_SYMBOL vmlinux 0x0860bd15 mr_fill_mroute -EXPORT_SYMBOL vmlinux 0x0865469d fb_set_var -EXPORT_SYMBOL vmlinux 0x086b7956 phy_connect_direct -EXPORT_SYMBOL vmlinux 0x087485d7 acpi_dev_get_next_match_dev -EXPORT_SYMBOL vmlinux 0x0882a449 security_xfrm_policy_alloc -EXPORT_SYMBOL vmlinux 0x088caa78 skb_flow_dissect_hash -EXPORT_SYMBOL vmlinux 0x0898d2ca skb_copy_and_csum_bits -EXPORT_SYMBOL vmlinux 0x089c1bfc __brelse -EXPORT_SYMBOL vmlinux 0x08ba35c1 gnet_stats_copy_basic_hw -EXPORT_SYMBOL vmlinux 0x08cf5200 seq_read_iter -EXPORT_SYMBOL vmlinux 0x08e39398 cmd_db_read_addr -EXPORT_SYMBOL vmlinux 0x08eefc1c ptp_clock_event -EXPORT_SYMBOL vmlinux 0x09039a91 fman_get_qman_channel_id -EXPORT_SYMBOL vmlinux 0x090d0a04 inet_csk_reqsk_queue_drop -EXPORT_SYMBOL vmlinux 0x091c46ee inode_newsize_ok -EXPORT_SYMBOL vmlinux 0x092b699c __ip_options_compile -EXPORT_SYMBOL vmlinux 0x092e26bf acpi_remove_address_space_handler -EXPORT_SYMBOL vmlinux 0x09312d90 scsi_is_sdev_device -EXPORT_SYMBOL vmlinux 0x093712e5 acpi_purge_cached_objects -EXPORT_SYMBOL vmlinux 0x093be483 __genphy_config_aneg -EXPORT_SYMBOL vmlinux 0x09497a53 cdev_alloc -EXPORT_SYMBOL vmlinux 0x0955649f prepare_to_swait_exclusive -EXPORT_SYMBOL vmlinux 0x09694db6 register_sysctl_table -EXPORT_SYMBOL vmlinux 0x096c4811 jbd2_journal_force_commit -EXPORT_SYMBOL vmlinux 0x096d2564 xfrm6_input_addr -EXPORT_SYMBOL vmlinux 0x0974029c neigh_seq_next -EXPORT_SYMBOL vmlinux 0x0975a8bf flow_rule_match_mpls -EXPORT_SYMBOL vmlinux 0x09769037 dmt_modes -EXPORT_SYMBOL vmlinux 0x097e073f pcim_iomap_regions -EXPORT_SYMBOL vmlinux 0x098b71c6 fb_dealloc_cmap -EXPORT_SYMBOL vmlinux 0x0998cc3c hdmi_infoframe_unpack -EXPORT_SYMBOL vmlinux 0x0999d059 scsi_remove_target -EXPORT_SYMBOL vmlinux 0x09b7a369 md_bitmap_start_sync -EXPORT_SYMBOL vmlinux 0x09d44df9 in_lock_functions -EXPORT_SYMBOL vmlinux 0x09d5d380 prepare_kernel_cred -EXPORT_SYMBOL vmlinux 0x09e85397 security_socket_getpeersec_dgram -EXPORT_SYMBOL vmlinux 0x09ee7657 devm_release_resource -EXPORT_SYMBOL vmlinux 0x09f9b261 xudma_rchan_put -EXPORT_SYMBOL vmlinux 0x09fe4b1c ps2_handle_response -EXPORT_SYMBOL vmlinux 0x0a012f73 mb_cache_entry_touch -EXPORT_SYMBOL vmlinux 0x0a013800 generic_mii_ioctl -EXPORT_SYMBOL vmlinux 0x0a01c3e8 pcie_capability_clear_and_set_dword -EXPORT_SYMBOL vmlinux 0x0a0bd057 md_error -EXPORT_SYMBOL vmlinux 0x0a1dbc76 tcp_rx_skb_cache_key -EXPORT_SYMBOL vmlinux 0x0a1e7988 of_device_register -EXPORT_SYMBOL vmlinux 0x0a2c3682 unlock_new_inode -EXPORT_SYMBOL vmlinux 0x0a3d9fe0 first_ec -EXPORT_SYMBOL vmlinux 0x0a4792b8 page_zero_new_buffers -EXPORT_SYMBOL vmlinux 0x0a7130d3 inet_add_protocol -EXPORT_SYMBOL vmlinux 0x0a770832 register_memory_notifier -EXPORT_SYMBOL vmlinux 0x0a9d3a0e pci_irq_get_affinity -EXPORT_SYMBOL vmlinux 0x0aa309cf synchronize_hardirq -EXPORT_SYMBOL vmlinux 0x0aaccc92 pci_remap_iospace -EXPORT_SYMBOL vmlinux 0x0ab4f890 ip_defrag -EXPORT_SYMBOL vmlinux 0x0ab752b7 locks_lock_inode_wait -EXPORT_SYMBOL vmlinux 0x0abb18ca devfreq_add_governor -EXPORT_SYMBOL vmlinux 0x0acf7679 dma_issue_pending_all -EXPORT_SYMBOL vmlinux 0x0ad21906 free_netdev -EXPORT_SYMBOL vmlinux 0x0ae42277 netdev_lower_get_next_private_rcu -EXPORT_SYMBOL vmlinux 0x0af3b5c1 __cgroup_bpf_run_filter_skb -EXPORT_SYMBOL vmlinux 0x0b011572 skb_split -EXPORT_SYMBOL vmlinux 0x0b1beb31 vmalloc_32_user -EXPORT_SYMBOL vmlinux 0x0b1fe59a inet_release -EXPORT_SYMBOL vmlinux 0x0b243505 devm_ioport_unmap -EXPORT_SYMBOL vmlinux 0x0b26b8c8 acpi_run_osc -EXPORT_SYMBOL vmlinux 0x0b457a46 mmc_hw_reset -EXPORT_SYMBOL vmlinux 0x0b695f22 netlink_kernel_release -EXPORT_SYMBOL vmlinux 0x0b742fd7 simple_strtol -EXPORT_SYMBOL vmlinux 0x0b7dfd65 phy_start_cable_test -EXPORT_SYMBOL vmlinux 0x0b7ef291 tso_start -EXPORT_SYMBOL vmlinux 0x0b9bd02e __xa_set_mark -EXPORT_SYMBOL vmlinux 0x0ba0b938 vm_brk -EXPORT_SYMBOL vmlinux 0x0ba45d79 scsi_print_command -EXPORT_SYMBOL vmlinux 0x0bb605c7 nd_region_acquire_lane -EXPORT_SYMBOL vmlinux 0x0bc477a2 irq_set_irq_type -EXPORT_SYMBOL vmlinux 0x0bcc241a devm_ioremap_np -EXPORT_SYMBOL vmlinux 0x0bdd36da tcf_unregister_action -EXPORT_SYMBOL vmlinux 0x0bf0e4a2 __SCK__tp_func_spi_transfer_stop -EXPORT_SYMBOL vmlinux 0x0bf62238 rtc_add_groups -EXPORT_SYMBOL vmlinux 0x0bf67ed1 pin_user_pages_locked -EXPORT_SYMBOL vmlinux 0x0bf77b23 pci_back_from_sleep -EXPORT_SYMBOL vmlinux 0x0bfc1d1a check_zeroed_user -EXPORT_SYMBOL vmlinux 0x0bfcb30b reuseport_attach_prog -EXPORT_SYMBOL vmlinux 0x0c02cfdb ip6_find_1stfragopt -EXPORT_SYMBOL vmlinux 0x0c0e70ba iproc_msi_exit -EXPORT_SYMBOL vmlinux 0x0c0f79af ZSTD_getDictID_fromFrame -EXPORT_SYMBOL vmlinux 0x0c238a7d __find_get_block -EXPORT_SYMBOL vmlinux 0x0c25ec48 secure_tcpv6_seq -EXPORT_SYMBOL vmlinux 0x0c3690fc _raw_spin_lock_bh -EXPORT_SYMBOL vmlinux 0x0c3e0bf9 register_netdevice_notifier_dev_net -EXPORT_SYMBOL vmlinux 0x0c4f625d downgrade_write -EXPORT_SYMBOL vmlinux 0x0c521526 dm_kobject_release -EXPORT_SYMBOL vmlinux 0x0c54d75e tty_port_tty_get -EXPORT_SYMBOL vmlinux 0x0c583576 init_pseudo -EXPORT_SYMBOL vmlinux 0x0c66ff98 blk_queue_logical_block_size -EXPORT_SYMBOL vmlinux 0x0c6bdc3f vme_master_read -EXPORT_SYMBOL vmlinux 0x0c7fec48 free_xenballooned_pages -EXPORT_SYMBOL vmlinux 0x0c89f7c3 pskb_expand_head -EXPORT_SYMBOL vmlinux 0x0c907688 dma_get_sgtable_attrs -EXPORT_SYMBOL vmlinux 0x0c93cc70 textsearch_register -EXPORT_SYMBOL vmlinux 0x0ca3a780 alloc_xenballooned_pages -EXPORT_SYMBOL vmlinux 0x0ca99b44 sock_alloc_send_skb -EXPORT_SYMBOL vmlinux 0x0cb11bc7 __SCK__tp_func_dma_fence_enable_signal -EXPORT_SYMBOL vmlinux 0x0cb71d49 xfrm_sad_getinfo -EXPORT_SYMBOL vmlinux 0x0cbf1b42 devfreq_remove_device -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 0x0cdecaf5 dquot_quota_on_mount -EXPORT_SYMBOL vmlinux 0x0cdf1eef touchscreen_report_pos -EXPORT_SYMBOL vmlinux 0x0d03b574 vme_master_mmap -EXPORT_SYMBOL vmlinux 0x0d03d1da submit_bh -EXPORT_SYMBOL vmlinux 0x0d07f543 get_anon_bdev -EXPORT_SYMBOL vmlinux 0x0d1a9246 netpoll_send_udp -EXPORT_SYMBOL vmlinux 0x0d2ca20f ucc_fast_get_qe_cr_subblock -EXPORT_SYMBOL vmlinux 0x0d3f5c1a fman_get_max_frm -EXPORT_SYMBOL vmlinux 0x0d3f8934 sock_kfree_s -EXPORT_SYMBOL vmlinux 0x0d4133d7 kern_unmount_array -EXPORT_SYMBOL vmlinux 0x0d542439 __ipv6_addr_type -EXPORT_SYMBOL vmlinux 0x0d61eeee __bitmap_subset -EXPORT_SYMBOL vmlinux 0x0d69b639 rproc_elf_load_rsc_table -EXPORT_SYMBOL vmlinux 0x0db85b4c lookup_one_len_unlocked -EXPORT_SYMBOL vmlinux 0x0dcd2a79 phy_attached_print -EXPORT_SYMBOL vmlinux 0x0dd24606 set_cached_acl -EXPORT_SYMBOL vmlinux 0x0ddc8f15 ipmi_platform_add -EXPORT_SYMBOL vmlinux 0x0dee84cd unix_detach_fds -EXPORT_SYMBOL vmlinux 0x0e15a744 xp_dma_unmap -EXPORT_SYMBOL vmlinux 0x0e17678a siphash_4u64 -EXPORT_SYMBOL vmlinux 0x0e24c1c1 nvdimm_namespace_common_probe -EXPORT_SYMBOL vmlinux 0x0e2a573c skb_udp_tunnel_segment -EXPORT_SYMBOL vmlinux 0x0e4262c6 __siphash_unaligned -EXPORT_SYMBOL vmlinux 0x0e654eaf sync_file_get_fence -EXPORT_SYMBOL vmlinux 0x0e68e6bf simple_transaction_set -EXPORT_SYMBOL vmlinux 0x0e74ad2d utf8ncursor -EXPORT_SYMBOL vmlinux 0x0e7870a6 set_disk_ro -EXPORT_SYMBOL vmlinux 0x0e8e195a down_read_trylock -EXPORT_SYMBOL vmlinux 0x0ea02d48 prepare_to_wait_exclusive -EXPORT_SYMBOL vmlinux 0x0ea3c74e tasklet_kill -EXPORT_SYMBOL vmlinux 0x0ea593f6 hdmi_drm_infoframe_init -EXPORT_SYMBOL vmlinux 0x0ead3213 dmam_alloc_attrs -EXPORT_SYMBOL vmlinux 0x0eb6eb87 add_taint -EXPORT_SYMBOL vmlinux 0x0ec11046 of_count_phandle_with_args -EXPORT_SYMBOL vmlinux 0x0ec5babe vme_dma_free -EXPORT_SYMBOL vmlinux 0x0edf56ed dev_mc_del -EXPORT_SYMBOL vmlinux 0x0ef0dc39 ethtool_rx_flow_rule_create -EXPORT_SYMBOL vmlinux 0x0f09cc34 schedule_timeout_killable -EXPORT_SYMBOL vmlinux 0x0f18fba4 kmem_cache_alloc_trace -EXPORT_SYMBOL vmlinux 0x0f1ad8e2 seq_list_start_rcu -EXPORT_SYMBOL vmlinux 0x0f31b16a __free_pages -EXPORT_SYMBOL vmlinux 0x0f35d977 nf_log_packet -EXPORT_SYMBOL vmlinux 0x0f37b996 radix_tree_iter_delete -EXPORT_SYMBOL vmlinux 0x0f395f82 I_BDEV -EXPORT_SYMBOL vmlinux 0x0f4dbb95 ip_mc_join_group -EXPORT_SYMBOL vmlinux 0x0f523d11 mii_ethtool_gset -EXPORT_SYMBOL vmlinux 0x0f5e9f79 md_done_sync -EXPORT_SYMBOL vmlinux 0x0f5eb6b9 pci_enable_atomic_ops_to_root -EXPORT_SYMBOL vmlinux 0x0f766280 mmc_can_gpio_ro -EXPORT_SYMBOL vmlinux 0x0f815e2b stop_tty -EXPORT_SYMBOL vmlinux 0x0f86f560 kthread_delayed_work_timer_fn -EXPORT_SYMBOL vmlinux 0x0f9797e9 elv_rb_find -EXPORT_SYMBOL vmlinux 0x0fab1ab0 hdmi_spd_infoframe_pack -EXPORT_SYMBOL vmlinux 0x0fb2f8a4 mktime64 -EXPORT_SYMBOL vmlinux 0x0fbbdb44 of_pci_range_to_resource -EXPORT_SYMBOL vmlinux 0x0fc10284 vme_dma_request -EXPORT_SYMBOL vmlinux 0x0fcb3e0a fasync_helper -EXPORT_SYMBOL vmlinux 0x0fd071f6 vfs_parse_fs_string -EXPORT_SYMBOL vmlinux 0x0fd902db mb_cache_entry_create -EXPORT_SYMBOL vmlinux 0x0fef526e locks_copy_conflock -EXPORT_SYMBOL vmlinux 0x0ffbd278 devfreq_monitor_start -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 0x10312612 vfs_iter_write -EXPORT_SYMBOL vmlinux 0x1035c7c2 __release_region -EXPORT_SYMBOL vmlinux 0x1049fd89 mii_ethtool_set_link_ksettings -EXPORT_SYMBOL vmlinux 0x1051555a mmc_can_secure_erase_trim -EXPORT_SYMBOL vmlinux 0x1057a279 bsearch -EXPORT_SYMBOL vmlinux 0x1068004b gf128mul_bbe -EXPORT_SYMBOL vmlinux 0x107be0b0 percpu_counter_sync -EXPORT_SYMBOL vmlinux 0x107e5878 zlib_inflateEnd -EXPORT_SYMBOL vmlinux 0x1094add2 nf_log_unset -EXPORT_SYMBOL vmlinux 0x10b56ae0 netdev_set_tc_queue -EXPORT_SYMBOL vmlinux 0x10c479c9 flow_indr_dev_setup_offload -EXPORT_SYMBOL vmlinux 0x10c9bbfc mutex_lock_killable -EXPORT_SYMBOL vmlinux 0x10ccff44 reuseport_add_sock -EXPORT_SYMBOL vmlinux 0x10d1295d seq_release -EXPORT_SYMBOL vmlinux 0x10d73984 dev_open -EXPORT_SYMBOL vmlinux 0x10d9f885 scsi_sense_desc_find -EXPORT_SYMBOL vmlinux 0x10e6f74a free_contig_range -EXPORT_SYMBOL vmlinux 0x10ecbeae sock_cmsg_send -EXPORT_SYMBOL vmlinux 0x110513e8 inet_rtx_syn_ack -EXPORT_SYMBOL vmlinux 0x1106c2fd of_get_mac_address -EXPORT_SYMBOL vmlinux 0x11089ac7 _ctype -EXPORT_SYMBOL vmlinux 0x111c6a0c blk_mq_run_hw_queue -EXPORT_SYMBOL vmlinux 0x112b8cd9 kfree_skb_list -EXPORT_SYMBOL vmlinux 0x113e0482 sock_set_reuseport -EXPORT_SYMBOL vmlinux 0x114f5caf sock_no_sendpage -EXPORT_SYMBOL vmlinux 0x1161ecd4 inet_proto_csum_replace16 -EXPORT_SYMBOL vmlinux 0x116f9cda of_phy_register_fixed_link -EXPORT_SYMBOL vmlinux 0x117093be qdisc_class_hash_init -EXPORT_SYMBOL vmlinux 0x11858dd7 of_device_unregister -EXPORT_SYMBOL vmlinux 0x118d3ceb serial8250_do_pm -EXPORT_SYMBOL vmlinux 0x11c303ba commit_creds -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 0x11e595cd mfd_cell_enable -EXPORT_SYMBOL vmlinux 0x11eeed0b pci_alloc_host_bridge -EXPORT_SYMBOL vmlinux 0x11f055f9 __serio_register_driver -EXPORT_SYMBOL vmlinux 0x11f47d8c utf8_strncmp -EXPORT_SYMBOL vmlinux 0x11fdfd24 phy_free_interrupt -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 0x121b899b skb_orphan_partial -EXPORT_SYMBOL vmlinux 0x121cca7c flow_rule_match_enc_keyid -EXPORT_SYMBOL vmlinux 0x122bdaf5 vme_irq_free -EXPORT_SYMBOL vmlinux 0x124bad4d kstrtobool -EXPORT_SYMBOL vmlinux 0x125c1807 md_wakeup_thread -EXPORT_SYMBOL vmlinux 0x129f0e5d mfd_add_devices -EXPORT_SYMBOL vmlinux 0x12a4e128 __arch_copy_from_user -EXPORT_SYMBOL vmlinux 0x12a5690c pci_find_next_bus -EXPORT_SYMBOL vmlinux 0x12cabc89 siphash_2u64 -EXPORT_SYMBOL vmlinux 0x12e42a86 remove_watch_from_object -EXPORT_SYMBOL vmlinux 0x12ecca8b msi_desc_to_pci_dev -EXPORT_SYMBOL vmlinux 0x12f6f69c fb_videomode_to_var -EXPORT_SYMBOL vmlinux 0x12f7d0ac security_binder_transfer_binder -EXPORT_SYMBOL vmlinux 0x130afd75 acpi_get_sleep_type_data -EXPORT_SYMBOL vmlinux 0x13110126 request_resource -EXPORT_SYMBOL vmlinux 0x131d62c2 of_get_next_parent -EXPORT_SYMBOL vmlinux 0x131ff5e2 genphy_handle_interrupt_no_ack -EXPORT_SYMBOL vmlinux 0x1321c58f tcp_mmap -EXPORT_SYMBOL vmlinux 0x13243d4b wl1251_get_platform_data -EXPORT_SYMBOL vmlinux 0x132b582c fb_prepare_logo -EXPORT_SYMBOL vmlinux 0x132f9599 vme_dma_list_free -EXPORT_SYMBOL vmlinux 0x133560c3 pci_set_power_state -EXPORT_SYMBOL vmlinux 0x1340e49f proc_create -EXPORT_SYMBOL vmlinux 0x134869a9 flow_block_cb_setup_simple -EXPORT_SYMBOL vmlinux 0x134cdd34 inet_frag_rbtree_purge -EXPORT_SYMBOL vmlinux 0x1353f673 ilookup5_nowait -EXPORT_SYMBOL vmlinux 0x136c7b7f scsi_block_requests -EXPORT_SYMBOL vmlinux 0x136f80a3 __mdiobus_write -EXPORT_SYMBOL vmlinux 0x136fb373 flow_indr_dev_unregister -EXPORT_SYMBOL vmlinux 0x13824ead vfs_mknod -EXPORT_SYMBOL vmlinux 0x1387d183 genphy_setup_forced -EXPORT_SYMBOL vmlinux 0x138bdd96 cpumask_next -EXPORT_SYMBOL vmlinux 0x13922fe7 follow_pfn -EXPORT_SYMBOL vmlinux 0x1396e5b7 vme_irq_generate -EXPORT_SYMBOL vmlinux 0x1399f7b7 scsi_print_result -EXPORT_SYMBOL vmlinux 0x139a1f37 key_reject_and_link -EXPORT_SYMBOL vmlinux 0x139f2189 __kfifo_alloc -EXPORT_SYMBOL vmlinux 0x13ad6b02 pagecache_write_end -EXPORT_SYMBOL vmlinux 0x13b09303 no_llseek -EXPORT_SYMBOL vmlinux 0x13c496cf crypto_sha512_update -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 0x13dd8fa6 iov_iter_zero -EXPORT_SYMBOL vmlinux 0x13dda5bd pci_stop_and_remove_bus_device -EXPORT_SYMBOL vmlinux 0x13e7c53f page_pool_update_nid -EXPORT_SYMBOL vmlinux 0x1405bf57 input_set_capability -EXPORT_SYMBOL vmlinux 0x140fef2c bdi_alloc -EXPORT_SYMBOL vmlinux 0x141271bf acpi_dev_found -EXPORT_SYMBOL vmlinux 0x1435c5ce __SCK__tp_func_kmalloc_node -EXPORT_SYMBOL vmlinux 0x1437479e param_get_ulong -EXPORT_SYMBOL vmlinux 0x14605535 dma_fence_context_alloc -EXPORT_SYMBOL vmlinux 0x14613613 fb_get_mode -EXPORT_SYMBOL vmlinux 0x146289b7 crc16_table -EXPORT_SYMBOL vmlinux 0x147c63d3 __xfrm_route_forward -EXPORT_SYMBOL vmlinux 0x1490a23e tcf_idr_search -EXPORT_SYMBOL vmlinux 0x14b89635 arm64_const_caps_ready -EXPORT_SYMBOL vmlinux 0x14c1ef45 xsk_clear_tx_need_wakeup -EXPORT_SYMBOL vmlinux 0x14c67e3e tcp_tx_delay_enabled -EXPORT_SYMBOL vmlinux 0x14cb25b1 clkdev_add -EXPORT_SYMBOL vmlinux 0x14ced76e nla_reserve_nohdr -EXPORT_SYMBOL vmlinux 0x14f3c723 sock_kzfree_s -EXPORT_SYMBOL vmlinux 0x14f45fcc bman_free_pool -EXPORT_SYMBOL vmlinux 0x150a5672 mii_link_ok -EXPORT_SYMBOL vmlinux 0x1512e0ea ida_destroy -EXPORT_SYMBOL vmlinux 0x151f4898 schedule_timeout_uninterruptible -EXPORT_SYMBOL vmlinux 0x1522445c seq_vprintf -EXPORT_SYMBOL vmlinux 0x1526b301 unix_tot_inflight -EXPORT_SYMBOL vmlinux 0x1535b4e5 xa_find_after -EXPORT_SYMBOL vmlinux 0x15431161 __generic_file_write_iter -EXPORT_SYMBOL vmlinux 0x15496cb4 udp_prot -EXPORT_SYMBOL vmlinux 0x154ade50 netdev_upper_get_next_dev_rcu -EXPORT_SYMBOL vmlinux 0x154c6338 dm_kcopyd_client_destroy -EXPORT_SYMBOL vmlinux 0x1559599f inet_frag_kill -EXPORT_SYMBOL vmlinux 0x15607897 __neigh_set_probe_once -EXPORT_SYMBOL vmlinux 0x157ac2fa input_event -EXPORT_SYMBOL vmlinux 0x158ef27d __invalidate_device -EXPORT_SYMBOL vmlinux 0x15a86767 bdi_set_max_ratio -EXPORT_SYMBOL vmlinux 0x15ba50a6 jiffies -EXPORT_SYMBOL vmlinux 0x15bafe29 unregister_md_cluster_operations -EXPORT_SYMBOL vmlinux 0x15bed7a5 LZ4_decompress_safe_partial -EXPORT_SYMBOL vmlinux 0x15c25114 kern_unmount -EXPORT_SYMBOL vmlinux 0x15d7d10e devfreq_register_opp_notifier -EXPORT_SYMBOL vmlinux 0x15e372a5 phy_connect -EXPORT_SYMBOL vmlinux 0x15e5f42f inet_frags_init -EXPORT_SYMBOL vmlinux 0x15e6d3c4 __hw_addr_ref_unsync_dev -EXPORT_SYMBOL vmlinux 0x15f90688 slhc_init -EXPORT_SYMBOL vmlinux 0x16038840 devm_mdiobus_alloc_size -EXPORT_SYMBOL vmlinux 0x160b9c62 alloc_fddidev -EXPORT_SYMBOL vmlinux 0x162893fd hashlen_string -EXPORT_SYMBOL vmlinux 0x16316a10 ZSTD_getFrameContentSize -EXPORT_SYMBOL vmlinux 0x1632bc21 kvasprintf_const -EXPORT_SYMBOL vmlinux 0x163d2417 tegra_io_rail_power_off -EXPORT_SYMBOL vmlinux 0x1652772c mfd_remove_devices_late -EXPORT_SYMBOL vmlinux 0x16759abf __insert_inode_hash -EXPORT_SYMBOL vmlinux 0x167c5967 print_hex_dump -EXPORT_SYMBOL vmlinux 0x169938c1 __sysfs_match_string -EXPORT_SYMBOL vmlinux 0x169fd43f pci_disable_device -EXPORT_SYMBOL vmlinux 0x16b04ae7 tag_pages_for_writeback -EXPORT_SYMBOL vmlinux 0x16ba67ad netdev_upper_dev_link -EXPORT_SYMBOL vmlinux 0x16bf28cd devfreq_recommended_opp -EXPORT_SYMBOL vmlinux 0x16c4accd __phy_write_mmd -EXPORT_SYMBOL vmlinux 0x16cdc340 acpi_get_table -EXPORT_SYMBOL vmlinux 0x16e297c3 bit_wait -EXPORT_SYMBOL vmlinux 0x16e7e2cb cpu_all_bits -EXPORT_SYMBOL vmlinux 0x16f6243e skb_trim -EXPORT_SYMBOL vmlinux 0x16fd6898 rproc_of_parse_firmware -EXPORT_SYMBOL vmlinux 0x170ddf79 acpi_install_notify_handler -EXPORT_SYMBOL vmlinux 0x171a105d pci_alloc_dev -EXPORT_SYMBOL vmlinux 0x173779b0 hmm_range_fault -EXPORT_SYMBOL vmlinux 0x17441034 idr_get_next_ul -EXPORT_SYMBOL vmlinux 0x177db9be param_set_charp -EXPORT_SYMBOL vmlinux 0x17825d3f xudma_rchan_get -EXPORT_SYMBOL vmlinux 0x178c4894 qe_upload_firmware -EXPORT_SYMBOL vmlinux 0x17b03307 pm8606_osc_enable -EXPORT_SYMBOL vmlinux 0x17bb5810 security_binder_transfer_file -EXPORT_SYMBOL vmlinux 0x17beda86 ps2_init -EXPORT_SYMBOL vmlinux 0x17c679a1 tty_name -EXPORT_SYMBOL vmlinux 0x17dc9872 xfrm_policy_insert -EXPORT_SYMBOL vmlinux 0x17eb723d __SetPageMovable -EXPORT_SYMBOL vmlinux 0x17ecf294 param_ops_byte -EXPORT_SYMBOL vmlinux 0x1818e9c6 vme_slot_num -EXPORT_SYMBOL vmlinux 0x182ff9f8 ndo_dflt_fdb_del -EXPORT_SYMBOL vmlinux 0x183064a3 of_phy_deregister_fixed_link -EXPORT_SYMBOL vmlinux 0x18345b8e __bitmap_replace -EXPORT_SYMBOL vmlinux 0x1836dc74 kobject_init -EXPORT_SYMBOL vmlinux 0x1837f489 tty_devnum -EXPORT_SYMBOL vmlinux 0x184fb3a1 ip_frag_next -EXPORT_SYMBOL vmlinux 0x185c1012 mipi_dsi_device_register_full -EXPORT_SYMBOL vmlinux 0x18611545 jbd2_log_start_commit -EXPORT_SYMBOL vmlinux 0x187884a8 cpm_muram_free -EXPORT_SYMBOL vmlinux 0x188ea314 jiffies_to_timespec64 -EXPORT_SYMBOL vmlinux 0x18a7d2ca netdev_has_upper_dev -EXPORT_SYMBOL vmlinux 0x18b48e28 __memset_io -EXPORT_SYMBOL vmlinux 0x18bf2687 devm_extcon_register_notifier -EXPORT_SYMBOL vmlinux 0x18c261dd filp_open -EXPORT_SYMBOL vmlinux 0x18d70c59 xudma_get_device -EXPORT_SYMBOL vmlinux 0x18d7308b try_to_release_page -EXPORT_SYMBOL vmlinux 0x18e60984 __do_once_start -EXPORT_SYMBOL vmlinux 0x18e80e70 mipi_dsi_dcs_set_tear_scanline -EXPORT_SYMBOL vmlinux 0x19089690 cdev_set_parent -EXPORT_SYMBOL vmlinux 0x190a48a9 efi -EXPORT_SYMBOL vmlinux 0x192e60a3 kobject_get -EXPORT_SYMBOL vmlinux 0x1944a87d __cpuhp_setup_state -EXPORT_SYMBOL vmlinux 0x195d3930 gro_find_receive_by_type -EXPORT_SYMBOL vmlinux 0x1984d421 out_of_line_wait_on_bit -EXPORT_SYMBOL vmlinux 0x198620d7 security_add_mnt_opt -EXPORT_SYMBOL vmlinux 0x199b5caf scsi_remove_host -EXPORT_SYMBOL vmlinux 0x199ed0cd net_disable_timestamp -EXPORT_SYMBOL vmlinux 0x19bd383b security_secmark_refcount_dec -EXPORT_SYMBOL vmlinux 0x19caa7d3 mipi_dsi_host_register -EXPORT_SYMBOL vmlinux 0x19dd6aa7 single_release -EXPORT_SYMBOL vmlinux 0x1a12db9c jbd2_journal_unlock_updates -EXPORT_SYMBOL vmlinux 0x1a160c83 prepare_to_swait_event -EXPORT_SYMBOL vmlinux 0x1a1bac9c ZSTD_decompressDCtx -EXPORT_SYMBOL vmlinux 0x1a32cc2b tegra_ivc_reset -EXPORT_SYMBOL vmlinux 0x1a3e27f3 dev_mc_add -EXPORT_SYMBOL vmlinux 0x1a45cb6c acpi_disabled -EXPORT_SYMBOL vmlinux 0x1a485f64 skb_copy_and_hash_datagram_iter -EXPORT_SYMBOL vmlinux 0x1a514e42 kernel_sock_ip_overhead -EXPORT_SYMBOL vmlinux 0x1a5249c5 component_match_add_release -EXPORT_SYMBOL vmlinux 0x1a713fe1 send_sig_info -EXPORT_SYMBOL vmlinux 0x1a84ed40 mmc_can_trim -EXPORT_SYMBOL vmlinux 0x1a8f0efb unmap_mapping_range -EXPORT_SYMBOL vmlinux 0x1a97d12e genphy_resume -EXPORT_SYMBOL vmlinux 0x1a9a433c prandom_u32_state -EXPORT_SYMBOL vmlinux 0x1aaa196d scsi_scan_host -EXPORT_SYMBOL vmlinux 0x1ac5d3cb strcspn -EXPORT_SYMBOL vmlinux 0x1ad692af dma_unmap_page_attrs -EXPORT_SYMBOL vmlinux 0x1addc818 of_clk_get -EXPORT_SYMBOL vmlinux 0x1af4fc6b proc_create_single_data -EXPORT_SYMBOL vmlinux 0x1afefe10 phy_ethtool_get_strings -EXPORT_SYMBOL vmlinux 0x1b015d25 bitmap_parselist -EXPORT_SYMBOL vmlinux 0x1b04d047 ram_aops -EXPORT_SYMBOL vmlinux 0x1b19d454 devfreq_unregister_opp_notifier -EXPORT_SYMBOL vmlinux 0x1b1a04d9 __fib6_flush_trees -EXPORT_SYMBOL vmlinux 0x1b296f14 __traceiter_spi_transfer_start -EXPORT_SYMBOL vmlinux 0x1b390b57 posix_acl_to_xattr -EXPORT_SYMBOL vmlinux 0x1b3aa929 proc_do_large_bitmap -EXPORT_SYMBOL vmlinux 0x1b5196fc xudma_tchan_put -EXPORT_SYMBOL vmlinux 0x1b57ea0a configfs_unregister_group -EXPORT_SYMBOL vmlinux 0x1b597b7a swake_up_all -EXPORT_SYMBOL vmlinux 0x1b5c7328 skb_unlink -EXPORT_SYMBOL vmlinux 0x1b6314fd in_aton -EXPORT_SYMBOL vmlinux 0x1b777357 rdmacg_unregister_device -EXPORT_SYMBOL vmlinux 0x1b7afa5f radix_tree_delete -EXPORT_SYMBOL vmlinux 0x1b822265 input_allocate_device -EXPORT_SYMBOL vmlinux 0x1b87addf vm_mmap -EXPORT_SYMBOL vmlinux 0x1b8e3bf9 blk_mq_tagset_busy_iter -EXPORT_SYMBOL vmlinux 0x1b9ac04b mipi_dsi_turn_on_peripheral -EXPORT_SYMBOL vmlinux 0x1ba59527 __kmalloc_node -EXPORT_SYMBOL vmlinux 0x1bb51249 tcp_have_smc -EXPORT_SYMBOL vmlinux 0x1bb86b9a xen_start_info -EXPORT_SYMBOL vmlinux 0x1bcab7cf try_lookup_one_len -EXPORT_SYMBOL vmlinux 0x1bd59dbe vme_free_consistent -EXPORT_SYMBOL vmlinux 0x1c03b564 page_pool_release_page -EXPORT_SYMBOL vmlinux 0x1c06c4c6 twl6040_get_pll -EXPORT_SYMBOL vmlinux 0x1c06ca92 pipe_unlock -EXPORT_SYMBOL vmlinux 0x1c07610a fwnode_mdiobus_phy_device_register -EXPORT_SYMBOL vmlinux 0x1c180956 no_seek_end_llseek -EXPORT_SYMBOL vmlinux 0x1c2908e0 genphy_config_eee_advert -EXPORT_SYMBOL vmlinux 0x1c35bc03 neigh_resolve_output -EXPORT_SYMBOL vmlinux 0x1c38f0a2 tty_unregister_device -EXPORT_SYMBOL vmlinux 0x1c4b901d nobh_write_begin -EXPORT_SYMBOL vmlinux 0x1c5125a0 __inode_add_bytes -EXPORT_SYMBOL vmlinux 0x1c58427f acpi_remove_notify_handler -EXPORT_SYMBOL vmlinux 0x1c5e3878 icst525_idx2s -EXPORT_SYMBOL vmlinux 0x1c870f1b of_graph_get_remote_node -EXPORT_SYMBOL vmlinux 0x1ca9e3b7 buffer_check_dirty_writeback -EXPORT_SYMBOL vmlinux 0x1cb3e77c sock_init_data -EXPORT_SYMBOL vmlinux 0x1cbd6366 __pagevec_release -EXPORT_SYMBOL vmlinux 0x1cc11154 __SCK__tp_func_mmap_lock_start_locking -EXPORT_SYMBOL vmlinux 0x1cd8438b pxm_to_node -EXPORT_SYMBOL vmlinux 0x1cdcae3e vlan_filter_push_vids -EXPORT_SYMBOL vmlinux 0x1cdd39ba logic_outsl -EXPORT_SYMBOL vmlinux 0x1ce14a3e nd_namespace_blk_validate -EXPORT_SYMBOL vmlinux 0x1ce9b96a inode_needs_sync -EXPORT_SYMBOL vmlinux 0x1cef8a39 scsi_is_target_device -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 0x1d2d6d15 wait_iff_congested -EXPORT_SYMBOL vmlinux 0x1d40734e pci_map_rom -EXPORT_SYMBOL vmlinux 0x1d43f2ff phy_register_fixup -EXPORT_SYMBOL vmlinux 0x1d4709b2 gen_pool_first_fit_order_align -EXPORT_SYMBOL vmlinux 0x1d4a125f param_get_short -EXPORT_SYMBOL vmlinux 0x1d50b49f i2c_add_adapter -EXPORT_SYMBOL vmlinux 0x1d56b6b4 dst_init -EXPORT_SYMBOL vmlinux 0x1d58c5c3 pci_enable_msi -EXPORT_SYMBOL vmlinux 0x1d5cedae __tracepoint_kfree -EXPORT_SYMBOL vmlinux 0x1d6efc98 twl6040_set_bits -EXPORT_SYMBOL vmlinux 0x1db7918d bprm_change_interp -EXPORT_SYMBOL vmlinux 0x1dc5de25 tcp_child_process -EXPORT_SYMBOL vmlinux 0x1dc6c93b lookup_user_key -EXPORT_SYMBOL vmlinux 0x1dca9237 bio_copy_data_iter -EXPORT_SYMBOL vmlinux 0x1dd10fb5 netdev_adjacent_change_prepare -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 0x1debf266 blk_mq_delay_kick_requeue_list -EXPORT_SYMBOL vmlinux 0x1df96fb6 reuseport_detach_prog -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 0x1e14f2de pnp_release_card_device -EXPORT_SYMBOL vmlinux 0x1e1d7dfb vlan_ioctl_set -EXPORT_SYMBOL vmlinux 0x1e1e140e ns_to_timespec64 -EXPORT_SYMBOL vmlinux 0x1e304ed5 sdev_enable_disk_events -EXPORT_SYMBOL vmlinux 0x1e353a7d tcp_init_sock -EXPORT_SYMBOL vmlinux 0x1e6084b5 xfrm_unregister_km -EXPORT_SYMBOL vmlinux 0x1e6adaa0 bitmap_print_bitmask_to_buf -EXPORT_SYMBOL vmlinux 0x1e6d26a8 strstr -EXPORT_SYMBOL vmlinux 0x1e813fcb mptcp_subflow_reqsk_alloc -EXPORT_SYMBOL vmlinux 0x1e86ac38 mmc_request_done -EXPORT_SYMBOL vmlinux 0x1e9752f3 irq_domain_set_info -EXPORT_SYMBOL vmlinux 0x1e97efd2 ipv6_select_ident -EXPORT_SYMBOL vmlinux 0x1e9edfb7 seq_hlist_start_head_rcu -EXPORT_SYMBOL vmlinux 0x1ea57ac4 pci_write_config_word -EXPORT_SYMBOL vmlinux 0x1eb38baf eth_validate_addr -EXPORT_SYMBOL vmlinux 0x1ec2158b __traceiter_mmap_lock_released -EXPORT_SYMBOL vmlinux 0x1ed7eb60 __sg_free_table -EXPORT_SYMBOL vmlinux 0x1ed8b0fe of_n_size_cells -EXPORT_SYMBOL vmlinux 0x1edb69d6 ktime_get_raw_ts64 -EXPORT_SYMBOL vmlinux 0x1ef00907 devfreq_update_status -EXPORT_SYMBOL vmlinux 0x1ef9f7a2 tcp_fastopen_defer_connect -EXPORT_SYMBOL vmlinux 0x1efcd96c padata_free_shell -EXPORT_SYMBOL vmlinux 0x1f077a7f rc5t583_ext_power_req_config -EXPORT_SYMBOL vmlinux 0x1f259c1b skb_ensure_writable -EXPORT_SYMBOL vmlinux 0x1f328b5e sock_common_recvmsg -EXPORT_SYMBOL vmlinux 0x1f3f3de6 uart_register_driver -EXPORT_SYMBOL vmlinux 0x1f715558 devm_clk_put -EXPORT_SYMBOL vmlinux 0x1f7c1675 md_unregister_thread -EXPORT_SYMBOL vmlinux 0x1f9f82ab sock_alloc -EXPORT_SYMBOL vmlinux 0x1fbd16da ip_tos2prio -EXPORT_SYMBOL vmlinux 0x1fbfe8d5 mdiobb_read -EXPORT_SYMBOL vmlinux 0x1fd07fff kdb_grepping_flag -EXPORT_SYMBOL vmlinux 0x1fe38c1e default_llseek -EXPORT_SYMBOL vmlinux 0x1ff3ddc6 clk_bulk_get -EXPORT_SYMBOL vmlinux 0x1ff51048 xfrm_init_state -EXPORT_SYMBOL vmlinux 0x20000329 simple_strtoul -EXPORT_SYMBOL vmlinux 0x200b2041 in6addr_any -EXPORT_SYMBOL vmlinux 0x201eab34 tty_register_ldisc -EXPORT_SYMBOL vmlinux 0x2039c86c mipi_dsi_dcs_get_pixel_format -EXPORT_SYMBOL vmlinux 0x203da8bd __bio_clone_fast -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 0x205adbea mmc_can_discard -EXPORT_SYMBOL vmlinux 0x20630330 ata_print_version -EXPORT_SYMBOL vmlinux 0x206fe3ce ip_local_deliver -EXPORT_SYMBOL vmlinux 0x2078e188 netdev_has_any_upper_dev -EXPORT_SYMBOL vmlinux 0x207dd156 mdiobus_unregister -EXPORT_SYMBOL vmlinux 0x20835504 unpin_user_pages -EXPORT_SYMBOL vmlinux 0x209f07ba sock_set_keepalive -EXPORT_SYMBOL vmlinux 0x20a789ac irq_set_chip_data -EXPORT_SYMBOL vmlinux 0x20b44928 ndisc_mc_map -EXPORT_SYMBOL vmlinux 0x20b80cc9 dma_sync_sg_for_device -EXPORT_SYMBOL vmlinux 0x20c1321f mdiobus_register_device -EXPORT_SYMBOL vmlinux 0x20cbb30a __percpu_counter_init -EXPORT_SYMBOL vmlinux 0x20d585fa netdev_update_features -EXPORT_SYMBOL vmlinux 0x20d65e40 fb_find_nearest_mode -EXPORT_SYMBOL vmlinux 0x20dc2340 inet_frag_queue_insert -EXPORT_SYMBOL vmlinux 0x20de1d0f input_get_poll_interval -EXPORT_SYMBOL vmlinux 0x20e3c416 con_is_bound -EXPORT_SYMBOL vmlinux 0x20eadeb6 ip_compute_csum -EXPORT_SYMBOL vmlinux 0x20f4f803 dcb_setapp -EXPORT_SYMBOL vmlinux 0x20fba20b mark_info_dirty -EXPORT_SYMBOL vmlinux 0x20fe7788 pci_free_host_bridge -EXPORT_SYMBOL vmlinux 0x20fff6ec ZSTD_DStreamInSize -EXPORT_SYMBOL vmlinux 0x21059cd7 audit_log_task_context -EXPORT_SYMBOL vmlinux 0x21281aa5 do_wait_intr_irq -EXPORT_SYMBOL vmlinux 0x21349b67 netdev_txq_to_tc -EXPORT_SYMBOL vmlinux 0x213a738d memregion_alloc -EXPORT_SYMBOL vmlinux 0x213e4965 ps2_is_keyboard_id -EXPORT_SYMBOL vmlinux 0x213fdf30 rt_dst_alloc -EXPORT_SYMBOL vmlinux 0x214ba4c7 radix_tree_lookup_slot -EXPORT_SYMBOL vmlinux 0x21582e82 dev_alloc_name -EXPORT_SYMBOL vmlinux 0x2170e095 devfreq_remove_governor -EXPORT_SYMBOL vmlinux 0x218e600b pci_add_resource_offset -EXPORT_SYMBOL vmlinux 0x2196a280 bio_integrity_add_page -EXPORT_SYMBOL vmlinux 0x219afab6 qdisc_watchdog_schedule_range_ns -EXPORT_SYMBOL vmlinux 0x21bab594 mr_mfc_seq_idx -EXPORT_SYMBOL vmlinux 0x21bdb523 errseq_check_and_advance -EXPORT_SYMBOL vmlinux 0x21be37e1 hdmi_avi_infoframe_check -EXPORT_SYMBOL vmlinux 0x21c68c6b pcie_set_readrq -EXPORT_SYMBOL vmlinux 0x21d42ce9 nla_append -EXPORT_SYMBOL vmlinux 0x21d5515e unregister_netdevice_notifier_net -EXPORT_SYMBOL vmlinux 0x21d7fd3c inet6_del_protocol -EXPORT_SYMBOL vmlinux 0x21e13cb3 inet_peer_xrlim_allow -EXPORT_SYMBOL vmlinux 0x21eb0121 ethtool_rx_flow_rule_destroy -EXPORT_SYMBOL vmlinux 0x21ef374c try_wait_for_completion -EXPORT_SYMBOL vmlinux 0x21fd3e40 devfreq_resume_device -EXPORT_SYMBOL vmlinux 0x220c4f20 dquot_alloc_inode -EXPORT_SYMBOL vmlinux 0x220c7021 tegra_io_pad_power_disable -EXPORT_SYMBOL vmlinux 0x2215030b kobject_add -EXPORT_SYMBOL vmlinux 0x221739b8 security_sb_clone_mnt_opts -EXPORT_SYMBOL vmlinux 0x221b6150 set_binfmt -EXPORT_SYMBOL vmlinux 0x22288c6c kfree_skb_partial -EXPORT_SYMBOL vmlinux 0x222e7ce2 sysfs_streq -EXPORT_SYMBOL vmlinux 0x2234ca51 acpi_match_platform_list -EXPORT_SYMBOL vmlinux 0x2240ba3c __i2c_smbus_xfer -EXPORT_SYMBOL vmlinux 0x224ce651 xudma_free_gp_rflow_range -EXPORT_SYMBOL vmlinux 0x2252abb5 jbd2_wait_inode_data -EXPORT_SYMBOL vmlinux 0x226512c8 neigh_proc_dointvec_ms_jiffies -EXPORT_SYMBOL vmlinux 0x22833055 mipi_dsi_driver_register_full -EXPORT_SYMBOL vmlinux 0x229484cd netdev_stats_to_stats64 -EXPORT_SYMBOL vmlinux 0x22a2e456 dev_pm_opp_unregister_notifier -EXPORT_SYMBOL vmlinux 0x22b325d5 kd_mksound -EXPORT_SYMBOL vmlinux 0x22bfb3c4 tcf_action_check_ctrlact -EXPORT_SYMBOL vmlinux 0x22c2b265 inetdev_by_index -EXPORT_SYMBOL vmlinux 0x22d67995 _dev_notice -EXPORT_SYMBOL vmlinux 0x22d72bed scsi_rescan_device -EXPORT_SYMBOL vmlinux 0x22def44a napi_build_skb -EXPORT_SYMBOL vmlinux 0x22e0d8e5 of_chosen -EXPORT_SYMBOL vmlinux 0x22e859e7 blk_set_queue_depth -EXPORT_SYMBOL vmlinux 0x22f16e68 cdrom_check_events -EXPORT_SYMBOL vmlinux 0x22f9f717 rawv6_mh_filter_unregister -EXPORT_SYMBOL vmlinux 0x23123fb3 __skb_checksum_complete -EXPORT_SYMBOL vmlinux 0x2346d754 flow_block_cb_decref -EXPORT_SYMBOL vmlinux 0x23559c51 qman_oos_fq -EXPORT_SYMBOL vmlinux 0x23603573 scsi_device_quiesce -EXPORT_SYMBOL vmlinux 0x236041ac dev_mc_flush -EXPORT_SYMBOL vmlinux 0x2364c85a tasklet_init -EXPORT_SYMBOL vmlinux 0x237159f4 in6_dev_finish_destroy -EXPORT_SYMBOL vmlinux 0x237af093 neigh_update -EXPORT_SYMBOL vmlinux 0x238b099f mipi_dsi_packet_format_is_short -EXPORT_SYMBOL vmlinux 0x2391f725 irq_stat -EXPORT_SYMBOL vmlinux 0x2392edac follow_down -EXPORT_SYMBOL vmlinux 0x23956182 radix_tree_tag_clear -EXPORT_SYMBOL vmlinux 0x23a06737 vc_resize -EXPORT_SYMBOL vmlinux 0x23b0b33e ip_options_rcv_srr -EXPORT_SYMBOL vmlinux 0x23b16a61 nf_register_sockopt -EXPORT_SYMBOL vmlinux 0x23b9d6e2 mangle_path -EXPORT_SYMBOL vmlinux 0x23c906df invalidate_bdev -EXPORT_SYMBOL vmlinux 0x23ca5435 vfs_get_fsid -EXPORT_SYMBOL vmlinux 0x23cf97db vm_event_states -EXPORT_SYMBOL vmlinux 0x23daa989 mipi_dsi_create_packet -EXPORT_SYMBOL vmlinux 0x23fd3028 vmalloc_node -EXPORT_SYMBOL vmlinux 0x2402969a tegra_dfll_unregister -EXPORT_SYMBOL vmlinux 0x24212d86 __frontswap_invalidate_page -EXPORT_SYMBOL vmlinux 0x243810cc pci_request_regions -EXPORT_SYMBOL vmlinux 0x24428be5 strncpy_from_user -EXPORT_SYMBOL vmlinux 0x2459bbcc console_set_on_cmdline -EXPORT_SYMBOL vmlinux 0x24664881 truncate_pagecache -EXPORT_SYMBOL vmlinux 0x247ee94f mod_node_page_state -EXPORT_SYMBOL vmlinux 0x24806222 xsk_set_rx_need_wakeup -EXPORT_SYMBOL vmlinux 0x2484adc3 __kfifo_to_user_r -EXPORT_SYMBOL vmlinux 0x248a918b xfrm_lookup_with_ifid -EXPORT_SYMBOL vmlinux 0x24941c48 __dquot_alloc_space -EXPORT_SYMBOL vmlinux 0x24ae159d rtnl_unicast -EXPORT_SYMBOL vmlinux 0x24b1224c debugfs_create_automount -EXPORT_SYMBOL vmlinux 0x24cefab4 bio_integrity_trim -EXPORT_SYMBOL vmlinux 0x24d273d1 add_timer -EXPORT_SYMBOL vmlinux 0x24e8ad67 d_splice_alias -EXPORT_SYMBOL vmlinux 0x24ef144d page_symlink -EXPORT_SYMBOL vmlinux 0x2505bf18 kstrtol_from_user -EXPORT_SYMBOL vmlinux 0x25149a97 jbd2_journal_lock_updates -EXPORT_SYMBOL vmlinux 0x251c3bb7 skb_kill_datagram -EXPORT_SYMBOL vmlinux 0x252332f1 __SCK__tp_func_mmap_lock_released -EXPORT_SYMBOL vmlinux 0x2524437a find_inode_nowait -EXPORT_SYMBOL vmlinux 0x25452a95 security_binder_transaction -EXPORT_SYMBOL vmlinux 0x2556ea9c fwnode_get_phy_id -EXPORT_SYMBOL vmlinux 0x25668712 generic_file_write_iter -EXPORT_SYMBOL vmlinux 0x256ea399 dma_sync_single_for_cpu -EXPORT_SYMBOL vmlinux 0x257041c2 __ps2_command -EXPORT_SYMBOL vmlinux 0x25772d76 param_get_string -EXPORT_SYMBOL vmlinux 0x2577cb82 of_device_is_compatible -EXPORT_SYMBOL vmlinux 0x25820c64 fs_overflowuid -EXPORT_SYMBOL vmlinux 0x258400d1 md_bitmap_end_sync -EXPORT_SYMBOL vmlinux 0x258d2f76 net_dim_get_tx_moderation -EXPORT_SYMBOL vmlinux 0x25974000 wait_for_completion -EXPORT_SYMBOL vmlinux 0x259ad59e sk_alloc -EXPORT_SYMBOL vmlinux 0x25a605a4 tty_port_carrier_raised -EXPORT_SYMBOL vmlinux 0x25cc9047 vlan_vids_del_by_dev -EXPORT_SYMBOL vmlinux 0x25d900a0 skb_add_rx_frag -EXPORT_SYMBOL vmlinux 0x25e58a09 hdmi_avi_infoframe_init -EXPORT_SYMBOL vmlinux 0x25e8d8a0 devm_free_irq -EXPORT_SYMBOL vmlinux 0x25e9d4bd resource_list_free -EXPORT_SYMBOL vmlinux 0x25eaec49 sock_wake_async -EXPORT_SYMBOL vmlinux 0x25f1bbe1 init_special_inode -EXPORT_SYMBOL vmlinux 0x260a095a __sg_alloc_table -EXPORT_SYMBOL vmlinux 0x260f805d file_check_and_advance_wb_err -EXPORT_SYMBOL vmlinux 0x2628c689 __vfs_setxattr -EXPORT_SYMBOL vmlinux 0x263beb75 ecryptfs_get_versions -EXPORT_SYMBOL vmlinux 0x263c3152 bcmp -EXPORT_SYMBOL vmlinux 0x263ddb83 kobject_put -EXPORT_SYMBOL vmlinux 0x263f0d1f qman_portal_set_iperiod -EXPORT_SYMBOL vmlinux 0x26668053 mipi_dsi_dcs_set_column_address -EXPORT_SYMBOL vmlinux 0x26767d02 amba_release_regions -EXPORT_SYMBOL vmlinux 0x268104bd tcp_time_wait -EXPORT_SYMBOL vmlinux 0x2688ec10 bitmap_zalloc -EXPORT_SYMBOL vmlinux 0x26897b52 mb_cache_entry_get -EXPORT_SYMBOL vmlinux 0x269ac3d3 md_bitmap_startwrite -EXPORT_SYMBOL vmlinux 0x269ca214 tcf_block_get_ext -EXPORT_SYMBOL vmlinux 0x26b8ffc7 of_match_device -EXPORT_SYMBOL vmlinux 0x26ba0308 key_revoke -EXPORT_SYMBOL vmlinux 0x26c04085 inet_sk_rx_dst_set -EXPORT_SYMBOL vmlinux 0x26c5ab30 remap_vmalloc_range -EXPORT_SYMBOL vmlinux 0x26cc73c3 complete_and_exit -EXPORT_SYMBOL vmlinux 0x26d12212 napi_schedule_prep -EXPORT_SYMBOL vmlinux 0x26e298e0 unregister_memory_notifier -EXPORT_SYMBOL vmlinux 0x26e66877 key_instantiate_and_link -EXPORT_SYMBOL vmlinux 0x26fdb48d __remove_inode_hash -EXPORT_SYMBOL vmlinux 0x270cf88f dump_stack_lvl -EXPORT_SYMBOL vmlinux 0x2715555d cros_ec_prepare_tx -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 0x27392b6f try_module_get -EXPORT_SYMBOL vmlinux 0x27479d14 param_free_charp -EXPORT_SYMBOL vmlinux 0x27599b53 dcache_dir_lseek -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 0x27810361 acpi_os_wait_events_complete -EXPORT_SYMBOL vmlinux 0x2782b393 xfrm_state_walk_init -EXPORT_SYMBOL vmlinux 0x2783db55 mmc_put_card -EXPORT_SYMBOL vmlinux 0x27864d57 memparse -EXPORT_SYMBOL vmlinux 0x278f9392 tcp_check_req -EXPORT_SYMBOL vmlinux 0x27955c0f eth_header_cache_update -EXPORT_SYMBOL vmlinux 0x279cabd7 tty_do_resize -EXPORT_SYMBOL vmlinux 0x27b9bff2 simple_dentry_operations -EXPORT_SYMBOL vmlinux 0x27bbf221 disable_irq_nosync -EXPORT_SYMBOL vmlinux 0x27c12d3d netdev_name_node_alt_destroy -EXPORT_SYMBOL vmlinux 0x27c1dd36 pm_vt_switch_required -EXPORT_SYMBOL vmlinux 0x27c3c728 qman_release_fqid -EXPORT_SYMBOL vmlinux 0x27ca390e vme_register_driver -EXPORT_SYMBOL vmlinux 0x27cc1107 jbd2_journal_force_commit_nested -EXPORT_SYMBOL vmlinux 0x27cdca93 pci_add_resource -EXPORT_SYMBOL vmlinux 0x27e10996 jbd2_log_wait_commit -EXPORT_SYMBOL vmlinux 0x27e9103d devfreq_monitor_resume -EXPORT_SYMBOL vmlinux 0x27f3a3f2 of_graph_get_remote_endpoint -EXPORT_SYMBOL vmlinux 0x2803b219 udplite_table -EXPORT_SYMBOL vmlinux 0x280cf0aa idr_destroy -EXPORT_SYMBOL vmlinux 0x281823c5 __kfifo_out_peek -EXPORT_SYMBOL vmlinux 0x28349d68 sk_send_sigurg -EXPORT_SYMBOL vmlinux 0x285def59 pci_iomap_range -EXPORT_SYMBOL vmlinux 0x2875a315 utf32_to_utf8 -EXPORT_SYMBOL vmlinux 0x287cf9ff brioctl_set -EXPORT_SYMBOL vmlinux 0x287d4263 km_policy_expired -EXPORT_SYMBOL vmlinux 0x2888e4ae readahead_expand -EXPORT_SYMBOL vmlinux 0x28916d35 dquot_resume -EXPORT_SYMBOL vmlinux 0x2896d941 vme_bus_error_handler -EXPORT_SYMBOL vmlinux 0x28b660e0 tcf_qevent_handle -EXPORT_SYMBOL vmlinux 0x28f94604 __ubsan_handle_builtin_unreachable -EXPORT_SYMBOL vmlinux 0x2905f164 phy_ethtool_set_wol -EXPORT_SYMBOL vmlinux 0x290f848e tcf_em_tree_destroy -EXPORT_SYMBOL vmlinux 0x291bf814 blk_integrity_compare -EXPORT_SYMBOL vmlinux 0x292ec806 eth_header_parse -EXPORT_SYMBOL vmlinux 0x2939721f dev_change_carrier -EXPORT_SYMBOL vmlinux 0x293b315f tcp_setsockopt -EXPORT_SYMBOL vmlinux 0x2957dcfa __scsi_iterate_devices -EXPORT_SYMBOL vmlinux 0x295e5d60 sync_file_create -EXPORT_SYMBOL vmlinux 0x2973646d inet_frag_pull_head -EXPORT_SYMBOL vmlinux 0x297a8837 page_get_link -EXPORT_SYMBOL vmlinux 0x2993456a inet_protos -EXPORT_SYMBOL vmlinux 0x299416f5 mmc_of_parse_voltage -EXPORT_SYMBOL vmlinux 0x29a574b7 rdmacg_uncharge -EXPORT_SYMBOL vmlinux 0x29a9e4be skb_find_text -EXPORT_SYMBOL vmlinux 0x29b631dc iommu_get_dma_cookie -EXPORT_SYMBOL vmlinux 0x29b862ef __blockdev_direct_IO -EXPORT_SYMBOL vmlinux 0x29cfa89a of_platform_device_create -EXPORT_SYMBOL vmlinux 0x29e1e204 hdmi_audio_infoframe_pack -EXPORT_SYMBOL vmlinux 0x2a0083c9 qdisc_put -EXPORT_SYMBOL vmlinux 0x2a0287e1 bio_init -EXPORT_SYMBOL vmlinux 0x2a20110d pci_dev_driver -EXPORT_SYMBOL vmlinux 0x2a245387 twl6030_mmc_card_detect -EXPORT_SYMBOL vmlinux 0x2a303d4d check_signature -EXPORT_SYMBOL vmlinux 0x2a422f39 kernel_sendpage -EXPORT_SYMBOL vmlinux 0x2a564d68 genphy_restart_aneg -EXPORT_SYMBOL vmlinux 0x2a5e37e2 param_get_ushort -EXPORT_SYMBOL vmlinux 0x2a75a48b radix_tree_tag_get -EXPORT_SYMBOL vmlinux 0x2a789462 __d_drop -EXPORT_SYMBOL vmlinux 0x2a928918 slhc_free -EXPORT_SYMBOL vmlinux 0x2a9a3905 vme_master_get -EXPORT_SYMBOL vmlinux 0x2aabaf9d xudma_tchan_get -EXPORT_SYMBOL vmlinux 0x2aabcdc8 vmalloc_array -EXPORT_SYMBOL vmlinux 0x2ab2ee91 brcmstb_get_product_id -EXPORT_SYMBOL vmlinux 0x2adaade6 __netdev_alloc_skb -EXPORT_SYMBOL vmlinux 0x2adf0930 security_inode_copy_up -EXPORT_SYMBOL vmlinux 0x2ae54c52 netdev_master_upper_dev_get_rcu -EXPORT_SYMBOL vmlinux 0x2aee6afb dma_free_attrs -EXPORT_SYMBOL vmlinux 0x2af73a9d get_mem_cgroup_from_mm -EXPORT_SYMBOL vmlinux 0x2af8631e mipi_dsi_dcs_read -EXPORT_SYMBOL vmlinux 0x2af9c195 ns_capable -EXPORT_SYMBOL vmlinux 0x2afb5739 bdev_check_media_change -EXPORT_SYMBOL vmlinux 0x2b1abce3 fman_has_errata_a050385 -EXPORT_SYMBOL vmlinux 0x2b23144d do_splice_direct -EXPORT_SYMBOL vmlinux 0x2b2d15b5 inet6_add_offload -EXPORT_SYMBOL vmlinux 0x2b405d29 dma_map_sg_attrs -EXPORT_SYMBOL vmlinux 0x2b4604ba mmc_gpiod_request_cd_irq -EXPORT_SYMBOL vmlinux 0x2b5dd042 devm_rproc_add -EXPORT_SYMBOL vmlinux 0x2b6eb849 generic_writepages -EXPORT_SYMBOL vmlinux 0x2b78cfd4 flow_indr_block_cb_alloc -EXPORT_SYMBOL vmlinux 0x2b8640b9 netif_rx_any_context -EXPORT_SYMBOL vmlinux 0x2b9da7a4 genl_lock -EXPORT_SYMBOL vmlinux 0x2bafc05e of_find_node_by_type -EXPORT_SYMBOL vmlinux 0x2bbeee75 param_set_short -EXPORT_SYMBOL vmlinux 0x2bc03c0c acpi_bus_unregister_driver -EXPORT_SYMBOL vmlinux 0x2bd60ab9 acpi_reset -EXPORT_SYMBOL vmlinux 0x2bee4963 proc_dointvec_userhz_jiffies -EXPORT_SYMBOL vmlinux 0x2bfbab10 __memmove -EXPORT_SYMBOL vmlinux 0x2c06ffe6 call_usermodehelper_exec -EXPORT_SYMBOL vmlinux 0x2c0f597f netlink_broadcast_filtered -EXPORT_SYMBOL vmlinux 0x2c256e1f input_scancode_to_scalar -EXPORT_SYMBOL vmlinux 0x2c25752a devm_nvmem_unregister -EXPORT_SYMBOL vmlinux 0x2c316473 xfrm_init_replay -EXPORT_SYMBOL vmlinux 0x2c329e54 tegra_powergate_sequence_power_up -EXPORT_SYMBOL vmlinux 0x2c3c8a5b _dev_printk -EXPORT_SYMBOL vmlinux 0x2c52a60b register_filesystem -EXPORT_SYMBOL vmlinux 0x2c5925af serio_unregister_driver -EXPORT_SYMBOL vmlinux 0x2c5b887a qdisc_offload_graft_helper -EXPORT_SYMBOL vmlinux 0x2c7936a6 blk_rq_count_integrity_sg -EXPORT_SYMBOL vmlinux 0x2c891bd4 sock_efree -EXPORT_SYMBOL vmlinux 0x2c89b06a in_dev_finish_destroy -EXPORT_SYMBOL vmlinux 0x2c91e17c vm_get_page_prot -EXPORT_SYMBOL vmlinux 0x2cc7401a phy_stop -EXPORT_SYMBOL vmlinux 0x2ccd059a dim_on_top -EXPORT_SYMBOL vmlinux 0x2cd2220e rproc_put -EXPORT_SYMBOL vmlinux 0x2cf9f6d4 security_sb_mnt_opts_compat -EXPORT_SYMBOL vmlinux 0x2d140a58 genl_unlock -EXPORT_SYMBOL vmlinux 0x2d192c70 sg_zero_buffer -EXPORT_SYMBOL vmlinux 0x2d30596c from_kqid_munged -EXPORT_SYMBOL vmlinux 0x2d3385d3 system_wq -EXPORT_SYMBOL vmlinux 0x2d39b0a7 kstrdup -EXPORT_SYMBOL vmlinux 0x2d47ab11 file_path -EXPORT_SYMBOL vmlinux 0x2d4b3865 lock_page_memcg -EXPORT_SYMBOL vmlinux 0x2d4c773a hdmi_spd_infoframe_init -EXPORT_SYMBOL vmlinux 0x2d4daef5 find_font -EXPORT_SYMBOL vmlinux 0x2d56d6e0 unpin_user_page -EXPORT_SYMBOL vmlinux 0x2d5c582c gnet_stats_copy_queue -EXPORT_SYMBOL vmlinux 0x2d654cd2 tegra_ivc_notified -EXPORT_SYMBOL vmlinux 0x2d6b1714 add_wait_queue_exclusive -EXPORT_SYMBOL vmlinux 0x2d718a24 atomic_dec_and_mutex_lock -EXPORT_SYMBOL vmlinux 0x2d912bca dmi_get_bios_year -EXPORT_SYMBOL vmlinux 0x2d994605 security_inode_copy_up_xattr -EXPORT_SYMBOL vmlinux 0x2da7f6e5 unlock_page_memcg -EXPORT_SYMBOL vmlinux 0x2dbdab9e tcf_qevent_destroy -EXPORT_SYMBOL vmlinux 0x2dc65df0 ip6_fraglist_prepare -EXPORT_SYMBOL vmlinux 0x2dcbc689 scsi_dma_unmap -EXPORT_SYMBOL vmlinux 0x2dce2f1c __irq_regs -EXPORT_SYMBOL vmlinux 0x2de125c0 page_frag_alloc_align -EXPORT_SYMBOL vmlinux 0x2deae40f xsk_tx_peek_release_desc_batch -EXPORT_SYMBOL vmlinux 0x2dfe80c9 ptp_find_pin_unlocked -EXPORT_SYMBOL vmlinux 0x2e01ed02 end_page_writeback -EXPORT_SYMBOL vmlinux 0x2e0904db dma_fence_array_create -EXPORT_SYMBOL vmlinux 0x2e174508 pci_read_config_word -EXPORT_SYMBOL vmlinux 0x2e1ca751 clk_put -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 0x2e5582fe __block_write_full_page -EXPORT_SYMBOL vmlinux 0x2e591dde tcf_block_put_ext -EXPORT_SYMBOL vmlinux 0x2e5b27da xudma_alloc_gp_rflow_range -EXPORT_SYMBOL vmlinux 0x2e5fe036 __skb_ext_put -EXPORT_SYMBOL vmlinux 0x2e61c4a6 da903x_query_status -EXPORT_SYMBOL vmlinux 0x2e7ee8ce generic_splice_sendpage -EXPORT_SYMBOL vmlinux 0x2e895c28 tcf_action_set_ctrlact -EXPORT_SYMBOL vmlinux 0x2eafeb92 pci_iomap -EXPORT_SYMBOL vmlinux 0x2eb132fb unpin_user_page_range_dirty_lock -EXPORT_SYMBOL vmlinux 0x2eb20ad7 clkdev_drop -EXPORT_SYMBOL vmlinux 0x2ec6bba0 errseq_set -EXPORT_SYMBOL vmlinux 0x2ee4c2b1 hdmi_avi_infoframe_pack_only -EXPORT_SYMBOL vmlinux 0x2eea912c get_random_bytes_arch -EXPORT_SYMBOL vmlinux 0x2ef33d52 pci_remove_bus -EXPORT_SYMBOL vmlinux 0x2f03fc4b security_secmark_refcount_inc -EXPORT_SYMBOL vmlinux 0x2f062eb4 sock_edemux -EXPORT_SYMBOL vmlinux 0x2f074b93 unlock_two_nondirectories -EXPORT_SYMBOL vmlinux 0x2f1254d1 ucc_tdm_init -EXPORT_SYMBOL vmlinux 0x2f13a7e3 mem_cgroup_from_task -EXPORT_SYMBOL vmlinux 0x2f241c8c regset_get -EXPORT_SYMBOL vmlinux 0x2f2e91b2 security_ib_alloc_security -EXPORT_SYMBOL vmlinux 0x2f333aab imx_scu_get_handle -EXPORT_SYMBOL vmlinux 0x2f384db3 acpi_is_video_device -EXPORT_SYMBOL vmlinux 0x2f3daafd rt_write_unlock -EXPORT_SYMBOL vmlinux 0x2f540c30 block_invalidatepage -EXPORT_SYMBOL vmlinux 0x2f5d6622 t10_pi_type3_crc -EXPORT_SYMBOL vmlinux 0x2f64faeb dev_change_proto_down -EXPORT_SYMBOL vmlinux 0x2f6a6a8a zero_fill_bio -EXPORT_SYMBOL vmlinux 0x2f7754a8 dma_pool_free -EXPORT_SYMBOL vmlinux 0x2f91ec94 get_tree_keyed -EXPORT_SYMBOL vmlinux 0x2fb9cf09 flow_rule_match_ipv4_addrs -EXPORT_SYMBOL vmlinux 0x2fcd9fd9 vme_dma_list_add -EXPORT_SYMBOL vmlinux 0x2fe252cc unregister_inet6addr_notifier -EXPORT_SYMBOL vmlinux 0x2fe5b535 qcom_scm_assign_mem -EXPORT_SYMBOL vmlinux 0x2ff4eecd msm_pinctrl_probe -EXPORT_SYMBOL vmlinux 0x300095b0 pnp_register_driver -EXPORT_SYMBOL vmlinux 0x3029a4fe param_set_copystring -EXPORT_SYMBOL vmlinux 0x302a4299 pcim_iounmap -EXPORT_SYMBOL vmlinux 0x3052fecd ptp_convert_timestamp -EXPORT_SYMBOL vmlinux 0x3060d832 gen_pool_dma_zalloc -EXPORT_SYMBOL vmlinux 0x3062ddac blkdev_issue_discard -EXPORT_SYMBOL vmlinux 0x306eca4a fib6_info_hw_flags_set -EXPORT_SYMBOL vmlinux 0x3086cbe8 sk_stream_wait_connect -EXPORT_SYMBOL vmlinux 0x308f228b input_open_device -EXPORT_SYMBOL vmlinux 0x3092ae5d register_fib_notifier -EXPORT_SYMBOL vmlinux 0x3096be16 names_cachep -EXPORT_SYMBOL vmlinux 0x30a80826 __kfifo_from_user -EXPORT_SYMBOL vmlinux 0x30acfde9 hsiphash_2u32 -EXPORT_SYMBOL vmlinux 0x30c77370 dm_table_get_mode -EXPORT_SYMBOL vmlinux 0x30cc1a4c __set_page_dirty_buffers -EXPORT_SYMBOL vmlinux 0x30ccc1a8 uart_remove_one_port -EXPORT_SYMBOL vmlinux 0x30d90479 __alloc_pages -EXPORT_SYMBOL vmlinux 0x30e74134 tty_termios_copy_hw -EXPORT_SYMBOL vmlinux 0x30e770c3 seq_escape_mem -EXPORT_SYMBOL vmlinux 0x31016f5e devm_request_any_context_irq -EXPORT_SYMBOL vmlinux 0x3102d70b frontswap_curr_pages -EXPORT_SYMBOL vmlinux 0x311314d1 mipi_dsi_dcs_get_power_mode -EXPORT_SYMBOL vmlinux 0x31232520 param_array_ops -EXPORT_SYMBOL vmlinux 0x3126a9e8 siphash_1u64 -EXPORT_SYMBOL vmlinux 0x312ae35c bit_waitqueue -EXPORT_SYMBOL vmlinux 0x314ae013 __seq_open_private -EXPORT_SYMBOL vmlinux 0x315fab0c reuseport_alloc -EXPORT_SYMBOL vmlinux 0x31647bd7 of_graph_get_port_parent -EXPORT_SYMBOL vmlinux 0x316dad36 get_watch_queue -EXPORT_SYMBOL vmlinux 0x316fecaf consume_skb -EXPORT_SYMBOL vmlinux 0x3197af76 __put_page -EXPORT_SYMBOL vmlinux 0x3199d0e9 bio_free_pages -EXPORT_SYMBOL vmlinux 0x319e9e03 generic_pipe_buf_try_steal -EXPORT_SYMBOL vmlinux 0x31a4767f qcom_scm_hdcp_available -EXPORT_SYMBOL vmlinux 0x31b9195c __local_bh_disable_ip -EXPORT_SYMBOL vmlinux 0x31bf0bf1 md_write_inc -EXPORT_SYMBOL vmlinux 0x31ce8f4a vmf_insert_mixed_mkwrite -EXPORT_SYMBOL vmlinux 0x31e8d49e tcf_block_netif_keep_dst -EXPORT_SYMBOL vmlinux 0x320acd39 blk_mq_delay_run_hw_queues -EXPORT_SYMBOL vmlinux 0x32151cee sk_stream_wait_memory -EXPORT_SYMBOL vmlinux 0x321a88ea skb_dump -EXPORT_SYMBOL vmlinux 0x32394d4b qe_issue_cmd -EXPORT_SYMBOL vmlinux 0x3240f0fb nd_pfn_validate -EXPORT_SYMBOL vmlinux 0x324b164d blk_mq_requeue_request -EXPORT_SYMBOL vmlinux 0x32582cca xfrm_state_add -EXPORT_SYMBOL vmlinux 0x3276532f __tcf_em_tree_match -EXPORT_SYMBOL vmlinux 0x327c84bf vme_lm_attach -EXPORT_SYMBOL vmlinux 0x3283e6b0 prandom_seed_full_state -EXPORT_SYMBOL vmlinux 0x3284248e bdi_register -EXPORT_SYMBOL vmlinux 0x3293ba34 generic_fadvise -EXPORT_SYMBOL vmlinux 0x3296c320 inode_set_flags -EXPORT_SYMBOL vmlinux 0x32b6a09a netif_receive_skb_core -EXPORT_SYMBOL vmlinux 0x32c12ccb input_unregister_handle -EXPORT_SYMBOL vmlinux 0x32c32c73 ip_sock_set_mtu_discover -EXPORT_SYMBOL vmlinux 0x32ce3777 radix_tree_preload -EXPORT_SYMBOL vmlinux 0x32e6f1a0 acpi_video_backlight_string -EXPORT_SYMBOL vmlinux 0x32f79703 xa_erase -EXPORT_SYMBOL vmlinux 0x32fea31d dquot_get_dqblk -EXPORT_SYMBOL vmlinux 0x33037fd8 logic_outl -EXPORT_SYMBOL vmlinux 0x3303fee2 __task_pid_nr_ns -EXPORT_SYMBOL vmlinux 0x330c6b57 i2c_smbus_read_i2c_block_data_or_emulated -EXPORT_SYMBOL vmlinux 0x3317f552 nexthop_set_hw_flags -EXPORT_SYMBOL vmlinux 0x3321cc87 __dev_get_by_flags -EXPORT_SYMBOL vmlinux 0x332f5b7a __xfrm_state_destroy -EXPORT_SYMBOL vmlinux 0x3330a6b3 drop_super_exclusive -EXPORT_SYMBOL vmlinux 0x33353723 security_locked_down -EXPORT_SYMBOL vmlinux 0x333b1a27 of_graph_get_endpoint_by_regs -EXPORT_SYMBOL vmlinux 0x3350eda9 iw_handler_get_spy -EXPORT_SYMBOL vmlinux 0x33736a1d __genradix_ptr_alloc -EXPORT_SYMBOL vmlinux 0x3390a8cc dst_cow_metrics_generic -EXPORT_SYMBOL vmlinux 0x33a19673 dquot_drop -EXPORT_SYMBOL vmlinux 0x33d17cb9 genphy_read_status_fixed -EXPORT_SYMBOL vmlinux 0x33d2492e seq_printf -EXPORT_SYMBOL vmlinux 0x33e74fba fscrypt_put_encryption_info -EXPORT_SYMBOL vmlinux 0x33f0768c cpufreq_quick_get_max -EXPORT_SYMBOL vmlinux 0x33faa703 md_update_sb -EXPORT_SYMBOL vmlinux 0x33fc2a31 get_user_ifreq -EXPORT_SYMBOL vmlinux 0x33fcf44a __kfifo_out_r -EXPORT_SYMBOL vmlinux 0x33fd3985 phy_resume -EXPORT_SYMBOL vmlinux 0x33ffea77 fscrypt_decrypt_bio -EXPORT_SYMBOL vmlinux 0x342619dd proc_dointvec_minmax -EXPORT_SYMBOL vmlinux 0x3468bcf3 udp_gro_receive -EXPORT_SYMBOL vmlinux 0x346d6db3 reuseport_stop_listen_sock -EXPORT_SYMBOL vmlinux 0x34922b11 seg6_hmac_info_add -EXPORT_SYMBOL vmlinux 0x349cb59d flow_rule_match_enc_control -EXPORT_SYMBOL vmlinux 0x349cba85 strchr -EXPORT_SYMBOL vmlinux 0x34a1f7e3 acpi_processor_get_psd -EXPORT_SYMBOL vmlinux 0x34a2b9ce __skb_ext_del -EXPORT_SYMBOL vmlinux 0x34b16334 __next_node_in -EXPORT_SYMBOL vmlinux 0x34c7cdbc lookup_bdev -EXPORT_SYMBOL vmlinux 0x34cbb0f3 mr_mfc_seq_next -EXPORT_SYMBOL vmlinux 0x34db050b _raw_spin_lock_irqsave -EXPORT_SYMBOL vmlinux 0x34dfc2c5 prepare_to_wait_event -EXPORT_SYMBOL vmlinux 0x34e1b27f configfs_register_default_group -EXPORT_SYMBOL vmlinux 0x34e1fec4 phy_reset_after_clk_enable -EXPORT_SYMBOL vmlinux 0x34e73153 tegra_ivc_cleanup -EXPORT_SYMBOL vmlinux 0x34f1735c security_binder_set_context_mgr -EXPORT_SYMBOL vmlinux 0x34f3484e security_tun_dev_attach_queue -EXPORT_SYMBOL vmlinux 0x350dec68 jbd2_complete_transaction -EXPORT_SYMBOL vmlinux 0x350eb551 netpoll_poll_disable -EXPORT_SYMBOL vmlinux 0x3517383e register_reboot_notifier -EXPORT_SYMBOL vmlinux 0x3524a385 fman_get_mem_region -EXPORT_SYMBOL vmlinux 0x3539f11b match_strlcpy -EXPORT_SYMBOL vmlinux 0x354c87ff __dynamic_ibdev_dbg -EXPORT_SYMBOL vmlinux 0x35622bf9 devm_mfd_add_devices -EXPORT_SYMBOL vmlinux 0x3562f682 pneigh_lookup -EXPORT_SYMBOL vmlinux 0x356461c8 rtc_time64_to_tm -EXPORT_SYMBOL vmlinux 0x356a9e29 inet_register_protosw -EXPORT_SYMBOL vmlinux 0x358b9bbc generic_shutdown_super -EXPORT_SYMBOL vmlinux 0x3594a615 tcp_sock_set_quickack -EXPORT_SYMBOL vmlinux 0x35a88f28 zlib_inflateInit2 -EXPORT_SYMBOL vmlinux 0x35a8f0d1 dev_addr_init -EXPORT_SYMBOL vmlinux 0x35dead13 datagram_poll -EXPORT_SYMBOL vmlinux 0x35ee02fc flow_rule_match_ports -EXPORT_SYMBOL vmlinux 0x36012d66 tcf_action_dump_1 -EXPORT_SYMBOL vmlinux 0x360b1afe probe_irq_mask -EXPORT_SYMBOL vmlinux 0x362759ad filemap_map_pages -EXPORT_SYMBOL vmlinux 0x362f6ec4 blk_queue_update_dma_alignment -EXPORT_SYMBOL vmlinux 0x3638bb02 cros_ec_cmd_xfer_status -EXPORT_SYMBOL vmlinux 0x36571c26 sk_stop_timer_sync -EXPORT_SYMBOL vmlinux 0x365acda7 set_normalized_timespec64 -EXPORT_SYMBOL vmlinux 0x365e7911 kstrdup_const -EXPORT_SYMBOL vmlinux 0x36688695 tcp_connect -EXPORT_SYMBOL vmlinux 0x36772c3b sk_filter_trim_cap -EXPORT_SYMBOL vmlinux 0x36885844 do_SAK -EXPORT_SYMBOL vmlinux 0x3696e433 pci_fixup_cardbus -EXPORT_SYMBOL vmlinux 0x36a46259 generic_parse_monolithic -EXPORT_SYMBOL vmlinux 0x36a522db eth_platform_get_mac_address -EXPORT_SYMBOL vmlinux 0x36a6adfb mipi_dsi_shutdown_peripheral -EXPORT_SYMBOL vmlinux 0x36a6eef7 kobject_del -EXPORT_SYMBOL vmlinux 0x36ad797c ethtool_op_get_link -EXPORT_SYMBOL vmlinux 0x36b18bc1 seg6_hmac_info_lookup -EXPORT_SYMBOL vmlinux 0x36b6b1f4 input_setup_polling -EXPORT_SYMBOL vmlinux 0x36b6ebbf down_killable -EXPORT_SYMBOL vmlinux 0x36c5886e dcbnl_ieee_notify -EXPORT_SYMBOL vmlinux 0x36d1bd5b sync_filesystem -EXPORT_SYMBOL vmlinux 0x36eea0c6 writeback_inodes_sb -EXPORT_SYMBOL vmlinux 0x3705ea75 __wake_up_bit -EXPORT_SYMBOL vmlinux 0x3712b75e rtnl_kfree_skbs -EXPORT_SYMBOL vmlinux 0x371a8d95 mdiobb_write -EXPORT_SYMBOL vmlinux 0x3737d9a9 ZSTD_DStreamWorkspaceBound -EXPORT_SYMBOL vmlinux 0x3744cf36 vmalloc_to_pfn -EXPORT_SYMBOL vmlinux 0x37488acb iov_iter_npages -EXPORT_SYMBOL vmlinux 0x374ee5e5 ip_queue_xmit -EXPORT_SYMBOL vmlinux 0x3755f990 gf128mul_init_64k_bbe -EXPORT_SYMBOL vmlinux 0x375b53e6 __cleancache_init_fs -EXPORT_SYMBOL vmlinux 0x37746fde ZSTD_initDStream -EXPORT_SYMBOL vmlinux 0x377d8004 acpi_error -EXPORT_SYMBOL vmlinux 0x3781d229 set_bdi_congested -EXPORT_SYMBOL vmlinux 0x37a62a53 __ip_queue_xmit -EXPORT_SYMBOL vmlinux 0x37b8b39e screen_info -EXPORT_SYMBOL vmlinux 0x37befc70 jiffies_to_msecs -EXPORT_SYMBOL vmlinux 0x37c0b9a0 devm_devfreq_unregister_notifier -EXPORT_SYMBOL vmlinux 0x37cddca2 __udp_disconnect -EXPORT_SYMBOL vmlinux 0x37d16aa2 inet_csk_clear_xmit_timers -EXPORT_SYMBOL vmlinux 0x37db8f19 dmi_get_date -EXPORT_SYMBOL vmlinux 0x37e22647 cmxgcr_lock -EXPORT_SYMBOL vmlinux 0x37e3e5e0 of_find_device_by_node -EXPORT_SYMBOL vmlinux 0x37e5ae3b qdisc_class_hash_grow -EXPORT_SYMBOL vmlinux 0x37e73348 bio_clone_fast -EXPORT_SYMBOL vmlinux 0x37f5dd57 sock_queue_rcv_skb -EXPORT_SYMBOL vmlinux 0x37f689ce __nlmsg_put -EXPORT_SYMBOL vmlinux 0x37f7a33e twl6040_set_pll -EXPORT_SYMBOL vmlinux 0x381a798a setup_max_cpus -EXPORT_SYMBOL vmlinux 0x3854774b kstrtoll -EXPORT_SYMBOL vmlinux 0x3857793d devfreq_update_interval -EXPORT_SYMBOL vmlinux 0x385b7364 lockref_put_return -EXPORT_SYMBOL vmlinux 0x38869d88 kstat -EXPORT_SYMBOL vmlinux 0x3887a2bf __cgroup_bpf_run_filter_sock_addr -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 0x38ab741f genphy_read_status -EXPORT_SYMBOL vmlinux 0x38b474e2 cpufreq_generic_suspend -EXPORT_SYMBOL vmlinux 0x38b931e7 thread_group_exited -EXPORT_SYMBOL vmlinux 0x38ba2147 tty_register_driver -EXPORT_SYMBOL vmlinux 0x38c03ec7 blk_get_request -EXPORT_SYMBOL vmlinux 0x38c3da39 input_set_max_poll_interval -EXPORT_SYMBOL vmlinux 0x38c6d84a kill_fasync -EXPORT_SYMBOL vmlinux 0x38d3a5c4 pm8606_osc_disable -EXPORT_SYMBOL vmlinux 0x38df3758 netdev_lower_get_next_private -EXPORT_SYMBOL vmlinux 0x38f3634b generic_ro_fops -EXPORT_SYMBOL vmlinux 0x38f364a5 d_exact_alias -EXPORT_SYMBOL vmlinux 0x38f48af7 put_user_ifreq -EXPORT_SYMBOL vmlinux 0x3921f07e nd_btt_version -EXPORT_SYMBOL vmlinux 0x3928efe9 __per_cpu_offset -EXPORT_SYMBOL vmlinux 0x392b0a9d mmc_is_req_done -EXPORT_SYMBOL vmlinux 0x392b1fea wait_for_completion_io -EXPORT_SYMBOL vmlinux 0x392bb6b6 dcb_ieee_delapp -EXPORT_SYMBOL vmlinux 0x3930d39a fscrypt_decrypt_pagecache_blocks -EXPORT_SYMBOL vmlinux 0x39357581 generic_write_end -EXPORT_SYMBOL vmlinux 0x3939f8f0 rfkill_pause_polling -EXPORT_SYMBOL vmlinux 0x39461d6a in_egroup_p -EXPORT_SYMBOL vmlinux 0x3947f11a pci_enable_device -EXPORT_SYMBOL vmlinux 0x394a1e11 phy_sfp_attach -EXPORT_SYMBOL vmlinux 0x3955fcf6 __kfifo_in_r -EXPORT_SYMBOL vmlinux 0x395645b5 config_item_put -EXPORT_SYMBOL vmlinux 0x39742f8a param_get_hexint -EXPORT_SYMBOL vmlinux 0x397e417d md_wait_for_blocked_rdev -EXPORT_SYMBOL vmlinux 0x3982a000 fman_register_intr -EXPORT_SYMBOL vmlinux 0x39842b93 ethtool_notify -EXPORT_SYMBOL vmlinux 0x3987f40f kobject_get_unless_zero -EXPORT_SYMBOL vmlinux 0x398fa90c sock_wfree -EXPORT_SYMBOL vmlinux 0x39991865 icmp_global_allow -EXPORT_SYMBOL vmlinux 0x399ad043 __kfifo_dma_out_finish_r -EXPORT_SYMBOL vmlinux 0x399c60f3 genlmsg_multicast_allns -EXPORT_SYMBOL vmlinux 0x39a6b3bc cdrom_dummy_generic_packet -EXPORT_SYMBOL vmlinux 0x39accd40 noop_llseek -EXPORT_SYMBOL vmlinux 0x39b52d19 __bitmap_and -EXPORT_SYMBOL vmlinux 0x39b8d49c cpu_rmap_update -EXPORT_SYMBOL vmlinux 0x39be4b8e qman_volatile_dequeue -EXPORT_SYMBOL vmlinux 0x39cb2d51 page_pool_put_page_bulk -EXPORT_SYMBOL vmlinux 0x3a03b63d clk_hw_get_clk -EXPORT_SYMBOL vmlinux 0x3a13f54a sgl_alloc -EXPORT_SYMBOL vmlinux 0x3a19b708 pagevec_lookup_range -EXPORT_SYMBOL vmlinux 0x3a29391b vfs_rmdir -EXPORT_SYMBOL vmlinux 0x3a2f6702 sg_alloc_table -EXPORT_SYMBOL vmlinux 0x3a3fa347 mr_rtm_dumproute -EXPORT_SYMBOL vmlinux 0x3a4f9d28 rng_is_initialized -EXPORT_SYMBOL vmlinux 0x3a5fa7bb input_mt_init_slots -EXPORT_SYMBOL vmlinux 0x3a737881 __alloc_skb -EXPORT_SYMBOL vmlinux 0x3a92c64f rproc_report_crash -EXPORT_SYMBOL vmlinux 0x3a97de73 pci_reenable_device -EXPORT_SYMBOL vmlinux 0x3aab3674 sync_blockdev -EXPORT_SYMBOL vmlinux 0x3ab7b1cc scsi_set_sense_field_pointer -EXPORT_SYMBOL vmlinux 0x3ab7fcf3 tcp_mss_to_mtu -EXPORT_SYMBOL vmlinux 0x3aba2a48 skb_headers_offset_update -EXPORT_SYMBOL vmlinux 0x3ad2575c sunxi_sram_release -EXPORT_SYMBOL vmlinux 0x3ad7a5d5 acpi_evaluate_reference -EXPORT_SYMBOL vmlinux 0x3ada9e06 acpi_check_region -EXPORT_SYMBOL vmlinux 0x3adb2367 ppp_input_error -EXPORT_SYMBOL vmlinux 0x3ae6d3c3 scsi_device_set_state -EXPORT_SYMBOL vmlinux 0x3afba346 adjust_managed_page_count -EXPORT_SYMBOL vmlinux 0x3aff3200 acpi_evaluate_object_typed -EXPORT_SYMBOL vmlinux 0x3b087554 __page_cache_alloc -EXPORT_SYMBOL vmlinux 0x3b0f23d2 xudma_is_pktdma -EXPORT_SYMBOL vmlinux 0x3b155b11 padata_alloc_shell -EXPORT_SYMBOL vmlinux 0x3b1ea2e3 tty_write_room -EXPORT_SYMBOL vmlinux 0x3b1ecead qdisc_hash_add -EXPORT_SYMBOL vmlinux 0x3b232e3e sock_set_priority -EXPORT_SYMBOL vmlinux 0x3b25fa1c vfs_copy_file_range -EXPORT_SYMBOL vmlinux 0x3b30dcf8 fs_param_is_blockdev -EXPORT_SYMBOL vmlinux 0x3b321462 LZ4_setStreamDecode -EXPORT_SYMBOL vmlinux 0x3b4eae86 key_put -EXPORT_SYMBOL vmlinux 0x3b61b633 __phy_read_mmd -EXPORT_SYMBOL vmlinux 0x3b644591 __bitmap_shift_left -EXPORT_SYMBOL vmlinux 0x3b6c41ea kstrtouint -EXPORT_SYMBOL vmlinux 0x3b7a7d8d pcim_iomap_regions_request_all -EXPORT_SYMBOL vmlinux 0x3b81c966 udp_table -EXPORT_SYMBOL vmlinux 0x3b83369f tcf_em_unregister -EXPORT_SYMBOL vmlinux 0x3b9144c9 acpi_get_current_resources -EXPORT_SYMBOL vmlinux 0x3ba2bf57 sock_i_uid -EXPORT_SYMBOL vmlinux 0x3bae7f06 xa_set_mark -EXPORT_SYMBOL vmlinux 0x3be7643e security_xfrm_policy_free -EXPORT_SYMBOL vmlinux 0x3bea8493 simple_dir_operations -EXPORT_SYMBOL vmlinux 0x3bf3a3ed rproc_shutdown -EXPORT_SYMBOL vmlinux 0x3bf3ba47 register_shrinker -EXPORT_SYMBOL vmlinux 0x3bf75c72 tcp_mtu_to_mss -EXPORT_SYMBOL vmlinux 0x3bf76bac write_one_page -EXPORT_SYMBOL vmlinux 0x3c089688 skb_set_owner_w -EXPORT_SYMBOL vmlinux 0x3c0f1c49 fput -EXPORT_SYMBOL vmlinux 0x3c185c61 page_put_link -EXPORT_SYMBOL vmlinux 0x3c2bafa4 blk_mq_run_hw_queues -EXPORT_SYMBOL vmlinux 0x3c3215c4 qe_immr -EXPORT_SYMBOL vmlinux 0x3c3fce39 __local_bh_enable_ip -EXPORT_SYMBOL vmlinux 0x3c3ff9fd sprintf -EXPORT_SYMBOL vmlinux 0x3c6636bd request_partial_firmware_into_buf -EXPORT_SYMBOL vmlinux 0x3c95a5cb __dev_kfree_skb_irq -EXPORT_SYMBOL vmlinux 0x3c9608d1 jbd2_fc_end_commit -EXPORT_SYMBOL vmlinux 0x3c9c274f rproc_get_by_phandle -EXPORT_SYMBOL vmlinux 0x3cabcab6 inet_frag_find -EXPORT_SYMBOL vmlinux 0x3cb43f79 unregister_mii_tstamp_controller -EXPORT_SYMBOL vmlinux 0x3cbd4500 dst_alloc -EXPORT_SYMBOL vmlinux 0x3cd9ed83 logic_insw -EXPORT_SYMBOL vmlinux 0x3ce4ca6f disable_irq -EXPORT_SYMBOL vmlinux 0x3ce93c79 io_uring_get_socket -EXPORT_SYMBOL vmlinux 0x3cefd4a3 simple_transaction_release -EXPORT_SYMBOL vmlinux 0x3cf8c015 jbd2_journal_get_create_access -EXPORT_SYMBOL vmlinux 0x3cfd04cc nvdimm_namespace_capacity -EXPORT_SYMBOL vmlinux 0x3d29d59f pnp_get_resource -EXPORT_SYMBOL vmlinux 0x3d45ddba bioset_init_from_src -EXPORT_SYMBOL vmlinux 0x3d56e7b3 utf8_unload -EXPORT_SYMBOL vmlinux 0x3d648d0f fb_set_cmap -EXPORT_SYMBOL vmlinux 0x3d684edc iproc_msi_init -EXPORT_SYMBOL vmlinux 0x3d8042c3 tcp_syn_ack_timeout -EXPORT_SYMBOL vmlinux 0x3d8700ca __of_get_address -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 0x3db4f490 pcibios_bus_to_resource -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 0x3dd4c865 read_cache_page_gfp -EXPORT_SYMBOL vmlinux 0x3dfb86b9 resource_list_create_entry -EXPORT_SYMBOL vmlinux 0x3dfc897c seq_hlist_start_head -EXPORT_SYMBOL vmlinux 0x3e09402c __phy_resume -EXPORT_SYMBOL vmlinux 0x3e1214cb dentry_open -EXPORT_SYMBOL vmlinux 0x3e15759c __sock_i_ino -EXPORT_SYMBOL vmlinux 0x3e16fdd0 kthread_stop -EXPORT_SYMBOL vmlinux 0x3e270139 scsi_change_queue_depth -EXPORT_SYMBOL vmlinux 0x3e38ce90 finish_open -EXPORT_SYMBOL vmlinux 0x3e3bad0a __tasklet_hi_schedule -EXPORT_SYMBOL vmlinux 0x3e5b4e9c kernel_write -EXPORT_SYMBOL vmlinux 0x3e62f98c pci_request_irq -EXPORT_SYMBOL vmlinux 0x3e79fb00 arm_smccc_1_2_smc -EXPORT_SYMBOL vmlinux 0x3e7b9edb dev_vprintk_emit -EXPORT_SYMBOL vmlinux 0x3e948446 mipi_dsi_dcs_set_display_on -EXPORT_SYMBOL vmlinux 0x3e9e153b fb_class -EXPORT_SYMBOL vmlinux 0x3eb2bce2 dquot_reclaim_space_nodirty -EXPORT_SYMBOL vmlinux 0x3ec31950 misc_register -EXPORT_SYMBOL vmlinux 0x3ec5f5ab proc_dointvec_jiffies -EXPORT_SYMBOL vmlinux 0x3ecd5830 d_add -EXPORT_SYMBOL vmlinux 0x3eef4cb0 iov_iter_bvec -EXPORT_SYMBOL vmlinux 0x3efd990e acpi_bus_register_driver -EXPORT_SYMBOL vmlinux 0x3efe1703 phy_unregister_fixup_for_id -EXPORT_SYMBOL vmlinux 0x3f0eabd2 xxh64_update -EXPORT_SYMBOL vmlinux 0x3f0ff732 generic_file_direct_write -EXPORT_SYMBOL vmlinux 0x3f22f709 xfrm6_protocol_deregister -EXPORT_SYMBOL vmlinux 0x3f40f7c5 phy_get_c45_ids -EXPORT_SYMBOL vmlinux 0x3f435b51 genphy_read_mmd_unsupported -EXPORT_SYMBOL vmlinux 0x3f4547a7 put_unused_fd -EXPORT_SYMBOL vmlinux 0x3f47000d inode_insert5 -EXPORT_SYMBOL vmlinux 0x3f471fde fqdir_exit -EXPORT_SYMBOL vmlinux 0x3f545cad cpumask_any_and_distribute -EXPORT_SYMBOL vmlinux 0x3f6238f7 security_unix_may_send -EXPORT_SYMBOL vmlinux 0x3f8280ba rt_spin_lock_unlock -EXPORT_SYMBOL vmlinux 0x3f89071b security_ib_pkey_access -EXPORT_SYMBOL vmlinux 0x3f8b56b0 touch_buffer -EXPORT_SYMBOL vmlinux 0x3f949080 nd_region_release_lane -EXPORT_SYMBOL vmlinux 0x3f966483 free_task -EXPORT_SYMBOL vmlinux 0x3fb2df92 pci_bus_size_bridges -EXPORT_SYMBOL vmlinux 0x3fbf3c89 vme_slave_set -EXPORT_SYMBOL vmlinux 0x3fc02a3a forget_all_cached_acls -EXPORT_SYMBOL vmlinux 0x3fc94080 cdev_init -EXPORT_SYMBOL vmlinux 0x3fd32ecd of_translate_dma_address -EXPORT_SYMBOL vmlinux 0x3fd6db22 jbd2_journal_check_available_features -EXPORT_SYMBOL vmlinux 0x3fd78f3b register_chrdev_region -EXPORT_SYMBOL vmlinux 0x3fdc8e17 seq_open_private -EXPORT_SYMBOL vmlinux 0x3fe2ccbe memweight -EXPORT_SYMBOL vmlinux 0x3fe3ceb9 sock_set_rcvbuf -EXPORT_SYMBOL vmlinux 0x3feaf1f1 lockref_get_not_dead -EXPORT_SYMBOL vmlinux 0x3ff6ea9b tcf_chain_put_by_act -EXPORT_SYMBOL vmlinux 0x3ffd85c6 sock_create_lite -EXPORT_SYMBOL vmlinux 0x4059d88b read_cache_pages -EXPORT_SYMBOL vmlinux 0x405af3e5 devm_iounmap -EXPORT_SYMBOL vmlinux 0x409072f4 pci_write_vpd -EXPORT_SYMBOL vmlinux 0x40973662 sysctl_udp_mem -EXPORT_SYMBOL vmlinux 0x4097d9a2 blk_cleanup_queue -EXPORT_SYMBOL vmlinux 0x409873e3 tty_termios_baud_rate -EXPORT_SYMBOL vmlinux 0x409ee53b fscrypt_decrypt_block_inplace -EXPORT_SYMBOL vmlinux 0x40a20d3b netif_set_real_num_tx_queues -EXPORT_SYMBOL vmlinux 0x40a9b349 vzalloc -EXPORT_SYMBOL vmlinux 0x40ae819c acpi_notifier_call_chain -EXPORT_SYMBOL vmlinux 0x40bdb462 xfrm_dst_ifdown -EXPORT_SYMBOL vmlinux 0x40c41450 tty_check_change -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 0x40e6b644 xfrm_state_flush -EXPORT_SYMBOL vmlinux 0x40ea9e1d max8925_bulk_write -EXPORT_SYMBOL vmlinux 0x40f37b03 nla_reserve -EXPORT_SYMBOL vmlinux 0x40f3d28c mmc_can_erase -EXPORT_SYMBOL vmlinux 0x40f64158 blk_mq_init_queue -EXPORT_SYMBOL vmlinux 0x40f76a86 __vcalloc -EXPORT_SYMBOL vmlinux 0x410e9cb2 memory_cgrp_subsys -EXPORT_SYMBOL vmlinux 0x41101275 hdmi_infoframe_log -EXPORT_SYMBOL vmlinux 0x4111ae5d mempool_create_node -EXPORT_SYMBOL vmlinux 0x4129879f flow_rule_alloc -EXPORT_SYMBOL vmlinux 0x412e379e dquot_writeback_dquots -EXPORT_SYMBOL vmlinux 0x412f893c page_offline_begin -EXPORT_SYMBOL vmlinux 0x413d6d6d xp_dma_sync_for_device_slow -EXPORT_SYMBOL vmlinux 0x4145fee5 __mdiobus_read -EXPORT_SYMBOL vmlinux 0x41482d8b strndup_user -EXPORT_SYMBOL vmlinux 0x414da5e5 qman_enqueue -EXPORT_SYMBOL vmlinux 0x4151928c sock_no_bind -EXPORT_SYMBOL vmlinux 0x41800f39 freeze_bdev -EXPORT_SYMBOL vmlinux 0x4188d439 neigh_rand_reach_time -EXPORT_SYMBOL vmlinux 0x41929580 iptun_encaps -EXPORT_SYMBOL vmlinux 0x4194206d mmc_gpiod_request_cd -EXPORT_SYMBOL vmlinux 0x4195dcae ipv6_chk_addr_and_flags -EXPORT_SYMBOL vmlinux 0x41c74bde ilookup5 -EXPORT_SYMBOL vmlinux 0x41e4eb4d tty_port_close_start -EXPORT_SYMBOL vmlinux 0x41ed3709 get_random_bytes -EXPORT_SYMBOL vmlinux 0x420358c9 xfrm_state_free -EXPORT_SYMBOL vmlinux 0x42062d92 lockref_put_or_lock -EXPORT_SYMBOL vmlinux 0x420964e3 __nla_parse -EXPORT_SYMBOL vmlinux 0x42132270 ether_setup -EXPORT_SYMBOL vmlinux 0x42160169 flush_workqueue -EXPORT_SYMBOL vmlinux 0x421dea27 ip6_dst_hoplimit -EXPORT_SYMBOL vmlinux 0x422c6237 vme_master_request -EXPORT_SYMBOL vmlinux 0x422fe071 dquot_initialize_needed -EXPORT_SYMBOL vmlinux 0x4230a8d7 sg_nents_for_len -EXPORT_SYMBOL vmlinux 0x423b1a4c inet_csk_complete_hashdance -EXPORT_SYMBOL vmlinux 0x4248ae3c single_task_running -EXPORT_SYMBOL vmlinux 0x424d3620 zlib_inflateIncomp -EXPORT_SYMBOL vmlinux 0x424efa47 netif_rx -EXPORT_SYMBOL vmlinux 0x4255cd53 skb_vlan_push -EXPORT_SYMBOL vmlinux 0x425709c1 dcb_ieee_setapp -EXPORT_SYMBOL vmlinux 0x42578e80 acpi_get_type -EXPORT_SYMBOL vmlinux 0x4257a4b4 neigh_destroy -EXPORT_SYMBOL vmlinux 0x426f307c phy_queue_state_machine -EXPORT_SYMBOL vmlinux 0x4284e92c ip_tunnel_header_ops -EXPORT_SYMBOL vmlinux 0x42873d0b __traceiter_module_get -EXPORT_SYMBOL vmlinux 0x42929006 vme_unregister_driver -EXPORT_SYMBOL vmlinux 0x4298aabd scsi_host_busy -EXPORT_SYMBOL vmlinux 0x42a9b872 ip6_frag_init -EXPORT_SYMBOL vmlinux 0x42b038fa vfs_dedupe_file_range_one -EXPORT_SYMBOL vmlinux 0x42b9afc3 inet6_bind -EXPORT_SYMBOL vmlinux 0x42bd0c6f free_mdio_bitbang -EXPORT_SYMBOL vmlinux 0x42f101ec d_add_ci -EXPORT_SYMBOL vmlinux 0x42f1b900 fb_pad_unaligned_buffer -EXPORT_SYMBOL vmlinux 0x42f3c459 skb_push -EXPORT_SYMBOL vmlinux 0x4302d0eb free_pages -EXPORT_SYMBOL vmlinux 0x4316a76d idr_alloc_cyclic -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 0x43555b88 can_nice -EXPORT_SYMBOL vmlinux 0x4355a2ee filemap_fdatawrite_range -EXPORT_SYMBOL vmlinux 0x436ec181 of_mdio_find_device -EXPORT_SYMBOL vmlinux 0x437515c4 sock_no_shutdown -EXPORT_SYMBOL vmlinux 0x437a0d6d __sock_tx_timestamp -EXPORT_SYMBOL vmlinux 0x438610bd security_tun_dev_alloc_security -EXPORT_SYMBOL vmlinux 0x4398957a pnpacpi_protocol -EXPORT_SYMBOL vmlinux 0x43a8a1de input_flush_device -EXPORT_SYMBOL vmlinux 0x43b0c9c3 preempt_schedule -EXPORT_SYMBOL vmlinux 0x43b1bddc bio_advance -EXPORT_SYMBOL vmlinux 0x43bc945c netif_tx_wake_queue -EXPORT_SYMBOL vmlinux 0x43c45011 dm_unregister_target -EXPORT_SYMBOL vmlinux 0x43c8e993 dmam_pool_create -EXPORT_SYMBOL vmlinux 0x43d22fb9 groups_alloc -EXPORT_SYMBOL vmlinux 0x43df1aab genphy_soft_reset -EXPORT_SYMBOL vmlinux 0x43f5de1d ip_check_defrag -EXPORT_SYMBOL vmlinux 0x43f9ebc8 slhc_remember -EXPORT_SYMBOL vmlinux 0x4400093c devfreq_unregister_notifier -EXPORT_SYMBOL vmlinux 0x4403bbd0 imx_sc_misc_set_control -EXPORT_SYMBOL vmlinux 0x44061161 freezing_slow_path -EXPORT_SYMBOL vmlinux 0x44113917 d_invalidate -EXPORT_SYMBOL vmlinux 0x4425e2ac dma_async_tx_descriptor_init -EXPORT_SYMBOL vmlinux 0x4437c96c user_path_at_empty -EXPORT_SYMBOL vmlinux 0x443d01ba ppp_unregister_compressor -EXPORT_SYMBOL vmlinux 0x44469a76 crc_ccitt_false_table -EXPORT_SYMBOL vmlinux 0x4462d35e cpufreq_get_hw_max_freq -EXPORT_SYMBOL vmlinux 0x446982b3 bio_split -EXPORT_SYMBOL vmlinux 0x44865f55 udp_seq_start -EXPORT_SYMBOL vmlinux 0x449ad0a7 memcmp -EXPORT_SYMBOL vmlinux 0x44a6e90a irq_cpu_rmap_add -EXPORT_SYMBOL vmlinux 0x44c2c822 default_qdisc_ops -EXPORT_SYMBOL vmlinux 0x44c8726e thaw_bdev -EXPORT_SYMBOL vmlinux 0x44ca7285 register_cdrom -EXPORT_SYMBOL vmlinux 0x44ce41c3 tcp_md5_hash_skb_data -EXPORT_SYMBOL vmlinux 0x44cf431f nf_unregister_net_hook -EXPORT_SYMBOL vmlinux 0x44e9a829 match_token -EXPORT_SYMBOL vmlinux 0x45006cee default_red -EXPORT_SYMBOL vmlinux 0x45081703 ec_get_handle -EXPORT_SYMBOL vmlinux 0x450d39a1 nvmem_get_mac_address -EXPORT_SYMBOL vmlinux 0x450d9a35 cmd_db_read_slave_id -EXPORT_SYMBOL vmlinux 0x452413a1 qman_alloc_pool_range -EXPORT_SYMBOL vmlinux 0x45244751 __inc_zone_page_state -EXPORT_SYMBOL vmlinux 0x452ba683 ipv6_ext_hdr -EXPORT_SYMBOL vmlinux 0x4539ef55 inet_recvmsg -EXPORT_SYMBOL vmlinux 0x453c8403 pci_msi_enabled -EXPORT_SYMBOL vmlinux 0x45438602 dev_trans_start -EXPORT_SYMBOL vmlinux 0x454a0ad4 pcim_enable_device -EXPORT_SYMBOL vmlinux 0x454b10bd __mod_zone_page_state -EXPORT_SYMBOL vmlinux 0x455179e2 mii_check_link -EXPORT_SYMBOL vmlinux 0x4552fa61 input_mt_report_slot_state -EXPORT_SYMBOL vmlinux 0x45535485 xxh32_update -EXPORT_SYMBOL vmlinux 0x4578f528 __kfifo_to_user -EXPORT_SYMBOL vmlinux 0x457f3c9b rtnl_set_sk_err -EXPORT_SYMBOL vmlinux 0x459f6bd0 f_setown -EXPORT_SYMBOL vmlinux 0x45b15b06 bio_add_page -EXPORT_SYMBOL vmlinux 0x45d51fdf dma_fence_remove_callback -EXPORT_SYMBOL vmlinux 0x45e9de39 vfs_rename -EXPORT_SYMBOL vmlinux 0x45f891e8 xa_store_range -EXPORT_SYMBOL vmlinux 0x45f8f8c6 d_tmpfile -EXPORT_SYMBOL vmlinux 0x460f4a34 flow_hash_from_keys -EXPORT_SYMBOL vmlinux 0x4612a743 of_match_node -EXPORT_SYMBOL vmlinux 0x461d16ca sg_nents -EXPORT_SYMBOL vmlinux 0x46281ee8 pm860x_set_bits -EXPORT_SYMBOL vmlinux 0x462a1a67 qdisc_warn_nonwc -EXPORT_SYMBOL vmlinux 0x462f04ba sk_stream_wait_close -EXPORT_SYMBOL vmlinux 0x46307a3b dev_mc_del_global -EXPORT_SYMBOL vmlinux 0x4631752b fscrypt_zeroout_range -EXPORT_SYMBOL vmlinux 0x4634f5b5 configfs_register_subsystem -EXPORT_SYMBOL vmlinux 0x4641ee4c ps2_drain -EXPORT_SYMBOL vmlinux 0x465205ab devm_request_resource -EXPORT_SYMBOL vmlinux 0x465c0c49 of_find_backlight_by_node -EXPORT_SYMBOL vmlinux 0x465e24ff ucs2_utf8size -EXPORT_SYMBOL vmlinux 0x466a282b km_new_mapping -EXPORT_SYMBOL vmlinux 0x466b2315 xa_get_order -EXPORT_SYMBOL vmlinux 0x466c14a7 __delay -EXPORT_SYMBOL vmlinux 0x467272cb radix_tree_tagged -EXPORT_SYMBOL vmlinux 0x467757ab sock_no_sendmsg -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 0x46a87ad3 jbd2_journal_restart -EXPORT_SYMBOL vmlinux 0x46b0cced tcp_req_err -EXPORT_SYMBOL vmlinux 0x46c09c04 tcf_exts_change -EXPORT_SYMBOL vmlinux 0x46c47fb6 __node_distance -EXPORT_SYMBOL vmlinux 0x46da8b53 xp_set_rxq_info -EXPORT_SYMBOL vmlinux 0x46de6c5f vfs_readlink -EXPORT_SYMBOL vmlinux 0x46ea6457 inode_update_time -EXPORT_SYMBOL vmlinux 0x46f732f3 pcibus_to_node -EXPORT_SYMBOL vmlinux 0x46f9b9cf udp_lib_unhash -EXPORT_SYMBOL vmlinux 0x46feddcc unregister_netdev -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 0x470a8e6e blk_queue_max_write_same_sectors -EXPORT_SYMBOL vmlinux 0x4715a909 acpi_load_table -EXPORT_SYMBOL vmlinux 0x4715bc78 tc_cleanup_flow_action -EXPORT_SYMBOL vmlinux 0x474b4e0e elv_rb_del -EXPORT_SYMBOL vmlinux 0x475d7427 fman_get_rx_extra_headroom -EXPORT_SYMBOL vmlinux 0x4762d3ee truncate_inode_pages_range -EXPORT_SYMBOL vmlinux 0x4763bebe input_mt_report_pointer_emulation -EXPORT_SYMBOL vmlinux 0x47709e42 free_anon_bdev -EXPORT_SYMBOL vmlinux 0x477cb606 genl_register_family -EXPORT_SYMBOL vmlinux 0x478319d4 vfs_create -EXPORT_SYMBOL vmlinux 0x479137ca imx_scu_irq_unregister_notifier -EXPORT_SYMBOL vmlinux 0x47a141fd account_page_redirty -EXPORT_SYMBOL vmlinux 0x47c20f8a refcount_dec_not_one -EXPORT_SYMBOL vmlinux 0x47c65bfc unregister_inet6addr_validator_notifier -EXPORT_SYMBOL vmlinux 0x47cd751e simple_unlink -EXPORT_SYMBOL vmlinux 0x47cfd825 kstrtouint_from_user -EXPORT_SYMBOL vmlinux 0x47d4e327 override_creds -EXPORT_SYMBOL vmlinux 0x47d6d509 of_find_compatible_node -EXPORT_SYMBOL vmlinux 0x47ded36e qdisc_watchdog_init -EXPORT_SYMBOL vmlinux 0x47dfdf90 devm_backlight_device_unregister -EXPORT_SYMBOL vmlinux 0x4801d12b qdisc_create_dflt -EXPORT_SYMBOL vmlinux 0x4805f335 blk_mq_rq_cpu -EXPORT_SYMBOL vmlinux 0x481814c4 mb_cache_entry_find_next -EXPORT_SYMBOL vmlinux 0x48193639 acpi_lid_open -EXPORT_SYMBOL vmlinux 0x48271b81 phy_ethtool_nway_reset -EXPORT_SYMBOL vmlinux 0x4829a47e memcpy -EXPORT_SYMBOL vmlinux 0x4829cf6b fscrypt_enqueue_decrypt_work -EXPORT_SYMBOL vmlinux 0x482b0cf0 bio_add_pc_page -EXPORT_SYMBOL vmlinux 0x4837bb10 logic_outsb -EXPORT_SYMBOL vmlinux 0x4840e439 make_bad_inode -EXPORT_SYMBOL vmlinux 0x4841bdee strnchr -EXPORT_SYMBOL vmlinux 0x484746ae security_inet_conn_established -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 0x488bbfd0 netdev_port_same_parent_id -EXPORT_SYMBOL vmlinux 0x488c41a4 acpi_bus_get_status -EXPORT_SYMBOL vmlinux 0x488de72b udp_seq_ops -EXPORT_SYMBOL vmlinux 0x488ea808 generic_set_encrypted_ci_d_ops -EXPORT_SYMBOL vmlinux 0x48946538 napi_gro_receive -EXPORT_SYMBOL vmlinux 0x489c4b92 alloc_anon_inode -EXPORT_SYMBOL vmlinux 0x489eda10 memset32 -EXPORT_SYMBOL vmlinux 0x489f6e0b rdma_dim -EXPORT_SYMBOL vmlinux 0x48a91171 string_get_size -EXPORT_SYMBOL vmlinux 0x48b1f385 dev_change_proto_down_reason -EXPORT_SYMBOL vmlinux 0x48b99a13 vme_lm_free -EXPORT_SYMBOL vmlinux 0x48c57ed2 eth_gro_receive -EXPORT_SYMBOL vmlinux 0x48c628c2 mmc_card_alternative_gpt_sector -EXPORT_SYMBOL vmlinux 0x48c65dd2 proc_remove -EXPORT_SYMBOL vmlinux 0x48d026d2 truncate_inode_pages -EXPORT_SYMBOL vmlinux 0x49045426 icmp_err_convert -EXPORT_SYMBOL vmlinux 0x4909a3a0 xfrm_policy_walk_done -EXPORT_SYMBOL vmlinux 0x490ea8b2 mode_strip_sgid -EXPORT_SYMBOL vmlinux 0x4910412e register_md_personality -EXPORT_SYMBOL vmlinux 0x492b2cc6 bh_uptodate_or_lock -EXPORT_SYMBOL vmlinux 0x495231ea mul_u64_u64_div_u64 -EXPORT_SYMBOL vmlinux 0x4974fff8 serial8250_register_8250_port -EXPORT_SYMBOL vmlinux 0x49773b64 __ip4_datagram_connect -EXPORT_SYMBOL vmlinux 0x4981d98a phy_mac_interrupt -EXPORT_SYMBOL vmlinux 0x498300b5 __breadahead -EXPORT_SYMBOL vmlinux 0x498e9128 ZSTD_findDecompressedSize -EXPORT_SYMBOL vmlinux 0x499f0ecf nd_sb_checksum -EXPORT_SYMBOL vmlinux 0x49ae2e15 param_get_invbool -EXPORT_SYMBOL vmlinux 0x49b163b8 acpi_bus_scan -EXPORT_SYMBOL vmlinux 0x49b8f315 fwnode_get_mac_address -EXPORT_SYMBOL vmlinux 0x49d72777 end_buffer_async_write -EXPORT_SYMBOL vmlinux 0x49e79e05 netdev_get_xmit_slave -EXPORT_SYMBOL vmlinux 0x4a39379a tty_hung_up_p -EXPORT_SYMBOL vmlinux 0x4a3ad70e wait_for_completion_timeout -EXPORT_SYMBOL vmlinux 0x4a448158 phy_device_remove -EXPORT_SYMBOL vmlinux 0x4a4a9be0 amba_find_device -EXPORT_SYMBOL vmlinux 0x4a5495d6 nf_ct_get_tuple_skb -EXPORT_SYMBOL vmlinux 0x4a5cab3a i2c_clients_command -EXPORT_SYMBOL vmlinux 0x4a706f03 phy_config_aneg -EXPORT_SYMBOL vmlinux 0x4a759496 devm_kvasprintf -EXPORT_SYMBOL vmlinux 0x4a77f0d6 dcb_getapp -EXPORT_SYMBOL vmlinux 0x4a7db175 fscrypt_ioctl_get_policy -EXPORT_SYMBOL vmlinux 0x4a8ab486 sk_error_report -EXPORT_SYMBOL vmlinux 0x4a93576a ucc_fast_free -EXPORT_SYMBOL vmlinux 0x4a94d8f4 kernel_sendmsg -EXPORT_SYMBOL vmlinux 0x4a96a8eb xxh32_digest -EXPORT_SYMBOL vmlinux 0x4a9f1ea7 generic_file_readonly_mmap -EXPORT_SYMBOL vmlinux 0x4aa081a3 netif_tx_stop_all_queues -EXPORT_SYMBOL vmlinux 0x4ac921c4 generic_remap_file_range_prep -EXPORT_SYMBOL vmlinux 0x4ad022cc sock_from_file -EXPORT_SYMBOL vmlinux 0x4ad614d9 scsi_host_alloc -EXPORT_SYMBOL vmlinux 0x4adab14d tcp_read_sock -EXPORT_SYMBOL vmlinux 0x4ae8a43e tcp_stream_memory_free -EXPORT_SYMBOL vmlinux 0x4aea463f crc32_le_shift -EXPORT_SYMBOL vmlinux 0x4af6ddf0 kstrtou16 -EXPORT_SYMBOL vmlinux 0x4af84aee down_write_killable -EXPORT_SYMBOL vmlinux 0x4afdf503 fman_get_bmi_max_fifo_size -EXPORT_SYMBOL vmlinux 0x4b02553c skb_vlan_untag -EXPORT_SYMBOL vmlinux 0x4b0a3f52 gic_nonsecure_priorities -EXPORT_SYMBOL vmlinux 0x4b0ab18c tcp_sock_set_syncnt -EXPORT_SYMBOL vmlinux 0x4b0ce30b seq_pad -EXPORT_SYMBOL vmlinux 0x4b0fcb7e nf_register_net_hook -EXPORT_SYMBOL vmlinux 0x4b4e3ebb tcf_exts_destroy -EXPORT_SYMBOL vmlinux 0x4b5fd49e dm_kcopyd_do_callback -EXPORT_SYMBOL vmlinux 0x4b6df007 acpi_evaluate_reg -EXPORT_SYMBOL vmlinux 0x4b750f53 _raw_spin_unlock_irq -EXPORT_SYMBOL vmlinux 0x4b772dc3 of_clk_get_by_name -EXPORT_SYMBOL vmlinux 0x4b7cc5c0 vfs_mkdir -EXPORT_SYMBOL vmlinux 0x4b7dd363 pci_write_config_dword -EXPORT_SYMBOL vmlinux 0x4b9d1881 rproc_coredump_using_sections -EXPORT_SYMBOL vmlinux 0x4babcca9 nf_getsockopt -EXPORT_SYMBOL vmlinux 0x4bd7f0cc dma_fence_allocate_private_stub -EXPORT_SYMBOL vmlinux 0x4bde10f2 xfrm_policy_hash_rebuild -EXPORT_SYMBOL vmlinux 0x4beb91e8 kernel_accept -EXPORT_SYMBOL vmlinux 0x4beddfed __f_setown -EXPORT_SYMBOL vmlinux 0x4bef1c67 empty_name -EXPORT_SYMBOL vmlinux 0x4bf3ce6f qman_release_cgrid -EXPORT_SYMBOL vmlinux 0x4bfb54cd cdrom_mode_select -EXPORT_SYMBOL vmlinux 0x4c06ae15 super_setup_bdi_name -EXPORT_SYMBOL vmlinux 0x4c07a7e0 acpi_processor_unregister_performance -EXPORT_SYMBOL vmlinux 0x4c246dc7 __set_page_dirty_no_writeback -EXPORT_SYMBOL vmlinux 0x4c31317a register_sysctl -EXPORT_SYMBOL vmlinux 0x4c38d4e0 utf8_strncasecmp_folded -EXPORT_SYMBOL vmlinux 0x4c39ba55 inet_ioctl -EXPORT_SYMBOL vmlinux 0x4c3b7570 of_find_i2c_adapter_by_node -EXPORT_SYMBOL vmlinux 0x4c3b923f vfs_dedupe_file_range -EXPORT_SYMBOL vmlinux 0x4c416eb9 LZ4_decompress_fast -EXPORT_SYMBOL vmlinux 0x4c5c6e50 xfrm_dev_state_flush -EXPORT_SYMBOL vmlinux 0x4c741238 devm_clk_release_clkdev -EXPORT_SYMBOL vmlinux 0x4c808616 config_item_get_unless_zero -EXPORT_SYMBOL vmlinux 0x4c89553e nd_dax_probe -EXPORT_SYMBOL vmlinux 0x4c8ea960 generic_cont_expand_simple -EXPORT_SYMBOL vmlinux 0x4ca56213 eth_type_trans -EXPORT_SYMBOL vmlinux 0x4ca582ca dev_set_allmulti -EXPORT_SYMBOL vmlinux 0x4cb1e67f simple_getattr -EXPORT_SYMBOL vmlinux 0x4cba441d iwe_stream_add_event -EXPORT_SYMBOL vmlinux 0x4cd05671 param_ops_charp -EXPORT_SYMBOL vmlinux 0x4ce38e87 ipv6_push_frag_opts -EXPORT_SYMBOL vmlinux 0x4ce7522f mipi_dsi_dcs_set_display_off -EXPORT_SYMBOL vmlinux 0x4cfb58ba blk_queue_bounce_limit -EXPORT_SYMBOL vmlinux 0x4cfdfa6c fib_notifier_ops_unregister -EXPORT_SYMBOL vmlinux 0x4d0d163d copy_page -EXPORT_SYMBOL vmlinux 0x4d19e892 __blk_mq_end_request -EXPORT_SYMBOL vmlinux 0x4d2141d0 inet_sendpage -EXPORT_SYMBOL vmlinux 0x4d2c7133 acpi_info -EXPORT_SYMBOL vmlinux 0x4d303bd0 generic_fillattr -EXPORT_SYMBOL vmlinux 0x4d5d644b pcim_set_mwi -EXPORT_SYMBOL vmlinux 0x4d65cbd5 csum_ipv6_magic -EXPORT_SYMBOL vmlinux 0x4d924f20 memremap -EXPORT_SYMBOL vmlinux 0x4d9b652b rb_erase -EXPORT_SYMBOL vmlinux 0x4da596e6 qman_retire_fq -EXPORT_SYMBOL vmlinux 0x4da9ba14 tty_port_hangup -EXPORT_SYMBOL vmlinux 0x4db8cf53 dev_remove_pack -EXPORT_SYMBOL vmlinux 0x4dc06c8f __sock_create -EXPORT_SYMBOL vmlinux 0x4df02057 crc32_be -EXPORT_SYMBOL vmlinux 0x4df2ea84 gen_estimator_read -EXPORT_SYMBOL vmlinux 0x4df54212 jbd2_fc_end_commit_fallback -EXPORT_SYMBOL vmlinux 0x4e070de9 flow_block_cb_free -EXPORT_SYMBOL vmlinux 0x4e1562b4 mdiobus_scan -EXPORT_SYMBOL vmlinux 0x4e1ebdd9 mmc_detect_change -EXPORT_SYMBOL vmlinux 0x4e2e74c1 qcom_scm_io_readl -EXPORT_SYMBOL vmlinux 0x4e3567f7 match_int -EXPORT_SYMBOL vmlinux 0x4e36cdc4 __ubsan_handle_divrem_overflow -EXPORT_SYMBOL vmlinux 0x4e500788 phy_modify_paged_changed -EXPORT_SYMBOL vmlinux 0x4e547048 __kmalloc_node_track_caller -EXPORT_SYMBOL vmlinux 0x4e551344 tcp_md5_hash_key -EXPORT_SYMBOL vmlinux 0x4e5f3a6c up_write -EXPORT_SYMBOL vmlinux 0x4e68e9be rb_next_postorder -EXPORT_SYMBOL vmlinux 0x4e6e8ea7 fg_console -EXPORT_SYMBOL vmlinux 0x4e7b06a6 dev_get_by_index -EXPORT_SYMBOL vmlinux 0x4e939b52 flow_rule_match_cvlan -EXPORT_SYMBOL vmlinux 0x4e94e94b phy_get_eee_err -EXPORT_SYMBOL vmlinux 0x4e95a731 i2c_del_adapter -EXPORT_SYMBOL vmlinux 0x4ea25709 dql_reset -EXPORT_SYMBOL vmlinux 0x4eada8f7 security_secid_to_secctx -EXPORT_SYMBOL vmlinux 0x4eb861cc phy_get_internal_delay -EXPORT_SYMBOL vmlinux 0x4eb881fc nvdimm_check_and_set_ro -EXPORT_SYMBOL vmlinux 0x4ec308b7 ip_tunnel_parse_protocol -EXPORT_SYMBOL vmlinux 0x4ec5499a register_key_type -EXPORT_SYMBOL vmlinux 0x4ec54e78 bitmap_to_arr32 -EXPORT_SYMBOL vmlinux 0x4ed0eb24 pcie_port_service_unregister -EXPORT_SYMBOL vmlinux 0x4ede2416 tcp_rcv_established -EXPORT_SYMBOL vmlinux 0x4ee6b238 udp_disconnect -EXPORT_SYMBOL vmlinux 0x4f0b0447 pci_scan_bridge -EXPORT_SYMBOL vmlinux 0x4f128022 free_bucket_spinlocks -EXPORT_SYMBOL vmlinux 0x4f1cd128 security_tun_dev_create -EXPORT_SYMBOL vmlinux 0x4f2250ba rtc_tm_to_time64 -EXPORT_SYMBOL vmlinux 0x4f23ba93 pci_wait_for_pending_transaction -EXPORT_SYMBOL vmlinux 0x4f465484 security_dentry_init_security -EXPORT_SYMBOL vmlinux 0x4f4799ef sock_alloc_file -EXPORT_SYMBOL vmlinux 0x4f481f9b fman_set_mac_active_pause -EXPORT_SYMBOL vmlinux 0x4f49ded6 tcp_shutdown -EXPORT_SYMBOL vmlinux 0x4f55166f acpi_set_current_resources -EXPORT_SYMBOL vmlinux 0x4f7a0cb4 sock_bind_add -EXPORT_SYMBOL vmlinux 0x4f86d43c __sync_dirty_buffer -EXPORT_SYMBOL vmlinux 0x4f8a315c dma_resv_fini -EXPORT_SYMBOL vmlinux 0x4fa934a3 rename_lock -EXPORT_SYMBOL vmlinux 0x4fb4fcd2 ethtool_get_phc_vclocks -EXPORT_SYMBOL vmlinux 0x4fb7af93 input_register_handle -EXPORT_SYMBOL vmlinux 0x4fd8c56d __test_set_page_writeback -EXPORT_SYMBOL vmlinux 0x4fe668f0 tcf_block_get -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 0x500f71f2 twl6040_clear_bits -EXPORT_SYMBOL vmlinux 0x5024ea4f clocksource_unregister -EXPORT_SYMBOL vmlinux 0x5025f942 mark_buffer_async_write -EXPORT_SYMBOL vmlinux 0x5027bde2 acpi_acquire_mutex -EXPORT_SYMBOL vmlinux 0x5028f946 arp_create -EXPORT_SYMBOL vmlinux 0x5051d7e1 rpmh_invalidate -EXPORT_SYMBOL vmlinux 0x50624917 sha1_init -EXPORT_SYMBOL vmlinux 0x506b956e imx_scu_enable_general_irq_channel -EXPORT_SYMBOL vmlinux 0x506dff1a __genradix_free -EXPORT_SYMBOL vmlinux 0x50722f94 inet_addr_type_table -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 0x50a298b0 kobject_set_name -EXPORT_SYMBOL vmlinux 0x50a4698c fb_videomode_to_modelist -EXPORT_SYMBOL vmlinux 0x50aee83b tegra_ivc_write_get_next_frame -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 0x50d926df audit_log_start -EXPORT_SYMBOL vmlinux 0x50dc910b devm_devfreq_unregister_opp_notifier -EXPORT_SYMBOL vmlinux 0x50f85302 __arm_smccc_hvc -EXPORT_SYMBOL vmlinux 0x50f91491 __genradix_ptr -EXPORT_SYMBOL vmlinux 0x50fd2d79 __ip_select_ident -EXPORT_SYMBOL vmlinux 0x50fe3dd0 dev_printk_emit -EXPORT_SYMBOL vmlinux 0x51209328 inet_del_offload -EXPORT_SYMBOL vmlinux 0x5122ff3b __skb_get_hash -EXPORT_SYMBOL vmlinux 0x513deace find_inode_rcu -EXPORT_SYMBOL vmlinux 0x513ec959 backlight_device_unregister -EXPORT_SYMBOL vmlinux 0x51479dbe sk_mc_loop -EXPORT_SYMBOL vmlinux 0x515083bf acpi_release_mutex -EXPORT_SYMBOL vmlinux 0x515d5beb iw_handler_set_thrspy -EXPORT_SYMBOL vmlinux 0x515f520b qman_portal_get_iperiod -EXPORT_SYMBOL vmlinux 0x51641162 opal_unlock_from_suspend -EXPORT_SYMBOL vmlinux 0x517009ab bio_put -EXPORT_SYMBOL vmlinux 0x518af2b3 dcache_readdir -EXPORT_SYMBOL vmlinux 0x5191b758 dput -EXPORT_SYMBOL vmlinux 0x51a2b529 d_instantiate_anon -EXPORT_SYMBOL vmlinux 0x51b0fc56 bio_endio -EXPORT_SYMBOL vmlinux 0x51bcb517 vme_irq_handler -EXPORT_SYMBOL vmlinux 0x51bd9a94 devm_clk_hw_register_clkdev -EXPORT_SYMBOL vmlinux 0x51d12d4e acpi_pci_disabled -EXPORT_SYMBOL vmlinux 0x51d2c9a4 simple_pin_fs -EXPORT_SYMBOL vmlinux 0x51f223ed blk_rq_unmap_user -EXPORT_SYMBOL vmlinux 0x51f49a10 blk_mq_alloc_request -EXPORT_SYMBOL vmlinux 0x51f739ce mpage_readpage -EXPORT_SYMBOL vmlinux 0x51f86a1a blk_limits_io_opt -EXPORT_SYMBOL vmlinux 0x5203d176 cmd_db_ready -EXPORT_SYMBOL vmlinux 0x52061e75 security_unix_stream_connect -EXPORT_SYMBOL vmlinux 0x5214a6f0 key_payload_reserve -EXPORT_SYMBOL vmlinux 0x523c2ada param_ops_hexint -EXPORT_SYMBOL vmlinux 0x52521135 pci_dev_get -EXPORT_SYMBOL vmlinux 0x52597007 nf_log_bind_pf -EXPORT_SYMBOL vmlinux 0x526eef2c hdmi_vendor_infoframe_pack -EXPORT_SYMBOL vmlinux 0x526f5f62 fman_bind -EXPORT_SYMBOL vmlinux 0x52709505 inet_csk_init_xmit_timers -EXPORT_SYMBOL vmlinux 0x52983a4f vme_master_write -EXPORT_SYMBOL vmlinux 0x52c8b837 set_create_files_as -EXPORT_SYMBOL vmlinux 0x52c9db2e __dev_direct_xmit -EXPORT_SYMBOL vmlinux 0x52d540c9 rproc_mem_entry_init -EXPORT_SYMBOL vmlinux 0x52d717da xz_dec_init -EXPORT_SYMBOL vmlinux 0x52dcb85b __traceiter_kmalloc -EXPORT_SYMBOL vmlinux 0x52ecbc75 crc_ccitt -EXPORT_SYMBOL vmlinux 0x52f2850a imx_sc_pm_cpu_start -EXPORT_SYMBOL vmlinux 0x5309ae2e __put_user_ns -EXPORT_SYMBOL vmlinux 0x530b1e98 pm_suspend -EXPORT_SYMBOL vmlinux 0x53126ecc __percpu_counter_sum -EXPORT_SYMBOL vmlinux 0x531a80ac tcp_v4_md5_lookup -EXPORT_SYMBOL vmlinux 0x53222201 acpi_dev_get_first_match_dev -EXPORT_SYMBOL vmlinux 0x533206b5 sort_r -EXPORT_SYMBOL vmlinux 0x5338184f ethtool_sprintf -EXPORT_SYMBOL vmlinux 0x533dc029 phy_ethtool_ksettings_set -EXPORT_SYMBOL vmlinux 0x534a600b inet6_add_protocol -EXPORT_SYMBOL vmlinux 0x534ad62c inet_reqsk_alloc -EXPORT_SYMBOL vmlinux 0x5356684b amba_device_unregister -EXPORT_SYMBOL vmlinux 0x535d2f61 __nla_put_64bit -EXPORT_SYMBOL vmlinux 0x535ef115 from_kprojid -EXPORT_SYMBOL vmlinux 0x5367dc44 dev_pre_changeaddr_notify -EXPORT_SYMBOL vmlinux 0x537b220f sync_inodes_sb -EXPORT_SYMBOL vmlinux 0x538cb159 mdiobus_setup_mdiodev_from_board_info -EXPORT_SYMBOL vmlinux 0x53a2629a scsi_report_opcode -EXPORT_SYMBOL vmlinux 0x53a5e447 xfrm6_protocol_register -EXPORT_SYMBOL vmlinux 0x53cc6bb2 nd_btt_arena_is_valid -EXPORT_SYMBOL vmlinux 0x53cdcb42 jbd2_journal_flush -EXPORT_SYMBOL vmlinux 0x53eb10cd wait_for_key_construction -EXPORT_SYMBOL vmlinux 0x53eff192 tegra_ivc_align -EXPORT_SYMBOL vmlinux 0x53fa36d1 ZSTD_decompressBlock -EXPORT_SYMBOL vmlinux 0x5402da9f xudma_navss_psil_pair -EXPORT_SYMBOL vmlinux 0x54094996 tcp_rtx_synack -EXPORT_SYMBOL vmlinux 0x54127dd0 of_find_net_device_by_node -EXPORT_SYMBOL vmlinux 0x541fed4e pfifo_fast_ops -EXPORT_SYMBOL vmlinux 0x543ef284 seq_hlist_start -EXPORT_SYMBOL vmlinux 0x54544dd4 ip_frag_init -EXPORT_SYMBOL vmlinux 0x54595679 pci_release_region -EXPORT_SYMBOL vmlinux 0x546f4dc3 copy_highpage -EXPORT_SYMBOL vmlinux 0x5473e88c blk_dump_rq_flags -EXPORT_SYMBOL vmlinux 0x547a16a1 neigh_sysctl_unregister -EXPORT_SYMBOL vmlinux 0x54846851 icmp6_send -EXPORT_SYMBOL vmlinux 0x54998609 dquot_file_open -EXPORT_SYMBOL vmlinux 0x549a78bf vme_lm_request -EXPORT_SYMBOL vmlinux 0x54a0c912 vm_map_pages_zero -EXPORT_SYMBOL vmlinux 0x54b1fac6 __ubsan_handle_load_invalid_value -EXPORT_SYMBOL vmlinux 0x54b701b3 from_kuid -EXPORT_SYMBOL vmlinux 0x54b86076 elv_rb_latter_request -EXPORT_SYMBOL vmlinux 0x54cb6a17 __zerocopy_sg_from_iter -EXPORT_SYMBOL vmlinux 0x54cfacd5 __ctzdi2 -EXPORT_SYMBOL vmlinux 0x54d75efc inet6_offloads -EXPORT_SYMBOL vmlinux 0x54e411d8 scsi_dma_map -EXPORT_SYMBOL vmlinux 0x54e6fcdd net_enable_timestamp -EXPORT_SYMBOL vmlinux 0x54ea6dfe xen_start_flags -EXPORT_SYMBOL vmlinux 0x55030865 copy_string_kernel -EXPORT_SYMBOL vmlinux 0x5506b8f7 netlbl_bitmap_setbit -EXPORT_SYMBOL vmlinux 0x5508f28d bman_acquire -EXPORT_SYMBOL vmlinux 0x551bd071 __rb_erase_color -EXPORT_SYMBOL vmlinux 0x5527eb6b tcp_seq_start -EXPORT_SYMBOL vmlinux 0x552db3aa qman_query_cgr_congested -EXPORT_SYMBOL vmlinux 0x552e87cf dma_find_channel -EXPORT_SYMBOL vmlinux 0x5538406a md_integrity_add_rdev -EXPORT_SYMBOL vmlinux 0x554ae3a4 irq_poll_sched -EXPORT_SYMBOL vmlinux 0x555ba6c6 __skb_flow_get_ports -EXPORT_SYMBOL vmlinux 0x55642b9c blk_mq_tagset_wait_completed_request -EXPORT_SYMBOL vmlinux 0x556b5d62 __kfifo_dma_in_prepare_r -EXPORT_SYMBOL vmlinux 0x556e324f tegra_ivc_read_advance -EXPORT_SYMBOL vmlinux 0x5570a142 vme_bus_type -EXPORT_SYMBOL vmlinux 0x55767d66 _copy_from_iter_nocache -EXPORT_SYMBOL vmlinux 0x558119d1 phy_start_cable_test_tdr -EXPORT_SYMBOL vmlinux 0x558b281d aes_expandkey -EXPORT_SYMBOL vmlinux 0x55b69c27 down_write -EXPORT_SYMBOL vmlinux 0x55d4324e vmf_insert_mixed_prot -EXPORT_SYMBOL vmlinux 0x55dbc3ad scsi_host_put -EXPORT_SYMBOL vmlinux 0x55de468b set_blocksize -EXPORT_SYMBOL vmlinux 0x55dffaf1 pcie_port_service_register -EXPORT_SYMBOL vmlinux 0x55e31703 ethtool_convert_link_mode_to_legacy_u32 -EXPORT_SYMBOL vmlinux 0x55e80350 netdev_bonding_info_change -EXPORT_SYMBOL vmlinux 0x55fb27a3 dma_sync_single_for_device -EXPORT_SYMBOL vmlinux 0x5614f48a qman_dqrr_get_ithresh -EXPORT_SYMBOL vmlinux 0x56334cd2 from_kprojid_munged -EXPORT_SYMBOL vmlinux 0x5635a60a vmalloc_user -EXPORT_SYMBOL vmlinux 0x563fa4f2 build_skb -EXPORT_SYMBOL vmlinux 0x56470118 __warn_printk -EXPORT_SYMBOL vmlinux 0x564b7686 generic_iommu_put_resv_regions -EXPORT_SYMBOL vmlinux 0x564f7608 acpi_reconfig_notifier_register -EXPORT_SYMBOL vmlinux 0x566a9471 super_setup_bdi -EXPORT_SYMBOL vmlinux 0x566f97dc submit_bio_noacct -EXPORT_SYMBOL vmlinux 0x56802ae8 rps_cpu_mask -EXPORT_SYMBOL vmlinux 0x5680a347 sock_setsockopt -EXPORT_SYMBOL vmlinux 0x56adf812 zap_page_range -EXPORT_SYMBOL vmlinux 0x56c2264e balance_dirty_pages_ratelimited -EXPORT_SYMBOL vmlinux 0x56c3db64 __tracepoint_kmalloc -EXPORT_SYMBOL vmlinux 0x56c4bd2b __scsi_execute -EXPORT_SYMBOL vmlinux 0x56c7cd03 sk_stream_error -EXPORT_SYMBOL vmlinux 0x56c8799d scsi_kunmap_atomic_sg -EXPORT_SYMBOL vmlinux 0x57030fa8 dquot_alloc -EXPORT_SYMBOL vmlinux 0x574313e9 ip_sock_set_pktinfo -EXPORT_SYMBOL vmlinux 0x574c2e74 bitmap_release_region -EXPORT_SYMBOL vmlinux 0x57575f08 dmaengine_put -EXPORT_SYMBOL vmlinux 0x575dd0c6 wireless_send_event -EXPORT_SYMBOL vmlinux 0x57674fd7 __sw_hweight16 -EXPORT_SYMBOL vmlinux 0x576b3305 mempool_init_node -EXPORT_SYMBOL vmlinux 0x576ec0ca __traceiter_dma_fence_enable_signal -EXPORT_SYMBOL vmlinux 0x57802006 __tty_alloc_driver -EXPORT_SYMBOL vmlinux 0x578a408b ZSTD_initDCtx -EXPORT_SYMBOL vmlinux 0x5792f848 strlcpy -EXPORT_SYMBOL vmlinux 0x57a89719 find_get_pages_contig -EXPORT_SYMBOL vmlinux 0x57c4c3ee neigh_for_each -EXPORT_SYMBOL vmlinux 0x57cc5f8f phy_ethtool_get_link_ksettings -EXPORT_SYMBOL vmlinux 0x57cc7033 dcb_ieee_getapp_default_prio_mask -EXPORT_SYMBOL vmlinux 0x57d6876f pm860x_bulk_read -EXPORT_SYMBOL vmlinux 0x57e02dde phy_device_register -EXPORT_SYMBOL vmlinux 0x57f38cdc qe_get_firmware_info -EXPORT_SYMBOL vmlinux 0x57f3b1ae dev_close -EXPORT_SYMBOL vmlinux 0x5818fe3c posix_acl_from_mode -EXPORT_SYMBOL vmlinux 0x581f98da zlib_inflate -EXPORT_SYMBOL vmlinux 0x582606eb xudma_rflow_put -EXPORT_SYMBOL vmlinux 0x582b6275 xfrm_if_unregister_cb -EXPORT_SYMBOL vmlinux 0x5838f6c9 rtc_valid_tm -EXPORT_SYMBOL vmlinux 0x58512646 pci_write_config_byte -EXPORT_SYMBOL vmlinux 0x5854cb1c dev_set_mac_address_user -EXPORT_SYMBOL vmlinux 0x585ae877 nmi_panic -EXPORT_SYMBOL vmlinux 0x5870a5ef fs_context_for_reconfigure -EXPORT_SYMBOL vmlinux 0x5875a7ce __tty_insert_flip_char -EXPORT_SYMBOL vmlinux 0x5876138c tc_setup_flow_action -EXPORT_SYMBOL vmlinux 0x587b0954 kvasprintf -EXPORT_SYMBOL vmlinux 0x587b892e qe_get_num_of_risc -EXPORT_SYMBOL vmlinux 0x587e0a0b netlink_net_capable -EXPORT_SYMBOL vmlinux 0x587f22d7 devmap_managed_key -EXPORT_SYMBOL vmlinux 0x589b3dfa scsi_vpd_lun_id -EXPORT_SYMBOL vmlinux 0x58a0ddec truncate_setsize -EXPORT_SYMBOL vmlinux 0x58acf24b mdiobus_register_board_info -EXPORT_SYMBOL vmlinux 0x58b4645c dev_close_many -EXPORT_SYMBOL vmlinux 0x58b73bc7 match_wildcard -EXPORT_SYMBOL vmlinux 0x58e3306d bit_wait_io -EXPORT_SYMBOL vmlinux 0x58f47ca6 filemap_fdatawait_keep_errors -EXPORT_SYMBOL vmlinux 0x590bdd9d dm_kcopyd_copy -EXPORT_SYMBOL vmlinux 0x5934b5a9 qman_destroy_fq -EXPORT_SYMBOL vmlinux 0x594910b6 file_remove_privs -EXPORT_SYMBOL vmlinux 0x595b1b84 dev_addr_del -EXPORT_SYMBOL vmlinux 0x595c53a0 devm_register_netdev -EXPORT_SYMBOL vmlinux 0x595d8002 hdmi_infoframe_pack -EXPORT_SYMBOL vmlinux 0x596440a8 mipi_dsi_dcs_set_display_brightness -EXPORT_SYMBOL vmlinux 0x59675626 of_get_parent -EXPORT_SYMBOL vmlinux 0x597aab42 phy_loopback -EXPORT_SYMBOL vmlinux 0x597ce49b inet_dgram_connect -EXPORT_SYMBOL vmlinux 0x59878a5c gnet_stats_copy_basic -EXPORT_SYMBOL vmlinux 0x599351d9 setattr_copy -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 0x59bea79a input_register_handler -EXPORT_SYMBOL vmlinux 0x59c6fdd0 write_inode_now -EXPORT_SYMBOL vmlinux 0x59fc9efa xfrm4_rcv -EXPORT_SYMBOL vmlinux 0x5a08a39c km_state_expired -EXPORT_SYMBOL vmlinux 0x5a0b73d0 zlib_deflateInit2 -EXPORT_SYMBOL vmlinux 0x5a0cac67 mipi_dsi_dcs_get_display_brightness_large -EXPORT_SYMBOL vmlinux 0x5a0efd1c bio_integrity_prep -EXPORT_SYMBOL vmlinux 0x5a15e3d8 ptp_clock_unregister -EXPORT_SYMBOL vmlinux 0x5a1a5507 __register_chrdev -EXPORT_SYMBOL vmlinux 0x5a244168 __page_symlink -EXPORT_SYMBOL vmlinux 0x5a290250 hdmi_drm_infoframe_pack_only -EXPORT_SYMBOL vmlinux 0x5a2abbeb sk_reset_timer -EXPORT_SYMBOL vmlinux 0x5a2b50a4 gen_pool_dma_alloc_align -EXPORT_SYMBOL vmlinux 0x5a2fa8dc xa_store -EXPORT_SYMBOL vmlinux 0x5a38a502 mmc_remove_host -EXPORT_SYMBOL vmlinux 0x5a3b6763 serio_bus -EXPORT_SYMBOL vmlinux 0x5a44f8cb __crypto_memneq -EXPORT_SYMBOL vmlinux 0x5a4d313e gf128mul_4k_lle -EXPORT_SYMBOL vmlinux 0x5a4da6ac ppp_unregister_channel -EXPORT_SYMBOL vmlinux 0x5a521446 cdrom_open -EXPORT_SYMBOL vmlinux 0x5a54cf0e cdev_device_add -EXPORT_SYMBOL vmlinux 0x5a5ce49c i2c_get_adapter -EXPORT_SYMBOL vmlinux 0x5a605a9e tc_setup_cb_replace -EXPORT_SYMBOL vmlinux 0x5a60b950 qm_channel_pool1 -EXPORT_SYMBOL vmlinux 0x5a70e5c2 scsicam_bios_param -EXPORT_SYMBOL vmlinux 0x5a8ae15a ZSTD_initDDict -EXPORT_SYMBOL vmlinux 0x5a921311 strncmp -EXPORT_SYMBOL vmlinux 0x5a9348f2 sock_enable_timestamps -EXPORT_SYMBOL vmlinux 0x5a99a0d7 flow_get_u32_dst -EXPORT_SYMBOL vmlinux 0x5a9f1d63 memmove -EXPORT_SYMBOL vmlinux 0x5aa7fd77 watchdog_register_governor -EXPORT_SYMBOL vmlinux 0x5ad89db5 xfrm_alloc_spi -EXPORT_SYMBOL vmlinux 0x5ae1154b __traceiter_kfree -EXPORT_SYMBOL vmlinux 0x5ae239d9 blk_set_runtime_active -EXPORT_SYMBOL vmlinux 0x5b1ae059 writeback_inodes_sb_nr -EXPORT_SYMBOL vmlinux 0x5b1c3bcb pagecache_isize_extended -EXPORT_SYMBOL vmlinux 0x5b2116e3 gen_pool_set_algo -EXPORT_SYMBOL vmlinux 0x5b280547 posix_acl_valid -EXPORT_SYMBOL vmlinux 0x5b36d5dd utf8agemax -EXPORT_SYMBOL vmlinux 0x5b415dbf rtnl_link_get_net -EXPORT_SYMBOL vmlinux 0x5b54903b qcom_scm_pas_mem_setup -EXPORT_SYMBOL vmlinux 0x5b56860c vm_munmap -EXPORT_SYMBOL vmlinux 0x5b56a6e1 ucc_of_parse_tdm -EXPORT_SYMBOL vmlinux 0x5b63ee78 pci_request_regions_exclusive -EXPORT_SYMBOL vmlinux 0x5b808e9b pci_bus_write_config_dword -EXPORT_SYMBOL vmlinux 0x5b85783a iw_handler_get_thrspy -EXPORT_SYMBOL vmlinux 0x5b975d53 vga_remove_vgacon -EXPORT_SYMBOL vmlinux 0x5ba0555b tcf_chain_get_by_act -EXPORT_SYMBOL vmlinux 0x5bc1c060 netdev_state_change -EXPORT_SYMBOL vmlinux 0x5bc78c42 i2c_verify_client -EXPORT_SYMBOL vmlinux 0x5bcae59f mempool_exit -EXPORT_SYMBOL vmlinux 0x5bcc1ce3 sync_mapping_buffers -EXPORT_SYMBOL vmlinux 0x5bd4ff88 flow_action_cookie_create -EXPORT_SYMBOL vmlinux 0x5be63c5b crc32c_csum_stub -EXPORT_SYMBOL vmlinux 0x5beb09cc iov_iter_get_pages -EXPORT_SYMBOL vmlinux 0x5beb3b74 inet_listen -EXPORT_SYMBOL vmlinux 0x5c26a53b wait_for_completion_io_timeout -EXPORT_SYMBOL vmlinux 0x5c2ac804 sock_no_recvmsg -EXPORT_SYMBOL vmlinux 0x5c2c1dbb textsearch_destroy -EXPORT_SYMBOL vmlinux 0x5c3c7387 kstrtoull -EXPORT_SYMBOL vmlinux 0x5c51a1c8 netif_carrier_on -EXPORT_SYMBOL vmlinux 0x5c63550e dst_dev_put -EXPORT_SYMBOL vmlinux 0x5c655eaa tcf_exts_dump -EXPORT_SYMBOL vmlinux 0x5c7a727b tty_port_raise_dtr_rts -EXPORT_SYMBOL vmlinux 0x5cb14a21 pnp_start_dev -EXPORT_SYMBOL vmlinux 0x5cd3835f mr_vif_seq_idx -EXPORT_SYMBOL vmlinux 0x5cee20f9 amba_request_regions -EXPORT_SYMBOL vmlinux 0x5cf53ce2 input_free_minor -EXPORT_SYMBOL vmlinux 0x5cfb26a0 acpi_enter_sleep_state -EXPORT_SYMBOL vmlinux 0x5d076caf ps2_sendbyte -EXPORT_SYMBOL vmlinux 0x5d079437 generic_file_splice_read -EXPORT_SYMBOL vmlinux 0x5d112304 __memcpy_fromio -EXPORT_SYMBOL vmlinux 0x5d1375a2 pcie_capability_read_dword -EXPORT_SYMBOL vmlinux 0x5d1a8eb5 serio_unregister_port -EXPORT_SYMBOL vmlinux 0x5d20fd9f inet_select_addr -EXPORT_SYMBOL vmlinux 0x5d22e16a cfb_fillrect -EXPORT_SYMBOL vmlinux 0x5d49aabc init_wait_var_entry -EXPORT_SYMBOL vmlinux 0x5d53ce4a tty_port_tty_set -EXPORT_SYMBOL vmlinux 0x5d57b715 dquot_quotactl_sysfile_ops -EXPORT_SYMBOL vmlinux 0x5d5d833b iterate_fd -EXPORT_SYMBOL vmlinux 0x5d5db2c3 mmc_start_request -EXPORT_SYMBOL vmlinux 0x5d5e4791 of_device_is_big_endian -EXPORT_SYMBOL vmlinux 0x5d6525ff pcix_get_max_mmrbc -EXPORT_SYMBOL vmlinux 0x5d6d8d12 tcp_seq_stop -EXPORT_SYMBOL vmlinux 0x5d864b43 kernel_listen -EXPORT_SYMBOL vmlinux 0x5da4adcd ipmr_rule_default -EXPORT_SYMBOL vmlinux 0x5dac4cd6 qman_dqrr_set_ithresh -EXPORT_SYMBOL vmlinux 0x5dc7c04d netdev_bind_sb_channel_queue -EXPORT_SYMBOL vmlinux 0x5dd6d3c0 pcie_capability_clear_and_set_word -EXPORT_SYMBOL vmlinux 0x5de53444 bio_integrity_clone -EXPORT_SYMBOL vmlinux 0x5df0a986 ata_scsi_cmd_error_handler -EXPORT_SYMBOL vmlinux 0x5dffb495 ZSTD_decompress_usingDDict -EXPORT_SYMBOL vmlinux 0x5e088f28 pci_msi_vec_count -EXPORT_SYMBOL vmlinux 0x5e0ccb9f sha1_transform -EXPORT_SYMBOL vmlinux 0x5e10a54b bdi_put -EXPORT_SYMBOL vmlinux 0x5e2f7564 mmc_of_parse_clk_phase -EXPORT_SYMBOL vmlinux 0x5e3240a0 __cpu_online_mask -EXPORT_SYMBOL vmlinux 0x5e373fb4 gf128mul_64k_bbe -EXPORT_SYMBOL vmlinux 0x5e5df017 pci_find_resource -EXPORT_SYMBOL vmlinux 0x5e66d16a inet6_unregister_protosw -EXPORT_SYMBOL vmlinux 0x5e6e158f down_read -EXPORT_SYMBOL vmlinux 0x5e6f91f9 tegra_powergate_remove_clamping -EXPORT_SYMBOL vmlinux 0x5e75ec55 flow_rule_match_ct -EXPORT_SYMBOL vmlinux 0x5e80f7e3 __inet_stream_connect -EXPORT_SYMBOL vmlinux 0x5e8a8029 pci_read_config_dword -EXPORT_SYMBOL vmlinux 0x5e95b1cd current_umask -EXPORT_SYMBOL vmlinux 0x5e9aec96 dma_async_device_unregister -EXPORT_SYMBOL vmlinux 0x5ea1ff8b jbd2_journal_free_reserved -EXPORT_SYMBOL vmlinux 0x5ea65258 tcp_v4_md5_hash_skb -EXPORT_SYMBOL vmlinux 0x5eae1fc9 msm_pinctrl_dev_pm_ops -EXPORT_SYMBOL vmlinux 0x5eb24829 dm_shift_arg -EXPORT_SYMBOL vmlinux 0x5eb959b0 may_umount_tree -EXPORT_SYMBOL vmlinux 0x5ec15e97 of_get_property -EXPORT_SYMBOL vmlinux 0x5ec1fcab posix_lock_file -EXPORT_SYMBOL vmlinux 0x5ec4aee6 put_sg_io_hdr -EXPORT_SYMBOL vmlinux 0x5eceab95 ps2_handle_ack -EXPORT_SYMBOL vmlinux 0x5ed040b0 pm_set_vt_switch -EXPORT_SYMBOL vmlinux 0x5ed90adc int_to_scsilun -EXPORT_SYMBOL vmlinux 0x5ef75efb mempool_free -EXPORT_SYMBOL vmlinux 0x5efdd68b __tracepoint_mmap_lock_released -EXPORT_SYMBOL vmlinux 0x5efe8810 tegra_dfll_runtime_resume -EXPORT_SYMBOL vmlinux 0x5f0030a0 take_dentry_name_snapshot -EXPORT_SYMBOL vmlinux 0x5f098b2a in6addr_interfacelocal_allrouters -EXPORT_SYMBOL vmlinux 0x5f114f4b pneigh_enqueue -EXPORT_SYMBOL vmlinux 0x5f5441c8 __ubsan_handle_alignment_assumption -EXPORT_SYMBOL vmlinux 0x5f614cf4 pci_read_vpd -EXPORT_SYMBOL vmlinux 0x5f65d18a iov_iter_advance -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 0x5f9d37e6 mpage_writepages -EXPORT_SYMBOL vmlinux 0x5fc72f0e alloc_pages_exact -EXPORT_SYMBOL vmlinux 0x5fd87aa5 dev_get_by_name_rcu -EXPORT_SYMBOL vmlinux 0x5fde5651 tcp_ld_RTO_revert -EXPORT_SYMBOL vmlinux 0x5fe333fa dma_map_resource -EXPORT_SYMBOL vmlinux 0x5fe70231 xfrm4_protocol_deregister -EXPORT_SYMBOL vmlinux 0x5feb14fa inet6_ioctl -EXPORT_SYMBOL vmlinux 0x6005c351 zpool_has_pool -EXPORT_SYMBOL vmlinux 0x600683d3 do_unblank_screen -EXPORT_SYMBOL vmlinux 0x6011a2f6 tcf_exts_terse_dump -EXPORT_SYMBOL vmlinux 0x601777d7 kthread_associate_blkcg -EXPORT_SYMBOL vmlinux 0x601f665f dm_io_client_create -EXPORT_SYMBOL vmlinux 0x60277dfd udp6_set_csum -EXPORT_SYMBOL vmlinux 0x60352082 register_inet6addr_notifier -EXPORT_SYMBOL vmlinux 0x60442f26 seq_file_path -EXPORT_SYMBOL vmlinux 0x6056bf36 to_ndd -EXPORT_SYMBOL vmlinux 0x605790dc fiemap_fill_next_extent -EXPORT_SYMBOL vmlinux 0x606a19f4 jbd2_journal_extend -EXPORT_SYMBOL vmlinux 0x6070db1a jbd2_journal_release_jbd_inode -EXPORT_SYMBOL vmlinux 0x607d45df xfrm_state_lookup_byaddr -EXPORT_SYMBOL vmlinux 0x608741b5 __init_swait_queue_head -EXPORT_SYMBOL vmlinux 0x608cb296 register_netdevice_notifier_net -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 0x60c43e4b i2c_smbus_write_block_data -EXPORT_SYMBOL vmlinux 0x60d8ab30 vme_lm_get -EXPORT_SYMBOL vmlinux 0x60dbcef2 genphy_loopback -EXPORT_SYMBOL vmlinux 0x60e2d3bc security_inet_conn_request -EXPORT_SYMBOL vmlinux 0x60f3bed3 phy_request_interrupt -EXPORT_SYMBOL vmlinux 0x60fde740 mr_mfc_find_any -EXPORT_SYMBOL vmlinux 0x60fe7e70 fs_param_is_bool -EXPORT_SYMBOL vmlinux 0x610676fe __scsi_print_sense -EXPORT_SYMBOL vmlinux 0x61073e4a acpi_os_map_generic_address -EXPORT_SYMBOL vmlinux 0x610a1d0b blk_rq_init -EXPORT_SYMBOL vmlinux 0x610ccd75 sock_common_getsockopt -EXPORT_SYMBOL vmlinux 0x6122682e blk_mq_complete_request -EXPORT_SYMBOL vmlinux 0x6128b5fc __printk_ratelimit -EXPORT_SYMBOL vmlinux 0x612ceab8 phy_set_sym_pause -EXPORT_SYMBOL vmlinux 0x61347034 mb_cache_entry_delete_or_get -EXPORT_SYMBOL vmlinux 0x6136bf4c padata_free -EXPORT_SYMBOL vmlinux 0x613e01e8 pcie_ptm_enabled -EXPORT_SYMBOL vmlinux 0x614c4e93 security_sb_set_mnt_opts -EXPORT_SYMBOL vmlinux 0x615911d7 __bitmap_set -EXPORT_SYMBOL vmlinux 0x6167e72c vmalloc_no_huge -EXPORT_SYMBOL vmlinux 0x618911fc numa_node -EXPORT_SYMBOL vmlinux 0x618c53b6 pci_scan_single_device -EXPORT_SYMBOL vmlinux 0x619cb7dd simple_read_from_buffer -EXPORT_SYMBOL vmlinux 0x619e4569 simple_transaction_read -EXPORT_SYMBOL vmlinux 0x61a241d3 from_kgid_munged -EXPORT_SYMBOL vmlinux 0x61b7b126 simple_strtoull -EXPORT_SYMBOL vmlinux 0x61bd48f3 netdev_emerg -EXPORT_SYMBOL vmlinux 0x61cf690d d_drop -EXPORT_SYMBOL vmlinux 0x61d20c27 flow_rule_match_enc_opts -EXPORT_SYMBOL vmlinux 0x61d8f8b8 unlock_buffer -EXPORT_SYMBOL vmlinux 0x61dbc9f4 neigh_event_ns -EXPORT_SYMBOL vmlinux 0x61e272c9 sha256_final -EXPORT_SYMBOL vmlinux 0x61ea189b fb_pad_aligned_buffer -EXPORT_SYMBOL vmlinux 0x61f2dac3 tcp_sendpage -EXPORT_SYMBOL vmlinux 0x6205fe31 __sock_cmsg_send -EXPORT_SYMBOL vmlinux 0x620c7438 radix_tree_delete_item -EXPORT_SYMBOL vmlinux 0x6214aef2 cpufreq_unregister_notifier -EXPORT_SYMBOL vmlinux 0x6228c21f smp_call_function_single -EXPORT_SYMBOL vmlinux 0x624f28ad blkdev_get_by_path -EXPORT_SYMBOL vmlinux 0x6256533b sk_net_capable -EXPORT_SYMBOL vmlinux 0x626b91d3 dev_uc_sync_multiple -EXPORT_SYMBOL vmlinux 0x626d7663 kmalloc_caches -EXPORT_SYMBOL vmlinux 0x62737e1d sock_unregister -EXPORT_SYMBOL vmlinux 0x627a317c acpi_match_device_ids -EXPORT_SYMBOL vmlinux 0x627c6a15 mmc_retune_timer_stop -EXPORT_SYMBOL vmlinux 0x627ec4cf __inode_sub_bytes -EXPORT_SYMBOL vmlinux 0x62849ac7 dev_valid_name -EXPORT_SYMBOL vmlinux 0x62949074 acpi_buffer_to_resource -EXPORT_SYMBOL vmlinux 0x6295b04d config_group_init -EXPORT_SYMBOL vmlinux 0x6295c729 t10_pi_type1_crc -EXPORT_SYMBOL vmlinux 0x62960ddc __sock_queue_rcv_skb -EXPORT_SYMBOL vmlinux 0x62a8449d cdrom_mode_sense -EXPORT_SYMBOL vmlinux 0x62bf6edf utf8agemin -EXPORT_SYMBOL vmlinux 0x62c2fdd6 inet_sock_destruct -EXPORT_SYMBOL vmlinux 0x62c730c3 page_readlink -EXPORT_SYMBOL vmlinux 0x62c820b3 unregister_binfmt -EXPORT_SYMBOL vmlinux 0x62c8d2e2 fs_param_is_enum -EXPORT_SYMBOL vmlinux 0x62d96443 qman_dma_portal -EXPORT_SYMBOL vmlinux 0x63187451 pcie_aspm_support_enabled -EXPORT_SYMBOL vmlinux 0x631d06aa cpu_rmap_put -EXPORT_SYMBOL vmlinux 0x6349d2b7 radix_tree_gang_lookup -EXPORT_SYMBOL vmlinux 0x63515655 kmem_cache_create_usercopy -EXPORT_SYMBOL vmlinux 0x635c6331 mipi_dsi_compression_mode -EXPORT_SYMBOL vmlinux 0x635ddd4a __sk_receive_skb -EXPORT_SYMBOL vmlinux 0x636754f9 param_set_ullong -EXPORT_SYMBOL vmlinux 0x637182f5 xa_destroy -EXPORT_SYMBOL vmlinux 0x638e0754 rt_dst_clone -EXPORT_SYMBOL vmlinux 0x63969660 phy_ethtool_set_link_ksettings -EXPORT_SYMBOL vmlinux 0x639c0815 phy_device_create -EXPORT_SYMBOL vmlinux 0x63a0bc99 seq_release_private -EXPORT_SYMBOL vmlinux 0x63a357c3 neigh_lookup -EXPORT_SYMBOL vmlinux 0x63a58370 flow_action_cookie_destroy -EXPORT_SYMBOL vmlinux 0x63a7265b dma_fence_chain_ops -EXPORT_SYMBOL vmlinux 0x63a7c28c bitmap_find_free_region -EXPORT_SYMBOL vmlinux 0x63b36be7 ip_do_fragment -EXPORT_SYMBOL vmlinux 0x63c4d61f __bitmap_weight -EXPORT_SYMBOL vmlinux 0x63c62bfe xsk_tx_completed -EXPORT_SYMBOL vmlinux 0x63e9beda eth_header_parse_protocol -EXPORT_SYMBOL vmlinux 0x63eb9355 panic_blink -EXPORT_SYMBOL vmlinux 0x63f0539e xfrm_state_lookup_byspi -EXPORT_SYMBOL vmlinux 0x64007c81 fscrypt_encrypt_block_inplace -EXPORT_SYMBOL vmlinux 0x640d6b45 netif_stacked_transfer_operstate -EXPORT_SYMBOL vmlinux 0x64127b67 bitmap_find_next_zero_area_off -EXPORT_SYMBOL vmlinux 0x64257bbe copy_page_to_iter -EXPORT_SYMBOL vmlinux 0x642a1516 put_cmsg -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 0x6461b9f6 bmap -EXPORT_SYMBOL vmlinux 0x64776bef iov_iter_kvec -EXPORT_SYMBOL vmlinux 0x647c4c37 mpage_readahead -EXPORT_SYMBOL vmlinux 0x6481ffe0 hsiphash_1u32 -EXPORT_SYMBOL vmlinux 0x648d3860 scsi_eh_restore_cmnd -EXPORT_SYMBOL vmlinux 0x648eb59d gc_inflight_list -EXPORT_SYMBOL vmlinux 0x64999478 congestion_wait -EXPORT_SYMBOL vmlinux 0x64a9c928 default_blu -EXPORT_SYMBOL vmlinux 0x64aa6eea gnet_stats_copy_app -EXPORT_SYMBOL vmlinux 0x64ada756 dev_get_phys_port_name -EXPORT_SYMBOL vmlinux 0x64b2d32e ps2_sliced_command -EXPORT_SYMBOL vmlinux 0x64bbc288 string_unescape -EXPORT_SYMBOL vmlinux 0x64cf2645 mmc_detect_card_removed -EXPORT_SYMBOL vmlinux 0x64fa9d02 kmem_cache_destroy -EXPORT_SYMBOL vmlinux 0x64fcd776 edac_mc_find -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 0x653e7351 skb_ext_add -EXPORT_SYMBOL vmlinux 0x65408378 zlib_inflate_blob -EXPORT_SYMBOL vmlinux 0x654449c3 memset16 -EXPORT_SYMBOL vmlinux 0x654f3d2e unregister_nls -EXPORT_SYMBOL vmlinux 0x65687dcb dquot_get_next_id -EXPORT_SYMBOL vmlinux 0x656c1a0e string_escape_mem -EXPORT_SYMBOL vmlinux 0x656e4a6e snprintf -EXPORT_SYMBOL vmlinux 0x65743430 __register_binfmt -EXPORT_SYMBOL vmlinux 0x658ce1a8 xxh64_reset -EXPORT_SYMBOL vmlinux 0x65925668 xfrm_if_register_cb -EXPORT_SYMBOL vmlinux 0x659ded26 xfrm_flush_gc -EXPORT_SYMBOL vmlinux 0x659fb9d6 radix_tree_lookup -EXPORT_SYMBOL vmlinux 0x65a1ca41 unregister_tcf_proto_ops -EXPORT_SYMBOL vmlinux 0x65c62fae scsi_add_device -EXPORT_SYMBOL vmlinux 0x65cea23b dma_fence_signal_locked -EXPORT_SYMBOL vmlinux 0x65cf8831 ZSTD_decompress_usingDict -EXPORT_SYMBOL vmlinux 0x65d1bab2 acpi_bios_warning -EXPORT_SYMBOL vmlinux 0x65d9e877 cpufreq_register_notifier -EXPORT_SYMBOL vmlinux 0x65dc6451 devm_devfreq_register_opp_notifier -EXPORT_SYMBOL vmlinux 0x65dccf13 xz_dec_end -EXPORT_SYMBOL vmlinux 0x65de4666 clear_page_dirty_for_io -EXPORT_SYMBOL vmlinux 0x65e0d6d7 memory_read_from_buffer -EXPORT_SYMBOL vmlinux 0x65e692e1 misc_deregister -EXPORT_SYMBOL vmlinux 0x65f74e49 dev_set_group -EXPORT_SYMBOL vmlinux 0x65f816eb jbd2_journal_finish_inode_data_buffers -EXPORT_SYMBOL vmlinux 0x65fd84ad gen_pool_free_owner -EXPORT_SYMBOL vmlinux 0x66160cdd skb_page_frag_refill -EXPORT_SYMBOL vmlinux 0x661f274d tcp_close -EXPORT_SYMBOL vmlinux 0x6626afca down -EXPORT_SYMBOL vmlinux 0x662779c3 padata_do_parallel -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 0x6672f08d alloc_etherdev_mqs -EXPORT_SYMBOL vmlinux 0x6673f96d xxh32_reset -EXPORT_SYMBOL vmlinux 0x6675dd82 blk_rq_append_bio -EXPORT_SYMBOL vmlinux 0x66826f5a xudma_get_ringacc -EXPORT_SYMBOL vmlinux 0x6687fb46 param_get_ullong -EXPORT_SYMBOL vmlinux 0x668ea340 rproc_elf_sanity_check -EXPORT_SYMBOL vmlinux 0x668f63ee update_region -EXPORT_SYMBOL vmlinux 0x6694b1c7 ip6_xmit -EXPORT_SYMBOL vmlinux 0x669e4876 udp_seq_next -EXPORT_SYMBOL vmlinux 0x66b27696 __xfrm_init_state -EXPORT_SYMBOL vmlinux 0x66b4cc41 kmemdup -EXPORT_SYMBOL vmlinux 0x66f04ea8 phy_modify_paged -EXPORT_SYMBOL vmlinux 0x6707143c tcf_action_update_stats -EXPORT_SYMBOL vmlinux 0x67174983 address_space_init_once -EXPORT_SYMBOL vmlinux 0x671879d8 pnp_unregister_card_driver -EXPORT_SYMBOL vmlinux 0x671c1540 devm_rproc_alloc -EXPORT_SYMBOL vmlinux 0x6722a94b scsi_block_when_processing_errors -EXPORT_SYMBOL vmlinux 0x6729be80 end_buffer_write_sync -EXPORT_SYMBOL vmlinux 0x67412d2f ucc_slow_enable -EXPORT_SYMBOL vmlinux 0x6749d53f hdmi_vendor_infoframe_init -EXPORT_SYMBOL vmlinux 0x674a5ea3 dcbnl_cee_notify -EXPORT_SYMBOL vmlinux 0x67635b65 wait_on_page_bit_killable -EXPORT_SYMBOL vmlinux 0x6774fd5f passthru_features_check -EXPORT_SYMBOL vmlinux 0x67860fe0 pci_try_set_mwi -EXPORT_SYMBOL vmlinux 0x678b96ec dma_pool_alloc -EXPORT_SYMBOL vmlinux 0x67992582 single_open_size -EXPORT_SYMBOL vmlinux 0x679f6450 seq_lseek -EXPORT_SYMBOL vmlinux 0x67b27ec1 tty_std_termios -EXPORT_SYMBOL vmlinux 0x67b78eb3 seq_hlist_next_rcu -EXPORT_SYMBOL vmlinux 0x67c13ea0 acpi_read -EXPORT_SYMBOL vmlinux 0x67cb9343 netif_set_xps_queue -EXPORT_SYMBOL vmlinux 0x67e368a6 __nla_reserve -EXPORT_SYMBOL vmlinux 0x67ed4eb3 pci_assign_resource -EXPORT_SYMBOL vmlinux 0x67fe32aa devm_request_threaded_irq -EXPORT_SYMBOL vmlinux 0x681b6670 is_firmware_framebuffer -EXPORT_SYMBOL vmlinux 0x68438890 keyring_alloc -EXPORT_SYMBOL vmlinux 0x684521ad tcp_v4_connect -EXPORT_SYMBOL vmlinux 0x687b6a16 kdbgetsymval -EXPORT_SYMBOL vmlinux 0x68a1cc28 inet_unregister_protosw -EXPORT_SYMBOL vmlinux 0x68ae23f5 dns_query -EXPORT_SYMBOL vmlinux 0x68c5ef80 arp_send -EXPORT_SYMBOL vmlinux 0x68ee4ed3 inet_frag_reasm_prepare -EXPORT_SYMBOL vmlinux 0x68fb581a icst307_idx2s -EXPORT_SYMBOL vmlinux 0x6902c735 inet_sk_set_state -EXPORT_SYMBOL vmlinux 0x69064b7e input_mt_destroy_slots -EXPORT_SYMBOL vmlinux 0x690aa94f rproc_resource_cleanup -EXPORT_SYMBOL vmlinux 0x6913a58b cdrom_release -EXPORT_SYMBOL vmlinux 0x6917a77e __traceiter_kmem_cache_free -EXPORT_SYMBOL vmlinux 0x692418e1 xsk_get_pool_from_qid -EXPORT_SYMBOL vmlinux 0x69334534 sk_stop_timer -EXPORT_SYMBOL vmlinux 0x6949b87f blk_integrity_register -EXPORT_SYMBOL vmlinux 0x6957a2bc wake_up_process -EXPORT_SYMBOL vmlinux 0x69585523 __ksize -EXPORT_SYMBOL vmlinux 0x695c9a1b tcf_exts_validate -EXPORT_SYMBOL vmlinux 0x69668826 netdev_increment_features -EXPORT_SYMBOL vmlinux 0x69678bab pci_bus_alloc_resource -EXPORT_SYMBOL vmlinux 0x696bfd7a has_capability -EXPORT_SYMBOL vmlinux 0x6971447a rtc_month_days -EXPORT_SYMBOL vmlinux 0x697ed5f0 memcpy_and_pad -EXPORT_SYMBOL vmlinux 0x69903e03 get_tz_trend -EXPORT_SYMBOL vmlinux 0x69c59363 pci_bus_claim_resources -EXPORT_SYMBOL vmlinux 0x69d3e145 dma_fence_get_status -EXPORT_SYMBOL vmlinux 0x69dc24dc skb_checksum_setup -EXPORT_SYMBOL vmlinux 0x69dd3b5b crc32_le -EXPORT_SYMBOL vmlinux 0x69de8757 vme_check_window -EXPORT_SYMBOL vmlinux 0x69f38847 cpu_hwcap_keys -EXPORT_SYMBOL vmlinux 0x6a027f03 scsi_device_lookup -EXPORT_SYMBOL vmlinux 0x6a03751f sgl_free_order -EXPORT_SYMBOL vmlinux 0x6a037cf1 mempool_kfree -EXPORT_SYMBOL vmlinux 0x6a0c469f security_dentry_create_files_as -EXPORT_SYMBOL vmlinux 0x6a1062e5 md_write_start -EXPORT_SYMBOL vmlinux 0x6a1f6683 unregister_nexthop_notifier -EXPORT_SYMBOL vmlinux 0x6a3766b2 qman_delete_cgr_safe -EXPORT_SYMBOL vmlinux 0x6a5cb5ee __get_free_pages -EXPORT_SYMBOL vmlinux 0x6a5df25c mdio_device_free -EXPORT_SYMBOL vmlinux 0x6a5ecb18 unregister_module_notifier -EXPORT_SYMBOL vmlinux 0x6a5fa363 sigprocmask -EXPORT_SYMBOL vmlinux 0x6a6399f3 phy_init_eee -EXPORT_SYMBOL vmlinux 0x6a6e05bf kstrtou8 -EXPORT_SYMBOL vmlinux 0x6a90663a qman_schedule_fq -EXPORT_SYMBOL vmlinux 0x6a974eb5 vme_register_bridge -EXPORT_SYMBOL vmlinux 0x6aa11aa6 sgl_free_n_order -EXPORT_SYMBOL vmlinux 0x6aaf6830 flow_block_cb_incref -EXPORT_SYMBOL vmlinux 0x6ab94d24 jbd2_journal_revoke -EXPORT_SYMBOL vmlinux 0x6ac87ce3 phy_aneg_done -EXPORT_SYMBOL vmlinux 0x6add5c9a dmi_find_device -EXPORT_SYMBOL vmlinux 0x6aedd8a3 __hw_addr_unsync_dev -EXPORT_SYMBOL vmlinux 0x6aeefac4 zlib_deflateReset -EXPORT_SYMBOL vmlinux 0x6af2376b sock_no_listen -EXPORT_SYMBOL vmlinux 0x6afed7f5 filemap_fdatawrite_wbc -EXPORT_SYMBOL vmlinux 0x6b07527a devm_of_clk_del_provider -EXPORT_SYMBOL vmlinux 0x6b2dc060 dump_stack -EXPORT_SYMBOL vmlinux 0x6b399e71 mmc_can_gpio_cd -EXPORT_SYMBOL vmlinux 0x6b4b2933 __ioremap -EXPORT_SYMBOL vmlinux 0x6b4e1d27 mmc_unregister_driver -EXPORT_SYMBOL vmlinux 0x6b55acd0 rtnl_lock_killable -EXPORT_SYMBOL vmlinux 0x6b601680 nobh_write_end -EXPORT_SYMBOL vmlinux 0x6b77810c notify_change -EXPORT_SYMBOL vmlinux 0x6b83d479 dentry_path_raw -EXPORT_SYMBOL vmlinux 0x6b853d06 ns_to_kernel_old_timeval -EXPORT_SYMBOL vmlinux 0x6b8bf149 netif_receive_skb_list -EXPORT_SYMBOL vmlinux 0x6b8f9527 dev_uc_init -EXPORT_SYMBOL vmlinux 0x6b9d1c95 security_req_classify_flow -EXPORT_SYMBOL vmlinux 0x6bc3fbc0 __unregister_chrdev -EXPORT_SYMBOL vmlinux 0x6bc69ce2 input_mt_report_finger_count -EXPORT_SYMBOL vmlinux 0x6bcc3be1 shmem_aops -EXPORT_SYMBOL vmlinux 0x6bcd59e9 dma_resv_add_excl_fence -EXPORT_SYMBOL vmlinux 0x6bd0e573 down_interruptible -EXPORT_SYMBOL vmlinux 0x6bd1d7ec __hw_addr_sync_dev -EXPORT_SYMBOL vmlinux 0x6bd85bd9 dev_set_threaded -EXPORT_SYMBOL vmlinux 0x6be1c1f8 acpi_install_method -EXPORT_SYMBOL vmlinux 0x6bed45ec scsi_report_bus_reset -EXPORT_SYMBOL vmlinux 0x6bf091e2 xa_clear_mark -EXPORT_SYMBOL vmlinux 0x6bf0c448 arp_tbl -EXPORT_SYMBOL vmlinux 0x6bf181c1 __tracepoint_kmem_cache_free -EXPORT_SYMBOL vmlinux 0x6c0eee4f __devm_release_region -EXPORT_SYMBOL vmlinux 0x6c1e2504 cad_pid -EXPORT_SYMBOL vmlinux 0x6c257ac0 tty_termios_hw_change -EXPORT_SYMBOL vmlinux 0x6c26de5b path_has_submounts -EXPORT_SYMBOL vmlinux 0x6c39d931 neigh_parms_release -EXPORT_SYMBOL vmlinux 0x6c3a5ffe netif_schedule_queue -EXPORT_SYMBOL vmlinux 0x6c4277f2 may_umount -EXPORT_SYMBOL vmlinux 0x6c4f772b nf_log_register -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 0x6c90bf8b simple_symlink_inode_operations -EXPORT_SYMBOL vmlinux 0x6c9de9a0 xfrm_state_register_afinfo -EXPORT_SYMBOL vmlinux 0x6ca81b1f set_capacity -EXPORT_SYMBOL vmlinux 0x6cac1675 peernet2id -EXPORT_SYMBOL vmlinux 0x6cb46525 netlbl_catmap_walk -EXPORT_SYMBOL vmlinux 0x6cbbfc54 __arch_copy_to_user -EXPORT_SYMBOL vmlinux 0x6cc1b165 iov_iter_xarray -EXPORT_SYMBOL vmlinux 0x6cc7c20b pci_prepare_to_sleep -EXPORT_SYMBOL vmlinux 0x6cd250ab tcp_peek_len -EXPORT_SYMBOL vmlinux 0x6ce6ce99 dget_parent -EXPORT_SYMBOL vmlinux 0x6cf0d67d qe_get_num_of_snums -EXPORT_SYMBOL vmlinux 0x6cfacaba simple_open -EXPORT_SYMBOL vmlinux 0x6d012b48 skb_eth_push -EXPORT_SYMBOL vmlinux 0x6d1996b1 get_bitmap_from_slot -EXPORT_SYMBOL vmlinux 0x6d1a0f95 phys_mem_access_prot -EXPORT_SYMBOL vmlinux 0x6d248c08 rtnl_create_link -EXPORT_SYMBOL vmlinux 0x6d294e43 clock_t_to_jiffies -EXPORT_SYMBOL vmlinux 0x6d303acb of_mdio_find_bus -EXPORT_SYMBOL vmlinux 0x6d340f64 tty_termios_input_baud_rate -EXPORT_SYMBOL vmlinux 0x6d3f6f12 registered_fb -EXPORT_SYMBOL vmlinux 0x6d5530c9 mipi_dsi_generic_write -EXPORT_SYMBOL vmlinux 0x6d584109 ppp_unit_number -EXPORT_SYMBOL vmlinux 0x6d6eb348 init_net -EXPORT_SYMBOL vmlinux 0x6d73c95f logic_outw -EXPORT_SYMBOL vmlinux 0x6d7c7dcc bitmap_cut -EXPORT_SYMBOL vmlinux 0x6d7d370e icmpv6_ndo_send -EXPORT_SYMBOL vmlinux 0x6d864367 inet_getname -EXPORT_SYMBOL vmlinux 0x6d89fd39 filemap_flush -EXPORT_SYMBOL vmlinux 0x6d96fcb3 mipi_dsi_picture_parameter_set -EXPORT_SYMBOL vmlinux 0x6d9daf56 backlight_device_register -EXPORT_SYMBOL vmlinux 0x6da04c75 cdc_parse_cdc_header -EXPORT_SYMBOL vmlinux 0x6da467cb pfn_is_map_memory -EXPORT_SYMBOL vmlinux 0x6da4dc1e jbd2_journal_errno -EXPORT_SYMBOL vmlinux 0x6db2acb8 fb_set_suspend -EXPORT_SYMBOL vmlinux 0x6db64aae pskb_trim_rcsum_slow -EXPORT_SYMBOL vmlinux 0x6dc0362f set_user_nice -EXPORT_SYMBOL vmlinux 0x6dcf857f uuid_null -EXPORT_SYMBOL vmlinux 0x6dd07289 __traceiter_mmap_lock_acquire_returned -EXPORT_SYMBOL vmlinux 0x6dd17e7b acpi_get_table_header -EXPORT_SYMBOL vmlinux 0x6dd22f63 nobh_writepage -EXPORT_SYMBOL vmlinux 0x6df1aaf1 kernel_sigaction -EXPORT_SYMBOL vmlinux 0x6df7816e locks_copy_lock -EXPORT_SYMBOL vmlinux 0x6dfd5393 proc_mkdir_mode -EXPORT_SYMBOL vmlinux 0x6e01c07c blk_queue_max_hw_sectors -EXPORT_SYMBOL vmlinux 0x6e15f5b2 jbd2_journal_grab_journal_head -EXPORT_SYMBOL vmlinux 0x6e19d687 i2c_smbus_write_word_data -EXPORT_SYMBOL vmlinux 0x6e1a56b7 elv_rb_former_request -EXPORT_SYMBOL vmlinux 0x6e22267e redraw_screen -EXPORT_SYMBOL vmlinux 0x6e2a3170 flow_rule_match_enc_ipv4_addrs -EXPORT_SYMBOL vmlinux 0x6e309ff0 blk_post_runtime_resume -EXPORT_SYMBOL vmlinux 0x6e31588a xfrm_policy_walk -EXPORT_SYMBOL vmlinux 0x6e44f71e tcf_idr_check_alloc -EXPORT_SYMBOL vmlinux 0x6e5b8651 xz_dec_run -EXPORT_SYMBOL vmlinux 0x6e5e7bba simple_setattr -EXPORT_SYMBOL vmlinux 0x6e67496a scsi_command_normalize_sense -EXPORT_SYMBOL vmlinux 0x6e6eb2c6 refresh_frequency_limits -EXPORT_SYMBOL vmlinux 0x6e720ff2 rtnl_unlock -EXPORT_SYMBOL vmlinux 0x6e79b6ba trace_raw_output_prep -EXPORT_SYMBOL vmlinux 0x6e9dd606 __symbol_put -EXPORT_SYMBOL vmlinux 0x6ea9363b force_sig -EXPORT_SYMBOL vmlinux 0x6eac3015 copy_page_from_iter -EXPORT_SYMBOL vmlinux 0x6eaf77c2 jbd2_journal_wipe -EXPORT_SYMBOL vmlinux 0x6eb94ccb tegra_dfll_suspend -EXPORT_SYMBOL vmlinux 0x6edbfc02 nd_device_unregister -EXPORT_SYMBOL vmlinux 0x6f0be40e fault_in_iov_iter_readable -EXPORT_SYMBOL vmlinux 0x6f3229a8 pci_set_master -EXPORT_SYMBOL vmlinux 0x6f41a428 acpi_get_vendor_resource -EXPORT_SYMBOL vmlinux 0x6f4a2290 tcp_v4_mtu_reduced -EXPORT_SYMBOL vmlinux 0x6f5ab52f acpi_get_local_address -EXPORT_SYMBOL vmlinux 0x6f61e3f5 phy_attached_info_irq -EXPORT_SYMBOL vmlinux 0x6f683a4b tcp_sock_set_keepcnt -EXPORT_SYMBOL vmlinux 0x6f6aba7a pci_enable_device_mem -EXPORT_SYMBOL vmlinux 0x6f7508a9 dev_get_by_index_rcu -EXPORT_SYMBOL vmlinux 0x6f8f674a bpf_dispatcher_xdp_func -EXPORT_SYMBOL vmlinux 0x6f8fc985 max8925_bulk_read -EXPORT_SYMBOL vmlinux 0x6f915a45 dqstats -EXPORT_SYMBOL vmlinux 0x6f942bfa jbd2__journal_start -EXPORT_SYMBOL vmlinux 0x6f9866e2 inet_frags_fini -EXPORT_SYMBOL vmlinux 0x6f9aa6a6 scsi_vpd_tpg_id -EXPORT_SYMBOL vmlinux 0x6f9eeef6 ip6_frag_next -EXPORT_SYMBOL vmlinux 0x6fadb59b udp_ioctl -EXPORT_SYMBOL vmlinux 0x6fb49676 queue_rcu_work -EXPORT_SYMBOL vmlinux 0x6fcb87a1 touch_softlockup_watchdog -EXPORT_SYMBOL vmlinux 0x6fd28274 unlock_page -EXPORT_SYMBOL vmlinux 0x6ff9d990 __skb_checksum -EXPORT_SYMBOL vmlinux 0x6ffc6baf tcp_create_openreq_child -EXPORT_SYMBOL vmlinux 0x6fff261f __arch_clear_user -EXPORT_SYMBOL vmlinux 0x70002fe8 siphash_1u32 -EXPORT_SYMBOL vmlinux 0x7023bea8 unregister_acpi_notifier -EXPORT_SYMBOL vmlinux 0x702946da ucs2_strlen -EXPORT_SYMBOL vmlinux 0x702ba323 fqdir_init -EXPORT_SYMBOL vmlinux 0x7038376c __get_hash_from_flowi6 -EXPORT_SYMBOL vmlinux 0x703d971a generic_copy_file_range -EXPORT_SYMBOL vmlinux 0x706c5a65 preempt_count_sub -EXPORT_SYMBOL vmlinux 0x70989f36 iterate_dir -EXPORT_SYMBOL vmlinux 0x709aeb25 con_is_visible -EXPORT_SYMBOL vmlinux 0x70abaa2a xsk_tx_peek_desc -EXPORT_SYMBOL vmlinux 0x70c4b104 __xa_clear_mark -EXPORT_SYMBOL vmlinux 0x70cc7990 dev_mc_init -EXPORT_SYMBOL vmlinux 0x70d1a18e qman_release_pool -EXPORT_SYMBOL vmlinux 0x70e3abd9 flow_rule_match_enc_ip -EXPORT_SYMBOL vmlinux 0x71153594 generic_update_time -EXPORT_SYMBOL vmlinux 0x7129e5f8 hex_asc -EXPORT_SYMBOL vmlinux 0x713d85bf simple_recursive_removal -EXPORT_SYMBOL vmlinux 0x713e9508 kill_pgrp -EXPORT_SYMBOL vmlinux 0x7141b88a logic_insb -EXPORT_SYMBOL vmlinux 0x715a5ed0 vprintk -EXPORT_SYMBOL vmlinux 0x716011a4 qdisc_hash_del -EXPORT_SYMBOL vmlinux 0x7168b4d4 vlan_dev_real_dev -EXPORT_SYMBOL vmlinux 0x7171121c overflowgid -EXPORT_SYMBOL vmlinux 0x71831c86 write_cache_pages -EXPORT_SYMBOL vmlinux 0x71842160 clear_inode -EXPORT_SYMBOL vmlinux 0x71a672ef dmam_pool_destroy -EXPORT_SYMBOL vmlinux 0x71b7f83d dev_queue_xmit_accel -EXPORT_SYMBOL vmlinux 0x71cd75ce capable_wrt_inode_uidgid -EXPORT_SYMBOL vmlinux 0x71cf215a set_page_dirty_lock -EXPORT_SYMBOL vmlinux 0x71cf2329 of_io_request_and_map -EXPORT_SYMBOL vmlinux 0x71d66ea1 of_get_i2c_adapter_by_node -EXPORT_SYMBOL vmlinux 0x71dfc095 acpi_walk_resources -EXPORT_SYMBOL vmlinux 0x7208aa36 pci_alloc_irq_vectors_affinity -EXPORT_SYMBOL vmlinux 0x720a27a7 __register_blkdev -EXPORT_SYMBOL vmlinux 0x7213afaa jbd2_journal_set_features -EXPORT_SYMBOL vmlinux 0x7237b2ef of_graph_get_next_endpoint -EXPORT_SYMBOL vmlinux 0x724ddac7 utf8version_is_supported -EXPORT_SYMBOL vmlinux 0x724f32cf max8998_bulk_write -EXPORT_SYMBOL vmlinux 0x726bc3c7 wait_for_completion_killable_timeout -EXPORT_SYMBOL vmlinux 0x72809f08 of_get_ethdev_address -EXPORT_SYMBOL vmlinux 0x729488da pci_release_regions -EXPORT_SYMBOL vmlinux 0x72a50966 ucc_fast_disable -EXPORT_SYMBOL vmlinux 0x72aa86d5 clocksource_change_rating -EXPORT_SYMBOL vmlinux 0x72abbaab pci_rebar_get_possible_sizes -EXPORT_SYMBOL vmlinux 0x72b4c5f0 devm_pci_alloc_host_bridge -EXPORT_SYMBOL vmlinux 0x72b9d287 default_grn -EXPORT_SYMBOL vmlinux 0x72e30be5 devm_devfreq_remove_device -EXPORT_SYMBOL vmlinux 0x72ea7b2d scsi_device_type -EXPORT_SYMBOL vmlinux 0x72f14ff7 acpi_get_object_info -EXPORT_SYMBOL vmlinux 0x72fbd85e input_set_timestamp -EXPORT_SYMBOL vmlinux 0x7315a4e9 twl6030_mmc_card_detect_config -EXPORT_SYMBOL vmlinux 0x73176554 handle_edge_irq -EXPORT_SYMBOL vmlinux 0x731dba7a xen_domain_type -EXPORT_SYMBOL vmlinux 0x731f2b51 devfreq_update_target -EXPORT_SYMBOL vmlinux 0x732dd326 groups_free -EXPORT_SYMBOL vmlinux 0x732ef4aa __mod_node_page_state -EXPORT_SYMBOL vmlinux 0x73357dac tcp_gro_complete -EXPORT_SYMBOL vmlinux 0x7355e430 vm_insert_page -EXPORT_SYMBOL vmlinux 0x735e6a81 acpi_evaluate_integer -EXPORT_SYMBOL vmlinux 0x735f3866 gen_pool_dma_alloc_algo -EXPORT_SYMBOL vmlinux 0x737e895e netlink_capable -EXPORT_SYMBOL vmlinux 0x7380dffa argv_split -EXPORT_SYMBOL vmlinux 0x73866a09 ip_route_input_noref -EXPORT_SYMBOL vmlinux 0x739185d8 mipi_dsi_dcs_set_pixel_format -EXPORT_SYMBOL vmlinux 0x73933de2 netdev_alert -EXPORT_SYMBOL vmlinux 0x73998efa cpm_muram_free_addr -EXPORT_SYMBOL vmlinux 0x739e4903 netpoll_send_skb -EXPORT_SYMBOL vmlinux 0x739fd00f __SCK__tp_func_module_get -EXPORT_SYMBOL vmlinux 0x73a20e0c rdmacg_try_charge -EXPORT_SYMBOL vmlinux 0x73abb180 alloc_contig_range -EXPORT_SYMBOL vmlinux 0x73b28ac8 dma_fence_free -EXPORT_SYMBOL vmlinux 0x73cd2d9d inet_csk_reset_keepalive_timer -EXPORT_SYMBOL vmlinux 0x73cf019f nf_register_net_hooks -EXPORT_SYMBOL vmlinux 0x73e33844 __scm_destroy -EXPORT_SYMBOL vmlinux 0x7406a40d buffer_migrate_page -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 0x743f4126 keygen_port_hashing_init -EXPORT_SYMBOL vmlinux 0x744a55d8 skb_checksum -EXPORT_SYMBOL vmlinux 0x744c83ee cros_ec_check_result -EXPORT_SYMBOL vmlinux 0x744d11bb md_bitmap_sync_with_cluster -EXPORT_SYMBOL vmlinux 0x7453d3e8 security_release_secctx -EXPORT_SYMBOL vmlinux 0x74754435 acpi_bus_generate_netlink_event -EXPORT_SYMBOL vmlinux 0x748143b3 gro_find_complete_by_type -EXPORT_SYMBOL vmlinux 0x7483dc59 pci_dev_present -EXPORT_SYMBOL vmlinux 0x7484ad74 dev_getfirstbyhwtype -EXPORT_SYMBOL vmlinux 0x748bbfe6 param_get_bool -EXPORT_SYMBOL vmlinux 0x748e7362 skb_flow_dissect_meta -EXPORT_SYMBOL vmlinux 0x749c490f devm_extcon_unregister_notifier -EXPORT_SYMBOL vmlinux 0x749e56bc validate_slab_cache -EXPORT_SYMBOL vmlinux 0x74b66546 __devm_of_mdiobus_register -EXPORT_SYMBOL vmlinux 0x74b8e674 slhc_toss -EXPORT_SYMBOL vmlinux 0x74c134b9 __sw_hweight32 -EXPORT_SYMBOL vmlinux 0x74c1c2c6 input_close_device -EXPORT_SYMBOL vmlinux 0x74c345e5 ip6_output -EXPORT_SYMBOL vmlinux 0x74e3e603 param_set_int -EXPORT_SYMBOL vmlinux 0x74e5ff1a udpv6_encap_enable -EXPORT_SYMBOL vmlinux 0x74f54b06 seg6_push_hmac -EXPORT_SYMBOL vmlinux 0x7500a79e get_fs_type -EXPORT_SYMBOL vmlinux 0x75151093 key_link -EXPORT_SYMBOL vmlinux 0x751afbab tc_setup_cb_destroy -EXPORT_SYMBOL vmlinux 0x75387de8 read_cache_page -EXPORT_SYMBOL vmlinux 0x7538b44f input_inject_event -EXPORT_SYMBOL vmlinux 0x754a85ea pci_match_id -EXPORT_SYMBOL vmlinux 0x755f4ba3 blake2s_compress_generic -EXPORT_SYMBOL vmlinux 0x756000db of_get_next_available_child -EXPORT_SYMBOL vmlinux 0x756e22a0 filemap_check_errors -EXPORT_SYMBOL vmlinux 0x758326a9 inode_nohighmem -EXPORT_SYMBOL vmlinux 0x75871f5e acpi_get_next_object -EXPORT_SYMBOL vmlinux 0x7590a7f0 mdio_driver_register -EXPORT_SYMBOL vmlinux 0x75a4e151 d_mark_dontcache -EXPORT_SYMBOL vmlinux 0x75bda77a seq_hlist_next -EXPORT_SYMBOL vmlinux 0x75c78123 proc_create_data -EXPORT_SYMBOL vmlinux 0x75cf1ca6 input_match_device_id -EXPORT_SYMBOL vmlinux 0x75d0deb9 nsecs_to_jiffies64 -EXPORT_SYMBOL vmlinux 0x75d499dd vmcore_add_device_dump -EXPORT_SYMBOL vmlinux 0x75d5f48b backlight_device_set_brightness -EXPORT_SYMBOL vmlinux 0x75e381c4 of_device_is_available -EXPORT_SYMBOL vmlinux 0x75e4e0ca xfrm_input_resume -EXPORT_SYMBOL vmlinux 0x75ecb3f2 kernel_getpeername -EXPORT_SYMBOL vmlinux 0x7607cb98 mmc_retune_release -EXPORT_SYMBOL vmlinux 0x7607ea17 vfs_ioctl -EXPORT_SYMBOL vmlinux 0x76095500 mmc_gpio_get_cd -EXPORT_SYMBOL vmlinux 0x760a0f4f yield -EXPORT_SYMBOL vmlinux 0x7618af39 hdmi_infoframe_check -EXPORT_SYMBOL vmlinux 0x7624249e dim_park_tired -EXPORT_SYMBOL vmlinux 0x7647726c handle_sysrq -EXPORT_SYMBOL vmlinux 0x76557373 xfrm4_protocol_register -EXPORT_SYMBOL vmlinux 0x765ff474 crc_t10dif_generic -EXPORT_SYMBOL vmlinux 0x766734ff sock_kmalloc -EXPORT_SYMBOL vmlinux 0x766a0927 mempool_alloc_pages -EXPORT_SYMBOL vmlinux 0x766c053d netdev_next_lower_dev_rcu -EXPORT_SYMBOL vmlinux 0x766f2280 eth_prepare_mac_addr_change -EXPORT_SYMBOL vmlinux 0x767e246f dev_uc_flush -EXPORT_SYMBOL vmlinux 0x769f6e64 errseq_check -EXPORT_SYMBOL vmlinux 0x76ac1fe1 tcp_simple_retransmit -EXPORT_SYMBOL vmlinux 0x76bc1107 flush_dcache_page -EXPORT_SYMBOL vmlinux 0x76d3cd60 laptop_mode -EXPORT_SYMBOL vmlinux 0x76d4c374 dev_base_lock -EXPORT_SYMBOL vmlinux 0x76d7bf65 __xfrm_decode_session -EXPORT_SYMBOL vmlinux 0x76e1a776 xp_can_alloc -EXPORT_SYMBOL vmlinux 0x76fc4ff1 flow_rule_match_icmp -EXPORT_SYMBOL vmlinux 0x770eb63d dma_mmap_attrs -EXPORT_SYMBOL vmlinux 0x77141eeb register_md_cluster_operations -EXPORT_SYMBOL vmlinux 0x7732159c free_irq_cpu_rmap -EXPORT_SYMBOL vmlinux 0x77358855 iomem_resource -EXPORT_SYMBOL vmlinux 0x773b40f6 is_acpi_device_node -EXPORT_SYMBOL vmlinux 0x773c6e05 block_truncate_page -EXPORT_SYMBOL vmlinux 0x773f6243 __mutex_rt_init -EXPORT_SYMBOL vmlinux 0x773fa409 __kfifo_dma_in_finish_r -EXPORT_SYMBOL vmlinux 0x77456e0a acpi_root_dir -EXPORT_SYMBOL vmlinux 0x776ca93a __clzdi2 -EXPORT_SYMBOL vmlinux 0x776fd5f2 scsi_track_queue_full -EXPORT_SYMBOL vmlinux 0x7773a2a0 xfrm_state_walk_done -EXPORT_SYMBOL vmlinux 0x7780e014 devm_memremap -EXPORT_SYMBOL vmlinux 0x7791193f icst525_s2div -EXPORT_SYMBOL vmlinux 0x77ae5875 mii_check_media -EXPORT_SYMBOL vmlinux 0x77bc13a0 strim -EXPORT_SYMBOL vmlinux 0x77c345df netdev_notice -EXPORT_SYMBOL vmlinux 0x77d074c1 tc_setup_cb_reoffload -EXPORT_SYMBOL vmlinux 0x77daadec uart_unregister_driver -EXPORT_SYMBOL vmlinux 0x77e9eb37 aes_encrypt -EXPORT_SYMBOL vmlinux 0x77f38e64 elv_rb_add -EXPORT_SYMBOL vmlinux 0x77f3e108 page_cache_next_miss -EXPORT_SYMBOL vmlinux 0x77f7e680 mntget -EXPORT_SYMBOL vmlinux 0x7807f0f8 schedule_timeout_idle -EXPORT_SYMBOL vmlinux 0x78158502 simple_release_fs -EXPORT_SYMBOL vmlinux 0x78255b59 mipi_dsi_host_unregister -EXPORT_SYMBOL vmlinux 0x782e11e9 __traceiter_mmap_lock_start_locking -EXPORT_SYMBOL vmlinux 0x7840ac92 d_make_root -EXPORT_SYMBOL vmlinux 0x7846af3e __kfifo_len_r -EXPORT_SYMBOL vmlinux 0x784a569e gen_pool_destroy -EXPORT_SYMBOL vmlinux 0x784cb76f fman_port_get_device -EXPORT_SYMBOL vmlinux 0x785d5712 tc_setup_cb_add -EXPORT_SYMBOL vmlinux 0x78627499 sock_register -EXPORT_SYMBOL vmlinux 0x786f7bc1 km_state_notify -EXPORT_SYMBOL vmlinux 0x7879f306 devm_clk_get_optional -EXPORT_SYMBOL vmlinux 0x787bc8b2 jbd2_fc_wait_bufs -EXPORT_SYMBOL vmlinux 0x7880c781 dm_kcopyd_prepare_callback -EXPORT_SYMBOL vmlinux 0x7883893c put_disk -EXPORT_SYMBOL vmlinux 0x789a4b6b mark_buffer_write_io_error -EXPORT_SYMBOL vmlinux 0x789affb1 frontswap_tmem_exclusive_gets -EXPORT_SYMBOL vmlinux 0x789dcee0 fd_install -EXPORT_SYMBOL vmlinux 0x789ebec2 phy_remove_link_mode -EXPORT_SYMBOL vmlinux 0x78a16f48 aes_decrypt -EXPORT_SYMBOL vmlinux 0x78b1c111 gnet_stats_start_copy_compat -EXPORT_SYMBOL vmlinux 0x78b887ed vsprintf -EXPORT_SYMBOL vmlinux 0x78c91711 phy_read_paged -EXPORT_SYMBOL vmlinux 0x78dc91c2 seg6_hmac_validate_skb -EXPORT_SYMBOL vmlinux 0x78df6bd7 no_pci_devices -EXPORT_SYMBOL vmlinux 0x78fcfbc9 input_set_abs_params -EXPORT_SYMBOL vmlinux 0x78fea0a4 uart_get_baud_rate -EXPORT_SYMBOL vmlinux 0x790337e9 tty_unlock -EXPORT_SYMBOL vmlinux 0x790bafd4 blk_stack_limits -EXPORT_SYMBOL vmlinux 0x7925eb81 ipv6_dev_mc_dec -EXPORT_SYMBOL vmlinux 0x794f2ce9 ptp_cancel_worker_sync -EXPORT_SYMBOL vmlinux 0x79615796 mmc_alloc_host -EXPORT_SYMBOL vmlinux 0x79729ead filp_close -EXPORT_SYMBOL vmlinux 0x79739c3c utf8nagemin -EXPORT_SYMBOL vmlinux 0x7974cfab scsi_is_host_device -EXPORT_SYMBOL vmlinux 0x79803801 dquot_initialize -EXPORT_SYMBOL vmlinux 0x7984eefc key_update -EXPORT_SYMBOL vmlinux 0x798bfc31 devm_memunmap -EXPORT_SYMBOL vmlinux 0x79a03403 devm_alloc_etherdev_mqs -EXPORT_SYMBOL vmlinux 0x79a33f85 vme_get_size -EXPORT_SYMBOL vmlinux 0x79a5ca06 __cond_resched_rwlock_read -EXPORT_SYMBOL vmlinux 0x79c0f059 sock_set_reuseaddr -EXPORT_SYMBOL vmlinux 0x79c635ec vfs_clone_file_range -EXPORT_SYMBOL vmlinux 0x79c82318 __vfs_removexattr -EXPORT_SYMBOL vmlinux 0x79d1348f of_n_addr_cells -EXPORT_SYMBOL vmlinux 0x79e0fb92 tso_build_hdr -EXPORT_SYMBOL vmlinux 0x79ec8f93 blk_start_plug -EXPORT_SYMBOL vmlinux 0x79f38e48 skb_get_hash_perturb -EXPORT_SYMBOL vmlinux 0x79fa1be6 jbd2_journal_ack_err -EXPORT_SYMBOL vmlinux 0x7a00d526 qdisc_put_unlocked -EXPORT_SYMBOL vmlinux 0x7a080eb0 request_key_with_auxdata -EXPORT_SYMBOL vmlinux 0x7a09a064 seg6_hmac_compute -EXPORT_SYMBOL vmlinux 0x7a1bcd59 gf128mul_x8_ble -EXPORT_SYMBOL vmlinux 0x7a2063b9 inet_confirm_addr -EXPORT_SYMBOL vmlinux 0x7a2af7b4 cpu_number -EXPORT_SYMBOL vmlinux 0x7a2f8e4a block_write_full_page -EXPORT_SYMBOL vmlinux 0x7a4f4736 mmc_free_host -EXPORT_SYMBOL vmlinux 0x7a53a06d flow_indr_dev_exists -EXPORT_SYMBOL vmlinux 0x7a53f5c5 scsi_eh_finish_cmd -EXPORT_SYMBOL vmlinux 0x7a5748c8 security_sb_remount -EXPORT_SYMBOL vmlinux 0x7a6def3c dma_fence_signal_timestamp -EXPORT_SYMBOL vmlinux 0x7a73b599 bio_integrity_alloc -EXPORT_SYMBOL vmlinux 0x7a73fb55 dquot_transfer -EXPORT_SYMBOL vmlinux 0x7a875aee tcp_filter -EXPORT_SYMBOL vmlinux 0x7a8bb4e3 simple_statfs -EXPORT_SYMBOL vmlinux 0x7a95e5ae do_settimeofday64 -EXPORT_SYMBOL vmlinux 0x7a968137 ucc_slow_restart_tx -EXPORT_SYMBOL vmlinux 0x7aa1756e kvfree -EXPORT_SYMBOL vmlinux 0x7ab88a45 system_freezing_cnt -EXPORT_SYMBOL vmlinux 0x7ad050b9 qid_lt -EXPORT_SYMBOL vmlinux 0x7ad8e508 __icmp_send -EXPORT_SYMBOL vmlinux 0x7adc0fbf rb_replace_node_rcu -EXPORT_SYMBOL vmlinux 0x7ade0fb8 napi_gro_frags -EXPORT_SYMBOL vmlinux 0x7ae5d317 qe_get_snum -EXPORT_SYMBOL vmlinux 0x7b14f251 rt_read_trylock -EXPORT_SYMBOL vmlinux 0x7b21b6db udp6_csum_init -EXPORT_SYMBOL vmlinux 0x7b37d4a7 _find_first_zero_bit -EXPORT_SYMBOL vmlinux 0x7b40ce46 generic_setlease -EXPORT_SYMBOL vmlinux 0x7b5b8f31 sha256_update -EXPORT_SYMBOL vmlinux 0x7b5f195b mempool_destroy -EXPORT_SYMBOL vmlinux 0x7b606d6b dev_mc_add_global -EXPORT_SYMBOL vmlinux 0x7b719d90 ethtool_virtdev_set_link_ksettings -EXPORT_SYMBOL vmlinux 0x7b7e3e59 padata_do_serial -EXPORT_SYMBOL vmlinux 0x7b9eb69d set_anon_super_fc -EXPORT_SYMBOL vmlinux 0x7ba10dcf iput -EXPORT_SYMBOL vmlinux 0x7ba31968 input_reset_device -EXPORT_SYMBOL vmlinux 0x7ba5a3b4 tegra_powergate_power_off -EXPORT_SYMBOL vmlinux 0x7bb50b88 acpi_write -EXPORT_SYMBOL vmlinux 0x7bbccd05 nr_node_ids -EXPORT_SYMBOL vmlinux 0x7bd57cc5 mmc_card_is_blockaddr -EXPORT_SYMBOL vmlinux 0x7bd59ce6 security_sctp_assoc_request -EXPORT_SYMBOL vmlinux 0x7be47ce0 __pci_register_driver -EXPORT_SYMBOL vmlinux 0x7be6704b dev_mc_sync_multiple -EXPORT_SYMBOL vmlinux 0x7bedb09d pci_find_capability -EXPORT_SYMBOL vmlinux 0x7bf49bb0 tcf_idrinfo_destroy -EXPORT_SYMBOL vmlinux 0x7bf6035f nd_dev_to_uuid -EXPORT_SYMBOL vmlinux 0x7bffe098 pcie_get_readrq -EXPORT_SYMBOL vmlinux 0x7c011073 __netdev_notify_peers -EXPORT_SYMBOL vmlinux 0x7c173634 __bitmap_complement -EXPORT_SYMBOL vmlinux 0x7c1d182b dev_add_offload -EXPORT_SYMBOL vmlinux 0x7c46233a cpufreq_quick_get -EXPORT_SYMBOL vmlinux 0x7c4f75e8 xfrm_state_walk -EXPORT_SYMBOL vmlinux 0x7c6964c2 pci_find_parent_resource -EXPORT_SYMBOL vmlinux 0x7c74ffb6 finish_swait -EXPORT_SYMBOL vmlinux 0x7c9ca58f __sg_page_iter_next -EXPORT_SYMBOL vmlinux 0x7ca2799e ip_route_me_harder -EXPORT_SYMBOL vmlinux 0x7caad563 of_node_get -EXPORT_SYMBOL vmlinux 0x7cb1aea1 devlink_dpipe_header_ethernet -EXPORT_SYMBOL vmlinux 0x7cc57b62 devm_clk_get -EXPORT_SYMBOL vmlinux 0x7ce18c9f from_kqid -EXPORT_SYMBOL vmlinux 0x7ce58981 kvrealloc -EXPORT_SYMBOL vmlinux 0x7cf35220 vme_master_free -EXPORT_SYMBOL vmlinux 0x7cf7317f config_item_init_type_name -EXPORT_SYMBOL vmlinux 0x7cfe368d net_dim_get_def_tx_moderation -EXPORT_SYMBOL vmlinux 0x7d018265 netdev_set_num_tc -EXPORT_SYMBOL vmlinux 0x7d043d7f block_page_mkwrite -EXPORT_SYMBOL vmlinux 0x7d0db45c jiffies_to_clock_t -EXPORT_SYMBOL vmlinux 0x7d12d76d acpi_get_parent -EXPORT_SYMBOL vmlinux 0x7d42cb68 ip_generic_getfrag -EXPORT_SYMBOL vmlinux 0x7d4471da dma_async_device_register -EXPORT_SYMBOL vmlinux 0x7d45dd39 to_nd_dax -EXPORT_SYMBOL vmlinux 0x7d4656a0 __bread_gfp -EXPORT_SYMBOL vmlinux 0x7d4b176a netlbl_catmap_setbit -EXPORT_SYMBOL vmlinux 0x7d573ddb crypto_sha1_update -EXPORT_SYMBOL vmlinux 0x7d5e1008 __crc32c_le_shift -EXPORT_SYMBOL vmlinux 0x7d617eaf mdiobus_read_nested -EXPORT_SYMBOL vmlinux 0x7d65b802 lease_modify -EXPORT_SYMBOL vmlinux 0x7d6878a7 frontswap_register_ops -EXPORT_SYMBOL vmlinux 0x7d73db01 mnt_set_expiry -EXPORT_SYMBOL vmlinux 0x7d74d522 kstrtoull_from_user -EXPORT_SYMBOL vmlinux 0x7d888aa9 vlan_vids_add_by_dev -EXPORT_SYMBOL vmlinux 0x7d8e6cac get_cached_acl -EXPORT_SYMBOL vmlinux 0x7d9d91d3 sock_recv_errqueue -EXPORT_SYMBOL vmlinux 0x7da37cef drop_super -EXPORT_SYMBOL vmlinux 0x7daece67 quota_send_warning -EXPORT_SYMBOL vmlinux 0x7de6f41c to_nd_btt -EXPORT_SYMBOL vmlinux 0x7deff673 dm_consume_args -EXPORT_SYMBOL vmlinux 0x7e1b950d inc_nlink -EXPORT_SYMBOL vmlinux 0x7e29ab3b vlan_uses_dev -EXPORT_SYMBOL vmlinux 0x7e3191f6 try_to_del_timer_sync -EXPORT_SYMBOL vmlinux 0x7e3bf2f4 sync_dirty_buffer -EXPORT_SYMBOL vmlinux 0x7e3ff0df ip_fraglist_init -EXPORT_SYMBOL vmlinux 0x7e51b450 mdiobus_write_nested -EXPORT_SYMBOL vmlinux 0x7e5f006f sock_init_data_uid -EXPORT_SYMBOL vmlinux 0x7e6eb2fc tcp_prot -EXPORT_SYMBOL vmlinux 0x7e845848 pci_disable_ptm -EXPORT_SYMBOL vmlinux 0x7ea816e0 fsl_ifc_ctrl_dev -EXPORT_SYMBOL vmlinux 0x7eb26609 pin_user_pages -EXPORT_SYMBOL vmlinux 0x7ecbb830 ipv6_dev_find -EXPORT_SYMBOL vmlinux 0x7ecf4ffe genl_unregister_family -EXPORT_SYMBOL vmlinux 0x7ed2c125 request_key_rcu -EXPORT_SYMBOL vmlinux 0x7ed95370 scsi_device_lookup_by_target -EXPORT_SYMBOL vmlinux 0x7edb36ae inode_add_bytes -EXPORT_SYMBOL vmlinux 0x7f02188f __msecs_to_jiffies -EXPORT_SYMBOL vmlinux 0x7f035014 load_nls -EXPORT_SYMBOL vmlinux 0x7f03b6a9 crc_ccitt_table -EXPORT_SYMBOL vmlinux 0x7f115a73 set_security_override -EXPORT_SYMBOL vmlinux 0x7f12f65b tcf_classify -EXPORT_SYMBOL vmlinux 0x7f2449e4 send_sig -EXPORT_SYMBOL vmlinux 0x7f24de73 jiffies_to_usecs -EXPORT_SYMBOL vmlinux 0x7f29c17f phy_advertise_supported -EXPORT_SYMBOL vmlinux 0x7f4c7a3a module_put -EXPORT_SYMBOL vmlinux 0x7f52071a net_dim -EXPORT_SYMBOL vmlinux 0x7f5a5955 nf_log_unbind_pf -EXPORT_SYMBOL vmlinux 0x7f5b4fe4 sg_free_table -EXPORT_SYMBOL vmlinux 0x7f612800 generic_file_read_iter -EXPORT_SYMBOL vmlinux 0x7f7f7bb4 irq_poll_disable -EXPORT_SYMBOL vmlinux 0x7f8af21d xfrm_find_acq_byseq -EXPORT_SYMBOL vmlinux 0x7fa2495d kmem_cache_alloc_bulk -EXPORT_SYMBOL vmlinux 0x7fb9d15b dquot_load_quota_sb -EXPORT_SYMBOL vmlinux 0x7fce778e tegra_ivc_total_queue_size -EXPORT_SYMBOL vmlinux 0x7fd9e383 dev_add_pack -EXPORT_SYMBOL vmlinux 0x7fdd7310 unregister_key_type -EXPORT_SYMBOL vmlinux 0x7fe105d7 bman_ip_rev -EXPORT_SYMBOL vmlinux 0x7fe32873 rb_replace_node -EXPORT_SYMBOL vmlinux 0x7fed9913 fman_get_pause_cfg -EXPORT_SYMBOL vmlinux 0x7ffb28ad elevator_alloc -EXPORT_SYMBOL vmlinux 0x7ffde6e8 configfs_register_group -EXPORT_SYMBOL vmlinux 0x80333bef scsi_get_device_flags_keyed -EXPORT_SYMBOL vmlinux 0x803375de uart_update_timeout -EXPORT_SYMBOL vmlinux 0x80393174 nf_hook_slow_list -EXPORT_SYMBOL vmlinux 0x803c9ebb pci_irq_vector -EXPORT_SYMBOL vmlinux 0x803ddbb6 __posix_acl_create -EXPORT_SYMBOL vmlinux 0x803e49a4 touch_atime -EXPORT_SYMBOL vmlinux 0x80432628 idr_for_each -EXPORT_SYMBOL vmlinux 0x80443c96 __xfrm_policy_check -EXPORT_SYMBOL vmlinux 0x804696dc mmc_add_host -EXPORT_SYMBOL vmlinux 0x80492856 noop_qdisc -EXPORT_SYMBOL vmlinux 0x8052ec93 nf_unregister_net_hooks -EXPORT_SYMBOL vmlinux 0x8056e7c5 fs_bio_set -EXPORT_SYMBOL vmlinux 0x807c1efb simple_fill_super -EXPORT_SYMBOL vmlinux 0x80807b44 lookup_positive_unlocked -EXPORT_SYMBOL vmlinux 0x808cd480 radix_tree_iter_resume -EXPORT_SYMBOL vmlinux 0x809712ff hdmi_avi_infoframe_pack -EXPORT_SYMBOL vmlinux 0x80a717a8 __percpu_counter_compare -EXPORT_SYMBOL vmlinux 0x80ca5026 _bin2bcd -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 0x80f702d6 lockref_put_not_zero -EXPORT_SYMBOL vmlinux 0x80fdeacd inet6_release -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 0x8125615a backlight_device_get_by_name -EXPORT_SYMBOL vmlinux 0x812a83de netpoll_cleanup -EXPORT_SYMBOL vmlinux 0x812c8400 refcount_dec_and_mutex_lock -EXPORT_SYMBOL vmlinux 0x81525a7b make_kgid -EXPORT_SYMBOL vmlinux 0x81533963 sysfs_format_mac -EXPORT_SYMBOL vmlinux 0x8156f9f3 security_task_getsecid_subj -EXPORT_SYMBOL vmlinux 0x815b5dd4 match_octal -EXPORT_SYMBOL vmlinux 0x815f2897 empty_zero_page -EXPORT_SYMBOL vmlinux 0x818416e1 scsi_set_sense_information -EXPORT_SYMBOL vmlinux 0x818c7d10 key_unlink -EXPORT_SYMBOL vmlinux 0x818edf97 cpm_muram_alloc -EXPORT_SYMBOL vmlinux 0x81a1c126 xfrm_parse_spi -EXPORT_SYMBOL vmlinux 0x81ac5e33 trace_print_hex_dump_seq -EXPORT_SYMBOL vmlinux 0x81b20e8b ucc_fast_transmit_on_demand -EXPORT_SYMBOL vmlinux 0x81b47405 dma_fence_array_ops -EXPORT_SYMBOL vmlinux 0x81c47390 of_mdiobus_phy_device_register -EXPORT_SYMBOL vmlinux 0x81c96b65 jbd2_journal_get_undo_access -EXPORT_SYMBOL vmlinux 0x81db6ebb xz_dec_reset -EXPORT_SYMBOL vmlinux 0x81e0c9cd kthread_blkcg -EXPORT_SYMBOL vmlinux 0x81e6b37f dmi_get_system_info -EXPORT_SYMBOL vmlinux 0x81eab56a bioset_init -EXPORT_SYMBOL vmlinux 0x820e76a7 udp6_seq_ops -EXPORT_SYMBOL vmlinux 0x8232aaa3 security_inode_init_security -EXPORT_SYMBOL vmlinux 0x82600fbf blkdev_issue_flush -EXPORT_SYMBOL vmlinux 0x827d9bc9 done_path_create -EXPORT_SYMBOL vmlinux 0x828062b1 __frontswap_init -EXPORT_SYMBOL vmlinux 0x8285e603 skb_expand_head -EXPORT_SYMBOL vmlinux 0x82b23bde lookup_one_positive_unlocked -EXPORT_SYMBOL vmlinux 0x82beeb4b skb_csum_hwoffload_help -EXPORT_SYMBOL vmlinux 0x82c87ad5 nr_online_nodes -EXPORT_SYMBOL vmlinux 0x82cb975a rproc_add -EXPORT_SYMBOL vmlinux 0x82dd9ed3 pci_free_irq -EXPORT_SYMBOL vmlinux 0x82eb5950 nobh_truncate_page -EXPORT_SYMBOL vmlinux 0x82ee90dc timer_delete_sync -EXPORT_SYMBOL vmlinux 0x82f5cb0a ppp_register_compressor -EXPORT_SYMBOL vmlinux 0x83054536 pci_dev_put -EXPORT_SYMBOL vmlinux 0x83114a87 rproc_coredump_add_segment -EXPORT_SYMBOL vmlinux 0x832363a4 sk_stream_kill_queues -EXPORT_SYMBOL vmlinux 0x83335451 nosteal_pipe_buf_ops -EXPORT_SYMBOL vmlinux 0x83581089 gf128mul_init_4k_lle -EXPORT_SYMBOL vmlinux 0x8358657f pci_unregister_driver -EXPORT_SYMBOL vmlinux 0x836eaa72 padata_set_cpumask -EXPORT_SYMBOL vmlinux 0x837b7b09 __dynamic_pr_debug -EXPORT_SYMBOL vmlinux 0x837b8a83 cfb_copyarea -EXPORT_SYMBOL vmlinux 0x837c9f10 skb_mac_gso_segment -EXPORT_SYMBOL vmlinux 0x838330f3 dma_fence_chain_find_seqno -EXPORT_SYMBOL vmlinux 0x838d2bc8 siphash_3u32 -EXPORT_SYMBOL vmlinux 0x83956f75 crypto_sha1_finup -EXPORT_SYMBOL vmlinux 0x839de82c kernel_recvmsg -EXPORT_SYMBOL vmlinux 0x83a3b83d udp_gro_complete -EXPORT_SYMBOL vmlinux 0x83ac3a2b __dquot_transfer -EXPORT_SYMBOL vmlinux 0x83bbdadc phy_do_ioctl -EXPORT_SYMBOL vmlinux 0x83bf8fa2 __netlink_dump_start -EXPORT_SYMBOL vmlinux 0x83c495d0 mmc_wait_for_cmd -EXPORT_SYMBOL vmlinux 0x83e78d17 of_get_next_child -EXPORT_SYMBOL vmlinux 0x83efa6a9 xfrm_policy_register_afinfo -EXPORT_SYMBOL vmlinux 0x83f615fe acpi_pm_device_sleep_state -EXPORT_SYMBOL vmlinux 0x83f773b6 ip_mc_inc_group -EXPORT_SYMBOL vmlinux 0x840342c6 sgl_free -EXPORT_SYMBOL vmlinux 0x8410a2ca dev_get_mac_address -EXPORT_SYMBOL vmlinux 0x8427cc7b _raw_spin_lock_irq -EXPORT_SYMBOL vmlinux 0x84510675 genphy_aneg_done -EXPORT_SYMBOL vmlinux 0x8451c862 kthread_create_on_node -EXPORT_SYMBOL vmlinux 0x845f6d6a unix_destruct_scm -EXPORT_SYMBOL vmlinux 0x8468450d vfs_fsync -EXPORT_SYMBOL vmlinux 0x8472ee28 ipv6_chk_prefix -EXPORT_SYMBOL vmlinux 0x84818f57 tegra_powergate_power_on -EXPORT_SYMBOL vmlinux 0x84823cf3 nla_strscpy -EXPORT_SYMBOL vmlinux 0x84837cbc fixed_size_llseek -EXPORT_SYMBOL vmlinux 0x849f8c70 __dev_remove_pack -EXPORT_SYMBOL vmlinux 0x84aa74e3 build_skb_around -EXPORT_SYMBOL vmlinux 0x84ee2eff __skb_pad -EXPORT_SYMBOL vmlinux 0x8511625a tty_port_block_til_ready -EXPORT_SYMBOL vmlinux 0x8518a4a6 _raw_spin_trylock_bh -EXPORT_SYMBOL vmlinux 0x851b9121 xudma_dev_get_psil_base -EXPORT_SYMBOL vmlinux 0x8541163c pagecache_write_begin -EXPORT_SYMBOL vmlinux 0x854fec83 tegra_sku_info -EXPORT_SYMBOL vmlinux 0x85670f1d rtnl_is_locked -EXPORT_SYMBOL vmlinux 0x8591d7d5 ledtrig_mtd_activity -EXPORT_SYMBOL vmlinux 0x859a1b0b vme_new_dma_list -EXPORT_SYMBOL vmlinux 0x85b4cf2f utf8nlen -EXPORT_SYMBOL vmlinux 0x85b5e625 rfkill_set_states -EXPORT_SYMBOL vmlinux 0x85bd1608 __request_region -EXPORT_SYMBOL vmlinux 0x85cd17ab of_find_mipi_dsi_device_by_node -EXPORT_SYMBOL vmlinux 0x85df9b6c strsep -EXPORT_SYMBOL vmlinux 0x85e21f1a ppp_dev_name -EXPORT_SYMBOL vmlinux 0x85efc7e0 zero_pfn -EXPORT_SYMBOL vmlinux 0x85f3ee79 security_cred_getsecid -EXPORT_SYMBOL vmlinux 0x862b0880 pm_vt_switch_unregister -EXPORT_SYMBOL vmlinux 0x863a276a color_table -EXPORT_SYMBOL vmlinux 0x8645ac27 pci_unmap_rom -EXPORT_SYMBOL vmlinux 0x8647065c fscrypt_fname_disk_to_usr -EXPORT_SYMBOL vmlinux 0x866a62b2 gnet_stats_basic_sync_init -EXPORT_SYMBOL vmlinux 0x8674db7a netdev_pick_tx -EXPORT_SYMBOL vmlinux 0x86767cb2 __dec_node_page_state -EXPORT_SYMBOL vmlinux 0x868acba5 get_options -EXPORT_SYMBOL vmlinux 0x868f1adb rproc_add_carveout -EXPORT_SYMBOL vmlinux 0x8690f1ea bdev_read_only -EXPORT_SYMBOL vmlinux 0x86b5074d __block_write_begin -EXPORT_SYMBOL vmlinux 0x86d52ba5 lookup_constant -EXPORT_SYMBOL vmlinux 0x86e4a845 fman_set_port_params -EXPORT_SYMBOL vmlinux 0x86fb9b05 bitmap_parse_user -EXPORT_SYMBOL vmlinux 0x8702a8c1 dma_fence_default_wait -EXPORT_SYMBOL vmlinux 0x870f69c6 ipv6_setsockopt -EXPORT_SYMBOL vmlinux 0x87273a83 vfs_setpos -EXPORT_SYMBOL vmlinux 0x873700db vga_get -EXPORT_SYMBOL vmlinux 0x874ac808 dev_uc_sync -EXPORT_SYMBOL vmlinux 0x8761c87b rps_needed -EXPORT_SYMBOL vmlinux 0x8764970f blk_queue_io_min -EXPORT_SYMBOL vmlinux 0x8772d343 inet6_del_offload -EXPORT_SYMBOL vmlinux 0x8775afbe neigh_carrier_down -EXPORT_SYMBOL vmlinux 0x87761528 __traceiter_kmem_cache_alloc -EXPORT_SYMBOL vmlinux 0x877ccc0e unregister_netdevice_queue -EXPORT_SYMBOL vmlinux 0x877ceffd send_sig_mceerr -EXPORT_SYMBOL vmlinux 0x87800a19 ps2_end_command -EXPORT_SYMBOL vmlinux 0x87826d4f pfifo_qdisc_ops -EXPORT_SYMBOL vmlinux 0x87828e59 dquot_free_inode -EXPORT_SYMBOL vmlinux 0x878469bd ZSTD_decompressStream -EXPORT_SYMBOL vmlinux 0x878eae3e rpmh_write -EXPORT_SYMBOL vmlinux 0x87a21cb3 __ubsan_handle_out_of_bounds -EXPORT_SYMBOL vmlinux 0x87b0c91f scsi_register_driver -EXPORT_SYMBOL vmlinux 0x87b8798d sg_next -EXPORT_SYMBOL vmlinux 0x87b9d791 filemap_fault -EXPORT_SYMBOL vmlinux 0x87bb22fb fscrypt_has_permitted_context -EXPORT_SYMBOL vmlinux 0x87c71dca blk_mq_stop_hw_queue -EXPORT_SYMBOL vmlinux 0x87d74523 md_reload_sb -EXPORT_SYMBOL vmlinux 0x87d75f3c skb_checksum_trimmed -EXPORT_SYMBOL vmlinux 0x87d9594c mmc_retune_pause -EXPORT_SYMBOL vmlinux 0x87f98358 nf_register_queue_handler -EXPORT_SYMBOL vmlinux 0x880bc7b6 security_inode_notifysecctx -EXPORT_SYMBOL vmlinux 0x8810754a _find_first_bit -EXPORT_SYMBOL vmlinux 0x881bad5e phy_mipi_dphy_config_validate -EXPORT_SYMBOL vmlinux 0x88269a49 input_register_device -EXPORT_SYMBOL vmlinux 0x884051da xfrm_unregister_type -EXPORT_SYMBOL vmlinux 0x88513195 mmc_wait_for_req_done -EXPORT_SYMBOL vmlinux 0x8853341e copy_page_from_iter_atomic -EXPORT_SYMBOL vmlinux 0x8855bdda inet_stream_connect -EXPORT_SYMBOL vmlinux 0x886d5198 scsi_register_interface -EXPORT_SYMBOL vmlinux 0x88822d38 unregister_blocking_lsm_notifier -EXPORT_SYMBOL vmlinux 0x8888f1fe xxh32 -EXPORT_SYMBOL vmlinux 0x888c25ba xfrm6_rcv -EXPORT_SYMBOL vmlinux 0x889811e8 uart_resume_port -EXPORT_SYMBOL vmlinux 0x889c97c8 __netlink_kernel_create -EXPORT_SYMBOL vmlinux 0x88a34e7d tcp_md5_do_del -EXPORT_SYMBOL vmlinux 0x88abb78b ZSTD_insertBlock -EXPORT_SYMBOL vmlinux 0x88b07c67 dev_lstats_read -EXPORT_SYMBOL vmlinux 0x88bb81ff serio_interrupt -EXPORT_SYMBOL vmlinux 0x88bdb964 max8998_update_reg -EXPORT_SYMBOL vmlinux 0x88c88474 _atomic_dec_and_lock -EXPORT_SYMBOL vmlinux 0x88db9f48 __check_object_size -EXPORT_SYMBOL vmlinux 0x88e1bdb0 dma_unmap_sg_attrs -EXPORT_SYMBOL vmlinux 0x88e1d0f0 page_frag_free -EXPORT_SYMBOL vmlinux 0x88f16bb9 skb_copy -EXPORT_SYMBOL vmlinux 0x88fd25ea set_security_override_from_ctx -EXPORT_SYMBOL vmlinux 0x88feebd6 vfs_iocb_iter_read -EXPORT_SYMBOL vmlinux 0x890a4b9c skb_realloc_headroom -EXPORT_SYMBOL vmlinux 0x89219c17 sock_pfree -EXPORT_SYMBOL vmlinux 0x8928f8c4 sg_miter_stop -EXPORT_SYMBOL vmlinux 0x892bcdf5 ipv4_specific -EXPORT_SYMBOL vmlinux 0x892c5cb9 d_obtain_root -EXPORT_SYMBOL vmlinux 0x8946ea72 fpsimd_context_busy -EXPORT_SYMBOL vmlinux 0x896d212a max8998_read_reg -EXPORT_SYMBOL vmlinux 0x89b1212c max8925_reg_write -EXPORT_SYMBOL vmlinux 0x89c7fa5c scsi_partsize -EXPORT_SYMBOL vmlinux 0x89ca93dc pci_bus_write_config_word -EXPORT_SYMBOL vmlinux 0x89d7abf5 set_groups -EXPORT_SYMBOL vmlinux 0x89eb08cc dma_fence_match_context -EXPORT_SYMBOL vmlinux 0x89f39709 fbcon_update_vcs -EXPORT_SYMBOL vmlinux 0x8a02907c sockfd_lookup -EXPORT_SYMBOL vmlinux 0x8a0b836b param_set_hexint -EXPORT_SYMBOL vmlinux 0x8a17c149 neigh_direct_output -EXPORT_SYMBOL vmlinux 0x8a18b7fc genlmsg_put -EXPORT_SYMBOL vmlinux 0x8a1f3811 free_cgroup_ns -EXPORT_SYMBOL vmlinux 0x8a47043d LZ4_decompress_safe_continue -EXPORT_SYMBOL vmlinux 0x8a490c90 rfkill_set_sw_state -EXPORT_SYMBOL vmlinux 0x8a53e226 inet_sendmsg -EXPORT_SYMBOL vmlinux 0x8a7094ba vm_brk_flags -EXPORT_SYMBOL vmlinux 0x8a7d1c31 high_memory -EXPORT_SYMBOL vmlinux 0x8a8d8c61 _dev_err -EXPORT_SYMBOL vmlinux 0x8a99203b nlmsg_notify -EXPORT_SYMBOL vmlinux 0x8a99a016 mempool_free_slab -EXPORT_SYMBOL vmlinux 0x8aa1419b d_hash_and_lookup -EXPORT_SYMBOL vmlinux 0x8abb61ce phy_init_hw -EXPORT_SYMBOL vmlinux 0x8abbb0f6 pm860x_reg_write -EXPORT_SYMBOL vmlinux 0x8ac02ca1 tty_port_destroy -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 0x8ae68d71 tcf_idr_cleanup -EXPORT_SYMBOL vmlinux 0x8ae6cd5d __page_frag_cache_drain -EXPORT_SYMBOL vmlinux 0x8b0088d1 LZ4_decompress_safe_usingDict -EXPORT_SYMBOL vmlinux 0x8b07b51d flow_block_cb_is_busy -EXPORT_SYMBOL vmlinux 0x8b0e7adf blk_put_request -EXPORT_SYMBOL vmlinux 0x8b224458 dma_fence_signal -EXPORT_SYMBOL vmlinux 0x8b230bc4 ndo_dflt_fdb_dump -EXPORT_SYMBOL vmlinux 0x8b2ffd83 __cpu_present_mask -EXPORT_SYMBOL vmlinux 0x8b52352c qman_start_using_portal -EXPORT_SYMBOL vmlinux 0x8b5f11c6 fifo_create_dflt -EXPORT_SYMBOL vmlinux 0x8b618d08 overflowuid -EXPORT_SYMBOL vmlinux 0x8b638e3c iw_handler_set_spy -EXPORT_SYMBOL vmlinux 0x8b6f9dd7 pci_bus_assign_resources -EXPORT_SYMBOL vmlinux 0x8b8059bd in_group_p -EXPORT_SYMBOL vmlinux 0x8b910be2 errseq_sample -EXPORT_SYMBOL vmlinux 0x8b951d39 blk_mq_tag_to_rq -EXPORT_SYMBOL vmlinux 0x8b989cf9 acpi_bus_can_wakeup -EXPORT_SYMBOL vmlinux 0x8b98cb50 pnp_device_detach -EXPORT_SYMBOL vmlinux 0x8b9ea582 ZSTD_copyDCtx -EXPORT_SYMBOL vmlinux 0x8ba4eef7 fscrypt_encrypt_pagecache_blocks -EXPORT_SYMBOL vmlinux 0x8bafa8bf jbd2_fc_get_buf -EXPORT_SYMBOL vmlinux 0x8bdfc47c __mb_cache_entry_free -EXPORT_SYMBOL vmlinux 0x8be189ab ucc_slow_disable -EXPORT_SYMBOL vmlinux 0x8bef592d gro_cells_init -EXPORT_SYMBOL vmlinux 0x8c087d33 eth_commit_mac_addr_change -EXPORT_SYMBOL vmlinux 0x8c0e0b00 blk_get_queue -EXPORT_SYMBOL vmlinux 0x8c289511 __wait_on_bit -EXPORT_SYMBOL vmlinux 0x8c387291 inet_bind -EXPORT_SYMBOL vmlinux 0x8c5ba624 mmc_calc_max_discard -EXPORT_SYMBOL vmlinux 0x8c8569cb kstrtoint -EXPORT_SYMBOL vmlinux 0x8c8d46ba release_sock -EXPORT_SYMBOL vmlinux 0x8c9e338f acpi_bios_error -EXPORT_SYMBOL vmlinux 0x8ca0db95 generic_read_dir -EXPORT_SYMBOL vmlinux 0x8caf9305 uuid_is_valid -EXPORT_SYMBOL vmlinux 0x8cbd0fb4 security_tun_dev_attach -EXPORT_SYMBOL vmlinux 0x8cbec5e4 dmaenginem_async_device_register -EXPORT_SYMBOL vmlinux 0x8cc37bc4 __wait_on_bit_lock -EXPORT_SYMBOL vmlinux 0x8cc53d20 __par_io_config_pin -EXPORT_SYMBOL vmlinux 0x8cd03182 tso_build_data -EXPORT_SYMBOL vmlinux 0x8cda8029 xen_clear_irq_pending -EXPORT_SYMBOL vmlinux 0x8d07bc56 fuse_dequeue_forget -EXPORT_SYMBOL vmlinux 0x8d132053 generic_file_fsync -EXPORT_SYMBOL vmlinux 0x8d29ebd7 mipi_dsi_device_unregister -EXPORT_SYMBOL vmlinux 0x8d4112df qcom_scm_mem_protect_video_var -EXPORT_SYMBOL vmlinux 0x8d48dcf3 migrate_page_move_mapping -EXPORT_SYMBOL vmlinux 0x8d55bb8a qid_eq -EXPORT_SYMBOL vmlinux 0x8d5ad921 phy_start -EXPORT_SYMBOL vmlinux 0x8d6ed80f __lock_sock_fast -EXPORT_SYMBOL vmlinux 0x8d72bc09 tegra_ivc_read_get_next_frame -EXPORT_SYMBOL vmlinux 0x8d73278e hex_asc_upper -EXPORT_SYMBOL vmlinux 0x8d782778 d_instantiate -EXPORT_SYMBOL vmlinux 0x8d943a20 show_init_ipc_ns -EXPORT_SYMBOL vmlinux 0x8da6585d __stack_chk_fail -EXPORT_SYMBOL vmlinux 0x8daedb79 cpumask_any_but -EXPORT_SYMBOL vmlinux 0x8dba2701 inode_io_list_del -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 0x8e16826e __scsi_device_lookup -EXPORT_SYMBOL vmlinux 0x8e1e6f51 i2c_transfer_buffer_flags -EXPORT_SYMBOL vmlinux 0x8e2650ee ppp_register_channel -EXPORT_SYMBOL vmlinux 0x8e3e0f7d fault_in_readable -EXPORT_SYMBOL vmlinux 0x8e4c60a3 cpm_muram_dma -EXPORT_SYMBOL vmlinux 0x8e4de3b4 generic_permission -EXPORT_SYMBOL vmlinux 0x8e56664a nonseekable_open -EXPORT_SYMBOL vmlinux 0x8e6b829e pci_enable_device_io -EXPORT_SYMBOL vmlinux 0x8e82f53e jbd2_journal_start -EXPORT_SYMBOL vmlinux 0x8e90c2a3 dqget -EXPORT_SYMBOL vmlinux 0x8e93bd24 security_secctx_to_secid -EXPORT_SYMBOL vmlinux 0x8eab1849 i2c_del_driver -EXPORT_SYMBOL vmlinux 0x8eab9d5a nf_log_trace -EXPORT_SYMBOL vmlinux 0x8ec41fde mdio_bus_type -EXPORT_SYMBOL vmlinux 0x8ed028d7 may_setattr -EXPORT_SYMBOL vmlinux 0x8ee26c6a jbd2_journal_stop -EXPORT_SYMBOL vmlinux 0x8eebe322 iommu_dma_get_resv_regions -EXPORT_SYMBOL vmlinux 0x8eef834c udp_poll -EXPORT_SYMBOL vmlinux 0x8efb923a end_page_private_2 -EXPORT_SYMBOL vmlinux 0x8f01afd6 twl6030_interrupt_mask -EXPORT_SYMBOL vmlinux 0x8f158077 tc_setup_cb_call -EXPORT_SYMBOL vmlinux 0x8f1956d9 sock_sendmsg -EXPORT_SYMBOL vmlinux 0x8f316ab0 vc_cons -EXPORT_SYMBOL vmlinux 0x8f447610 pcibios_resource_to_bus -EXPORT_SYMBOL vmlinux 0x8f48e9a8 seq_put_decimal_ll -EXPORT_SYMBOL vmlinux 0x8f54b6cc new_inode -EXPORT_SYMBOL vmlinux 0x8f67ec45 cdev_device_del -EXPORT_SYMBOL vmlinux 0x8f6c1b64 fb_show_logo -EXPORT_SYMBOL vmlinux 0x8f771b21 mini_qdisc_pair_init -EXPORT_SYMBOL vmlinux 0x8f996a30 ethtool_convert_legacy_u32_to_link_mode -EXPORT_SYMBOL vmlinux 0x8f9fad04 pci_request_selected_regions_exclusive -EXPORT_SYMBOL vmlinux 0x8fb0b2e4 cfb_imageblit -EXPORT_SYMBOL vmlinux 0x8fb11ed0 proc_doulongvec_ms_jiffies_minmax -EXPORT_SYMBOL vmlinux 0x8fc4df51 pnp_disable_dev -EXPORT_SYMBOL vmlinux 0x8fc9ea11 fman_port_cfg_buf_prefix_content -EXPORT_SYMBOL vmlinux 0x8fd180e7 kernel_neon_begin -EXPORT_SYMBOL vmlinux 0x8ff7d538 ioc_lookup_icq -EXPORT_SYMBOL vmlinux 0x8ff89ed0 seg6_hmac_exit -EXPORT_SYMBOL vmlinux 0x90006be6 dm_kcopyd_client_flush -EXPORT_SYMBOL vmlinux 0x90027916 vfs_fileattr_set -EXPORT_SYMBOL vmlinux 0x900e0bae add_to_pipe -EXPORT_SYMBOL vmlinux 0x90189235 get_tree_bdev -EXPORT_SYMBOL vmlinux 0x901b3477 udp_lib_setsockopt -EXPORT_SYMBOL vmlinux 0x9024489a register_qdisc -EXPORT_SYMBOL vmlinux 0x902d8722 vme_slave_get -EXPORT_SYMBOL vmlinux 0x902f5199 cpumask_next_wrap -EXPORT_SYMBOL vmlinux 0x903e5f6b xfrm_policy_alloc -EXPORT_SYMBOL vmlinux 0x903eec2c __splice_from_pipe -EXPORT_SYMBOL vmlinux 0x905695ab sg_copy_from_buffer -EXPORT_SYMBOL vmlinux 0x90576ec4 vmemdup_user -EXPORT_SYMBOL vmlinux 0x90579000 phy_find_first -EXPORT_SYMBOL vmlinux 0x905d7ba5 netdev_has_upper_dev_all_rcu -EXPORT_SYMBOL vmlinux 0x9073c475 vm_map_ram -EXPORT_SYMBOL vmlinux 0x907fb479 set_nlink -EXPORT_SYMBOL vmlinux 0x90803e15 make_kprojid -EXPORT_SYMBOL vmlinux 0x908899b9 dev_set_mac_address -EXPORT_SYMBOL vmlinux 0x908e5601 cpu_hwcaps -EXPORT_SYMBOL vmlinux 0x908e9f57 __nd_driver_register -EXPORT_SYMBOL vmlinux 0x909c548f pm860x_reg_read -EXPORT_SYMBOL vmlinux 0x90a1250e key_move -EXPORT_SYMBOL vmlinux 0x90a4b39b gen_pool_first_fit -EXPORT_SYMBOL vmlinux 0x90b626d7 rawv6_mh_filter_register -EXPORT_SYMBOL vmlinux 0x90b630c0 __cpuhp_remove_state -EXPORT_SYMBOL vmlinux 0x90b73526 secure_tcpv6_ts_off -EXPORT_SYMBOL vmlinux 0x90b830db inet_frag_destroy -EXPORT_SYMBOL vmlinux 0x90d4d242 iget_locked -EXPORT_SYMBOL vmlinux 0x90fede05 mipi_dsi_set_maximum_return_packet_size -EXPORT_SYMBOL vmlinux 0x912ac9a0 filemap_page_mkwrite -EXPORT_SYMBOL vmlinux 0x912f520f mpage_writepage -EXPORT_SYMBOL vmlinux 0x9134af1d kernel_bind -EXPORT_SYMBOL vmlinux 0x914a12e6 vlan_vid_add -EXPORT_SYMBOL vmlinux 0x9166fada strncpy -EXPORT_SYMBOL vmlinux 0x91687f56 neigh_ifdown -EXPORT_SYMBOL vmlinux 0x9171103b __neigh_for_each_release -EXPORT_SYMBOL vmlinux 0x9181997f __ethtool_get_link_ksettings -EXPORT_SYMBOL vmlinux 0x9189e15c sg_miter_next -EXPORT_SYMBOL vmlinux 0x919c58f3 __clzsi2 -EXPORT_SYMBOL vmlinux 0x91a488ac __netdev_alloc_frag_align -EXPORT_SYMBOL vmlinux 0x91a579ac __serio_register_port -EXPORT_SYMBOL vmlinux 0x91a7b1da qdisc_class_hash_remove -EXPORT_SYMBOL vmlinux 0x91afcc47 console_stop -EXPORT_SYMBOL vmlinux 0x91b991be pcie_set_mps -EXPORT_SYMBOL vmlinux 0x91c0980e icst_hz -EXPORT_SYMBOL vmlinux 0x91dcddae _dev_emerg -EXPORT_SYMBOL vmlinux 0x91deb135 request_key_tag -EXPORT_SYMBOL vmlinux 0x91ef28a4 phy_attach_direct -EXPORT_SYMBOL vmlinux 0x91f56a16 __check_sticky -EXPORT_SYMBOL vmlinux 0x91f68ea1 __hw_addr_sync -EXPORT_SYMBOL vmlinux 0x91f7a694 pci_setup_cardbus -EXPORT_SYMBOL vmlinux 0x91ffee0e genphy_write_mmd_unsupported -EXPORT_SYMBOL vmlinux 0x9200d377 seg6_hmac_net_exit -EXPORT_SYMBOL vmlinux 0x9201ef73 dev_get_flags -EXPORT_SYMBOL vmlinux 0x9204f02c scsi_device_resume -EXPORT_SYMBOL vmlinux 0x92235a00 pcim_iounmap_regions -EXPORT_SYMBOL vmlinux 0x922f45a6 __bitmap_clear -EXPORT_SYMBOL vmlinux 0x923b1276 dmaengine_get -EXPORT_SYMBOL vmlinux 0x924cbd53 cred_fscmp -EXPORT_SYMBOL vmlinux 0x92561bdc __cleancache_put_page -EXPORT_SYMBOL vmlinux 0x9258c776 hdmi_vendor_infoframe_pack_only -EXPORT_SYMBOL vmlinux 0x926e101d open_with_fake_path -EXPORT_SYMBOL vmlinux 0x92774cf8 __kfence_pool -EXPORT_SYMBOL vmlinux 0x9291cd3b memdup_user -EXPORT_SYMBOL vmlinux 0x92997ed8 _printk -EXPORT_SYMBOL vmlinux 0x92a4c7d3 blk_rq_map_user -EXPORT_SYMBOL vmlinux 0x92b99a33 acpi_put_table -EXPORT_SYMBOL vmlinux 0x92b9b180 slash_name -EXPORT_SYMBOL vmlinux 0x92c64aa6 eth_mac_addr -EXPORT_SYMBOL vmlinux 0x92ce116a generic_delete_inode -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 0x93022ba6 __scsi_format_command -EXPORT_SYMBOL vmlinux 0x9305f8e6 cpufreq_get -EXPORT_SYMBOL vmlinux 0x930d87b5 neigh_proc_dointvec -EXPORT_SYMBOL vmlinux 0x93156b97 kthread_bind -EXPORT_SYMBOL vmlinux 0x9321ee7b pcie_get_mps -EXPORT_SYMBOL vmlinux 0x9347031a __tcp_md5_do_lookup -EXPORT_SYMBOL vmlinux 0x9350809a __lock_buffer -EXPORT_SYMBOL vmlinux 0x935ba4f7 fs_param_is_fd -EXPORT_SYMBOL vmlinux 0x936611e1 neigh_table_clear -EXPORT_SYMBOL vmlinux 0x936db09a seg6_hmac_info_del -EXPORT_SYMBOL vmlinux 0x937733e3 qid_valid -EXPORT_SYMBOL vmlinux 0x9389be84 twl6040_power -EXPORT_SYMBOL vmlinux 0x93a53f5e phy_drivers_unregister -EXPORT_SYMBOL vmlinux 0x93a6e0b2 io_schedule -EXPORT_SYMBOL vmlinux 0x93b3fc74 register_dcbevent_notifier -EXPORT_SYMBOL vmlinux 0x93c444c3 sock_set_mark -EXPORT_SYMBOL vmlinux 0x93d6dd8c complete_all -EXPORT_SYMBOL vmlinux 0x93df5ac1 tcp_v4_syn_recv_sock -EXPORT_SYMBOL vmlinux 0x93e5004d netlink_ack -EXPORT_SYMBOL vmlinux 0x93e52d62 pnp_unregister_driver -EXPORT_SYMBOL vmlinux 0x93f30de3 kset_register -EXPORT_SYMBOL vmlinux 0x9404e099 dev_get_port_parent_id -EXPORT_SYMBOL vmlinux 0x9406266a tcp_initialize_rcv_mss -EXPORT_SYMBOL vmlinux 0x940d5764 tcp_v4_destroy_sock -EXPORT_SYMBOL vmlinux 0x94208b0d mmc_cqe_start_req -EXPORT_SYMBOL vmlinux 0x9428f816 dim_turn -EXPORT_SYMBOL vmlinux 0x9430a99f stream_open -EXPORT_SYMBOL vmlinux 0x9438a951 migrate_vma_finalize -EXPORT_SYMBOL vmlinux 0x943a2637 trace_event_printf -EXPORT_SYMBOL vmlinux 0x943f7566 inc_node_page_state -EXPORT_SYMBOL vmlinux 0x944375db _totalram_pages -EXPORT_SYMBOL vmlinux 0x944a564d is_console_locked -EXPORT_SYMBOL vmlinux 0x944c270b security_sctp_bind_connect -EXPORT_SYMBOL vmlinux 0x945f624b mmc_cqe_request_done -EXPORT_SYMBOL vmlinux 0x9469a2b4 fiemap_prep -EXPORT_SYMBOL vmlinux 0x9477007b xfrm_state_check_expire -EXPORT_SYMBOL vmlinux 0x9495739e phy_driver_register -EXPORT_SYMBOL vmlinux 0x94961283 vunmap -EXPORT_SYMBOL vmlinux 0x94a6e7bd bh_submit_read -EXPORT_SYMBOL vmlinux 0x94a9b49c radix_tree_next_chunk -EXPORT_SYMBOL vmlinux 0x94bf03ca utf8_to_utf32 -EXPORT_SYMBOL vmlinux 0x94c85da2 mark_page_accessed -EXPORT_SYMBOL vmlinux 0x94db532b of_cpu_node_to_id -EXPORT_SYMBOL vmlinux 0x94deeac8 dquot_scan_active -EXPORT_SYMBOL vmlinux 0x94e50ad4 call_fib_notifier -EXPORT_SYMBOL vmlinux 0x94fc8d93 smp_call_function_many -EXPORT_SYMBOL vmlinux 0x95028a97 sock_no_mmap -EXPORT_SYMBOL vmlinux 0x95054be9 pcim_iomap -EXPORT_SYMBOL vmlinux 0x9507c90f copy_fsxattr_to_user -EXPORT_SYMBOL vmlinux 0x9524635e of_get_child_by_name -EXPORT_SYMBOL vmlinux 0x9538445a migrate_vma_pages -EXPORT_SYMBOL vmlinux 0x953adc3f irq_set_chip -EXPORT_SYMBOL vmlinux 0x95403bb5 lookup_one -EXPORT_SYMBOL vmlinux 0x95483467 path_is_under -EXPORT_SYMBOL vmlinux 0x954cef6f init_on_alloc -EXPORT_SYMBOL vmlinux 0x954f099c idr_preload -EXPORT_SYMBOL vmlinux 0x95776193 dm_io -EXPORT_SYMBOL vmlinux 0x9585a131 xfrm_trans_queue_net -EXPORT_SYMBOL vmlinux 0x95928b0e mipi_dsi_dcs_enter_sleep_mode -EXPORT_SYMBOL vmlinux 0x9597b55a netif_carrier_off -EXPORT_SYMBOL vmlinux 0x95babcff tty_unthrottle -EXPORT_SYMBOL vmlinux 0x95eb1073 iov_iter_single_seg_count -EXPORT_SYMBOL vmlinux 0x95f2ca3c of_phy_connect -EXPORT_SYMBOL vmlinux 0x95f32261 crypto_sha256_update -EXPORT_SYMBOL vmlinux 0x960721c0 kgdb_roundup_delay -EXPORT_SYMBOL vmlinux 0x961a3c36 jbd2_submit_inode_data -EXPORT_SYMBOL vmlinux 0x961b4ba0 fman_get_revision -EXPORT_SYMBOL vmlinux 0x9623ed74 i2c_put_adapter -EXPORT_SYMBOL vmlinux 0x962841d9 xfrm_stateonly_find -EXPORT_SYMBOL vmlinux 0x962c563e pci_ep_cfs_remove_epf_group -EXPORT_SYMBOL vmlinux 0x964bf538 nd_device_register -EXPORT_SYMBOL vmlinux 0x964dad7e __traceiter_dma_fence_signaled -EXPORT_SYMBOL vmlinux 0x9651471e pm860x_page_bulk_read -EXPORT_SYMBOL vmlinux 0x96683b50 rtnl_nla_parse_ifinfomsg -EXPORT_SYMBOL vmlinux 0x966a2e9d proc_create_seq_private -EXPORT_SYMBOL vmlinux 0x966d9d5d __qdisc_calculate_pkt_len -EXPORT_SYMBOL vmlinux 0x96848186 scnprintf -EXPORT_SYMBOL vmlinux 0x968854fa mipi_dsi_dcs_set_display_brightness_large -EXPORT_SYMBOL vmlinux 0x9688de8b memstart_addr -EXPORT_SYMBOL vmlinux 0x969bbe3a of_node_name_prefix -EXPORT_SYMBOL vmlinux 0x96ad24dc i2c_register_driver -EXPORT_SYMBOL vmlinux 0x96af2596 genphy_c37_read_status -EXPORT_SYMBOL vmlinux 0x96b29254 strncasecmp -EXPORT_SYMBOL vmlinux 0x96c17136 fb_var_to_videomode -EXPORT_SYMBOL vmlinux 0x96cd2b04 scsi_sense_key_string -EXPORT_SYMBOL vmlinux 0x96e759be tcp_v4_conn_request -EXPORT_SYMBOL vmlinux 0x96fab350 dim_park_on_top -EXPORT_SYMBOL vmlinux 0x96fc0c57 gnet_stats_start_copy -EXPORT_SYMBOL vmlinux 0x970604d4 md_bitmap_cond_end_sync -EXPORT_SYMBOL vmlinux 0x9713af82 mdiobus_free -EXPORT_SYMBOL vmlinux 0x97245168 security_path_mkdir -EXPORT_SYMBOL vmlinux 0x973bc004 vfs_tmpfile -EXPORT_SYMBOL vmlinux 0x973c23a1 igrab -EXPORT_SYMBOL vmlinux 0x973fa82e register_acpi_notifier -EXPORT_SYMBOL vmlinux 0x9746eb89 ZSTD_decompressBegin_usingDict -EXPORT_SYMBOL vmlinux 0x97486fc4 dst_release_immediate -EXPORT_SYMBOL vmlinux 0x977af94c splice_direct_to_actor -EXPORT_SYMBOL vmlinux 0x977c7957 unregister_fib_notifier -EXPORT_SYMBOL vmlinux 0x977d2011 param_set_ulong -EXPORT_SYMBOL vmlinux 0x97860a60 insert_inode_locked -EXPORT_SYMBOL vmlinux 0x97a57333 crc_t10dif_update -EXPORT_SYMBOL vmlinux 0x97adb487 utf8s_to_utf16s -EXPORT_SYMBOL vmlinux 0x97b6764c is_nd_pfn -EXPORT_SYMBOL vmlinux 0x97bc837e tcp_hashinfo -EXPORT_SYMBOL vmlinux 0x97bdfa60 scsi_dev_info_remove_list -EXPORT_SYMBOL vmlinux 0x97c47124 t10_pi_type1_ip -EXPORT_SYMBOL vmlinux 0x97c93eb3 mmc_of_parse -EXPORT_SYMBOL vmlinux 0x97cf4d9c remove_proc_subtree -EXPORT_SYMBOL vmlinux 0x97dfff32 udp_lib_rehash -EXPORT_SYMBOL vmlinux 0x97e04cb4 pldmfw_op_pci_match_record -EXPORT_SYMBOL vmlinux 0x97ed2212 __tracepoint_spi_transfer_start -EXPORT_SYMBOL vmlinux 0x97f4007f xfrm_input_register_afinfo -EXPORT_SYMBOL vmlinux 0x9804a881 __mmap_lock_do_trace_start_locking -EXPORT_SYMBOL vmlinux 0x9817ee98 udp_skb_destructor -EXPORT_SYMBOL vmlinux 0x98285085 rt_spin_lock -EXPORT_SYMBOL vmlinux 0x9829fc11 __kfifo_out_peek_r -EXPORT_SYMBOL vmlinux 0x982bcde4 __cpu_dying_mask -EXPORT_SYMBOL vmlinux 0x982bd7bb tcp_get_cookie_sock -EXPORT_SYMBOL vmlinux 0x9832fd0c mutex_lock_io -EXPORT_SYMBOL vmlinux 0x986a6777 locks_remove_posix -EXPORT_SYMBOL vmlinux 0x9894307c dev_deactivate -EXPORT_SYMBOL vmlinux 0x989bab04 sock_bindtoindex -EXPORT_SYMBOL vmlinux 0x989f679d tcp_getsockopt -EXPORT_SYMBOL vmlinux 0x98b5e227 rt_spin_trylock -EXPORT_SYMBOL vmlinux 0x98c7c8ed xfrm_lookup_route -EXPORT_SYMBOL vmlinux 0x98c89ade security_xfrm_state_alloc -EXPORT_SYMBOL vmlinux 0x98ca2e5e __lock_page -EXPORT_SYMBOL vmlinux 0x98cb5d84 of_mdiobus_child_is_phy -EXPORT_SYMBOL vmlinux 0x98cf60b3 strlen -EXPORT_SYMBOL vmlinux 0x98d06659 __xa_alloc_cyclic -EXPORT_SYMBOL vmlinux 0x98d26eb8 inet_frag_reasm_finish -EXPORT_SYMBOL vmlinux 0x98d32d77 is_nvdimm_bus_locked -EXPORT_SYMBOL vmlinux 0x98e508ef ignore_console_lock_warning -EXPORT_SYMBOL vmlinux 0x98e5aa4b kill_litter_super -EXPORT_SYMBOL vmlinux 0x99078b39 trace_print_flags_seq -EXPORT_SYMBOL vmlinux 0x99094fb2 qcom_scm_is_available -EXPORT_SYMBOL vmlinux 0x99098f1c page_mapping -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 0x995c3801 inet_del_protocol -EXPORT_SYMBOL vmlinux 0x9975dc22 acpi_get_handle -EXPORT_SYMBOL vmlinux 0x998b7abe serio_open -EXPORT_SYMBOL vmlinux 0x998d43c9 fs_param_is_u32 -EXPORT_SYMBOL vmlinux 0x999e8297 vfree -EXPORT_SYMBOL vmlinux 0x99c82169 kthread_create_worker -EXPORT_SYMBOL vmlinux 0x99d404a1 dump_emit -EXPORT_SYMBOL vmlinux 0x99d472b1 net_dim_get_rx_moderation -EXPORT_SYMBOL vmlinux 0x99d94ddf dma_supported -EXPORT_SYMBOL vmlinux 0x99daa9bf try_offline_node -EXPORT_SYMBOL vmlinux 0x99f0563b flow_rule_match_ipv6_addrs -EXPORT_SYMBOL vmlinux 0x99f3d019 kernel_sendmsg_locked -EXPORT_SYMBOL vmlinux 0x99f9638f __napi_alloc_frag_align -EXPORT_SYMBOL vmlinux 0x9a0c3a18 vme_unregister_error_handler -EXPORT_SYMBOL vmlinux 0x9a1dfd65 strpbrk -EXPORT_SYMBOL vmlinux 0x9a1faf17 netdev_lower_state_changed -EXPORT_SYMBOL vmlinux 0x9a4fca8f skb_copy_datagram_iter -EXPORT_SYMBOL vmlinux 0x9a583306 netlbl_bitmap_walk -EXPORT_SYMBOL vmlinux 0x9a65459b of_root -EXPORT_SYMBOL vmlinux 0x9a65bae3 dma_fence_wait_any_timeout -EXPORT_SYMBOL vmlinux 0x9a73b032 ZSTD_initDStream_usingDDict -EXPORT_SYMBOL vmlinux 0x9a8c1615 always_delete_dentry -EXPORT_SYMBOL vmlinux 0x9a8ff3f4 pci_fixup_device -EXPORT_SYMBOL vmlinux 0x9a9c7e12 vfs_get_link -EXPORT_SYMBOL vmlinux 0x9aa71919 refcount_dec_and_lock -EXPORT_SYMBOL vmlinux 0x9aaeefce sysctl_nf_log_all_netns -EXPORT_SYMBOL vmlinux 0x9ac7b0ac security_inode_listsecurity -EXPORT_SYMBOL vmlinux 0x9ace56b8 PageMovable -EXPORT_SYMBOL vmlinux 0x9ad862a7 con_copy_unimap -EXPORT_SYMBOL vmlinux 0x9ae47436 _find_last_bit -EXPORT_SYMBOL vmlinux 0x9af3b0cf mdiobus_unregister_device -EXPORT_SYMBOL vmlinux 0x9af51052 dev_set_promiscuity -EXPORT_SYMBOL vmlinux 0x9af60c60 tcp_sendmsg -EXPORT_SYMBOL vmlinux 0x9af696d0 phy_ethtool_get_eee -EXPORT_SYMBOL vmlinux 0x9b02fbf5 fman_port_bind -EXPORT_SYMBOL vmlinux 0x9b07eb2b rproc_add_subdev -EXPORT_SYMBOL vmlinux 0x9b091d72 mmc_gpio_set_cd_isr -EXPORT_SYMBOL vmlinux 0x9b11dc2a call_usermodehelper_setup -EXPORT_SYMBOL vmlinux 0x9b128a66 qcom_scm_set_remote_state -EXPORT_SYMBOL vmlinux 0x9b141266 d_delete -EXPORT_SYMBOL vmlinux 0x9b1783dd rpmh_write_batch -EXPORT_SYMBOL vmlinux 0x9b187ff3 tcp_sock_set_user_timeout -EXPORT_SYMBOL vmlinux 0x9b1b6630 devm_extcon_unregister_notifier_all -EXPORT_SYMBOL vmlinux 0x9b2560b9 gf128mul_init_4k_bbe -EXPORT_SYMBOL vmlinux 0x9b33e0d7 unregister_dcbevent_notifier -EXPORT_SYMBOL vmlinux 0x9b420478 utf8_strncasecmp -EXPORT_SYMBOL vmlinux 0x9b46d86b __xfrm_state_delete -EXPORT_SYMBOL vmlinux 0x9b496b21 posix_acl_alloc -EXPORT_SYMBOL vmlinux 0x9b5981e8 param_set_long -EXPORT_SYMBOL vmlinux 0x9b60f206 dst_discard_out -EXPORT_SYMBOL vmlinux 0x9b657e78 ll_rw_block -EXPORT_SYMBOL vmlinux 0x9b6c64fb sk_common_release -EXPORT_SYMBOL vmlinux 0x9b6c724e xudma_pktdma_tflow_get_irq -EXPORT_SYMBOL vmlinux 0x9b717609 blk_queue_dma_alignment -EXPORT_SYMBOL vmlinux 0x9b72478f acpi_unload_parent_table -EXPORT_SYMBOL vmlinux 0x9b821258 blk_queue_flag_clear -EXPORT_SYMBOL vmlinux 0x9b8a2069 generic_file_llseek -EXPORT_SYMBOL vmlinux 0x9ba6f6a6 get_tree_nodev -EXPORT_SYMBOL vmlinux 0x9bace874 dquot_get_next_dqblk -EXPORT_SYMBOL vmlinux 0x9bc06022 dquot_quota_sync -EXPORT_SYMBOL vmlinux 0x9be2c8c7 no_seek_end_llseek_size -EXPORT_SYMBOL vmlinux 0x9bf80215 xa_load -EXPORT_SYMBOL vmlinux 0x9c0a7b25 __do_once_done -EXPORT_SYMBOL vmlinux 0x9c1e5bf5 queued_spin_lock_slowpath -EXPORT_SYMBOL vmlinux 0x9c23720d __module_put_and_exit -EXPORT_SYMBOL vmlinux 0x9c29a8c0 cdrom_number_of_slots -EXPORT_SYMBOL vmlinux 0x9c38870a simple_dir_inode_operations -EXPORT_SYMBOL vmlinux 0x9c4ba883 kernel_read -EXPORT_SYMBOL vmlinux 0x9c5a2ada ucc_fast_dump_regs -EXPORT_SYMBOL vmlinux 0x9c5d5b94 crc8 -EXPORT_SYMBOL vmlinux 0x9c72e22a pci_get_device -EXPORT_SYMBOL vmlinux 0x9c76a508 unregister_md_personality -EXPORT_SYMBOL vmlinux 0x9c86b9ab fileattr_fill_flags -EXPORT_SYMBOL vmlinux 0x9c8d75d0 xfrm_register_type -EXPORT_SYMBOL vmlinux 0x9c952433 load_nls_default -EXPORT_SYMBOL vmlinux 0x9c986c43 sb_set_blocksize -EXPORT_SYMBOL vmlinux 0x9c9cce3c blk_mq_kick_requeue_list -EXPORT_SYMBOL vmlinux 0x9cab34a6 rfkill_set_led_trigger_name -EXPORT_SYMBOL vmlinux 0x9cb389ba md_bitmap_free -EXPORT_SYMBOL vmlinux 0x9cbbdf07 iov_iter_gap_alignment -EXPORT_SYMBOL vmlinux 0x9cbfb886 param_ops_ulong -EXPORT_SYMBOL vmlinux 0x9ccf7171 vme_dma_pci_attribute -EXPORT_SYMBOL vmlinux 0x9cdfb3f7 sysctl_fb_tunnels_only_for_init_net -EXPORT_SYMBOL vmlinux 0x9ce7d7d9 mutex_lock_interruptible -EXPORT_SYMBOL vmlinux 0x9cef7444 kernel_param_lock -EXPORT_SYMBOL vmlinux 0x9cf2d545 pci_find_bus -EXPORT_SYMBOL vmlinux 0x9cf82073 param_ops_int -EXPORT_SYMBOL vmlinux 0x9cfc1df2 mr_dump -EXPORT_SYMBOL vmlinux 0x9d01f149 phy_suspend -EXPORT_SYMBOL vmlinux 0x9d0d6206 unregister_netdevice_notifier -EXPORT_SYMBOL vmlinux 0x9d1a5e3a __memcpy -EXPORT_SYMBOL vmlinux 0x9d1ac3fe mipi_dsi_dcs_write_buffer -EXPORT_SYMBOL vmlinux 0x9d2629b9 softnet_data -EXPORT_SYMBOL vmlinux 0x9d282a62 scsi_eh_prep_cmnd -EXPORT_SYMBOL vmlinux 0x9d2ab8ac __tasklet_schedule -EXPORT_SYMBOL vmlinux 0x9d2e7707 unregister_sysrq_key -EXPORT_SYMBOL vmlinux 0x9d372764 configfs_depend_item_unlocked -EXPORT_SYMBOL vmlinux 0x9d396e4d max8998_bulk_read -EXPORT_SYMBOL vmlinux 0x9d4b68df inetpeer_invalidate_tree -EXPORT_SYMBOL vmlinux 0x9d61e994 ucs2_strncmp -EXPORT_SYMBOL vmlinux 0x9d89ff17 pci_request_region -EXPORT_SYMBOL vmlinux 0x9d8c57bd phy_detach -EXPORT_SYMBOL vmlinux 0x9d8e78f4 sk_page_frag_refill -EXPORT_SYMBOL vmlinux 0x9d97ab2c audit_log_object_context -EXPORT_SYMBOL vmlinux 0x9d9887ed dma_sync_wait -EXPORT_SYMBOL vmlinux 0x9da53056 xfrm_replay_seqhi -EXPORT_SYMBOL vmlinux 0x9dac7468 md_reap_sync_thread -EXPORT_SYMBOL vmlinux 0x9daf0be8 nf_setsockopt -EXPORT_SYMBOL vmlinux 0x9db188e3 skb_queue_purge -EXPORT_SYMBOL vmlinux 0x9df0582b input_mt_get_slot_by_key -EXPORT_SYMBOL vmlinux 0x9df21d0e qman_affine_channel -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 0x9e289cbc dma_pool_create -EXPORT_SYMBOL vmlinux 0x9e336599 xfrm_spd_getinfo -EXPORT_SYMBOL vmlinux 0x9e3a147f __sk_queue_drop_skb -EXPORT_SYMBOL vmlinux 0x9e3bcdc4 pm860x_page_reg_write -EXPORT_SYMBOL vmlinux 0x9e40a8d4 key_invalidate -EXPORT_SYMBOL vmlinux 0x9e4faeef dm_io_client_destroy -EXPORT_SYMBOL vmlinux 0x9e5c7cfe skb_prepare_seq_read -EXPORT_SYMBOL vmlinux 0x9e5e750d node_to_cpumask_map -EXPORT_SYMBOL vmlinux 0x9e61bb05 set_freezable -EXPORT_SYMBOL vmlinux 0x9e7d6bd0 __udelay -EXPORT_SYMBOL vmlinux 0x9e8168e1 put_cmsg_scm_timestamping -EXPORT_SYMBOL vmlinux 0x9e9eab95 devcgroup_check_permission -EXPORT_SYMBOL vmlinux 0x9e9fdd9d memunmap -EXPORT_SYMBOL vmlinux 0x9eacf8a5 kstrndup -EXPORT_SYMBOL vmlinux 0x9eb0498d dev_pick_tx_zero -EXPORT_SYMBOL vmlinux 0x9eb187fa xudma_pktdma_rflow_get_irq -EXPORT_SYMBOL vmlinux 0x9eb97e59 vfs_unlink -EXPORT_SYMBOL vmlinux 0x9eb99614 mipi_dsi_dcs_set_tear_off -EXPORT_SYMBOL vmlinux 0x9ebd4684 sock_gettstamp -EXPORT_SYMBOL vmlinux 0x9ec0e639 twl6030_interrupt_unmask -EXPORT_SYMBOL vmlinux 0x9ec6ca96 ktime_get_real_ts64 -EXPORT_SYMBOL vmlinux 0x9ecc5680 udp_set_csum -EXPORT_SYMBOL vmlinux 0x9ed7c847 brcmstb_get_family_id -EXPORT_SYMBOL vmlinux 0x9ed978de vme_lm_set -EXPORT_SYMBOL vmlinux 0x9ee1ddae mr_mfc_find_any_parent -EXPORT_SYMBOL vmlinux 0x9ee2bf66 sock_no_linger -EXPORT_SYMBOL vmlinux 0x9ef4475e mmc_run_bkops -EXPORT_SYMBOL vmlinux 0x9f2d1024 __do_once_slow_done -EXPORT_SYMBOL vmlinux 0x9f2f0472 skb_dequeue -EXPORT_SYMBOL vmlinux 0x9f3f8616 sock_no_socketpair -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 0x9f63c718 qdisc_reset -EXPORT_SYMBOL vmlinux 0x9f6bec70 blk_put_queue -EXPORT_SYMBOL vmlinux 0x9f6e8646 netdev_lower_get_next -EXPORT_SYMBOL vmlinux 0x9f708bf0 pcie_bandwidth_available -EXPORT_SYMBOL vmlinux 0x9f7d7dbb logic_outsw -EXPORT_SYMBOL vmlinux 0x9f7e7f1b vfs_parse_fs_param -EXPORT_SYMBOL vmlinux 0x9f826a31 alloc_mdio_bitbang -EXPORT_SYMBOL vmlinux 0x9f8e8289 neigh_app_ns -EXPORT_SYMBOL vmlinux 0x9f95ed59 of_get_cpu_node -EXPORT_SYMBOL vmlinux 0x9f984513 strrchr -EXPORT_SYMBOL vmlinux 0x9f9d4fd9 end_buffer_read_sync -EXPORT_SYMBOL vmlinux 0x9fa4b07a phy_disconnect -EXPORT_SYMBOL vmlinux 0x9fa7184a cancel_delayed_work_sync -EXPORT_SYMBOL vmlinux 0x9faa9cf9 md_register_thread -EXPORT_SYMBOL vmlinux 0x9fafb579 proc_mkdir -EXPORT_SYMBOL vmlinux 0x9fbe1696 pci_msix_vec_count -EXPORT_SYMBOL vmlinux 0x9fdecc31 unregister_netdevice_many -EXPORT_SYMBOL vmlinux 0x9fe1f11f d_prune_aliases -EXPORT_SYMBOL vmlinux 0x9feed7ce timer_reduce -EXPORT_SYMBOL vmlinux 0x9ff086ef vmf_insert_pfn -EXPORT_SYMBOL vmlinux 0x9ffa3a75 netdev_max_backlog -EXPORT_SYMBOL vmlinux 0x9ffcc628 xfrm_state_unregister_afinfo -EXPORT_SYMBOL vmlinux 0xa0062676 radix_tree_gang_lookup_tag_slot -EXPORT_SYMBOL vmlinux 0xa00aca2a dql_completed -EXPORT_SYMBOL vmlinux 0xa01d3df6 font_vga_8x16 -EXPORT_SYMBOL vmlinux 0xa0263242 sock_create -EXPORT_SYMBOL vmlinux 0xa02bff7e __cleancache_init_shared_fs -EXPORT_SYMBOL vmlinux 0xa02ea6d6 ipv6_dev_mc_inc -EXPORT_SYMBOL vmlinux 0xa030d1e3 d_set_fallthru -EXPORT_SYMBOL vmlinux 0xa033d747 next_arg -EXPORT_SYMBOL vmlinux 0xa040718e pcim_pin_device -EXPORT_SYMBOL vmlinux 0xa0436e98 in6addr_linklocal_allnodes -EXPORT_SYMBOL vmlinux 0xa04697e8 key_task_permission -EXPORT_SYMBOL vmlinux 0xa0475740 textsearch_unregister -EXPORT_SYMBOL vmlinux 0xa04e33da qcom_scm_lmh_dcvsh -EXPORT_SYMBOL vmlinux 0xa04f11c0 nd_btt_probe -EXPORT_SYMBOL vmlinux 0xa0539c02 configfs_unregister_subsystem -EXPORT_SYMBOL vmlinux 0xa057df8f twl_set_regcache_bypass -EXPORT_SYMBOL vmlinux 0xa05b6be2 psched_ppscfg_precompute -EXPORT_SYMBOL vmlinux 0xa0616de0 dma_set_coherent_mask -EXPORT_SYMBOL vmlinux 0xa0757145 of_graph_is_present -EXPORT_SYMBOL vmlinux 0xa076fdef pnp_possible_config -EXPORT_SYMBOL vmlinux 0xa07a37f0 memchr -EXPORT_SYMBOL vmlinux 0xa07d1b3c tasklet_setup -EXPORT_SYMBOL vmlinux 0xa0827d89 devfreq_monitor_stop -EXPORT_SYMBOL vmlinux 0xa084749a __bitmap_or -EXPORT_SYMBOL vmlinux 0xa0940174 __inet_hash -EXPORT_SYMBOL vmlinux 0xa095e02e generic_check_addressable -EXPORT_SYMBOL vmlinux 0xa096a126 setup_new_exec -EXPORT_SYMBOL vmlinux 0xa0984237 complete_request_key -EXPORT_SYMBOL vmlinux 0xa0989e8b mfd_cell_disable -EXPORT_SYMBOL vmlinux 0xa099df13 call_netdevice_notifiers -EXPORT_SYMBOL vmlinux 0xa09f9a38 tty_driver_flush_buffer -EXPORT_SYMBOL vmlinux 0xa0a05da6 get_tree_single_reconf -EXPORT_SYMBOL vmlinux 0xa0a3055f jbd2_journal_load -EXPORT_SYMBOL vmlinux 0xa0ae1e73 siphash_3u64 -EXPORT_SYMBOL vmlinux 0xa0b04675 vmalloc_32 -EXPORT_SYMBOL vmlinux 0xa0bf989f single_open -EXPORT_SYMBOL vmlinux 0xa0c4c582 mmc_gpio_get_ro -EXPORT_SYMBOL vmlinux 0xa0d87339 qdisc_get_rtab -EXPORT_SYMBOL vmlinux 0xa0dad88e netdev_adjacent_get_private -EXPORT_SYMBOL vmlinux 0xa0dd5362 seq_read -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 0xa0f28629 fget -EXPORT_SYMBOL vmlinux 0xa0fbac79 wake_up_bit -EXPORT_SYMBOL vmlinux 0xa108eb4d sysctl_optmem_max -EXPORT_SYMBOL vmlinux 0xa11326e9 ppp_input -EXPORT_SYMBOL vmlinux 0xa14680bd write_dirty_buffer -EXPORT_SYMBOL vmlinux 0xa1a288e3 csum_and_copy_from_iter -EXPORT_SYMBOL vmlinux 0xa1ade86c ip_sock_set_freebind -EXPORT_SYMBOL vmlinux 0xa1c0bcbb dma_fence_init -EXPORT_SYMBOL vmlinux 0xa1e1c74a tcp_seq_next -EXPORT_SYMBOL vmlinux 0xa1f64d6d unload_nls -EXPORT_SYMBOL vmlinux 0xa2035ac6 qcom_scm_set_warm_boot_addr -EXPORT_SYMBOL vmlinux 0xa2060911 inet_current_timestamp -EXPORT_SYMBOL vmlinux 0xa20f9944 clk_add_alias -EXPORT_SYMBOL vmlinux 0xa22daa0f ipv6_find_hdr -EXPORT_SYMBOL vmlinux 0xa2326c49 acpi_remove_table_handler -EXPORT_SYMBOL vmlinux 0xa23f4339 clean_bdev_aliases -EXPORT_SYMBOL vmlinux 0xa23ffc04 groups_sort -EXPORT_SYMBOL vmlinux 0xa240d438 finalize_exec -EXPORT_SYMBOL vmlinux 0xa249365b dma_fence_get_stub -EXPORT_SYMBOL vmlinux 0xa24f23d8 __request_module -EXPORT_SYMBOL vmlinux 0xa25b90ab utf8byte -EXPORT_SYMBOL vmlinux 0xa263892b fscrypt_fname_free_buffer -EXPORT_SYMBOL vmlinux 0xa2660e90 __tracepoint_dma_fence_signaled -EXPORT_SYMBOL vmlinux 0xa288e80a setattr_should_drop_suidgid -EXPORT_SYMBOL vmlinux 0xa28cfcc0 gen_estimator_active -EXPORT_SYMBOL vmlinux 0xa2b9ca51 __traceiter_dma_fence_emit -EXPORT_SYMBOL vmlinux 0xa2c2f0c7 __cleancache_invalidate_fs -EXPORT_SYMBOL vmlinux 0xa2c34bc6 _copy_from_iter -EXPORT_SYMBOL vmlinux 0xa2cf3649 qman_fq_fqid -EXPORT_SYMBOL vmlinux 0xa2d1feac con_set_default_unimap -EXPORT_SYMBOL vmlinux 0xa2d7ec8d __SCK__tp_func_kmem_cache_free -EXPORT_SYMBOL vmlinux 0xa2d844e6 kmem_cache_free -EXPORT_SYMBOL vmlinux 0xa2dea910 param_ops_ullong -EXPORT_SYMBOL vmlinux 0xa2e9d2bc sock_create_kern -EXPORT_SYMBOL vmlinux 0xa303e9c8 tty_wait_until_sent -EXPORT_SYMBOL vmlinux 0xa3089915 dquot_set_dqinfo -EXPORT_SYMBOL vmlinux 0xa32f0d0f param_ops_bool -EXPORT_SYMBOL vmlinux 0xa333383b netlink_rcv_skb -EXPORT_SYMBOL vmlinux 0xa339e6e5 on_each_cpu_cond_mask -EXPORT_SYMBOL vmlinux 0xa3427483 of_get_compatible_child -EXPORT_SYMBOL vmlinux 0xa349bb63 inet_csk_accept -EXPORT_SYMBOL vmlinux 0xa3522df5 qman_query_fq_np -EXPORT_SYMBOL vmlinux 0xa35770be fman_reset_mac -EXPORT_SYMBOL vmlinux 0xa364ca31 mdiobus_alloc_size -EXPORT_SYMBOL vmlinux 0xa371056a fman_set_mac_max_frame -EXPORT_SYMBOL vmlinux 0xa37f0923 dev_disable_lro -EXPORT_SYMBOL vmlinux 0xa398e05d block_is_partially_uptodate -EXPORT_SYMBOL vmlinux 0xa3a3f229 cpumask_next_and -EXPORT_SYMBOL vmlinux 0xa3b3e537 phy_set_asym_pause -EXPORT_SYMBOL vmlinux 0xa3ba60c9 xa_extract -EXPORT_SYMBOL vmlinux 0xa3be8342 __ubsan_handle_type_mismatch -EXPORT_SYMBOL vmlinux 0xa3c78659 clear_bdi_congested -EXPORT_SYMBOL vmlinux 0xa3cefaa0 blake2s_update -EXPORT_SYMBOL vmlinux 0xa3df75b1 flow_rule_match_tcp -EXPORT_SYMBOL vmlinux 0xa3e9ec4b nla_reserve_64bit -EXPORT_SYMBOL vmlinux 0xa3ec5bd0 path_is_mountpoint -EXPORT_SYMBOL vmlinux 0xa3fb735a blk_set_default_limits -EXPORT_SYMBOL vmlinux 0xa3fea172 sha224_final -EXPORT_SYMBOL vmlinux 0xa406a071 nd_device_notify -EXPORT_SYMBOL vmlinux 0xa40ff01b acpi_dbg_layer -EXPORT_SYMBOL vmlinux 0xa41e555b netlink_broadcast -EXPORT_SYMBOL vmlinux 0xa427b479 pcie_capability_read_word -EXPORT_SYMBOL vmlinux 0xa42991dc d_alloc_anon -EXPORT_SYMBOL vmlinux 0xa42ef28b phy_error -EXPORT_SYMBOL vmlinux 0xa448c653 qcom_scm_ice_set_key -EXPORT_SYMBOL vmlinux 0xa44bd430 gro_cells_receive -EXPORT_SYMBOL vmlinux 0xa44d516c blkdev_get_by_dev -EXPORT_SYMBOL vmlinux 0xa45b15c6 xfrm_policy_flush -EXPORT_SYMBOL vmlinux 0xa45cee53 cookie_ecn_ok -EXPORT_SYMBOL vmlinux 0xa462ed53 simple_link -EXPORT_SYMBOL vmlinux 0xa466bc02 dm_table_event -EXPORT_SYMBOL vmlinux 0xa47e9a28 config_group_find_item -EXPORT_SYMBOL vmlinux 0xa48eb398 fddi_type_trans -EXPORT_SYMBOL vmlinux 0xa48efb23 ip_setsockopt -EXPORT_SYMBOL vmlinux 0xa491a3d7 netdev_warn -EXPORT_SYMBOL vmlinux 0xa4b36234 tegra_dfll_register -EXPORT_SYMBOL vmlinux 0xa4b9c6c2 netdev_notify_peers -EXPORT_SYMBOL vmlinux 0xa4de9f07 mount_nodev -EXPORT_SYMBOL vmlinux 0xa4f203be pci_iounmap -EXPORT_SYMBOL vmlinux 0xa4fca045 qcom_scm_ocmem_lock -EXPORT_SYMBOL vmlinux 0xa50a3da7 _find_next_bit -EXPORT_SYMBOL vmlinux 0xa510c5b4 processors -EXPORT_SYMBOL vmlinux 0xa521f16a jbd2_journal_abort -EXPORT_SYMBOL vmlinux 0xa52670f1 tcf_em_tree_dump -EXPORT_SYMBOL vmlinux 0xa52bedf6 xenbus_dev_request_and_reply -EXPORT_SYMBOL vmlinux 0xa52ff0dc __sk_mem_raise_allocated -EXPORT_SYMBOL vmlinux 0xa545c7bb proc_symlink -EXPORT_SYMBOL vmlinux 0xa54d6c04 simple_nosetlease -EXPORT_SYMBOL vmlinux 0xa5526619 rb_insert_color -EXPORT_SYMBOL vmlinux 0xa55f63fd pci_bus_find_capability -EXPORT_SYMBOL vmlinux 0xa5676d7e tty_driver_kref_put -EXPORT_SYMBOL vmlinux 0xa59fb543 __mmc_claim_host -EXPORT_SYMBOL vmlinux 0xa5a45ae5 rproc_set_firmware -EXPORT_SYMBOL vmlinux 0xa5a87cfe scsi_free_host_dev -EXPORT_SYMBOL vmlinux 0xa5ac3e33 ZSTD_DCtxWorkspaceBound -EXPORT_SYMBOL vmlinux 0xa5ac5243 pcie_print_link_status -EXPORT_SYMBOL vmlinux 0xa5b5876c security_inode_setsecctx -EXPORT_SYMBOL vmlinux 0xa5b92215 devm_devfreq_add_device -EXPORT_SYMBOL vmlinux 0xa5c389a7 __mark_inode_dirty -EXPORT_SYMBOL vmlinux 0xa5c71add __scm_send -EXPORT_SYMBOL vmlinux 0xa5d47d4a rtnl_configure_link -EXPORT_SYMBOL vmlinux 0xa5dab440 path_put -EXPORT_SYMBOL vmlinux 0xa5dabaca nf_log_set -EXPORT_SYMBOL vmlinux 0xa5f7cf37 __cpu_possible_mask -EXPORT_SYMBOL vmlinux 0xa60060ab netdev_sk_get_lowest_dev -EXPORT_SYMBOL vmlinux 0xa606d329 init_task -EXPORT_SYMBOL vmlinux 0xa6107cc9 pci_choose_state -EXPORT_SYMBOL vmlinux 0xa612d083 regset_get_alloc -EXPORT_SYMBOL vmlinux 0xa617fd3d blkdev_compat_ptr_ioctl -EXPORT_SYMBOL vmlinux 0xa618a0c8 dma_set_mask -EXPORT_SYMBOL vmlinux 0xa61b7ebb tcp_sync_mss -EXPORT_SYMBOL vmlinux 0xa61ced89 qdisc_put_rtab -EXPORT_SYMBOL vmlinux 0xa620944b kernel_sendpage_locked -EXPORT_SYMBOL vmlinux 0xa6257a2f complete -EXPORT_SYMBOL vmlinux 0xa629f13d jbd2_journal_dirty_metadata -EXPORT_SYMBOL vmlinux 0xa648e561 __ubsan_handle_shift_out_of_bounds -EXPORT_SYMBOL vmlinux 0xa65f27c9 free_buffer_head -EXPORT_SYMBOL vmlinux 0xa6600244 ida_free -EXPORT_SYMBOL vmlinux 0xa660415e __ip_dev_find -EXPORT_SYMBOL vmlinux 0xa671e55b netdev_name_node_alt_create -EXPORT_SYMBOL vmlinux 0xa681fe88 generate_random_uuid -EXPORT_SYMBOL vmlinux 0xa686e64f tcf_exts_num_actions -EXPORT_SYMBOL vmlinux 0xa69fc419 jbd2_trans_will_send_data_barrier -EXPORT_SYMBOL vmlinux 0xa6a0fd65 sk_free -EXPORT_SYMBOL vmlinux 0xa6b5af87 acpi_get_hp_hw_control_from_firmware -EXPORT_SYMBOL vmlinux 0xa6bec27e __starget_for_each_device -EXPORT_SYMBOL vmlinux 0xa6c01ae6 pci_release_selected_regions -EXPORT_SYMBOL vmlinux 0xa6d6bcdd task_work_add -EXPORT_SYMBOL vmlinux 0xa6ece71e truncate_inode_pages_final -EXPORT_SYMBOL vmlinux 0xa6ed1a21 mempool_init -EXPORT_SYMBOL vmlinux 0xa6f7b223 remap_pfn_range -EXPORT_SYMBOL vmlinux 0xa703264e prepare_to_wait -EXPORT_SYMBOL vmlinux 0xa708d5a6 dev_mc_add_excl -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 0xa71e355c __init_waitqueue_head -EXPORT_SYMBOL vmlinux 0xa7282b81 rt6_lookup -EXPORT_SYMBOL vmlinux 0xa735bbde is_subdir -EXPORT_SYMBOL vmlinux 0xa7424567 tcf_em_register -EXPORT_SYMBOL vmlinux 0xa7443fa3 phy_ethtool_get_sset_count -EXPORT_SYMBOL vmlinux 0xa74c9877 refcount_dec_and_rtnl_lock -EXPORT_SYMBOL vmlinux 0xa7506af3 neigh_sysctl_register -EXPORT_SYMBOL vmlinux 0xa760153c __set_page_dirty_nobuffers -EXPORT_SYMBOL vmlinux 0xa7674e3b kernel_param_unlock -EXPORT_SYMBOL vmlinux 0xa76fb18b sg_alloc_table_from_pages_segment -EXPORT_SYMBOL vmlinux 0xa7716d15 phy_device_free -EXPORT_SYMBOL vmlinux 0xa776402c tcf_action_exec -EXPORT_SYMBOL vmlinux 0xa77bfd29 register_inet6addr_validator_notifier -EXPORT_SYMBOL vmlinux 0xa7a1447f pps_unregister_source -EXPORT_SYMBOL vmlinux 0xa7aaa57b filemap_fdatawrite -EXPORT_SYMBOL vmlinux 0xa7bda699 revert_creds -EXPORT_SYMBOL vmlinux 0xa7c3b9d0 nvdimm_namespace_locked -EXPORT_SYMBOL vmlinux 0xa7c643a6 sched_autogroup_create_attach -EXPORT_SYMBOL vmlinux 0xa7cb892e phy_register_fixup_for_uid -EXPORT_SYMBOL vmlinux 0xa7d135ac tcf_qevent_init -EXPORT_SYMBOL vmlinux 0xa7de79bc blk_mq_alloc_tag_set -EXPORT_SYMBOL vmlinux 0xa7e6c661 input_release_device -EXPORT_SYMBOL vmlinux 0xa7eedcc4 call_usermodehelper -EXPORT_SYMBOL vmlinux 0xa7fb0d65 netdev_upper_dev_unlink -EXPORT_SYMBOL vmlinux 0xa7ffc818 page_pool_put_page -EXPORT_SYMBOL vmlinux 0xa800be71 xsk_uses_need_wakeup -EXPORT_SYMBOL vmlinux 0xa8106e5e file_fdatawait_range -EXPORT_SYMBOL vmlinux 0xa837177e lookup_one_unlocked -EXPORT_SYMBOL vmlinux 0xa843805a get_unused_fd_flags -EXPORT_SYMBOL vmlinux 0xa84ce9e0 crypto_aes_inv_sbox -EXPORT_SYMBOL vmlinux 0xa84fcb8e freeze_super -EXPORT_SYMBOL vmlinux 0xa85086c6 mdio_device_reset -EXPORT_SYMBOL vmlinux 0xa8558c0c thaw_super -EXPORT_SYMBOL vmlinux 0xa860011e pci_get_domain_bus_and_slot -EXPORT_SYMBOL vmlinux 0xa8694ecd kblockd_schedule_work -EXPORT_SYMBOL vmlinux 0xa88383c2 dump_page -EXPORT_SYMBOL vmlinux 0xa89a1cf1 ipmi_dmi_get_slave_addr -EXPORT_SYMBOL vmlinux 0xa8a8110c kernel_neon_end -EXPORT_SYMBOL vmlinux 0xa8bef3db iget_failed -EXPORT_SYMBOL vmlinux 0xa8c0c1a7 of_find_node_by_name -EXPORT_SYMBOL vmlinux 0xa8caa845 clk_bulk_put_all -EXPORT_SYMBOL vmlinux 0xa8cc3f25 phy_support_sym_pause -EXPORT_SYMBOL vmlinux 0xa8d98b8f pci_add_new_bus -EXPORT_SYMBOL vmlinux 0xa8e6933a qdf2400_e44_present -EXPORT_SYMBOL vmlinux 0xa8f3dd90 blk_rq_map_user_iov -EXPORT_SYMBOL vmlinux 0xa8f6c843 ip_frag_ecn_table -EXPORT_SYMBOL vmlinux 0xa8fc27f8 blk_mq_queue_stopped -EXPORT_SYMBOL vmlinux 0xa9037649 ip_output -EXPORT_SYMBOL vmlinux 0xa90ca0de flush_rcu_work -EXPORT_SYMBOL vmlinux 0xa916b694 strnlen -EXPORT_SYMBOL vmlinux 0xa9217a4b elv_bio_merge_ok -EXPORT_SYMBOL vmlinux 0xa924b4aa __traceiter_kmem_cache_alloc_node -EXPORT_SYMBOL vmlinux 0xa92a4a27 get_tree_single -EXPORT_SYMBOL vmlinux 0xa93aec4a put_cmsg_scm_timestamping64 -EXPORT_SYMBOL vmlinux 0xa94a09bb mem_section -EXPORT_SYMBOL vmlinux 0xa94f2b1e devm_ioremap -EXPORT_SYMBOL vmlinux 0xa95f904e blackhole_netdev -EXPORT_SYMBOL vmlinux 0xa965ca81 reciprocal_value -EXPORT_SYMBOL vmlinux 0xa974f673 kfree_skb_reason -EXPORT_SYMBOL vmlinux 0xa976957d bitmap_remap -EXPORT_SYMBOL vmlinux 0xa990c309 config_item_get -EXPORT_SYMBOL vmlinux 0xa998bb78 __xa_alloc -EXPORT_SYMBOL vmlinux 0xa99b39c2 prandom_bytes -EXPORT_SYMBOL vmlinux 0xa9ad267b sg_miter_start -EXPORT_SYMBOL vmlinux 0xa9c84148 ww_mutex_lock_interruptible -EXPORT_SYMBOL vmlinux 0xa9e43b3f skb_tunnel_check_pmtu -EXPORT_SYMBOL vmlinux 0xa9ed62d2 tegra_fuse_readl -EXPORT_SYMBOL vmlinux 0xa9f7be11 mipi_dsi_detach -EXPORT_SYMBOL vmlinux 0xaa00fdc0 ec_transaction -EXPORT_SYMBOL vmlinux 0xaa0775d5 dev_get_iflink -EXPORT_SYMBOL vmlinux 0xaa0c318b vscnprintf -EXPORT_SYMBOL vmlinux 0xaa133371 __blk_rq_map_sg -EXPORT_SYMBOL vmlinux 0xaa19e4aa _kstrtol -EXPORT_SYMBOL vmlinux 0xaa341905 acpi_bios_exception -EXPORT_SYMBOL vmlinux 0xaa4731d7 udp_sk_rx_dst_set -EXPORT_SYMBOL vmlinux 0xaa6279f3 udp_lib_get_port -EXPORT_SYMBOL vmlinux 0xaa6a9b12 open_exec -EXPORT_SYMBOL vmlinux 0xaa6f23ad rfkill_get_led_trigger_name -EXPORT_SYMBOL vmlinux 0xaa8106bc crc8_populate_msb -EXPORT_SYMBOL vmlinux 0xaa977bcd create_empty_buffers -EXPORT_SYMBOL vmlinux 0xaa9d1233 register_nexthop_notifier -EXPORT_SYMBOL vmlinux 0xaaa4b9bc hchacha_block_generic -EXPORT_SYMBOL vmlinux 0xaaa50fb2 qcom_scm_lmh_profile_change -EXPORT_SYMBOL vmlinux 0xaaaaf9ff posix_test_lock -EXPORT_SYMBOL vmlinux 0xaaad427f tcf_idr_release -EXPORT_SYMBOL vmlinux 0xaab0106f security_inode_getsecctx -EXPORT_SYMBOL vmlinux 0xaab3381b mipi_dsi_driver_unregister -EXPORT_SYMBOL vmlinux 0xaabdca35 devm_register_reboot_notifier -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 0xaada4ad9 tcp_recvmsg -EXPORT_SYMBOL vmlinux 0xaae51a79 file_write_and_wait_range -EXPORT_SYMBOL vmlinux 0xaae8ab0e acpi_bus_power_manageable -EXPORT_SYMBOL vmlinux 0xaafdc258 strcasecmp -EXPORT_SYMBOL vmlinux 0xab06d86d cookie_timestamp_decode -EXPORT_SYMBOL vmlinux 0xab174ffc vfs_parse_fs_param_source -EXPORT_SYMBOL vmlinux 0xab18db5f netdev_features_change -EXPORT_SYMBOL vmlinux 0xab1fd917 scsi_alloc_sgtables -EXPORT_SYMBOL vmlinux 0xab33e51d free_inode_nonrcu -EXPORT_SYMBOL vmlinux 0xab3697e4 irq_poll_init -EXPORT_SYMBOL vmlinux 0xab36e96c radix_tree_replace_slot -EXPORT_SYMBOL vmlinux 0xab3b75ea vme_dma_pattern_attribute -EXPORT_SYMBOL vmlinux 0xab3fc189 of_device_get_match_data -EXPORT_SYMBOL vmlinux 0xab412ef5 __cgroup_bpf_run_filter_sk -EXPORT_SYMBOL vmlinux 0xab519165 __sk_dst_check -EXPORT_SYMBOL vmlinux 0xab5c0642 input_handler_for_each_handle -EXPORT_SYMBOL vmlinux 0xab600241 pps_lookup_dev -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 0xab73d361 ptp_clock_register -EXPORT_SYMBOL vmlinux 0xab781570 fb_get_options -EXPORT_SYMBOL vmlinux 0xab8f5656 mark_buffer_dirty_inode -EXPORT_SYMBOL vmlinux 0xab91da6e pci_bus_add_devices -EXPORT_SYMBOL vmlinux 0xaba1005f setattr_prepare -EXPORT_SYMBOL vmlinux 0xaba1881a devm_nvmem_cell_put -EXPORT_SYMBOL vmlinux 0xabb46e68 try_to_writeback_inodes_sb -EXPORT_SYMBOL vmlinux 0xabb7104a fb_pan_display -EXPORT_SYMBOL vmlinux 0xabc52900 unix_get_socket -EXPORT_SYMBOL vmlinux 0xabcf8cec vfs_dup_fs_context -EXPORT_SYMBOL vmlinux 0xabd1da9a __blk_mq_alloc_disk -EXPORT_SYMBOL vmlinux 0xabe08906 tcf_em_tree_validate -EXPORT_SYMBOL vmlinux 0xabe7bfdb xp_dma_map -EXPORT_SYMBOL vmlinux 0xabe9955f scsi_mode_sense -EXPORT_SYMBOL vmlinux 0xabeb9438 skb_flow_dissector_init -EXPORT_SYMBOL vmlinux 0xabf1399a udp_push_pending_frames -EXPORT_SYMBOL vmlinux 0xabf32f29 utf16s_to_utf8s -EXPORT_SYMBOL vmlinux 0xabf93342 md_bitmap_update_sb -EXPORT_SYMBOL vmlinux 0xac1a55be unregister_reboot_notifier -EXPORT_SYMBOL vmlinux 0xac27f335 get_user_pages_remote -EXPORT_SYMBOL vmlinux 0xac2a22af dev_remove_offload -EXPORT_SYMBOL vmlinux 0xac3201b0 udp_flow_hashrnd -EXPORT_SYMBOL vmlinux 0xac36173b i2c_smbus_read_block_data -EXPORT_SYMBOL vmlinux 0xac37081c finish_no_open -EXPORT_SYMBOL vmlinux 0xac537ac2 percpu_counter_destroy -EXPORT_SYMBOL vmlinux 0xac5fcec0 in4_pton -EXPORT_SYMBOL vmlinux 0xac77005d page_symlink_inode_operations -EXPORT_SYMBOL vmlinux 0xac8d0d23 blk_pm_runtime_init -EXPORT_SYMBOL vmlinux 0xac9073dd generic_pipe_buf_release -EXPORT_SYMBOL vmlinux 0xac93403d scsi_test_unit_ready -EXPORT_SYMBOL vmlinux 0xac96a0f3 __ClearPageMovable -EXPORT_SYMBOL vmlinux 0xacab29b7 seq_hlist_start_percpu -EXPORT_SYMBOL vmlinux 0xacba0c70 page_pool_return_skb_page -EXPORT_SYMBOL vmlinux 0xacc3d28c tcf_exts_dump_stats -EXPORT_SYMBOL vmlinux 0xacc4bc6f page_cache_prev_miss -EXPORT_SYMBOL vmlinux 0xacd56ff5 unix_attach_fds -EXPORT_SYMBOL vmlinux 0xacd81eb3 jbd2_inode_cache -EXPORT_SYMBOL vmlinux 0xacddd806 ptp_get_vclocks_index -EXPORT_SYMBOL vmlinux 0xacf3801c backlight_force_update -EXPORT_SYMBOL vmlinux 0xacf4d843 match_strdup -EXPORT_SYMBOL vmlinux 0xacf649bf audit_log_task_info -EXPORT_SYMBOL vmlinux 0xacfa119d sg_alloc_append_table_from_pages -EXPORT_SYMBOL vmlinux 0xad0413d4 match_hex -EXPORT_SYMBOL vmlinux 0xad0823cd blkdev_issue_write_same -EXPORT_SYMBOL vmlinux 0xad0c53de file_open_root -EXPORT_SYMBOL vmlinux 0xad128dc1 __tracepoint_dma_fence_enable_signal -EXPORT_SYMBOL vmlinux 0xad14d81d __dst_destroy_metrics_generic -EXPORT_SYMBOL vmlinux 0xad1cfdc4 pipe_lock -EXPORT_SYMBOL vmlinux 0xad357133 __traceiter_kmalloc_node -EXPORT_SYMBOL vmlinux 0xad386c64 redirty_page_for_writepage -EXPORT_SYMBOL vmlinux 0xad3ea04c qman_p_irqsource_remove -EXPORT_SYMBOL vmlinux 0xad3f22fc xfrm_trans_queue -EXPORT_SYMBOL vmlinux 0xad682b8f xudma_rchanrt_write -EXPORT_SYMBOL vmlinux 0xad73041f autoremove_wake_function -EXPORT_SYMBOL vmlinux 0xad9b1d4b pcim_iomap_table -EXPORT_SYMBOL vmlinux 0xada30dd1 md_cluster_ops -EXPORT_SYMBOL vmlinux 0xada7d1eb pci_resize_resource -EXPORT_SYMBOL vmlinux 0xadae6df8 blake2s_final -EXPORT_SYMBOL vmlinux 0xadbeed61 mipi_dsi_packet_format_is_long -EXPORT_SYMBOL vmlinux 0xadcba50b ZSTD_findFrameCompressedSize -EXPORT_SYMBOL vmlinux 0xadd139d4 rfs_needed -EXPORT_SYMBOL vmlinux 0xadebd2de pci_bus_set_ops -EXPORT_SYMBOL vmlinux 0xadf985b8 do_wait_intr -EXPORT_SYMBOL vmlinux 0xadfdfcef __bitmap_andnot -EXPORT_SYMBOL vmlinux 0xae04012c __vmalloc -EXPORT_SYMBOL vmlinux 0xae154763 udp_pre_connect -EXPORT_SYMBOL vmlinux 0xae316c11 icmpv6_err_convert -EXPORT_SYMBOL vmlinux 0xae33c403 xudma_navss_psil_unpair -EXPORT_SYMBOL vmlinux 0xae46ff7b ip_mc_leave_group -EXPORT_SYMBOL vmlinux 0xae4955f0 __frontswap_store -EXPORT_SYMBOL vmlinux 0xae52646e flow_rule_match_meta -EXPORT_SYMBOL vmlinux 0xae5a04bb acpi_evaluate_dsm -EXPORT_SYMBOL vmlinux 0xae8a64a4 __netlink_ns_capable -EXPORT_SYMBOL vmlinux 0xaeac049a generate_random_guid -EXPORT_SYMBOL vmlinux 0xaeac196b cdev_del -EXPORT_SYMBOL vmlinux 0xaeadd8f2 put_ipc_ns -EXPORT_SYMBOL vmlinux 0xaeadfa3c __skb_gso_segment -EXPORT_SYMBOL vmlinux 0xaebd12f0 acpi_get_name -EXPORT_SYMBOL vmlinux 0xaecba1e3 pci_scan_root_bus_bridge -EXPORT_SYMBOL vmlinux 0xaecd5a0e register_mii_timestamper -EXPORT_SYMBOL vmlinux 0xaed4a651 idr_replace -EXPORT_SYMBOL vmlinux 0xaef92dbb seq_put_decimal_ull -EXPORT_SYMBOL vmlinux 0xaefad027 d_lookup -EXPORT_SYMBOL vmlinux 0xaf05c50b pci_select_bars -EXPORT_SYMBOL vmlinux 0xaf14eb9e lru_cache_add -EXPORT_SYMBOL vmlinux 0xaf3dd7dc scsi_logging_level -EXPORT_SYMBOL vmlinux 0xaf43f4c5 __wake_up -EXPORT_SYMBOL vmlinux 0xaf4689ec begin_new_exec -EXPORT_SYMBOL vmlinux 0xaf4de10d is_nd_btt -EXPORT_SYMBOL vmlinux 0xaf56600a arm64_use_ng_mappings -EXPORT_SYMBOL vmlinux 0xaf57ef2b __of_mdiobus_register -EXPORT_SYMBOL vmlinux 0xaf58ed15 skb_pull -EXPORT_SYMBOL vmlinux 0xaf5e8d91 mmc_set_blocklen -EXPORT_SYMBOL vmlinux 0xaf6d05a6 mdiobus_read -EXPORT_SYMBOL vmlinux 0xaf6de48b PDE_DATA -EXPORT_SYMBOL vmlinux 0xaf80ca33 devfreq_suspend_device -EXPORT_SYMBOL vmlinux 0xaf9ec892 file_modified -EXPORT_SYMBOL vmlinux 0xafae1bd5 to_nd_pfn -EXPORT_SYMBOL vmlinux 0xafb7251f qdisc_tree_reduce_backlog -EXPORT_SYMBOL vmlinux 0xafc08054 dotdot_name -EXPORT_SYMBOL vmlinux 0xafc1fa17 __dev_get_by_name -EXPORT_SYMBOL vmlinux 0xafe7c263 tcp_release_cb -EXPORT_SYMBOL vmlinux 0xafed1c2d netlink_ns_capable -EXPORT_SYMBOL vmlinux 0xaff414d3 logfc -EXPORT_SYMBOL vmlinux 0xb017bf40 xfrm4_rcv_encap -EXPORT_SYMBOL vmlinux 0xb01bebf9 xfrm_get_acqseq -EXPORT_SYMBOL vmlinux 0xb0201cb3 would_dump -EXPORT_SYMBOL vmlinux 0xb02b7603 genl_notify -EXPORT_SYMBOL vmlinux 0xb04dc456 module_refcount -EXPORT_SYMBOL vmlinux 0xb0524ea3 napi_gro_flush -EXPORT_SYMBOL vmlinux 0xb0543986 tcp_v4_send_check -EXPORT_SYMBOL vmlinux 0xb058ca07 dim_calc_stats -EXPORT_SYMBOL vmlinux 0xb059d737 import_single_range -EXPORT_SYMBOL vmlinux 0xb05e4a83 fwnode_irq_get -EXPORT_SYMBOL vmlinux 0xb05fc310 sysctl_rmem_max -EXPORT_SYMBOL vmlinux 0xb06acde3 rproc_da_to_va -EXPORT_SYMBOL vmlinux 0xb0997684 tcp_sock_set_keepidle -EXPORT_SYMBOL vmlinux 0xb09e00e5 tegra_ivc_init -EXPORT_SYMBOL vmlinux 0xb0a0da0c rational_best_approximation -EXPORT_SYMBOL vmlinux 0xb0c11ac7 input_set_poll_interval -EXPORT_SYMBOL vmlinux 0xb0cca62d lockref_get_or_lock -EXPORT_SYMBOL vmlinux 0xb0d02e5a flow_rule_match_control -EXPORT_SYMBOL vmlinux 0xb0d10d8a skb_store_bits -EXPORT_SYMBOL vmlinux 0xb0da2112 __cgroup_bpf_run_filter_sock_ops -EXPORT_SYMBOL vmlinux 0xb0de03ad dec_zone_page_state -EXPORT_SYMBOL vmlinux 0xb0e10781 get_option -EXPORT_SYMBOL vmlinux 0xb0e1b75a of_node_put -EXPORT_SYMBOL vmlinux 0xb0f389ee utf8_normalize -EXPORT_SYMBOL vmlinux 0xb104157f of_get_next_cpu_node -EXPORT_SYMBOL vmlinux 0xb10a86ec migrate_page_states -EXPORT_SYMBOL vmlinux 0xb10c4c73 gnet_stats_finish_copy -EXPORT_SYMBOL vmlinux 0xb10e7df4 __kfifo_dma_in_prepare -EXPORT_SYMBOL vmlinux 0xb113a549 input_free_device -EXPORT_SYMBOL vmlinux 0xb11a37d4 neigh_changeaddr -EXPORT_SYMBOL vmlinux 0xb121390a probe_irq_on -EXPORT_SYMBOL vmlinux 0xb12cbacb fb_unregister_client -EXPORT_SYMBOL vmlinux 0xb147615f __vfs_getxattr -EXPORT_SYMBOL vmlinux 0xb14ab1ef hdmi_audio_infoframe_init -EXPORT_SYMBOL vmlinux 0xb14fc46a find_next_clump8 -EXPORT_SYMBOL vmlinux 0xb154f778 dm_kcopyd_zero -EXPORT_SYMBOL vmlinux 0xb1554c04 wait_on_page_private_2_killable -EXPORT_SYMBOL vmlinux 0xb1633840 seq_open -EXPORT_SYMBOL vmlinux 0xb17f5f4f mii_ethtool_sset -EXPORT_SYMBOL vmlinux 0xb1812521 register_sysctl_paths -EXPORT_SYMBOL vmlinux 0xb184a246 xfrm_policy_byid -EXPORT_SYMBOL vmlinux 0xb1bbc2d6 jbd2_journal_check_used_features -EXPORT_SYMBOL vmlinux 0xb1bdae2f nf_log_unregister -EXPORT_SYMBOL vmlinux 0xb1c3a01a oops_in_progress -EXPORT_SYMBOL vmlinux 0xb1d3a15c blk_finish_plug -EXPORT_SYMBOL vmlinux 0xb1db9a69 fsl_ifc_find -EXPORT_SYMBOL vmlinux 0xb1dbdcb1 devm_ioport_map -EXPORT_SYMBOL vmlinux 0xb1ddf995 jiffies_64_to_clock_t -EXPORT_SYMBOL vmlinux 0xb1dfe10e tcp_parse_options -EXPORT_SYMBOL vmlinux 0xb1ffae21 dm_table_get_size -EXPORT_SYMBOL vmlinux 0xb20483c4 vfs_iocb_iter_write -EXPORT_SYMBOL vmlinux 0xb22e16d5 radix_tree_maybe_preload -EXPORT_SYMBOL vmlinux 0xb23027c1 kstrtos16_from_user -EXPORT_SYMBOL vmlinux 0xb23e29d2 scsi_bios_ptable -EXPORT_SYMBOL vmlinux 0xb272f443 skb_tx_error -EXPORT_SYMBOL vmlinux 0xb2bcb088 acpi_current_gpe_count -EXPORT_SYMBOL vmlinux 0xb2c7a2a5 xp_alloc -EXPORT_SYMBOL vmlinux 0xb2d77657 cpufreq_get_policy -EXPORT_SYMBOL vmlinux 0xb2e5d0a4 pcie_get_speed_cap -EXPORT_SYMBOL vmlinux 0xb2ead97c kimage_vaddr -EXPORT_SYMBOL vmlinux 0xb2f2b311 skb_copy_expand -EXPORT_SYMBOL vmlinux 0xb2f35c6a xxh64 -EXPORT_SYMBOL vmlinux 0xb2f5d72b blk_queue_split -EXPORT_SYMBOL vmlinux 0xb2fcb56d queue_delayed_work_on -EXPORT_SYMBOL vmlinux 0xb308c97d wait_woken -EXPORT_SYMBOL vmlinux 0xb30b9822 vme_master_set -EXPORT_SYMBOL vmlinux 0xb31ece8e _dev_alert -EXPORT_SYMBOL vmlinux 0xb3203091 acpi_device_set_power -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 0xb336069e rt_write_trylock -EXPORT_SYMBOL vmlinux 0xb338501c vm_iomap_memory -EXPORT_SYMBOL vmlinux 0xb34311df scsi_target_quiesce -EXPORT_SYMBOL vmlinux 0xb34dca1c kryo_l2_get_indirect_reg -EXPORT_SYMBOL vmlinux 0xb353a016 tty_insert_flip_string_fixed_flag -EXPORT_SYMBOL vmlinux 0xb35a2dad __dynamic_netdev_dbg -EXPORT_SYMBOL vmlinux 0xb35c3082 pci_ep_cfs_add_epf_group -EXPORT_SYMBOL vmlinux 0xb3687850 out_of_line_wait_on_bit_lock -EXPORT_SYMBOL vmlinux 0xb372c00d jbd2_journal_start_reserved -EXPORT_SYMBOL vmlinux 0xb38077ca add_to_page_cache_locked -EXPORT_SYMBOL vmlinux 0xb3a82019 profile_pc -EXPORT_SYMBOL vmlinux 0xb3bd68cc security_secmark_relabel_packet -EXPORT_SYMBOL vmlinux 0xb3c8b29d generic_error_remove_page -EXPORT_SYMBOL vmlinux 0xb3c8be37 pci_disable_msix -EXPORT_SYMBOL vmlinux 0xb3d2c76d scsi_hostbyte_string -EXPORT_SYMBOL vmlinux 0xb3d34e8e generic_perform_write -EXPORT_SYMBOL vmlinux 0xb3d90e12 put_devmap_managed_page -EXPORT_SYMBOL vmlinux 0xb3e031e0 vga_put -EXPORT_SYMBOL vmlinux 0xb3f49446 kstrtos8_from_user -EXPORT_SYMBOL vmlinux 0xb3f548ad kmemdup_nul -EXPORT_SYMBOL vmlinux 0xb3f7646e kthread_should_stop -EXPORT_SYMBOL vmlinux 0xb3fa3f48 xfrm6_rcv_spi -EXPORT_SYMBOL vmlinux 0xb4043948 acpi_execute_simple_method -EXPORT_SYMBOL vmlinux 0xb423dba1 console_blanked -EXPORT_SYMBOL vmlinux 0xb4485493 i2c_smbus_write_i2c_block_data -EXPORT_SYMBOL vmlinux 0xb45512d1 i2c_smbus_xfer -EXPORT_SYMBOL vmlinux 0xb4577003 acpi_dev_present -EXPORT_SYMBOL vmlinux 0xb45f119c __traceiter_spi_transfer_stop -EXPORT_SYMBOL vmlinux 0xb4635643 gen_pool_virt_to_phys -EXPORT_SYMBOL vmlinux 0xb466415d inet_csk_reqsk_queue_add -EXPORT_SYMBOL vmlinux 0xb46def87 kmem_cache_alloc_node -EXPORT_SYMBOL vmlinux 0xb4726e0f request_firmware_nowait -EXPORT_SYMBOL vmlinux 0xb4760a4e vmf_insert_mixed -EXPORT_SYMBOL vmlinux 0xb4817b6f __inet6_lookup_established -EXPORT_SYMBOL vmlinux 0xb487b0a2 mod_zone_page_state -EXPORT_SYMBOL vmlinux 0xb48d4d22 security_sb_eat_lsm_opts -EXPORT_SYMBOL vmlinux 0xb49cbb7f netif_rx_ni -EXPORT_SYMBOL vmlinux 0xb4b33586 inet_csk_prepare_forced_close -EXPORT_SYMBOL vmlinux 0xb4dd2b40 secpath_set -EXPORT_SYMBOL vmlinux 0xb4e4dbbe gen_pool_dma_zalloc_algo -EXPORT_SYMBOL vmlinux 0xb4f13d2a abort -EXPORT_SYMBOL vmlinux 0xb50c6a5b mmc_set_data_timeout -EXPORT_SYMBOL vmlinux 0xb50ef95d kthread_create_worker_on_cpu -EXPORT_SYMBOL vmlinux 0xb52095c9 of_find_all_nodes -EXPORT_SYMBOL vmlinux 0xb52fcf0d proc_dostring -EXPORT_SYMBOL vmlinux 0xb533b024 cdev_add -EXPORT_SYMBOL vmlinux 0xb53f0d17 gen_pool_alloc_algo_owner -EXPORT_SYMBOL vmlinux 0xb53f2810 tcp_sockets_allocated -EXPORT_SYMBOL vmlinux 0xb556a663 seqno_fence_ops -EXPORT_SYMBOL vmlinux 0xb557132a zpool_unregister_driver -EXPORT_SYMBOL vmlinux 0xb56169c9 __skb_gro_checksum_complete -EXPORT_SYMBOL vmlinux 0xb57343c2 frontswap_shrink -EXPORT_SYMBOL vmlinux 0xb57f1e27 fman_port_disable -EXPORT_SYMBOL vmlinux 0xb58aeaab kernel_cpustat -EXPORT_SYMBOL vmlinux 0xb58c62e6 netpoll_poll_enable -EXPORT_SYMBOL vmlinux 0xb593144c inet_accept -EXPORT_SYMBOL vmlinux 0xb596e30b __nla_reserve_64bit -EXPORT_SYMBOL vmlinux 0xb59bec8d fs_param_is_string -EXPORT_SYMBOL vmlinux 0xb5a459dc unregister_blkdev -EXPORT_SYMBOL vmlinux 0xb5a8edeb xa_get_mark -EXPORT_SYMBOL vmlinux 0xb5aa7165 dma_pool_destroy -EXPORT_SYMBOL vmlinux 0xb5ab8245 deactivate_super -EXPORT_SYMBOL vmlinux 0xb5abc957 netlbl_calipso_ops_register -EXPORT_SYMBOL vmlinux 0xb5b3c20a unregister_shrinker -EXPORT_SYMBOL vmlinux 0xb5b63711 fileattr_fill_xflags -EXPORT_SYMBOL vmlinux 0xb5c09332 pci_clear_mwi -EXPORT_SYMBOL vmlinux 0xb5c0b28d d_rehash -EXPORT_SYMBOL vmlinux 0xb5e73116 flush_delayed_work -EXPORT_SYMBOL vmlinux 0xb602a2de gen_pool_has_addr -EXPORT_SYMBOL vmlinux 0xb603b390 __sk_mem_reclaim -EXPORT_SYMBOL vmlinux 0xb6283093 md_bitmap_close_sync -EXPORT_SYMBOL vmlinux 0xb633f115 irq_poll_enable -EXPORT_SYMBOL vmlinux 0xb63e2adc devm_ioremap_resource -EXPORT_SYMBOL vmlinux 0xb654ef65 acpi_os_read_port -EXPORT_SYMBOL vmlinux 0xb66d25da up_read -EXPORT_SYMBOL vmlinux 0xb678366f int_sqrt -EXPORT_SYMBOL vmlinux 0xb67b5f61 of_parse_phandle_with_args_map -EXPORT_SYMBOL vmlinux 0xb67c9280 utf8cursor -EXPORT_SYMBOL vmlinux 0xb67fec0e uuid_parse -EXPORT_SYMBOL vmlinux 0xb689bc33 dma_alloc_attrs -EXPORT_SYMBOL vmlinux 0xb68f7b10 tcp_rcv_state_process -EXPORT_SYMBOL vmlinux 0xb6920999 nf_ct_attach -EXPORT_SYMBOL vmlinux 0xb6936ffe _bcd2bin -EXPORT_SYMBOL vmlinux 0xb69539fb netdev_master_upper_dev_get -EXPORT_SYMBOL vmlinux 0xb6971b41 close_fd_get_file -EXPORT_SYMBOL vmlinux 0xb69cb452 kernel_getsockname -EXPORT_SYMBOL vmlinux 0xb6acaa13 phy_sfp_detach -EXPORT_SYMBOL vmlinux 0xb6c6b18f ww_mutex_unlock -EXPORT_SYMBOL vmlinux 0xb6e36ce2 psched_ratecfg_precompute -EXPORT_SYMBOL vmlinux 0xb6ec0455 netpoll_setup -EXPORT_SYMBOL vmlinux 0xb6f4174e disk_start_io_acct -EXPORT_SYMBOL vmlinux 0xb6fde909 close_fd -EXPORT_SYMBOL vmlinux 0xb704b2bc get_ipc_ns_exported -EXPORT_SYMBOL vmlinux 0xb7076c8b generic_key_instantiate -EXPORT_SYMBOL vmlinux 0xb7120361 ww_mutex_lock -EXPORT_SYMBOL vmlinux 0xb71589f0 skip_spaces -EXPORT_SYMBOL vmlinux 0xb71ed69f __hw_addr_unsync -EXPORT_SYMBOL vmlinux 0xb72183db alloc_skb_with_frags -EXPORT_SYMBOL vmlinux 0xb7280e0d phy_ethtool_get_stats -EXPORT_SYMBOL vmlinux 0xb72e8806 sock_rfree -EXPORT_SYMBOL vmlinux 0xb75407b4 netdev_unbind_sb_channel -EXPORT_SYMBOL vmlinux 0xb75418d7 jbd2__journal_restart -EXPORT_SYMBOL vmlinux 0xb7605be2 kill_block_super -EXPORT_SYMBOL vmlinux 0xb7688155 ucc_slow_init -EXPORT_SYMBOL vmlinux 0xb76efd4b from_kuid_munged -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 0xb7aaaf85 kmem_cache_create -EXPORT_SYMBOL vmlinux 0xb7b7fa6e node_states -EXPORT_SYMBOL vmlinux 0xb7c0f443 sort -EXPORT_SYMBOL vmlinux 0xb7c37f64 skb_clone_sk -EXPORT_SYMBOL vmlinux 0xb7c6db70 sysctl_max_skb_frags -EXPORT_SYMBOL vmlinux 0xb7cf3c7a set_anon_super -EXPORT_SYMBOL vmlinux 0xb7d2d4f3 devfreq_monitor_suspend -EXPORT_SYMBOL vmlinux 0xb80bda69 iterate_supers_type -EXPORT_SYMBOL vmlinux 0xb81dae04 vm_insert_pages -EXPORT_SYMBOL vmlinux 0xb83129db ZSTD_decompressContinue -EXPORT_SYMBOL vmlinux 0xb842716c qcom_scm_ocmem_lock_available -EXPORT_SYMBOL vmlinux 0xb85c3c68 __pskb_copy_fclone -EXPORT_SYMBOL vmlinux 0xb8605d9c qman_p_static_dequeue_add -EXPORT_SYMBOL vmlinux 0xb868153d __ip_mc_inc_group -EXPORT_SYMBOL vmlinux 0xb868ac5c register_sysrq_key -EXPORT_SYMBOL vmlinux 0xb88c3134 phy_trigger_machine -EXPORT_SYMBOL vmlinux 0xb89b6e6b guid_parse -EXPORT_SYMBOL vmlinux 0xb8b043f2 kfree_link -EXPORT_SYMBOL vmlinux 0xb8b9f817 kmalloc_order_trace -EXPORT_SYMBOL vmlinux 0xb8cb65bb kernel_connect -EXPORT_SYMBOL vmlinux 0xb8d8e541 dev_change_flags -EXPORT_SYMBOL vmlinux 0xb8e1cc82 nd_region_to_nstype -EXPORT_SYMBOL vmlinux 0xb8e21ee1 udp_read_sock -EXPORT_SYMBOL vmlinux 0xb8e7f49f seq_putc -EXPORT_SYMBOL vmlinux 0xb8f9744a tcp_md5_do_add -EXPORT_SYMBOL vmlinux 0xb9016ce8 ata_std_end_eh -EXPORT_SYMBOL vmlinux 0xb9056bb6 remove_conflicting_framebuffers -EXPORT_SYMBOL vmlinux 0xb906aac9 gen_pool_fixed_alloc -EXPORT_SYMBOL vmlinux 0xb907513f unpoison_memory -EXPORT_SYMBOL vmlinux 0xb911bb58 minmax_running_max -EXPORT_SYMBOL vmlinux 0xb9368210 blk_mq_start_stopped_hw_queues -EXPORT_SYMBOL vmlinux 0xb93ef380 find_vma -EXPORT_SYMBOL vmlinux 0xb94339c4 qdisc_put_stab -EXPORT_SYMBOL vmlinux 0xb945d860 page_pool_destroy -EXPORT_SYMBOL vmlinux 0xb9478d90 hdmi_drm_infoframe_unpack_only -EXPORT_SYMBOL vmlinux 0xb95ac901 md_bitmap_endwrite -EXPORT_SYMBOL vmlinux 0xb961e71a seq_write -EXPORT_SYMBOL vmlinux 0xb96a39c9 poll_initwait -EXPORT_SYMBOL vmlinux 0xb97220ff bitmap_parse -EXPORT_SYMBOL vmlinux 0xb97b1455 scsi_get_host_dev -EXPORT_SYMBOL vmlinux 0xb9b94bd0 refcount_dec_and_lock_irqsave -EXPORT_SYMBOL vmlinux 0xb9c62c98 seq_escape -EXPORT_SYMBOL vmlinux 0xb9e8e2cc in6addr_sitelocal_allrouters -EXPORT_SYMBOL vmlinux 0xb9fc381a qcom_scm_hdcp_req -EXPORT_SYMBOL vmlinux 0xba0676e2 vm_zone_stat -EXPORT_SYMBOL vmlinux 0xba1008c8 __crc32c_le -EXPORT_SYMBOL vmlinux 0xba1a5bb0 __skb_wait_for_more_packets -EXPORT_SYMBOL vmlinux 0xba3aae4c pnp_request_card_device -EXPORT_SYMBOL vmlinux 0xba497f13 loops_per_jiffy -EXPORT_SYMBOL vmlinux 0xba53adab nla_policy_len -EXPORT_SYMBOL vmlinux 0xba6d11bf pci_save_state -EXPORT_SYMBOL vmlinux 0xba707a78 qe_get_brg_clk -EXPORT_SYMBOL vmlinux 0xba8fbd64 _raw_spin_lock -EXPORT_SYMBOL vmlinux 0xba93d9f6 clk_hw_register_clkdev -EXPORT_SYMBOL vmlinux 0xbaa293f7 mmc_command_done -EXPORT_SYMBOL vmlinux 0xbaafd51d dquot_destroy -EXPORT_SYMBOL vmlinux 0xbac445a8 dm_mq_kick_requeue_list -EXPORT_SYMBOL vmlinux 0xbad39f96 netif_device_attach -EXPORT_SYMBOL vmlinux 0xbaeb79de xfrm_policy_unregister_afinfo -EXPORT_SYMBOL vmlinux 0xbaf4af6b __quota_error -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 0xbb476824 pci_bus_read_config_dword -EXPORT_SYMBOL vmlinux 0xbb4e7c25 flow_rule_match_eth_addrs -EXPORT_SYMBOL vmlinux 0xbb4f4766 simple_write_to_buffer -EXPORT_SYMBOL vmlinux 0xbb50fb3d device_add_disk -EXPORT_SYMBOL vmlinux 0xbb687724 bman_new_pool -EXPORT_SYMBOL vmlinux 0xbb8fda5b mmput_async -EXPORT_SYMBOL vmlinux 0xbbbec3fe inet_proto_csum_replace_by_diff -EXPORT_SYMBOL vmlinux 0xbbc7b6d4 vmap -EXPORT_SYMBOL vmlinux 0xbbdb84a6 generic_file_mmap -EXPORT_SYMBOL vmlinux 0xbbdd8d24 dma_unmap_resource -EXPORT_SYMBOL vmlinux 0xbbe3abe3 __skb_recv_datagram -EXPORT_SYMBOL vmlinux 0xbbe80fdb kmalloc_order -EXPORT_SYMBOL vmlinux 0xbc2031de acpi_processor_get_bios_limit -EXPORT_SYMBOL vmlinux 0xbc40badf generic_file_open -EXPORT_SYMBOL vmlinux 0xbc69f44d blk_mq_init_allocated_queue -EXPORT_SYMBOL vmlinux 0xbc732616 mipi_dsi_dcs_write -EXPORT_SYMBOL vmlinux 0xbc7c7bea phy_attached_info -EXPORT_SYMBOL vmlinux 0xbc8c71a2 framebuffer_alloc -EXPORT_SYMBOL vmlinux 0xbc8cfeab dquot_mark_dquot_dirty -EXPORT_SYMBOL vmlinux 0xbc94240d dcache_dir_open -EXPORT_SYMBOL vmlinux 0xbc9d8ca6 dquot_acquire -EXPORT_SYMBOL vmlinux 0xbca22b30 amba_driver_register -EXPORT_SYMBOL vmlinux 0xbcab6ee6 sscanf -EXPORT_SYMBOL vmlinux 0xbcc8c789 alloc_pages -EXPORT_SYMBOL vmlinux 0xbccbed04 netdev_class_create_file_ns -EXPORT_SYMBOL vmlinux 0xbce183ba jbd2_journal_submit_inode_data_buffers -EXPORT_SYMBOL vmlinux 0xbce61c15 fs_param_is_s32 -EXPORT_SYMBOL vmlinux 0xbcfead96 current_in_userns -EXPORT_SYMBOL vmlinux 0xbd035342 deactivate_locked_super -EXPORT_SYMBOL vmlinux 0xbd0bf117 dst_release -EXPORT_SYMBOL vmlinux 0xbd164be2 d_set_d_op -EXPORT_SYMBOL vmlinux 0xbd1b1a45 mntput -EXPORT_SYMBOL vmlinux 0xbd28f671 seq_bprintf -EXPORT_SYMBOL vmlinux 0xbd462b55 __kfifo_init -EXPORT_SYMBOL vmlinux 0xbd492778 serial8250_do_set_termios -EXPORT_SYMBOL vmlinux 0xbd57ea4c twl6040_get_sysclk -EXPORT_SYMBOL vmlinux 0xbd628752 __tracepoint_mmap_lock_start_locking -EXPORT_SYMBOL vmlinux 0xbd63888c dma_map_page_attrs -EXPORT_SYMBOL vmlinux 0xbd6841d4 crc16 -EXPORT_SYMBOL vmlinux 0xbd87c7d8 skb_vlan_pop -EXPORT_SYMBOL vmlinux 0xbd9910aa rproc_alloc -EXPORT_SYMBOL vmlinux 0xbdad7f2f tcp_v4_do_rcv -EXPORT_SYMBOL vmlinux 0xbdb7ce89 shrink_dcache_parent -EXPORT_SYMBOL vmlinux 0xbdb9623d mini_qdisc_pair_swap -EXPORT_SYMBOL vmlinux 0xbddc77b8 ndo_dflt_fdb_add -EXPORT_SYMBOL vmlinux 0xbddc8b38 inet_put_port -EXPORT_SYMBOL vmlinux 0xbdebf91c tty_hangup -EXPORT_SYMBOL vmlinux 0xbdf2d4c8 pci_get_class -EXPORT_SYMBOL vmlinux 0xbdff7b7f inet_shutdown -EXPORT_SYMBOL vmlinux 0xbe048b91 key_alloc -EXPORT_SYMBOL vmlinux 0xbe118c52 __tracepoint_mmap_lock_acquire_returned -EXPORT_SYMBOL vmlinux 0xbe1427af __printk_cpu_unlock -EXPORT_SYMBOL vmlinux 0xbe175d42 get_task_cred -EXPORT_SYMBOL vmlinux 0xbe42cead vme_irq_request -EXPORT_SYMBOL vmlinux 0xbe43d2db input_get_keycode -EXPORT_SYMBOL vmlinux 0xbe49252c acpi_os_write_port -EXPORT_SYMBOL vmlinux 0xbe4eb6ed secure_dccpv6_sequence_number -EXPORT_SYMBOL vmlinux 0xbe59370f tty_port_close_end -EXPORT_SYMBOL vmlinux 0xbe5a24e9 xxh32_copy_state -EXPORT_SYMBOL vmlinux 0xbe7e05a8 acpi_tb_install_and_load_table -EXPORT_SYMBOL vmlinux 0xbe7fd714 kmem_cache_alloc -EXPORT_SYMBOL vmlinux 0xbe901690 dev_change_proto_down_generic -EXPORT_SYMBOL vmlinux 0xbeb2fa5a gen_replace_estimator -EXPORT_SYMBOL vmlinux 0xbeb30a25 lock_two_nondirectories -EXPORT_SYMBOL vmlinux 0xbec31077 tcf_block_put -EXPORT_SYMBOL vmlinux 0xbed7858e xfrm6_rcv_tnl -EXPORT_SYMBOL vmlinux 0xbedb2359 xfrm_register_km -EXPORT_SYMBOL vmlinux 0xbeea4849 tcp_sock_set_nodelay -EXPORT_SYMBOL vmlinux 0xbef43296 console_conditional_schedule -EXPORT_SYMBOL vmlinux 0xbefc4950 tcp_timewait_state_process -EXPORT_SYMBOL vmlinux 0xbf0bf615 i2c_smbus_write_byte_data -EXPORT_SYMBOL vmlinux 0xbf32e5c6 key_type_keyring -EXPORT_SYMBOL vmlinux 0xbf44fcc1 security_sk_classify_flow -EXPORT_SYMBOL vmlinux 0xbf4e40e3 phy_ethtool_set_eee -EXPORT_SYMBOL vmlinux 0xbf59c419 posix_acl_init -EXPORT_SYMBOL vmlinux 0xbf629113 xfrm6_rcv_encap -EXPORT_SYMBOL vmlinux 0xbf75b48b d_genocide -EXPORT_SYMBOL vmlinux 0xbf896dc9 skb_copy_and_csum_datagram_msg -EXPORT_SYMBOL vmlinux 0xbf8c507f crypto_sha256_finup -EXPORT_SYMBOL vmlinux 0xbf90c282 __skb_free_datagram_locked -EXPORT_SYMBOL vmlinux 0xbf937f19 devm_get_clk_from_child -EXPORT_SYMBOL vmlinux 0xbf946fc0 scsi_device_put -EXPORT_SYMBOL vmlinux 0xbf951c0b give_up_console -EXPORT_SYMBOL vmlinux 0xbf9bcc8d __cap_empty_set -EXPORT_SYMBOL vmlinux 0xbfa349a0 remove_conflicting_pci_framebuffers -EXPORT_SYMBOL vmlinux 0xbfa96457 configfs_unregister_default_group -EXPORT_SYMBOL vmlinux 0xbfcbc0d2 stmp_reset_block -EXPORT_SYMBOL vmlinux 0xbfee3ad5 loop_unregister_transfer -EXPORT_SYMBOL vmlinux 0xbff1078a dquot_load_quota_inode -EXPORT_SYMBOL vmlinux 0xc01885f2 param_get_byte -EXPORT_SYMBOL vmlinux 0xc0364007 fault_in_writeable -EXPORT_SYMBOL vmlinux 0xc048e574 vif_device_init -EXPORT_SYMBOL vmlinux 0xc06e700f rtnetlink_put_metrics -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 0xc0b63d67 pcix_get_mmrbc -EXPORT_SYMBOL vmlinux 0xc0bca0f1 ZSTD_nextSrcSizeToDecompress -EXPORT_SYMBOL vmlinux 0xc0c01504 xfrm_policy_delete -EXPORT_SYMBOL vmlinux 0xc0c0b173 loop_register_transfer -EXPORT_SYMBOL vmlinux 0xc0c685ad mipi_dsi_dcs_set_page_address -EXPORT_SYMBOL vmlinux 0xc0d6f42d ethtool_op_get_ts_info -EXPORT_SYMBOL vmlinux 0xc0f5a094 dcache_dir_close -EXPORT_SYMBOL vmlinux 0xc0f5c262 vlan_for_each -EXPORT_SYMBOL vmlinux 0xc0fe4310 gen_pool_create -EXPORT_SYMBOL vmlinux 0xc0ff12fb nla_strdup -EXPORT_SYMBOL vmlinux 0xc0ff21c1 input_get_new_minor -EXPORT_SYMBOL vmlinux 0xc10325dd blk_queue_flag_set -EXPORT_SYMBOL vmlinux 0xc1048194 inet6_getname -EXPORT_SYMBOL vmlinux 0xc107dce6 phy_get_pause -EXPORT_SYMBOL vmlinux 0xc10ba00c __fs_parse -EXPORT_SYMBOL vmlinux 0xc10fac28 pci_disable_link_state -EXPORT_SYMBOL vmlinux 0xc11c8615 sock_no_sendmsg_locked -EXPORT_SYMBOL vmlinux 0xc131b794 of_find_node_opts_by_path -EXPORT_SYMBOL vmlinux 0xc14dc168 acpi_get_data -EXPORT_SYMBOL vmlinux 0xc1510798 icmp_ndo_send -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 0xc185444b km_policy_notify -EXPORT_SYMBOL vmlinux 0xc185bcdc sock_release -EXPORT_SYMBOL vmlinux 0xc1c9aef5 textsearch_prepare -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 0xc1f0453d serio_reconnect -EXPORT_SYMBOL vmlinux 0xc1f53325 dcb_ieee_getapp_prio_dscp_mask_map -EXPORT_SYMBOL vmlinux 0xc2050974 fman_port_get_tstamp -EXPORT_SYMBOL vmlinux 0xc209d0e6 __module_get -EXPORT_SYMBOL vmlinux 0xc2280061 pci_set_mwi -EXPORT_SYMBOL vmlinux 0xc2310cdc logic_inl -EXPORT_SYMBOL vmlinux 0xc23145f3 kthread_create_on_cpu -EXPORT_SYMBOL vmlinux 0xc23d4cf1 __scsi_device_lookup_by_target -EXPORT_SYMBOL vmlinux 0xc241a273 ipv6_skip_exthdr -EXPORT_SYMBOL vmlinux 0xc2509bfc mmc_release_host -EXPORT_SYMBOL vmlinux 0xc2581e30 dev_queue_xmit -EXPORT_SYMBOL vmlinux 0xc267960e utf8_validate -EXPORT_SYMBOL vmlinux 0xc268b966 blk_queue_max_segment_size -EXPORT_SYMBOL vmlinux 0xc268dcf0 tcp_openreq_init_rwin -EXPORT_SYMBOL vmlinux 0xc272ee9c dmaengine_get_unmap_data -EXPORT_SYMBOL vmlinux 0xc28aa0ec dquot_commit_info -EXPORT_SYMBOL vmlinux 0xc28e741d fscrypt_setup_filename -EXPORT_SYMBOL vmlinux 0xc29bf967 strspn -EXPORT_SYMBOL vmlinux 0xc2d715ad alloc_fcdev -EXPORT_SYMBOL vmlinux 0xc2e168ab caches_clean_inval_pou -EXPORT_SYMBOL vmlinux 0xc2e2735d flow_block_cb_alloc -EXPORT_SYMBOL vmlinux 0xc2e587d1 reset_devices -EXPORT_SYMBOL vmlinux 0xc2ee654c inode_dio_wait -EXPORT_SYMBOL vmlinux 0xc2f52274 __lshrti3 -EXPORT_SYMBOL vmlinux 0xc2f7d042 tty_port_open -EXPORT_SYMBOL vmlinux 0xc2fc9218 simple_transaction_get -EXPORT_SYMBOL vmlinux 0xc3055d20 usleep_range_state -EXPORT_SYMBOL vmlinux 0xc30ec677 ipv6_mc_check_mld -EXPORT_SYMBOL vmlinux 0xc310b981 strnstr -EXPORT_SYMBOL vmlinux 0xc3173b96 tcp_ioctl -EXPORT_SYMBOL vmlinux 0xc31c8f4d sget_fc -EXPORT_SYMBOL vmlinux 0xc31db0ce is_vmalloc_addr -EXPORT_SYMBOL vmlinux 0xc3247597 blk_queue_update_dma_pad -EXPORT_SYMBOL vmlinux 0xc32c71af register_inetaddr_validator_notifier -EXPORT_SYMBOL vmlinux 0xc32caedf security_sk_clone -EXPORT_SYMBOL vmlinux 0xc3404de8 inet_sk_rebuild_header -EXPORT_SYMBOL vmlinux 0xc3549374 sock_recvmsg -EXPORT_SYMBOL vmlinux 0xc3655611 mipi_dsi_generic_read -EXPORT_SYMBOL vmlinux 0xc36a3bd4 __acpi_handle_debug -EXPORT_SYMBOL vmlinux 0xc36a4336 flush_signals -EXPORT_SYMBOL vmlinux 0xc376cefd of_device_alloc -EXPORT_SYMBOL vmlinux 0xc37f9c6e cpufreq_update_policy -EXPORT_SYMBOL vmlinux 0xc38259af __this_cpu_preempt_check -EXPORT_SYMBOL vmlinux 0xc386f308 xsk_clear_rx_need_wakeup -EXPORT_SYMBOL vmlinux 0xc38c83b8 mod_timer -EXPORT_SYMBOL vmlinux 0xc39ceaba cros_ec_cmd_xfer -EXPORT_SYMBOL vmlinux 0xc3b2a3fb sock_no_getname -EXPORT_SYMBOL vmlinux 0xc3bc72ad trace_print_array_seq -EXPORT_SYMBOL vmlinux 0xc3cd034d crc8_populate_lsb -EXPORT_SYMBOL vmlinux 0xc3e2986c tcp_enter_cwr -EXPORT_SYMBOL vmlinux 0xc3eedddc timestamp_truncate -EXPORT_SYMBOL vmlinux 0xc3f8c52e lock_sock_nested -EXPORT_SYMBOL vmlinux 0xc404f43c tso_count_descs -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 0xc4460b6f phy_support_asym_pause -EXPORT_SYMBOL vmlinux 0xc44672a1 mipi_dsi_dcs_get_display_brightness -EXPORT_SYMBOL vmlinux 0xc44836ee blk_execute_rq -EXPORT_SYMBOL vmlinux 0xc44afb22 scsi_host_lookup -EXPORT_SYMBOL vmlinux 0xc45e2dfc vfs_get_tree -EXPORT_SYMBOL vmlinux 0xc461e052 phy_ethtool_ksettings_get -EXPORT_SYMBOL vmlinux 0xc46922de skb_flow_get_icmp_tci -EXPORT_SYMBOL vmlinux 0xc4708199 cpm_muram_addr -EXPORT_SYMBOL vmlinux 0xc472996a md_handle_request -EXPORT_SYMBOL vmlinux 0xc4756aac block_write_begin -EXPORT_SYMBOL vmlinux 0xc4777aa9 __ctzsi2 -EXPORT_SYMBOL vmlinux 0xc4b21d2f qman_get_affine_portal -EXPORT_SYMBOL vmlinux 0xc4bc4b6c mount_bdev -EXPORT_SYMBOL vmlinux 0xc4e5a201 __frontswap_test -EXPORT_SYMBOL vmlinux 0xc4e98d42 reuseport_has_conns_set -EXPORT_SYMBOL vmlinux 0xc51dd665 import_iovec -EXPORT_SYMBOL vmlinux 0xc5231941 textsearch_find_continuous -EXPORT_SYMBOL vmlinux 0xc5431f09 tty_unregister_ldisc -EXPORT_SYMBOL vmlinux 0xc5432a66 netdev_printk -EXPORT_SYMBOL vmlinux 0xc54c1ab2 __blk_alloc_disk -EXPORT_SYMBOL vmlinux 0xc56a41e6 vabits_actual -EXPORT_SYMBOL vmlinux 0xc57f0b1b tty_port_alloc_xmit_buf -EXPORT_SYMBOL vmlinux 0xc58a3c64 tcp_sock_set_keepintvl -EXPORT_SYMBOL vmlinux 0xc58d5a90 kstrtoll_from_user -EXPORT_SYMBOL vmlinux 0xc5953d63 __skb_vlan_pop -EXPORT_SYMBOL vmlinux 0xc599a772 security_xfrm_state_delete -EXPORT_SYMBOL vmlinux 0xc5a3367a __tracepoint_dma_fence_emit -EXPORT_SYMBOL vmlinux 0xc5af865a tty_insert_flip_string_flags -EXPORT_SYMBOL vmlinux 0xc5b6f236 queue_work_on -EXPORT_SYMBOL vmlinux 0xc5d084ff sock_no_accept -EXPORT_SYMBOL vmlinux 0xc5e74216 release_resource -EXPORT_SYMBOL vmlinux 0xc5f0cc73 dev_uc_del -EXPORT_SYMBOL vmlinux 0xc5f7e801 sg_last -EXPORT_SYMBOL vmlinux 0xc60d0620 __num_online_cpus -EXPORT_SYMBOL vmlinux 0xc60d917e nf_ip6_checksum -EXPORT_SYMBOL vmlinux 0xc624f077 __filemap_set_wb_err -EXPORT_SYMBOL vmlinux 0xc631580a console_unlock -EXPORT_SYMBOL vmlinux 0xc633d82d phy_unregister_fixup -EXPORT_SYMBOL vmlinux 0xc63766d8 blk_cleanup_disk -EXPORT_SYMBOL vmlinux 0xc642ffab blk_mq_unique_tag -EXPORT_SYMBOL vmlinux 0xc6469f04 dev_addr_add -EXPORT_SYMBOL vmlinux 0xc649a7b7 netdev_refcnt_read -EXPORT_SYMBOL vmlinux 0xc64bb497 pcie_capability_write_dword -EXPORT_SYMBOL vmlinux 0xc65e4e97 secure_dccp_sequence_number -EXPORT_SYMBOL vmlinux 0xc666a132 crc_t10dif -EXPORT_SYMBOL vmlinux 0xc66a8304 cpu_rmap_add -EXPORT_SYMBOL vmlinux 0xc69fce52 qcom_scm_qsmmu500_wait_safe_toggle -EXPORT_SYMBOL vmlinux 0xc6a0a571 vm_map_pages -EXPORT_SYMBOL vmlinux 0xc6a22c15 sock_dequeue_err_skb -EXPORT_SYMBOL vmlinux 0xc6a78524 fscrypt_free_inode -EXPORT_SYMBOL vmlinux 0xc6af411d register_mii_tstamp_controller -EXPORT_SYMBOL vmlinux 0xc6bbeb0d ihold -EXPORT_SYMBOL vmlinux 0xc6cb465a __kfifo_max_r -EXPORT_SYMBOL vmlinux 0xc6cbbc89 capable -EXPORT_SYMBOL vmlinux 0xc6d09aa9 release_firmware -EXPORT_SYMBOL vmlinux 0xc6dfdcbe lease_get_mtime -EXPORT_SYMBOL vmlinux 0xc6e373e1 inet_stream_ops -EXPORT_SYMBOL vmlinux 0xc6e56d4d mmc_gpiod_request_ro -EXPORT_SYMBOL vmlinux 0xc6e7ce94 jbd2_journal_init_dev -EXPORT_SYMBOL vmlinux 0xc6f3b3fc refcount_dec_if_one -EXPORT_SYMBOL vmlinux 0xc6f3eb89 inet_twsk_deschedule_put -EXPORT_SYMBOL vmlinux 0xc6f46339 init_timer_key -EXPORT_SYMBOL vmlinux 0xc6f7d96e flow_rule_match_enc_ports -EXPORT_SYMBOL vmlinux 0xc7001b87 poll_freewait -EXPORT_SYMBOL vmlinux 0xc708f1fe ec_write -EXPORT_SYMBOL vmlinux 0xc716c8ad add_watch_to_object -EXPORT_SYMBOL vmlinux 0xc7208c3a serial8250_resume_port -EXPORT_SYMBOL vmlinux 0xc721b3ed unregister_filesystem -EXPORT_SYMBOL vmlinux 0xc7317187 __xa_erase -EXPORT_SYMBOL vmlinux 0xc73b33c2 of_find_i2c_device_by_node -EXPORT_SYMBOL vmlinux 0xc75c09eb skb_copy_header -EXPORT_SYMBOL vmlinux 0xc77d7fa1 tty_kref_put -EXPORT_SYMBOL vmlinux 0xc7812ef9 tcp_set_rcvlowat -EXPORT_SYMBOL vmlinux 0xc781bd9f rfkill_resume_polling -EXPORT_SYMBOL vmlinux 0xc7856a3d inet6addr_notifier_call_chain -EXPORT_SYMBOL vmlinux 0xc78d1854 __cleancache_invalidate_inode -EXPORT_SYMBOL vmlinux 0xc790d51b fb_blank -EXPORT_SYMBOL vmlinux 0xc79f17fa inode_owner_or_capable -EXPORT_SYMBOL vmlinux 0xc7a4fbed rtnl_lock -EXPORT_SYMBOL vmlinux 0xc7bee2c1 mipi_dsi_dcs_exit_sleep_mode -EXPORT_SYMBOL vmlinux 0xc7c1107a LZ4_decompress_safe -EXPORT_SYMBOL vmlinux 0xc7d094b5 dm_read_arg_group -EXPORT_SYMBOL vmlinux 0xc7d5f527 do_clone_file_range -EXPORT_SYMBOL vmlinux 0xc7e7896c sock_i_ino -EXPORT_SYMBOL vmlinux 0xc7e7e3e6 pci_disable_link_state_locked -EXPORT_SYMBOL vmlinux 0xc805872b submit_bio -EXPORT_SYMBOL vmlinux 0xc80ab559 swake_up_one -EXPORT_SYMBOL vmlinux 0xc80c4ff6 dm_register_target -EXPORT_SYMBOL vmlinux 0xc81bcc87 rtnl_notify -EXPORT_SYMBOL vmlinux 0xc82bbe8c of_graph_get_endpoint_count -EXPORT_SYMBOL vmlinux 0xc830c8d3 pci_get_slot -EXPORT_SYMBOL vmlinux 0xc838c3f5 __ashrti3 -EXPORT_SYMBOL vmlinux 0xc8418161 tty_port_init -EXPORT_SYMBOL vmlinux 0xc84a0a7e seq_hlist_start_rcu -EXPORT_SYMBOL vmlinux 0xc85697a4 vfs_path_lookup -EXPORT_SYMBOL vmlinux 0xc85c2d18 block_write_end -EXPORT_SYMBOL vmlinux 0xc8661e05 kmem_cache_alloc_node_trace -EXPORT_SYMBOL vmlinux 0xc86cf830 mdio_device_register -EXPORT_SYMBOL vmlinux 0xc872fd85 in6addr_interfacelocal_allnodes -EXPORT_SYMBOL vmlinux 0xc8827b75 sysctl_vals -EXPORT_SYMBOL vmlinux 0xc88c107f iov_iter_alignment -EXPORT_SYMBOL vmlinux 0xc88e88fc d_obtain_alias -EXPORT_SYMBOL vmlinux 0xc8904e5d page_mapped -EXPORT_SYMBOL vmlinux 0xc890c008 zlib_deflateEnd -EXPORT_SYMBOL vmlinux 0xc89846c4 xudma_tchanrt_read -EXPORT_SYMBOL vmlinux 0xc899023f ping_prot -EXPORT_SYMBOL vmlinux 0xc8a91f5b cpumask_local_spread -EXPORT_SYMBOL vmlinux 0xc8bd2d3f is_bad_inode -EXPORT_SYMBOL vmlinux 0xc8d56d4e __sk_mem_schedule -EXPORT_SYMBOL vmlinux 0xc8dcc62a krealloc -EXPORT_SYMBOL vmlinux 0xc8dd0cf4 inet6_protos -EXPORT_SYMBOL vmlinux 0xc8e40050 phy_attach -EXPORT_SYMBOL vmlinux 0xc8f83e6c backlight_device_get_by_type -EXPORT_SYMBOL vmlinux 0xc904b391 follow_up -EXPORT_SYMBOL vmlinux 0xc9058eb0 tty_port_close -EXPORT_SYMBOL vmlinux 0xc90fba57 vlan_dev_vlan_id -EXPORT_SYMBOL vmlinux 0xc91065b8 mmc_sw_reset -EXPORT_SYMBOL vmlinux 0xc916dd46 __SCK__tp_func_kmalloc -EXPORT_SYMBOL vmlinux 0xc917e655 debug_smp_processor_id -EXPORT_SYMBOL vmlinux 0xc91c26a4 fs_param_is_u64 -EXPORT_SYMBOL vmlinux 0xc9218558 phy_print_status -EXPORT_SYMBOL vmlinux 0xc92ade81 security_lock_kernel_down -EXPORT_SYMBOL vmlinux 0xc93303d0 dev_get_by_napi_id -EXPORT_SYMBOL vmlinux 0xc935b5a9 phy_drivers_register -EXPORT_SYMBOL vmlinux 0xc9377deb blk_sync_queue -EXPORT_SYMBOL vmlinux 0xc93e8461 acpi_get_event_resources -EXPORT_SYMBOL vmlinux 0xc94c5409 fwnode_mdiobus_register_phy -EXPORT_SYMBOL vmlinux 0xc94e76c5 page_pool_alloc_frag -EXPORT_SYMBOL vmlinux 0xc951493b __getblk_gfp -EXPORT_SYMBOL vmlinux 0xc9634df9 in6addr_linklocal_allrouters -EXPORT_SYMBOL vmlinux 0xc963dab8 dev_mc_sync -EXPORT_SYMBOL vmlinux 0xc972449f mempool_alloc_slab -EXPORT_SYMBOL vmlinux 0xc9822234 clk_register_clkdev -EXPORT_SYMBOL vmlinux 0xc9831ad7 flow_keys_dissector -EXPORT_SYMBOL vmlinux 0xc98f3397 blk_integrity_unregister -EXPORT_SYMBOL vmlinux 0xc99bd384 md_bitmap_unplug -EXPORT_SYMBOL vmlinux 0xc99e2a55 twl_rev -EXPORT_SYMBOL vmlinux 0xc9a7b3da set_posix_acl -EXPORT_SYMBOL vmlinux 0xc9a97a66 netdev_class_remove_file_ns -EXPORT_SYMBOL vmlinux 0xc9aa4301 rproc_vq_interrupt -EXPORT_SYMBOL vmlinux 0xc9aa4bbb pci_enable_msix_range -EXPORT_SYMBOL vmlinux 0xc9bf73a6 acpi_device_hid -EXPORT_SYMBOL vmlinux 0xc9c9b24a __cond_resched_rwlock_write -EXPORT_SYMBOL vmlinux 0xc9ca2a2b scsi_add_host_with_dma -EXPORT_SYMBOL vmlinux 0xc9ceb078 napi_disable -EXPORT_SYMBOL vmlinux 0xc9d28148 security_sctp_sk_clone -EXPORT_SYMBOL vmlinux 0xc9dd4425 module_layout -EXPORT_SYMBOL vmlinux 0xc9df055a xfrm_policy_walk_init -EXPORT_SYMBOL vmlinux 0xc9e45a45 devm_pci_remap_cfg_resource -EXPORT_SYMBOL vmlinux 0xc9ed0401 imx_sc_rm_is_resource_owned -EXPORT_SYMBOL vmlinux 0xc9f62923 call_fib_notifiers -EXPORT_SYMBOL vmlinux 0xc9f7c096 blk_pre_runtime_resume -EXPORT_SYMBOL vmlinux 0xc9fbb629 tcf_get_next_proto -EXPORT_SYMBOL vmlinux 0xca0a88cc phy_driver_unregister -EXPORT_SYMBOL vmlinux 0xca15413f ZSTD_resetDStream -EXPORT_SYMBOL vmlinux 0xca1e0258 neigh_parms_alloc -EXPORT_SYMBOL vmlinux 0xca21ebd3 bitmap_free -EXPORT_SYMBOL vmlinux 0xca37eed5 radix_tree_insert -EXPORT_SYMBOL vmlinux 0xca431c05 wake_bit_function -EXPORT_SYMBOL vmlinux 0xca43771b dec_node_page_state -EXPORT_SYMBOL vmlinux 0xca62afaf xudma_rflow_is_gp -EXPORT_SYMBOL vmlinux 0xca9360b5 rb_next -EXPORT_SYMBOL vmlinux 0xcab90267 inode_get_bytes -EXPORT_SYMBOL vmlinux 0xcac03982 cdrom_get_media_event -EXPORT_SYMBOL vmlinux 0xcac33190 scsi_host_get -EXPORT_SYMBOL vmlinux 0xcad1aca8 acpi_exception -EXPORT_SYMBOL vmlinux 0xcaf137f5 keyring_search -EXPORT_SYMBOL vmlinux 0xcaf2c603 scsi_sd_pm_domain -EXPORT_SYMBOL vmlinux 0xcb05a114 user_path_create -EXPORT_SYMBOL vmlinux 0xcb3ae215 call_blocking_lsm_notifier -EXPORT_SYMBOL vmlinux 0xcb44a5bb iov_iter_pipe -EXPORT_SYMBOL vmlinux 0xcb50208e skb_seq_read -EXPORT_SYMBOL vmlinux 0xcb733bf2 acpi_bus_set_power -EXPORT_SYMBOL vmlinux 0xcb734260 iter_file_splice_write -EXPORT_SYMBOL vmlinux 0xcb874dce skb_flow_dissect_tunnel_info -EXPORT_SYMBOL vmlinux 0xcb8fca80 pid_task -EXPORT_SYMBOL vmlinux 0xcbb08287 simple_write_begin -EXPORT_SYMBOL vmlinux 0xcbb5e6dd param_ops_short -EXPORT_SYMBOL vmlinux 0xcbbe3d51 pskb_extract -EXPORT_SYMBOL vmlinux 0xcbc16a4c jbd2_journal_try_to_free_buffers -EXPORT_SYMBOL vmlinux 0xcbc1b532 inode_permission -EXPORT_SYMBOL vmlinux 0xcbc88a23 ZSTD_isFrame -EXPORT_SYMBOL vmlinux 0xcbd1e8e5 pcie_get_width_cap -EXPORT_SYMBOL vmlinux 0xcbd4898c fortify_panic -EXPORT_SYMBOL vmlinux 0xcbd7f06f __alloc_bucket_spinlocks -EXPORT_SYMBOL vmlinux 0xcbeb6d6e filemap_fdatawait_range_keep_errors -EXPORT_SYMBOL vmlinux 0xcbfb33e4 init_opal_dev -EXPORT_SYMBOL vmlinux 0xcc10fadd blk_rq_map_kern -EXPORT_SYMBOL vmlinux 0xcc146003 dev_get_phys_port_id -EXPORT_SYMBOL vmlinux 0xcc22758e xp_dma_sync_for_cpu_slow -EXPORT_SYMBOL vmlinux 0xcc23002a hdmi_infoframe_pack_only -EXPORT_SYMBOL vmlinux 0xcc248d26 serial8250_suspend_port -EXPORT_SYMBOL vmlinux 0xcc29144a alloc_buffer_head -EXPORT_SYMBOL vmlinux 0xcc30daac rps_may_expire_flow -EXPORT_SYMBOL vmlinux 0xcc328a5c reservation_ww_class -EXPORT_SYMBOL vmlinux 0xcc395189 filemap_invalidate_unlock_two -EXPORT_SYMBOL vmlinux 0xcc3db880 find_inode_by_ino_rcu -EXPORT_SYMBOL vmlinux 0xcc445ceb __sg_page_iter_dma_next -EXPORT_SYMBOL vmlinux 0xcc4e5f30 twl6040_reg_write -EXPORT_SYMBOL vmlinux 0xcc5005fe msleep_interruptible -EXPORT_SYMBOL vmlinux 0xcc5c2df4 trace_print_symbols_seq -EXPORT_SYMBOL vmlinux 0xcc5d22d9 can_do_mlock -EXPORT_SYMBOL vmlinux 0xcc63815e mmc_wait_for_req -EXPORT_SYMBOL vmlinux 0xcc6d2839 rt_mutex_base_init -EXPORT_SYMBOL vmlinux 0xcc7537d5 radix_tree_tag_set -EXPORT_SYMBOL vmlinux 0xcc812cfc skb_eth_pop -EXPORT_SYMBOL vmlinux 0xcc8231cd skb_free_datagram -EXPORT_SYMBOL vmlinux 0xcc97bab8 __vlan_find_dev_deep_rcu -EXPORT_SYMBOL vmlinux 0xcca5839d xen_vcpu_id -EXPORT_SYMBOL vmlinux 0xccb3b1f1 param_set_invbool -EXPORT_SYMBOL vmlinux 0xccbf9d8f netif_set_real_num_queues -EXPORT_SYMBOL vmlinux 0xccd46905 vme_init_bridge -EXPORT_SYMBOL vmlinux 0xccd4c999 __sg_page_iter_start -EXPORT_SYMBOL vmlinux 0xccde4fac phy_validate_pause -EXPORT_SYMBOL vmlinux 0xccee178a starget_for_each_device -EXPORT_SYMBOL vmlinux 0xccef37e4 ZSTD_DStreamOutSize -EXPORT_SYMBOL vmlinux 0xccf3c0da ns_capable_setid -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 0xcd0e9886 security_d_instantiate -EXPORT_SYMBOL vmlinux 0xcd1c2402 blk_queue_max_segments -EXPORT_SYMBOL vmlinux 0xcd256667 tcp_md5_needed -EXPORT_SYMBOL vmlinux 0xcd279169 nla_find -EXPORT_SYMBOL vmlinux 0xcd27e533 config_item_set_name -EXPORT_SYMBOL vmlinux 0xcd2bc300 devm_ioremap_wc -EXPORT_SYMBOL vmlinux 0xcd402579 __breadahead_gfp -EXPORT_SYMBOL vmlinux 0xcd59c37f d_move -EXPORT_SYMBOL vmlinux 0xcd7536bd wait_on_page_private_2 -EXPORT_SYMBOL vmlinux 0xcd7a42b4 __cleancache_invalidate_page -EXPORT_SYMBOL vmlinux 0xcd87b0dd mutex_lock -EXPORT_SYMBOL vmlinux 0xcd8ce890 acpi_format_exception -EXPORT_SYMBOL vmlinux 0xcd9d3689 finish_wait -EXPORT_SYMBOL vmlinux 0xcdb38c03 scsi_device_get -EXPORT_SYMBOL vmlinux 0xcdb56d6f dev_uc_unsync -EXPORT_SYMBOL vmlinux 0xcdc39c9e security_ismaclabel -EXPORT_SYMBOL vmlinux 0xcdc447c8 pnp_is_active -EXPORT_SYMBOL vmlinux 0xcdce1b5b __alloc_disk_node -EXPORT_SYMBOL vmlinux 0xcde77bcc free_opal_dev -EXPORT_SYMBOL vmlinux 0xcdf5a09c scsi_done -EXPORT_SYMBOL vmlinux 0xce036f24 sg_split -EXPORT_SYMBOL vmlinux 0xce12014e udplite_prot -EXPORT_SYMBOL vmlinux 0xce145ee2 devm_pci_remap_cfgspace -EXPORT_SYMBOL vmlinux 0xce2840e7 irq_set_irq_wake -EXPORT_SYMBOL vmlinux 0xce3056a8 input_set_keycode -EXPORT_SYMBOL vmlinux 0xce365911 of_get_cpu_state_node -EXPORT_SYMBOL vmlinux 0xce445a9b tcp_make_synack -EXPORT_SYMBOL vmlinux 0xce4cdb8e fb_find_best_mode -EXPORT_SYMBOL vmlinux 0xce4e47b6 __kfifo_skip_r -EXPORT_SYMBOL vmlinux 0xce54eaa3 mmc_retune_unpause -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 0xce79a115 xp_free -EXPORT_SYMBOL vmlinux 0xce89995b __wait_on_buffer -EXPORT_SYMBOL vmlinux 0xce8ce0af invalidate_inode_buffers -EXPORT_SYMBOL vmlinux 0xcea3e847 fwnode_phy_find_device -EXPORT_SYMBOL vmlinux 0xceab0311 strchrnul -EXPORT_SYMBOL vmlinux 0xcead67d9 input_alloc_absinfo -EXPORT_SYMBOL vmlinux 0xceadfcb3 scsi_print_sense_hdr -EXPORT_SYMBOL vmlinux 0xcebb170b of_graph_parse_endpoint -EXPORT_SYMBOL vmlinux 0xceca6738 pci_pme_capable -EXPORT_SYMBOL vmlinux 0xced415a2 submit_bio_wait -EXPORT_SYMBOL vmlinux 0xced6cc62 of_parse_phandle -EXPORT_SYMBOL vmlinux 0xced6fd06 mii_ethtool_get_link_ksettings -EXPORT_SYMBOL vmlinux 0xcedb65b1 skb_put -EXPORT_SYMBOL vmlinux 0xcedcfa29 uart_match_port -EXPORT_SYMBOL vmlinux 0xcee77e58 iget5_locked -EXPORT_SYMBOL vmlinux 0xcefcd99a serial8250_unregister_port -EXPORT_SYMBOL vmlinux 0xcf088b72 input_set_min_poll_interval -EXPORT_SYMBOL vmlinux 0xcf0f9cb4 inet_addr_type_dev_table -EXPORT_SYMBOL vmlinux 0xcf2a6966 up -EXPORT_SYMBOL vmlinux 0xcf4843f1 pci_free_irq_vectors -EXPORT_SYMBOL vmlinux 0xcf51eb31 d_alloc_name -EXPORT_SYMBOL vmlinux 0xcf5ed26d discard_new_inode -EXPORT_SYMBOL vmlinux 0xcf612246 blk_mq_start_hw_queues -EXPORT_SYMBOL vmlinux 0xcf65a20e get_phy_device -EXPORT_SYMBOL vmlinux 0xcf90619c udp_sendmsg -EXPORT_SYMBOL vmlinux 0xcf9b558d touchscreen_set_mt_pos -EXPORT_SYMBOL vmlinux 0xcf9b73b8 uart_suspend_port -EXPORT_SYMBOL vmlinux 0xcfb0bb9c xp_raw_get_dma -EXPORT_SYMBOL vmlinux 0xcfc2fba5 of_find_node_with_property -EXPORT_SYMBOL vmlinux 0xcfc6652b blk_queue_max_write_zeroes_sectors -EXPORT_SYMBOL vmlinux 0xcfd884a8 __hsiphash_unaligned -EXPORT_SYMBOL vmlinux 0xcfdb7eb1 iov_iter_discard -EXPORT_SYMBOL vmlinux 0xcfe01164 clk_get -EXPORT_SYMBOL vmlinux 0xcfe5780f security_inode_invalidate_secctx -EXPORT_SYMBOL vmlinux 0xcfeb98a8 acpi_processor_register_performance -EXPORT_SYMBOL vmlinux 0xcffa5bdb pnp_register_card_driver -EXPORT_SYMBOL vmlinux 0xcffaccaa serio_rescan -EXPORT_SYMBOL vmlinux 0xd007f252 pmem_should_map_pages -EXPORT_SYMBOL vmlinux 0xd015fa43 jbd2_fc_begin_commit -EXPORT_SYMBOL vmlinux 0xd01a4774 proc_set_size -EXPORT_SYMBOL vmlinux 0xd01f2f5b mark_buffer_dirty -EXPORT_SYMBOL vmlinux 0xd02031c5 vfs_mkobj -EXPORT_SYMBOL vmlinux 0xd035f21d rproc_del -EXPORT_SYMBOL vmlinux 0xd03b03db fs_context_for_submount -EXPORT_SYMBOL vmlinux 0xd040bd37 md_integrity_register -EXPORT_SYMBOL vmlinux 0xd0414ba2 rproc_elf_find_loaded_rsc_table -EXPORT_SYMBOL vmlinux 0xd04c1a64 sysctl_devconf_inherit_init_net -EXPORT_SYMBOL vmlinux 0xd0558c82 simple_lookup -EXPORT_SYMBOL vmlinux 0xd0654aba woken_wake_function -EXPORT_SYMBOL vmlinux 0xd0760fc0 kfree_sensitive -EXPORT_SYMBOL vmlinux 0xd08adb2b trace_seq_hex_dump -EXPORT_SYMBOL vmlinux 0xd0ae5f55 __printk_cpu_trylock -EXPORT_SYMBOL vmlinux 0xd0b667fd seq_hex_dump -EXPORT_SYMBOL vmlinux 0xd0b74705 acpi_install_interface -EXPORT_SYMBOL vmlinux 0xd0ba0258 mipi_dsi_dcs_set_tear_on -EXPORT_SYMBOL vmlinux 0xd0cc34f7 vfs_create_mount -EXPORT_SYMBOL vmlinux 0xd0fe8d51 sg_pcopy_from_buffer -EXPORT_SYMBOL vmlinux 0xd10da418 param_ops_ushort -EXPORT_SYMBOL vmlinux 0xd111bd6d dev_uc_add -EXPORT_SYMBOL vmlinux 0xd122df37 mutex_unlock -EXPORT_SYMBOL vmlinux 0xd1363cc1 ucs2_strsize -EXPORT_SYMBOL vmlinux 0xd1385b91 mii_check_gmii_support -EXPORT_SYMBOL vmlinux 0xd1507e70 skb_copy_datagram_from_iter -EXPORT_SYMBOL vmlinux 0xd152145d pcix_set_mmrbc -EXPORT_SYMBOL vmlinux 0xd1569740 mini_qdisc_pair_block_init -EXPORT_SYMBOL vmlinux 0xd158e771 iommu_put_dma_cookie -EXPORT_SYMBOL vmlinux 0xd174f3fa __kfree_skb -EXPORT_SYMBOL vmlinux 0xd1816f32 frontswap_writethrough -EXPORT_SYMBOL vmlinux 0xd1934cdf inet_proto_csum_replace4 -EXPORT_SYMBOL vmlinux 0xd194ddf9 acpi_gpe_count -EXPORT_SYMBOL vmlinux 0xd19c4499 xfrm_find_acq -EXPORT_SYMBOL vmlinux 0xd1a4153a of_translate_address -EXPORT_SYMBOL vmlinux 0xd1c16797 xfrm_state_lookup -EXPORT_SYMBOL vmlinux 0xd1d38f26 tegra_dfll_runtime_suspend -EXPORT_SYMBOL vmlinux 0xd1d87e92 scsi_mlreturn_string -EXPORT_SYMBOL vmlinux 0xd1deafdc seq_path -EXPORT_SYMBOL vmlinux 0xd1e03087 __var_waitqueue -EXPORT_SYMBOL vmlinux 0xd1e0a69e eth_header -EXPORT_SYMBOL vmlinux 0xd1f38a4e sched_autogroup_detach -EXPORT_SYMBOL vmlinux 0xd1f70544 udp_seq_stop -EXPORT_SYMBOL vmlinux 0xd2051916 qcom_scm_cpu_power_down -EXPORT_SYMBOL vmlinux 0xd229491f arp_xmit -EXPORT_SYMBOL vmlinux 0xd22edb80 unpin_user_pages_dirty_lock -EXPORT_SYMBOL vmlinux 0xd2421e3a mnt_drop_write_file -EXPORT_SYMBOL vmlinux 0xd24a0ca0 tcf_register_action -EXPORT_SYMBOL vmlinux 0xd253d12a of_phy_is_fixed_link -EXPORT_SYMBOL vmlinux 0xd2572952 set_page_dirty -EXPORT_SYMBOL vmlinux 0xd2582f8f __SCK__tp_func_mmap_lock_acquire_returned -EXPORT_SYMBOL vmlinux 0xd25b9575 kill_pid -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 0xd2800691 nf_conntrack_destroy -EXPORT_SYMBOL vmlinux 0xd2a09d20 __skb_try_recv_datagram -EXPORT_SYMBOL vmlinux 0xd2b7931d tcf_qevent_validate_change -EXPORT_SYMBOL vmlinux 0xd2bafde7 mr_vif_seq_next -EXPORT_SYMBOL vmlinux 0xd2c454ef mdio_driver_unregister -EXPORT_SYMBOL vmlinux 0xd2c99738 __kmalloc_track_caller -EXPORT_SYMBOL vmlinux 0xd2cca10d cros_ec_get_next_event -EXPORT_SYMBOL vmlinux 0xd2ce95b0 genphy_update_link -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 0xd2f7ba0d netpoll_poll_dev -EXPORT_SYMBOL vmlinux 0xd2f81f7d gen_pool_add_owner -EXPORT_SYMBOL vmlinux 0xd3067d6d jbd2_journal_set_triggers -EXPORT_SYMBOL vmlinux 0xd3070fed __skb_checksum_complete_head -EXPORT_SYMBOL vmlinux 0xd311c74b __put_cred -EXPORT_SYMBOL vmlinux 0xd3133c1f flow_rule_match_basic -EXPORT_SYMBOL vmlinux 0xd313c9b0 unregister_cdrom -EXPORT_SYMBOL vmlinux 0xd31ccb06 of_machine_is_compatible -EXPORT_SYMBOL vmlinux 0xd3259e75 unregister_mii_timestamper -EXPORT_SYMBOL vmlinux 0xd3290752 wait_on_page_bit -EXPORT_SYMBOL vmlinux 0xd3303b0f remove_proc_entry -EXPORT_SYMBOL vmlinux 0xd339b36f scsi_remove_device -EXPORT_SYMBOL vmlinux 0xd33ab9f8 simple_empty -EXPORT_SYMBOL vmlinux 0xd3543063 memcg_kmem_enabled_key -EXPORT_SYMBOL vmlinux 0xd3559ef4 __memset -EXPORT_SYMBOL vmlinux 0xd35a6d31 mempool_kmalloc -EXPORT_SYMBOL vmlinux 0xd35cce70 _raw_spin_unlock_irqrestore -EXPORT_SYMBOL vmlinux 0xd36b88c2 netdev_adjacent_change_commit -EXPORT_SYMBOL vmlinux 0xd36dc10c get_random_u32 -EXPORT_SYMBOL vmlinux 0xd36e3d59 prandom_bytes_state -EXPORT_SYMBOL vmlinux 0xd379e165 pci_enable_ptm -EXPORT_SYMBOL vmlinux 0xd37cb072 rproc_coredump_add_custom_segment -EXPORT_SYMBOL vmlinux 0xd380e614 acpi_dev_hid_uid_match -EXPORT_SYMBOL vmlinux 0xd391c25b __cpuhp_remove_state_cpuslocked -EXPORT_SYMBOL vmlinux 0xd3a5d2c9 scsi_report_device_reset -EXPORT_SYMBOL vmlinux 0xd3e84b39 xsk_tx_release -EXPORT_SYMBOL vmlinux 0xd3eaf1ed devlink_dpipe_entry_clear -EXPORT_SYMBOL vmlinux 0xd3f9bd56 phy_register_fixup_for_id -EXPORT_SYMBOL vmlinux 0xd3fba534 qcom_scm_set_cold_boot_addr -EXPORT_SYMBOL vmlinux 0xd406d266 fb_mode_is_equal -EXPORT_SYMBOL vmlinux 0xd4306ae3 param_ops_string -EXPORT_SYMBOL vmlinux 0xd4339de8 qcom_scm_pas_init_image -EXPORT_SYMBOL vmlinux 0xd436f159 max8925_set_bits -EXPORT_SYMBOL vmlinux 0xd443e5e6 __nla_reserve_nohdr -EXPORT_SYMBOL vmlinux 0xd445c7ef pagevec_lookup_range_tag -EXPORT_SYMBOL vmlinux 0xd44e9317 vfs_iter_read -EXPORT_SYMBOL vmlinux 0xd45cc6ca bin2hex -EXPORT_SYMBOL vmlinux 0xd470fff5 ps2_command -EXPORT_SYMBOL vmlinux 0xd4835ef8 dmi_check_system -EXPORT_SYMBOL vmlinux 0xd4a69d20 qm_channel_caam -EXPORT_SYMBOL vmlinux 0xd4a7c9e4 of_iomap -EXPORT_SYMBOL vmlinux 0xd4af3ae7 __i2c_transfer -EXPORT_SYMBOL vmlinux 0xd4bb4a82 inet6addr_validator_notifier_call_chain -EXPORT_SYMBOL vmlinux 0xd4bb5c1c thermal_zone_device_critical -EXPORT_SYMBOL vmlinux 0xd4dcf47a security_path_unlink -EXPORT_SYMBOL vmlinux 0xd4e0c515 posix_acl_update_mode -EXPORT_SYMBOL vmlinux 0xd4ea7de4 kernel_sock_shutdown -EXPORT_SYMBOL vmlinux 0xd4fa5a87 __kfifo_dma_out_prepare -EXPORT_SYMBOL vmlinux 0xd51f9e13 ip6mr_rule_default -EXPORT_SYMBOL vmlinux 0xd5263820 mb_cache_destroy -EXPORT_SYMBOL vmlinux 0xd52eaa00 ipv6_sock_mc_drop -EXPORT_SYMBOL vmlinux 0xd5346bfc acpi_get_possible_resources -EXPORT_SYMBOL vmlinux 0xd548cd1f phy_mii_ioctl -EXPORT_SYMBOL vmlinux 0xd54a87a8 follow_down_one -EXPORT_SYMBOL vmlinux 0xd54c3f88 reuseport_select_sock -EXPORT_SYMBOL vmlinux 0xd559dff0 udp_lib_getsockopt -EXPORT_SYMBOL vmlinux 0xd5652b03 ip6tun_encaps -EXPORT_SYMBOL vmlinux 0xd56efe21 blk_mq_start_request -EXPORT_SYMBOL vmlinux 0xd571b167 netdev_info -EXPORT_SYMBOL vmlinux 0xd57c3c66 __sk_mem_reduce_allocated -EXPORT_SYMBOL vmlinux 0xd58885b7 reuseport_detach_sock -EXPORT_SYMBOL vmlinux 0xd58e70dd net_rand_noise -EXPORT_SYMBOL vmlinux 0xd5b3d0d5 xxh64_copy_state -EXPORT_SYMBOL vmlinux 0xd5cbdb86 dquot_disable -EXPORT_SYMBOL vmlinux 0xd5f23f0c drop_nlink -EXPORT_SYMBOL vmlinux 0xd60736ec gf128mul_free_64k -EXPORT_SYMBOL vmlinux 0xd61ab3f6 tcf_generic_walker -EXPORT_SYMBOL vmlinux 0xd62d507a mmc_register_driver -EXPORT_SYMBOL vmlinux 0xd62ecd49 rps_sock_flow_table -EXPORT_SYMBOL vmlinux 0xd6323e55 inet_rcv_saddr_equal -EXPORT_SYMBOL vmlinux 0xd63fd8d1 utf8nagemax -EXPORT_SYMBOL vmlinux 0xd643239a acpi_leave_sleep_state -EXPORT_SYMBOL vmlinux 0xd644fc03 cros_ec_get_host_event -EXPORT_SYMBOL vmlinux 0xd6562764 blk_mq_stop_hw_queues -EXPORT_SYMBOL vmlinux 0xd659a1e5 netdev_change_features -EXPORT_SYMBOL vmlinux 0xd66c8184 add_device_randomness -EXPORT_SYMBOL vmlinux 0xd672fd94 vfs_getattr -EXPORT_SYMBOL vmlinux 0xd67653e4 twl6040_reg_read -EXPORT_SYMBOL vmlinux 0xd688716b dm_kcopyd_client_create -EXPORT_SYMBOL vmlinux 0xd68c5a1f adjust_resource -EXPORT_SYMBOL vmlinux 0xd68d87f6 inet_dgram_ops -EXPORT_SYMBOL vmlinux 0xd6a91f54 twl_i2c_read -EXPORT_SYMBOL vmlinux 0xd6c92d78 qdisc_offload_dump_helper -EXPORT_SYMBOL vmlinux 0xd6eaaea1 full_name_hash -EXPORT_SYMBOL vmlinux 0xd6ee688f vmalloc -EXPORT_SYMBOL vmlinux 0xd6eeda52 __post_watch_notification -EXPORT_SYMBOL vmlinux 0xd6fc4a58 tcf_qevent_dump -EXPORT_SYMBOL vmlinux 0xd6fde043 is_module_sig_enforced -EXPORT_SYMBOL vmlinux 0xd705b831 put_watch_queue -EXPORT_SYMBOL vmlinux 0xd70a983c gen_pool_first_fit_align -EXPORT_SYMBOL vmlinux 0xd70c63dd pin_user_pages_remote -EXPORT_SYMBOL vmlinux 0xd70d35a1 gf128mul_4k_bbe -EXPORT_SYMBOL vmlinux 0xd70f62b6 acpi_os_execute -EXPORT_SYMBOL vmlinux 0xd7230705 fscrypt_free_bounce_page -EXPORT_SYMBOL vmlinux 0xd723c4fb __xfrm_dst_lookup -EXPORT_SYMBOL vmlinux 0xd726bf59 i2c_transfer -EXPORT_SYMBOL vmlinux 0xd7366cb8 down_write_trylock -EXPORT_SYMBOL vmlinux 0xd737444a setattr_should_drop_sgid -EXPORT_SYMBOL vmlinux 0xd738ca1b phy_unregister_fixup_for_uid -EXPORT_SYMBOL vmlinux 0xd73f7f58 __register_nls -EXPORT_SYMBOL vmlinux 0xd741cd93 padata_alloc -EXPORT_SYMBOL vmlinux 0xd7482f05 vcalloc -EXPORT_SYMBOL vmlinux 0xd75deb2f param_ops_uint -EXPORT_SYMBOL vmlinux 0xd77c0999 tcp_splice_read -EXPORT_SYMBOL vmlinux 0xd7882414 phy_sfp_probe -EXPORT_SYMBOL vmlinux 0xd795e09e flow_rule_match_enc_ipv6_addrs -EXPORT_SYMBOL vmlinux 0xd7bdc9ed start_tty -EXPORT_SYMBOL vmlinux 0xd7bf4a1d tty_port_free_xmit_buf -EXPORT_SYMBOL vmlinux 0xd7bf6711 migrate_page_copy -EXPORT_SYMBOL vmlinux 0xd7c40006 rio_query_mport -EXPORT_SYMBOL vmlinux 0xd7cea56f device_get_mac_address -EXPORT_SYMBOL vmlinux 0xd7d280ad irq_poll_complete -EXPORT_SYMBOL vmlinux 0xd7e56a4e simple_strtoll -EXPORT_SYMBOL vmlinux 0xd7ea7094 nf_unregister_queue_handler -EXPORT_SYMBOL vmlinux 0xd7eead0d tcp_mtup_init -EXPORT_SYMBOL vmlinux 0xd7ff1b8a __ashlti3 -EXPORT_SYMBOL vmlinux 0xd801057a km_query -EXPORT_SYMBOL vmlinux 0xd801fc1e reuseport_migrate_sock -EXPORT_SYMBOL vmlinux 0xd80a7ecf __inc_node_page_state -EXPORT_SYMBOL vmlinux 0xd80fbd52 flow_rule_match_vlan -EXPORT_SYMBOL vmlinux 0xd8131274 qman_alloc_cgrid_range -EXPORT_SYMBOL vmlinux 0xd828f063 xudma_tchanrt_write -EXPORT_SYMBOL vmlinux 0xd8290a75 param_get_long -EXPORT_SYMBOL vmlinux 0xd842c9d9 dev_addr_flush -EXPORT_SYMBOL vmlinux 0xd84da624 netif_set_real_num_rx_queues -EXPORT_SYMBOL vmlinux 0xd85d512e of_parse_phandle_with_fixed_args -EXPORT_SYMBOL vmlinux 0xd87e2be9 clk_bulk_get_all -EXPORT_SYMBOL vmlinux 0xd89da37f movable_zone -EXPORT_SYMBOL vmlinux 0xd8a0c61e dump_align -EXPORT_SYMBOL vmlinux 0xd8a834e7 skb_append -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 0xd8e8fd70 fb_get_buffer_offset -EXPORT_SYMBOL vmlinux 0xd8eabc69 qdisc_watchdog_init_clockid -EXPORT_SYMBOL vmlinux 0xd8f274ba napi_get_frags -EXPORT_SYMBOL vmlinux 0xd8f2b8ed file_update_time -EXPORT_SYMBOL vmlinux 0xd91f6ab6 strnlen_user -EXPORT_SYMBOL vmlinux 0xd92deb6b acpi_evaluate_object -EXPORT_SYMBOL vmlinux 0xd9387145 inet6_csk_route_req -EXPORT_SYMBOL vmlinux 0xd944f2be inet_offloads -EXPORT_SYMBOL vmlinux 0xd948ea8a nf_reinject -EXPORT_SYMBOL vmlinux 0xd94cf1ae generic_file_llseek_size -EXPORT_SYMBOL vmlinux 0xd962b6c6 _dev_crit -EXPORT_SYMBOL vmlinux 0xd968112b of_xudma_dev_get -EXPORT_SYMBOL vmlinux 0xd96c68ec param_get_charp -EXPORT_SYMBOL vmlinux 0xd985dc99 mempool_free_pages -EXPORT_SYMBOL vmlinux 0xd98b927e sock_common_setsockopt -EXPORT_SYMBOL vmlinux 0xd98ddc77 configfs_undepend_item -EXPORT_SYMBOL vmlinux 0xd9a08913 devm_devfreq_register_notifier -EXPORT_SYMBOL vmlinux 0xd9aff312 scsi_print_sense -EXPORT_SYMBOL vmlinux 0xd9b6ed1c xfrm_policy_destroy -EXPORT_SYMBOL vmlinux 0xd9b8eaea __SCK__tp_func_dma_fence_signaled -EXPORT_SYMBOL vmlinux 0xd9bb12ba key_validate -EXPORT_SYMBOL vmlinux 0xd9d8fd16 register_restart_handler -EXPORT_SYMBOL vmlinux 0xd9d952d1 crypto_aes_sbox -EXPORT_SYMBOL vmlinux 0xd9fc4586 jbd2_transaction_committed -EXPORT_SYMBOL vmlinux 0xda081a91 vlan_vid_del -EXPORT_SYMBOL vmlinux 0xda09636c mdio_device_remove -EXPORT_SYMBOL vmlinux 0xda0a5aae ptp_schedule_worker -EXPORT_SYMBOL vmlinux 0xda10443c xudma_tchan_get_id -EXPORT_SYMBOL vmlinux 0xda269e23 blk_queue_chunk_sectors -EXPORT_SYMBOL vmlinux 0xda3d10a8 security_tun_dev_open -EXPORT_SYMBOL vmlinux 0xda72a7ec ZSTD_nextInputType -EXPORT_SYMBOL vmlinux 0xda79799e mmc_cqe_post_req -EXPORT_SYMBOL vmlinux 0xda871644 noop_fsync -EXPORT_SYMBOL vmlinux 0xda89ea3b ip_idents_reserve -EXPORT_SYMBOL vmlinux 0xda8dfa43 dcb_ieee_getapp_mask -EXPORT_SYMBOL vmlinux 0xda9cea48 filemap_range_has_page -EXPORT_SYMBOL vmlinux 0xdaa02946 amba_driver_unregister -EXPORT_SYMBOL vmlinux 0xdab0a94c compat_ptr_ioctl -EXPORT_SYMBOL vmlinux 0xdac4913a bitmap_allocate_region -EXPORT_SYMBOL vmlinux 0xdac608a4 vfs_link -EXPORT_SYMBOL vmlinux 0xdac9a975 tcp_poll -EXPORT_SYMBOL vmlinux 0xdac9fcb6 dev_mc_unsync -EXPORT_SYMBOL vmlinux 0xdacd2591 ppp_output_wakeup -EXPORT_SYMBOL vmlinux 0xdaec288d pr_flush -EXPORT_SYMBOL vmlinux 0xdaf0eb52 tcp_add_backlog -EXPORT_SYMBOL vmlinux 0xdb120568 vme_register_error_handler -EXPORT_SYMBOL vmlinux 0xdb37cd96 shrink_dcache_sb -EXPORT_SYMBOL vmlinux 0xdb3bddf9 ip6_fraglist_init -EXPORT_SYMBOL vmlinux 0xdb60033a xfrm_state_update -EXPORT_SYMBOL vmlinux 0xdb68bbad rfkill_destroy -EXPORT_SYMBOL vmlinux 0xdb6a3fd5 dma_fence_chain_walk -EXPORT_SYMBOL vmlinux 0xdb760f52 __kfifo_free -EXPORT_SYMBOL vmlinux 0xdb7ebe2d make_kuid -EXPORT_SYMBOL vmlinux 0xdbcf041a acpi_install_address_space_handler -EXPORT_SYMBOL vmlinux 0xdbcfe0b2 ilookup -EXPORT_SYMBOL vmlinux 0xdbd236c4 netpoll_parse_options -EXPORT_SYMBOL vmlinux 0xdbd76b55 rproc_remove_subdev -EXPORT_SYMBOL vmlinux 0xdbd9fdcb unregister_quota_format -EXPORT_SYMBOL vmlinux 0xdbdb6640 lockref_get_not_zero -EXPORT_SYMBOL vmlinux 0xdbdf6c92 ioport_resource -EXPORT_SYMBOL vmlinux 0xdbe705f9 inode_init_always -EXPORT_SYMBOL vmlinux 0xdc0e4855 timer_delete -EXPORT_SYMBOL vmlinux 0xdc14eda7 pci_pci_problems -EXPORT_SYMBOL vmlinux 0xdc2ce1c1 genphy_suspend -EXPORT_SYMBOL vmlinux 0xdc34158f fman_port_init -EXPORT_SYMBOL vmlinux 0xdc3fcbc9 __sw_hweight8 -EXPORT_SYMBOL vmlinux 0xdc49c104 prepare_creds -EXPORT_SYMBOL vmlinux 0xdc49c198 reciprocal_value_adv -EXPORT_SYMBOL vmlinux 0xdc512134 backlight_register_notifier -EXPORT_SYMBOL vmlinux 0xdc633ad2 nvdimm_bus_unlock -EXPORT_SYMBOL vmlinux 0xdc6a078f skb_copy_and_csum_dev -EXPORT_SYMBOL vmlinux 0xdc72b8ed bpf_prog_get_type_path -EXPORT_SYMBOL vmlinux 0xdc73ae89 iunique -EXPORT_SYMBOL vmlinux 0xdc8059fd fsync_bdev -EXPORT_SYMBOL vmlinux 0xdc85a66d vga_set_legacy_decoding -EXPORT_SYMBOL vmlinux 0xdca8c3d4 logic_outb -EXPORT_SYMBOL vmlinux 0xdcb764ad memset -EXPORT_SYMBOL vmlinux 0xdcc5be4f uart_write_wakeup -EXPORT_SYMBOL vmlinux 0xdcc7a032 of_phy_get_and_connect -EXPORT_SYMBOL vmlinux 0xdcd08528 netpoll_print_options -EXPORT_SYMBOL vmlinux 0xdcdc0040 slhc_compress -EXPORT_SYMBOL vmlinux 0xdcdd16e4 is_nd_dax -EXPORT_SYMBOL vmlinux 0xdcf44e5c blk_mq_start_hw_queue -EXPORT_SYMBOL vmlinux 0xdcf5b076 devfreq_add_device -EXPORT_SYMBOL vmlinux 0xdcf7544d genphy_c37_config_aneg -EXPORT_SYMBOL vmlinux 0xdd00447a acpi_resource_to_address64 -EXPORT_SYMBOL vmlinux 0xdd120af1 of_phy_find_device -EXPORT_SYMBOL vmlinux 0xdd14306d rpmh_write_async -EXPORT_SYMBOL vmlinux 0xdd18a993 acpi_check_dsm -EXPORT_SYMBOL vmlinux 0xdd2c169b mb_cache_create -EXPORT_SYMBOL vmlinux 0xdd41fe76 vlan_filter_drop_vids -EXPORT_SYMBOL vmlinux 0xdd5d0c78 dev_graft_qdisc -EXPORT_SYMBOL vmlinux 0xdd62e0f7 dev_get_stats -EXPORT_SYMBOL vmlinux 0xdd64e639 strscpy -EXPORT_SYMBOL vmlinux 0xdd732f7b ip4_datagram_connect -EXPORT_SYMBOL vmlinux 0xdd7e3192 qcom_scm_pas_auth_and_reset -EXPORT_SYMBOL vmlinux 0xdd849d51 scsi_get_sense_info_fld -EXPORT_SYMBOL vmlinux 0xdd8f17ee page_pool_alloc_pages -EXPORT_SYMBOL vmlinux 0xdd97d6ca netif_device_detach -EXPORT_SYMBOL vmlinux 0xddad7952 acpi_dbg_level -EXPORT_SYMBOL vmlinux 0xddafdd31 vm_node_stat -EXPORT_SYMBOL vmlinux 0xddb2552f __skb_recv_udp -EXPORT_SYMBOL vmlinux 0xddbbdcda tty_lock -EXPORT_SYMBOL vmlinux 0xddc18a50 qdisc_watchdog_cancel -EXPORT_SYMBOL vmlinux 0xddd350f3 sget -EXPORT_SYMBOL vmlinux 0xddd65411 skb_queue_head -EXPORT_SYMBOL vmlinux 0xddd9f5cd fs_context_for_mount -EXPORT_SYMBOL vmlinux 0xdddb2d0e vmalloc_to_page -EXPORT_SYMBOL vmlinux 0xddf20940 pps_register_source -EXPORT_SYMBOL vmlinux 0xddf6ad7a completion_done -EXPORT_SYMBOL vmlinux 0xde06eb70 __scsi_add_device -EXPORT_SYMBOL vmlinux 0xde139dcb __ip_mc_dec_group -EXPORT_SYMBOL vmlinux 0xde37d36b __napi_schedule_irqoff -EXPORT_SYMBOL vmlinux 0xde3f9c91 phy_read_mmd -EXPORT_SYMBOL vmlinux 0xde3fe824 pldmfw_flash_image -EXPORT_SYMBOL vmlinux 0xde41ce9e __bforget -EXPORT_SYMBOL vmlinux 0xde5634a8 linkwatch_fire_event -EXPORT_SYMBOL vmlinux 0xde6400d3 vmf_insert_pfn_prot -EXPORT_SYMBOL vmlinux 0xde641f99 ipv6_sock_mc_join -EXPORT_SYMBOL vmlinux 0xde738e75 dma_fence_chain_init -EXPORT_SYMBOL vmlinux 0xdec85453 mdiobus_write -EXPORT_SYMBOL vmlinux 0xdec866d9 get_user_pages_locked -EXPORT_SYMBOL vmlinux 0xdec9a157 pci_restore_state -EXPORT_SYMBOL vmlinux 0xded39a6b gen_kill_estimator -EXPORT_SYMBOL vmlinux 0xdef7c893 fb_match_mode -EXPORT_SYMBOL vmlinux 0xdefa975c pci_bus_read_config_word -EXPORT_SYMBOL vmlinux 0xdefc6246 blk_queue_physical_block_size -EXPORT_SYMBOL vmlinux 0xdf256037 kstrtou8_from_user -EXPORT_SYMBOL vmlinux 0xdf26f1df d_find_alias -EXPORT_SYMBOL vmlinux 0xdf2c2742 rb_last -EXPORT_SYMBOL vmlinux 0xdf2deb36 proto_register -EXPORT_SYMBOL vmlinux 0xdf31bf6b __mod_lruvec_page_state -EXPORT_SYMBOL vmlinux 0xdf50d4df disk_end_io_acct -EXPORT_SYMBOL vmlinux 0xdf53fdb3 __pskb_pull_tail -EXPORT_SYMBOL vmlinux 0xdf54a8f7 netlink_unregister_notifier -EXPORT_SYMBOL vmlinux 0xdf66f89c proc_set_user -EXPORT_SYMBOL vmlinux 0xdf7ed036 mmc_get_card -EXPORT_SYMBOL vmlinux 0xdf8c695a __ndelay -EXPORT_SYMBOL vmlinux 0xdf929370 fs_overflowgid -EXPORT_SYMBOL vmlinux 0xdf93b9d8 timespec64_to_jiffies -EXPORT_SYMBOL vmlinux 0xdf93c9f2 console_start -EXPORT_SYMBOL vmlinux 0xdfabd6f9 skb_dequeue_tail -EXPORT_SYMBOL vmlinux 0xdfb10e6a generic_listxattr -EXPORT_SYMBOL vmlinux 0xdfc9bec0 devm_of_find_backlight -EXPORT_SYMBOL vmlinux 0xdfcb2e88 pnp_device_attach -EXPORT_SYMBOL vmlinux 0xdfcc992c current_work -EXPORT_SYMBOL vmlinux 0xdfd9e188 __break_lease -EXPORT_SYMBOL vmlinux 0xdfdfa9e7 utf8nfdi -EXPORT_SYMBOL vmlinux 0xdff905e5 vme_slave_free -EXPORT_SYMBOL vmlinux 0xdffae40f abort_creds -EXPORT_SYMBOL vmlinux 0xdffc80fc vesa_modes -EXPORT_SYMBOL vmlinux 0xdfffdf12 phy_set_max_speed -EXPORT_SYMBOL vmlinux 0xe004da91 tcp_get_md5sig_pool -EXPORT_SYMBOL vmlinux 0xe00a3e8a ip_sock_set_recverr -EXPORT_SYMBOL vmlinux 0xe016e30a bio_alloc_bioset -EXPORT_SYMBOL vmlinux 0xe01e9af1 eth_header_cache -EXPORT_SYMBOL vmlinux 0xe02ba436 trace_print_hex_seq -EXPORT_SYMBOL vmlinux 0xe0419ac4 kstrtos16 -EXPORT_SYMBOL vmlinux 0xe064acff __cond_resched_lock -EXPORT_SYMBOL vmlinux 0xe0789790 input_get_timestamp -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 0xe09cab83 dquot_release -EXPORT_SYMBOL vmlinux 0xe0a323f6 __do_once_slow_start -EXPORT_SYMBOL vmlinux 0xe0a5be4a blk_mq_delay_run_hw_queue -EXPORT_SYMBOL vmlinux 0xe0b13336 argv_free -EXPORT_SYMBOL vmlinux 0xe0b1385f blk_mq_free_tag_set -EXPORT_SYMBOL vmlinux 0xe0b584e9 security_socket_socketpair -EXPORT_SYMBOL vmlinux 0xe0bef318 icst_hz_to_vco -EXPORT_SYMBOL vmlinux 0xe0f415ee ns_capable_noaudit -EXPORT_SYMBOL vmlinux 0xe0f508c4 of_find_node_by_phandle -EXPORT_SYMBOL vmlinux 0xe0f8d584 flow_block_cb_lookup -EXPORT_SYMBOL vmlinux 0xe113bbbc csum_partial -EXPORT_SYMBOL vmlinux 0xe11b449a unregister_netdevice_notifier_dev_net -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 0xe14bb60c tty_register_device -EXPORT_SYMBOL vmlinux 0xe1599b34 ip6_err_gen_icmpv6_unreach -EXPORT_SYMBOL vmlinux 0xe17df0ac jbd2_journal_begin_ordered_truncate -EXPORT_SYMBOL vmlinux 0xe18e4c87 get_cached_acl_rcu -EXPORT_SYMBOL vmlinux 0xe1903d28 request_firmware -EXPORT_SYMBOL vmlinux 0xe193ec5b lock_rename -EXPORT_SYMBOL vmlinux 0xe1b8d124 pcie_capability_write_word -EXPORT_SYMBOL vmlinux 0xe1db083d xfrm_state_insert -EXPORT_SYMBOL vmlinux 0xe1dcf64a audit_log_format -EXPORT_SYMBOL vmlinux 0xe1f20c98 i2c_smbus_write_byte -EXPORT_SYMBOL vmlinux 0xe1f72e70 devm_input_allocate_device -EXPORT_SYMBOL vmlinux 0xe1f9e8e7 ppp_channel_index -EXPORT_SYMBOL vmlinux 0xe20674b6 pci_claim_resource -EXPORT_SYMBOL vmlinux 0xe2144520 is_acpi_data_node -EXPORT_SYMBOL vmlinux 0xe21f18ac __genradix_iter_peek -EXPORT_SYMBOL vmlinux 0xe22d07ae fscrypt_ioctl_set_policy -EXPORT_SYMBOL vmlinux 0xe2310b4b mipi_dsi_dcs_soft_reset -EXPORT_SYMBOL vmlinux 0xe238541e devm_of_iomap -EXPORT_SYMBOL vmlinux 0xe271128b cpumask_any_distribute -EXPORT_SYMBOL vmlinux 0xe273d75d alloc_cpu_rmap -EXPORT_SYMBOL vmlinux 0xe273d941 inode_init_once -EXPORT_SYMBOL vmlinux 0xe284a26f csum_and_copy_to_iter -EXPORT_SYMBOL vmlinux 0xe2c53653 netdev_rx_csum_fault -EXPORT_SYMBOL vmlinux 0xe2c64cb7 sdev_disable_disk_events -EXPORT_SYMBOL vmlinux 0xe2cc2513 vlan_dev_vlan_proto -EXPORT_SYMBOL vmlinux 0xe2d40e5b kmem_cache_shrink -EXPORT_SYMBOL vmlinux 0xe2d5255a strcmp -EXPORT_SYMBOL vmlinux 0xe2d7a974 i2c_smbus_read_i2c_block_data -EXPORT_SYMBOL vmlinux 0xe2ec4a7e cros_ec_query_all -EXPORT_SYMBOL vmlinux 0xe2fd054a rt_read_unlock -EXPORT_SYMBOL vmlinux 0xe32ab4d8 xxh64_digest -EXPORT_SYMBOL vmlinux 0xe32acc84 scsi_ioctl -EXPORT_SYMBOL vmlinux 0xe33a774f empty_aops -EXPORT_SYMBOL vmlinux 0xe3549b75 scsi_target_resume -EXPORT_SYMBOL vmlinux 0xe35d24c0 sock_no_sendpage_locked -EXPORT_SYMBOL vmlinux 0xe3967bef mii_nway_restart -EXPORT_SYMBOL vmlinux 0xe3996387 inet_dev_addr_type -EXPORT_SYMBOL vmlinux 0xe39b2ea5 sha256 -EXPORT_SYMBOL vmlinux 0xe39c1f28 dcb_ieee_getapp_dscp_prio_mask_map -EXPORT_SYMBOL vmlinux 0xe3a3cf07 vfs_fsync_range -EXPORT_SYMBOL vmlinux 0xe3a7ab23 iommu_get_msi_cookie -EXPORT_SYMBOL vmlinux 0xe3b7cea8 _copy_to_iter -EXPORT_SYMBOL vmlinux 0xe3d754bb __blkdev_issue_zeroout -EXPORT_SYMBOL vmlinux 0xe3e7c725 vfs_get_super -EXPORT_SYMBOL vmlinux 0xe3eadc23 devm_backlight_device_register -EXPORT_SYMBOL vmlinux 0xe3ec2f2b alloc_chrdev_region -EXPORT_SYMBOL vmlinux 0xe3f00735 dev_driver_string -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 0xe418479c __xa_insert -EXPORT_SYMBOL vmlinux 0xe423081c blk_rq_map_integrity_sg -EXPORT_SYMBOL vmlinux 0xe42ee50d bio_devname -EXPORT_SYMBOL vmlinux 0xe43b5f27 unregister_sysctl_table -EXPORT_SYMBOL vmlinux 0xe43ca4ab bdev_dax_pgoff -EXPORT_SYMBOL vmlinux 0xe4473fe9 dev_get_by_name -EXPORT_SYMBOL vmlinux 0xe45c7323 tegra_dfll_resume -EXPORT_SYMBOL vmlinux 0xe45cd804 mmc_gpio_set_cd_wake -EXPORT_SYMBOL vmlinux 0xe46021ca _raw_spin_unlock_bh -EXPORT_SYMBOL vmlinux 0xe470fd19 lookup_one_len -EXPORT_SYMBOL vmlinux 0xe47450bc lockref_get -EXPORT_SYMBOL vmlinux 0xe4bbc1dd kimage_voffset -EXPORT_SYMBOL vmlinux 0xe4bc2c2f hdmi_drm_infoframe_pack -EXPORT_SYMBOL vmlinux 0xe4c2b517 serial8250_set_isa_configurator -EXPORT_SYMBOL vmlinux 0xe4c588e0 scmd_printk -EXPORT_SYMBOL vmlinux 0xe4dd8764 nvdimm_namespace_disk_name -EXPORT_SYMBOL vmlinux 0xe4f6d3f7 tcf_idr_create -EXPORT_SYMBOL vmlinux 0xe514bee8 pci_bus_read_dev_vendor_id -EXPORT_SYMBOL vmlinux 0xe51afcaa fwnode_graph_parse_endpoint -EXPORT_SYMBOL vmlinux 0xe523ad75 synchronize_irq -EXPORT_SYMBOL vmlinux 0xe5368fc1 __nla_put_nohdr -EXPORT_SYMBOL vmlinux 0xe542c7a1 ip_cmsg_recv_offset -EXPORT_SYMBOL vmlinux 0xe54def39 fget_raw -EXPORT_SYMBOL vmlinux 0xe57feefb qcom_scm_ocmem_unlock -EXPORT_SYMBOL vmlinux 0xe58090ca security_ib_endport_manage_subnet -EXPORT_SYMBOL vmlinux 0xe59cb424 fifo_set_limit -EXPORT_SYMBOL vmlinux 0xe5a019a5 sock_alloc_send_pskb -EXPORT_SYMBOL vmlinux 0xe5c280d9 skb_abort_seq_read -EXPORT_SYMBOL vmlinux 0xe5c60bd2 percpu_counter_set -EXPORT_SYMBOL vmlinux 0xe5c78a99 do_blank_screen -EXPORT_SYMBOL vmlinux 0xe5d02662 vfs_symlink -EXPORT_SYMBOL vmlinux 0xe5da6f39 ptp_clock_index -EXPORT_SYMBOL vmlinux 0xe5f305b6 md_check_no_bitmap -EXPORT_SYMBOL vmlinux 0xe5fefd69 register_console -EXPORT_SYMBOL vmlinux 0xe60576b2 bfifo_qdisc_ops -EXPORT_SYMBOL vmlinux 0xe6088168 ipv6_dev_get_saddr -EXPORT_SYMBOL vmlinux 0xe61001c8 clear_nlink -EXPORT_SYMBOL vmlinux 0xe613a798 inet_addr_is_any -EXPORT_SYMBOL vmlinux 0xe618388a mempool_create -EXPORT_SYMBOL vmlinux 0xe6191fdd d_alloc -EXPORT_SYMBOL vmlinux 0xe636b163 par_io_of_config -EXPORT_SYMBOL vmlinux 0xe63bfae1 bio_uninit -EXPORT_SYMBOL vmlinux 0xe64d9c21 setup_arg_pages -EXPORT_SYMBOL vmlinux 0xe654b59b remove_wait_queue -EXPORT_SYMBOL vmlinux 0xe65927c8 param_set_uint -EXPORT_SYMBOL vmlinux 0xe672f2bb set_bh_page -EXPORT_SYMBOL vmlinux 0xe68cf435 of_graph_get_remote_port_parent -EXPORT_SYMBOL vmlinux 0xe691ac7f ZSTD_decompressBegin -EXPORT_SYMBOL vmlinux 0xe6d2458e do_trace_netlink_extack -EXPORT_SYMBOL vmlinux 0xe6ecb566 d_instantiate_new -EXPORT_SYMBOL vmlinux 0xe6f9e796 inet_get_local_port_range -EXPORT_SYMBOL vmlinux 0xe7324b9a utf8nfdicf -EXPORT_SYMBOL vmlinux 0xe733a40c rt_write_lock -EXPORT_SYMBOL vmlinux 0xe737697f xp_raw_get_data -EXPORT_SYMBOL vmlinux 0xe745e868 jbd2_journal_clear_err -EXPORT_SYMBOL vmlinux 0xe74bc0d7 netdev_adjacent_change_abort -EXPORT_SYMBOL vmlinux 0xe7698027 ioremap_cache -EXPORT_SYMBOL vmlinux 0xe782b699 serio_unregister_child_port -EXPORT_SYMBOL vmlinux 0xe7b0353b __cpu_active_mask -EXPORT_SYMBOL vmlinux 0xe7d4daac seq_list_next -EXPORT_SYMBOL vmlinux 0xe7f2d455 vfs_statfs -EXPORT_SYMBOL vmlinux 0xe816eecf generic_write_checks -EXPORT_SYMBOL vmlinux 0xe8229084 node_data -EXPORT_SYMBOL vmlinux 0xe82c8e23 mroute6_is_socket -EXPORT_SYMBOL vmlinux 0xe82d4c35 sb_min_blocksize -EXPORT_SYMBOL vmlinux 0xe8316bc3 find_get_pages_range_tag -EXPORT_SYMBOL vmlinux 0xe8341006 inode_set_bytes -EXPORT_SYMBOL vmlinux 0xe8375b44 iov_iter_get_pages_alloc -EXPORT_SYMBOL vmlinux 0xe844c777 __xa_cmpxchg -EXPORT_SYMBOL vmlinux 0xe845c52e dquot_commit -EXPORT_SYMBOL vmlinux 0xe85f2123 acpi_tb_unload_table -EXPORT_SYMBOL vmlinux 0xe8615a07 dst_destroy -EXPORT_SYMBOL vmlinux 0xe86651e8 tty_port_lower_dtr_rts -EXPORT_SYMBOL vmlinux 0xe89fe3d2 __mdiobus_register -EXPORT_SYMBOL vmlinux 0xe8a268bb input_mt_assign_slots -EXPORT_SYMBOL vmlinux 0xe8b47dbe inet_csk_delete_keepalive_timer -EXPORT_SYMBOL vmlinux 0xe8b5c3c3 __tracepoint_module_get -EXPORT_SYMBOL vmlinux 0xe8c58cb9 ip_options_compile -EXPORT_SYMBOL vmlinux 0xe8c6e1ee fb_firmware_edid -EXPORT_SYMBOL vmlinux 0xe8d771b5 mdiobus_is_registered_device -EXPORT_SYMBOL vmlinux 0xe8dbf18b ps2_begin_command -EXPORT_SYMBOL vmlinux 0xe8ee8b42 neigh_proc_dointvec_jiffies -EXPORT_SYMBOL vmlinux 0xe8f9e2ea jbd2_journal_update_sb_errno -EXPORT_SYMBOL vmlinux 0xe90253f0 xudma_rflow_get -EXPORT_SYMBOL vmlinux 0xe909997a bitmap_print_list_to_buf -EXPORT_SYMBOL vmlinux 0xe914e41e strcpy -EXPORT_SYMBOL vmlinux 0xe9212e39 pin_user_pages_unlocked -EXPORT_SYMBOL vmlinux 0xe922e6ae proc_create_mount_point -EXPORT_SYMBOL vmlinux 0xe935f6ce put_fs_context -EXPORT_SYMBOL vmlinux 0xe953b21f get_next_ino -EXPORT_SYMBOL vmlinux 0xe96cd862 xfrm_input -EXPORT_SYMBOL vmlinux 0xe980a3f3 current_time -EXPORT_SYMBOL vmlinux 0xe982de10 dma_fence_wait_timeout -EXPORT_SYMBOL vmlinux 0xe988f8b4 udp_flush_pending_frames -EXPORT_SYMBOL vmlinux 0xe98b8e09 xfrm_policy_bysel_ctx -EXPORT_SYMBOL vmlinux 0xe99eece5 blk_queue_io_opt -EXPORT_SYMBOL vmlinux 0xe9abf41d phy_ethtool_get_wol -EXPORT_SYMBOL vmlinux 0xe9bcf8fc tty_flip_buffer_push -EXPORT_SYMBOL vmlinux 0xe9c7a21b mipi_dsi_attach -EXPORT_SYMBOL vmlinux 0xe9c8a2f2 rproc_of_resm_mem_entry_init -EXPORT_SYMBOL vmlinux 0xe9e8faeb efi_tpm_final_log_size -EXPORT_SYMBOL vmlinux 0xe9ea6e14 dma_resv_add_shared_fence -EXPORT_SYMBOL vmlinux 0xe9f0cc70 migrate_vma_setup -EXPORT_SYMBOL vmlinux 0xe9f7149c zlib_deflate_workspacesize -EXPORT_SYMBOL vmlinux 0xe9f71b31 nd_pfn_probe -EXPORT_SYMBOL vmlinux 0xe9ffc063 down_trylock -EXPORT_SYMBOL vmlinux 0xea0c4a1e msm_pinctrl_remove -EXPORT_SYMBOL vmlinux 0xea1c3e3a arm_smccc_1_2_hvc -EXPORT_SYMBOL vmlinux 0xea29205a xfrm_state_alloc -EXPORT_SYMBOL vmlinux 0xea33d9e0 uart_add_one_port -EXPORT_SYMBOL vmlinux 0xea36977f dm_table_get_md -EXPORT_SYMBOL vmlinux 0xea3c8e4e scsilun_to_int -EXPORT_SYMBOL vmlinux 0xea5314a3 devm_gen_pool_create -EXPORT_SYMBOL vmlinux 0xea6d666d napi_enable -EXPORT_SYMBOL vmlinux 0xea6dcf48 nexthop_res_grp_activity_update -EXPORT_SYMBOL vmlinux 0xea6f9a36 zlib_deflate_dfltcc_enabled -EXPORT_SYMBOL vmlinux 0xea778fab sg_pcopy_to_buffer -EXPORT_SYMBOL vmlinux 0xea9fe215 ida_alloc_range -EXPORT_SYMBOL vmlinux 0xeaa48359 dqput -EXPORT_SYMBOL vmlinux 0xeab5a470 netdev_err -EXPORT_SYMBOL vmlinux 0xeab6f4c4 acpi_check_resource_conflict -EXPORT_SYMBOL vmlinux 0xeaba9aaf ipv6_chk_custom_prefix -EXPORT_SYMBOL vmlinux 0xeac518eb qman_get_qm_portal_config -EXPORT_SYMBOL vmlinux 0xeaceb38b fuse_mount_destroy -EXPORT_SYMBOL vmlinux 0xead8c400 bman_get_bpid -EXPORT_SYMBOL vmlinux 0xeae186e8 sync_inode_metadata -EXPORT_SYMBOL vmlinux 0xeae27f97 dma_resv_init -EXPORT_SYMBOL vmlinux 0xeae3dfd6 __const_udelay -EXPORT_SYMBOL vmlinux 0xeaebe119 vfs_getattr_nosec -EXPORT_SYMBOL vmlinux 0xeafc141f __posix_acl_chmod -EXPORT_SYMBOL vmlinux 0xeafdefda acpi_bus_get_device -EXPORT_SYMBOL vmlinux 0xeb12e1e3 get_unmapped_area -EXPORT_SYMBOL vmlinux 0xeb2077aa mmc_cqe_recovery -EXPORT_SYMBOL vmlinux 0xeb22cad4 iov_iter_revert -EXPORT_SYMBOL vmlinux 0xeb233a45 __kmalloc -EXPORT_SYMBOL vmlinux 0xeb27493b fc_mount -EXPORT_SYMBOL vmlinux 0xeb2ed1c1 mipi_dsi_dcs_nop -EXPORT_SYMBOL vmlinux 0xeb37101c audit_log_end -EXPORT_SYMBOL vmlinux 0xeb389e85 idr_get_next -EXPORT_SYMBOL vmlinux 0xeb39d57a security_task_getsecid_obj -EXPORT_SYMBOL vmlinux 0xeb44339a free_pages_exact -EXPORT_SYMBOL vmlinux 0xeb478ac9 __cleancache_get_page -EXPORT_SYMBOL vmlinux 0xeb5afaf7 dm_get_device -EXPORT_SYMBOL vmlinux 0xeb7f6046 acpi_get_devices -EXPORT_SYMBOL vmlinux 0xeb9732d4 flow_rule_match_ip -EXPORT_SYMBOL vmlinux 0xeb9b25da param_get_int -EXPORT_SYMBOL vmlinux 0xeb9e913d sgl_alloc_order -EXPORT_SYMBOL vmlinux 0xeb9eef52 match_uint -EXPORT_SYMBOL vmlinux 0xebae199c security_skb_classify_flow -EXPORT_SYMBOL vmlinux 0xebc91041 grab_cache_page_write_begin -EXPORT_SYMBOL vmlinux 0xebeb20ea __nla_put -EXPORT_SYMBOL vmlinux 0xebf1ea96 security_old_inode_init_security -EXPORT_SYMBOL vmlinux 0xebf54bf5 n_tty_ioctl_helper -EXPORT_SYMBOL vmlinux 0xec23c49d simple_rename -EXPORT_SYMBOL vmlinux 0xec2b8a42 acpi_walk_namespace -EXPORT_SYMBOL vmlinux 0xec33c668 __SCK__tp_func_spi_transfer_start -EXPORT_SYMBOL vmlinux 0xec41716a qman_alloc_fqid_range -EXPORT_SYMBOL vmlinux 0xec4244eb gen_pool_dma_zalloc_align -EXPORT_SYMBOL vmlinux 0xec4d9e3a clk_get_sys -EXPORT_SYMBOL vmlinux 0xec5d24bf __init_rwsem -EXPORT_SYMBOL vmlinux 0xec71a4e9 input_mt_drop_unused -EXPORT_SYMBOL vmlinux 0xec80ec40 tcp_sock_set_cork -EXPORT_SYMBOL vmlinux 0xec81562f sock_wmalloc -EXPORT_SYMBOL vmlinux 0xec95578a mr_mfc_find_parent -EXPORT_SYMBOL vmlinux 0xecb39f72 phy_start_aneg -EXPORT_SYMBOL vmlinux 0xecc8fc10 fs_param_is_blob -EXPORT_SYMBOL vmlinux 0xecd0ba6e jbd2_journal_forget -EXPORT_SYMBOL vmlinux 0xecd47953 register_netdevice -EXPORT_SYMBOL vmlinux 0xece784c2 rb_first -EXPORT_SYMBOL vmlinux 0xecfd68ef acpi_get_node -EXPORT_SYMBOL vmlinux 0xed00c4fb acpi_os_printf -EXPORT_SYMBOL vmlinux 0xed042244 t10_pi_type3_ip -EXPORT_SYMBOL vmlinux 0xed10ae68 file_ns_capable -EXPORT_SYMBOL vmlinux 0xed267691 block_commit_write -EXPORT_SYMBOL vmlinux 0xed268e51 skb_try_coalesce -EXPORT_SYMBOL vmlinux 0xed47b1b0 gen_pool_for_each_chunk -EXPORT_SYMBOL vmlinux 0xed49d061 release_pages -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 0xed638e47 proc_dointvec -EXPORT_SYMBOL vmlinux 0xed648375 d_alloc_parallel -EXPORT_SYMBOL vmlinux 0xed656e30 udp_encap_disable -EXPORT_SYMBOL vmlinux 0xed6aea77 pci_ep_cfs_add_epc_group -EXPORT_SYMBOL vmlinux 0xed6b43d3 neigh_seq_start -EXPORT_SYMBOL vmlinux 0xed795ca4 wireless_spy_update -EXPORT_SYMBOL vmlinux 0xed7a67bc pci_wake_from_d3 -EXPORT_SYMBOL vmlinux 0xed810a71 get_user_pages -EXPORT_SYMBOL vmlinux 0xed8a2d95 memset64 -EXPORT_SYMBOL vmlinux 0xed97895f pci_request_selected_regions -EXPORT_SYMBOL vmlinux 0xeda7956b posix_acl_chmod -EXPORT_SYMBOL vmlinux 0xeda998cb user_revoke -EXPORT_SYMBOL vmlinux 0xedb3008e genphy_check_and_restart_aneg -EXPORT_SYMBOL vmlinux 0xedb9c2f1 fib_default_rule_add -EXPORT_SYMBOL vmlinux 0xedbaee5e nla_strcmp -EXPORT_SYMBOL vmlinux 0xedc03953 iounmap -EXPORT_SYMBOL vmlinux 0xedca017b scsi_unblock_requests -EXPORT_SYMBOL vmlinux 0xedd8bc68 page_pool_create -EXPORT_SYMBOL vmlinux 0xeddcfc9d vme_unregister_bridge -EXPORT_SYMBOL vmlinux 0xedecfcd1 rproc_elf_get_boot_addr -EXPORT_SYMBOL vmlinux 0xedf233c0 inet_csk_destroy_sock -EXPORT_SYMBOL vmlinux 0xedfbfe57 posix_acl_from_xattr -EXPORT_SYMBOL vmlinux 0xee043ec4 ip_sock_set_tos -EXPORT_SYMBOL vmlinux 0xee16fa10 _atomic_dec_and_lock_irqsave -EXPORT_SYMBOL vmlinux 0xee1bfecc netif_receive_skb -EXPORT_SYMBOL vmlinux 0xee1e4434 fs_param_is_path -EXPORT_SYMBOL vmlinux 0xee3ab17c xfrm_lookup -EXPORT_SYMBOL vmlinux 0xee46d736 pci_bus_write_config_byte -EXPORT_SYMBOL vmlinux 0xee58e970 fb_add_videomode -EXPORT_SYMBOL vmlinux 0xee6e7ebc pagecache_get_page -EXPORT_SYMBOL vmlinux 0xee7eb9e1 pnp_platform_devices -EXPORT_SYMBOL vmlinux 0xee883b06 __vmalloc_array -EXPORT_SYMBOL vmlinux 0xee8c02e9 vprintk_emit -EXPORT_SYMBOL vmlinux 0xee8d337e netlink_set_err -EXPORT_SYMBOL vmlinux 0xee8d74d6 jiffies64_to_nsecs -EXPORT_SYMBOL vmlinux 0xee91879b rb_first_postorder -EXPORT_SYMBOL vmlinux 0xee964e49 pci_bus_read_config_byte -EXPORT_SYMBOL vmlinux 0xeea31b03 kiocb_set_cancel_fn -EXPORT_SYMBOL vmlinux 0xeea9dbaf bitmap_bitremap -EXPORT_SYMBOL vmlinux 0xeebf2092 __xa_store -EXPORT_SYMBOL vmlinux 0xeece18da max8998_write_reg -EXPORT_SYMBOL vmlinux 0xeed04bba skb_queue_tail -EXPORT_SYMBOL vmlinux 0xeed6c8fb dquot_quota_on -EXPORT_SYMBOL vmlinux 0xeee75d91 ucc_fast_init -EXPORT_SYMBOL vmlinux 0xef0a18d0 invalidate_mapping_pages -EXPORT_SYMBOL vmlinux 0xef1c5ce5 rproc_elf_load_segments -EXPORT_SYMBOL vmlinux 0xef40ec1d dev_set_mtu -EXPORT_SYMBOL vmlinux 0xef461f57 fman_unregister_intr -EXPORT_SYMBOL vmlinux 0xef7f1684 of_graph_get_remote_port -EXPORT_SYMBOL vmlinux 0xef8ac53d qcom_scm_restore_sec_cfg -EXPORT_SYMBOL vmlinux 0xef8c17eb param_set_bool -EXPORT_SYMBOL vmlinux 0xef94a49f nf_ip_checksum -EXPORT_SYMBOL vmlinux 0xefaf2e4f tcf_queue_work -EXPORT_SYMBOL vmlinux 0xefafbc76 pmem_sector_size -EXPORT_SYMBOL vmlinux 0xefba087c pci_ep_cfs_remove_epc_group -EXPORT_SYMBOL vmlinux 0xefcea2e7 acpi_warning -EXPORT_SYMBOL vmlinux 0xefd3806c param_set_ushort -EXPORT_SYMBOL vmlinux 0xefd706ef neigh_seq_stop -EXPORT_SYMBOL vmlinux 0xefebe364 framebuffer_release -EXPORT_SYMBOL vmlinux 0xefee932c acpi_get_data_full -EXPORT_SYMBOL vmlinux 0xefeefc09 __SCK__tp_func_dma_fence_emit -EXPORT_SYMBOL vmlinux 0xeff94cdc netdev_lower_get_first_private_rcu -EXPORT_SYMBOL vmlinux 0xf0009fee put_pages_list -EXPORT_SYMBOL vmlinux 0xf0071768 fb_validate_mode -EXPORT_SYMBOL vmlinux 0xf00dde5e radix_tree_gang_lookup_tag -EXPORT_SYMBOL vmlinux 0xf01eb5a7 input_grab_device -EXPORT_SYMBOL vmlinux 0xf02aa937 wait_for_completion_interruptible_timeout -EXPORT_SYMBOL vmlinux 0xf02daf67 genphy_read_abilities -EXPORT_SYMBOL vmlinux 0xf031ae45 dev_set_alias -EXPORT_SYMBOL vmlinux 0xf03542e7 __sk_backlog_rcv -EXPORT_SYMBOL vmlinux 0xf0431c73 bioset_integrity_create -EXPORT_SYMBOL vmlinux 0xf0494902 add_wait_queue -EXPORT_SYMBOL vmlinux 0xf0592fa2 rproc_coredump_set_elf_info -EXPORT_SYMBOL vmlinux 0xf0647a3f jbd2_fc_release_bufs -EXPORT_SYMBOL vmlinux 0xf099f944 skb_coalesce_rx_frag -EXPORT_SYMBOL vmlinux 0xf09b5d9a get_zeroed_page -EXPORT_SYMBOL vmlinux 0xf0a2cbe7 unregister_framebuffer -EXPORT_SYMBOL vmlinux 0xf0b2419f cmd_db_read_aux_data -EXPORT_SYMBOL vmlinux 0xf0b9e592 pci_scan_bus -EXPORT_SYMBOL vmlinux 0xf0cbf1be neigh_xmit -EXPORT_SYMBOL vmlinux 0xf0eb659d pnp_stop_dev -EXPORT_SYMBOL vmlinux 0xf0edaa54 kmem_cache_free_bulk -EXPORT_SYMBOL vmlinux 0xf0f4d9a7 rtc_add_group -EXPORT_SYMBOL vmlinux 0xf11d6a45 blk_queue_virt_boundary -EXPORT_SYMBOL vmlinux 0xf11dd46e _page_poisoning_enabled_early -EXPORT_SYMBOL vmlinux 0xf1229fec md_set_array_sectors -EXPORT_SYMBOL vmlinux 0xf129823a proc_dointvec_ms_jiffies -EXPORT_SYMBOL vmlinux 0xf14f2614 blkdev_issue_zeroout -EXPORT_SYMBOL vmlinux 0xf159b95f scsi_set_medium_removal -EXPORT_SYMBOL vmlinux 0xf17cbc68 scm_fp_dup -EXPORT_SYMBOL vmlinux 0xf18300ad logic_inb -EXPORT_SYMBOL vmlinux 0xf195c682 fb_invert_cmaps -EXPORT_SYMBOL vmlinux 0xf1969a8e __usecs_to_jiffies -EXPORT_SYMBOL vmlinux 0xf199291f crypto_sha512_finup -EXPORT_SYMBOL vmlinux 0xf1c550d6 bio_reset -EXPORT_SYMBOL vmlinux 0xf1db1704 nla_memcpy -EXPORT_SYMBOL vmlinux 0xf1e046cc panic -EXPORT_SYMBOL vmlinux 0xf1e98c74 avenrun -EXPORT_SYMBOL vmlinux 0xf1f74d5c fib_notifier_ops_register -EXPORT_SYMBOL vmlinux 0xf1f8efc7 param_set_byte -EXPORT_SYMBOL vmlinux 0xf1fa2a57 i2c_smbus_read_word_data -EXPORT_SYMBOL vmlinux 0xf21934ea locks_free_lock -EXPORT_SYMBOL vmlinux 0xf2226390 skb_copy_bits -EXPORT_SYMBOL vmlinux 0xf225bb62 jbd2_journal_invalidatepage -EXPORT_SYMBOL vmlinux 0xf229424a preempt_count_add -EXPORT_SYMBOL vmlinux 0xf239aec0 md_flush_request -EXPORT_SYMBOL vmlinux 0xf23fcb99 __kfifo_in -EXPORT_SYMBOL vmlinux 0xf241f331 inode_init_owner -EXPORT_SYMBOL vmlinux 0xf263fca5 jbd2_journal_clear_features -EXPORT_SYMBOL vmlinux 0xf2669a2c imx_scu_irq_register_notifier -EXPORT_SYMBOL vmlinux 0xf2752efc pci_bus_type -EXPORT_SYMBOL vmlinux 0xf27c44a5 disk_stack_limits -EXPORT_SYMBOL vmlinux 0xf28404cf devlink_dpipe_header_ipv6 -EXPORT_SYMBOL vmlinux 0xf2883da7 uart_get_divisor -EXPORT_SYMBOL vmlinux 0xf28cf0ae __hw_addr_init -EXPORT_SYMBOL vmlinux 0xf2938534 xfrm_state_delete -EXPORT_SYMBOL vmlinux 0xf29403e5 acpi_install_table_handler -EXPORT_SYMBOL vmlinux 0xf29f8515 __kfifo_dma_out_prepare_r -EXPORT_SYMBOL vmlinux 0xf2a3e3e9 simple_rmdir -EXPORT_SYMBOL vmlinux 0xf2c43f3f zlib_deflate -EXPORT_SYMBOL vmlinux 0xf2e5bd87 security_free_mnt_opts -EXPORT_SYMBOL vmlinux 0xf2ebc3b2 insert_inode_locked4 -EXPORT_SYMBOL vmlinux 0xf2f53617 memregion_free -EXPORT_SYMBOL vmlinux 0xf3107926 sha224_update -EXPORT_SYMBOL vmlinux 0xf3306146 km_report -EXPORT_SYMBOL vmlinux 0xf346231f seq_list_start_head -EXPORT_SYMBOL vmlinux 0xf34c4a73 __dec_zone_page_state -EXPORT_SYMBOL vmlinux 0xf352c2b1 configfs_depend_item -EXPORT_SYMBOL vmlinux 0xf353a698 register_module_notifier -EXPORT_SYMBOL vmlinux 0xf353c07a sock_no_ioctl -EXPORT_SYMBOL vmlinux 0xf3567c80 dquot_quota_off -EXPORT_SYMBOL vmlinux 0xf36f42a9 slhc_uncompress -EXPORT_SYMBOL vmlinux 0xf382e065 __netif_schedule -EXPORT_SYMBOL vmlinux 0xf38c388e mmc_erase -EXPORT_SYMBOL vmlinux 0xf3916987 global_cursor_default -EXPORT_SYMBOL vmlinux 0xf391b652 gen_new_estimator -EXPORT_SYMBOL vmlinux 0xf3932313 mb_cache_entry_wait_unused -EXPORT_SYMBOL vmlinux 0xf3a57892 release_dentry_name_snapshot -EXPORT_SYMBOL vmlinux 0xf3a8730b md_check_recovery -EXPORT_SYMBOL vmlinux 0xf3b30a06 utf8version_latest -EXPORT_SYMBOL vmlinux 0xf3b81abe ipv6_getsockopt -EXPORT_SYMBOL vmlinux 0xf3c4c8e3 inet_addr_type -EXPORT_SYMBOL vmlinux 0xf3c77e6f xsk_set_tx_need_wakeup -EXPORT_SYMBOL vmlinux 0xf3c8e600 napi_consume_skb -EXPORT_SYMBOL vmlinux 0xf3dcdee4 vme_dma_list_exec -EXPORT_SYMBOL vmlinux 0xf3ddfce3 rfkill_alloc -EXPORT_SYMBOL vmlinux 0xf3e0e1df allocate_resource -EXPORT_SYMBOL vmlinux 0xf3e5815a try_to_free_buffers -EXPORT_SYMBOL vmlinux 0xf3e6402e __bitmap_equal -EXPORT_SYMBOL vmlinux 0xf3edc85d mount_single -EXPORT_SYMBOL vmlinux 0xf4102303 nla_put_nohdr -EXPORT_SYMBOL vmlinux 0xf43d2caa acpi_remove_interface -EXPORT_SYMBOL vmlinux 0xf443d5a4 mr_table_alloc -EXPORT_SYMBOL vmlinux 0xf44a904a net_ns_barrier -EXPORT_SYMBOL vmlinux 0xf44da1dd __generic_file_fsync -EXPORT_SYMBOL vmlinux 0xf45169d7 phy_do_ioctl_running -EXPORT_SYMBOL vmlinux 0xf46af460 ip_mc_check_igmp -EXPORT_SYMBOL vmlinux 0xf474c21c bitmap_print_to_pagebuf -EXPORT_SYMBOL vmlinux 0xf474fdcb kfree_const -EXPORT_SYMBOL vmlinux 0xf47b9fe9 jbd2_journal_put_journal_head -EXPORT_SYMBOL vmlinux 0xf4906930 generic_block_bmap -EXPORT_SYMBOL vmlinux 0xf49d96bc __devm_mdiobus_register -EXPORT_SYMBOL vmlinux 0xf4af63a8 inet_pton_with_scope -EXPORT_SYMBOL vmlinux 0xf4b754fd acpi_resources_are_enforced -EXPORT_SYMBOL vmlinux 0xf4bdbeb9 __frontswap_invalidate_area -EXPORT_SYMBOL vmlinux 0xf4c040ad proc_dobool -EXPORT_SYMBOL vmlinux 0xf4db35bc stpcpy -EXPORT_SYMBOL vmlinux 0xf4f14de6 rtnl_trylock -EXPORT_SYMBOL vmlinux 0xf4f74734 tty_chars_in_buffer -EXPORT_SYMBOL vmlinux 0xf4f99f5d ps2_cmd_aborted -EXPORT_SYMBOL vmlinux 0xf50e9dca pps_event -EXPORT_SYMBOL vmlinux 0xf510da02 bioset_exit -EXPORT_SYMBOL vmlinux 0xf513332f __d_lookup_done -EXPORT_SYMBOL vmlinux 0xf51da244 iov_iter_init -EXPORT_SYMBOL vmlinux 0xf527c6d5 sock_no_connect -EXPORT_SYMBOL vmlinux 0xf53d4c26 qdisc_class_hash_destroy -EXPORT_SYMBOL vmlinux 0xf53fad17 alloc_pages_vma -EXPORT_SYMBOL vmlinux 0xf540c7b6 sk_ns_capable -EXPORT_SYMBOL vmlinux 0xf551e256 eth_get_headlen -EXPORT_SYMBOL vmlinux 0xf5612b06 __hw_addr_ref_sync_dev -EXPORT_SYMBOL vmlinux 0xf590e020 rproc_get_by_child -EXPORT_SYMBOL vmlinux 0xf595ae29 tegra_ahb_enable_smmu -EXPORT_SYMBOL vmlinux 0xf5976fc4 dev_pm_opp_register_notifier -EXPORT_SYMBOL vmlinux 0xf5a20ed2 __genradix_prealloc -EXPORT_SYMBOL vmlinux 0xf5a86a46 flow_indr_dev_register -EXPORT_SYMBOL vmlinux 0xf5b6426e netif_napi_add -EXPORT_SYMBOL vmlinux 0xf5cd52ea __blkdev_issue_discard -EXPORT_SYMBOL vmlinux 0xf5e7ea40 ktime_get_coarse_ts64 -EXPORT_SYMBOL vmlinux 0xf61d0679 amba_device_register -EXPORT_SYMBOL vmlinux 0xf62c39fe ucc_slow_graceful_stop_tx -EXPORT_SYMBOL vmlinux 0xf6416488 neigh_table_init -EXPORT_SYMBOL vmlinux 0xf643d104 hsiphash_4u32 -EXPORT_SYMBOL vmlinux 0xf661e709 __neigh_event_send -EXPORT_SYMBOL vmlinux 0xf665f74f sock_load_diag_module -EXPORT_SYMBOL vmlinux 0xf66f453e ip_ct_attach -EXPORT_SYMBOL vmlinux 0xf67e7310 __netif_napi_del -EXPORT_SYMBOL vmlinux 0xf68285c0 register_inetaddr_notifier -EXPORT_SYMBOL vmlinux 0xf69a77d5 dm_table_run_md_queue_async -EXPORT_SYMBOL vmlinux 0xf69d1433 dump_skip_to -EXPORT_SYMBOL vmlinux 0xf6a34911 alloc_netdev_mqs -EXPORT_SYMBOL vmlinux 0xf6ebc03b net_ratelimit -EXPORT_SYMBOL vmlinux 0xf6f9d58d init_on_free -EXPORT_SYMBOL vmlinux 0xf6fc8791 __bitmap_xor -EXPORT_SYMBOL vmlinux 0xf708582f md_finish_reshape -EXPORT_SYMBOL vmlinux 0xf70c26cc rt_spin_trylock_bh -EXPORT_SYMBOL vmlinux 0xf70d7146 configfs_remove_default_groups -EXPORT_SYMBOL vmlinux 0xf71cc514 mount_subtree -EXPORT_SYMBOL vmlinux 0xf71d3ea1 dev_loopback_xmit -EXPORT_SYMBOL vmlinux 0xf7292c62 pci_release_resource -EXPORT_SYMBOL vmlinux 0xf734be3f config_group_init_type_name -EXPORT_SYMBOL vmlinux 0xf734fa0f get_thermal_instance -EXPORT_SYMBOL vmlinux 0xf736d7d9 xfrm_input_unregister_afinfo -EXPORT_SYMBOL vmlinux 0xf738d1be register_blocking_lsm_notifier -EXPORT_SYMBOL vmlinux 0xf759b124 dev_activate -EXPORT_SYMBOL vmlinux 0xf75bfc4c flow_block_cb_priv -EXPORT_SYMBOL vmlinux 0xf762325d i2c_smbus_read_byte -EXPORT_SYMBOL vmlinux 0xf76843b5 qcom_scm_pas_supported -EXPORT_SYMBOL vmlinux 0xf77337a1 hdmi_audio_infoframe_check -EXPORT_SYMBOL vmlinux 0xf773f403 update_devfreq -EXPORT_SYMBOL vmlinux 0xf77555cd __memcpy_toio -EXPORT_SYMBOL vmlinux 0xf77a1c3b xfrm_register_type_offload -EXPORT_SYMBOL vmlinux 0xf7803c4a ppp_register_net_channel -EXPORT_SYMBOL vmlinux 0xf797142a security_path_rename -EXPORT_SYMBOL vmlinux 0xf79ce173 of_graph_get_port_by_id -EXPORT_SYMBOL vmlinux 0xf79fd0ac __destroy_inode -EXPORT_SYMBOL vmlinux 0xf7aa08b4 __frontswap_load -EXPORT_SYMBOL vmlinux 0xf7b8856d from_kgid -EXPORT_SYMBOL vmlinux 0xf7c165d7 cdrom_get_last_written -EXPORT_SYMBOL vmlinux 0xf7c48778 __tracepoint_kmalloc_node -EXPORT_SYMBOL vmlinux 0xf7d31de9 kstrtoul_from_user -EXPORT_SYMBOL vmlinux 0xf7da6e6f acpi_unload_table -EXPORT_SYMBOL vmlinux 0xf7ea6311 qman_p_poll_dqrr -EXPORT_SYMBOL vmlinux 0xf7f05c17 fman_port_use_kg_hash -EXPORT_SYMBOL vmlinux 0xf7ffd0bb input_enable_softrepeat -EXPORT_SYMBOL vmlinux 0xf805dc01 input_unregister_handler -EXPORT_SYMBOL vmlinux 0xf80adb6b sunxi_sram_claim -EXPORT_SYMBOL vmlinux 0xf80d5c1f filemap_write_and_wait_range -EXPORT_SYMBOL vmlinux 0xf811e69d scsi_eh_flush_done_q -EXPORT_SYMBOL vmlinux 0xf812cff6 memscan -EXPORT_SYMBOL vmlinux 0xf820f970 blk_queue_segment_boundary -EXPORT_SYMBOL vmlinux 0xf821781b proc_douintvec -EXPORT_SYMBOL vmlinux 0xf82abc1d isa_dma_bridge_buggy -EXPORT_SYMBOL vmlinux 0xf82ec573 rb_prev -EXPORT_SYMBOL vmlinux 0xf842cae2 skb_clone -EXPORT_SYMBOL vmlinux 0xf84aa7b4 sdev_prefix_printk -EXPORT_SYMBOL vmlinux 0xf84bd6ee bpf_stats_enabled_key -EXPORT_SYMBOL vmlinux 0xf84ce75d param_ops_invbool -EXPORT_SYMBOL vmlinux 0xf85b06fa mdio_device_create -EXPORT_SYMBOL vmlinux 0xf866b00c tegra_io_pad_power_enable -EXPORT_SYMBOL vmlinux 0xf86bc8b0 watchdog_unregister_governor -EXPORT_SYMBOL vmlinux 0xf86c3698 mfd_remove_devices -EXPORT_SYMBOL vmlinux 0xf87fce4b acpi_processor_notify_smm -EXPORT_SYMBOL vmlinux 0xf8804caf kill_anon_super -EXPORT_SYMBOL vmlinux 0xf888ca21 sg_init_table -EXPORT_SYMBOL vmlinux 0xf896a4a0 devm_extcon_register_notifier_all -EXPORT_SYMBOL vmlinux 0xf8b3a5f1 filemap_invalidate_lock_two -EXPORT_SYMBOL vmlinux 0xf8bf8e22 ZSTD_DDictWorkspaceBound -EXPORT_SYMBOL vmlinux 0xf8d07858 bitmap_from_arr32 -EXPORT_SYMBOL vmlinux 0xf8f61ebc wake_up_var -EXPORT_SYMBOL vmlinux 0xf8feec94 block_read_full_page -EXPORT_SYMBOL vmlinux 0xf9098ce7 xfrm4_udp_encap_rcv -EXPORT_SYMBOL vmlinux 0xf91b89ab fman_sp_build_buffer_struct -EXPORT_SYMBOL vmlinux 0xf93aae46 __arm_smccc_smc -EXPORT_SYMBOL vmlinux 0xf93fd09c fb_find_mode_cvt -EXPORT_SYMBOL vmlinux 0xf949ecaa jbd2_journal_destroy -EXPORT_SYMBOL vmlinux 0xf95947b6 d_path -EXPORT_SYMBOL vmlinux 0xf95c619b acpi_processor_preregister_performance -EXPORT_SYMBOL vmlinux 0xf965d081 unregister_console -EXPORT_SYMBOL vmlinux 0xf969feb9 hash_and_copy_to_iter -EXPORT_SYMBOL vmlinux 0xf971cea8 utf8len -EXPORT_SYMBOL vmlinux 0xf9722676 twl_i2c_write -EXPORT_SYMBOL vmlinux 0xf97792d7 xattr_supported_namespace -EXPORT_SYMBOL vmlinux 0xf98ba4cb netif_skb_features -EXPORT_SYMBOL vmlinux 0xf9947d43 blk_mq_end_request -EXPORT_SYMBOL vmlinux 0xf9a15b6e param_get_uint -EXPORT_SYMBOL vmlinux 0xf9a482f9 msleep -EXPORT_SYMBOL vmlinux 0xf9a91292 rt_read_lock -EXPORT_SYMBOL vmlinux 0xf9c0b663 strlcat -EXPORT_SYMBOL vmlinux 0xf9ca2eb4 kstrtoint_from_user -EXPORT_SYMBOL vmlinux 0xf9e19968 dmam_free_coherent -EXPORT_SYMBOL vmlinux 0xf9f856ac of_node_name_eq -EXPORT_SYMBOL vmlinux 0xf9ffcd0b bdevname -EXPORT_SYMBOL vmlinux 0xfa042227 gnet_stats_add_basic -EXPORT_SYMBOL vmlinux 0xfa042514 __napi_alloc_skb -EXPORT_SYMBOL vmlinux 0xfa08c34a page_offline_end -EXPORT_SYMBOL vmlinux 0xfa09b3d8 _dev_info -EXPORT_SYMBOL vmlinux 0xfa1b6a6d security_path_mknod -EXPORT_SYMBOL vmlinux 0xfa205771 i2c_verify_adapter -EXPORT_SYMBOL vmlinux 0xfa28dced dq_data_lock -EXPORT_SYMBOL vmlinux 0xfa297415 acpi_map_pxm_to_node -EXPORT_SYMBOL vmlinux 0xfa2e5f32 i2c_smbus_pec -EXPORT_SYMBOL vmlinux 0xfa333a96 pci_scan_slot -EXPORT_SYMBOL vmlinux 0xfa3c573d __dynamic_dev_dbg -EXPORT_SYMBOL vmlinux 0xfa568938 xfrm_user_policy -EXPORT_SYMBOL vmlinux 0xfa599bb2 netlink_register_notifier -EXPORT_SYMBOL vmlinux 0xfa67332e kset_unregister -EXPORT_SYMBOL vmlinux 0xfa697789 eth_gro_complete -EXPORT_SYMBOL vmlinux 0xfa873ad0 prandom_seed -EXPORT_SYMBOL vmlinux 0xfaa25cce of_platform_bus_probe -EXPORT_SYMBOL vmlinux 0xfaa9a40d pci_read_config_byte -EXPORT_SYMBOL vmlinux 0xfaaa12d0 _page_poisoning_enabled -EXPORT_SYMBOL vmlinux 0xfab3ccde _dev_warn -EXPORT_SYMBOL vmlinux 0xfac8865f sysctl_wmem_max -EXPORT_SYMBOL vmlinux 0xfacc5726 del_gendisk -EXPORT_SYMBOL vmlinux 0xfacd8c28 nla_put -EXPORT_SYMBOL vmlinux 0xfade3559 cont_write_begin -EXPORT_SYMBOL vmlinux 0xfae156b8 __devm_request_region -EXPORT_SYMBOL vmlinux 0xfaeb1cdd devm_pci_remap_iospace -EXPORT_SYMBOL vmlinux 0xfafd666c vme_slave_request -EXPORT_SYMBOL vmlinux 0xfb1d7bc5 fb_find_mode -EXPORT_SYMBOL vmlinux 0xfb2353d5 neigh_connected_output -EXPORT_SYMBOL vmlinux 0xfb305ad0 jbd2_journal_init_jbd_inode -EXPORT_SYMBOL vmlinux 0xfb348fea fault_in_safe_writeable -EXPORT_SYMBOL vmlinux 0xfb384d37 kasprintf -EXPORT_SYMBOL vmlinux 0xfb3d2bcd jbd2_journal_blocks_per_page -EXPORT_SYMBOL vmlinux 0xfb433d5c locks_delete_block -EXPORT_SYMBOL vmlinux 0xfb54df8e dma_resv_copy_fences -EXPORT_SYMBOL vmlinux 0xfb56b74c dump_skip -EXPORT_SYMBOL vmlinux 0xfb5e34b1 truncate_pagecache_range -EXPORT_SYMBOL vmlinux 0xfb649a3d dquot_set_dqblk -EXPORT_SYMBOL vmlinux 0xfb6af58d recalc_sigpending -EXPORT_SYMBOL vmlinux 0xfb970190 dev_getbyhwaddr_rcu -EXPORT_SYMBOL vmlinux 0xfba7ddd2 match_u64 -EXPORT_SYMBOL vmlinux 0xfbaac8db zpool_register_driver -EXPORT_SYMBOL vmlinux 0xfbaaf01e console_lock -EXPORT_SYMBOL vmlinux 0xfbad3cf0 scsi_normalize_sense -EXPORT_SYMBOL vmlinux 0xfbb8a761 strscpy_pad -EXPORT_SYMBOL vmlinux 0xfbc49ef0 register_quota_format -EXPORT_SYMBOL vmlinux 0xfbc4f89e io_schedule_timeout -EXPORT_SYMBOL vmlinux 0xfbe092c3 forget_cached_acl -EXPORT_SYMBOL vmlinux 0xfbe279c6 pci_disable_msi -EXPORT_SYMBOL vmlinux 0xfbe4b175 qman_create_cgr -EXPORT_SYMBOL vmlinux 0xfbe8ee28 acpi_get_table_by_index -EXPORT_SYMBOL vmlinux 0xfbe96004 down_read_killable -EXPORT_SYMBOL vmlinux 0xfc059323 unix_gc_lock -EXPORT_SYMBOL vmlinux 0xfc1a1afd mempool_alloc -EXPORT_SYMBOL vmlinux 0xfc25f58a pci_get_subsys -EXPORT_SYMBOL vmlinux 0xfc31c9ac netdev_reset_tc -EXPORT_SYMBOL vmlinux 0xfc399557 utf8_load -EXPORT_SYMBOL vmlinux 0xfc4152fc ec_read -EXPORT_SYMBOL vmlinux 0xfc421e79 gnet_stats_add_queue -EXPORT_SYMBOL vmlinux 0xfc4ad488 filemap_fdatawait_range -EXPORT_SYMBOL vmlinux 0xfc52abc7 qcom_scm_pas_shutdown -EXPORT_SYMBOL vmlinux 0xfc82e973 blkdev_put -EXPORT_SYMBOL vmlinux 0xfc881b89 fman_port_get_hash_result_offset -EXPORT_SYMBOL vmlinux 0xfc8a30a8 skb_checksum_help -EXPORT_SYMBOL vmlinux 0xfc8eece8 proto_unregister -EXPORT_SYMBOL vmlinux 0xfc9ed8c3 qcom_scm_ice_available -EXPORT_SYMBOL vmlinux 0xfcad7213 vfs_fadvise -EXPORT_SYMBOL vmlinux 0xfcad741c param_set_bint -EXPORT_SYMBOL vmlinux 0xfcce2f7d ucc_fast_enable -EXPORT_SYMBOL vmlinux 0xfcd1819a hdmi_spd_infoframe_check -EXPORT_SYMBOL vmlinux 0xfcec0987 enable_irq -EXPORT_SYMBOL vmlinux 0xfcf2820e __dquot_free_space -EXPORT_SYMBOL vmlinux 0xfd2cb4e9 delete_from_page_cache -EXPORT_SYMBOL vmlinux 0xfd379792 __neigh_create -EXPORT_SYMBOL vmlinux 0xfd55ff06 max8925_reg_read -EXPORT_SYMBOL vmlinux 0xfd7b3454 tcf_idr_create_from_flags -EXPORT_SYMBOL vmlinux 0xfd7f55de inet_add_offload -EXPORT_SYMBOL vmlinux 0xfd915cc4 pcie_relaxed_ordering_enabled -EXPORT_SYMBOL vmlinux 0xfda78a23 mmc_erase_group_aligned -EXPORT_SYMBOL vmlinux 0xfda9581f prandom_u32 -EXPORT_SYMBOL vmlinux 0xfdb50a41 dma_sync_sg_for_cpu -EXPORT_SYMBOL vmlinux 0xfdc04c84 pci_pme_active -EXPORT_SYMBOL vmlinux 0xfdcb4ed3 acpi_os_get_line -EXPORT_SYMBOL vmlinux 0xfdcc8a0e fb_find_best_display -EXPORT_SYMBOL vmlinux 0xfde4050b fault_in_iov_iter_writeable -EXPORT_SYMBOL vmlinux 0xfde81013 audit_log -EXPORT_SYMBOL vmlinux 0xfe029963 unregister_inetaddr_notifier -EXPORT_SYMBOL vmlinux 0xfe0e09aa path_get -EXPORT_SYMBOL vmlinux 0xfe1d2e94 key_create_or_update -EXPORT_SYMBOL vmlinux 0xfe1d2f83 tty_vhangup -EXPORT_SYMBOL vmlinux 0xfe1fa572 serio_close -EXPORT_SYMBOL vmlinux 0xfe290092 param_ops_long -EXPORT_SYMBOL vmlinux 0xfe41a418 tcf_get_next_chain -EXPORT_SYMBOL vmlinux 0xfe487975 init_wait_entry -EXPORT_SYMBOL vmlinux 0xfe5d4bb2 sys_tz -EXPORT_SYMBOL vmlinux 0xfe7c55c6 gen_pool_dma_alloc -EXPORT_SYMBOL vmlinux 0xfe81864a jbd2_journal_init_inode -EXPORT_SYMBOL vmlinux 0xfe916dc6 hex_dump_to_buffer -EXPORT_SYMBOL vmlinux 0xfe921ed1 d_find_any_alias -EXPORT_SYMBOL vmlinux 0xfe9ebbbb acpi_osi_is_win8 -EXPORT_SYMBOL vmlinux 0xfeb5d0aa verify_spi_info -EXPORT_SYMBOL vmlinux 0xfedcdb60 seq_hlist_next_percpu -EXPORT_SYMBOL vmlinux 0xfee6fb7f of_find_matching_node_and_match -EXPORT_SYMBOL vmlinux 0xfeebc7c4 __kfifo_from_user_r -EXPORT_SYMBOL vmlinux 0xfef216eb _raw_spin_trylock -EXPORT_SYMBOL vmlinux 0xfef869cf get_acl -EXPORT_SYMBOL vmlinux 0xfefcb98e vme_dma_vme_attribute -EXPORT_SYMBOL vmlinux 0xff0bc2ea inet6_register_protosw -EXPORT_SYMBOL vmlinux 0xff1e9dd8 seq_list_start -EXPORT_SYMBOL vmlinux 0xff282521 rfkill_register -EXPORT_SYMBOL vmlinux 0xff4ff750 dquot_operations -EXPORT_SYMBOL vmlinux 0xff6878cf fb_default_cmap -EXPORT_SYMBOL vmlinux 0xff70b51e thermal_cdev_update -EXPORT_SYMBOL vmlinux 0xff718aa9 vme_bus_num -EXPORT_SYMBOL vmlinux 0xff73b9ae register_tcf_proto_ops -EXPORT_SYMBOL vmlinux 0xff7594ba of_find_mipi_dsi_host_by_node -EXPORT_SYMBOL vmlinux 0xff7aaf32 vfs_llseek -EXPORT_SYMBOL vmlinux 0xff7e7f8d kryo_l2_set_indirect_reg -EXPORT_SYMBOL vmlinux 0xff98e412 kthread_destroy_worker -EXPORT_SYMBOL vmlinux 0xff9d8bfc blk_pre_runtime_suspend -EXPORT_SYMBOL vmlinux 0xffad1d5c nf_unregister_sockopt -EXPORT_SYMBOL vmlinux 0xffb864b0 sock_queue_err_skb -EXPORT_SYMBOL vmlinux 0xffcc4ec7 tcp_bpf_bypass_getsockopt -EXPORT_SYMBOL vmlinux 0xffe6ad2f panic_notifier_list -EXPORT_SYMBOL vmlinux 0xffeedf6a delayed_work_timer_fn -EXPORT_SYMBOL vmlinux 0xfff2092e vma_set_file -EXPORT_SYMBOL_GPL crypto/af_alg 0x09cfddd9 af_alg_sendpage -EXPORT_SYMBOL_GPL crypto/af_alg 0x20c7906b af_alg_sendmsg -EXPORT_SYMBOL_GPL crypto/af_alg 0x37de91c6 af_alg_accept -EXPORT_SYMBOL_GPL crypto/af_alg 0x5c0da8a8 af_alg_pull_tsgl -EXPORT_SYMBOL_GPL crypto/af_alg 0x61954ac2 af_alg_wmem_wakeup -EXPORT_SYMBOL_GPL crypto/af_alg 0x638a2287 af_alg_make_sg -EXPORT_SYMBOL_GPL crypto/af_alg 0x6d7937f1 af_alg_get_rsgl -EXPORT_SYMBOL_GPL crypto/af_alg 0x743a4d47 af_alg_async_cb -EXPORT_SYMBOL_GPL crypto/af_alg 0x76d7534d af_alg_alloc_areq -EXPORT_SYMBOL_GPL crypto/af_alg 0x892e2cab af_alg_poll -EXPORT_SYMBOL_GPL crypto/af_alg 0xa532aef8 af_alg_release -EXPORT_SYMBOL_GPL crypto/af_alg 0xa662d0e0 af_alg_free_sg -EXPORT_SYMBOL_GPL crypto/af_alg 0xad270661 af_alg_free_resources -EXPORT_SYMBOL_GPL crypto/af_alg 0xb1a71cca af_alg_register_type -EXPORT_SYMBOL_GPL crypto/af_alg 0xe16bda52 af_alg_wait_for_data -EXPORT_SYMBOL_GPL crypto/af_alg 0xea1ebd77 af_alg_release_parent -EXPORT_SYMBOL_GPL crypto/af_alg 0xf0ee6bea af_alg_unregister_type -EXPORT_SYMBOL_GPL crypto/af_alg 0xf6f136b8 af_alg_count_tsgl -EXPORT_SYMBOL_GPL crypto/asymmetric_keys/asym_tpm 0x7430f97c tpm_key_create -EXPORT_SYMBOL_GPL crypto/asymmetric_keys/asym_tpm 0xaaca9d4e asym_tpm_subtype -EXPORT_SYMBOL_GPL crypto/async_tx/async_memcpy 0x56f71ddb async_memcpy -EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0x89751571 async_gen_syndrome -EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0xd2db8084 async_syndrome_val -EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0x26a2abdc async_raid6_2data_recov -EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0xaa17df77 async_raid6_datap_recov -EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x0045433c async_tx_submit -EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x15720c4c async_trigger_callback -EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x432414bf __async_tx_find_channel -EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x7a40080e async_tx_quiesce -EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x1edb30bb async_xor_val_offs -EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x453f00c3 async_xor_offs -EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x47584bd6 async_xor -EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0xfd7a2a18 async_xor_val -EXPORT_SYMBOL_GPL crypto/authenc 0x2479193e crypto_authenc_extractkeys -EXPORT_SYMBOL_GPL crypto/blowfish_common 0x2690a266 blowfish_setkey -EXPORT_SYMBOL_GPL crypto/cast5_generic 0x0f67ccb6 cast5_setkey -EXPORT_SYMBOL_GPL crypto/cast5_generic 0x188d9d26 __cast5_decrypt -EXPORT_SYMBOL_GPL crypto/cast5_generic 0xef81a4af __cast5_encrypt -EXPORT_SYMBOL_GPL crypto/cast6_generic 0x3dbae082 __cast6_decrypt -EXPORT_SYMBOL_GPL crypto/cast6_generic 0x66ff0cdf 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 0x133c4467 cryptd_shash_desc -EXPORT_SYMBOL_GPL crypto/cryptd 0x264efdc0 cryptd_skcipher_child -EXPORT_SYMBOL_GPL crypto/cryptd 0x49d2fd20 cryptd_alloc_skcipher -EXPORT_SYMBOL_GPL crypto/cryptd 0x58a6db3f cryptd_free_ahash -EXPORT_SYMBOL_GPL crypto/cryptd 0x58b2161e cryptd_aead_queued -EXPORT_SYMBOL_GPL crypto/cryptd 0x7edb4c20 cryptd_free_aead -EXPORT_SYMBOL_GPL crypto/cryptd 0xc09000ec cryptd_ahash_child -EXPORT_SYMBOL_GPL crypto/cryptd 0xca99d987 cryptd_aead_child -EXPORT_SYMBOL_GPL crypto/cryptd 0xcefa2333 cryptd_alloc_aead -EXPORT_SYMBOL_GPL crypto/cryptd 0xd342d83b cryptd_free_skcipher -EXPORT_SYMBOL_GPL crypto/cryptd 0xe38c2956 cryptd_skcipher_queued -EXPORT_SYMBOL_GPL crypto/cryptd 0xeceaa397 cryptd_alloc_ahash -EXPORT_SYMBOL_GPL crypto/cryptd 0xfaaf5416 cryptd_ahash_queued -EXPORT_SYMBOL_GPL crypto/crypto_engine 0x2cbcb74f crypto_engine_alloc_init_and_set -EXPORT_SYMBOL_GPL crypto/crypto_engine 0x2def2ec4 crypto_transfer_aead_request_to_engine -EXPORT_SYMBOL_GPL crypto/crypto_engine 0x3ea5d1d3 crypto_engine_alloc_init -EXPORT_SYMBOL_GPL crypto/crypto_engine 0x4cd377e8 crypto_finalize_hash_request -EXPORT_SYMBOL_GPL crypto/crypto_engine 0x596f60ce crypto_finalize_aead_request -EXPORT_SYMBOL_GPL crypto/crypto_engine 0x5dcbe7d9 crypto_transfer_hash_request_to_engine -EXPORT_SYMBOL_GPL crypto/crypto_engine 0x6b92c998 crypto_transfer_akcipher_request_to_engine -EXPORT_SYMBOL_GPL crypto/crypto_engine 0x76eb0a11 crypto_engine_start -EXPORT_SYMBOL_GPL crypto/crypto_engine 0x88aa1c4a crypto_transfer_skcipher_request_to_engine -EXPORT_SYMBOL_GPL crypto/crypto_engine 0xa179149b crypto_finalize_skcipher_request -EXPORT_SYMBOL_GPL crypto/crypto_engine 0xa19889c6 crypto_engine_stop -EXPORT_SYMBOL_GPL crypto/crypto_engine 0xa7cfc1fc crypto_engine_exit -EXPORT_SYMBOL_GPL crypto/crypto_engine 0xd8e44e6f crypto_finalize_akcipher_request -EXPORT_SYMBOL_GPL crypto/crypto_simd 0x38fcf7b0 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 0x909eba98 simd_register_skciphers_compat -EXPORT_SYMBOL_GPL crypto/crypto_simd 0xa0d31aa3 simd_unregister_skciphers -EXPORT_SYMBOL_GPL crypto/crypto_simd 0xb4b66432 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 0x59daecfc 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 0x17bb4608 twofish_setkey -EXPORT_SYMBOL_GPL crypto/twofish_common 0xe22b7787 __twofish_setkey -EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x0addc829 spk_var_show -EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x11657c02 spk_var_store -EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x1b0a21e4 spk_do_catch_up -EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x1e324221 spk_ttyio_ops -EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x1e39eb14 synth_putws -EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x2631f8aa spk_synth_is_alive_nop -EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x32ab0a98 speakup_info -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 0x446d997a spk_do_catch_up_unicode -EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x466f5eb7 synth_putwc -EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x58792fca spk_ttyio_release -EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x5b3b3dca spk_synth_is_alive_restart -EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x697308b3 synth_current -EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x76d40046 synth_buffer_skip_nonlatin1 -EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x80073382 spk_synth_flush -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 0x916e5717 spk_ttyio_synth_immediate -EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x97a33875 synth_remove -EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xaadb0612 synth_buffer_peek -EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xb5052f7c spk_synth_get_index -EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xb91f5a19 speakup_event -EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xbbd15a51 speakup_start_ttys -EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xbdbbda9f spk_ttyio_synth_probe -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 0xcbb31377 synth_add -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/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 0x83f81b4d __acpi_nfit_notify -EXPORT_SYMBOL_GPL drivers/acpi/nfit/nfit 0x8452f97b __acpi_nvdimm_notify -EXPORT_SYMBOL_GPL drivers/acpi/nfit/nfit 0xc1defe3f acpi_nfit_desc_init -EXPORT_SYMBOL_GPL drivers/acpi/nfit/nfit 0xdc41c6f0 acpi_nfit_init -EXPORT_SYMBOL_GPL drivers/acpi/nfit/nfit 0xe1c32ec4 acpi_nfit_ctl -EXPORT_SYMBOL_GPL drivers/acpi/platform_profile 0x67927a0d platform_profile_notify -EXPORT_SYMBOL_GPL drivers/acpi/platform_profile 0xbfe36436 platform_profile_remove -EXPORT_SYMBOL_GPL drivers/acpi/platform_profile 0xcac33cd4 platform_profile_register -EXPORT_SYMBOL_GPL drivers/ata/pata_platform 0x8cac8315 __pata_platform_probe -EXPORT_SYMBOL_GPL drivers/ata/pata_sis 0x245ae9fd 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 0x0b112ef9 regmap_ac97_default_volatile -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-ac97 0x8ab4f132 __regmap_init_ac97 -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-ac97 0xd064168c __devm_regmap_init_ac97 -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-i3c 0xef9c53e6 __devm_regmap_init_i3c -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sccb 0x347999fe __devm_regmap_init_sccb -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sccb 0xe41ef252 __regmap_init_sccb -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sdw 0x5b0c0a76 __regmap_init_sdw -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sdw 0xfb9f94fe __devm_regmap_init_sdw -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sdw-mbq 0x089df302 __regmap_init_sdw_mbq -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sdw-mbq 0x5b47821d __devm_regmap_init_sdw_mbq -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-slimbus 0x26199853 __devm_regmap_init_slimbus -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-slimbus 0xd28ca45c __regmap_init_slimbus -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spi-avmm 0x54d64ddf __regmap_init_spi_avmm -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spi-avmm 0xc7b2463c __devm_regmap_init_spi_avmm -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x31b8707e __devm_regmap_init_spmi_ext -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x59122a57 __regmap_init_spmi_base -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x6adf9012 __devm_regmap_init_spmi_base -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0xff1fd013 __regmap_init_spmi_ext -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-w1 0xbdcfcc9f __devm_regmap_init_w1 -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-w1 0xe9e067eb __regmap_init_w1 -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x03c77493 bcma_chipco_pll_read -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x06545520 bcma_host_pci_down -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x0a5a55d1 bcma_chipco_get_alp_clock -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x0e48fd60 bcma_host_pci_up -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x350a6de5 bcma_host_pci_irq_ctl -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x3901e53b bcma_chipco_gpio_out -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x3f58e31e bcma_core_enable -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x40460cd1 bcma_driver_unregister -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x427750f9 bcma_core_is_enabled -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x45a720b5 bcma_pmu_get_bus_clock -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x5d744e39 bcma_chipco_gpio_outen -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x63db537d bcma_chipco_pll_maskset -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x6c3f8f88 bcma_core_set_clockmode -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x8251b4e2 bcma_core_disable -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x9285ba1a bcma_core_pll_ctl -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x937a74ec bcma_core_pci_power_save -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x9594c383 bcma_chipco_chipctl_maskset -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x9a363628 bcma_chipco_gpio_control -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xb6068e1b bcma_chipco_pll_write -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xb8b352aa bcma_chipco_b_mii_write -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xd026550a bcma_chipco_regctl_maskset -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xdb048c2d bcma_find_core_unit -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xe405e23a __bcma_driver_register -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xe9ae1372 bcma_pmu_spuravoid_pllupdate -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x5e4a22d0 btbcm_finalize -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x851916b5 btbcm_initialize -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xaeab587c btbcm_write_pcm_int_params -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xbff4ffb3 btbcm_read_pcm_int_params -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xd2a6690a btbcm_setup_apple -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xd3db2f95 btbcm_set_bdaddr -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xf4a5ee25 btbcm_check_bdaddr -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xf8dd9596 btbcm_setup_patchram -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x09cd062f btintel_read_version -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x0cd2be6d btintel_set_event_mask_mfg -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x0ed7c677 btintel_enter_mfg -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x2306251c btintel_load_ddc_config -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x3c0f856e btintel_regmap_init -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x7273e5c0 btintel_download_firmware -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x90ba9e53 btintel_version_info -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x9757e46b btintel_exit_mfg -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x9803b288 btintel_bootup -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xa5dd05bb btintel_set_diag -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xaaa8a304 btintel_check_bdaddr -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xc8410004 btintel_read_boot_params -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xcb8e01c0 btintel_set_bdaddr -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xceab7e4b btintel_send_intel_reset -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xcf65f2ef btintel_secure_send_result -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xe76051f8 btintel_configure_setup -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x0c92b363 btmrvl_remove_card -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x1213bb31 btmrvl_register_hdev -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x262a1e9f btmrvl_enable_hs -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x28dbf396 btmrvl_process_event -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x470f4f52 btmrvl_enable_ps -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x50ed699c btmrvl_send_module_cfg_cmd -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x5a9b2caf btmrvl_add_card -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x7dacd605 btmrvl_pscan_window_reporting -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xcba2a963 btmrvl_check_evtpkt -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xd8e913ad btmrvl_interrupt -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xf596ca28 btmrvl_send_hscfg_cmd -EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x348c86db qca_set_bdaddr_rome -EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x432baf4b qca_read_soc_version -EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x45fbc935 qca_set_bdaddr -EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x4de03d5f qca_uart_setup -EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x795d5407 qca_send_pre_shutdown_cmd -EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x3266e110 btrtl_shutdown_realtek -EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x4f1321ab btrtl_setup_realtek -EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x91cf0adb btrtl_get_uart_settings -EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0xaf78f260 btrtl_free -EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0xb5b69c07 btrtl_set_quirks -EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0xddb9ee23 btrtl_download_firmware -EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0xee08b148 btrtl_initialize -EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0x741b8eb1 hci_uart_unregister_device -EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0x7afb2bcd h4_recv_buf -EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0xb2615743 hci_uart_tx_wakeup -EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0xc499e4c3 hci_uart_register_device -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x08f8c64c mhi_pm_resume -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x0ac40608 mhi_get_free_desc_count -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x16335e47 mhi_pm_suspend -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x19b0d886 mhi_get_exec_env -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x1b4ac0de mhi_prepare_for_power_up -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x1cd2939f mhi_get_mhi_state -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x229214d6 mhi_soc_reset -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x252785d9 mhi_force_rddm_mode -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x32d327d4 mhi_pm_resume_force -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x43207674 mhi_register_controller -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x4ee05ec8 mhi_device_get -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x52339759 mhi_queue_dma -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x59c6bda5 mhi_download_rddm_image -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x66bf09fc mhi_free_controller -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x6ce2825e mhi_unprepare_from_transfer -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x78060ade mhi_power_down -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x80884a2c mhi_driver_unregister -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x88e15bbe mhi_notify -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x90153d95 mhi_queue_buf -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x92a4399e mhi_unprepare_after_power_down -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xa1d2af96 mhi_device_get_sync -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xa3515fb3 mhi_queue_skb -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xa86e814a mhi_async_power_up -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xb0e01ce9 mhi_poll -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xbf53f3c6 mhi_queue_is_full -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xcdad70c8 mhi_unregister_controller -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xcdebc603 mhi_prepare_for_transfer -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xd5589b56 mhi_alloc_controller -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xe8d2f6fc __mhi_driver_register -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xef975027 mhi_device_put -EXPORT_SYMBOL_GPL drivers/bus/moxtet 0x3069ae30 __moxtet_register_driver -EXPORT_SYMBOL_GPL drivers/bus/moxtet 0x51a6d007 moxtet_device_written -EXPORT_SYMBOL_GPL drivers/bus/moxtet 0xa721fc29 moxtet_device_read -EXPORT_SYMBOL_GPL drivers/bus/moxtet 0xd39be712 moxtet_device_write -EXPORT_SYMBOL_GPL drivers/bus/sunxi-rsb 0x22ceea5a sunxi_rsb_driver_register -EXPORT_SYMBOL_GPL drivers/bus/sunxi-rsb 0x2f2ff927 __devm_regmap_init_sunxi_rsb -EXPORT_SYMBOL_GPL drivers/clk/meson/clk-phase 0xaf9afd83 meson_clk_phase_ops -EXPORT_SYMBOL_GPL drivers/clk/meson/clk-phase 0xe43e87ca meson_clk_triphase_ops -EXPORT_SYMBOL_GPL drivers/clk/meson/clk-phase 0xe510e095 meson_sclk_ws_inv_ops -EXPORT_SYMBOL_GPL drivers/clk/meson/sclk-div 0xad76d96a 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 0x0b721c7c qcom_cc_register_sleep_clk -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 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 0x271c2e16 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 0x2b280f76 qcom_cc_really_probe -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 0x3dfc2dc5 clk_branch_simple_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x405d394a clk_alpha_pll_postdiv_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x418e9cfd clk_pll_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x4b0ed6da clk_ops_hfpll -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x5111f2ad clk_rcg2_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x520df3b7 clk_rcg_esc_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x57172323 clk_byte_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x5a6ae327 clk_alpha_pll_configure -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x5e6abb22 mux_div_set_src_div -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x615dbb77 clk_branch2_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x631939a9 clk_branch2_aon_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x63ee9aa4 clk_alpha_pll_fixed_fabia_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x66922845 clk_branch_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 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 0x71821ce5 qcom_cc_register_board_clk -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x766e9f87 clk_regmap_div_ro_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x787e8234 qcom_find_freq -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x78b81ea0 clk_rcg2_floor_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x7a7d500f clk_fabia_pll_configure -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x7e66fd9e clk_regmap_mux_div_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x83fa32f5 qcom_find_cfg_index -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 0x91c41c9f clk_edp_pixel_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x965e47ff qcom_find_src_index -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x968af264 gdsc_gx_do_nothing_enable -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 0xba961aa7 clk_dp_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xbb9e9194 qcom_cc_map -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 0xc719f9c9 devm_clk_register_regmap -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xc82bd181 clk_agera_pll_configure -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xcf422970 clk_rcg_bypass_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xd438c1c3 clk_alpha_pll_postdiv_trion_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 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 0xf45b40ef qcom_cc_probe -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 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 0x57b24af1 sprd_clk_probe -EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0x597905e4 sprd_sc_gate_ops -EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0x6b8639b9 sprd_div_helper_set_rate -EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0x911aa4a0 sprd_mux_ops -EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0x9925914a sprd_mux_helper_set_parent -EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0xa34ddf5a sprd_clk_regmap_init -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 0x03659005 comedi_readback_insn_read -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x060ac2d2 comedi_buf_read_samples -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x06cf90ca comedi_dev_put -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x0cd330f4 range_unknown -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x0d1dd122 comedi_legacy_detach -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x106fa396 comedi_driver_unregister -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x21102f87 range_0_32mA -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x2f0ad9d3 range_bipolar5 -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x32789725 comedi_driver_register -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x3bd11776 comedi_nsamples_left -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x3d8c517f comedi_nscans_left -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x3e241324 comedi_event -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x4236eaaf range_4_20mA -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x4c3412c8 comedi_dio_update_state -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x4fe634f3 range_bipolar2_5 -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x57e91d2a comedi_alloc_subdev_readback -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x64f899d8 comedi_auto_config -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x6882d1e2 comedi_handle_events -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x6eb37600 comedi_dev_get_from_minor -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x7907d5dd comedi_dio_insn_config -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x7e3d14a7 __comedi_request_region -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x8113872c range_unipolar10 -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x8cb54b86 comedi_buf_read_alloc -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x9158ce52 comedi_buf_write_free -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x9af460ec comedi_auto_unconfig -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xa7063fba comedi_alloc_devpriv -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xab295aed comedi_is_subdevice_running -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xb0feaf38 comedi_load_firmware -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xb679cebc range_0_20mA -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xbb52fc7f range_bipolar10 -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xbd8b8ab4 comedi_check_chanlist -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xbdbe75c6 range_unipolar2_5 -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xcd7df4d4 comedi_alloc_subdevices -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xce9e550c comedi_request_region -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xdb2044b2 range_unipolar5 -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xdc9319c5 comedi_set_hw_dev -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xe10cb54f comedi_buf_write_alloc -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xe14c7273 comedi_alloc_spriv -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xe34484e8 comedi_set_spriv_auto_free -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xe92c0f5e comedi_timeout -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xeaa9f574 comedi_buf_read_n_available -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xf379a512 comedi_bytes_per_scan_cmd -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xf542ec47 comedi_buf_read_free -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xf69614ce comedi_buf_write_samples -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xfb9e01ae comedi_inc_scan_progress -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xfcaf1f39 comedi_bytes_per_scan -EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x0f0e7f34 comedi_pci_driver_unregister -EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x169a2332 comedi_pci_auto_config -EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x26036850 comedi_pci_auto_unconfig -EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x27456a7d comedi_pci_driver_register -EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x2bfb6d11 comedi_pci_detach -EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x31bef795 comedi_pci_enable -EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0xa7cbe504 comedi_pci_disable -EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0xefc0574a comedi_to_pci_dev -EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0x07d15d21 comedi_to_usb_interface -EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0x16836886 comedi_usb_driver_unregister -EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0x25cd49e1 comedi_usb_auto_config -EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0x5dcd1416 comedi_to_usb_dev -EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0xa92b7899 comedi_usb_auto_unconfig -EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0xe52b9c2e comedi_usb_driver_register -EXPORT_SYMBOL_GPL drivers/comedi/drivers/addi_watchdog 0x79f4a6cf addi_watchdog_reset -EXPORT_SYMBOL_GPL drivers/comedi/drivers/addi_watchdog 0xba57b5a1 addi_watchdog_init -EXPORT_SYMBOL_GPL drivers/comedi/drivers/amplc_dio200_common 0x1156e179 amplc_dio200_common_attach -EXPORT_SYMBOL_GPL drivers/comedi/drivers/amplc_dio200_common 0x58c2fccc amplc_dio200_set_enhance -EXPORT_SYMBOL_GPL drivers/comedi/drivers/amplc_pc236_common 0x6ccace5c amplc_pc236_common_attach -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x0205d19d comedi_8254_set_busy -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x062700a2 comedi_8254_update_divisors -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x1dc426c9 comedi_8254_load -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x31db792d comedi_8254_init -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x350b6a83 comedi_8254_mm_init -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x5031c0ee comedi_8254_subdevice_init -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x9a669d85 comedi_8254_ns_to_timer -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x9b02f9a9 comedi_8254_read -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0xd5ab38ad comedi_8254_status -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0xf17dd973 comedi_8254_write -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0xf57cd46d comedi_8254_set_mode -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0xf65d95cf comedi_8254_cascade_ns_to_timer -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0xfc3f5ed7 comedi_8254_pacer_enable -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8255 0x0010199b subdev_8255_init -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8255 0x26089b7d subdev_8255_regbase -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8255 0xccad0910 subdev_8255_mm_init -EXPORT_SYMBOL_GPL drivers/comedi/drivers/das08 0x9994dbde das08_common_attach -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x0c591dfe mite_dma_arm -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x0ca10bfe mite_request_channel_in_range -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x0d1a43b0 mite_detach -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x17d1c303 mite_done -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x23af586a mite_sync_dma -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x2be30de6 mite_ack_linkc -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x31a79d87 mite_bytes_in_transit -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x64d43778 mite_alloc_ring -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x73b7ff22 mite_buf_change -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x93933e4f mite_attach -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x99aa9927 mite_init_ring_descriptors -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xb4dddc22 mite_dma_disarm -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xb5224275 mite_prep_dma -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xc6b01514 mite_request_channel -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xe9a6358d mite_release_channel -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xef457f6f mite_free_ring -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_labpc_common 0xf5be900f labpc_common_attach -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_labpc_common 0xf6e927cd 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 0x3b744226 ni_gpct_device_construct -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x4cf37f17 ni_tio_set_gate_src -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x54c7eac4 ni_tio_insn_write -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x72328c97 ni_tio_set_bits -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x72b97ac7 ni_gpct_device_destroy -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x747f1870 ni_tio_arm -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x7fa99387 ni_tio_unset_routing -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x84378468 ni_tio_set_routing -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x8ac83203 ni_tio_get_routing -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x918df664 ni_tio_set_gate_src_raw -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xa6eb2a5b ni_tio_read -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xb5fae591 ni_tio_get_soft_copy -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xb6cbcf85 ni_tio_init_counter -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xcf2a0307 ni_tio_insn_config -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xd9889ad9 ni_tio_write -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xffadb171 ni_tio_insn_read -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0x0dff81ef ni_tio_handle_interrupt -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0x7223549e ni_tio_acknowledge -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0xccf70b2c ni_tio_cmdtest -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0xe97a5379 ni_tio_cancel -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0xf12ea2fc ni_tio_cmd -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0xf493c30a ni_tio_set_mite_channel -EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0x12574dbf comedi_get_n_channels -EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0x4c3c8431 comedi_dio_bitfield2 -EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0x530d6cec comedi_find_subdevice_by_type -EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0x5bc90727 comedi_close -EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0xd47098bf comedi_dio_get_config -EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0xe842dcc4 comedi_open -EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0xf171aad4 comedi_dio_config -EXPORT_SYMBOL_GPL drivers/counter/counter 0x3720f012 counter_register -EXPORT_SYMBOL_GPL drivers/counter/counter 0x94452f27 counter_unregister -EXPORT_SYMBOL_GPL drivers/counter/counter 0xbbee9f3b 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 0x953d9953 ccp_enqueue_cmd -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x02cad0db hisi_qm_sriov_disable -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x038f1a43 hisi_qm_dev_err_uninit -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x064be1e7 hisi_qm_wait_task_finish -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x07e6942f hisi_qm_init -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x09bf4677 hisi_acc_sg_buf_map_to_hw_sgl -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x0d5b5406 hisi_qm_create_qp -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x11cbfaf0 hisi_qm_free_qps -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x17d567bd hisi_qm_get_free_qp_num -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x18a0f1db hisi_qm_get_vft -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x20316899 hisi_qm_sriov_configure -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x22ae16e7 hisi_qm_stop_qp -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x28037fa7 hisi_qm_pm_init -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x2931b185 hisi_qm_stop -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x3356f1b6 hisi_qm_resume -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x34fab401 hisi_qm_sriov_enable -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x3d50338f hisi_qm_debug_regs_clear -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x41db9888 hisi_qm_debug_init -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x46e9dd8c hisi_qm_alg_register -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x4e44adc3 hisi_qm_reset_prepare -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x56fd7263 hisi_acc_sg_buf_unmap -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x5a993ec2 hisi_acc_create_sgl_pool -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x5d717520 hisi_acc_free_sgl_pool -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x6c7ed865 hisi_qm_reset_done -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x6fc07fc1 hisi_qm_dev_shutdown -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x70536015 hisi_qm_start_qp -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x76d302d6 hisi_qm_dev_slot_reset -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x7b5d9f22 hisi_qm_put_dfx_access -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x8fa0fe28 hisi_qp_send -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x905965ba hisi_qm_start -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x95a646f4 hisi_qm_uninit -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x9d8d1948 hisi_qm_regs_dump -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xa8b89ada hisi_qm_release_qp -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xae4efcc4 hisi_qm_pm_uninit -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xcbb07823 hisi_qm_suspend -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xd2ab1117 hisi_qm_alloc_qps_node -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xd727df2e hisi_qm_dev_err_detected -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xdb561c01 hisi_qm_get_dfx_access -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xfa957202 hisi_qm_dev_err_init -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xfadb6473 hisi_qm_alg_unregister -EXPORT_SYMBOL_GPL drivers/crypto/marvell/octeontx/octeontx-cpt 0x2771d1b3 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/dma/dw-edma/dw-edma 0x6cc16098 dw_edma_remove -EXPORT_SYMBOL_GPL drivers/dma/dw-edma/dw-edma 0xc79b1fd1 dw_edma_probe -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x2a152fb2 dw_dma_probe -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x2ae1950b idma32_dma_remove -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x51d6cf03 dw_dma_filter -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x5980e0e8 idma32_dma_probe -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x736835e1 dw_dma_acpi_controller_register -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x7a2a5a4e dw_dma_remove -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x8092fe0e dw_dma_acpi_controller_free -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xab9052b2 do_dw_dma_disable -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xc99be9e4 do_dw_dma_enable -EXPORT_SYMBOL_GPL drivers/dma/fsl-dpaa2-qdma/dpdmai 0x12957a90 dpdmai_disable -EXPORT_SYMBOL_GPL drivers/dma/fsl-dpaa2-qdma/dpdmai 0x2c312109 dpdmai_enable -EXPORT_SYMBOL_GPL drivers/dma/fsl-dpaa2-qdma/dpdmai 0x6d446a11 dpdmai_open -EXPORT_SYMBOL_GPL drivers/dma/fsl-dpaa2-qdma/dpdmai 0x70778cfb dpdmai_get_tx_queue -EXPORT_SYMBOL_GPL drivers/dma/fsl-dpaa2-qdma/dpdmai 0x73d6eed3 dpdmai_get_attributes -EXPORT_SYMBOL_GPL drivers/dma/fsl-dpaa2-qdma/dpdmai 0x74633ad0 dpdmai_get_rx_queue -EXPORT_SYMBOL_GPL drivers/dma/fsl-dpaa2-qdma/dpdmai 0xa8ab2b7c dpdmai_close -EXPORT_SYMBOL_GPL drivers/dma/fsl-dpaa2-qdma/dpdmai 0xb5214cab dpdmai_reset -EXPORT_SYMBOL_GPL drivers/dma/fsl-dpaa2-qdma/dpdmai 0xd0c7edcc dpdmai_destroy -EXPORT_SYMBOL_GPL drivers/dma/fsl-dpaa2-qdma/dpdmai 0xe18be048 dpdmai_set_rx_queue -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x012bc662 fsl_edma_slave_config -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x0537b731 fsl_edma_tx_status -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x0894b231 fsl_edma_prep_dma_cyclic -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x12f6ef0a fsl_edma_chan_mux -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x29c35bf9 fsl_edma_resume -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x4f83de39 fsl_edma_free_chan_resources -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x60c2c1fc fsl_edma_terminate_all -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x8bd526de fsl_edma_alloc_chan_resources -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x8e7b57b8 fsl_edma_issue_pending -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x956baa62 fsl_edma_pause -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x96a6bf57 fsl_edma_prep_slave_sg -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0xdedfcf38 fsl_edma_disable_request -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0xe2c0e095 fsl_edma_free_desc -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0xe754f376 fsl_edma_xfer_desc -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0xe78c0c70 fsl_edma_cleanup_vchan -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0xfa9949fb fsl_edma_setup_regs -EXPORT_SYMBOL_GPL drivers/dma/qcom/hdma_mgmt 0x6d52a77d hidma_mgmt_setup -EXPORT_SYMBOL_GPL drivers/dma/qcom/hdma_mgmt 0xd53737f9 hidma_mgmt_init_sys -EXPORT_SYMBOL_GPL drivers/firewire/firewire-core 0xe86fb5c7 fw_card_release -EXPORT_SYMBOL_GPL drivers/firmware/arm_ffa/ffa-module 0x5d975966 ffa_device_register -EXPORT_SYMBOL_GPL drivers/firmware/arm_ffa/ffa-module 0x7af1beb9 ffa_dev_ops_get -EXPORT_SYMBOL_GPL drivers/firmware/arm_ffa/ffa-module 0x881d8086 ffa_bus_type -EXPORT_SYMBOL_GPL drivers/firmware/arm_ffa/ffa-module 0x9b2e3655 ffa_driver_register -EXPORT_SYMBOL_GPL drivers/firmware/arm_ffa/ffa-module 0xbdb14769 ffa_driver_unregister -EXPORT_SYMBOL_GPL drivers/firmware/arm_ffa/ffa-module 0xcca5111f ffa_device_unregister -EXPORT_SYMBOL_GPL drivers/firmware/arm_scpi 0x9f0e9702 get_scpi_ops -EXPORT_SYMBOL_GPL drivers/firmware/meson/meson_sm 0x9e9d5210 meson_sm_get -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 0x6b768f4b 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 0xa8bcb1b5 alt_pr_register -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x04699fcf dfl_fpga_port_ops_del -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x0699ffa2 dfl_fpga_cdev_config_ports_pf -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x0a97b34b dfl_fpga_port_ops_put -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x0ea144b7 dfl_fpga_feature_devs_remove -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x15a0e630 dfl_feature_ioctl_get_num_irqs -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x2f920c81 dfl_fpga_enum_info_alloc -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x3406cd2d dfl_fpga_set_irq_triggers -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x369ec528 dfl_fpga_port_ops_add -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x36c9170f dfl_fpga_cdev_config_ports_vf -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x45b27048 dfl_fpga_enum_info_add_irq -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x4dca44ef dfl_fpga_enum_info_free -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x52c268b0 dfl_fpga_dev_ops_register -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x608cbf5f __dfl_fpga_cdev_find_port -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x9dbc507f dfl_fpga_dev_feature_uinit -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xa61f18bc dfl_fpga_enum_info_add_dfl -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xab77cb8b dfl_fpga_cdev_release_port -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xbd049cb9 dfl_feature_ioctl_set_irq -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xc95a6dc0 dfl_fpga_dev_feature_init -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xca06a1b3 dfl_fpga_dev_ops_unregister -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xcb887442 dfl_fpga_cdev_assign_port -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xe72a1f9d dfl_fpga_feature_devs_enumerate -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xf760edf7 dfl_fpga_check_port_id -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xf842cab1 dfl_fpga_port_ops_get -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 0x2ac600d2 fpga_bridge_put -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x2c8167cf fpga_bridges_disable -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x3d5cfa2c fpga_bridge_unregister -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x70cb9376 fpga_bridge_enable -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x7ec35f56 fpga_bridge_register -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x809985ff of_fpga_bridge_get -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x878e9d6c devm_fpga_bridge_create -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x919c172b fpga_bridge_get -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0xca8cc04a fpga_bridge_free -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0xcc4ad9bd fpga_bridge_get_to_list -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0xce6c371a of_fpga_bridge_get_to_list -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0xe0a2959e fpga_bridge_disable -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0xf872e94b fpga_bridge_create -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x02722676 fpga_mgr_lock -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x057deffa devm_fpga_mgr_create -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x0c30c7d4 fpga_mgr_free -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x0f23c3a1 of_fpga_mgr_get -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x223b7cb7 fpga_mgr_create -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x2f7bcb11 fpga_mgr_register -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x2fa12321 fpga_mgr_load -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x4742a3fe devm_fpga_mgr_register -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x8cb606c5 fpga_mgr_put -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x8f560cdb fpga_mgr_unlock -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xb0568762 fpga_image_info_alloc -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xb078d9fe fpga_mgr_get -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xc741d7c4 fpga_mgr_unregister -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xf0d7e6c2 fpga_image_info_free -EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0x205b6118 fpga_region_unregister -EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0x243faa84 fpga_region_class_find -EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0x2a69974f devm_fpga_region_create -EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0x2aecb69a fpga_region_program_fpga -EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0x2b4ea663 fpga_region_create -EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0xc2284066 fpga_region_register -EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0xed480c76 fpga_region_free -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 0x5c1ce8b9 fsi_cdev_type -EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x63c5b33f fsi_get_new_minor -EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x78060f23 fsi_slave_read -EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x7b0df52e fsi_master_register -EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x9222438b fsi_master_rescan -EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0xb7fb43a0 fsi_bus_type -EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0xb97604f3 fsi_device_write -EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0xce22aee2 fsi_slave_release_range -EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0xd2e01467 fsi_driver_register -EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0xd942f235 fsi_slave_write -EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0xdbcc6d19 fsi_master_unregister -EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0xea7a7ba3 fsi_driver_unregister -EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0xfecf177b fsi_device_read -EXPORT_SYMBOL_GPL drivers/fsi/fsi-occ 0x57e4d2be fsi_occ_submit -EXPORT_SYMBOL_GPL drivers/fsi/fsi-sbefifo 0xcac1c410 sbefifo_parse_status -EXPORT_SYMBOL_GPL drivers/fsi/fsi-sbefifo 0xe0bd7a35 sbefifo_submit -EXPORT_SYMBOL_GPL drivers/gnss/gnss 0x1bf12273 gnss_register_device -EXPORT_SYMBOL_GPL drivers/gnss/gnss 0x2f59dbc4 gnss_put_device -EXPORT_SYMBOL_GPL drivers/gnss/gnss 0x6749bb8f gnss_deregister_device -EXPORT_SYMBOL_GPL drivers/gnss/gnss 0xa75af25c gnss_insert_raw -EXPORT_SYMBOL_GPL drivers/gnss/gnss 0xd1e31e98 gnss_allocate_device -EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0x33ade2d9 gnss_serial_allocate -EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0x3d06575c gnss_serial_deregister -EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0x3ffa0a60 gnss_serial_register -EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0xe11c94dc gnss_serial_free -EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0xe68aa2d5 gnss_serial_pm_ops -EXPORT_SYMBOL_GPL drivers/gpio/gpio-max730x 0x5f442740 __max730x_probe -EXPORT_SYMBOL_GPL drivers/gpio/gpio-max730x 0x83c86b55 __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 0xc651fd67 devm_gpio_regmap_register -EXPORT_SYMBOL_GPL drivers/gpio/gpio-regmap 0xe71523a7 gpio_regmap_register -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x2fac1bb1 analogix_dp_remove -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x3ee0dd60 anx_dp_aux_transfer -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x6406b17b analogix_dp_resume -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x7860cc80 analogix_dp_stop_crc -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0xa4998bc4 analogix_dp_start_crc -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0xb25bf9f9 analogix_dp_unbind -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0xcf1ed927 analogix_dp_bind -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0xe3179220 analogix_dp_probe -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0xf49345de analogix_dp_suspend -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x09340e05 dw_hdmi_set_channel_count -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x094f6fc5 dw_hdmi_phy_i2c_set_addr -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x1461e227 dw_hdmi_set_channel_status -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x157e02b6 dw_hdmi_phy_reset -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x195a593c dw_hdmi_probe -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x2d1c0e80 dw_hdmi_setup_rx_sense -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x2fac9436 dw_hdmi_set_channel_allocation -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x316212a8 dw_hdmi_unbind -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x42926f4a dw_hdmi_resume -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x4a9b174f dw_hdmi_remove -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x4fde3a5a dw_hdmi_bind -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x6712b5a7 dw_hdmi_phy_gen2_txpwron -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x7d8a3aee dw_hdmi_phy_i2c_write -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x8c56146d dw_hdmi_set_high_tmds_clock_ratio -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x8dcd6f43 dw_hdmi_set_sample_rate -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x9b44a60b dw_hdmi_phy_gen2_pddq -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0xce27012a dw_hdmi_audio_disable -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0xd6968220 dw_hdmi_phy_setup_hpd -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0xd8fe547b dw_hdmi_audio_enable -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0xdafa1790 dw_hdmi_phy_read_hpd -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0xdb45d98b dw_hdmi_set_plugged_cb -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 0x5a1bda92 dw_mipi_dsi_probe -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-mipi-dsi 0xc0075435 dw_mipi_dsi_bind -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x0959acc2 drm_gem_shmem_prime_import_sg_table -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x09779947 drm_class_device_register -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x13777fc3 drm_gem_cma_create -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x23787d82 drm_gem_cma_dumb_create_internal -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x30ee2184 drm_gem_cma_prime_import_sg_table -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x31f261dc drm_bridge_hpd_notify -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x3380bfc3 drm_of_lvds_get_dual_link_pixel_order -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x479a4001 drm_gem_cma_dumb_create -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x560b8ad9 drm_gem_cma_get_sg_table -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x57f3cd66 drm_do_get_edid -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x6162e66f drm_gem_shmem_mmap -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x66cf2f64 drm_display_mode_from_videomode -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x6849a420 drm_of_component_match_add -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x690bfb0c drm_gem_shmem_dumb_create -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x69a44a4f drm_gem_dumb_map_offset -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x6d07c9a9 drm_bridge_get_modes -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x7123da72 drm_gem_cma_vmap -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x7c6b4664 drm_gem_shmem_free -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x87e75f9f drm_gem_shmem_get_pages_sgt -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x8a594b9b drm_bridge_get_edid -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x97fad422 drm_hdcp_check_ksvs_revoked -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xa7c72326 drm_crtc_add_crc_entry -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xad885165 drm_bus_flags_from_videomode -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xb47a2867 drm_class_device_unregister -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xb4fbf14b drm_bridge_hpd_disable -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xb65cb9cd of_get_drm_display_mode -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xc8914f7c drm_bridge_detect -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xccf11cd0 drm_gem_cma_mmap -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xd6dd6047 drm_gem_cma_free_object -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xdb590b36 drm_bridge_hpd_enable -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xdf2c13ec drm_gem_cma_vm_ops -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xeca624f2 drm_gem_shmem_create -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xeef93f43 drm_gem_shmem_get_sg_table -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xf19d2da5 drm_of_find_panel_or_bridge -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xf8bf726f drm_of_encoder_active_endpoint -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xf977c670 drmm_kstrdup -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xfe04ace4 drm_get_unmapped_area -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xfe9f72f3 drm_display_mode_to_videomode -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dp_aux_bus 0x29eb6e74 __dp_aux_dp_driver_register -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dp_aux_bus 0x3a8cd318 dp_aux_dp_driver_unregister -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dp_aux_bus 0x49bd622f of_dp_aux_depopulate_ep_devices -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dp_aux_bus 0xbc335611 of_dp_aux_populate_ep_devices -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dp_aux_bus 0xc6f7baa6 devm_of_dp_aux_populate_ep_devices -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x04c293ea drm_bridge_connector_enable_hpd -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x3b62b4e7 drm_gem_plane_helper_prepare_fb -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x5cb4e7d3 drm_fb_cma_get_gem_obj -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x65bf33a6 drm_gem_fb_create_with_dirty -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x6dd25840 drm_bridge_connector_disable_hpd -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x6e356e33 drm_gem_fb_get_obj -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x73e03110 drm_fb_cma_get_gem_addr -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x7dfde321 drm_fb_cma_sync_non_coherent -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x9d49f477 drm_bridge_connector_init -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xa24b133a drm_gem_fb_afbc_init -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xbf8f061e drm_gem_fb_create -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xc97c4bbe drm_gem_fb_init_with_funcs -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xde564650 drm_gem_fb_create_with_funcs -EXPORT_SYMBOL_GPL drivers/gpu/drm/meson/meson-drm 0x2937999e 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 0x330266a5 meson_vclk_setup -EXPORT_SYMBOL_GPL drivers/gpu/drm/meson/meson-drm 0x52ec7c97 meson_vclk_vic_supported_freq -EXPORT_SYMBOL_GPL drivers/gpu/drm/meson/meson-drm 0x94a785f8 meson_venc_hdmi_supported_mode -EXPORT_SYMBOL_GPL drivers/gpu/drm/meson/meson-drm 0xab5bee2f meson_venc_hdmi_supported_vic -EXPORT_SYMBOL_GPL drivers/gpu/drm/meson/meson-drm 0xb32ee649 meson_venc_hdmi_mode_set -EXPORT_SYMBOL_GPL drivers/gpu/drm/panel/panel-samsung-s6e63m0 0x30085466 s6e63m0_remove -EXPORT_SYMBOL_GPL drivers/gpu/drm/panel/panel-samsung-s6e63m0 0x5e884a54 s6e63m0_probe -EXPORT_SYMBOL_GPL drivers/gpu/drm/pl111/pl111_drm 0xf9906fc4 pl111_versatile_init -EXPORT_SYMBOL_GPL drivers/gpu/drm/rcar-du/rcar_cmm 0x16271b78 rcar_cmm_disable -EXPORT_SYMBOL_GPL drivers/gpu/drm/rcar-du/rcar_cmm 0x48c441a5 rcar_cmm_setup -EXPORT_SYMBOL_GPL drivers/gpu/drm/rcar-du/rcar_cmm 0x7a304978 rcar_cmm_enable -EXPORT_SYMBOL_GPL drivers/gpu/drm/rcar-du/rcar_cmm 0xd129e651 rcar_cmm_init -EXPORT_SYMBOL_GPL drivers/gpu/drm/rcar-du/rcar_lvds 0x157b844b rcar_lvds_clk_enable -EXPORT_SYMBOL_GPL drivers/gpu/drm/rcar-du/rcar_lvds 0x5beebf7a rcar_lvds_is_connected -EXPORT_SYMBOL_GPL drivers/gpu/drm/rcar-du/rcar_lvds 0x8ba7cbc0 rcar_lvds_dual_link -EXPORT_SYMBOL_GPL drivers/gpu/drm/rcar-du/rcar_lvds 0xf38c1b26 rcar_lvds_clk_disable -EXPORT_SYMBOL_GPL drivers/gpu/drm/rockchip/rockchipdrm 0x07fa8430 vop_component_ops -EXPORT_SYMBOL_GPL drivers/gpu/drm/rockchip/rockchipdrm 0x8f1dd350 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 0x087785f1 gb_hd_cport_release_reserved -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x096129da greybus_deregister_driver -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x0cad2b6b 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 0x1cae41ae gb_connection_create -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x2517b3e8 greybus_data_rcvd -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x29195ad5 gb_hd_shutdown -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x2b739574 gb_operation_cancel -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x2f6e81c8 greybus_message_sent -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x3526d8aa gb_svc_intf_set_power_mode -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x3713eba6 gb_connection_enable -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x394770c1 gb_operation_request_send -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x3bcf4a49 __traceiter_gb_hd_create -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x3ca3c7a0 gb_hd_create -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x3d225f18 __traceiter_gb_message_submit -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x46f36d47 gb_connection_disable_rx -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x49a5fcc4 gb_connection_create_flags -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x5684b0f2 gb_hd_del -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 0x64299e6e gb_connection_destroy -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x6d3bb9ec __SCK__tp_func_gb_message_submit -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x6d634f2c greybus_register_driver -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x81217186 gb_operation_get_payload_size_max -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x81e221fb __SCK__tp_func_gb_hd_create -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x845ca3e8 gb_operation_request_send_sync_timeout -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x85802e8a gb_operation_sync_timeout -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x86aebd3f __traceiter_gb_hd_add -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x89f514a1 __SCK__tp_func_gb_hd_in -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x8cc7e7b0 gb_interface_request_mode_switch -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x94d1e0a6 __traceiter_gb_hd_release -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xa416e2da __tracepoint_gb_hd_del -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xa46b4381 gb_connection_create_offloaded -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xa547f076 gb_operation_get -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xae1f7a74 gb_debugfs_get -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xb4594536 gb_operation_create_flags -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xb4b148ad gb_connection_disable -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xb566a8d2 gb_connection_enable_tx -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xb784115a gb_operation_response_alloc -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xc25f0d48 gb_operation_put -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xc43d44aa __traceiter_gb_hd_del -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xc6300500 gb_connection_latency_tag_disable -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xcf2ac4c9 gb_hd_output -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xd0ffcf8d gb_hd_cport_reserve -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xd3e646d9 __tracepoint_gb_hd_release -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xd6541d25 gb_connection_disable_forced -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xdb0f5e6c gb_hd_add -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xe8fee477 gb_hd_put -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xeac79e1a __SCK__tp_func_gb_hd_del -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xec3b492e __traceiter_gb_hd_in -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xf107a122 __SCK__tp_func_gb_hd_release -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xf8eea515 gb_operation_result -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xfb18c7cf gb_connection_latency_tag_enable -EXPORT_SYMBOL_GPL drivers/hid/hid 0x004b4f01 __hid_register_driver -EXPORT_SYMBOL_GPL drivers/hid/hid 0x01fe8f52 hid_destroy_device -EXPORT_SYMBOL_GPL drivers/hid/hid 0x05495392 hid_debug -EXPORT_SYMBOL_GPL drivers/hid/hid 0x0cabaa54 hidinput_count_leds -EXPORT_SYMBOL_GPL drivers/hid/hid 0x0f16400c hidinput_get_led_field -EXPORT_SYMBOL_GPL drivers/hid/hid 0x1555d078 hid_unregister_driver -EXPORT_SYMBOL_GPL drivers/hid/hid 0x19d52f1f hid_quirks_exit -EXPORT_SYMBOL_GPL drivers/hid/hid 0x1e4ff825 hid_resolv_usage -EXPORT_SYMBOL_GPL drivers/hid/hid 0x24669b50 hidinput_disconnect -EXPORT_SYMBOL_GPL drivers/hid/hid 0x38841cbd hid_match_device -EXPORT_SYMBOL_GPL drivers/hid/hid 0x417090b0 hidinput_report_event -EXPORT_SYMBOL_GPL drivers/hid/hid 0x48de1e28 hid_dump_field -EXPORT_SYMBOL_GPL drivers/hid/hid 0x49282a18 hid_dump_device -EXPORT_SYMBOL_GPL drivers/hid/hid 0x4d4de3ce hid_hw_close -EXPORT_SYMBOL_GPL drivers/hid/hid 0x54b8e017 hid_open_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0x5a6a32f0 hid_disconnect -EXPORT_SYMBOL_GPL drivers/hid/hid 0x684c9b4b hid_parse_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0x6d1d0c25 hidraw_connect -EXPORT_SYMBOL_GPL drivers/hid/hid 0x7b1f5985 hid_set_field -EXPORT_SYMBOL_GPL drivers/hid/hid 0x7fa30829 hid_hw_start -EXPORT_SYMBOL_GPL drivers/hid/hid 0x8b13a8b8 hid_snto32 -EXPORT_SYMBOL_GPL drivers/hid/hid 0x8bd109a8 hid_validate_values -EXPORT_SYMBOL_GPL drivers/hid/hid 0x8c2f1e4e hid_lookup_quirk -EXPORT_SYMBOL_GPL drivers/hid/hid 0x8d76ac70 __hid_request -EXPORT_SYMBOL_GPL drivers/hid/hid 0x9503af6b hid_ignore -EXPORT_SYMBOL_GPL drivers/hid/hid 0x97bf26ad hidinput_calc_abs_res -EXPORT_SYMBOL_GPL drivers/hid/hid 0x9b677715 hid_debug_event -EXPORT_SYMBOL_GPL drivers/hid/hid 0x9fc38b06 hid_setup_resolution_multiplier -EXPORT_SYMBOL_GPL drivers/hid/hid 0xa52f1086 hidinput_find_field -EXPORT_SYMBOL_GPL drivers/hid/hid 0xa8b963e8 hid_add_device -EXPORT_SYMBOL_GPL drivers/hid/hid 0xac1c419e hidraw_report_event -EXPORT_SYMBOL_GPL drivers/hid/hid 0xb2ea1d30 hid_allocate_device -EXPORT_SYMBOL_GPL drivers/hid/hid 0xb3e4472c hid_field_extract -EXPORT_SYMBOL_GPL drivers/hid/hid 0xb452cb46 hid_dump_input -EXPORT_SYMBOL_GPL drivers/hid/hid 0xb504e7d1 hid_dump_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0xc102fd1d hid_register_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0xc7c7f620 hid_report_raw_event -EXPORT_SYMBOL_GPL drivers/hid/hid 0xccebb46b hid_connect -EXPORT_SYMBOL_GPL drivers/hid/hid 0xda6bc8d2 hid_check_keys_pressed -EXPORT_SYMBOL_GPL drivers/hid/hid 0xe23226bc hid_hw_stop -EXPORT_SYMBOL_GPL drivers/hid/hid 0xe4c7a4f5 hid_output_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0xeade1b9e hid_hw_open -EXPORT_SYMBOL_GPL drivers/hid/hid 0xef93faf2 hidinput_connect -EXPORT_SYMBOL_GPL drivers/hid/hid 0xf1e7d4bd hid_input_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0xf578a848 hid_compare_device_paths -EXPORT_SYMBOL_GPL drivers/hid/hid 0xfa355613 hid_quirks_init -EXPORT_SYMBOL_GPL drivers/hid/hid 0xfb77bce5 hidraw_disconnect -EXPORT_SYMBOL_GPL drivers/hid/hid 0xffc91e9f hid_alloc_report_buf -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat 0x2f622ea1 roccat_disconnect -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat 0x3e4427c8 roccat_report_event -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat 0x96a6fe51 roccat_connect -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x1aa61699 roccat_common2_receive -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x42540ddd roccat_common2_send_with_status -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x44862210 roccat_common2_sysfs_read -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x57b3c05a roccat_common2_send -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0xbdf3a63e roccat_common2_device_init_struct -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0xbe9671a1 roccat_common2_sysfs_write -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x1d05a3ff hid_sensor_get_usage_index -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x2b125cce sensor_hub_input_attr_get_raw_value -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x352e4fb7 sensor_hub_register_callback -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x37915fd5 sensor_hub_get_feature -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x70454898 sensor_hub_input_get_attribute_info -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x74bea85f sensor_hub_device_open -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xb68624f5 sensor_hub_set_feature -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xf9224346 sensor_hub_remove_callback -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xfe653bb2 sensor_hub_device_close -EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0x13457720 i2c_hid_core_remove -EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0x29e9590b i2c_hid_core_shutdown -EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0x436057f2 i2c_hid_ll_driver -EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0xa78da34f i2c_hid_core_probe -EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0xecfc617a i2c_hid_core_pm -EXPORT_SYMBOL_GPL drivers/hid/surface-hid/surface_hid_core 0x37872fcf surface_hid_device_add -EXPORT_SYMBOL_GPL drivers/hid/surface-hid/surface_hid_core 0x853c6bb9 surface_hid_device_destroy -EXPORT_SYMBOL_GPL drivers/hid/surface-hid/surface_hid_core 0x88da11ae surface_hid_pm_ops -EXPORT_SYMBOL_GPL drivers/hid/uhid 0x9a34c5e4 uhid_hid_driver -EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0x608f86b3 hiddev_hid_event -EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0xfeed997c usb_hid_driver -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x0139557f hsi_release_port -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x05f8fa3c hsi_free_msg -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x0a651c1e hsi_put_controller -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x0f5387c0 hsi_remove_client -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x152b7360 hsi_unregister_port_event -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x2b7ffce6 hsi_unregister_controller -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x2d5ab575 hsi_event -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x3d9e3642 hsi_new_client -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x4d72f13a hsi_alloc_controller -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x5210a5bf hsi_board_list -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x7fde4abb hsi_add_clients_from_dt -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x82e39953 hsi_port_unregister_clients -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x8815d485 hsi_register_port_event -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x974c1755 hsi_register_client_driver -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xafdd131e hsi_claim_port -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xb9679a6c hsi_alloc_msg -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xddbdc0bb hsi_get_channel_id_by_name -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xe65f7b3d hsi_register_controller -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xef88947f hsi_async -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x08b610a2 vmbus_close -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x0cf5b07d vmbus_free_ring -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x14da1dc9 hv_pkt_iter_first_raw -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x2275c639 vmbus_hvsock_device_unregister -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x242f15e4 vmbus_sendpacket_pagebuffer -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 0x4179cc25 vmbus_teardown_gpadl -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x42f72fab hv_ringbuffer_get_debuginfo -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x4372dd73 vmbus_connect_ring -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x43c12c35 vmbus_setevent -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x46a417ca vmbus_proto_version -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x4746c993 __hv_pkt_iter_next -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x4b2210b8 vmbus_send_tl_connect_request -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x60b200bd vmbus_connection -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x60d2647f vmbus_allocate_mmio -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x6115e71c vmbus_establish_gpadl -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x625e399a vmbus_next_request_id -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x6819b55c vmbus_alloc_ring -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x75c11247 hv_pkt_iter_close -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x79080340 hv_ringbuffer_spinlock_busy -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x8440f610 __vmbus_driver_register -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x91efa3ec vmbus_set_chn_rescind_callback -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x99adca84 vmbus_recvpacket_raw -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x9aa81587 vmbus_driver_unregister -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xa4b14a6b hv_pkt_iter_first -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xa986bb5f vmbus_request_addr -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xb8dfd5fc vmbus_sendpacket_mpb_desc -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xc9dfb2f2 vmbus_set_sc_create_callback -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xd5d4b9e8 vmbus_disconnect_ring -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xdd6931ff vmbus_open -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xe100b563 vmbus_are_subchannels_present -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xe33b64a2 vmbus_send_modifychannel -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xf16c00e6 vmbus_set_event -EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0x843e0e4e adt7x10_dev_pm_ops -EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0xcf080a1e adt7x10_remove -EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0xd4b92e23 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 0xcb7a6851 ltc2947_pm_ops -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x5d848395 intel_th_set_output -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x6257869e intel_th_driver_register -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x74c79548 intel_th_trace_disable -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x8897fe36 intel_th_free -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xa8a974f7 intel_th_alloc -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xc36c9efa intel_th_driver_unregister -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xc523e0f3 intel_th_trace_enable -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xd7b3d6df intel_th_output_enable -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xfb7955aa intel_th_trace_switch -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th_msu 0x21a55684 intel_th_msu_buffer_register -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th_msu 0xc55ffb50 intel_th_msc_window_unlock -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th_msu 0xcd68c2e5 intel_th_msu_buffer_unregister -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x4014e28a stm_register_device -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x5481374f stm_data_write -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x5749be9c stm_unregister_device -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x729d29ad stm_source_unregister_device -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x7867a3fe stm_unregister_protocol -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xa5a55f6c stm_source_register_device -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xc4afb305 stm_source_write -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xc77f93b6 to_pdrv_policy_node -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xfc9dd96d stm_register_protocol -EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x98933256 i2c_root_adapter -EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0xa4bf5b49 i2c_mux_alloc -EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0xcd526d1c i2c_mux_del_adapters -EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0xd3639752 i2c_mux_add_adapter -EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0x2ec8016f i2c_register_spd -EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0x7e86b4de i2c_free_slave_host_notify_device -EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0xd6609ce1 i2c_new_slave_host_notify_device -EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0xfbdc7130 i2c_handle_smbus_alert -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x05570412 i3c_device_disable_ibi -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x2b00e5f6 i3c_device_enable_ibi -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x30e568bc i3c_generic_ibi_recycle_slot -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x375f7400 i3c_device_get_info -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x412c6dcc dev_to_i3cdev -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x46b9129b i3c_master_enec_locked -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x538c4536 i3c_driver_register_with_owner -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x5e99f99c i3c_master_entdaa_locked -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x67e41457 i3c_generic_ibi_alloc_pool -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x6c8440de i3c_device_free_ibi -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x70966c07 i3c_master_get_free_addr -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x739b6301 i3c_master_add_i3c_dev_locked -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x73d8ed94 i3c_master_disec_locked -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x76fe3e05 i3c_generic_ibi_free_pool -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x7bad4934 i3c_device_request_ibi -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x806e7724 i3cdev_to_dev -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x8a6535e2 i3c_master_unregister -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x9511350d i3c_master_defslvs_locked -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x9fa924cb i3c_generic_ibi_get_free_slot -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xa40af5fe i3c_device_match_id -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xa81c87f6 i3c_master_register -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xc51b861a i3c_master_set_info -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xcea5d0d7 i3c_driver_unregister -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xf446c164 i3c_device_do_priv_xfers -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xf7a2308d i3c_master_queue_ibi -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xffd0834c i3c_master_do_daa -EXPORT_SYMBOL_GPL drivers/iio/accel/adxl372 0xa9b94422 adxl372_readable_noinc_reg -EXPORT_SYMBOL_GPL drivers/iio/accel/adxl372 0xf786fb04 adxl372_probe -EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0x1226b44d bmc150_accel_core_remove -EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0x5008e050 bmc150_accel_pm_ops -EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0xea17c37d bmc150_regmap_conf -EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0xedcc3a43 bmc150_accel_core_probe -EXPORT_SYMBOL_GPL drivers/iio/accel/bmi088-accel-core 0x5382fa14 bmi088_accel_core_remove -EXPORT_SYMBOL_GPL drivers/iio/accel/bmi088-accel-core 0x7fd04053 bmi088_accel_core_probe -EXPORT_SYMBOL_GPL drivers/iio/accel/bmi088-accel-core 0x82b9ac28 bmi088_accel_pm_ops -EXPORT_SYMBOL_GPL drivers/iio/accel/bmi088-accel-core 0xd8294bc3 bmi088_regmap_conf -EXPORT_SYMBOL_GPL drivers/iio/accel/fxls8962af-core 0x1ddb6349 fxls8962af_pm_ops -EXPORT_SYMBOL_GPL drivers/iio/accel/fxls8962af-core 0x7c42f876 fxls8962af_i2c_regmap_conf -EXPORT_SYMBOL_GPL drivers/iio/accel/fxls8962af-core 0xa6132943 fxls8962af_core_probe -EXPORT_SYMBOL_GPL drivers/iio/accel/fxls8962af-core 0xde9c6cb3 fxls8962af_spi_regmap_conf -EXPORT_SYMBOL_GPL drivers/iio/accel/mma7455_core 0x3091e313 mma7455_core_remove -EXPORT_SYMBOL_GPL drivers/iio/accel/mma7455_core 0x4af2a316 mma7455_core_regmap -EXPORT_SYMBOL_GPL drivers/iio/accel/mma7455_core 0xe63fc108 mma7455_core_probe -EXPORT_SYMBOL_GPL drivers/iio/adc/ad7091r-base 0x8eab8ea0 ad7091r_regmap_config -EXPORT_SYMBOL_GPL drivers/iio/adc/ad7091r-base 0xc2a78b85 ad7091r_probe -EXPORT_SYMBOL_GPL drivers/iio/adc/ad7606 0xa742aca9 ad7606_pm_ops -EXPORT_SYMBOL_GPL drivers/iio/adc/ad7606 0xb530f465 ad7606_probe -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x0bb64c6b ad_sd_write_reg -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x0be72b02 devm_ad_sd_setup_buffer_and_trigger -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x27cc4cb0 ad_sd_read_reg -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x37a9877e ad_sd_calibrate_all -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x40922f0e ad_sd_set_comm -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x76d7bfce ad_sd_init -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x9829fbe1 ad_sd_calibrate -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xa410aacd ad_sigma_delta_single_conversion -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xae69dff4 ad_sd_reset -EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xd22ec1e6 ad_sd_validate_trigger -EXPORT_SYMBOL_GPL drivers/iio/adc/adi-axi-adc 0x78e5e18b devm_adi_axi_adc_conv_register -EXPORT_SYMBOL_GPL drivers/iio/adc/adi-axi-adc 0xe74b45d1 adi_axi_adc_conv_priv -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x07d2b891 iio_channel_cb_get_iio_dev -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x1d08bf2a 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 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 0xbd661abe iio_channel_cb_get_channels -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x05cd89c6 iio_dma_buffer_release -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x0ccf6029 iio_dma_buffer_set_length -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x68cefd28 iio_dma_buffer_exit -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x83f3fe9d iio_dma_buffer_init -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x8b07d2cf iio_dma_buffer_data_available -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x8bb1bd2a iio_dma_buffer_request_update -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x9f3b7957 iio_dma_buffer_read -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0xa5f39835 iio_dma_buffer_enable -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0xb2be69e9 iio_dma_buffer_block_list_abort -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0xc48a3afd iio_dma_buffer_disable -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0xca59caaf iio_dma_buffer_block_done -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0xdc55d620 iio_dma_buffer_set_bytes_per_datum -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dmaengine 0x310d9a4a 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 0xb02c8476 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 0xc274e7a8 devm_iio_hw_consumer_alloc -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-triggered-buffer 0xc26f52b0 devm_iio_triggered_buffer_setup_ext -EXPORT_SYMBOL_GPL drivers/iio/buffer/kfifo_buf 0xbfff1c72 devm_iio_kfifo_buffer_setup_ext -EXPORT_SYMBOL_GPL drivers/iio/chemical/bme680_core 0xe94c7bef bme680_core_probe -EXPORT_SYMBOL_GPL drivers/iio/chemical/sps30 0x63b1c82c sps30_probe -EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x123650a9 cros_ec_motion_send_host_cmd -EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x16402b04 cros_ec_sensors_core_write -EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x221de604 cros_ec_sensors_core_read -EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x2f48ea04 cros_ec_sensors_pm_ops -EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x6684942c cros_ec_sensors_push_data -EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x74915d28 cros_ec_sensors_core_read_avail -EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x80991172 cros_ec_sensors_core_register -EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x93975602 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 0xb7602c68 cros_ec_sensors_core_init -EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0xcba35228 cros_ec_sensors_read_cmd -EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0xd46a66be cros_ec_sensors_read_lpc -EXPORT_SYMBOL_GPL drivers/iio/dac/ad5592r-base 0x7cff1736 ad5592r_probe -EXPORT_SYMBOL_GPL drivers/iio/dac/ad5592r-base 0x9522927c ad5592r_remove -EXPORT_SYMBOL_GPL drivers/iio/dac/ad5686 0x5b18bdf6 ad5686_remove -EXPORT_SYMBOL_GPL drivers/iio/dac/ad5686 0xdac47f75 ad5686_probe -EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0x060292d2 bmg160_core_remove -EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0xaae2eb59 bmg160_core_probe -EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0xc0ac3351 bmg160_pm_ops -EXPORT_SYMBOL_GPL drivers/iio/gyro/fxas21002c_core 0x5a83b2b1 fxas21002c_pm_ops -EXPORT_SYMBOL_GPL drivers/iio/gyro/fxas21002c_core 0xc959a393 fxas21002c_core_remove -EXPORT_SYMBOL_GPL drivers/iio/gyro/fxas21002c_core 0xee06efd0 fxas21002c_core_probe -EXPORT_SYMBOL_GPL drivers/iio/imu/bmi160/bmi160_core 0x81bbe20a bmi160_core_probe -EXPORT_SYMBOL_GPL drivers/iio/imu/fxos8700_core 0x03d3d693 fxos8700_core_probe -EXPORT_SYMBOL_GPL drivers/iio/imu/inv_icm42600/inv-icm42600 0x08495a13 inv_icm42600_regmap_config -EXPORT_SYMBOL_GPL drivers/iio/imu/inv_icm42600/inv-icm42600 0x97c89b38 inv_icm42600_pm_ops -EXPORT_SYMBOL_GPL drivers/iio/imu/inv_icm42600/inv-icm42600 0xf93f6395 inv_icm42600_core_probe -EXPORT_SYMBOL_GPL drivers/iio/imu/inv_mpu6050/inv-mpu6050 0x0dcdcb2f inv_mpu_pmops -EXPORT_SYMBOL_GPL drivers/iio/imu/inv_mpu6050/inv-mpu6050 0xbe952fe8 inv_mpu_core_probe -EXPORT_SYMBOL_GPL drivers/iio/imu/st_lsm9ds0/st_lsm9ds0 0x148d6c5e st_lsm9ds0_probe -EXPORT_SYMBOL_GPL drivers/iio/imu/st_lsm9ds0/st_lsm9ds0 0x22ed268e st_lsm9ds0_remove -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x0abe60bc iio_channel_get_all -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x0e01bced iio_device_claim_direct_mode -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x0e5df1e7 iio_alloc_pollfunc -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x140e63d9 iio_channel_get -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x1a21a810 iio_read_channel_scale -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x1e715b26 iio_buffer_put -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x239e79e1 iio_get_channel_ext_info_count -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x2561d64f iio_buffer_get -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x26f6b499 iio_str_to_fixpoint -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x2b5e251a iio_read_channel_attribute -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x2c587f38 iio_dealloc_pollfunc -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x33745087 iio_device_id -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x33c39257 iio_read_channel_raw -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x37d7f681 iio_map_array_register -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x391265e3 iio_write_channel_attribute -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x3f87da78 iio_read_max_channel_raw -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x428ba4ed __devm_iio_trigger_register -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x4dce7dd4 iio_format_value -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x562397b2 iio_write_channel_raw -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x5e380194 iio_get_channel_type -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x61d01eaf devm_iio_channel_get_all -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x65fbf59c iio_enum_write -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x704945d3 iio_read_channel_average_raw -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x71e740ec iio_read_channel_offset -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x791c9d26 iio_channel_release -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x7f0df280 iio_read_avail_channel_attribute -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x84661929 iio_show_mount_matrix -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x85fc6458 devm_iio_trigger_alloc -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x864e5ab3 iio_read_channel_processed -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x8ec233fa of_iio_channel_get_by_name -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x8f0f5d1e iio_get_debugfs_dentry -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x936c70f5 iio_channel_release_all -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x93732ec9 devm_of_iio_channel_get_by_name -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x97b41260 iio_update_buffers -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xa664a39e iio_write_channel_ext_info -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xb51cf1bc iio_device_attach_buffer -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xb69d999f iio_read_channel_processed_scale -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xb7077580 iio_validate_scan_mask_onehot -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xb92beeb6 iio_push_to_buffers -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xbd13c130 iio_device_release_direct_mode -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xbdf07b80 iio_read_avail_channel_raw -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xc7f8532a iio_enum_available_read -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xcc9156aa iio_read_channel_ext_info -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xd2ba92e3 devm_iio_channel_get -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xdc4af20e iio_map_array_unregister -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xdfc54da9 __devm_iio_device_register -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xe7de92fa devm_iio_device_alloc -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xeef66ba8 iio_enum_read -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xf8c9143e iio_convert_raw_to_processed -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 0xbf5f9aee rm3100_common_probe -EXPORT_SYMBOL_GPL drivers/iio/magnetometer/rm3100-core 0xcc7209be rm3100_writable_table -EXPORT_SYMBOL_GPL drivers/iio/pressure/mpl115 0xc3cac58c mpl115_probe -EXPORT_SYMBOL_GPL drivers/iio/pressure/zpa2326 0x239e685c zpa2326_probe -EXPORT_SYMBOL_GPL drivers/iio/pressure/zpa2326 0x3c8f5ae7 zpa2326_pm_ops -EXPORT_SYMBOL_GPL drivers/iio/pressure/zpa2326 0x3e72fa80 zpa2326_isreg_readable -EXPORT_SYMBOL_GPL drivers/iio/pressure/zpa2326 0x4b6307c7 zpa2326_isreg_writeable -EXPORT_SYMBOL_GPL drivers/iio/pressure/zpa2326 0x52bd5374 zpa2326_isreg_precious -EXPORT_SYMBOL_GPL drivers/iio/pressure/zpa2326 0x6246d7c1 zpa2326_remove -EXPORT_SYMBOL_GPL drivers/infiniband/core/ib_core 0xdbd019c4 ib_wq -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x05629c3c rtrs_iu_free -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x0c93f94a rtrs_iu_post_send -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x14631a65 rtrs_iu_alloc -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x37c21883 rtrs_iu_post_rdma_write_imm -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x38e8b388 rtrs_post_recv_empty -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x620bc31c rtrs_send_hb_ack -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x65d2e74c rtrs_cq_qp_create -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x71564be0 rtrs_stop_hb -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x74b51fce rtrs_init_hb -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x766899d8 rtrs_iu_post_recv -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x7fb02bb1 rtrs_start_hb -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xd7878b13 rtrs_cq_qp_destroy -EXPORT_SYMBOL_GPL drivers/input/ff-memless 0xb8f12c26 input_ff_create_memless -EXPORT_SYMBOL_GPL drivers/input/matrix-keymap 0x6803cc1f 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 0x73d472dc adxl34x_probe -EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0xe4586827 adxl34x_resume -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x02f294fc rmi_2d_sensor_rel_report -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x2036d382 rmi_driver_suspend -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x2cd059cb rmi_2d_sensor_configure_input -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x2de8c120 rmi_2d_sensor_abs_process -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x3ff9b7f1 rmi_driver_resume -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x5df3ca15 rmi_2d_sensor_abs_report -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x64b3e492 rmi_unregister_function_handler -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x6b34719c rmi_dbg -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x858af03d rmi_set_attn_data -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xa1a9bb54 rmi_register_transport_device -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xc58ca8a1 rmi_of_property_read_u32 -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xe012fe73 rmi_2d_sensor_of_probe -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xe5b18139 __rmi_register_function_handler -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0x4e87aa7a cyttsp4_pm_ops -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0xa9870fb7 cyttsp4_probe -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0xed67683a cyttsp4_remove -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0x1f476e39 cyttsp_pm_ops -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0xc12f3e7d cyttsp_probe -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_i2c_common 0x1b78bac2 cyttsp_i2c_read_block_data -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_i2c_common 0x57db953a cyttsp_i2c_write_block_data -EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x2247ae1d tsc200x_regmap_config -EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x2a135e1f tsc200x_probe -EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x51d71d28 tsc200x_pm_ops -EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x8ee28fcd tsc200x_remove -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x0b345c6e wm97xx_get_gpio -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x2c9fe20f wm9705_codec -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x3121ff55 wm9712_codec -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x54760311 wm97xx_unregister_mach_ops -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x5b98f4e1 wm97xx_reg_read -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x7e763418 wm97xx_set_gpio -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x9a413549 wm97xx_set_suspend_mode -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xaa1ae9b9 wm97xx_config_gpio -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xe4500cfa wm97xx_reg_write -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xee9fe187 wm97xx_read_aux_adc -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xef35b279 wm97xx_register_mach_ops -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xfd8bffcb wm9713_codec -EXPORT_SYMBOL_GPL drivers/interconnect/imx/imx-interconnect 0x64275b67 imx_icc_unregister -EXPORT_SYMBOL_GPL drivers/interconnect/imx/imx-interconnect 0xbab88be4 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 0x42911925 of_bcm_voter_get -EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-rpmh 0x08386368 qcom_icc_xlate_extended -EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-rpmh 0x478a57ec qcom_icc_rpmh_remove -EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-rpmh 0x47f89bf8 qcom_icc_aggregate -EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-rpmh 0x6c13868f qcom_icc_set -EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-rpmh 0x6dc9880f qcom_icc_bcm_init -EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-rpmh 0xb7acb1e1 qcom_icc_rpmh_probe -EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-rpmh 0xbff8ca9d qcom_icc_pre_aggregate -EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-smd-rpm 0x81e513ad qcom_icc_rpm_smd_available -EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-smd-rpm 0xe8dbdc6c qcom_icc_rpm_smd_send -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x41172579 ipack_driver_register -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x49f36a3e ipack_device_init -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x541afa85 ipack_device_del -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x5a7c99cb ipack_bus_unregister -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x5d47970d ipack_bus_register -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x9fb08bfb ipack_put_device -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xb14bd882 ipack_device_add -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xf264854d ipack_driver_unregister -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xff96644d ipack_get_device -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x25ed6caa devm_led_classdev_flash_unregister -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x2c92c6da devm_led_classdev_flash_register_ext -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x64216bf9 led_classdev_flash_register_ext -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x890f689a led_classdev_flash_unregister -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xa89a4abe led_set_flash_timeout -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xb2a46523 led_update_flash_brightness -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xde32a7fa led_get_flash_fault -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xf351f9ad led_set_flash_brightness -EXPORT_SYMBOL_GPL drivers/leds/led-class-multicolor 0x26cb28da devm_led_classdev_multicolor_unregister -EXPORT_SYMBOL_GPL drivers/leds/led-class-multicolor 0x9b18844d led_mc_calc_color_components -EXPORT_SYMBOL_GPL drivers/leds/led-class-multicolor 0xac982fea devm_led_classdev_multicolor_register_ext -EXPORT_SYMBOL_GPL drivers/leds/led-class-multicolor 0xee3a6612 led_classdev_multicolor_unregister -EXPORT_SYMBOL_GPL drivers/leds/led-class-multicolor 0xfea6bdb8 led_classdev_multicolor_register_ext -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x082d66b0 lp55xx_unregister_sysfs -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x2065d151 lp55xx_is_extclk_used -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x310d340a lp55xx_of_populate_pdata -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x40785636 lp55xx_update_bits -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x53895a53 lp55xx_deinit_device -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x6ea4c3f0 lp55xx_init_device -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x75421191 lp55xx_register_sysfs -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x890fd76b lp55xx_read -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xd8d2401c lp55xx_write -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xda0c8bd8 lp55xx_register_leds -EXPORT_SYMBOL_GPL drivers/leds/trigger/ledtrig-audio 0x3bd45b0d ledtrig_audio_set -EXPORT_SYMBOL_GPL drivers/leds/trigger/ledtrig-audio 0xce593c22 ledtrig_audio_get -EXPORT_SYMBOL_GPL drivers/leds/trigger/ledtrig-camera 0x749e05f2 ledtrig_flash_ctrl -EXPORT_SYMBOL_GPL drivers/leds/trigger/ledtrig-camera 0x7903e46e ledtrig_torch_ctrl -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x01dd1c75 __traceiter_bcache_write -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x051b2215 __tracepoint_bcache_btree_node_compact -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x06bceaa1 __SCK__tp_func_bcache_btree_gc_coalesce -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 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 0x0e376d9d __traceiter_bcache_btree_cache_cannibalize -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x0e603a4e __traceiter_bcache_btree_node_split -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x157f8914 __traceiter_bcache_alloc_fail -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x15f3de09 __SCK__tp_func_bcache_read_retry -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x16ea7222 __tracepoint_bcache_journal_full -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x17a83e40 __traceiter_bcache_writeback -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 0x1abfac54 __traceiter_bcache_invalidate -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x1b083369 __SCK__tp_func_bcache_btree_set_root -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x1c599ebe __traceiter_bcache_btree_gc_coalesce -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x1c71a406 __tracepoint_bcache_btree_node_free -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x1c83d5b7 __SCK__tp_func_bcache_journal_entry_full -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x22ae6324 __SCK__tp_func_bcache_btree_node_split -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x2766fb04 __traceiter_bcache_journal_replay_key -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x284a6bff __tracepoint_bcache_gc_start -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x2909bc5d __tracepoint_bcache_btree_read -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 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 0x2e933caf __traceiter_bcache_journal_write -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x2f99ccfd __traceiter_bcache_gc_start -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x3257d343 __tracepoint_bcache_gc_copy -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x3645b3ac __traceiter_bcache_read_retry -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 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 0x5f1665bd __traceiter_bcache_bypass_congested -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 0x6c593750 __traceiter_bcache_btree_node_alloc_fail -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x6e74dca7 __SCK__tp_func_bcache_btree_node_free -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 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 0x845d58b7 __traceiter_bcache_btree_insert_key -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 0x9a3defa9 __traceiter_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 0xa2ba7cd6 __traceiter_bcache_read -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa64134e4 __SCK__tp_func_bcache_journal_full -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa842a5c8 __SCK__tp_func_bcache_invalidate -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xad6440b4 __traceiter_bcache_gc_copy -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xb5a62a8c __traceiter_bcache_cache_insert -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xb66f71fa __traceiter_bcache_btree_node_free -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xb7f971dc __traceiter_bcache_btree_read -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 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 0xcd878fa2 __traceiter_bcache_btree_node_compact -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xce48d6f4 __tracepoint_bcache_alloc_fail -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xd1ffe55d __traceiter_bcache_request_end -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xd409bcd3 __traceiter_bcache_journal_full -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 0xe36d74c9 __traceiter_bcache_btree_node_alloc -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xe3d23684 __traceiter_bcache_btree_write -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xe62a4b24 __traceiter_bcache_request_start -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xea5d014a __traceiter_bcache_btree_set_root -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xec29e22a __traceiter_bcache_gc_copy_collision -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xec92a163 __SCK__tp_func_bcache_btree_cache_cannibalize -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xed37c90e __tracepoint_bcache_cache_insert -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xee55d047 __tracepoint_bcache_journal_write -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xef7eec02 __tracepoint_bcache_btree_gc_coalesce -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xf3308cfd __traceiter_bcache_bypass_sequential -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xf6249e5f __SCK__tp_func_bcache_journal_replay_key -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xf865c1a2 __tracepoint_bcache_request_start -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xfb3d6c67 __tracepoint_bcache_request_end -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xfc7c5143 __traceiter_bcache_journal_entry_full -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xfd6b5d80 __SCK__tp_func_bcache_btree_insert_key -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x11f80bda 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 0x1fd7fac1 dm_cell_promote_or_release -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x28bd1d5f dm_cell_get_v2 -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x2ae15e8e 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 0x33c85a7b dm_bio_prison_alloc_cell -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x40fb1dc9 dm_cell_put_v2 -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x6791a44e dm_deferred_entry_dec -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x753e20b2 dm_bio_prison_create -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x776e7cfb dm_get_cell -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x7c381fab dm_cell_visit_release -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x95a49281 dm_cell_release -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xaa97b643 dm_cell_quiesce_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 0xbed23ad3 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 0xd81eb791 dm_bio_prison_free_cell_v2 -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xd99e003d dm_bio_prison_create_v2 -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xda063d3b dm_bio_prison_alloc_cell_v2 -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xf334ca39 dm_cell_unlock_v2 -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xf579242c dm_bio_detain -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xfc00d135 dm_cell_lock_promote_v2 -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xfcc33aed dm_cell_error -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 0xa471ee0d 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 0xce9b42e0 dm_cache_policy_register -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-cache 0xf0152d37 dm_cache_policy_unregister -EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0x17550076 dm_unregister_path_selector -EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0x2bddcc6a dm_register_path_selector -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x01d2f9ac dm_rh_recovery_start -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x20eb2413 dm_rh_inc_pending -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x250f2d8a 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 0x87e03455 dm_rh_bio_to_region -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xa53387c7 dm_rh_flush -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xa83588eb dm_rh_recovery_end -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xaa14f34e dm_region_hash_create -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xba3e1465 dm_rh_delay -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xbe38a431 dm_rh_recovery_prepare -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xd8aa4284 dm_rh_region_context -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xf92b8a3d dm_rh_get_region_size -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xfd6717b9 dm_rh_dirty_log -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 0xbcb839ca dm_block_manager_create -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xc0d7c2d1 dm_array_resize -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xc0fadb13 dm_bitset_del -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xc36559ad dm_btree_cursor_next -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 0x01f7a1ba cec_register_adapter -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x1ac07fa3 cec_fill_conn_info_from_drm -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x1c5a11cc cec_s_log_addrs -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x1c613ebe cec_received_msg_ts -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x2b60ae3d cec_pin_allocate_adapter -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x3c112113 cec_pin_changed -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x44af8425 cec_transmit_attempt_done_ts -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x57e8839f cec_notifier_conn_register -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x62b2e301 cec_queue_pin_cec_event -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x63aadcf9 cec_notifier_cec_adap_register -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x6905aebe cec_s_phys_addr -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x82331683 cec_unregister_adapter -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x90d7cd0f cec_delete_adapter -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x9caff55f 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 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 0xc58f42f0 cec_queue_pin_hpd_event -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xd915cec8 cec_notifier_cec_adap_unregister -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xdb23805d cec_s_phys_addr_from_edid -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xde0115af cec_transmit_msg -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xe29e0951 cec_s_conn_info -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xe3e9fb5f cec_queue_pin_5v_event -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xe733a227 cec_notifier_parse_hdmi_phandle -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xf87d1b0d cec_allocate_adapter -EXPORT_SYMBOL_GPL drivers/media/common/b2c2/b2c2-flexcop 0x66c0289a b2c2_flexcop_debug -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x21f502f0 saa7146_i2c_adapter_prepare -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x481ad055 saa7146_pgtable_free -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x7e894b4b saa7146_register_extension -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x8d7f47c9 saa7146_vfree_destroy_pgtable -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x9dc0b147 saa7146_vmalloc_build_pgtable -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xe3cd9b5c saa7146_debug -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xe9a437d5 saa7146_setgpio -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xea46d24e saa7146_pgtable_build_single -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xf603f9b5 saa7146_pgtable_alloc -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xfa5943b2 saa7146_wait_for_debi_done -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xfdbabf01 saa7146_unregister_extension -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x18e2a36a saa7146_vv_init -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x2cc2742b saa7146_vv_release -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x990ec20c saa7146_start_preview -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0xdc83072c saa7146_set_hps_source_and_sync -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0xdf51ac80 saa7146_register_device -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0xe7a5cca2 saa7146_unregister_device -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0xf34b6993 saa7146_stop_preview -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x0e91776f smscore_register_client -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x21e36bf2 smscore_registry_getmode -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x2602ee03 sms_board_setup -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x267708a2 smscore_start_device -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x30d1df10 smscore_get_board_id -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x34bf0e61 smscore_translate_msg -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x37d91069 smsendian_handle_tx_message -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x392794b9 smscore_onresponse -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x45284ae9 smsendian_handle_rx_message -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x5d78640d smscore_unregister_hotplug -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x74ee9098 sms_board_load_modules -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x7b6ae14e smscore_register_device -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 0x93abb8d3 smscore_set_board_id -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x99a81ab3 smsclient_sendrequest -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xa63d5c63 smscore_get_device_mode -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xb186e73e smscore_putbuffer -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xbbdb5c42 smscore_unregister_client -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xc8c1afab sms_board_led_feedback -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xd1a8e82a sms_board_lna_control -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xd96a5222 sms_board_event -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xdcb76980 smscore_getbuffer -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xe203941b smscore_register_hotplug -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xeaff2b0e sms_board_power -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xfa7fd979 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 0x0250d27b vb2_wait_for_all_buffers -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 0x0962c5a5 vb2_core_qbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x0c895feb vb2_core_create_bufs -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x10e816ab vb2_core_dqbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x1a0b8022 __traceiter_vb2_dqbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x210d4ebc vb2_write -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x23975de2 vb2_plane_vaddr -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 0x2fe8b727 vb2_thread_start -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x3c42f244 vb2_thread_stop -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x40299232 vb2_plane_cookie -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x43076d77 vb2_core_streamon -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x46a433c9 vb2_buffer_done -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x4b2c9a59 vb2_core_expbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x50a88b95 vb2_mmap -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x539dc1ad vb2_request_buffer_cnt -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x630b24d3 __tracepoint_vb2_qbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x6678fd66 vb2_core_reqbufs -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x796a7e9e vb2_core_queue_release -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x82b74d64 vb2_core_prepare_buf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x870c6123 vb2_request_object_is_buffer -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xb6f4b031 __SCK__tp_func_vb2_qbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xb7761544 __traceiter_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 0xc3d11179 vb2_core_querybuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xc61dee00 __traceiter_vb2_buf_queue -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 0xc8215a93 vb2_read -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xcd29817e __traceiter_vb2_buf_done -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xe2e83483 vb2_core_queue_init -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xe7bc2f8a vb2_discard_done -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xea10066b vb2_core_poll -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xf2ef5e3e vb2_queue_error -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xf703a3f9 __tracepoint_vb2_dqbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xfce9ffaa vb2_core_streamoff -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-dma-contig 0x289d71f7 vb2_dma_contig_memops -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-dma-contig 0x2a57eaa5 vb2_dma_contig_set_max_seg_size -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-dma-sg 0xa579316f vb2_dma_sg_memops -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-memops 0xa6e9e68c vb2_common_vm_ops -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x0d4e9b7e vb2_create_bufs -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x129e6897 vb2_fop_poll -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x2a404393 vb2_ops_wait_finish -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x2e59a058 vb2_poll -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x303425dd vb2_queue_change_type -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x36685bf9 vb2_expbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x427f10e7 vb2_ops_wait_prepare -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x435e5627 vb2_request_validate -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x49958e21 vb2_ioctl_dqbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x4e9442ed vb2_fop_release -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x55c7202a vb2_video_unregister_device -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x6541f0f2 vb2_queue_release -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x8834f248 vb2_prepare_buf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x898586f2 vb2_streamon -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x8f528887 vb2_ioctl_reqbufs -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x946ef0a4 vb2_queue_init_name -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x9b9cd312 vb2_ioctl_expbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x9c1a4952 vb2_reqbufs -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x9e84c771 vb2_ioctl_qbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xaa3aa6ff _vb2_fop_release -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xaf2dc707 vb2_queue_init -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xb01216b7 vb2_ioctl_prepare_buf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xbced317c vb2_ioctl_querybuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xbd14c401 vb2_find_timestamp -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xbf45e205 vb2_request_queue -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xc462e6f7 vb2_fop_mmap -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xd08704ae vb2_fop_write -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xd1893de5 vb2_dqbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xd59d4e1c vb2_fop_read -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xd6329bd4 vb2_qbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xd9065db2 vb2_ioctl_create_bufs -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xe78e3346 vb2_streamoff -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xf23b4b13 vb2_ioctl_streamon -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xfa6e0a61 vb2_ioctl_streamoff -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-vmalloc 0xa4757fc5 vb2_vmalloc_memops -EXPORT_SYMBOL_GPL drivers/media/dvb-core/dvb-core 0x19e88572 dvb_module_release -EXPORT_SYMBOL_GPL drivers/media/dvb-core/dvb-core 0x6cd45f1a dvb_create_media_graph -EXPORT_SYMBOL_GPL drivers/media/dvb-core/dvb-core 0xca8e2d21 dvb_module_probe -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/as102_fe 0x3b384e41 as102_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/ascot2e 0x00f9e9e9 ascot2e_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/atbm8830 0x5074fcff atbm8830_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/au8522_dig 0x7f420b34 au8522_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/bcm3510 0xc54698a8 bcm3510_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cx22700 0x46338a4b cx22700_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cx22702 0x296c22c7 cx22702_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cx24110 0x4a52f333 cx24110_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cx24113 0x8d4a04bf cx24113_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cx24116 0x209587fc cx24116_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cx24117 0xecaf70f5 cx24117_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cx24120 0x07fb3a73 cx24120_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cx24123 0x624bf05c cx24123_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cxd2820r 0xe509b626 cxd2820r_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cxd2841er 0x650cd718 cxd2841er_attach_t_c -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cxd2841er 0x73f579d0 cxd2841er_attach_s -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cxd2880/cxd2880 0x78b9bc4d cxd2880_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/dib0070 0x2521a57e dib0070_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/dib0090 0x24ea98f0 dib0090_register -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/dib0090 0xa161c8cc dib0090_fw_register -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/dib3000mb 0xdd187166 dib3000mb_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/dib3000mc 0xa88749f2 dib3000mc_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/dib7000m 0x5cf47bfd dib7000m_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/dib7000p 0x97fb3dc1 dib7000p_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/dib8000 0x704dc8ad dib8000_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/dib9000 0xbd3e90a1 dib9000_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/drx39xyj/drx39xyj 0xe37aa6d5 drx39xxj_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/drxd 0x4d5c6e78 drxd_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/drxk 0x65d6d60c drxk_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/ds3000 0x58360c85 ds3000_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/dvb-pll 0x9da378ed dvb_pll_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/ec100 0xf21ad2c3 ec100_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/gp8psk-fe 0xa9b10c9d gp8psk_fe_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/helene 0x3c75af64 helene_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/helene 0x869b28ef helene_attach_s -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/horus3a 0x8b271406 horus3a_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/isl6405 0xbe171d91 isl6405_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/isl6421 0xebd9b134 isl6421_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/isl6423 0x8f7415c4 isl6423_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/itd1000 0x53f91cf3 itd1000_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/ix2505v 0x8848c091 ix2505v_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/l64781 0xb1ea58e2 l64781_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/lg2160 0xf086c137 lg2160_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/lgdt3305 0xa10c02ad lgdt3305_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/lgdt3306a 0xf5e977d4 lgdt3306a_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/lgdt330x 0x64ba54d2 lgdt330x_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/lgs8gxx 0x8dcb4a5b lgs8gxx_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/lnbh25 0xae60afa6 lnbh25_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/lnbp21 0x2137c2a1 lnbh24_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/lnbp21 0x5b8437c4 lnbp21_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/lnbp22 0xf4b3fd5d lnbp22_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/m88ds3103 0x55f70393 m88ds3103_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/m88rs2000 0xff1de8e2 m88rs2000_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/mb86a16 0xe7c6d539 mb86a16_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/mb86a20s 0xb892bf69 mb86a20s_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/mt312 0x9cffc4a8 mt312_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/mt352 0xd8da7eac mt352_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/mxl5xx 0x2e3ff30b mxl5xx_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/nxt200x 0x3676aa3f nxt200x_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/nxt6000 0x50d5eb14 nxt6000_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/or51132 0x50f11042 or51132_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/or51211 0xbc5d9fbf or51211_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/s5h1409 0x6d91d1fb s5h1409_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/s5h1411 0x3dd5380a s5h1411_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/s5h1420 0x3a86eca4 s5h1420_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/s5h1432 0xe49a1510 s5h1432_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/s921 0x2e19bf80 s921_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/si21xx 0x626a81d6 si21xx_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/sp887x 0xb2c13b6d sp887x_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stb0899 0xab22ba56 stb0899_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stb6000 0x0310e476 stb6000_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stb6100 0xc50a7bf5 stb6100_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv0288 0xb2435e56 stv0288_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv0297 0xd34757fe stv0297_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv0299 0x5afe3248 stv0299_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv0367 0x71738ee5 stv0367cab_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv0367 0xaedea1b4 stv0367ter_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv0367 0xb34a0199 stv0367ddb_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv0900 0x004360a3 stv0900_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv090x 0x1aeba86f stv090x_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv0910 0xb5b7022f stv0910_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv6110 0x063bb0db stv6110_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv6110x 0xba0e44f3 stv6110x_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv6111 0xab041acd stv6111_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda10021 0x212a548e tda10021_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda10023 0xf5c0a7c8 tda10023_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda10048 0xadac8ca3 tda10048_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda1004x 0xbd7f0631 tda10046_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda1004x 0xc6cec3cc tda10045_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda10086 0x813d893e tda10086_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda18271c2dd 0xf373e130 tda18271c2dd_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda665x 0x31639ce0 tda665x_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda8083 0x6fc45bb5 tda8083_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda8261 0x63b7ea8f tda8261_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda826x 0xef75a820 tda826x_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/ts2020 0x7e198df2 ts2020_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tua6100 0xca04696f tua6100_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/ves1820 0x671cfcb4 ves1820_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/ves1x93 0x658da6e9 ves1x93_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/zl10036 0x1caf2bfd zl10036_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/zl10039 0xa4ef09f0 zl10039_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/zl10353 0x0d30c0e4 zl10353_attach -EXPORT_SYMBOL_GPL drivers/media/i2c/aptina-pll 0x590fa431 aptina_pll_calculate -EXPORT_SYMBOL_GPL drivers/media/i2c/ccs-pll 0x88e4216e ccs_pll_calculate -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x057bf93f max9271_set_gpios -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x0b780569 max9271_set_deserializer_address -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x28be3eeb max9271_set_address -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x3c765e52 max9271_set_translation -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x3e031060 max9271_configure_i2c -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x4a5c8e1e max9271_configure_gmsl_link -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x52f9b964 max9271_set_high_threshold -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x55850f82 max9271_clear_gpios -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x8112d90d max9271_disable_gpios -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x8d7ed5df max9271_enable_gpios -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x952ca930 max9271_wake_up -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0xa665a2f4 max9271_verify_id -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0xefe173f8 max9271_set_serial_link -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x0c08a226 __media_device_usb_init -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x203d1e81 media_device_unregister_entity_notify -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x20a9cd80 __media_remove_intf_links -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x20d90ee7 media_graph_walk_start -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x212c0cd2 media_create_intf_link -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x276f7c56 media_device_unregister_entity -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x2ce0a950 media_pipeline_start -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x2d5e3d9f media_entity_setup_link -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x2d5ecbc4 __media_pipeline_start -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x2db760c6 media_entity_remove_links -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x2f5f6ace __media_remove_intf_link -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x30e68363 media_request_object_bind -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x3df19f13 media_entity_find_link -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x41473b71 media_devnode_remove -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x43686aac media_device_register_entity -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x4a81c17e media_get_pad_index -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x5413bff2 media_device_unregister -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x552de13c media_request_object_init -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x5cfda732 media_device_init -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x5eede486 media_graph_walk_cleanup -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x5f143956 media_device_delete -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x63fa2000 media_entity_get_fwnode_pad -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x653b8f12 media_device_pci_init -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x682dd534 media_device_usb_allocate -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x68dab469 __media_pipeline_stop -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x6ae8f53f media_entity_pads_init -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x6d44b654 media_pipeline_stop -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x6de0b974 __media_device_register -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x72fabc28 media_create_pad_link -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x7732b8dd media_remove_intf_link -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x786c5941 media_devnode_create -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x789af04d media_request_object_complete -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x7a97b85a media_request_put -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x7b6293bd media_graph_walk_next -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x81590a6e media_request_object_put -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x83b6d195 media_graph_walk_init -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x8ea3e50b media_request_object_unbind -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x94b2bcf6 media_request_get_by_fd -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x95232449 media_create_pad_links -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xa373d304 media_device_register_entity_notify -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xac9fc45a media_entity_remote_pad -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xb4c773a9 __media_entity_remove_links -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xb9c3c70e __media_entity_setup_link -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xc7c23eb7 media_device_cleanup -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xe5ceecd6 media_entity_enum_cleanup -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xee0b68c2 media_request_object_find -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xfc781c47 __media_entity_enum_init -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xfd3dc15a media_remove_intf_links -EXPORT_SYMBOL_GPL drivers/media/pci/bt8xx/dst 0x60ee0b91 dst_attach -EXPORT_SYMBOL_GPL drivers/media/pci/bt8xx/dst_ca 0x68e0f23a dst_ca_attach -EXPORT_SYMBOL_GPL drivers/media/pci/cx88/cx88xx 0x805b137a cx88_setup_xc3028 -EXPORT_SYMBOL_GPL drivers/media/pci/ddbridge/ddbridge-dummy-fe 0xb225aa44 ddbridge_dummy_fe_qam_attach -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x0e22e150 mantis_uart_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x1a5bd32c mantis_input_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x30b78c32 mantis_stream_control -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x32024856 mantis_uart_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x45ec73f6 mantis_pci_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x4eca836b mantis_frontend_soft_reset -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x59622bce mantis_dma_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x6ee39b70 mantis_gpio_set_bits -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x706f5e2d mantis_dvb_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x734b709e mantis_i2c_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x84cde2e7 mantis_input_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x8dfb310d mantis_dma_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x90129f72 mantis_pci_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xa002bc9a mantis_get_mac -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xa4f644ee mantis_dvb_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xa7d26a5d mantis_i2c_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xaf410f2d mantis_frontend_power -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xc68bb461 mantis_ca_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xd9bd2807 mantis_ca_exit -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x0635ff2b saa7134_stop_streaming -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x098af7df saa7134_g_std -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x0cd20e18 saa7134_querystd -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x3182616e saa7134_enum_input -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x391eee82 saa7134_ts_start_streaming -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x3a852a34 saa7134_s_input -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x3e4698bb saa7134_ts_buffer_prepare -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x44df3e4a saa7134_g_frequency -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x487d7b7a saa7134_ts_qops -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x50112e9e saa7134_s_tuner -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x60846acc saa7134_g_tuner -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x6c63ef4d saa7134_ts_buffer_init -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x99f5bf31 saa7134_querycap -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x9f1b93e8 saa7134_s_std -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xaa59810b saa7134_g_input -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xc648c882 saa7134_vb2_buffer_queue -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xda231009 saa7134_s_frequency -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xe5d27206 saa7134_ts_stop_streaming -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xfbf0d844 saa7134_ts_queue_setup -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x1b688eb4 ttpci_budget_set_video_port -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x38a50c79 ttpci_budget_irq10_handler -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x3e5a78f7 ttpci_budget_deinit -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x6fc67489 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 0x96dd6384 ttpci_budget_init -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xb5673524 ttpci_budget_debiwrite -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xb895dca1 ttpci_budget_debiread -EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0x0a106dd7 nal_hevc_read_sps -EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0x0a7999a8 nal_hevc_tier_from_v4l2 -EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0x348fd8a8 nal_h264_read_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 0x39366986 nal_hevc_read_vps -EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0x39765cf7 nal_hevc_write_filler -EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0x48d63fe3 nal_hevc_write_sps -EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0x7df037a4 nal_hevc_write_vps -EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0xc9cdd97f nal_h264_write_pps -EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0xd0772231 nal_h264_write_sps -EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0xd22337b1 nal_h264_read_filler -EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0xd4bfa340 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 0xdc252a38 nal_hevc_read_filler -EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0xe36a18c9 nal_h264_read_pps -EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0xe922d3a8 nal_h264_write_filler -EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0xeb06c3bc nal_hevc_write_pps -EXPORT_SYMBOL_GPL drivers/media/platform/marvell-ccic/mcam-core 0x2cc6174b mccic_shutdown -EXPORT_SYMBOL_GPL drivers/media/platform/marvell-ccic/mcam-core 0x3601605b mccic_irq -EXPORT_SYMBOL_GPL drivers/media/platform/marvell-ccic/mcam-core 0x9ce788d5 mccic_register -EXPORT_SYMBOL_GPL drivers/media/platform/marvell-ccic/mcam-core 0xddb086aa mccic_suspend -EXPORT_SYMBOL_GPL drivers/media/platform/marvell-ccic/mcam-core 0xf7289a68 mccic_resume -EXPORT_SYMBOL_GPL drivers/media/platform/mtk-vpu/mtk-vpu 0x27cd0a93 vpu_ipi_send -EXPORT_SYMBOL_GPL drivers/media/platform/mtk-vpu/mtk-vpu 0x3aa3747a vpu_wdt_reg_handler -EXPORT_SYMBOL_GPL drivers/media/platform/mtk-vpu/mtk-vpu 0x67093511 vpu_ipi_register -EXPORT_SYMBOL_GPL drivers/media/platform/mtk-vpu/mtk-vpu 0x76a7b06a vpu_get_venc_hw_capa -EXPORT_SYMBOL_GPL drivers/media/platform/mtk-vpu/mtk-vpu 0x7f8741e4 vpu_get_vdec_hw_capa -EXPORT_SYMBOL_GPL drivers/media/platform/mtk-vpu/mtk-vpu 0xb1c55b7f vpu_get_plat_device -EXPORT_SYMBOL_GPL drivers/media/platform/mtk-vpu/mtk-vpu 0xbcc7fbb3 vpu_load_firmware -EXPORT_SYMBOL_GPL drivers/media/platform/mtk-vpu/mtk-vpu 0xe6520d40 vpu_mapping_dm_addr -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x02aada9b hfi_session_process_buf -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x0939e365 venus_helper_get_bufreq -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x0a5bbaed venus_helper_set_profile_level -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x0f1ce01a venus_helper_get_profile_level -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x2484c7ed venus_helper_vb2_buf_prepare -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x27b12c5f venus_helper_m2m_device_run -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x27f1c955 venus_helper_set_input_resolution -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x2b1d5943 venus_helper_vb2_buf_init -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x2b736963 venus_helper_vb2_start_streaming -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x2bc0fcb5 hfi_session_create -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x2cccf401 venus_helper_free_dpb_bufs -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 0x3b49ed70 venus_helper_vb2_stop_streaming -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x3dad963d venus_helper_acquire_buf_ref -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x401d4d8b venus_helper_set_raw_format -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x40433b08 venus_helper_set_dyn_bufmode -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x537df712 hfi_session_destroy -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x55c38727 venus_helper_set_num_bufs -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x564520a2 venus_helper_get_opb_size -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x589cc47e venus_helper_set_multistream -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x5cd58e95 hfi_session_flush -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x5ffabb60 venus_helper_process_initial_cap_bufs -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x6531311e hfi_session_abort -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x707ee265 venus_helper_set_format_constraints -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x72588f78 venus_helper_buffers_done -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x7273d938 venus_helper_check_codec -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x7742d34a hfi_session_unload_res -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x774f0649 venus_helper_vb2_buf_queue -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x8276a4b2 hfi_session_deinit -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x8b1c8829 hfi_session_continue -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x8bf3b7b2 venus_helper_find_buf -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x8e963b71 venus_helper_intbufs_realloc -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x979872fd hfi_session_set_property -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x9971ae5e venus_helper_set_stride -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x9bcb06a9 hfi_session_stop -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xa09ea382 venus_helper_set_color_format -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xa2a95a7e hfi_session_init -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xa5d40849 venus_helper_set_output_resolution -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xb3767e4b venus_helper_get_out_fmts -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 0xc442768d venus_helper_unregister_bufs -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xc556d115 venus_helper_intbufs_alloc -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xcc02119b venus_helper_init_instance -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xcd591f2e venus_helper_queue_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 0xe441589b venus_helper_release_buf_ref -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xe67ea6f7 hfi_session_start -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xe757b6d5 hfi_session_get_property -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xe86482a8 venus_helper_intbufs_free -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xea0f8650 venus_helper_alloc_dpb_bufs -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xeefc70e1 venus_helper_process_initial_out_bufs -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xf6159697 venus_helper_get_ts_metadata -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xfeb671cf venus_helper_session_init -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xff5b41bc venus_helper_set_bufsize -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xffdef00c venus_helper_set_work_mode -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 0x61421af0 rcar_fcp_get_device -EXPORT_SYMBOL_GPL drivers/media/platform/rcar-fcp 0x9877c29f rcar_fcp_get -EXPORT_SYMBOL_GPL drivers/media/platform/vsp1/vsp1 0x2c60103a vsp1_du_atomic_flush -EXPORT_SYMBOL_GPL drivers/media/platform/vsp1/vsp1 0x44d86293 vsp1_du_init -EXPORT_SYMBOL_GPL drivers/media/platform/vsp1/vsp1 0x5a033d7b vsp1_du_atomic_begin -EXPORT_SYMBOL_GPL drivers/media/platform/vsp1/vsp1 0xc020c37b vsp1_du_setup_lif -EXPORT_SYMBOL_GPL drivers/media/platform/vsp1/vsp1 0xcaa62a23 vsp1_du_unmap_sg -EXPORT_SYMBOL_GPL drivers/media/platform/vsp1/vsp1 0xe2e02ec2 vsp1_du_map_sg -EXPORT_SYMBOL_GPL drivers/media/platform/vsp1/vsp1 0xfb96f498 vsp1_du_atomic_update -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x2c4f631c xvip_init_resources -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x31065581 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 0x6504d8e7 xvip_cleanup_resources -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x8579f67f xvip_clr_or_set -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x9f93f772 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 0xdff68f98 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-video 0xfb9f2857 xvip_of_get_format -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 0xc929e731 xvtc_of_get -EXPORT_SYMBOL_GPL drivers/media/radio/shark2 0x800fb93e radio_tea5777_exit -EXPORT_SYMBOL_GPL drivers/media/radio/shark2 0xa5cb5220 radio_tea5777_init -EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0x470c2ba2 si470x_viddev_template -EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0x7db97c25 si470x_start -EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0x8e407e56 si470x_set_freq -EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0xab362644 si470x_stop -EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0xb423a9e6 si470x_ctrl_ops -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x034b6983 rc_map_get -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x03a9c902 ir_raw_event_store_with_timeout -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x0553e31d ir_raw_event_store -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x08bbd6e9 ir_raw_event_set_idle -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x26e5dae0 rc_free_device -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x27f1e56d lirc_scancode_event -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x63b8d560 rc_register_device -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x6878e01e rc_repeat -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x82e0835d rc_allocate_device -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x855cb3bc ir_raw_event_handle -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x880b323b rc_map_unregister -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x95918df0 ir_raw_event_store_with_filter -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x95a4fae6 devm_rc_register_device -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x9f8af848 rc_map_register -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xaa48895a rc_unregister_device -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xb945af3e ir_raw_event_store_edge -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xbb723d4f devm_rc_allocate_device -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xc1787b8f rc_keydown -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xcc6c7edc rc_keyup -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xd54c932a rc_keydown_notimeout -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xd68a7f7d rc_g_keycode_from_table -EXPORT_SYMBOL_GPL drivers/media/tuners/fc0011 0xee093c7c fc0011_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/fc0012 0x7a7e0a59 fc0012_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/fc0013 0xd383e54c fc0013_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/max2165 0x9226a31d max2165_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/mc44s803 0x154c291b mc44s803_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/mt2060 0x0f37f360 mt2060_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/mt2063 0xffdbd967 mt2063_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/mt20xx 0x900b4e26 microtune_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/mt2131 0x69a07062 mt2131_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/mt2266 0x6ca2a0db mt2266_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/mxl5005s 0xfea5a81e mxl5005s_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/mxl5007t 0x34eb1586 mxl5007t_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/qt1010 0x97356739 qt1010_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/r820t 0x6169c975 r820t_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tda18218 0xfe982bce tda18218_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tda18271 0xecc7978c tda18271_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tda827x 0xcaad7637 tda827x_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tda8290 0x79e3e4c2 tda829x_probe -EXPORT_SYMBOL_GPL drivers/media/tuners/tda8290 0x9c5afd6e tda829x_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tda9887 0xd510fd67 tda9887_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tea5761 0x004d2f01 tea5761_autodetection -EXPORT_SYMBOL_GPL drivers/media/tuners/tea5761 0x94dd45c7 tea5761_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tea5767 0x8756f200 tea5767_autodetection -EXPORT_SYMBOL_GPL drivers/media/tuners/tea5767 0xbb6a7043 tea5767_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tuner-simple 0x9d6e757f simple_tuner_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/xc4000 0xe3137fd4 xc4000_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/xc5000 0xc06f3491 xc5000_attach -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x01588da8 cx231xx_send_gpio_cmd -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x017ea7c7 cx231xx_tuner_callback -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x0b4b4b34 cx231xx_capture_start -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x14a3389b cx231xx_init_bulk -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x1dacb8bd cx231xx_disable656 -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x1f5511ce cx231xx_enable656 -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x3358bbfd cx231xx_get_i2c_adap -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x34c3139d cx231xx_enable_i2c_port_3 -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x3ff82aaf cx231xx_dev_uninit -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x5fb33fe4 cx231xx_uninit_isoc -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x607bb234 cx231xx_init_isoc -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x6dcce50d is_fw_load -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xa176cc79 cx231xx_init_vbi_isoc -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xc03aa8e3 cx231xx_unmute_audio -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xcc48be58 cx231xx_dev_init -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xcf9b8fcf cx231xx_uninit_vbi_isoc -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xd378500e cx231xx_set_mode -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xd8b6841c cx231xx_set_alt_setting -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xedacb7a8 cx231xx_demod_reset -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xef6ed667 cx231xx_send_usb_command -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xfe50ba60 cx231xx_uninit_bulk -EXPORT_SYMBOL_GPL drivers/media/usb/dvb-usb-v2/mxl111sf-demod 0xf25042ef mxl111sf_demod_attach -EXPORT_SYMBOL_GPL drivers/media/usb/dvb-usb-v2/mxl111sf-tuner 0x1959c76d mxl111sf_tuner_attach -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x0bee81b7 em28xx_toggle_reg_bits -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x1531353f em28xx_alloc_urbs -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x284d7427 em28xx_audio_setup -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x2a03d683 em28xx_stop_urbs -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x329a340a em28xx_setup_xc3028 -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x32d39773 em28xx_init_usb_xfer -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x33ed3460 em28xx_read_reg -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x399ca1b3 em28xx_set_mode -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x6cde7cc0 em28xx_uninit_usb_xfer -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 0x94613046 em28xx_write_reg -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x9b9a5813 em28xx_write_reg_bits -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x9cbb9279 em28xx_write_ac97 -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xb552ef41 em28xx_gpio_set -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xc62dc3cb em28xx_read_ac97 -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xce819e50 em28xx_audio_analog_set -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xdbc02c27 em28xx_write_regs -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xe29922c7 em28xx_find_led -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xe43215cb em28xx_init_camera -EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x2001d697 tm6000_set_reg -EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x2309a6d6 tm6000_xc5000_callback -EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x4e27eb39 tm6000_set_audio_bitrate -EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x89b611dd tm6000_debug -EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0xb9f1ff74 tm6000_set_reg_mask -EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0xd41d66ec tm6000_get_reg -EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0xdff8e89d tm6000_tuner_callback -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0x2a27536e __v4l2_async_notifier_add_i2c_subdev -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0x58b04494 __v4l2_async_notifier_add_subdev -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0xc64de965 v4l2_async_notifier_cleanup -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0xc708f001 __v4l2_async_notifier_add_fwnode_subdev -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0xd86bd027 __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 0x128e3298 v4l2_flash_release -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-flash-led-class 0x3d062155 v4l2_flash_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-flash-led-class 0x56c86ea2 v4l2_flash_indicator_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x36450574 v4l2_fwnode_endpoint_parse -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x41bdb77c v4l2_fwnode_put_link -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x5d75f923 v4l2_fwnode_connector_parse -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x612ddce5 v4l2_fwnode_connector_free -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x7fa6acc4 v4l2_async_notifier_parse_fwnode_endpoints -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x8abb6228 v4l2_async_register_subdev_sensor -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x9a579d50 v4l2_fwnode_endpoint_free -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0xa60fbd3b v4l2_fwnode_parse_link -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0xadae0206 v4l2_fwnode_endpoint_alloc_parse -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0xbe9fc70e v4l2_fwnode_device_parse -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0xf1693f21 v4l2_fwnode_connector_add_link -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-h264 0x2c620a2d v4l2_h264_build_p_ref_list -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-h264 0x4b224860 v4l2_h264_init_reflist_builder -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-h264 0x5150f937 v4l2_h264_build_b_ref_lists -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 0x12fc915e v4l2_m2m_ioctl_streamon -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x204dc914 v4l2_m2m_ioctl_decoder_cmd -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x2c28bf46 v4l2_m2m_last_buffer_done -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x3119ec80 v4l2_m2m_buf_queue -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x35c70982 v4l2_m2m_fop_mmap -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x370f31d3 v4l2_m2m_ctx_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x3abca85c v4l2_m2m_buf_copy_metadata -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x3b0e6112 v4l2_m2m_buf_remove_by_idx -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x461e62a9 v4l2_m2m_ctx_release -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x4d2fe8ff v4l2_m2m_fop_poll -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x5136cd69 v4l2_m2m_ioctl_prepare_buf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x52bff065 v4l2_m2m_register_media_controller -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x56f69ce6 v4l2_m2m_streamon -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x62f75489 v4l2_m2m_prepare_buf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x63eb2319 v4l2_m2m_querybuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x64c2805c v4l2_m2m_update_start_streaming_state -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x67c776a9 v4l2_m2m_create_bufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x7078b39c v4l2_m2m_update_stop_streaming_state -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x71661e5d v4l2_m2m_ioctl_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x717a66fc v4l2_m2m_last_buf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x730f2eae v4l2_m2m_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x7b83f64e v4l2_m2m_request_queue -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x7ba2001b v4l2_m2m_ioctl_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x7c09a04b v4l2_m2m_ioctl_stateless_decoder_cmd -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x82482b5e v4l2_m2m_poll -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x866c3085 v4l2_m2m_buf_remove -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x874581ab v4l2_m2m_buf_remove_by_buf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x88ac41c2 v4l2_m2m_ioctl_querybuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x8af5f6ae v4l2_m2m_ioctl_try_encoder_cmd -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x934312e0 v4l2_m2m_encoder_cmd -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x93c7b917 v4l2_m2m_streamoff -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x9b303016 v4l2_m2m_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xa78c2031 v4l2_m2m_ioctl_encoder_cmd -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xa83a4cd4 v4l2_m2m_expbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xab1d6621 v4l2_m2m_ioctl_create_bufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xb8e3693f v4l2_m2m_reqbufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xbba043f8 v4l2_m2m_ioctl_expbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xc236d54e v4l2_m2m_try_schedule -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xc6a8aa93 v4l2_m2m_ioctl_stateless_try_decoder_cmd -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xc6fca5ad v4l2_m2m_release -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xdac5d6b1 v4l2_m2m_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xdc47d1f2 v4l2_m2m_ioctl_reqbufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xdd4d2fbf v4l2_m2m_next_buf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xe408d216 v4l2_m2m_ioctl_try_decoder_cmd -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xf13ff84d v4l2_m2m_unregister_media_controller -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xf2e3f096 v4l2_m2m_ioctl_streamoff -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xf3cb8e5e v4l2_m2m_decoder_cmd -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x198e3e35 videobuf_stop -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x1c652a57 videobuf_querybuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x2b4e911f videobuf_alloc_vb -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x2f2311ae videobuf_waiton -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x3027f9fb videobuf_mmap_mapper -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x3beaf659 videobuf_queue_is_busy -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x43e6ef25 videobuf_poll_stream -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x4666d135 videobuf_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x5b7586ce videobuf_read_one -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x5cd2e040 __videobuf_mmap_setup -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x605e7ca3 videobuf_queue_core_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x66d9c842 videobuf_iolock -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x6702f4aa videobuf_queue_cancel -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x68fefacf videobuf_read_stream -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x69b20a5e videobuf_mmap_free -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x87695a19 videobuf_reqbufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x8b6d178f videobuf_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xa9d9a41d videobuf_queue_to_vaddr -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xc1809141 videobuf_mmap_setup -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xd54cb946 videobuf_read_stop -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xdf034798 videobuf_streamon -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xecda631d videobuf_streamoff -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xf0fbf21c videobuf_next_field -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xfb97dc7a videobuf_read_start -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x0c35014f videobuf_dma_free -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x553a86d0 videobuf_sg_alloc -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0xa90bc337 videobuf_queue_sg_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0xa96eca0b videobuf_dma_unmap -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0xab57e5fd videobuf_to_dma -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0x558bfec4 videobuf_vmalloc_free -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0x5f6260a6 videobuf_queue_vmalloc_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0x62396e6d videobuf_to_vmalloc -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x010d3326 v4l2_spi_new_subdev -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x0696baa8 v4l2_i2c_subdev_set_name -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x0b65f1aa v4l2_pipeline_pm_put -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x110ee05c __traceiter_vb2_v4l2_buf_queue -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x11f3044c __SCK__tp_func_vb2_v4l2_buf_queue -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x17c7e5e6 v4l2_create_fwnode_links -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x195d1586 v4l2_device_unregister -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x19bc1b50 v4l2_event_wake_all -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x1aed8cd3 v4l2_s_parm_cap -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x1d83b62f v4l2_spi_subdev_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x1e731ec5 v4l2_subdev_notify_event -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x210aa1de v4l2_i2c_new_subdev -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x2539700d v4l2_fh_del -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x26c895cf v4l2_event_queue -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x2922ffd9 v4l2_src_change_event_subscribe -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x2ae0877b __SCK__tp_func_vb2_v4l2_buf_done -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x2c4e9cb2 v4l2_subdev_link_validate -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x2ea66034 v4l2_subdev_get_fwnode_pad_1_to_1 -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x30317933 v4l2_event_subdev_unsubscribe -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x409586b0 v4l2_i2c_new_subdev_board -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 0x4c04d749 v4l2_i2c_subdev_addr -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x57c649be v4l2_subdev_alloc_state -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x5915420d v4l2_device_register_subdev -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x5dc5a690 v4l2_fh_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x5ddd9623 v4l2_fh_open -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x61910a9c v4l2_fh_release -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x643f4dcf v4l2_compat_ioctl32 -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x65c06db5 v4l2_ctrl_request_hdl_find -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x65d4b703 v4l2_event_subscribe -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x6a2de036 __tracepoint_vb2_v4l2_buf_queue -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x6a47759d v4l2_fh_is_singular -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x6afe93a0 __v4l2_ctrl_handler_setup -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x6ce1c95c __SCK__tp_func_vb2_v4l2_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x6e43bdd8 v4l2_g_parm_cap -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x6e9acc41 v4l2_fill_pixfmt_mp -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x73bb168c v4l2_device_disconnect -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7732f651 v4l2_event_unsubscribe -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7ace9fdb v4l2_event_queue_fh -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7f79b26e v4l2_device_unregister_subdev -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x8520fdd3 __traceiter_vb2_v4l2_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x894e25b4 v4l2_i2c_subdev_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x8d681862 v4l2_pipeline_pm_get -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x90c8c829 v4l2_fh_exit -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x93015dec v4l2_src_change_event_subdev_subscribe -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x958c590d __v4l2_device_register_subdev_nodes -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x9cc8e19b v4l2_device_put -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x9fef35ac v4l2_apply_frmsize_constraints -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa2cee90a v4l2_mc_create_media_graph -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa8283e6c v4l_vb2q_enable_media_source -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xace32afe __traceiter_vb2_v4l2_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xb13d41a0 v4l2_subdev_free_state -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xb8792df8 v4l2_device_register -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc13d9742 v4l2_device_set_name -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc1695f6a v4l_enable_media_source -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc4454749 v4l2_ctrl_request_hdl_ctrl_find -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 0xd14d326c v4l_disable_media_source -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xd1d66e0c v4l2_event_dequeue -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xd9e88db7 v4l2_fh_add -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xdaf40eb6 v4l2_get_link_freq -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe2822320 __v4l2_find_nearest_size -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe3775006 v4l2_pipeline_link_notify -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe5a33113 __SCK__tp_func_vb2_v4l2_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe8233f81 v4l2_create_fwnode_links_to_pad -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xeb012413 v4l2_event_unsubscribe_all -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf1c3411d v4l2_event_pending -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf2a353ac v4l2_i2c_tuner_addrs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf5368b7b v4l2_subdev_link_validate_default -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf5ef842e v4l_bound_align_image -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf6f35204 __traceiter_vb2_v4l2_buf_done -EXPORT_SYMBOL_GPL drivers/memory/mtk-smi 0x2f1f807c mtk_smi_larb_put -EXPORT_SYMBOL_GPL drivers/memory/mtk-smi 0x48d47353 mtk_smi_larb_get -EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0x5af99687 pm80x_regmap_config -EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0xa9984b24 pm80x_init -EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0xb5334b01 pm80x_pm_ops -EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0xd99fd720 pm80x_deinit -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x05862853 wm5110_patch -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x070d6eb3 cs47l24_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x08de45b6 arizona_dev_exit -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x1a0676b0 arizona_clk32k_disable -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x327bd3c6 arizona_free_irq -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x37367c56 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 0x428cbedb wm8997_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x4c087981 wm5110_aod -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x51240dd2 arizona_clk32k_enable -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x65fc6bee wm8998_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x6ff6003a cs47l24_patch -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x740ebd1a wm5102_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x77a18f66 wm8997_patch -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x895de927 wm5110_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xa6b70564 wm8997_irq -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xa727bd3b cs47l24_irq -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xaaf78759 wm5110_irq -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xc69796b2 arizona_request_irq -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xc81b43ab wm5110_revd_irq -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xca65286b wm5110_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xd56dc057 arizona_set_irq_wake -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xfae1ba16 arizona_dev_init -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xfbf51181 arizona_pm_ops -EXPORT_SYMBOL_GPL drivers/mfd/atc260x-core 0xa56b3812 atc260x_match_device -EXPORT_SYMBOL_GPL drivers/mfd/atc260x-core 0xfce2749d atc260x_device_probe -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x279f69ea da9150_reg_write -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x3c9d15e3 da9150_bulk_write -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x93ed42f3 da9150_bulk_read -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xc3d282e7 da9150_set_bits -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xd71ec411 da9150_reg_read -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xfadc485d da9150_write_qif -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xfc4b3a5c da9150_read_qif -EXPORT_SYMBOL_GPL drivers/mfd/gateworks-gsc 0xa142a524 gsc_read -EXPORT_SYMBOL_GPL drivers/mfd/gateworks-gsc 0xb7abd1c4 gsc_write -EXPORT_SYMBOL_GPL drivers/mfd/iqs62x 0xa436f4de iqs62x_events -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x0e805b97 kempld_read32 -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x19ed0e4f kempld_get_mutex -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x59a3b61c kempld_write32 -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x5cc68638 kempld_write8 -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x5d4cf560 kempld_read8 -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x8391de5f kempld_release_mutex -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x844b390a kempld_write16 -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xde7945f0 kempld_read16 -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0x05c866fc lm3533_update -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0x3ef84ba1 lm3533_write -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0xaf252e98 lm3533_read -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x0a9e7d3e lm3533_ctrlbank_set_max_current -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x2dc16111 lm3533_ctrlbank_get_pwm -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xa890db04 lm3533_ctrlbank_enable -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xb1feeb37 lm3533_ctrlbank_set_brightness -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xb7f52299 lm3533_ctrlbank_set_pwm -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xd6f88987 lm3533_ctrlbank_get_brightness -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xe97adbc7 lm3533_ctrlbank_disable -EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0x7ad24595 lp3943_update_bits -EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0xb263ddb8 lp3943_read_byte -EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0xe98e3e40 lp3943_write_byte -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x04b7e6d1 cs47l90_16bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x04ba3a91 cs47l90_32bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x0dc185f5 madera_pm_ops -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x0f379262 madera_of_match -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x19c1deb3 cs47l15_patch -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x1c629161 cs47l85_16bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x1c6f4d21 cs47l85_32bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x2e100a19 cs47l35_16bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x2e11c6ab cs47l35_patch -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x2e1dd659 cs47l35_32bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x3336fd2c cs47l92_32bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x333b216c cs47l92_16bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x374cf0bb cs47l92_patch -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x3f6f1850 cs47l90_patch -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x4782fbdd cs47l90_32bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x478f279d cs47l90_16bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x5f578c6d cs47l85_32bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x5f5a502d cs47l85_16bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x6d251715 cs47l35_32bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x6d28cb55 cs47l35_16bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x7003e020 cs47l92_16bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x700e3c60 cs47l92_32bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0xa7e6bdd9 cs47l15_16bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0xa7eb6199 cs47l15_32bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0xc2c6f6bc madera_dev_init -EXPORT_SYMBOL_GPL drivers/mfd/madera 0xccc7d7ef madera_dev_exit -EXPORT_SYMBOL_GPL drivers/mfd/madera 0xdd69b2df cs47l85_patch -EXPORT_SYMBOL_GPL drivers/mfd/madera 0xe4d3a0d5 cs47l15_32bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0xe4de7c95 cs47l15_16bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0xebe384cb madera_name_from_type -EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x8308db0f mc13xxx_adc_do_conversion -EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x939c21b5 mc13xxx_variant_mc13892 -EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0xb9e31200 mc13xxx_common_exit -EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0xc1299ffd mc13xxx_variant_mc34708 -EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0xd3266a95 mc13xxx_variant_mc13783 -EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0xd52b5fbd mc13xxx_common_init -EXPORT_SYMBOL_GPL drivers/mfd/motorola-cpcap 0xa226dbe8 cpcap_sense_virq -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x1043ddf7 pcf50633_reg_clear_bits -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x33b86b9c pcf50633_free_irq -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x3560deda pcf50633_irq_unmask -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x85bc4a81 pcf50633_reg_write -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x9af41a35 pcf50633_irq_mask_get -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x9d4391ec pcf50633_write_block -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xa44ff3fb pcf50633_read_block -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xbf95262e pcf50633_irq_mask -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xdd973986 pcf50633_reg_set_bit_mask -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xead87acb pcf50633_reg_read -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xef1d64c2 pcf50633_register_irq -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0x970fa094 pcf50633_adc_async_read -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0xcc809a13 pcf50633_adc_sync_read -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x46b8db9c pcf50633_gpio_invert_set -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x50679bc9 pcf50633_gpio_power_supply_set -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x8d5ce1c7 pcf50633_gpio_get -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xd7f94bf3 pcf50633_gpio_set -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xdf181f55 pcf50633_gpio_invert_get -EXPORT_SYMBOL_GPL drivers/mfd/rave-sp 0x43e53ef9 rave_sp_exec -EXPORT_SYMBOL_GPL drivers/mfd/rave-sp 0x680b8a2e 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 0x04195061 si476x_core_stop -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x0d6e2fbf si476x_core_cmd_get_property -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x14012b43 si476x_core_cmd_intb_pin_cfg -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x151d3ce8 si476x_core_cmd_ana_audio_pin_cfg -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x221fd6d9 si476x_core_is_powered_up -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x3859de2b si476x_core_cmd_am_tune_freq -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x3b610fa1 si476x_core_set_power_state -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x41ef382a si476x_core_cmd_fm_seek_start -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x4ffce63c si476x_core_i2c_xfer -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x5667570e si476x_core_cmd_fm_phase_diversity -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x568818f2 si476x_core_cmd_set_property -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x5a41b79e si476x_core_is_in_am_receiver_mode -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x601dc719 si476x_core_cmd_fm_phase_div_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x655c3d87 si476x_core_cmd_am_seek_start -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x706f8d8c si476x_core_has_diversity -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x728e09dd si476x_core_cmd_fm_rsq_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x785927e4 si476x_core_start -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x7b5580cb si476x_core_cmd_fm_acf_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x7c5eb77f si476x_core_cmd_fm_rds_blockcount -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x847912f0 si476x_core_cmd_dig_audio_pin_cfg -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x85a2c0f4 si476x_core_is_a_secondary_tuner -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x8b09c7cf si476x_core_cmd_power_down -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xa49cf741 si476x_core_cmd_am_acf_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xa52d17e2 si476x_core_cmd_am_rsq_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xae0cb684 si476x_core_is_a_primary_tuner -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xba5e7180 si476x_core_cmd_fm_rds_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xd555730e si476x_core_cmd_power_up -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xe88be1c1 si476x_core_cmd_fm_tune_freq -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xf079c2ab devm_regmap_init_si476x -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xf3073797 si476x_core_cmd_zif_pin_cfg -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xf48748e5 si476x_core_has_am -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xf59a0574 si476x_core_cmd_agc_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xfa622933 si476x_core_cmd_ic_link_gpo_ctl_pin_cfg -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xffa89d22 si476x_core_cmd_func_info -EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x131979bb sm501_unit_power -EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x2f647827 sm501_find_clock -EXPORT_SYMBOL_GPL drivers/mfd/sm501 0xae3dccfb sm501_modify_reg -EXPORT_SYMBOL_GPL drivers/mfd/sm501 0xd5fd7d3f sm501_misc_control -EXPORT_SYMBOL_GPL drivers/mfd/sm501 0xdac026a1 sm501_set_clock -EXPORT_SYMBOL_GPL drivers/mfd/sprd-sc27xx-spi 0xbe1f334d sprd_pmic_detect_charger_type -EXPORT_SYMBOL_GPL drivers/mfd/stmfx 0xd039f68e stmfx_function_disable -EXPORT_SYMBOL_GPL drivers/mfd/stmfx 0xd2b6ab9a stmfx_function_enable -EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x4717d1d4 am335x_tsc_se_set_once -EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x4dd4a8b3 am335x_tsc_se_set_cache -EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0xa3e4ca8a am335x_tsc_se_clr -EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0xa8bc9d60 am335x_tsc_se_adc_done -EXPORT_SYMBOL_GPL drivers/mfd/tps65217 0xa0915cf2 tps65217_reg_read -EXPORT_SYMBOL_GPL drivers/mfd/tps65217 0xad03d730 tps65217_clear_bits -EXPORT_SYMBOL_GPL drivers/mfd/tps65217 0xd1bacf56 tps65217_reg_write -EXPORT_SYMBOL_GPL drivers/mfd/tps65217 0xd46c9754 tps65217_set_bits -EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0x361d069c tps65218_set_bits -EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0x3fa1f322 tps65218_reg_write -EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0x8f7726c3 tps65218_clear_bits -EXPORT_SYMBOL_GPL drivers/mfd/ucb1400_core 0x70953677 ucb1400_adc_read -EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x0169edb1 alcor_read32be -EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x2a801ee2 alcor_read8 -EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x42ff382f alcor_write32be -EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x575b69a0 alcor_write16 -EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x650d6ac4 alcor_write32 -EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x7114d376 alcor_read32 -EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0xa639b1b4 alcor_write8 -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x1008d342 rtsx_pci_add_cmd -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x19af1169 rtsx_pci_read_register -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x1dffaad9 rtsx_pci_stop_cmd -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x2147e837 rtsx_pci_card_exclusive_check -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x5784d137 rtsx_pci_transfer_data -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x57aa36f7 rtsx_pci_card_power_on -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x6f3dfc55 rtsx_pci_complete_unfinished_transfer -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x79462b8f rtsx_pci_card_pull_ctl_enable -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x7aa7b994 rtsx_pci_write_phy_register -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x7e8bf372 rtsx_pci_dma_map_sg -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x8329d31d rtsx_pci_write_register -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x86368008 rtsx_pci_switch_output_voltage -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x941cf64f rtsx_pci_card_exist -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x95a07a0b rtsx_pci_read_ppbuf -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x981027d0 rtsx_pci_send_cmd_no_wait -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x9bcc97b3 rtsx_pci_dma_transfer -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xa0813b5e rtsx_pci_send_cmd -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xc1dba3e2 rtsx_pci_write_ppbuf -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xda6016dd rtsx_pci_switch_clock -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xdd063724 rtsx_pci_card_power_off -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xe2b0dbab rtsx_pci_read_phy_register -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xeb29e0fc rtsx_pci_dma_unmap_sg -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xecbc543d rtsx_pci_card_pull_ctl_disable -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xed4c3707 rtsx_pci_start_run -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x13d7daa1 rtsx_usb_switch_clock -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x35bc8bd7 rtsx_usb_write_ppbuf -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x4e87b472 rtsx_usb_transfer_data -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x522d14f2 rtsx_usb_get_rsp -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x8afddb3d rtsx_usb_add_cmd -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x90b349b4 rtsx_usb_write_register -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xc7192235 rtsx_usb_card_exclusive_check -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xca19b08c rtsx_usb_get_card_status -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xdabd6cbe rtsx_usb_send_cmd -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xe2a102ad rtsx_usb_ep0_read_register -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xe9a5b5ea rtsx_usb_read_ppbuf -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xf3a83fe7 rtsx_usb_read_register -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xf3db1c95 rtsx_usb_ep0_write_register -EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x29c7366c cb710_sg_dwiter_read_next_block -EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x4590e69a cb710_set_irq_handler -EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x9a303233 cb710_pci_update_config_reg -EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0xb86afbd9 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 0x2a5b1550 enclosure_add_device -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x4e6d2b4d enclosure_find -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x5cd57578 enclosure_remove_device -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x606bfe6f enclosure_for_each_device -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x6c2d5e2e enclosure_unregister -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x7a65a825 enclosure_register -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xd23ae0fd enclosure_component_alloc -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xebc4dd99 enclosure_component_register -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x305f59af lis3lv02d_remove_fs -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x329dc98a lis3lv02d_poweron -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x5996d5b6 lis3lv02d_joystick_enable -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x5a1d5396 lis3lv02d_joystick_disable -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x5b10e142 lis3_dev -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xa492413b lis3lv02d_init_dt -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xbef465f8 lis3lv02d_poweroff -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xffb009d8 lis3lv02d_init_device -EXPORT_SYMBOL_GPL drivers/misc/pvpanic/pvpanic 0xb8964888 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 0x1e8628db uacce_register -EXPORT_SYMBOL_GPL drivers/misc/uacce/uacce 0xa9ac396e uacce_remove -EXPORT_SYMBOL_GPL drivers/misc/uacce/uacce 0xcf76b499 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 0x128dbe46 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 0x64d6c1bb vmci_qpair_peekv -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 0x8967c5bc vmci_qpair_enquev -EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0xb572e830 vmci_doorbell_create -EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0xbcb85f62 vmci_doorbell_notify -EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0xc04c7e84 vmci_qpair_get_consume_indexes -EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0xc403cafe vmci_is_context_owner -EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0xde3abc2e vmci_datagram_create_handle_priv -EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0xe0cc9c92 vmci_qpair_alloc -EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0xe11895c1 vmci_event_unsubscribe -EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0xe67343c1 vmci_qpair_enqueue -EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0xea143610 vmci_datagram_send -EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0xea61eefe vmci_qpair_produce_buf_ready -EXPORT_SYMBOL_GPL drivers/mmc/host/dw_mmc-pltfm 0x53a5d037 dw_mci_pltfm_register -EXPORT_SYMBOL_GPL drivers/mmc/host/dw_mmc-pltfm 0x944ca629 dw_mci_pltfm_pmops -EXPORT_SYMBOL_GPL drivers/mmc/host/dw_mmc-pltfm 0x9e50be40 dw_mci_pltfm_remove -EXPORT_SYMBOL_GPL drivers/mmc/host/mmc_hsq 0x37ff4906 mmc_hsq_finalize_request -EXPORT_SYMBOL_GPL drivers/mmc/host/mmc_hsq 0x4c1c8aab mmc_hsq_init -EXPORT_SYMBOL_GPL drivers/mmc/host/mmc_hsq 0x633cbed0 mmc_hsq_resume -EXPORT_SYMBOL_GPL drivers/mmc/host/mmc_hsq 0x7a643158 mmc_hsq_suspend -EXPORT_SYMBOL_GPL drivers/mmc/host/renesas_sdhi_core 0x457a8684 renesas_sdhi_remove -EXPORT_SYMBOL_GPL drivers/mmc/host/renesas_sdhi_core 0x868fe0b9 renesas_sdhi_probe -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x18664d01 sdhci_cqe_irq -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x1d08313f sdhci_set_power_and_bus_voltage -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x20af8e9c sdhci_send_tuning -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x23f77790 sdhci_end_tuning -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x24b76c97 sdhci_setup_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x2c6bfbfa __sdhci_read_caps -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x3ce1b8fd sdhci_calc_clk -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x41742a01 sdhci_adma_write_desc -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x4302ee4d sdhci_free_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x51bac48b sdhci_request_atomic -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x5ead0a9a sdhci_runtime_resume_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x67298c19 sdhci_add_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x6abb9804 sdhci_resume_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x6cbc7335 sdhci_set_power_noreg -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x73ae78e7 __sdhci_set_timeout -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x7d31d79c sdhci_suspend_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x8164a2a5 sdhci_switch_external_dma -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x81f35495 sdhci_cqe_disable -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x84ccfa6c sdhci_cleanup_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x85cd83c0 sdhci_start_signal_voltage_switch -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x961a480d sdhci_reset_tuning -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xa3d6c629 sdhci_abort_tuning -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xa417ecc6 sdhci_set_data_timeout_irq -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xa7093d55 sdhci_execute_tuning -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xb167a0d7 sdhci_set_bus_width -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xb665e300 sdhci_alloc_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xb9b7f296 sdhci_set_uhs_signaling -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xc75a2ef5 sdhci_request -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xc8da19b2 sdhci_set_ios -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xd9209c71 sdhci_enable_sdio_irq -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xdc5ff6fd sdhci_start_tuning -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xe1aac009 sdhci_runtime_suspend_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xe6d4b787 sdhci_set_power -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xe7278bde sdhci_enable_v4_mode -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xe9320111 __sdhci_add_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xec8de76f sdhci_remove_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xeecd2f30 sdhci_reset -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xef84878b sdhci_cqe_enable -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xf2b85e6c sdhci_set_clock -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xf84eeb64 sdhci_enable_clk -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xfc06cda7 sdhci_dumpregs -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x15b83f9c sdhci_pltfm_unregister -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x28ae8e58 sdhci_pltfm_pmops -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x3e08959d sdhci_pltfm_resume -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x3e4f051e sdhci_pltfm_register -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x65214e15 sdhci_pltfm_free -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x7073cc27 sdhci_pltfm_clk_get_max_clock -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x767f2c1a sdhci_get_property -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xa2fb09ed sdhci_pltfm_init -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xf918aa96 sdhci_pltfm_suspend -EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0x378f2335 tmio_mmc_irq -EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0x3a885c2d tmio_mmc_host_runtime_resume -EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0x782d2992 tmio_mmc_disable_mmc_irqs -EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0x7ee400eb tmio_mmc_enable_mmc_irqs -EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0x8cc05c3f tmio_mmc_host_free -EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0x8cf1587d tmio_mmc_do_data_irq -EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0x959292e5 tmio_mmc_host_runtime_suspend -EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0x97e1515b tmio_mmc_host_alloc -EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0xe6b910cf tmio_mmc_host_probe -EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0xefdc625b tmio_mmc_host_remove -EXPORT_SYMBOL_GPL drivers/most/most_core 0x0b1db328 most_register_interface -EXPORT_SYMBOL_GPL drivers/most/most_core 0x0f84eaaa most_resume_enqueue -EXPORT_SYMBOL_GPL drivers/most/most_core 0x0ff078cf most_register_component -EXPORT_SYMBOL_GPL drivers/most/most_core 0x38a38f9d most_deregister_interface -EXPORT_SYMBOL_GPL drivers/most/most_core 0x44c59034 most_deregister_configfs_subsys -EXPORT_SYMBOL_GPL drivers/most/most_core 0x4e45a84c most_submit_mbo -EXPORT_SYMBOL_GPL drivers/most/most_core 0x65b78c57 most_deregister_component -EXPORT_SYMBOL_GPL drivers/most/most_core 0x7b296bd9 channel_has_mbo -EXPORT_SYMBOL_GPL drivers/most/most_core 0xb2080898 most_put_mbo -EXPORT_SYMBOL_GPL drivers/most/most_core 0xcbc7db47 most_register_configfs_subsys -EXPORT_SYMBOL_GPL drivers/most/most_core 0xe410642b most_stop_channel -EXPORT_SYMBOL_GPL drivers/most/most_core 0xf9a86926 most_start_channel -EXPORT_SYMBOL_GPL drivers/most/most_core 0xfc907dae most_get_mbo -EXPORT_SYMBOL_GPL drivers/most/most_core 0xfd7d17d9 most_stop_enqueue -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0x3f66367a cfi_cmdset_0200 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0xc27813ec cfi_cmdset_0003 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0xfd513604 cfi_cmdset_0001 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0x2e154e9e cfi_cmdset_0701 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0xa3becac8 cfi_cmdset_0006 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0xddec8118 cfi_cmdset_0002 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0020 0x4c2be79f cfi_cmdset_0020 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0x346f42ef cfi_qry_mode_off -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0xb8148272 cfi_qry_present -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0xf84c4ad5 cfi_qry_mode_on -EXPORT_SYMBOL_GPL drivers/mtd/hyperbus/hyperbus-core 0x7730f72f hyperbus_register_device -EXPORT_SYMBOL_GPL drivers/mtd/hyperbus/hyperbus-core 0x98905206 hyperbus_unregister_device -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x05c9769a mtd_add_partition -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x06c9456a __register_mtd_parser -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x06f85089 get_mtd_device -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x096d56e5 mtd_read_oob -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x0e304b4c mtd_read_fact_prot_reg -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x1771dd52 mtd_ooblayout_free -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x18e56008 mtd_panic_write -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x1db13aba mtd_table_mutex -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x20060992 mtd_read_user_prot_reg -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x21ee5cc7 mtd_writev -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x28614b60 mtd_unpoint -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x2adc6238 mtd_read -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x38035f04 mtd_wunit_to_pairing_info -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x3be88ff7 get_mtd_device_nm -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x3c639c64 mtd_device_parse_register -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x4c11afe7 __get_mtd_device -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x510adf13 mtd_get_unmapped_area -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x553a8d7d mtd_pairing_groups -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x5eeba285 mtd_device_unregister -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x61aaaef6 mtd_unlock -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x64747232 get_tree_mtd -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x665d7729 __put_mtd_device -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x671b5130 mtd_ooblayout_set_databytes -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x6e807adf mtd_del_partition -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x70f88655 mtd_block_isbad -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x83337cc5 register_mtd_user -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x8333a6d5 mtd_ooblayout_count_freebytes -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x84995f40 mtd_ooblayout_set_eccbytes -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x8a363c26 mtd_ooblayout_find_eccregion -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x8acaf4de mtd_ooblayout_count_eccbytes -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x8fe9d63d mtd_point -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x957ce3e2 mtd_lock -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x9656713b mtd_write -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x97b6e54d mtd_ooblayout_ecc -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x9c035cc4 mtd_get_user_prot_info -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x9ee12acd mtd_is_locked -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xaeb1e9f6 deregister_mtd_parser -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xb3274e57 kill_mtd_super -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xb4fcefc1 mtd_pairing_info_to_wunit -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xb603317e put_mtd_device -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xbbb73340 mtd_ooblayout_get_databytes -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xbea9ca5e mtd_ooblayout_get_eccbytes -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xc7601caa mtd_kmalloc_up_to -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xd07ff7d5 mtd_get_device_size -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xd0c32c26 __mtd_next_device -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xd0e2f02b mtd_block_isreserved -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xd72c4b09 mtd_write_oob -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xdd947f16 mtd_write_user_prot_reg -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xe2bd5366 mtd_erase -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xe2bd9249 mtd_block_markbad -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xe75cbc8f mtd_erase_user_prot_reg -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xf44b1db0 mtd_lock_user_prot_reg -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xf5bc01b9 unregister_mtd_user -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xfd469555 mtd_get_fact_prot_info -EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x3d8f158b del_mtd_blktrans_dev -EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0xb9aa8446 deregister_mtd_blktrans -EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0xec667961 register_mtd_blktrans -EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0xec76a88d mtd_blktrans_cease_background -EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0xf2e44dbd add_mtd_blktrans_dev -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x05d38be5 nand_get_large_page_hamming_ooblayout -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x35d903a6 nand_ecc_tweak_req -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x39bce81f nand_ecc_init_req_tweaking -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x496292a6 nanddev_mtd_erase -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x4c1bb0b9 nand_get_large_page_ooblayout -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x5e0d4ae4 nand_ecc_restore_req -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x709ca118 nanddev_bbt_set_block_status -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x77a8ebdf nanddev_isbad -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x82eab52d nanddev_bbt_update -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x854bad68 nanddev_init -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x87d7904f nanddev_erase -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x92b23a64 nand_get_small_page_ooblayout -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xa28326f2 nanddev_markbad -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xa555549a nanddev_ecc_engine_cleanup -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xa80e33e3 nanddev_ecc_engine_init -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xb0eff5a6 nanddev_bbt_init -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xc909118c nanddev_cleanup -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xe0a71369 nanddev_bbt_cleanup -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xec5ab995 nanddev_isreserved -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xee929139 nand_ecc_cleanup_req_tweaking -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xf0eaf8a7 nanddev_bbt_get_block_status -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xf2c04768 nanddev_mtd_max_bad_blocks -EXPORT_SYMBOL_GPL drivers/mtd/nand/onenand/onenand 0x65346d0e onenand_scan -EXPORT_SYMBOL_GPL drivers/mtd/nand/onenand/onenand 0xe19eaaa3 onenand_release -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/brcmnand/brcmnand 0x29bb93b7 brcmnand_pm_ops -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/brcmnand/brcmnand 0xac92cbae brcmnand_remove -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/brcmnand/brcmnand 0xd41a6821 brcmnand_probe -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/denali 0x62bfd372 denali_chip_init -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x0419497b nand_reset -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x105f5bb8 nand_write_data_op -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x11091291 nand_extract_bits -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x14baa744 nand_prog_page_op -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x17d6fa74 nand_read_oob_op -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x20443492 nand_change_write_column_op -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x208df556 nand_select_target -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x2d368c4c nand_subop_get_addr_start_off -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x338ff979 nand_readid_op -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x4b8fc9b3 nand_read_page_op -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x52c70469 nand_prog_page_begin_op -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x5632e63d nand_subop_get_num_addr_cyc -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x609f417f nand_gpio_waitrdy -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x690898c1 nand_prog_page_end_op -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x6a9d0232 nand_read_page_hwecc_oob_first -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x7446d744 nand_decode_ext_id -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x7c82f8f4 nand_read_data_op -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x943d2075 nand_op_parser_exec_op -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xb1828b41 nand_reset_op -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xc068bfd2 nand_wait_ready -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xc1201292 nand_erase_op -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xc426cd1c nand_status_op -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xc7e5fadf nand_ecc_choose_conf -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xca21df98 nand_cleanup -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xd3c672b8 nand_subop_get_data_len -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xd41ff2ac nand_subop_get_data_start_off -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xea4cdb37 nand_change_read_column_op -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xf4a80141 nand_soft_waitrdy -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xf4f22ffa nand_deselect_target -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/sm_common 0x22e69eee sm_register_device -EXPORT_SYMBOL_GPL drivers/mtd/spi-nor/spi-nor 0x0399cfa5 spi_nor_scan -EXPORT_SYMBOL_GPL drivers/mtd/spi-nor/spi-nor 0x06385cdc spi_nor_restore -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x10efc288 ubi_close_volume -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x1cbd447a 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 0x66011ab6 ubi_get_device_info -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x71ee3f41 ubi_leb_map -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x7c424873 ubi_leb_write -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x85a8ee76 ubi_unregister_volume_notifier -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x875ee49a ubi_leb_read -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xa548d0f8 ubi_leb_read_sg -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xa6807752 ubi_open_volume_nm -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xa738c06f ubi_leb_change -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xa96dac55 ubi_open_volume_path -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xb01a8e9d ubi_leb_unmap -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xb1049488 ubi_is_mapped -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xb19a58b0 ubi_open_volume -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xc95269a1 ubi_leb_erase -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xdf960760 ubi_do_get_device_info -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xf5ee9ba8 ubi_register_volume_notifier -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x08e20d96 devm_mux_control_get -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x0f617d1d mux_control_deselect -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x34c361bb mux_control_select -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x5f8def14 devm_mux_chip_alloc -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x78214a26 mux_chip_unregister -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x80a33381 devm_mux_chip_register -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x89546f0b mux_chip_alloc -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x8d8af566 mux_control_put -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xbca23f37 mux_chip_register -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xc1490164 mux_control_states -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xccb6451f mux_control_get -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xd8cc2cda mux_chip_free -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xe2c2e7ee mux_control_try_select -EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0x3cdf6661 arcnet_led_event -EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0xffdc23f2 devm_arcnet_led_init -EXPORT_SYMBOL_GPL drivers/net/bareudp 0x7af88fef bareudp_dev_create -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x11ae6515 c_can_power_down -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x556e4af7 alloc_c_can_dev -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x597c5253 unregister_c_can_dev -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x83d49888 register_c_can_dev -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xe421d5c7 free_c_can_dev -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xe574c66e c_can_power_up -EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x41eb2841 unregister_cc770dev -EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x8999232a register_cc770dev -EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0xa19ea0b1 free_cc770dev -EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0xf5eaabe0 alloc_cc770dev -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x088e9d98 open_candev -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x10d892eb can_get_state_str -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x123bd14e can_bus_off -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x1690e20c can_rx_offload_add_manual -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x193d9a48 alloc_candev_mqs -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x30157998 can_rx_offload_threaded_irq_finish -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x45c53e19 can_rx_offload_irq_finish -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x4be10eed can_get_echo_skb -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x4fdd1c9d can_rx_offload_irq_offload_timestamp -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x6047ede6 can_fd_len2dlc -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x6669d295 can_rx_offload_enable -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x6aebfb4b can_change_mtu -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x72c8b772 alloc_can_err_skb -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x861eeda2 unregister_candev -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x9686e202 can_rx_offload_add_timestamp -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x9c877230 can_change_state -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xa12914d8 can_rx_offload_add_fifo -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xabd281f3 close_candev -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xb2c78dee safe_candev_priv -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xb4f56f6e register_candev -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xbea19cb7 can_rx_offload_get_echo_skb -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xbfa84013 alloc_canfd_skb -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xc0cf9562 can_free_echo_skb -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xc3204907 can_rx_offload_queue_tail -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xc4b76934 can_rx_offload_queue_sorted -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xc81414d8 free_candev -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xd269fb9b of_can_transceiver -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xe224bb91 can_rx_offload_irq_offload_fifo -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xf0bc06f4 alloc_can_skb -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xf12d9387 can_fd_dlc2len -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xf8e5a67f can_rx_offload_del -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xf917b226 can_put_echo_skb -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xff1fc4f5 can_skb_get_frame_len -EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x3084ae4d m_can_class_resume -EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x37297ad0 m_can_class_allocate_dev -EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x4fcc2434 m_can_class_free_dev -EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x8aa60568 m_can_class_suspend -EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0xba135e09 m_can_class_unregister -EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0xbf33fe7a m_can_init_ram -EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0xdd8d909a m_can_class_register -EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0xf727f93a m_can_class_get_clocks -EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x2e748cac alloc_sja1000dev -EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x49ebd0d2 sja1000_interrupt -EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x78bcc6e4 free_sja1000dev -EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x8f63cc3e unregister_sja1000dev -EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x9eb86fa8 register_sja1000dev -EXPORT_SYMBOL_GPL drivers/net/dsa/lan9303-core 0x79370b5a lan9303_indirect_phy_ops -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x0ccc226b ksz_port_mdb_add -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x126ed492 ksz_port_bridge_join -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x31c86a25 ksz_port_fdb_dump -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x3ccf3989 ksz_phy_write16 -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x5ac750a1 ksz_phy_read16 -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x616e4251 ksz_enable_port -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x7c1e1031 ksz_update_port_member -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x7fab933e ksz_port_bridge_leave -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xa70bbc12 ksz_init_mib_timer -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xb5063df2 ksz_port_fast_age -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xbbbbcb54 ksz_sset_count -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xd75cc7f3 ksz_mac_link_down -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xf51e68e0 ksz_get_ethtool_stats -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xfaf58a6f ksz_port_mdb_del -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x05ec0030 rtl8366_init_vlan -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x1f81ccca rtl8366_enable_vlan4k -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x491f59eb rtl8366rb_variant -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x796440c3 rtl8366_get_sset_count -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x8062c34e rtl8366_vlan_del -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x87dc1c65 rtl8366_enable_vlan -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x88cdeb66 rtl8366_mc_is_used -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x8b04f9ca rtl8366_vlan_add -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0x9ad9c3d8 realtek_smi_write_reg_noack -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xb159e5f0 rtl8366_reset_vlan -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xbe3c85d3 rtl8366_set_vlan -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xc7c3cec2 rtl8366_get_strings -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xd9948393 rtl8366_get_ethtool_stats -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xd9d11d8e rtl8366_vlan_filtering -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek-smi 0xe908dc79 rtl8366_set_pvid -EXPORT_SYMBOL_GPL drivers/net/ethernet/arc/arc_emac 0x094571e2 arc_emac_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/arc/arc_emac 0x5044d718 arc_emac_probe -EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-mdio 0x1d7269c8 enetc_mdio_read -EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-mdio 0x2244af5a enetc_mdio_write -EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-mdio 0x5cac2bd0 enetc_mdio_lock -EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-mdio 0xc26e414a enetc_hw_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-ptp 0x5431a304 enetc_phc_index -EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/i40e/i40e 0x38d8dd46 i40e_client_device_register -EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/i40e/i40e 0x83185bb2 i40e_client_device_unregister -EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0x530e8fd9 ice_get_qos_params -EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0x70f26176 ice_rdma_request_reset -EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0x839e9b66 ice_rdma_update_vsi_filter -EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0xb58ca79b ice_add_rdma_qset -EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0xec9331b7 ice_del_rdma_qset -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x003d927d mlx4_config_vxlan_port -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x00f919e3 mlx4_uar_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x03bd4737 mlx4_multicast_promisc_add -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x03ef0a48 mlx4_phys_to_slaves_pport -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0561bd1d mlx4_mtt_init -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x08eb1c48 mlx4_srq_arm -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0a6c017b mlx4_port_map_set -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0aff6220 mlx4_unbond -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0b166a14 mlx4_unicast_detach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0c9c5631 mlx4_replace_zero_macs -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0ec9c7ed mlx4_phys_to_slave_port -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x101ae897 mlx4_db_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x11616299 mlx4_vf_set_enable_smi_admin -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x13629482 mlx4_wol_read -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x152792e2 __mlx4_register_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x15ad14b2 mlx4_mr_hw_put_mpt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x16f9ef15 mlx4_multicast_attach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1a0cc945 mlx4_counter_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1f950bfb mlx4_mr_enable -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x23429569 mlx4_unregister_interface -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x24ab9a45 mlx4_vf_smi_enabled -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x25447213 mlx4_buf_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x293608fe mlx4_unicast_promisc_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2a9ca393 mlx4_multicast_promisc_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2dfac750 mlx4_mr_hw_change_access -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2fa466d8 mlx4_set_admin_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x326221ce mlx4_bf_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x337436a6 mlx4_find_cached_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x34af1de2 mlx4_get_counter_stats -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x37124421 mlx4_free_cmd_mailbox -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x37a902fc mlx4_qp_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x37db9449 mlx4_cq_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3925df8e mlx4_wol_write -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3c4b9f2e mlx4_free_hwq_res -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3f070da2 mlx4_alloc_cmd_mailbox -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x405441f7 mlx4_srq_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x411c5cb5 mlx4_unregister_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x456a90c9 mlx4_mr_rereg_mem_write -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x45fb740e mlx4_xrcd_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x46e4cdc0 mlx4_read_clock -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4766f12a mlx4_mr_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4877afc9 mlx4_set_vf_spoofchk -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4c1e286d __mlx4_unregister_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4f9d238b mlx4_get_internal_clock_params -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x50d7b6a3 mlx4_qp_release_range -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x535d6e0c mlx4_INIT_PORT -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x56ad4fc8 mlx4_flow_detach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x58eafc28 mlx4_cq_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5b8751b2 mlx4_register_interface -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5c76ac1f mlx4_cq_resize -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5cedfabc mlx4_CLOSE_PORT -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5eb7f784 mlx4_SYNC_TPT -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x609b8380 mlx4_ACCESS_PTYS_REG -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x612b5a1a mlx4_update_qp -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6195f096 mlx4_multicast_detach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x69d69f0c mlx4_bf_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6a76795f mlx4_mr_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6bd7273c mlx4_register_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6c75cb23 mlx4_qp_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6c8fb685 mlx4_unicast_promisc_add -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6f2c7d71 mlx4_unregister_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6fe967e8 mlx4_flow_steer_promisc_add -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x71fa3f25 mlx4_config_roce_v2_port -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x72cec60a mlx4_srq_lookup -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x73e5109b mlx4_srq_query -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x755c97f7 mlx4_find_cached_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x75f6f1f7 mlx4_qp_query -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x77b3554d mlx4_qp_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x77ed9285 mlx4_write_mtt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x785f8179 mlx4_vf_get_enable_smi_admin -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7f68c9f2 mlx4_set_vf_link_state -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7f9a96c0 mlx4_mw_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x80c88d36 mlx4_slave_convert_port -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x85e665ca mlx4_qp_modify -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x88e2b786 mlx4_get_base_qpn -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x89a75d61 mlx4_mw_enable -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x92c1c0de mlx4_alloc_hwq_res -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x950842f2 mlx4_qp_to_ready -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x96057596 mlx4_xrcd_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x981d8e39 mlx4_set_vf_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x992e9f62 mlx4_mr_hw_write_mpt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x993ec1e2 mlx4_mr_hw_get_mpt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9b169d88 mlx4_register_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9f63109f mlx4_flow_steer_promisc_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa34ba965 mlx4_counter_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa3ecd914 mlx4_buf_write_mtt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa6350769 mlx4_get_base_gid_ix -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa924fb32 __mlx4_cmd -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xaa23a64e mlx4_uar_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xaaa84fbf mlx4_get_protocol_dev -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xab07a629 mlx4_srq_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xace5ca12 mlx4_set_vf_rate -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xad2b1462 mlx4_map_sw_to_hw_steering_id -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb01559be mlx4_set_vf_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb017fed9 mlx4_flow_attach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb5264dfd mlx4_hw_rule_sz -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb614687e mlx4_mtt_cleanup -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb7958c7d mlx4_bond -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb9a63236 mlx4_unicast_attach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbac29b55 mlx4_get_default_counter_index -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbb4538cf mlx4_phys_to_slaves_pport_actv -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbf13a209 mlx4_get_vf_config -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc11d88cc mlx4_config_dev_retrieval -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc1a0fb95 mlx4_db_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc31a8c6f mlx4_get_vf_stats -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc5032f6e mlx4_mw_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc55d5808 mlx4_buf_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcb9ee42a mlx4_get_active_ports -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd14864a7 mlx4_get_devlink_port -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd3acf1c4 mlx4_pd_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdd99d272 mlx4_mr_hw_change_pd -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe0772396 mlx4_get_slave_default_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe0bb747c mlx4_map_sw_to_hw_steering_mode -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xea8dc1a5 mlx4_get_admin_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xeae6491e mlx4_mtt_addr -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf02753bd __mlx4_replace_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf3f4678f mlx4_qp_reserve_range -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf65c69c5 mlx4_cq_modify -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf9d00537 mlx4_pd_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfebdf5a5 mlx4_mr_rereg_mem_cleanup -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xff622d3a mlx4_FLOW_STEERING_IB_UC_QP_RANGE -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x058adcb2 mlx5_toggle_port_link -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x05c8a301 mlx5_query_port_pfc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0612a9de mlx5_set_port_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 0x07c7a8dc mlx5_set_port_pause -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0b1b56b4 mlx5_accel_esp_create_xfrm -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x10a39fa2 mlx5_query_nic_system_image_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x21e4dbeb mlx5_accel_esp_destroy_xfrm -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x257aedc9 mlx5_core_query_vport_counter -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2b747b2b mlx5_set_port_admin_status -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2ced7b29 mlx5_set_port_wol -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x35f52ac0 mlx5_set_port_pfc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3751e341 mlx5_modify_nic_vport_promisc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3ccc2f46 mlx5_buf_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3ea91865 mlx5_query_mac_address -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x420af424 mlx5_query_nic_vport_qkey_viol_cntr -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x46bb7f5e mlx5_query_hca_vport_context -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x46ed7fb6 mlx5_dm_sw_icm_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4cc34e78 mlx5_db_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4e107b36 mlx5_query_port_admin_status -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4ed63c3c mlx5_core_reserved_gids_count -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x52e3a26d mlx5_set_port_caps -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5413800e mlx5_query_min_inline -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x56032871 mlx5_query_port_wol -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6245f08c mlx5_query_port_ptys -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x628b4c89 mlx5_db_alloc_node -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x63d31807 mlx5_query_port_pause -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x65b295df mlx5_core_modify_hca_vport_context -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x698075a2 mlx5_nic_vport_query_local_lb -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7448357b mlx5_query_port_prio_tc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7a60fc2e mlx5_eswitch_get_total_vports -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7f8e3389 mlx5_query_nic_vport_mac_address -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x81aadc6a mlx5_fill_page_frag_array_perm -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x852de67d mlx5_nic_vport_unaffiliate_multiport -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8723689d mlx5_accel_ipsec_device_caps -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8987184d mlx5_query_port_vl_hw_cap -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x90a661b7 mlx5_query_nic_vport_mtu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9210cc88 mlx5_eswitch_mode -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x97ffc342 mlx5_query_port_tc_bw_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9aa4e0bc mlx5_core_query_ib_ppcnt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa021cfde mlx5_modify_nic_vport_vlans -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa154daac mlx5_modify_nic_vport_mac_list -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa3c8f644 mlx5_modify_nic_vport_mtu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa4523b8f mlx5_set_port_prio_tc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa74d97ec mlx5_query_hca_vport_node_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 0xa8ff41e8 mlx5_query_hca_vport_pkey -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb6dcd589 mlx5_query_module_eeprom_by_page -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb6e22550 mlx5_query_port_ets_rate_limit -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb9e73ce6 mlx5_query_port_max_mtu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbabfa233 mlx5_nic_vport_affiliate_multiport -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbb6aa780 mlx5_set_port_tc_bw_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbd48fcf5 mlx5_accel_esp_modify_xfrm -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbe28ac62 mlx5_modify_nic_vport_mac_address -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc2272b89 mlx5_query_hca_vport_system_image_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc3f5f1d1 mlx5_set_port_tc_group -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc4204ab3 mlx5_query_port_oper_mtu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc52d0312 mlx5_core_query_sq_state -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc69651da mlx5_frag_buf_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc6aeaf5f mlx5_modify_port_ets_rate_limit -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcb505d05 mlx5_query_nic_vport_node_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcce48aff mlx5_query_module_eeprom -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xce4e8bd5 mlx5_core_access_reg -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd55f5e0f mlx5_query_nic_vport_system_image_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd9243505 mlx5_query_port_tc_group -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xda44dee9 mlx5_nic_vport_enable_roce -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdf7ab0b0 mlx5_query_nic_vport_mac_list -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe199771c mlx5_query_nic_vport_min_inline -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe2ff91d5 mlx5_db_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xeaa5f5ae mlx5_nic_vport_update_local_lb -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf6a88dd3 mlx5_frag_buf_alloc_node -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf907b9fa mlx5_dm_sw_icm_dealloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfd2d03b2 mlx5_query_hca_vport_gid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfefbb902 mlx5_query_nic_vport_promisc -EXPORT_SYMBOL_GPL drivers/net/ethernet/micrel/ks8851_common 0x2e4ac9c1 ks8851_remove_common -EXPORT_SYMBOL_GPL drivers/net/ethernet/micrel/ks8851_common 0x496c8464 ks8851_probe_common -EXPORT_SYMBOL_GPL drivers/net/ethernet/micrel/ks8851_common 0x98171e4e ks8851_resume -EXPORT_SYMBOL_GPL drivers/net/ethernet/micrel/ks8851_common 0xd34aa4b2 ks8851_suspend -EXPORT_SYMBOL_GPL drivers/net/ethernet/microchip/encx24j600-regmap 0x66bd59a2 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 0x05bb8006 ocelot_phylink_mac_link_up -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x09a47fda ocelot_cls_flower_stats -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x0e3c683b ocelot_cls_flower_destroy -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x442ed17a ocelot_regfields_init -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x54e41665 __ocelot_rmw_ix -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x672cde11 ocelot_port_rmwl -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x6f9be87f ocelot_port_readl -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x8a97d424 ocelot_cls_flower_replace -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x953226ac ocelot_port_writel -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xa611f1b4 __ocelot_read_ix -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb854deb6 ocelot_regmap_init -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb8af0726 __ocelot_write_ix -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xffa90dfc ocelot_phylink_mac_link_down -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 0x05c4af60 stmmac_init_tstamp_counter -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x20c0897e stmmac_dvr_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x3f9bb462 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 0xa59293de stmmac_dvr_probe -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0xcfb33f1d stmmac_resume -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0xd1cc24db stmmac_set_mac_addr -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0xf03aebe3 stmmac_suspend -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x0ac2c652 stmmac_pltfr_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x0dc7ac72 stmmac_probe_config_dt -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x5df9c72c stmmac_pltfr_pm_ops -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0xc68f3e15 stmmac_get_platform_resources -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0xe1fc3b5b stmmac_remove_config_dt -EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/am65-cpts 0x0316b0a9 am65_cpts_prep_tx_timestamp -EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/am65-cpts 0x2ec480de am65_cpts_create -EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/am65-cpts 0x405b51c2 am65_cpts_ns_gettime -EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/am65-cpts 0x7b106966 am65_cpts_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 0xfca9b9d9 am65_cpts_phc_index -EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0xe1acaf8e w5100_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0xe393fe3f w5100_ops_priv -EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0xe7056cef w5100_probe -EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0xfc073727 w5100_pm_ops -EXPORT_SYMBOL_GPL drivers/net/geneve 0xcd578642 geneve_dev_create_fb -EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x1816331c ipvlan_link_register -EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x31b5121e ipvlan_count_rx -EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x90090a75 ipvlan_link_setup -EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0xa3ef84dd ipvlan_link_new -EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0xb6b9dfcd ipvlan_link_delete -EXPORT_SYMBOL_GPL drivers/net/macsec 0x291005a6 macsec_pn_wrapped -EXPORT_SYMBOL_GPL drivers/net/macvlan 0x8e6a9693 macvlan_dellink -EXPORT_SYMBOL_GPL drivers/net/macvlan 0x97c83051 macvlan_common_newlink -EXPORT_SYMBOL_GPL drivers/net/macvlan 0xa5866e65 macvlan_link_register -EXPORT_SYMBOL_GPL drivers/net/macvlan 0xdfb1ff84 macvlan_common_setup -EXPORT_SYMBOL_GPL drivers/net/mdio/mdio-i2c 0x83930987 mdio_i2c_alloc -EXPORT_SYMBOL_GPL drivers/net/net_failover 0x66f6a158 net_failover_destroy -EXPORT_SYMBOL_GPL drivers/net/net_failover 0xd2ef19ce net_failover_create -EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0x1bb2b426 xpcs_destroy -EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0x3201fa0f xpcs_validate -EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0x383090ae xpcs_config_eee -EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0x4d0a08f7 xpcs_get_an_mode -EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0x5f7d8749 xpcs_create -EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0x9c333e77 xpcs_do_config -EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0xe05362b0 xpcs_link_up -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x04a98d53 bcm_phy_get_strings -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x112f02d1 bcm_phy_read_rdb -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x1384563d bcm_phy_get_stats -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x191be186 bcm_phy_write_exp -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x1ad2ab1b bcm_phy_set_eee -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x2307dfd3 bcm_phy_cable_test_get_status_rdb -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x25987135 bcm_phy_write_rdb -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x30515941 bcm_phy_ack_intr -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x30b6cd96 bcm_phy_cable_test_start_rdb -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x3694745d __bcm_phy_read_rdb -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x473e0933 __bcm_phy_modify_exp -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x49d2d954 bcm_phy_read_misc -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x555129a2 bcm_phy_write_shadow -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x5cefa1d1 bcm_phy_cable_test_start -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x5e72b31b bcm_phy_modify_exp -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x76a3efbf bcm_phy_config_intr -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x94d189f4 bcm_phy_write_misc -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xa32da950 bcm_phy_downshift_get -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xa7b91e14 bcm_phy_get_sset_count -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xb3d08c3a bcm_phy_enable_apd -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xb4147d2e bcm_phy_cable_test_get_status -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xb6a1ad6d bcm54xx_auxctl_read -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xc1b7f0f1 bcm_phy_modify_rdb -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xc47537cc bcm_phy_enable_jumbo -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xd124215e __bcm_phy_write_exp -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xd8fb4ad9 __bcm_phy_modify_rdb -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xdb5875d6 bcm_phy_downshift_set -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xdb616088 bcm_phy_handle_interrupt -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xdcabbf2f bcm_phy_read_exp -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xe5420e87 bcm_phy_28nm_a0b0_afe_config_init -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xeda7b1ed __bcm_phy_write_rdb -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xf14252d2 bcm_phy_read_shadow -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xfb10c9a3 __bcm_phy_read_exp -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xfc26d02c 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 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 0x17c609e6 phylink_mii_c22_pcs_an_restart -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x2060b946 phylink_mii_c22_pcs_get_state -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x271c2a7e phylink_mii_c22_pcs_set_advertisement -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x2c8e28ee phylink_ethtool_get_eee -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 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 0x7f0007bf 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 0x92d59e9c phylink_mii_c22_pcs_config -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 0x9e3d2e80 phylink_fwnode_phy_connect -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xbb92f7dd 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 0xd7812225 phylink_of_phy_connect -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xd90619a3 phylink_create -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xdcb0a2c0 phylink_stop -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xde66f4a7 phylink_mii_ioctl -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xe8c137ed phylink_set_pcs -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xec02ebe0 phylink_init_eee -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xf3083a1d phylink_destroy -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xf8fe5642 phylink_ethtool_get_pauseparam -EXPORT_SYMBOL_GPL drivers/net/tap 0x2b040064 tap_get_minor -EXPORT_SYMBOL_GPL drivers/net/tap 0x62486ad3 tap_destroy_cdev -EXPORT_SYMBOL_GPL drivers/net/tap 0x8d45a2e6 tap_handle_frame -EXPORT_SYMBOL_GPL drivers/net/tap 0x9893bb85 tap_create_cdev -EXPORT_SYMBOL_GPL drivers/net/tap 0x996b4e06 tap_queue_resize -EXPORT_SYMBOL_GPL drivers/net/tap 0xb340f75c tap_free_minor -EXPORT_SYMBOL_GPL drivers/net/tap 0xbd6b58b1 tap_get_ptr_ring -EXPORT_SYMBOL_GPL drivers/net/tap 0xd9a9aeed tap_del_queues -EXPORT_SYMBOL_GPL drivers/net/tap 0xe04d0815 tap_get_socket -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x202e42a7 usbnet_cdc_bind -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x607172b6 usbnet_cdc_status -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x7875a4be usbnet_cdc_update_filter -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x9ed72287 usbnet_ether_cdc_bind -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xb7fe1a5d usbnet_cdc_unbind -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xe546abde usbnet_generic_cdc_bind -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x084ee354 cdc_ncm_rx_verify_ndp16 -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x170e1bf5 cdc_ncm_rx_verify_nth32 -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x3f577d0c cdc_ncm_rx_verify_nth16 -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x47b20c0a cdc_ncm_bind_common -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x5795b930 cdc_ncm_tx_fixup -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x66d779d1 cdc_ncm_change_mtu -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x80bd37a3 cdc_ncm_rx_fixup -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x948107de cdc_ncm_unbind -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x9d8e02d7 cdc_ncm_select_altsetting -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xe719d2cd cdc_ncm_fill_tx_frame -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xebf642a4 cdc_ncm_rx_verify_ndp32 -EXPORT_SYMBOL_GPL drivers/net/usb/r8152 0xcf3186a6 rtl8152_get_version -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x4f0d441b rndis_tx_fixup -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x5f108321 rndis_rx_fixup -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xa905a8ab rndis_unbind -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xd1a2f224 rndis_command -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xd84f85f9 rndis_status -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xe20b31aa generic_rndis_bind -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x097384bf usbnet_get_link_ksettings_internal -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x0c690ea7 usbnet_pause_rx -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x0d6ef756 usbnet_get_drvinfo -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x0ed09a28 usbnet_set_msglevel -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x13e1df34 usbnet_get_link_ksettings_mii -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x1d9c70ac usbnet_start_xmit -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x332888fe usbnet_get_link -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x3c6cfd8e usbnet_get_msglevel -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x45e5a17f usbnet_suspend -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x4918758a usbnet_set_rx_mode -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x4af97d84 usbnet_status_stop -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x4fad6a8b usbnet_open -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x62e3abd0 usbnet_nway_reset -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x6b2c4796 usbnet_tx_timeout -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x754e66fc usbnet_unlink_rx_urbs -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x7b42fa98 usbnet_status_start -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x812e1f49 usbnet_stop -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x82e1ceb8 usbnet_resume_rx -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x83f1479e usbnet_set_link_ksettings_mii -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x919260ac usbnet_probe -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x93f868be usbnet_read_cmd -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xa51e4c81 usbnet_read_cmd_nopm -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xa959d35c usbnet_defer_kevent -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xb8ffeebc usbnet_change_mtu -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xba2c2f35 usbnet_get_ethernet_addr -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xc485f7fe usbnet_write_cmd_async -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xd9207e0a usbnet_purge_paused_rxq -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xe04b7736 usbnet_update_max_qlen -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xe8599301 usbnet_write_cmd -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xedd593bf usbnet_get_endpoints -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xf572dd27 usbnet_write_cmd_nopm -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xf74fe345 usbnet_resume -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xf77b3b33 usbnet_disconnect -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xf87921be usbnet_skb_return -EXPORT_SYMBOL_GPL drivers/net/vxlan/vxlan 0x505c1f75 vxlan_dev_create -EXPORT_SYMBOL_GPL drivers/net/vxlan/vxlan 0x6032e746 vxlan_fdb_replay -EXPORT_SYMBOL_GPL drivers/net/vxlan/vxlan 0x61b4fad9 vxlan_fdb_clear_offload -EXPORT_SYMBOL_GPL drivers/net/vxlan/vxlan 0x8b799243 vxlan_fdb_find_uc -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/ipw2x00/libipw 0x3cc55436 libipw_rx_any -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3716b8a3 il_prep_station -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x4308f866 _il_grab_nic_access -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb097c668 il_mac_tx_last_beacon -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc69a73a0 il_dealloc_bcast_stations -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe8cee831 il_remove_station -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x021e2047 iwl_fw_dbg_error_collect -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x0511860b iwl_init_notification_wait -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x0df4ee33 iwl_write32 -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x1179cc25 iwl_get_cmd_string -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x194f5801 iwl_trans_send_cmd -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x1995c3bb iwl_acpi_get_tas -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x1bebd203 iwl_sar_get_wgds_table -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x1f1478cf iwl_write_prph_delay -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x26509fa5 iwl_set_bits_prph -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x2710c362 iwl_dump_desc_assert -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x283ee967 iwl_fw_runtime_suspend -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x28d54ac8 iwl_acpi_get_pwr_limit -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x2dc564ce __iwl_err -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x325f7c78 iwl_sar_select_profile -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x35033c81 iwl_phy_db_free -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x35ba6b1c __iwl_dbg -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x38d2b70d _iwl_dbg_tlv_time_point -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x41d63cea iwl_acpi_get_lari_config_bitmap -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x4244c268 iwl_write64 -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x47cd3e3a iwl_abort_notification_waits -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x4a49d59a iwl_read32 -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x4c4e7468 iwl_read_external_nvm -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x4f3d04d3 iwl_read_direct32 -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x4f9915af __iwl_crit -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x55bbfb1e iwl_acpi_get_eckv -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x56fd8edc iwl_remove_notification -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x5954440e iwl_read_prph_no_grab -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x5987fe45 iwl_fw_lookup_assert_desc -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x5a572160 iwl_set_bits_mask_prph -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x5bffe59e iwl_write8 -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x5c0ecc08 iwl_fw_dbg_collect_desc -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x5c52e109 iwl_opmode_deregister -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x5e3f5f58 iwl_set_soc_latency -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x69ba0c41 iwl_fw_dbg_stop_sync -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x69f9b226 iwl_fw_start_dbg_conf -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x6a42020a iwl_sar_get_wrds_table -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x6ae7d4ca iwl_configure_rxq -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x6b62fdbb iwl_get_shared_mem_conf -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x6cf46ccf iwl_acpi_get_wifi_pkg -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x721a90aa iwl_opmode_register -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x76108611 iwl_cmd_groups_verify_sorted -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x776221bf iwl_send_phy_db_data -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x7a6d3bbf iwl_notification_wait_init -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x7b2aa204 iwl_read_eeprom -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x7b6f3905 iwl_parse_eeprom_data -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x83850d7e __iwl_warn -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x83cc8cca iwl_poll_direct_bit -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x8bac198f iwl_sar_geo_support -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x8cd2f16c iwl_fw_lookup_notif_ver -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x902151f4 iwl_poll_bit -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x9038811a iwl_rfi_guid -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x9133d264 iwl_acpi_get_dsm_u8 -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x9600746c iwl_fwrt_dump_error_logs -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x9e2266f7 iwl_fw_runtime_resume -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x9e8f98f6 iwl_write_direct32 -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xa534dc55 iwl_force_nmi -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xa5f84a12 iwl_write_prph64_no_grab -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xa64c989d iwl_fw_dbg_collect -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xa69dfbe4 iwl_fw_dbg_stop_restart_recording -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xa6d969c5 iwl_free_fw_paging -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xa9f05394 iwlwifi_mod_params -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xabc19a47 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 0xb2d701eb iwl_fw_dbg_read_d3_debug_data -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xb9c14a90 iwl_finish_nic_init -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xc24834ee iwl_parse_nvm_mcc_info -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xc4551a93 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 0xcf4daac8 iwl_phy_db_init -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xd03180a9 iwl_init_paging -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xd13fb4ad iwl_write_direct64 -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xd25a6ef7 iwl_sar_geo_init -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xd38d3984 iwl_acpi_get_object -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xd89f8b39 iwl_fw_dbg_collect_trig -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xd95bd03b iwl_acpi_get_dsm_u32 -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xdac8619a __iwl_info -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xe288c4e5 iwl_notification_wait -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xe7da83a9 iwl_acpi_get_mcc -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xe99ef10d iwl_wait_notification -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xea1b26fc iwl_nvm_fixups -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xea60c93a iwl_read_prph -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xea87878f iwl_clear_bits_prph -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xf039cebe iwl_write_prph_no_grab -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xf464199f iwl_fw_runtime_init -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xf8177829 iwl_parse_nvm_data -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xfc1e6f41 iwl_guid -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xfe991622 iwl_sar_get_ewrd_table -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xffe2a93c iwl_pnvm_load -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x1a47d739 p54_register_common -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x2463fc4d p54_unregister_common -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x2498d15a p54_parse_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x2a75db16 p54_free_common -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x38260af0 p54_free_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x3cab00e3 p54_rx -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x5e207ada p54_init_common -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xb6bfb10b p54_parse_eeprom -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xd7b71e42 p54_read_eeprom -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x06cef49e lbs_notify_command_response -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x0a80025f lbs_queue_event -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x364754dd lbs_resume -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x39ad9340 lbs_host_sleep_cfg -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x5fdf38b8 lbs_disablemesh -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x6e00b1b5 lbs_suspend -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x7ebaa967 lbs_start_card -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x84b7b4e6 lbs_process_rxed_packet -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x8cacc469 lbs_host_to_card_done -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x96f6fecf __lbs_cmd -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xa3ea2aa7 lbs_get_firmware_async -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xa7c21e8f lbs_send_tx_feedback -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xaaff8de0 lbs_cmd_copyback -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xb81e83ad lbs_add_card -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xdd634aea lbs_remove_card -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xe3259633 lbs_stop_card -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xea3ad4ac lbs_get_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xf64277de lbs_debug -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x0328ed68 lbtf_cmd_response_rx -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x33e28084 lbtf_rx -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x4bf30a47 __lbtf_cmd -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0xa4909b20 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 0xc9263913 lbtf_remove_card -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0xd265fa05 lbtf_bcn_sent -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0xdfd5adcb lbtf_send_tx_feedback -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0xf7cfc457 lbtf_add_card -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x07f96adb mwifiex_process_hs_config -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x150dcdee _mwifiex_dbg -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x15f33c57 mwifiex_add_card -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x16000fd7 mwifiex_del_virtual_intf -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x1bb4b2c5 mwifiex_drv_info_dump -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x1d822f2a mwifiex_remove_card -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x1e5aa5b4 mwifiex_dnld_fw -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x25f122aa mwifiex_disable_auto_ds -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x26104902 mwifiex_queue_main_work -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x28be39f0 mwifiex_main_process -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x362e729c mwifiex_add_virtual_intf -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x47cb1c07 mwifiex_write_data_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x48e24047 mwifiex_fw_dump_event -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x4cec018a mwifiex_handle_rx_packet -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x55d40f20 mwifiex_cancel_hs -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x67c8a57b mwifiex_deauthenticate_all -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x6fda976d mwifiex_enable_hs -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x817b0050 mwifiex_init_shutdown_fw -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xa125c6f4 mwifiex_upload_device_dump -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xaeba3f77 mwifiex_multi_chan_resync -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xb62db5c6 mwifiex_reinit_sw -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xbce62e43 mwifiex_process_sleep_confirm_resp -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xbf6361d4 mwifiex_prepare_fw_dump_info -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xd4dad9f3 mwifiex_alloc_dma_align_buf -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xf98f6426 mwifiex_shutdown_sw -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x0096092a mt76_rx_aggr_stop -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x040bb1e1 mt76_dma_rx_poll -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x07c0ae61 mt76_sw_scan -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x08fdb7ef mt76_seq_puts_array -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x11e2c7d1 mt76_get_rate -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x1598cdff mt76_csa_finish -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x17f568e9 mt76_rates -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x17f932ed mt76_skb_adjust_pad -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x19857c66 mt76_tx_status_skb_add -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 0x22f594c2 __traceiter_dev_irq -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x27dcdaa3 mt76_queue_tx_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x2976a7f8 mt76_mcu_send_and_get_msg -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x2a9aadd2 mt76_csa_check -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x2daf20be mt76_alloc_device -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x2e08f43e mt76_get_min_avg_rssi -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x336e9210 mt76_tx_status_lock -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x34984759 mt76_release_buffered_frames -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x41087db0 mt76_mmio_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x42bcc385 mt76_txq_schedule -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x4356d0f4 mt76_get_survey -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x470308d2 mt76_mcu_skb_send_and_get_msg -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x47ce7f38 __mt76_set_tx_blocked -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x4c55202c mt76_register_debugfs_fops -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x557c60ce mt76_update_survey -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x5a9fa1b6 mt76_put_txwi -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x5cf4c353 mt76_get_of_eeprom -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x5d1b4e42 __tracepoint_mac_txdone -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x5d39e8f6 mt76_set_irq_mask -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x5fba0964 mt76_get_rate_power_limits -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x61a972af mt76_txq_schedule_all -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x62587c08 mt76_unregister_device -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x626e503d mt76_dma_cleanup -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x64c58aff mt76_tx_check_agg_ssn -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x659675a7 mt76_update_survey_active_time -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x6ab2c4d2 mt76_get_antenna -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x6e9fa2da mt76_init_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x71f5ecfd mt76_token_release -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x7b81737c mt76_tx_status_skb_get -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x8034d771 mt76_has_tx_pending -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x805fc13a __SCK__tp_func_dev_irq -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x825d81cb mt76_mcu_get_response -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x8818ee34 mt76_sw_scan_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x8eea6004 __traceiter_mac_txdone -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x9168de73 mt76_tx_status_skb_done -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x930c1b12 mt76_alloc_phy -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x96526584 mt76_rx_poll_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x973ddf45 mt76_init_sar_power -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x9a48dc59 __mt76_sta_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x9a5471af mt76_sar_capa -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xa10421b8 mt76_get_sar_power -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xa207ac53 mt76_sta_pre_rcu_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xa3b0c1d1 mt76_register_device -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xa429fa3f mt76_sta_state -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xa6ab721a mt76_insert_ccmp_hdr -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xab1085be mt76_set_stream_caps -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xab8babc6 mt76_get_txpower -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xae556ffd mt76_pci_disable_aspm -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xae891f3a mt76_tx_status_unlock -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xb14f35f0 mt76_dma_attach -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xb91c1a2d mt76_tx_status_check -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xb931a912 mt76_mcu_msg_alloc -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xb9f31f06 mt76_tx_worker_run -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xbeed2a2e mt76_stop_tx_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xbf1d5b0d mt76_free_device -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xbfdb44c7 mt76_queues_read -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xc2abc240 mt76_wake_tx_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xc6315d8e __SCK__tp_func_mac_txdone -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xc6634315 mt76_ac_to_hwq -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xd00911b6 mt76_register_phy -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xd0be3d60 __mt76_tx_complete_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xd7a1dea3 mt76_rx -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xda7303c1 mt76_eeprom_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xdb732e47 mt76_set_tim -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xdfb41e44 mt76_rx_aggr_start -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xe28648ab mt76_eeprom_override -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xe40b66ef mt76_wcid_alloc -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xe8f8a945 __mt76_poll -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xed202cb8 mt76_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xee1eb355 ____mt76_poll_msec -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xef3752f8 mt76_mcu_rx_event -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xf9cf970f mt76_token_consume -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xfb1c631f mt76_mcu_send_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xfc383355 mt76_set_channel -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xfc67232a mt76_unregister_phy -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x1799216a mt76_connac_mcu_set_hif_suspend -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x1a2f84b7 mt76_connac_pm_queue_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x1d0b18bd mt76_connac_mcu_coredump_event -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x2607d33d mt76_connac_mcu_sta_tlv -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x354ed21f mt76_connac_sta_state_dp -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x411a7057 mt76_connac_mcu_sta_ba -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x50d41c98 mt76_connac_mcu_sta_ba_tlv -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x546a279d mt76_connac_mcu_set_suspend_iter -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x584330d9 mt76_connac_mcu_patch_sem_ctrl -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x5def44f1 mt76_connac_mcu_start_patch -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x66827f38 mt76_connac_mcu_wtbl_ht_tlv -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x6a2bdbd6 mt76_connac_mcu_set_channel_domain -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x6b37a895 mt76_connac_mcu_uni_add_bss -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x70f38334 mt76_connac_mcu_update_gtk_rekey -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x71f7fbb3 mt76_connac_mcu_start_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x7652743e mt76_connac_mcu_alloc_wtbl_req -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x7dc26ea7 mt76_connac_mcu_get_nic_capability -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x851303cd mt76_connac_mcu_set_vif_ps -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x8570bff8 mt76_connac_mcu_set_rts_thresh -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x8b412e1d mt76_connac_mcu_chip_config -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 0x9160508f mt76_connac_mcu_wtbl_ba_tlv -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x9f332e89 mt76_connac_mcu_set_deep_sleep -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xad464ec0 mt76_connac_pm_dequeue_skbs -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xb0be7674 mt76_connac_mcu_wtbl_generic_tlv -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xb21f6615 mt76_connac_mcu_set_rate_txpower -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xb46f3d80 mt76_connac_free_pending_tx_skbs -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xb5a42c0e mt76_connac_mcu_uni_add_dev -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xbc0b8ce1 mt76_connac_mcu_sta_update_hdr_trans -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xbeaf8e31 mt76_connac_mcu_sched_scan_enable -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xc721fee3 mt76_connac_mcu_beacon_loss_iter -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xca4e589d mt76_connac_mcu_add_nested_tlv -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xcc4142c7 mt76_connac_mcu_alloc_sta_req -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xd41623f9 mt76_connac_mcu_init_download -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xd8c09ca1 mt76_connac_mcu_sta_basic_tlv -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xe314d157 mt76_connac_mcu_sched_scan_req -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xe3c48934 mt76_connac_mcu_cancel_hw_scan -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xe422a53a mt76_connac_power_save_sched -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xe6bad1c5 mt76_connac_mcu_update_arp_filter -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xea73831b mt76_connac_mcu_sta_cmd -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xf2d86e29 mt76_connac_pm_wake -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xf59fc481 mt76_connac_mcu_hw_scan -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xf7773ce9 mt76_connac_mcu_wtbl_hdr_trans_tlv -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xfb7f9204 mt76_connac_mcu_set_mac_enable -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x758a9da0 mt76s_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x7abfbbc5 mt76s_alloc_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0xa981bd8e mt76s_deinit -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x025abdb7 mt76u_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x246f1e60 mt76u_stop_rx -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x7172b51e mt76u_resume_rx -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x94119934 mt76u_single_wr -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xa63043ea mt76u_alloc_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xcfabaee9 mt76u_vendor_request -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xe70e1a37 mt76u_alloc_mcu_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xeb945a6b mt76u_queues_deinit -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xfe089270 mt76u_stop_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x023cd293 mt7615_mac_set_rates -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x156ebd45 mt7615_thermal_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x1680249b __mt7663_load_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x1bd2aca1 mt7615_eeprom_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x3225fba5 mt7615_init_txpower -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x3271e68e mt7622_trigger_hif_int -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x3d2b4027 mt7615_mac_sta_poll -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x40cb87cb mt7615_register_ext_phy -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x429c38d6 mt7615_mac_sta_add -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x459eeca1 mt7615_mcu_restart -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x463d2f5a mt7615_mac_write_txwi -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x49fff65d mt7615_init_device -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x4a1ab4a0 mt7615_mcu_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x518f6f24 mt7615_init_debugfs -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x616fb8fb mt7615_unregister_ext_phy -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x6e486e48 mt7615_mcu_exit -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x7c7188c2 mt7615_queue_rx_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x849908e3 mt7615_tx_token_put -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x874c3d81 mt7615_update_channel -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x8c47c223 mt7615_mcu_reg_rr -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xa62d449c mt7615_ops -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xb77412fd mt7615_mac_sta_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xbcd43d2b mt7615_init_work -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xbf8e5dd2 mt7615_sta_ps -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xc41cdb59 mt7615_mcu_reg_wr -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xc98726c2 mt7615_txp_skb_unmap -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xdd507bb6 mt7615_mcu_fill_msg -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xe435d27d mt7615_wait_for_mcu_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xfc216ff3 mt7615_mcu_parse_response -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615e 0x9de69f14 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 0x2651a778 mt7663_usb_sdio_tx_prepare_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7663-usb-sdio-common 0xa773c915 mt7663_usb_sdio_tx_complete_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7663-usb-sdio-common 0xc4faddbc mt7663_usb_sdio_register_device -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7663-usb-sdio-common 0xca3a8fac mt7663_usb_sdio_tx_status_data -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x5b5d7fda mt76x0_init_hardware -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x7b24735e mt76x0_config -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x8496c13f mt76x0_phy_calibrate -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x8bf711eb mt76x0_register_device -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x963c4fb0 mt76x0_mac_stop -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0xe799f89a mt76x0_chip_onoff -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x018fb3fb mt76x02_resync_beacon_timer -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 0x12515da9 mt76x02_set_ethtool_fwver -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x16dd676a mt76x02_mac_write_txwi -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x18a52c58 mt76x02_mac_set_beacon -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x1aff9106 mt76x02_mac_shared_key_setup -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x1ebe278d mt76x02_eeprom_copy -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x1f54b8d5 mt76x02_sta_rate_tbl_update -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x24b0ebe1 mt76x02_phy_set_rxpath -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x26f33128 mt76x02_mac_cc_reset -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x29e5b144 mt76x02_conf_tx -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 0x369107da mt76x02_get_rx_gain -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x36a0b07d mt76x02_mcu_parse_response -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x3884bfb8 mt76x02_dma_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x3b02c49b mt76x02_mcu_calibrate -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x3beb5467 mt76x02_sta_add -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x3de3fa65 mt76x02_sw_scan_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x408e3c71 mt76x02_reconfig_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x47ad3a80 mt76x02_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x4ac81952 mt76x02_mac_wcid_setup -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x54547cc5 mt76x02_init_agc_gain -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x5bd84fd5 mt76x02_rates -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x5be0a63d mt76x02_tx_set_txpwr_auto -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x60679844 mt76x02_edcca_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x61e50087 mt76x02_tx_prepare_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x620fc1cc mt76x02_set_coverage_class -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x679c05e7 mt76x02_remove_interface -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x6881650b mt76x02_dfs_init_params -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x6b9ab7aa mt76x02_eeprom_parse_hw_cap -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x6d56965b mt76x02_update_beacon_iter -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x6da643f6 mt76x02_mcu_function_select -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x6f9bac01 mt76x02_mac_start -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x72aa106c mt76x02_rx_poll_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x74f5ac05 mt76x02_get_efuse_data -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x75ddb370 mt76x02_mcu_set_radio_state -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x7bce2c42 mt76x02_phy_set_band -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x7d9ec8eb mt76x02_queue_rx_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x84d483c7 mt76x02_phy_dfs_adjust_agc -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x8a790776 mt76x02_sta_ps -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x8d9841bc 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 0x93f69924 mt76x02_phy_set_txdac -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x94e4e19c mt76x02_ext_pa_enabled -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x958d1563 mt76x02_phy_set_bw -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xa4e0f7ca mt76x02_init_device -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xa590aacd mt76x02_get_lna_gain -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xa85ed137 mt76x02_phy_set_txpower -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xa9af7003 mt76x02_mcu_cleanup -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xb70adf90 mt76x02_add_interface -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xb72e22dd mt76x02_init_beacon_config -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xb782a14f mt76x02_update_channel -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xb892e344 mt76x02_remove_hdr_pad -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xc1c8325f mt76x02_config_mac_addr_list -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xc6023446 mt76x02_init_debugfs -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xca5e0a87 mt76x02_ampdu_action -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xcda18697 mt76x02_set_tx_ackto -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xd73fceba mt76x02_mac_reset_counters -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xd7cfaea3 mt76x02_set_key -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xdbe8d860 mt76x02_tx_complete_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xdbec9e13 mt76x02_enqueue_buffered_bc -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xdda12574 mt76x02_mac_setaddr -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xde7657dc mt76x02_dma_disable -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xdea209d0 mt76x02e_init_beacon_config -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xdf93eb19 mt76x02_set_rts_threshold -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xe2a5596c mt76x02_configure_filter -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xe93b7d71 mt76x02_sta_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xedf517c6 mt76x02_bss_info_changed -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xf3fb5f6e mt76x02_phy_adjust_vga_gain -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xfccb26d4 mt76x02_tx_status_data -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x0729c989 mt76x02u_tx_prepare_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x12bf53d5 mt76x02u_exit_beacon_config -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x1d591df8 mt76x02u_mcu_fw_send_data -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x5117ade6 mt76x02u_init_beacon_config -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x6471f7db mt76x02u_tx_complete_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0xa4aa7dc5 mt76x02u_init_mcu -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0xb7e47bef mt76x02u_mac_start -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0xbe16fe28 mt76x02u_mcu_fw_reset -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x0440bb2d mt76x2_configure_tx_delay -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x069c0edc mt76x2_init_txpower -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x09ae40fb mt76x2_mcu_set_channel -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x10a288b5 mt76x2_get_power_info -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x26fb62c2 mt76x2_mcu_init_gain -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x2ef29cee mt76x2_get_temp_comp -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x32889c7a mt76x2_mac_stop -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x34c1ad86 mt76x2_phy_set_txpower -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x37d3f608 mt76x2_mcu_tssi_comp -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x3ba86080 mt76x2_eeprom_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x4a9f2dc2 mt76x2_apply_gain_adj -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x5cc2e636 mt76x2_phy_update_channel_gain -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x5f1ee17e mt76x2_get_rate_power -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x8db49855 mt76x2_reset_wlan -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xa444b48f mt76_write_mac_initvals -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xaba9dc7d mt76x2_mcu_load_cr -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xb7bd0e28 mt76x2_phy_tssi_compensate -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xf001d9cd mt76x2_phy_set_txpower_regs -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xf7f0eb06 mt76x2_read_rx_gain -EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x213091b7 host_wakeup_notify -EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x2ecb6ea4 chip_allow_sleep -EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x3426f896 chip_wakeup -EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x39bfb616 wilc_cfg80211_init -EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0xd6225678 host_sleep_notify -EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0xf1685655 wilc_handle_isr -EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0xfac49ea1 wilc_netdev_cleanup -EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x26961f85 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 0x6409876e qtnf_classify_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x65e5eff2 qtnf_core_attach -EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x71e7ae93 qtnf_trans_handle_rx_ctl_packet -EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x7a172f5a qtnf_wake_all_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0xb16e7516 qtnf_get_debugfs_dir -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x01ce4b45 rt2800_write_beacon -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x0b93f8e1 rt2800_gain_calibration -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x0d21c9c3 rt2800_config_ant -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x12b65ecd rt2800_wait_csr_ready -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x1a96b935 rt2800_reset_tuner -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x1b3d7995 rt2800_mcu_request -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x1e645b32 rt2800_txdone_nostatus -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x2a77b9dd rt2800_ampdu_action -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x2f61c500 rt2800_sta_add -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x37c69edd rt2800_link_stats -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x4005da75 rt2800_config_pairwise_key -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x42de64d0 rt2800_get_tsf -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x446fa297 rt2800_txstatus_timeout -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x598b1287 rt2800_read_eeprom_efuse -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x5f3d7a2b rt2800_watchdog -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x605fabea rt2800_vco_calibration -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x60d59df9 rt2800_check_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x624ae8d8 rt2800_txdone_entry -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x677230f0 rt2800_pre_reset_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x6f7b2d93 rt2800_conf_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x703021d5 rt2800_sta_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x7623b9db rt2800_config_intf -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x7c88655e rt2800_disable_wpdma -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x81ed791a rt2800_link_tuner -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x8b2cfef4 rt2800_config_erp -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x90df0107 rt2800_txstatus_pending -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x916c0741 rt2800_write_tx_data -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x95468611 rt2800_probe_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x99f59e81 rt2800_enable_radio -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xa44e0b6d rt2800_config -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xa7b0224b rt2800_get_txwi_rxwi_size -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xadd5dce4 rt2800_config_filter -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xb0af2ee0 rt2800_txdone -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xbdb62f38 rt2800_efuse_detect -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xc48337f1 rt2800_rfkill_poll -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xca961adf rt2800_load_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xcd632899 rt2800_clear_beacon -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xd37a202d rt2800_disable_radio -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xe65c088a rt2800_wait_wpdma_ready -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xea651c77 rt2800_get_survey -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xeaeb3494 rt2800_get_key_seq -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xf037abbc rt2800_process_rxwi -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xf80eb4ed rt2800_config_shared_key -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xfb0f026c rt2800_set_rts_threshold -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x06cd050d rt2800mmio_write_tx_desc -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x1226b68f rt2800mmio_toggle_irq -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x1a9468a5 rt2800mmio_fill_rxdone -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x20d72519 rt2800mmio_get_dma_done -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x2b6d1b76 rt2800mmio_probe_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x32ac3645 rt2800mmio_rxdone_tasklet -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x3b338f29 rt2800mmio_clear_entry -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x3c9877fa rt2800mmio_queue_init -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x3d741c87 rt2800mmio_pretbtt_tasklet -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x490e4382 rt2800mmio_stop_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x5028bbb2 rt2800mmio_tbtt_tasklet -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x5b358ba2 rt2800mmio_start_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x5fa4db64 rt2800mmio_interrupt -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x63f2b739 rt2800mmio_init_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x67d58234 rt2800mmio_get_entry_state -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x8f1bd04c rt2800mmio_flush_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x9066197a rt2800mmio_enable_radio -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x93f2c481 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 0x9f3c8921 rt2800mmio_txstatus_tasklet -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xd2f5b7d4 rt2800mmio_get_txwi -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xdd62c746 rt2800mmio_kick_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x00a842e3 rt2x00queue_unmap_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x016f6fe3 rt2x00mac_get_ringparam -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x05521673 rt2x00mac_config -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x06d75b8e rt2x00queue_flush_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x1243b4a1 rt2x00queue_stop_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x2233e15b rt2x00mac_remove_interface -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x229c5203 rt2x00lib_txdone_nomatch -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x30219132 rt2x00queue_stop_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x3027ef35 rt2x00mac_conf_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x3399b1b7 rt2x00lib_probe_dev -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x42818918 rt2x00queue_unpause_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x48b918a4 rt2x00mac_add_interface -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x4d26575e rt2x00mac_set_antenna -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x50dc3b8f rt2x00lib_remove_dev -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x59d0d2f0 rt2x00mac_start -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x5a78a0e5 rt2x00mac_bss_info_changed -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x5d81f82d rt2x00mac_tx_frames_pending -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x64302698 rt2x00lib_txdone_noinfo -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x65bd086d rt2x00lib_dmastart -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x678921da rt2x00queue_flush_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x6aafdc3a rt2x00mac_set_tim -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x6b567195 rt2x00mac_configure_filter -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x6e3f5790 rt2x00queue_start_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x784c1ed9 rt2x00mac_sw_scan_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x7e94ae19 rt2x00mac_get_stats -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x85f2a24e rt2x00mac_set_key -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x89e1f7c6 rt2x00mac_sw_scan_start -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x902d17fc rt2x00queue_start_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x9c874fda rt2x00queue_map_txskb -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xa0d0548a rt2x00lib_rxdone -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xa62376e0 rt2x00queue_for_each_entry -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xab382d21 rt2x00mac_stop -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xacebfe9c rt2x00lib_resume -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xb085c655 rt2x00lib_dmadone -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xb6a92033 rt2x00mac_rfkill_poll -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xbad993da rt2x00mac_flush -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xbea619c0 rt2x00mac_reconfig_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xce415c67 rt2x00lib_set_mac_address -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xceecf3a7 rt2x00mac_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xd19fba08 rt2x00lib_suspend -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xd4a7c7a4 rt2x00lib_txdone -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xedbce3fe rt2x00queue_get_entry -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xefbf51c2 rt2x00lib_get_bssidx -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xf0a6a743 rt2x00lib_beacondone -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xf1140aa2 rt2x00lib_pretbtt -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xf192d6c7 rt2x00mac_get_antenna -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xfc8ad9de rt2x00queue_pause_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x6bbc6b52 rt2x00mmio_regbusy_read -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x93e0db78 rt2x00mmio_rxdone -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x950f71d4 rt2x00mmio_initialize -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0xb196b79b rt2x00mmio_uninitialize -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0xe9ca7b29 rt2x00mmio_flush_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00pci 0x0b3fd3b7 rt2x00pci_probe -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00pci 0x4c3bcff4 rt2x00pci_pm_ops -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00pci 0x6129026f rt2x00pci_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x21cc3385 rt2x00usb_suspend -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x2d32a1e1 rt2x00usb_initialize -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x4a9ae140 rt2x00usb_resume -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x622acb0c rt2x00usb_regbusy_read -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x641a2932 rt2x00usb_probe -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x70b6c00a rt2x00usb_disable_radio -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x78bdff1f rt2x00usb_uninitialize -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x7f18f089 rt2x00usb_clear_entry -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x84e2c8cf rt2x00usb_vendor_req_buff_lock -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xa070c162 rt2x00usb_vendor_request -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xaeb59a8b rt2x00usb_vendor_request_buff -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xb183f95e rt2x00usb_register_read_async -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xe0cd2c7a rt2x00usb_kick_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xe5e1b3a1 rt2x00usb_disconnect -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xed25bb9f rt2x00usb_flush_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xf0f08e39 rt2x00usb_watchdog -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x36e5b976 rtl92c_set_p2p_ps_offload_cmd -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x7c90276f dm_writepowerindex -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x831a4269 dm_savepowerindex -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xb097a715 dm_restorepowerindex -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x0dacc4c5 rtl8723_phy_save_mac_registers -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x1346dd74 rtl8723_phy_path_adda_on -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x219492f7 rtl8723_phy_reload_adda_registers -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x30a27507 rtl8723_phy_init_bb_rf_reg_def -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 0x500e1a43 rtl8723_cmd_send_packet -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x57105b21 rtl8723_fw_free_to_go -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x5a92c0ad rtl8723ae_firmware_selfreset -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x5c8613f8 rtl8723_phy_reload_mac_registers -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x5ec1a33a rtl8723_phy_rf_serial_read -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x63ada1f6 rtl8723_write_fw -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x6935083d rtl8723_dm_init_edca_turbo -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x6ad7623b rtl8723_download_fw -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x71b723bd rtl8723_phy_set_bb_reg -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x89de9317 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 0x99e63e4c rtl8723_phy_path_a_fill_iqk_matrix -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x9c54ed83 rtl8723_phy_txpwr_idx_to_dbm -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xaddbd330 rtl8723_save_adda_registers -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xbf083ba0 rtl8723_dm_init_dynamic_txpower -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xc36e6866 rtl8723_phy_path_a_standby -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xc5d7c1bc rtl8723_phy_rf_serial_write -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xc9442a70 rtl8723_phy_query_bb_reg -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xe236fe5f rtl8723be_firmware_selfreset -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xeeb22088 rtl8723_enable_fw_download -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xf23e9806 rtl8723_phy_pi_mode_switch -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xfa357e23 rtl8723_dm_init_dynamic_bb_powersaving -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x1399538b rtl_deinit_rfkill -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x19d2bc95 rtl_ops -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x25ff818f rtl_lps_enter -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 0x31694155 rtl_recognize_peer -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x38681701 rtl_swlps_beacon -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x4645b6be rtl_fw_block_write -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x52c56117 rtl_global_var -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x5c78bdca rtl_fw_page_write -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x5fbcbe95 rtl_is_special_data -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x6334d840 read_efuse_byte -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x6670e431 rtl_lps_leave -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x6aa2952b rtl_action_proc -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x6db3ba37 rtl_update_beacon_work_callback -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x97911108 rtl_tx_report_handler -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x97e05663 rtl_tid_to_ac -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x99b8f5b5 rtl_get_hal_edca_param -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x9aecc0fa rtl_init_core -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa208f625 rtl_set_tx_report -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xb5608346 rtl_ips_nic_on -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xbbe8afca rtl_get_hwinfo -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc113d83e rtl_tx_ackqueue -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc5980dbd rtl_efuse_ops_init -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc8779b38 rtl_deinit_core -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc92fed5b rtl_p2p_info -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xcac106db rtl_beacon_statistic -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xde299a3b rtl_init_rx_config -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xe04a1ca1 rtl_tx_mgmt_proc -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xebd29bd2 rtl_deinit_deferred_work -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x0f5c3ce9 rsi_zone_enabled -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x70286af2 rsi_read_pkt -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x8d9e3d2d rsi_mac80211_detach -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x96ca0bb1 rsi_91x_init -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xc1ed2aee rsi_91x_deinit -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xcd173710 rsi_dbg -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xe5495865 rsi_hal_device_init -EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0x47b48707 cw1200_can_suspend -EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0xac30bc82 cw1200_core_release -EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0xbacdf0c7 cw1200_core_probe -EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0xbb2fffd7 cw1200_irq_handler -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0x09a8a00e wl1251_free_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0x3c01d631 wl1251_alloc_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0x5e3b6f74 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 0x0915bd1a wlcore_event_roc_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x1acbf371 wlcore_enable_interrupts -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x1e4b0d31 wl12xx_acx_mem_cfg -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x1f2e80cc 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 0x206dd86f wlcore_event_dummy_packet -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x214571fd wlcore_event_channel_switch -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x2d38ae0c wl1271_tx_flush -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x2ecb8442 wlcore_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x32a37418 wlcore_event_inactive_sta -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x365809e0 wlcore_alloc_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x393b3923 wl1271_cmd_send -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x3d92e6d9 wlcore_cmd_wait_for_event_or_timeout -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x49b1e460 wl1271_acx_set_ht_capabilities -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x4cc602c5 wlcore_event_rssi_trigger -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x552635ef wlcore_synchronize_interrupts -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x59c447c2 wlcore_set_scan_chan_params -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x5a224969 wlcore_scan_sched_scan_results -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x5ec8054f wlcore_disable_interrupts -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x5f1c0be1 wlcore_set_partition -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x649482d1 wlcore_scan_sched_scan_ssid_list -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x665fead5 wlcore_boot_run_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x707dc23a wlcore_event_beacon_loss -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x7340dc2a wlcore_event_soft_gemini_sense -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x777c9d74 wlcore_set_key -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x7a64e34b wlcore_translate_addr -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x80080809 wl1271_acx_sleep_auth -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x842fd947 wl1271_acx_init_mem_config -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x85498cd1 wl1271_format_buffer -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x8715b1ff wl1271_cmd_data_path -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x8ff61961 wlcore_event_ba_rx_constraint -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x9754caab wlcore_event_fw_logger -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x9e41df34 wlcore_event_sched_scan_completed -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xa10ca76a wl12xx_cmd_build_probe_req -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xa159191d wlcore_cmd_generic_cfg -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xa3249ed2 wl1271_cmd_configure -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xa38b856a wl1271_acx_pm_config -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xa3e66650 wl1271_debugfs_update_stats -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xaa97e88e wlcore_boot_upload_nvs -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xb12003f9 wlcore_probe -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xb7e597ae wlcore_event_max_tx_failure -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xd6a141c7 wlcore_disable_interrupts_nosync -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xd8a6495b wl1271_tx_min_rate_get -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xe77e483b wlcore_boot_upload_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xf5a5749e wlcore_free_hw -EXPORT_SYMBOL_GPL drivers/net/wwan/wwan 0x35484d9a wwan_port_rx -EXPORT_SYMBOL_GPL drivers/net/wwan/wwan 0x3d9bbf75 wwan_port_txon -EXPORT_SYMBOL_GPL drivers/net/wwan/wwan 0x4dff61e5 wwan_port_txoff -EXPORT_SYMBOL_GPL drivers/net/wwan/wwan 0x526bcf2a wwan_port_get_drvdata -EXPORT_SYMBOL_GPL drivers/net/wwan/wwan 0x6615d316 wwan_create_port -EXPORT_SYMBOL_GPL drivers/net/wwan/wwan 0xb74c31cd wwan_remove_port -EXPORT_SYMBOL_GPL drivers/net/wwan/wwan 0xc4c9e4e1 wwan_register_ops -EXPORT_SYMBOL_GPL drivers/net/wwan/wwan 0xd6ba33de wwan_unregister_ops -EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x108ee45f nfcmrvl_nci_unregister_dev -EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x2c578ebb nfcmrvl_parse_dt -EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x7b47c72d nfcmrvl_nci_recv_frame -EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0xd28c4d5c nfcmrvl_nci_register_dev -EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x1e4c49e5 pn53x_common_init -EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x2f7d1327 pn53x_register_nfc -EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x5d3200bc pn533_finalize_setup -EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x63e17458 pn53x_unregister_nfc -EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x8208afad pn532_i2c_nfc_alloc -EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0xad3a52e0 pn533_rx_frame_is_cmd_response -EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0xca3b7c16 pn53x_common_clean -EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0xdecfd339 pn533_rx_frame_is_ack -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x23725d35 st_nci_disable_se -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x2d163de9 st_nci_probe -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x4350f05e st_nci_hci_cmd_received -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x4432d58d st_nci_enable_se -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x7c63a9ea st_nci_remove -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xafbda699 st_nci_hci_load_session -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xdde4c04f st_nci_hci_event_received -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xe2f71d56 st_nci_discover_se -EXPORT_SYMBOL_GPL drivers/nfc/st95hf/st95hf 0x7a0cab08 st95hf_spi_recv_echo_res -EXPORT_SYMBOL_GPL drivers/nfc/st95hf/st95hf 0xaf0fa166 st95hf_spi_recv_response -EXPORT_SYMBOL_GPL drivers/nfc/st95hf/st95hf 0xafdb9f25 st95hf_spi_send -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x0862001f ntb_transport_tx_free_entry -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x30934216 ntb_transport_max_size -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x32537aca ntb_transport_link_query -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x3d54dbfc ntb_transport_tx_enqueue -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x436098aa ntb_transport_link_down -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x49085c3c ntb_transport_unregister_client -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x82e6c13d ntb_transport_qp_num -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x90a04cf9 ntb_transport_register_client -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x9c992c8f ntb_transport_link_up -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xabef90e7 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 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 0xa7d92cde async_pmem_flush -EXPORT_SYMBOL_GPL drivers/nvdimm/nd_virtio 0xeeee7b22 virtio_pmem_host_ack -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x00a4be3d nvme_wait_freeze_timeout -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x0252b818 nvme_shutdown_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x0ca9ec3d nvme_submit_sync_cmd -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x11abc494 __SCK__tp_func_nvme_sq -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x1419b47c nvme_start_freeze -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x2977edf1 nvme_wait_reset -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x29ca2c7b nvme_cancel_tagset -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x2afb060f nvme_init_ctrl_finish -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x33ff573c nvme_remove_namespaces -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x36bdf263 nvme_setup_cmd -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x39a6b96a nvme_stop_queues -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x3bff87fb nvme_delete_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x3d82431f nvme_start_queues -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x4180d61e nvme_fail_nonready_command -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x42383dea __traceiter_nvme_sq -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x42f9ad4c nvme_change_ctrl_state -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x49224181 nvme_reset_wq -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x4deb1033 nvme_cancel_admin_tagset -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x5256be2e nvme_enable_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x54884b92 nvme_sync_queues -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x585495a4 nvme_uninit_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x58ee2a50 nvme_try_sched_reset -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x5a02b391 nvme_unfreeze -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x5bd78944 nvme_cancel_request -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x5fcd9524 nvme_kill_queues -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x64b62862 nvme_wq -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x68649539 nvme_stop_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x813cf212 nvme_io_timeout -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 0x8ed30364 nvme_stop_keep_alive -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x8fc50731 nvme_init_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xa03afae8 nvme_host_path_error -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xa3c00614 nvme_complete_async_event -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xa4ca1c3e __nvme_submit_sync_cmd -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xa81baa01 nvme_reset_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xba164b2b nvme_get_features -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xbb6e63e0 nvme_start_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xc1493730 nvme_sync_io_queues -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xc1dc3698 nvme_disable_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xcbea3887 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 0xe099641a __nvme_check_ready -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xe411e719 nvme_set_queue_count -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xe91392da nvme_cleanup_cmd -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xf1ed0ba6 nvme_complete_rq -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xf2415acc nvme_set_features -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xf6a08278 nvme_alloc_request -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x1176afbc nvmf_connect_io_queue -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x1adb15c7 nvmf_register_transport -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x37ea395f nvmf_connect_admin_queue -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x3cf35941 nvmf_should_reconnect -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x3ec5cdbf nvmf_reg_write32 -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x51c659eb nvmf_free_options -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x6c5e16df nvmf_unregister_transport -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x7dae2e23 nvmf_ip_options_match -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xa2029ca3 nvmf_reg_read64 -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xa28b6e59 nvmf_reg_read32 -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xd6fafb56 nvmf_get_address -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0x0d12e564 nvme_fc_register_remoteport -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0x29fac0e3 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 0x06643df8 nvmet_req_complete -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x0cd1d32b nvmet_req_free_sgls -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x10afb622 nvmet_ctrl_fatal_error -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x1e0d7367 nvmet_req_uninit -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x37210327 nvmet_sq_destroy -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x3890c6a4 nvmet_req_init -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x3e0ef07a nvmet_wq -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xbcfa820b nvmet_sq_init -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xe06e74dc nvmet_req_alloc_sgls -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xe2f88e02 nvmet_check_transfer_len -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xf3eb2f0e nvmet_register_transport -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xf5213310 nvmet_unregister_transport -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet-fc 0x09731fb2 nvmet_fc_register_targetport -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/pci/controller/pcie-iproc 0xff0e22f0 iproc_pcie_shutdown -EXPORT_SYMBOL_GPL drivers/pci/switch/switchtec 0xf6a88140 switchtec_class -EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0x041ed596 hisi_uncore_pmu_identifier_attr_show -EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0x0547fa03 hisi_uncore_pmu_add -EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0x19ee8151 hisi_cpumask_sysfs_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 0x47b66473 hisi_uncore_pmu_stop -EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0x66eb8747 hisi_uncore_pmu_event_init -EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0x7a841c2f hisi_uncore_pmu_enable -EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0x7cefcacc hisi_uncore_pmu_read -EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0x8d2399b7 hisi_uncore_pmu_get_event_idx -EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0xa14fd1ce hisi_uncore_pmu_del -EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0xa252b0f2 hisi_event_sysfs_show -EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0xbbfcb155 hisi_uncore_pmu_start -EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0xbfd53967 hisi_uncore_pmu_set_event_period -EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0xc62c0063 hisi_uncore_pmu_event_update -EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0xd0ad34be hisi_format_sysfs_show -EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0xe15d031f hisi_uncore_pmu_init_irq -EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0xefc2542b hisi_uncore_pmu_disable -EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0xfb6373d1 hisi_uncore_pmu_offline_cpu -EXPORT_SYMBOL_GPL drivers/phy/allwinner/phy-sun4i-usb 0xef994a8a sun4i_usb_phy_set_squelch_detect -EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x00a54cd5 tegra_phy_xusb_utmi_port_reset -EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x019223e7 tegra210_xusb_padctl_soc -EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x06c53f82 tegra124_xusb_padctl_soc -EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x2c278b13 tegra_xusb_padctl_disable_phy_sleepwalk -EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x3733a023 tegra_xusb_padctl_enable_phy_wake -EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x395a86fb tegra_xusb_padctl_hsic_set_idle -EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x3e8cf83d tegra_xusb_padctl_remote_wake_detected -EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x3f865ed9 tegra_xusb_padctl_get_usb3_companion -EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x60c68f29 tegra_xusb_padctl_enable_phy_sleepwalk -EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x6d6bab67 tegra_xusb_padctl_disable_phy_wake -EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x70a31d75 tegra_xusb_padctl_usb3_set_lfps_detect -EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x7e044f75 tegra186_xusb_padctl_soc -EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x8c2f2370 tegra_xusb_padctl_put -EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x8ff54732 tegra_xusb_padctl_set_vbus_override -EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x98f3cfbf tegra_xusb_padctl_usb3_save_context -EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0xac32a4ae tegra194_xusb_padctl_soc -EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0xeea19de3 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 0x19733d09 mcp23s08_probe_one -EXPORT_SYMBOL_GPL drivers/pinctrl/pinctrl-mcp23s08 0x1fe0e2ee mcp23x08_regmap -EXPORT_SYMBOL_GPL drivers/pinctrl/pinctrl-mcp23s08 0x2f9b4601 mcp23x17_regmap -EXPORT_SYMBOL_GPL drivers/platform/chrome/cros-ec-sensorhub 0x413f47fd cros_ec_sensorhub_unregister_push_data -EXPORT_SYMBOL_GPL drivers/platform/chrome/cros-ec-sensorhub 0xd526e903 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 0x08277542 ssh_packet_put -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x133becb0 ssam_notifier_register -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x1bb52544 ssam_request_sync_submit -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x3681929f ssam_controller_event_disable -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x3770b8a1 ssam_client_link -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x377f9fed ssam_request_sync_with_buffer -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x3c051e17 ssam_notifier_unregister -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x41f77a5d ssam_device_remove -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x538b1a79 ssam_device_alloc -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x601200d6 ssam_request_sync_free -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x67710088 ssam_controller_event_enable -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x6aa04884 ssam_request_sync -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x6adc56a3 ssam_client_bind -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x750a4766 ssam_request_write_data -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x75d80255 ssh_packet_get -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x8260d11e ssam_device_add -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x8b14a104 ssam_controller_put -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x8b7b7fad ssam_controller_device -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x8c42cc20 ssam_controller_statelock -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x8d10558c ssam_controller_get -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x8d3c84e4 ssam_get_controller -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x9ebc139b ssam_device_get_match_data -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x9fd551ea ssam_device_get_match -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xa70e52a4 ssam_request_sync_init -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xade1f711 ssam_device_type -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xbb33a62c ssam_bus_type -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xc2bd582d ssam_device_id_match -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xc4dfb767 ssam_device_driver_unregister -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xe8b79bd5 ssam_request_sync_alloc -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xfd57ac17 __ssam_device_driver_register -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xff7bb9aa ssam_controller_stateunlock -EXPORT_SYMBOL_GPL drivers/platform/surface/surface_acpi_notify 0x48cf4c48 san_dgpu_notifier_register -EXPORT_SYMBOL_GPL drivers/platform/surface/surface_acpi_notify 0x64139140 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 0x509ef0aa reboot_mode_register -EXPORT_SYMBOL_GPL drivers/power/reset/reboot-mode 0x7d34f51b devm_reboot_mode_register -EXPORT_SYMBOL_GPL drivers/power/reset/reboot-mode 0xcf8e7138 devm_reboot_mode_unregister -EXPORT_SYMBOL_GPL drivers/power/reset/reboot-mode 0xfa45f87b reboot_mode_unregister -EXPORT_SYMBOL_GPL drivers/power/supply/bq27xxx_battery 0x4c70e074 bq27xxx_battery_setup -EXPORT_SYMBOL_GPL drivers/power/supply/bq27xxx_battery 0x5e423c62 bq27xxx_battery_teardown -EXPORT_SYMBOL_GPL drivers/power/supply/bq27xxx_battery 0x9d62521c bq27xxx_battery_update -EXPORT_SYMBOL_GPL drivers/power/supply/pcf50633-charger 0x9352b2eb pcf50633_mbc_get_status -EXPORT_SYMBOL_GPL drivers/power/supply/pcf50633-charger 0xa3caa7b7 pcf50633_mbc_usb_curlim_set -EXPORT_SYMBOL_GPL drivers/power/supply/pcf50633-charger 0xcb2d6c4c pcf50633_mbc_get_usb_online_status -EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0x05007946 ptp_qoriq_init -EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0x05e2b2ef ptp_qoriq_settime -EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0x2eae82b0 ptp_qoriq_isr -EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0x60c8c971 ptp_qoriq_gettime -EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0x635f53b2 ptp_qoriq_enable -EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0x820fdae3 ptp_qoriq_adjtime -EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0xb7e389eb extts_clean_up -EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0xed11d3cb ptp_qoriq_free -EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0xff958e12 ptp_qoriq_adjfine -EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x28a831f9 mc13xxx_get_num_regulators_dt -EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x556448e7 mc13xxx_regulator_ops -EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x7c58ae02 mc13xxx_fixed_regulator_set_voltage -EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0xb6042cf7 mc13xxx_parse_regulators_dt -EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0xf1e5f25c mc13xxx_fixed_regulator_ops -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x498eb78a wm8350_dcdc_set_slot -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x543cc39b wm8350_register_regulator -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x87183830 wm8350_dcdc25_set_mode -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xa5c2427c wm8350_register_led -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xe36bde0b wm8350_isink_set_flash -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xe4d574af wm8350_ldo_set_slot -EXPORT_SYMBOL_GPL drivers/regulator/wm8400-regulator 0xdf6693fe wm8400_register_regulator -EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp 0x223c9f57 scp_get_device -EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp 0x4f246e32 scp_get_vdec_hw_capa -EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp 0x56bb3931 scp_get -EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp 0x58310855 scp_get_venc_hw_capa -EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp 0x964422a1 scp_mapping_dm_addr -EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp 0xa414f573 scp_put -EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp 0xbff8c859 scp_get_rproc -EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp_ipi 0x09313652 scp_memcpy_aligned -EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp_ipi 0x387801fd scp_ipi_unregister -EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp_ipi 0x5750bce0 scp_ipi_register -EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp_ipi 0x5ba614ae scp_ipi_send -EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp_ipi 0x9fcb3f82 scp_ipi_unlock -EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp_ipi 0xeaa490c1 scp_ipi_lock -EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0x0fa538df qcom_register_ssr_notifier -EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0x3723a28c qcom_remove_smd_subdev -EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0x5beb7730 qcom_minidump -EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0xa8cf2b36 qcom_remove_ssr_subdev -EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0xafe95b63 qcom_add_smd_subdev -EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0xc07cca67 qcom_add_ssr_subdev -EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0xc6d05640 qcom_add_glink_subdev -EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0xd6cc0cc0 qcom_unregister_ssr_notifier -EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0xddcac546 qcom_remove_glink_subdev -EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0xf5d07362 qcom_register_dump_segments -EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_pil_info 0x30e58241 qcom_pil_info_store -EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_q6v5 0x063a5737 qcom_q6v5_prepare -EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_q6v5 0x13c21445 qcom_q6v5_request_stop -EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_q6v5 0x3b30b046 qcom_q6v5_unprepare -EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_q6v5 0x5051483b qcom_q6v5_init -EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_q6v5 0xd0413291 qcom_q6v5_panic -EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_q6v5 0xd3318bdd qcom_q6v5_wait_for_start -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 0xf7d267e8 qcom_add_sysmon_subdev -EXPORT_SYMBOL_GPL drivers/rpmsg/mtk_rpmsg 0x86903274 mtk_rpmsg_destroy_rproc_subdev -EXPORT_SYMBOL_GPL drivers/rpmsg/mtk_rpmsg 0xffeb3a82 mtk_rpmsg_create_rproc_subdev -EXPORT_SYMBOL_GPL drivers/rpmsg/qcom_glink 0x149236da qcom_glink_native_remove -EXPORT_SYMBOL_GPL drivers/rpmsg/qcom_glink 0x8b304d02 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 0x912e3526 qcom_glink_smem_register -EXPORT_SYMBOL_GPL drivers/rtc/rtc-ds1685 0xe464c02a ds1685_rtc_poweroff -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x06024806 cxgbi_device_find_by_netdev_rcu -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x0a65deab cxgbi_set_host_param -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x0baa9a52 cxgbi_sock_skb_entail -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x12480823 cxgbi_hbas_remove -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x1cce0292 cxgbi_device_register -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x214bfb11 cxgbi_sock_purge_wr_queue -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x2411eb0b cxgbi_device_find_by_lldev -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x2a631c1b cxgbi_get_ep_param -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x2fb65fb0 cxgbi_sock_rcv_peer_close -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x319f5609 cxgbi_create_session -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x33564f0e cxgbi_conn_xmit_pdu -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x43118a23 cxgbi_iscsi_cleanup -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x44da669c cxgbi_sock_check_wr_invariants -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x44e1d3d1 cxgbi_conn_tx_open -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x45e6d5ee cxgbi_sock_rcv_wr_ack -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x48284dba cxgbi_parse_pdu_itt -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x54668558 cxgbi_create_conn -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x5ba3fb6b cxgbi_get_conn_stats -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x5fd92f84 cxgbi_sock_free_cpl_skbs -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x62d64c1d cxgbi_sock_fail_act_open -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x6ddb1ca7 cxgbi_ep_poll -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x799ccde3 cxgbi_hbas_add -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7f8d21c7 cxgbi_sock_rcv_abort_rpl -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7fdb6004 cxgbi_device_unregister_all -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x874d1ba2 cxgbi_conn_pdu_ready -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x8be79eaa cxgbi_sock_closed -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x93e19047 cxgbi_device_portmap_cleanup -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x9665029e cxgbi_device_portmap_create -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x97d0703c cxgbi_sock_rcv_close_conn_rpl -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x9946c506 cxgbi_get_host_param -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x99bf9425 cxgbi_ddp_ppm_setup -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xa6ec8054 cxgbi_sock_select_mss -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xa8fb41c7 cxgbi_iscsi_init -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xab48c448 cxgbi_sock_act_open_req_arp_failure -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xbdf0d0b4 cxgbi_sock_established -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xc011af75 cxgbi_ddp_set_one_ppod -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xc3a0bec2 cxgbi_conn_init_pdu -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xc61a9b43 cxgbi_ep_disconnect -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xc885f64b cxgbi_device_unregister -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xdb304d67 cxgbi_destroy_session -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xdc0c67a5 cxgbi_set_conn_param -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xe6510b4a cxgbi_conn_alloc_pdu -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xe92393a2 cxgbi_ep_connect -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xe9492cc5 cxgbi_bind_conn -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xef346615 cxgbi_attr_is_visible -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xf9498482 cxgbi_cleanup_task -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xfe28ba77 cxgbi_device_find_by_netdev -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x06cc2c8d fcoe_start_io -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x06e2020a fcoe_ctlr_device_add -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x06f2aaa1 fcoe_fcf_device_delete -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x28793b0c fcoe_ctlr_get_lesb -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x2b7fb59a fcoe_get_lesb -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x2f0898de fcoe_get_wwn -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x2f251a18 __fcoe_get_lesb -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x2f8fdcd6 fcoe_fc_crc -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x48dccae8 fcoe_fcf_device_add -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x67a399d3 fcoe_validate_vport_create -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x79685422 fcoe_clean_pending_queue -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x83e12ee4 fcoe_get_paged_crc_eof -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x90dbc474 fcoe_link_speed_update -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xb123b0d6 fcoe_ctlr_device_delete -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xba800e29 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 0xf167cb7a fcoe_wwn_to_str -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xf50122d7 fcoe_check_wait_queue -EXPORT_SYMBOL_GPL drivers/scsi/fdomain 0x258d81ce fdomain_create -EXPORT_SYMBOL_GPL drivers/scsi/fdomain 0x99cb08c5 fdomain_destroy -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x0086400a hisi_sas_stop_phys -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x02370340 hisi_sas_controller_reset_prepare -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x0702f081 hisi_sas_probe -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x080f43b1 hisi_sas_scan_start -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x13e12a90 hisi_sas_notify_phy_event -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x205c793e hisi_sas_init_mem -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x286eabf0 hisi_sas_sync_irqs -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x2d4524b1 hisi_sas_phy_oob_ready -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x434d6147 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 0x54482c82 hisi_sas_debugfs_dir -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x7393e93f hisi_sas_release_tasks -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x7fe85924 hisi_sas_phy_enable -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x89d258ae hisi_sas_slot_task_free -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x8a435289 hisi_sas_get_fw_info -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x8bcf49f9 hisi_sas_free -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 0x9bff5c0e hisi_sas_scan_finished -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0xa3079d20 hisi_sas_slave_configure -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0xa8f8e5e9 hisi_sas_controller_reset_done -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0xb01d47e1 hisi_sas_sata_done -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0xb03aa9c5 hisi_sas_rst_work_handler -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0xc3a41131 hisi_sas_debugfs_dump_count -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0xc3e4b9cd hisi_sas_remove -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0xd383122b to_hisi_sas_port -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0xd61aaf3f hisi_sas_phy_down -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0xe127c8ed 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 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 0x2f186b51 iscsi_boot_create_kset -EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x39017111 iscsi_boot_create_acpitbl -EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x67853bce iscsi_boot_create_ethernet -EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x9526b8ad iscsi_boot_create_target -EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xb67047e4 iscsi_boot_destroy_kset -EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xc9408e84 iscsi_boot_create_initiator -EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xd4a606c2 iscsi_boot_create_host_kset -EXPORT_SYMBOL_GPL drivers/scsi/libfc/libfc 0x905b0a32 fc_seq_els_rsp_send -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x013f25cc iscsi_itt_to_ctask -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x10277c15 iscsi_eh_recover_target -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x12b2ad06 iscsi_switch_str_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x15286405 iscsi_eh_session_reset -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x169d3e7f iscsi_complete_scsi_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x1c08c724 iscsi_put_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x1c9a0519 iscsi_eh_device_reset -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x1d77f961 iscsi_conn_queue_xmit -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x1da03b75 iscsi_session_failure -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x253dce34 iscsi_host_free -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x2cece96e iscsi_suspend_rx -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x321cc82d iscsi_suspend_queue -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3bef2f73 iscsi_pool_init -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3ee4e2ad iscsi_conn_teardown -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x434f84ff iscsi_itt_to_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x43a3fd5d iscsi_complete_pdu -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x48c25b03 iscsi_host_add -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x4b0130d2 iscsi_host_remove -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x65e7d1d2 iscsi_conn_queue_recv -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x68e0c11c iscsi_session_get_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x69662e3f iscsi_requeue_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x6d1458be iscsi_conn_unbind -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x730c9ed3 iscsi_conn_setup -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8c37e041 iscsi_host_get_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8d303b1b iscsi_pool_free -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8f13fc31 iscsi_host_alloc -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x925a6db8 iscsi_host_set_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x933fad9b iscsi_conn_get_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x9d1469a5 iscsi_conn_bind -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa7277f3e iscsi_suspend_tx -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb14d6e56 __iscsi_complete_pdu -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb5284062 iscsi_host_get_max_scsi_cmds -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb95a5664 iscsi_session_free -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb9bd3f2d iscsi_session_remove -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xba05c5b7 iscsi_session_setup -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc3b365df iscsi_update_cmdsn -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc49b5ec3 iscsi_queuecommand -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xca31f374 iscsi_session_recovery_timedout -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xca5c9a2f iscsi_conn_start -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd1096089 __iscsi_get_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd1da8ff1 iscsi_eh_cmd_timed_out -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd2b829e5 iscsi_eh_abort -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xe5ab5689 iscsi_target_alloc -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xe7962a89 iscsi_conn_stop -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xe79a9961 iscsi_verify_itt -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xeab9cbd5 iscsi_conn_get_addr_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xed52b8e2 iscsi_session_teardown -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xefb31e55 iscsi_prep_data_out_pdu -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf94c75b1 iscsi_conn_send_pdu -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf9591f92 iscsi_set_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xfc909c4c __iscsi_put_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xfd7d6298 iscsi_conn_failure -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x00847e87 iscsi_tcp_cleanup_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x0e60437c iscsi_tcp_set_max_r2t -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x12f88438 iscsi_tcp_conn_teardown -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x1d9d371c iscsi_tcp_hdr_recv_prep -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x57a6f794 iscsi_tcp_recv_skb -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x6c444e17 iscsi_segment_seek_sg -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x77a94cea iscsi_tcp_segment_unmap -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x7a4cd4cc iscsi_tcp_segment_done -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x87f32862 iscsi_tcp_r2tpool_alloc -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xa56989ca iscsi_tcp_dgst_header -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xa7a0caa6 iscsi_tcp_task_xmit -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xb4d1e524 iscsi_tcp_recv_segment_is_hdr -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xb9d60de6 iscsi_segment_init_linear -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xca8a3441 iscsi_tcp_task_init -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xcfb65a97 iscsi_tcp_r2tpool_free -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xe6cfb2e4 iscsi_tcp_conn_get_stats -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xe9a4d186 iscsi_tcp_conn_setup -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x01a4ea01 dev_attr_phy_event_threshold -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x0f9c6e18 sas_notify_port_event -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x138b2628 sas_register_ha -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x17a508cf sas_ata_schedule_reset -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x2d44e12a sas_task_abort -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x31e4400a sas_request_addr -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x3273e098 sas_alloc_slow_task -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x382a5f5d sas_phy_reset -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x3c27a40a sas_get_local_phy -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x4909eced sas_queuecommand -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x549deaf9 sas_bios_param -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x6798e27b sas_slave_configure -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x8369c393 sas_domain_attach_transport -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x86bb5a40 sas_ssp_task_response -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x9c58b77c sas_drain_work -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xb2aee1d8 sas_target_alloc -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xc0db0bc6 sas_free_task -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xc3157112 sas_notify_phy_event -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xd2bcae9e sas_change_queue_depth -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xd7a987f0 sas_eh_abort_handler -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xdffac3bf sas_unregister_ha -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xe030e8c5 sas_target_destroy -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xe1acf2c4 sas_eh_target_reset_handler -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xec3a350c sas_eh_device_reset_handler -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xf2c7106f sas_alloc_task -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xf754cfe7 sas_ioctl -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xfa0196d7 sas_slave_alloc -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_fc 0x02ec18ac fc_eh_should_retry_cmd -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x03b2c545 iscsi_destroy_iface -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x05b78754 iscsi_post_host_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x0736dd10 __tracepoint_iscsi_dbg_eh -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x080452ca iscsi_put_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x18a915c5 iscsi_create_flashnode_sess -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x1a127e01 iscsi_find_flashnode_sess -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x1caf3426 iscsi_register_transport -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x278cbd3f iscsi_create_flashnode_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x2a31d909 iscsi_destroy_all_flashnode -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x2c8f96b2 iscsi_block_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x35ad102e iscsi_lookup_endpoint -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x3785e561 __tracepoint_iscsi_dbg_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x492121b9 iscsi_offload_mesg -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x4d42edf9 iscsi_add_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x53d33ab2 iscsi_remove_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 0x5c70486f iscsi_get_port_state_name -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x5dea0bb0 iscsi_force_destroy_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x606a8b9a __traceiter_iscsi_dbg_eh -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x60af5f85 iscsi_host_for_each_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x610d2f33 iscsi_recv_pdu -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x61f7fe22 iscsi_destroy_flashnode_sess -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x6259a487 iscsi_put_endpoint -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x699fe53e iscsi_get_discovery_parent_name -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x69bb1915 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 0x77a01b0e __traceiter_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 0x8c5d8639 iscsi_free_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x92a45fc6 iscsi_destroy_endpoint -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x988d2b4d iscsi_flashnode_bus_match -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x9b6bd567 iscsi_dbg_trace -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x9e0ded3e iscsi_session_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa062a776 iscsi_find_flashnode_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa09a0458 iscsi_unregister_transport -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa10c8321 iscsi_is_session_online -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa346d7b7 iscsi_session_chkready -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa4fafb18 __traceiter_iscsi_dbg_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa7343de4 iscsi_block_scsi_eh -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa95fe83a iscsi_is_session_dev -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xaa25c363 iscsi_unblock_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xaa976bb3 __tracepoint_iscsi_dbg_tcp -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xab4674c8 __SCK__tp_func_iscsi_dbg_sw_tcp -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xac963058 iscsi_get_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb41f8004 iscsi_create_iface -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb54fef3a iscsi_conn_login_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb5b5e160 iscsi_create_endpoint -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb734cbef __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 0xc6850200 iscsi_ping_comp_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xcab49ade iscsi_create_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd1de0af5 iscsi_conn_error_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd4e55f1e __tracepoint_iscsi_dbg_sw_tcp -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd911da65 iscsi_destroy_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xde76c34c iscsi_get_port_speed_name -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe4c79fa6 __SCK__tp_func_iscsi_dbg_eh -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xeb07c4f1 iscsi_scan_finished -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xecde64fe iscsi_create_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf874c83c __traceiter_iscsi_dbg_tcp -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x38805ef2 sas_disable_tlr -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x642ff97c sas_tlr_supported -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x9016fb42 sas_is_tlr_enabled -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0xcb42382a sas_enable_tlr -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0x0ef06974 spi_populate_ppr_msg -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0xa0c71dac spi_populate_sync_msg -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0xb8deab51 spi_populate_tag_msg -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0xcffa2aff spi_populate_width_msg -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x1902178a srp_tmo_valid -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x26afca1c srp_remove_host -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x2c07080d srp_rport_add -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x6c955dee srp_rport_del -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x9bf8455d srp_stop_rport_timers -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xb864a48d srp_release_transport -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xd89df930 srp_attach_transport -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x0528d122 ufshcd_hold -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x166ac912 ufshcd_uic_hibern8_exit -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x2511a4c5 ufshcd_hba_enable -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x374d72f2 ufshcd_hba_stop -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x388ac5e4 ufshcd_dme_get_attr -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x54b50d36 ufshcd_dump_regs -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x603911d3 ufshcd_make_hba_operational -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x66c60860 ufshcd_fixup_dev_quirks -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x6c668c84 ufshcd_config_pwr_mode -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x723b1abf ufshcd_delay_us -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x74a143b0 ufshcd_suspend_prepare -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x8db0c1b4 ufshcd_link_recovery -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x902e9484 ufshcd_resume_complete -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0x91faa15a ufshcd_dealloc_host -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0xa46a1d89 ufshcd_dme_configure_adapt -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0xabe36a34 ufshcd_release -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0xb214cf7a ufshcd_auto_hibern8_update -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0xce892215 ufshcd_update_evt_hist -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0xd1f50792 ufshcd_dme_set_attr -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0xd6417d4e ufshcd_remove -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-core 0xe791933d ufshcd_init -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x142d2aaa ufshcd_pltfrm_init -EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x33b0b31e 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 0x3a1c3dc0 siox_master_alloc -EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x8e1dcfbe siox_device_synced -EXPORT_SYMBOL_GPL drivers/siox/siox-core 0xaddc6024 siox_master_unregister -EXPORT_SYMBOL_GPL drivers/siox/siox-core 0xbc03e673 siox_master_register -EXPORT_SYMBOL_GPL drivers/siox/siox-core 0xef81efcd __siox_driver_register -EXPORT_SYMBOL_GPL drivers/siox/siox-core 0xf187a174 siox_device_connected -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x108bfac3 slim_driver_unregister -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x230e2124 slim_stream_enable -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x24507011 slim_get_device -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x2bdf96af slim_writeb -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x2f354263 slim_stream_free -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x30af15db slim_readb -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x38e895aa slim_register_controller -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x3c6bce2e slim_unregister_controller -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x4f764882 slim_alloc_txn_tid -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x668f2e33 slim_free_txn_tid -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x6be3823a slim_report_absent -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x7e1f0aa2 slim_write -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x7ee33da2 slim_do_transfer -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x7eefb257 slim_ctrl_clk_pause -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x84064a5e __slim_driver_register -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x857ba3b4 slim_stream_allocate -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x8bf295e3 of_slim_get_device -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x8c2b98ca slim_read -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x90a8cd70 slim_msg_response -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x9cd5ab6c slim_stream_unprepare -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xa312440d slim_stream_disable -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xbfccc0ca slim_device_report_present -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xe0fb30ba slimbus_bus -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xee5648a9 slim_get_logical_addr -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xfb687d68 slim_xfer_msg -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xfc2e5071 slim_stream_prepare -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 0xd96bb95e 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 0x3ffbdfb7 dpaa2_io_service_register -EXPORT_SYMBOL_GPL drivers/soc/fsl/dpio/fsl-mc-dpio 0x4994345c dpaa2_io_store_destroy -EXPORT_SYMBOL_GPL drivers/soc/fsl/dpio/fsl-mc-dpio 0x628dcd33 dpaa2_io_service_deregister -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 0x7dbc8722 dpaa2_io_store_create -EXPORT_SYMBOL_GPL drivers/soc/fsl/dpio/fsl-mc-dpio 0x8edafa55 dpaa2_io_query_bp_count -EXPORT_SYMBOL_GPL drivers/soc/fsl/dpio/fsl-mc-dpio 0xb9e81961 dpaa2_io_query_fq_count -EXPORT_SYMBOL_GPL drivers/soc/qcom/apr 0x186d27ee aprbus -EXPORT_SYMBOL_GPL drivers/soc/qcom/apr 0x2f0eab6c apr_send_pkt -EXPORT_SYMBOL_GPL drivers/soc/qcom/apr 0x581769a5 __apr_driver_register -EXPORT_SYMBOL_GPL drivers/soc/qcom/apr 0x8d3085cb apr_driver_unregister -EXPORT_SYMBOL_GPL drivers/soc/qcom/llcc-qcom 0x03c9a66d llcc_get_slice_size -EXPORT_SYMBOL_GPL drivers/soc/qcom/llcc-qcom 0x0679b34d llcc_slice_getd -EXPORT_SYMBOL_GPL drivers/soc/qcom/llcc-qcom 0x7e773088 llcc_get_slice_id -EXPORT_SYMBOL_GPL drivers/soc/qcom/llcc-qcom 0xad3516c4 llcc_slice_activate -EXPORT_SYMBOL_GPL drivers/soc/qcom/llcc-qcom 0xb534ec76 llcc_slice_deactivate -EXPORT_SYMBOL_GPL drivers/soc/qcom/llcc-qcom 0xb68b1300 llcc_slice_putd -EXPORT_SYMBOL_GPL drivers/soc/qcom/mdt_loader 0x6bcea8d1 qcom_mdt_load_no_init -EXPORT_SYMBOL_GPL drivers/soc/qcom/mdt_loader 0xa1c6a5b9 qcom_mdt_read_metadata -EXPORT_SYMBOL_GPL drivers/soc/qcom/mdt_loader 0xbfa84b15 qcom_mdt_load -EXPORT_SYMBOL_GPL drivers/soc/qcom/mdt_loader 0xe8a3861c qcom_mdt_get_size -EXPORT_SYMBOL_GPL drivers/soundwire/soundwire-bus 0x52ad4f72 __sdw_register_driver -EXPORT_SYMBOL_GPL drivers/soundwire/soundwire-bus 0x86c3b124 sdw_unregister_driver -EXPORT_SYMBOL_GPL drivers/soundwire/soundwire-bus 0xff8a693c sdw_bus_type -EXPORT_SYMBOL_GPL drivers/soundwire/soundwire-cadence 0x668f9385 sdw_cdns_debugfs_init -EXPORT_SYMBOL_GPL drivers/spi/spi-altera-core 0xb9edd149 altera_spi_irq -EXPORT_SYMBOL_GPL drivers/spi/spi-altera-core 0xdec10342 altera_spi_init_master -EXPORT_SYMBOL_GPL drivers/spi/spi-bcm-qspi 0x0cca5a08 bcm_qspi_remove -EXPORT_SYMBOL_GPL drivers/spi/spi-bcm-qspi 0x8eb344f7 bcm_qspi_pm_ops -EXPORT_SYMBOL_GPL drivers/spi/spi-bcm-qspi 0x94798ce3 bcm_qspi_probe -EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x16a46854 spi_bitbang_setup -EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x74e45054 spi_bitbang_cleanup -EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x751e6c45 spi_bitbang_stop -EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x75c6dc83 spi_bitbang_start -EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x7e9fd4d1 spi_bitbang_setup_transfer -EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xb1fd821e spi_bitbang_init -EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x0aee0ea1 dw_spi_update_config -EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x2b9c3c9d dw_spi_add_host -EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x37ea5879 dw_spi_remove_host -EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x44ba5226 dw_spi_suspend_host -EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x5aace1d3 dw_spi_set_cs -EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0xa3edce2d dw_spi_check_status -EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0xa6f6d6b5 dw_spi_resume_host -EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0xcc2b06b6 dw_spi_dma_setup_generic -EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0xf3b2ec82 dw_spi_dma_setup_mfld -EXPORT_SYMBOL_GPL drivers/spi/spi-loopback-test 0x3fcc5ccf spi_test_run_tests -EXPORT_SYMBOL_GPL drivers/spi/spi-loopback-test 0xa0669d63 spi_test_execute_msg -EXPORT_SYMBOL_GPL drivers/spi/spi-loopback-test 0xe9432f1b spi_test_run_test -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x09e5f00d spmi_command_wakeup -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x0c2753b5 spmi_command_shutdown -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x1f241143 __spmi_driver_register -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x2da1dbe1 spmi_command_sleep -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x30a67d64 spmi_register_zero_write -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x32064beb spmi_ext_register_writel -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x33a85c09 spmi_device_remove -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x34ab91d4 spmi_controller_add -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x8741adb5 spmi_device_alloc -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x89276d0c spmi_ext_register_read -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x928a90aa spmi_command_reset -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xb7112e8d spmi_controller_remove -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xc58ccbb5 spmi_ext_register_readl -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xce187cfe spmi_ext_register_write -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xdc6fe6b5 spmi_device_add -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xe87f888a spmi_controller_alloc -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xf0f908b6 spmi_register_write -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xfd70288b spmi_register_read -EXPORT_SYMBOL_GPL drivers/ssb/ssb 0x7677b393 ssb_pmu_spuravoid_pllupdate -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x00b072b3 anybuss_set_power -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x1e46f85e anybuss_client_driver_register -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x3e68a276 anybuss_write_input -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x58b584f4 anybuss_send_ext -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x58eedc8e anybuss_client_driver_unregister -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x872fc0b7 anybuss_finish_init -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x8d740043 anybuss_read_fbctrl -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x92faec96 anybuss_host_common_probe -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0xa28f6275 devm_anybuss_host_common_probe -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0xb47ab7d6 anybuss_read_output -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0xee3f55ee anybuss_recv_msg -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0xeef73af3 anybuss_start_init -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0xf3e5a902 anybuss_send_msg -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0xfce879ad anybuss_host_common_remove -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0x5a97e2d1 fieldbus_dev_area_updated -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0x8234c632 fieldbus_dev_online_changed -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0xcbabebeb fieldbus_dev_unregister -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0xdec31584 fieldbus_dev_register -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x02fa424d gb_audio_apbridgea_set_rx_data_size -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x4d8d2582 gb_audio_apbridgea_set_tx_data_size -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x86bb7de7 gb_audio_apbridgea_shutdown_tx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x8a34a395 gb_audio_apbridgea_register_cport -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x8bb018d6 gb_audio_apbridgea_stop_tx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xabf33960 gb_audio_apbridgea_prepare_tx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xbabc9173 gb_audio_apbridgea_start_tx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xc0aa8f68 gb_audio_apbridgea_stop_rx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xcda1ea59 gb_audio_apbridgea_shutdown_rx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xdc6c0403 gb_audio_apbridgea_start_rx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xe0e9aede gb_audio_apbridgea_prepare_rx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xeaa2ad2e gb_audio_apbridgea_set_config -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xf136e260 gb_audio_apbridgea_unregister_cport -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x1ae52d9f gb_audio_gb_set_control -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x2e1a4d9c gb_audio_gb_disable_widget -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x4192957a gb_audio_gb_get_pcm -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x54ebdf48 gb_audio_gb_enable_widget -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x6e7c6b82 gb_audio_gb_set_rx_data_size -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x8140b8ae gb_audio_gb_activate_tx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x91aea2d7 gb_audio_gb_deactivate_rx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xa9aab961 gb_audio_gb_get_control -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xc34bf53c gb_audio_gb_activate_rx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xc6f7588f gb_audio_gb_get_topology -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xd3a5ef45 gb_audio_gb_deactivate_tx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xf29d4841 gb_audio_gb_set_pcm -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xf71a8bf7 gb_audio_gb_set_tx_data_size -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-manager 0x19e9e6b1 gb_audio_manager_remove_all -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-manager 0x32e6391e gb_audio_manager_remove -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-manager 0x5a108b0f gb_audio_manager_add -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-manager 0x5ce36d6b 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-audio-manager 0xd36995d2 gb_audio_manager_get_module -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-gbphy 0xb066af01 gb_gbphy_deregister_driver -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-gbphy 0xdde8d223 gb_gbphy_register_driver -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-spilib 0xd50f14d9 gb_spilib_master_exit -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-spilib 0xda348b38 gb_spilib_master_init -EXPORT_SYMBOL_GPL drivers/staging/iio/addac/adt7316 0x97286c89 adt7316_pm_ops -EXPORT_SYMBOL_GPL drivers/staging/media/av7110/sp8870 0x31b5a222 sp8870_attach -EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x192c6b08 imx_media_capture_device_init -EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x253cb07f imx_media_capture_device_remove -EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x2c49bbd5 imx_media_add_video_device -EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x3795c4fb imx_media_pipeline_set_stream -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 0x57c9ae49 imx_media_capture_device_next_buf -EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x5c47aece imx_media_find_subdev_by_fwnode -EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x61fc6818 imx_media_pipeline_csi2_channel -EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x7470ffce imx_media_init_cfg -EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x76c1750a imx_media_pipeline_subdev -EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x7af50a07 imx_media_capture_device_unregister -EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x875121d9 imx_media_get_pad_fwnode -EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x87b20496 imx_media_dev_init -EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x9861b889 imx_media_capture_device_register -EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x9a8e14a7 imx_media_add_of_subdevs -EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x9e38cf0d imx_media_probe_complete -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 0xaa754483 imx_media_alloc_dma_buf -EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0xb22e95a4 imx_media_dev_notifier_register -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 0xc037f74f imx_media_pipeline_video_device -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 0xd351c9fb imx_media_capture_device_error -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 0xd8fc8207 imx_media_find_subdev_by_devname -EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0xe932b00b imx_media_enum_pixel_formats -EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0xf32d805c imx_media_pipeline_pad -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 0xf6c286f2 imx_media_free_dma_buf -EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0xff2e25fc imx_media_of_add_csi -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x014d7c86 codec_hevc_setup_buffers -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x0967c374 codec_hevc_setup_decode_head -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 0x1cb1e6d9 amvdec_am21c_size -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x2016ed3c amvdec_dst_buf_done_offset -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x39c9bceb amvdec_write_parser -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x48d16d70 amvdec_set_par_from_dar -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x5d44c30c amvdec_set_canvases -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 0x6a3fe57d amvdec_abort -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x89657ed6 amvdec_dst_buf_done_idx -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x89c81342 amvdec_write_dos_bits -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x9037b1f0 codec_hevc_free_mmu_headers -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x9461e5a5 amvdec_remove_ts -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xa9059b84 amvdec_dst_buf_done -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xbac9f3d7 amvdec_add_ts -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xbdfb739d amvdec_write_dos -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xc767203f amvdec_clear_dos_bits -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xd0551314 codec_hevc_fill_mmu_map -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xe9c531ff amvdec_read_parser -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xec65fb0a amvdec_get_output_size -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xf327d0bf codec_hevc_free_fbc_buffers -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xf8a5ebec amvdec_src_change -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xfcc230b6 amvdec_read_dos -EXPORT_SYMBOL_GPL drivers/staging/nvec/nvec 0x1a2920a6 nvec_register_notifier -EXPORT_SYMBOL_GPL drivers/staging/nvec/nvec 0xb250e760 nvec_msg_free -EXPORT_SYMBOL_GPL drivers/staging/nvec/nvec 0xe7fdd25d nvec_unregister_notifier -EXPORT_SYMBOL_GPL drivers/staging/vc04_services/vchiq-mmal/bcm2835-mmal-vchiq 0x0b61eed9 vchiq_mmal_port_parameter_set -EXPORT_SYMBOL_GPL drivers/staging/vc04_services/vchiq-mmal/bcm2835-mmal-vchiq 0x19d7b04a vchiq_mmal_port_connect_tunnel -EXPORT_SYMBOL_GPL drivers/staging/vc04_services/vchiq-mmal/bcm2835-mmal-vchiq 0x1a0e401a vchiq_mmal_port_set_format -EXPORT_SYMBOL_GPL drivers/staging/vc04_services/vchiq-mmal/bcm2835-mmal-vchiq 0x2589822e vchiq_mmal_port_disable -EXPORT_SYMBOL_GPL drivers/staging/vc04_services/vchiq-mmal/bcm2835-mmal-vchiq 0x32024bf9 vchiq_mmal_submit_buffer -EXPORT_SYMBOL_GPL drivers/staging/vc04_services/vchiq-mmal/bcm2835-mmal-vchiq 0x3ad19d3c vchiq_mmal_port_parameter_get -EXPORT_SYMBOL_GPL drivers/staging/vc04_services/vchiq-mmal/bcm2835-mmal-vchiq 0x5640e2fe vchiq_mmal_port_enable -EXPORT_SYMBOL_GPL drivers/staging/vc04_services/vchiq-mmal/bcm2835-mmal-vchiq 0x6192e1a2 vchiq_mmal_version -EXPORT_SYMBOL_GPL drivers/staging/vc04_services/vchiq-mmal/bcm2835-mmal-vchiq 0x73577d20 vchiq_mmal_finalise -EXPORT_SYMBOL_GPL drivers/staging/vc04_services/vchiq-mmal/bcm2835-mmal-vchiq 0x7f4b9b92 vchiq_mmal_component_disable -EXPORT_SYMBOL_GPL drivers/staging/vc04_services/vchiq-mmal/bcm2835-mmal-vchiq 0x8ac49272 vchiq_mmal_component_enable -EXPORT_SYMBOL_GPL drivers/staging/vc04_services/vchiq-mmal/bcm2835-mmal-vchiq 0x9fd82af6 vchiq_mmal_component_finalise -EXPORT_SYMBOL_GPL drivers/staging/vc04_services/vchiq-mmal/bcm2835-mmal-vchiq 0xa871b84a mmal_vchi_buffer_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 0xadd89777 mmal_vchi_buffer_cleanup -EXPORT_SYMBOL_GPL drivers/staging/vc04_services/vchiq-mmal/bcm2835-mmal-vchiq 0xd0a44af2 vchiq_mmal_component_init -EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0x4991e468 target_submit_prep -EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0x579f8376 target_submit -EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0x5ebfc4be target_init_cmd -EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0xc3f63736 target_queue_submission -EXPORT_SYMBOL_GPL drivers/tee/tee 0x065778ac tee_shm_pool_mgr_alloc_res_mem -EXPORT_SYMBOL_GPL drivers/tee/tee 0x0f74a6f4 tee_client_get_version -EXPORT_SYMBOL_GPL drivers/tee/tee 0x10844bc5 teedev_close_context -EXPORT_SYMBOL_GPL drivers/tee/tee 0x14785adf tee_shm_alloc -EXPORT_SYMBOL_GPL drivers/tee/tee 0x1b543f8c tee_shm_register -EXPORT_SYMBOL_GPL drivers/tee/tee 0x365f3183 tee_shm_pa2va -EXPORT_SYMBOL_GPL drivers/tee/tee 0x43f5e3a8 tee_bus_type -EXPORT_SYMBOL_GPL drivers/tee/tee 0x5061ec06 tee_shm_get_va -EXPORT_SYMBOL_GPL drivers/tee/tee 0x58f9775d tee_get_drvdata -EXPORT_SYMBOL_GPL drivers/tee/tee 0x5cce5f09 tee_client_close_session -EXPORT_SYMBOL_GPL drivers/tee/tee 0x61f26793 tee_client_open_context -EXPORT_SYMBOL_GPL drivers/tee/tee 0x68af0c32 tee_shm_pool_free -EXPORT_SYMBOL_GPL drivers/tee/tee 0x699987e8 tee_shm_alloc_kernel_buf -EXPORT_SYMBOL_GPL drivers/tee/tee 0x82f1b71b tee_shm_va2pa -EXPORT_SYMBOL_GPL drivers/tee/tee 0x85fd9922 tee_session_calc_client_uuid -EXPORT_SYMBOL_GPL drivers/tee/tee 0xa2fd9f0c tee_shm_pool_alloc_res_mem -EXPORT_SYMBOL_GPL drivers/tee/tee 0xa9ec34ac tee_shm_get_pa -EXPORT_SYMBOL_GPL drivers/tee/tee 0xaeaf7945 tee_shm_put -EXPORT_SYMBOL_GPL drivers/tee/tee 0xbda5de23 tee_client_invoke_func -EXPORT_SYMBOL_GPL drivers/tee/tee 0xcf800949 tee_device_alloc -EXPORT_SYMBOL_GPL drivers/tee/tee 0xdc6c8da2 tee_device_register -EXPORT_SYMBOL_GPL drivers/tee/tee 0xea72736b teedev_open -EXPORT_SYMBOL_GPL drivers/tee/tee 0xef34a326 tee_shm_get_from_id -EXPORT_SYMBOL_GPL drivers/tee/tee 0xf3c72b6d tee_client_close_context -EXPORT_SYMBOL_GPL drivers/tee/tee 0xf3e747b0 tee_shm_free -EXPORT_SYMBOL_GPL drivers/tee/tee 0xf9bcf1a1 tee_client_open_session -EXPORT_SYMBOL_GPL drivers/tee/tee 0xfd083331 tee_device_unregister -EXPORT_SYMBOL_GPL drivers/tee/tee 0xfd1f2d1d tee_shm_pool_alloc -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x01d23ee1 tb_property_create_dir -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x02a7854c tb_xdomain_alloc_in_hopid -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x1022ccb4 tb_ring_start -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x2532b91d tb_xdomain_response -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x2a8517fc tb_xdomain_lane_bonding_disable -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x2c020292 tb_ring_alloc_tx -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x2f7756d8 tb_xdomain_find_by_uuid -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x34bc44cd tb_xdomain_request -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x3545f1c9 tb_xdomain_release_out_hopid -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x393b4f2f tb_property_free_dir -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x3a87ca76 tb_unregister_service_driver -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x4e5064a7 tb_property_find -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x4e64bdfd tb_register_protocol_handler -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x603249ed tb_unregister_property_dir -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x63f05e17 tb_ring_poll -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x658e3d97 tb_property_add_immediate -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x677ed5f6 tb_service_type -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x73ad2acb tb_property_get_next -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x77f73c28 tb_xdomain_lane_bonding_enable -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x77f766be tb_xdomain_find_by_route -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x785eb82c tb_property_remove -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x89213fc3 tb_xdomain_type -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x8b62f95e tb_property_add_dir -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x96b78d87 tb_ring_stop -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xa3d2b403 tb_property_add_data -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xae519cb9 tb_xdomain_release_in_hopid -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xb50d1ccc __tb_ring_enqueue -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xb6908653 tb_xdomain_disable_paths -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xb7c7cdce tb_property_add_text -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xcd1217f2 tb_ring_poll_complete -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xd423867e tb_xdomain_enable_paths -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xd6e5c73e tb_ring_free -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xde84649d tb_register_service_driver -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xded5a86a tb_ring_alloc_rx -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 0xf83e0143 tb_xdomain_alloc_out_hopid -EXPORT_SYMBOL_GPL drivers/uio/uio 0x2e745b16 __devm_uio_register_device -EXPORT_SYMBOL_GPL drivers/uio/uio 0x38e31dd8 uio_unregister_device -EXPORT_SYMBOL_GPL drivers/uio/uio 0xa22d7eb1 __uio_register_device -EXPORT_SYMBOL_GPL drivers/uio/uio 0xd2c122c6 uio_event_notify -EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0x4ed4f2ba usbatm_usb_disconnect -EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0xa12cc94b usbatm_usb_probe -EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x1d5608ce cdns_init -EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x1e212783 cdns_suspend -EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x2d7a8c23 cdns_resume -EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x8b510e6e cdns_clear_vbus -EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x952f05c3 cdns_set_active -EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x9a461c4b cdns_drd_gadget_on -EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0xb13dc63c cdns_remove -EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0xbbb05bd8 cdns_power_is_lost -EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0xce60f226 cdns_drd_gadget_off -EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0xe1f54d3e cdns_set_vbus -EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0x5f1681ff ci_hdrc_add_device -EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0x7f0b4687 ci_hdrc_query_available_role -EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0x9dca71d1 hw_phymode_configure -EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0xe9cc6c74 ci_hdrc_remove_device -EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0x224675e6 imx_usbmisc_init -EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0x50857734 imx_usbmisc_hsic_set_clk -EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0x8619ef59 imx_usbmisc_set_wakeup -EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0x91479caa imx_usbmisc_init_post -EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0xb4aad2ce imx_usbmisc_hsic_set_connect -EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0xc49856f6 imx_usbmisc_charger_detection -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x13f6aafc ulpi_register_interface -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x5273ef28 ulpi_unregister_interface -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x53163f87 ulpi_unregister_driver -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x65ab26da __ulpi_register_driver -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x672e2854 ulpi_write -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x81a84081 ulpi_read -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x01c29aa2 g_audio_cleanup -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x284b7da2 u_audio_start_capture -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x4ba1bb9b g_audio_setup -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x51566427 u_audio_stop_capture -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x7ef33b88 u_audio_set_volume -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x7fa9d5bd u_audio_start_playback -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0xe202bf0b u_audio_stop_playback -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0xf09acc6b u_audio_get_mute -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0xf1f03ae5 u_audio_get_volume -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0xfc985456 u_audio_set_mute -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x27c9bb4b gether_set_qmult -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x2a75c677 gether_set_host_addr -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x3229b569 gether_get_host_addr_cdc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x56144ace gether_setup_name_default -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x62bc2bf9 gether_set_gadget -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x74a44750 gether_register_netdev -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x75aa4c58 gether_get_host_addr_u8 -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x7e21b2d9 gether_setup_name -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x7e80b2fd 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 0xa1429c1a gether_disconnect -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xaafe18cd gether_get_ifname -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xab4f0c14 gether_connect -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xab856ee1 gether_get_qmult -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xb206dac6 gether_get_host_addr -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xe6667e7c gether_get_dev_addr -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xe87763bb gether_set_ifname -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x33bfdca2 gserial_alloc_line -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x4a3df9d0 gs_alloc_req -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x56be2de0 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 0x7ea6bb83 gserial_connect -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x80676fd9 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/u_serial 0xff56eb3d gserial_suspend -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0x123d8158 ffs_name_dev -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0x57cc210e ffs_lock -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0xe4dc9b31 ffs_single_dev -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x073750c1 fsg_store_inquiry_string -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x0be2b3bb fsg_store_file -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x141fce2a fsg_common_remove_luns -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 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 0x32e1e511 fsg_show_cdrom -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x354db85a 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 0x4dc5f237 fsg_show_inquiry_string -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x5241ea5b fsg_lun_close -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x53a4a432 fsg_store_cdrom -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x551e0cfe 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 0x611b1bf5 fsg_show_removable -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x645cdd60 fsg_store_ro -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x68d9141f fsg_lun_fsync_sub -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x6acb4179 fsg_common_set_inquiry_string -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x7e26d4a5 fsg_common_set_sysfs -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x7ee6ff24 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 0x85dc8e2b fsg_lun_open -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x912a61f4 fsg_common_remove_lun -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x95cffb3e fsg_hs_bulk_in_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x9616e708 fsg_store_nofua -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 0xaf49f5f2 fsg_common_set_cdev -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xb3adf38d store_cdrom_address -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xb52ba28a fsg_intf_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xb54d0d95 fsg_fs_bulk_in_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 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 0xff1d2c43 fsg_show_nofua -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x063abd4b rndis_signal_connect -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x3386de7d rndis_add_hdr -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x438f95ff rndis_deregister -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x4dc48cc3 rndis_get_next_response -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x595c9b85 rndis_set_param_dev -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x5d1a9899 rndis_set_host_mac -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x7917f3a8 rndis_set_param_vendor -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xadd432a6 rndis_signal_disconnect -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xc119e533 rndis_set_param_medium -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xc677e6a3 rndis_rm_hdr -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xc753f199 rndis_uninit -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xd61e2748 rndis_register -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xdd5965bf rndis_free_response -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xe33a63c7 rndis_borrow_net -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xe5c7cd49 rndis_msg_parser -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x06e67b7b usb_composite_unregister -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x0757af3c usb_otg_descriptor_alloc -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 0x0f4bc092 config_ep_by_speed -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x19c2691e unregister_gadget_item -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x211a4b09 usb_put_function_instance -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x2784eec3 usb_add_function -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x29ce83ff usb_string_ids_n -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x2e09263f usb_copy_descriptors -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x3194ea2c usb_ep_autoconfig_ss -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x32088ea6 usb_get_function -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x341b04bc usb_function_deactivate -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x347962a2 usb_function_register -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x488f4523 usb_function_activate -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x4beb505d usb_gadget_get_string -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x4cb7fbf1 usb_add_config -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x4d04a16c usb_composite_setup_continue -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x5c44c409 usb_gstrings_attach -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x5f18fe26 usb_free_all_descriptors -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x7e1a27fa usb_ep_autoconfig_reset -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x80b978d7 usb_otg_descriptor_init -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x8a6253b5 usb_add_config_only -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x97177ea6 usb_put_function -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x9c843d5a usb_function_unregister -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xae871fcd config_ep_by_speed_and_alt -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xb775db55 alloc_ep_req -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xb9fd0b8a usb_get_function_instance -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xbda62468 usb_ep_autoconfig -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xd2014413 usb_string_ids_tab -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xd2ea2134 usb_descriptor_fillbuf -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xe8a506c5 usb_assign_descriptors -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xf26c53a0 usb_remove_function -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xf474a207 usb_gadget_config_buf -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xf5665692 usb_composite_probe -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xf8df9fa1 usb_string_id -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xfc13fe67 usb_interface_id -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xff6025fe usb_composite_overwrite_options -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x5d01d078 udc_irq -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x94105bb9 gadget_release -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x959c9c70 free_dma_pools -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x9f34de56 udc_probe -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0xaaa725c2 empty_req_queue -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0xb40c4f97 udc_mask_unused_interrupts -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0xc6d597e8 udc_enable_dev_setup_interrupts -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0xe3156dde udc_remove -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0xe7c5bd3e init_dma_pools -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0xf2ddc0ed udc_basic_init -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x01b12bfb usb_ep_free_request -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x01e5aa58 usb_add_gadget_udc -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x0337bf08 usb_gadget_disconnect -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 0x1696590e usb_del_gadget -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x23c26802 usb_del_gadget_udc -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x2a9d558a usb_add_gadget -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x49d9f030 usb_ep_fifo_status -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x4f6da1f1 usb_gadget_vbus_connect -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 0x5888ef89 usb_gadget_ep_match_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x5dc3b3a0 usb_gadget_udc_reset -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x5fc294ef usb_ep_clear_halt -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x60f78644 usb_gadget_check_config -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x7020e082 usb_gadget_vbus_disconnect -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 0x8782e8f5 usb_gadget_frame_number -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x882077d5 usb_ep_dequeue -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x8b10e687 usb_udc_vbus_handler -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x8df47021 usb_gadget_map_request -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x95508970 usb_gadget_set_remote_wakeup -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 0xaf201fa6 usb_ep_enable -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xb1be993c usb_gadget_set_selfpowered -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xbadca298 usb_gadget_unmap_request -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xbef2ebd6 usb_gadget_unmap_request_by_dev -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xc09e0cd8 usb_initialize_gadget -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xceeec922 usb_gadget_map_request_by_dev -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xd1be344b usb_gadget_clear_selfpowered -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xd4c8ac4c usb_gadget_wakeup -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xdab21912 gadget_find_ep_by_name -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xe29836d7 usb_add_gadget_udc_release -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xea663057 usb_gadget_probe_driver -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xeda40cad usb_gadget_deactivate -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xedc60fd0 usb_gadget_unregister_driver -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xf349d609 usb_gadget_activate -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xf3ada4f1 usb_gadget_set_state -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xf7de8fc9 usb_gadget_connect -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xf99f0f55 usb_gadget_vbus_draw -EXPORT_SYMBOL_GPL drivers/usb/host/xhci-pci-renesas 0xec39b697 renesas_xhci_check_request_fw -EXPORT_SYMBOL_GPL drivers/usb/misc/ezusb 0x61950809 ezusb_fx1_set_reset -EXPORT_SYMBOL_GPL drivers/usb/misc/ezusb 0xc0299c27 ezusb_fx1_ihex_firmware_download -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x2314a797 usb_ftdi_elan_edset_flush -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x2ced47fd usb_ftdi_elan_edset_output -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x39f8e119 usb_ftdi_elan_read_pcimem -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x4abfd1d8 usb_ftdi_elan_edset_empty -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x4e647986 ftdi_elan_gone_away -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x73576305 usb_ftdi_elan_edset_setup -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x8d08511e usb_ftdi_elan_edset_single -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x972ec463 usb_ftdi_elan_edset_input -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xe9203b72 usb_ftdi_elan_write_pcimem -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x09492220 musb_mailbox -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x0b4a8834 musb_writeb -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x2734197f musb_readb -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x47a9d5cd musb_set_host -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x5ba1efed musb_queue_resume_work -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x669594ad musb_clearw -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x6999854a musb_set_peripheral -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x6af5894c musb_interrupt -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 0x9cec38a4 musb_get_mode -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0xade3e56c musb_writew -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0xdf4d8c38 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 0x62933363 usb_phy_gen_create_phy -EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0x6e397832 usb_gen_phy_init -EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0x87ba4be4 usb_gen_phy_shutdown -EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0x98b9619f usb_phy_generic_unregister -EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0xed17429a usb_phy_generic_register -EXPORT_SYMBOL_GPL drivers/usb/phy/phy-isp1301 0x794976fb isp1301_get_client -EXPORT_SYMBOL_GPL drivers/usb/phy/phy-tegra-usb 0x2190f30c tegra_ehci_phy_restore_end -EXPORT_SYMBOL_GPL drivers/usb/phy/phy-tegra-usb 0x72c36048 tegra_usb_phy_preresume -EXPORT_SYMBOL_GPL drivers/usb/phy/phy-tegra-usb 0xb98accb7 tegra_ehci_phy_restore_start -EXPORT_SYMBOL_GPL drivers/usb/phy/phy-tegra-usb 0xbc39318b tegra_usb_phy_postresume -EXPORT_SYMBOL_GPL drivers/usb/serial/usb_wwan 0xb850fbfd usb_wwan_port_probe -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x094810c9 usb_serial_generic_submit_read_urbs -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x0c2c93ef usb_serial_generic_chars_in_buffer -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x25ba9348 usb_serial_generic_wait_until_sent -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x357cbd95 usb_serial_generic_write -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x6423f0da usb_serial_claim_interface -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x6513fe9d usb_serial_generic_close -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x676b795e usb_serial_generic_read_bulk_callback -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x8f6ddfdf usb_serial_deregister_drivers -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x9540a571 usb_serial_handle_dcd_change -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x99580de4 usb_serial_generic_open -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x9d419535 usb_serial_generic_tiocmiwait -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xb4719d79 usb_serial_generic_write_start -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xc2b1b2e1 usb_serial_generic_write_bulk_callback -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xcb55cdb1 usb_serial_generic_unthrottle -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xd3baa01b usb_serial_generic_process_read_urb -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xd9f700a9 usb_serial_generic_throttle -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xda27a6e7 usb_serial_register_drivers -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xdb885691 usb_serial_generic_resume -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xdfbdf19f usb_serial_generic_get_icount -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xf51b07a7 usb_serial_port_softint -EXPORT_SYMBOL_GPL drivers/usb/typec/altmodes/typec_displayport 0x0d00db6e dp_altmode_remove -EXPORT_SYMBOL_GPL drivers/usb/typec/altmodes/typec_displayport 0xea9dbb5d 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 0xdcd67546 tcpci_register_port -EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 0x10ec6d2d tcpm_sink_frs -EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 0x1751f2db tcpm_register_port -EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 0x3b84657b tcpm_pd_transmit_complete -EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 0x76eeda4b tcpm_unregister_port -EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 0x9e0bd753 tcpm_pd_hard_reset -EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 0xb655342c tcpm_pd_receive -EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 0xc37b9769 tcpm_cc_change -EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 0xceb50012 tcpm_vbus_change -EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 0xea220941 tcpm_tcpc_reset -EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 0xeb779665 tcpm_sourcing_vbus -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x00b3cd45 typec_altmode_get_partner -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x0100e650 typec_switch_get_drvdata -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x08bca6cb typec_unregister_altmode -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x0aa37806 typec_altmode2port -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x1008f0ac typec_register_port -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x1e57181d typec_partner_set_num_altmodes -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x2260f759 typec_set_pwr_opmode -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x26a80a7b typec_get_negotiated_svdm_version -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x2d1e301d typec_find_power_role -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x3298aa01 typec_set_mode -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x343a5753 typec_unregister_partner -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x374eff6a typec_altmode_put_plug -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x397fb1d1 typec_cable_is_active -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x3d6fc879 typec_altmode_vdm -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x42e96f0d typec_set_data_role -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x4500cfcc typec_register_cable -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x4638eead typec_set_vconn_role -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x46ec8c47 typec_set_pwr_role -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x50848952 typec_cable_put -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x57aabc72 typec_altmode_enter -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x5c0a5ba3 fwnode_typec_mux_get -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x5da642c0 typec_unregister_cable -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x6d03ab5a typec_partner_register_altmode -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x704fb3ab typec_port_register_altmode -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x758f4526 typec_cable_set_identity -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x77174b42 typec_partner_set_svdm_version -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x7f50273b typec_partner_set_identity -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x82f888fa typec_unregister_port -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x852b8962 typec_get_orientation -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x86047167 typec_get_fw_cap -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x8a75996c typec_altmode_get_plug -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x8abd2390 typec_mux_set_drvdata -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x8b38b1a2 typec_mux_unregister -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x8b82e651 typec_switch_set_drvdata -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x8c576a8b typec_cable_get -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x9049491e typec_find_port_data_role -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x96293019 typec_altmode_exit -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x9ea71ea2 typec_switch_set -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x9efb07d1 typec_plug_register_altmode -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xa17959db typec_set_orientation -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xa254de98 typec_find_orientation -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xa26958b6 typec_link_port -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xa8f4d8bb typec_altmode_unregister_driver -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xab69927f __typec_altmode_register_driver -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xac91af71 typec_unlink_port -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xb6e41e02 typec_mux_set -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xb8f93d77 typec_switch_unregister -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xba12078f fwnode_typec_switch_get -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xc26be1ce typec_match_altmode -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xc5875d0f typec_plug_set_num_altmodes -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xc601749e typec_mux_get_drvdata -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xc8e12f50 typec_get_drvdata -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xcb4510a6 typec_partner_set_pd_revision -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xd00cb2ad typec_switch_register -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xd299fcbb typec_unregister_plug -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xd3519f5c typec_register_partner -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xd8f519c2 typec_mux_put -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xdaea8e67 typec_altmode_notify -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xdc4e1a52 typec_port_register_altmodes -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xe36f4a6f typec_mux_register -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xea98dbec typec_altmode_update_active -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xeafc1eb8 typec_find_port_power_role -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xf09942bc typec_switch_put -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xf1234a8b typec_find_pwr_opmode -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xfc731b9b typec_altmode_attention -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xfee782bc typec_register_plug -EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x0af64ac6 ucsi_resume -EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x17574dd4 ucsi_send_command -EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x1a433643 ucsi_destroy -EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x2b057694 ucsi_set_drvdata -EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x3a50237d ucsi_register -EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x4f6628ce ucsi_connector_change -EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x57b5ed99 ucsi_get_drvdata -EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0xaef53d01 ucsi_create -EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0xb30a73a2 ucsi_unregister -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x06564a09 usbip_pad_iso -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x0b466247 usbip_pack_pdu -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x2fccb34c usbip_dump_urb -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x3e8c081f usbip_event_add -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x511e087e usbip_event_happened -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x78b72f44 usbip_debug_flag -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x7c4ccb04 usbip_stop_eh -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x8f3fd20b dev_attr_usbip_debug -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x910b0e93 usbip_alloc_iso_desc_pdu -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x94d7b0fa usbip_recv_xbuff -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xa69fad00 usbip_recv_iso -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xc38e7136 usbip_recv -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xcf5d01f2 usbip_start_eh -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xd02753dc usbip_header_correct_endian -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xd25555d5 usbip_in_eh -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xe1ea0586 usbip_dump_header -EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x0e2cf4e8 vdpa_unregister_device -EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x25374911 _vdpa_unregister_device -EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x2b9d9d52 vdpa_unregister_driver -EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x36e1af51 __vdpa_register_driver -EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x3ace5605 vdpa_register_device -EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x50e9b448 vdpa_mgmtdev_unregister -EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x5a373e03 __vdpa_alloc_device -EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x7dea1ae8 _vdpa_register_device -EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0xbd88f443 vdpa_mgmtdev_register -EXPORT_SYMBOL_GPL drivers/vdpa/vdpa_sim/vdpa_sim 0xa041102d vdpasim_create -EXPORT_SYMBOL_GPL drivers/vfio/mdev/mdev 0xb1e74fe4 mdev_bus_type -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x041278ea vfio_pci_core_disable -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x0c700b82 vfio_pci_register_dev_region -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x1c6f2819 vfio_pci_core_read -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x2968e096 vfio_pci_core_ioctl -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x3c132491 vfio_pci_core_mmap -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x3e709988 vfio_pci_core_sriov_configure -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x49359a98 vfio_pci_core_request -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x4cf699b8 vfio_pci_core_set_params -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x51541793 vfio_pci_core_write -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x5692fe57 vfio_pci_core_register_device -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x667f80ea vfio_pci_core_uninit_device -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x670dc770 vfio_pci_core_enable -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x8af14741 vfio_pci_core_unregister_device -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xac0f954c vfio_pci_core_init_device -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xb7258038 vfio_pci_core_finish_enable -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xbb908c9a vfio_pci_core_close_device -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xe61380df vfio_pci_core_match -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xef4fc5dd vfio_pci_core_err_handlers -EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0x6c55e0c7 vfio_platform_remove_common -EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0x8f07998d vfio_platform_unregister_reset -EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0xe4defddf __vfio_platform_register_reset -EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0xe863012a vfio_platform_probe_common -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x009b4954 vfio_iommu_group_get -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x03c620f1 vfio_device_get_from_dev -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x29f68ac9 vfio_iommu_group_put -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x3567743b vfio_external_user_iommu_id -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x363924a6 vfio_assign_device_set -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x4c5570f1 vfio_group_get_external_user_from_dev -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x4d37524c vfio_external_group_match_file -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x4fd2f4f4 vfio_group_get_external_user -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x5b35c4f9 vfio_group_set_kvm -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x5fca3a03 vfio_unregister_iommu_driver -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x60a634c4 vfio_info_cap_add -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x94103335 vfio_uninit_group_dev -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x97edec1b vfio_group_iommu_domain -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xbd565898 vfio_init_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 0xc8b93d4a vfio_device_put -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xd8aa857b vfio_unregister_group_dev -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xe8878772 vfio_register_iommu_driver -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xf80eb64b vfio_register_group_dev -EXPORT_SYMBOL_GPL drivers/vfio/vfio_virqfd 0x8c3ea559 vfio_virqfd_disable -EXPORT_SYMBOL_GPL drivers/vfio/vfio_virqfd 0x9f6b42b8 vfio_virqfd_enable -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x04ca48d5 vhost_add_used_and_signal -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x066c87f1 vhost_dev_init -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x175c1385 vhost_vq_init_access -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x21c65128 vhost_dev_check_owner -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x2a9b9124 vhost_set_backend_features -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x2ff4b38e vhost_dev_has_owner -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x30e3303e vhost_dev_stop -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x30e9679a vhost_dev_cleanup -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x3b94a3f4 vhost_disable_notify -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x44e7256d vhost_dev_set_owner -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x463f4111 vhost_has_work -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x558f9340 vhost_chr_read_iter -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x5c8398e1 vhost_add_used -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x64e25e72 vhost_vring_ioctl -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x6ed79e97 vhost_poll_queue -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x70d2adc5 vhost_clear_msg -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x71d564e0 vhost_work_dev_flush -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x77342268 vhost_init_device_iotlb -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x7a9f0db1 vhost_add_used_n -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x8573e35e vhost_dev_ioctl -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x8d7a6a33 vhost_enqueue_msg -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x8e826d5c vhost_add_used_and_signal_n -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x91aa3957 vhost_vq_is_setup -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x9f899967 vhost_vq_avail_empty -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xa909cfc5 vhost_work_init -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xad962599 vhost_new_msg -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xb37b94e7 vhost_signal -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xb9f3bb71 vhost_poll_stop -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xbb5449f6 vhost_poll_init -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xbdbe9047 vhost_discard_vq_desc -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xc3fe0227 vhost_dev_reset_owner -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xc8589649 vhost_get_vq_desc -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xc92fb223 vhost_exceeds_weight -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xd8b8a6a9 vhost_dequeue_msg -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xdc38ccba vhost_poll_flush -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xdc3c022a vhost_log_write -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xe14d9b25 vhost_vq_access_ok -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xe31e6685 vhost_work_queue -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xe6726d7d vhost_enable_notify -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xe83e0ddd vq_meta_prefetch -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xee7da83e vhost_poll_start -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xfb154d34 vhost_log_access_ok -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 0x0a2017b3 ili9320_remove -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x0eaf603e ili9320_probe_spi -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x1b416e40 ili9320_suspend -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x5525b7b2 ili9320_resume -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x5d01e5df ili9320_shutdown -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xc377853e ili9320_write -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xcd6d350f ili9320_write_regs -EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_ddc 0xf5a59972 fb_ddc_read -EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_sys_fops 0x123a0efd fb_sys_read -EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_sys_fops 0x30ddb885 fb_sys_write -EXPORT_SYMBOL_GPL drivers/video/fbdev/sis/sisfb 0x9c8c7c87 sis_free_new -EXPORT_SYMBOL_GPL drivers/video/fbdev/sis/sisfb 0xd29d09cb sis_malloc_new -EXPORT_SYMBOL_GPL drivers/w1/wire 0x1ac2b1d0 w1_next_pullup -EXPORT_SYMBOL_GPL drivers/w1/wire 0x32b18711 w1_touch_block -EXPORT_SYMBOL_GPL drivers/w1/wire 0x4aabbc70 w1_read_block -EXPORT_SYMBOL_GPL drivers/w1/wire 0x5e7bc3bb w1_write_block -EXPORT_SYMBOL_GPL drivers/w1/wire 0x63757e92 w1_calc_crc8 -EXPORT_SYMBOL_GPL drivers/w1/wire 0x66fe8a24 w1_reset_resume_command -EXPORT_SYMBOL_GPL drivers/w1/wire 0x711f8a6e w1_reset_select_slave -EXPORT_SYMBOL_GPL drivers/w1/wire 0x7784200c w1_read_8 -EXPORT_SYMBOL_GPL drivers/w1/wire 0xcdd4fb33 w1_write_8 -EXPORT_SYMBOL_GPL drivers/w1/wire 0xdb168a1f w1_triplet -EXPORT_SYMBOL_GPL drivers/w1/wire 0xe46a161d w1_reset_bus -EXPORT_SYMBOL_GPL drivers/w1/wire 0xf5e27a28 w1_touch_bit -EXPORT_SYMBOL_GPL drivers/xen/xen-front-pgdir-shbuf 0x19038f99 xen_front_pgdir_shbuf_unmap -EXPORT_SYMBOL_GPL drivers/xen/xen-front-pgdir-shbuf 0x2fb17ae8 xen_front_pgdir_shbuf_alloc -EXPORT_SYMBOL_GPL drivers/xen/xen-front-pgdir-shbuf 0x591ace83 xen_front_pgdir_shbuf_free -EXPORT_SYMBOL_GPL drivers/xen/xen-front-pgdir-shbuf 0x891b8687 xen_front_pgdir_shbuf_get_dir_start -EXPORT_SYMBOL_GPL drivers/xen/xen-front-pgdir-shbuf 0x9800da3d xen_front_pgdir_shbuf_map -EXPORT_SYMBOL_GPL drivers/xen/xen-privcmd 0x00efd32b xen_privcmdbuf_fops -EXPORT_SYMBOL_GPL drivers/xen/xen-privcmd 0x2fb62dd4 xen_privcmd_fops -EXPORT_SYMBOL_GPL fs/dlm/dlm 0x0f3fcbf4 dlm_posix_lock -EXPORT_SYMBOL_GPL fs/dlm/dlm 0x4b62826c dlm_unlock -EXPORT_SYMBOL_GPL fs/dlm/dlm 0x644e50d1 dlm_posix_unlock -EXPORT_SYMBOL_GPL fs/dlm/dlm 0x647d6170 dlm_lock -EXPORT_SYMBOL_GPL fs/dlm/dlm 0x656938e9 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 0x3a22ef3b nlmclnt_init -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x43bfec88 nlmclnt_proc -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x4500952d nlmclnt_done -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x6c804a9f lockd_up -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x77e35ccc nlmsvc_unlock_all_by_ip -EXPORT_SYMBOL_GPL fs/lockd/lockd 0xa3621e86 nlmsvc_ops -EXPORT_SYMBOL_GPL fs/lockd/lockd 0xa53cebdf nlmsvc_unlock_all_by_sb -EXPORT_SYMBOL_GPL fs/lockd/lockd 0xb76bc609 lockd_down -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0294c6a2 nfs_callback_nr_threads -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x038e1692 nfs_do_submount -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x049d2e30 nfs_show_options -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x058c0082 nfs_pgio_current_mirror -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x05e96c4d nfs_reconfigure -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x06e7acd6 nfs_close_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0813873b nfs_fs_type -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0826760d nfs_alloc_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0a232219 nfs_link -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0cd2ab0f nfs_put_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0f66ce95 nfs_post_op_update_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0fed0b2b alloc_nfs_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x10962bc2 nfs_auth_info_match -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x129299fb nfs_server_insert_lists -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x12defc66 nfs_may_open -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x13058fee nfs_mkdir -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x15570715 nfs_generic_pgio -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x15cc2cae get_nfs_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1638a210 nfs_free_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x18217de3 nfs_sync_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1935f73a __traceiter_nfs_fsync_enter -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1a4f4ce2 nfs_force_lookup_revalidate -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1acb2738 nfs_refresh_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1b346f0a nfs_pageio_resend -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1bd95779 nfs_kill_super -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x224660cc __traceiter_nfs_fsync_exit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x22d795a8 _nfs_display_fhandle_hash -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x236325bd put_nfs_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x24ac0dc8 nfs_access_add_cache -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x26884ff7 nfs_alloc_fhandle -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x26bba30b nfs_try_get_tree -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x274070cb nfs_pageio_init_write -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2896c949 nfs_clone_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2d8ca42a nfs_path -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2db8413b nfs_retry_commit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2de6556f nfs_get_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x30496988 __tracepoint_nfs_fsync_enter -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x32b0b6d4 nfs_request_add_commit_list_locked -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x36eaf594 nfs_symlink -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x386c0bc4 nfs_set_cache_invalid -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3938c83b nfs_fhget -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x39e05ac3 nfs_idmap_cache_timeout -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3b6115dc __traceiter_nfs_xdr_bad_filehandle -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3bdc31c5 nfs_server_remove_lists -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3c9c8bf2 nfs_request_remove_commit_list -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3cbd3ad6 nfs_inode_attach_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3db9d56b nfs_zap_acl_cache -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 0x41a01dee nfs_wait_on_request -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x42f2c81f nfs4_client_id_uniquifier -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x44cc3a41 __tracepoint_nfs_fsync_exit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x44e5c058 nfs_getattr -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4532be61 nfs_scan_commit_list -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x45e62666 nfs_clear_inode -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 0x52851b6b nfs_instantiate -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x52ec35f4 nfs_show_path -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x57d91c91 nfs_invalidate_atime -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 0x5baf0bdb nfs_request_add_commit_list -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5c60c61f __traceiter_nfs_xdr_status -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5de0e2c4 nfs_submount -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5f7a1402 nfs_file_write -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x609811f5 nfs_write_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x62695ae0 register_nfs_version -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x69dce0fd nfs_alloc_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6baece23 nfs_wait_client_init_complete -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6e81f032 __SCK__tp_func_nfs_fsync_exit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x70ff6573 nfs_client_init_is_complete -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x715f2607 nfs_file_read -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x734e5de6 nfs_permission -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x73dff4c0 __SCK__tp_func_nfs_xdr_status -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x77565c98 nfs_file_set_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x79243119 nfs_clear_verifier_delegated -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7c55e803 nfs_pageio_reset_write_mds -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7c9722ba nfs_dreq_bytes_left -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x815c027e nfs_put_lock_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x832e8f0b nfs_alloc_fattr -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x855d1bec nfs_setsecurity -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x85b274ce nfs_pageio_init_read -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x86bd5920 nfs_get_lock_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x88b6f3bb nfs_umount_begin -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8acdb9bf nfs_check_cache_invalid -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8d24aae3 nfs_pgio_header_alloc -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8e6f201e nfs_rename -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 0x925caeac nfs_probe_fsinfo -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x95007f7e __SCK__tp_func_nfs_xdr_bad_filehandle -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x95895c94 nfs_show_stats -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x96593e6f nfs_file_mmap -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x96c795f9 nfs_statfs -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x98b0ece8 nfs_init_timeout_values -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x99ac4985 nfs_writeback_update_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9b6422aa nfs_setattr_update_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9e4fbf5b nfs_sb_active -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa05ca625 nfs_fattr_init -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa0775a07 nfs_generic_pg_test -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa07ac11d nfs_init_commit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa2135030 unregister_nfs_version -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa408b2b1 nfs_commitdata_release -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa661c669 nfs_pgio_header_free -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa6e9fc29 nfs_set_verifier -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa8e9e1ae send_implementation_id -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa8f90e16 nfs_access_zap_cache -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xaafd4acc max_session_cb_slots -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xabc44a2e nfs_mark_client_ready -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xac240d14 nfs_lock -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xaec18b17 nfs_init_cinfo -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xafbcb6c8 nfs_fscache_open_file -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb0ac745a nfs4_fs_type -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb11ccec8 nfs_flock -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb1a962d1 nfs4_label_alloc -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb3743923 nfs_commit_free -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb64a7a70 nfs_access_get_cached -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb7cde7a5 nfs_init_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb7fd210d nfs_client_for_each_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xba1bfb3d nfs_add_or_obtain -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbb76e827 nfs_free_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbb8b944b nfs_create_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbc598937 nfs_free_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbf2e68cf nfs_initiate_commit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc023d3a4 nfs_lookup -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc0d9adca nfs_sb_deactive -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc1152be9 nfs_create -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc30fe753 nfs_pgheader_init -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc31410b3 nfs_file_fsync -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc3a2be67 nfs_net_id -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc4592cd0 nfs_atomic_open -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc75758d6 nfs_file_release -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc881c409 nfs_alloc_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcd92472b nfs_mknod -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd18901e2 nfs_pageio_reset_read_mds -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd1dd8800 nfs_create_rpc_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd378cb97 nfs_init_server_rpcclient -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd3c07744 nfs_show_devname -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd4dfc51e nfs_setattr -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd780be05 nfs_wb_all -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd8117467 nfs_client_init_status -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd87234d8 nfs_server_copy_userdata -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd8ea51ac nfs_alloc_fattr_with_label -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdae9b5d7 nfs4_disable_idmapping -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdc220bff nfs_commit_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xddea63b2 nfs_file_llseek -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xde19ad7b nfs_unlink -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdebef8f6 nfs_async_iocounter_wait -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe0569886 nfs_initiate_pgio -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe0b4f42d nfs_release_request -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe14a2574 nfs_access_set_mask -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe4e2cef5 nfs_post_op_update_inode_force_wcc -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe70507df __tracepoint_nfs_xdr_bad_filehandle -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe751d478 nfs_dentry_operations -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe83e9793 nfs_rmdir -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe908dc3e nfs4_dentry_operations -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe9acb11d nfs_sops -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe9ae2029 nfs_revalidate_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xeee28122 nfs_commitdata_alloc -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf5923ead nfs_file_operations -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf7724479 nfs_drop_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf96f04c4 __SCK__tp_func_nfs_fsync_enter -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfb1b502d nfs_filemap_write_and_wait_range -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfc619abd _nfs_display_fhandle -EXPORT_SYMBOL_GPL fs/nfs/nfsv3 0xbfe0f0d7 nfs3_set_ds_client -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x02f0f3fb pnfs_generic_search_commit_reqs -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x04ec07d2 nfs4_sequence_done -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 0x0ab1bdd6 pnfs_generic_commit_pagelist -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0aebca68 __tracepoint_ff_layout_read_error -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0c88d25e nfs4_schedule_migration_recovery -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0f01076e __tracepoint_pnfs_mds_fallback_pg_get_mirror_count -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0ff289f3 __SCK__tp_func_pnfs_mds_fallback_pg_init_write -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x10d167ec pnfs_generic_layout_insert_lseg -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1187368e __traceiter_pnfs_mds_fallback_pg_init_read -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x269e3922 __traceiter_nfs4_pnfs_commit_ds -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x27ad47ea __SCK__tp_func_pnfs_mds_fallback_write_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x299c153e pnfs_write_done_resend_to_mds -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2d99caa5 pnfs_generic_pg_init_write -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3050a8d0 pnfs_layout_mark_request_commit -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x30a44ac3 __SCK__tp_func_ff_layout_write_error -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x31fea184 nfs4_decode_mp_ds_addr -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x32bb6e05 __tracepoint_ff_layout_write_error -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x33a857bd pnfs_generic_prepare_to_resend_writes -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3465e508 nfs4_find_get_deviceid -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x35456d5a nfs4_schedule_lease_recovery -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x365e007b nfs42_proc_layouterror -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3c145009 nfs4_test_session_trunk -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4501025e pnfs_layoutcommit_inode -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4772773f pnfs_read_done_resend_to_mds -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x49a4914d pnfs_update_layout -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4bc5a07d nfs4_init_deviceid_node -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x533c198f __SCK__tp_func_nfs4_pnfs_write -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x53814a3b pnfs_generic_pg_cleanup -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x538e0640 nfs4_pnfs_ds_add -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x579126b8 __SCK__tp_func_pnfs_mds_fallback_read_pagelist -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x57cfd000 pnfs_generic_pg_readpages -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x581b096b pnfs_destroy_layout -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5a4314e9 __SCK__tp_func_nfs4_pnfs_commit_ds -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5ce462a3 __tracepoint_pnfs_mds_fallback_write_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5e5a8934 nfs4_proc_getdeviceinfo -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6085edbd nfs_map_string_to_numeric -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x61be2a82 pnfs_report_layoutstat -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x628df664 nfs4_pnfs_ds_put -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6330bb3a __traceiter_nfs4_pnfs_write -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x67b55fb4 pnfs_generic_pg_writepages -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x69d3558d pnfs_generic_rw_release -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6ab6d34f pnfs_ld_write_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6bfa0802 nfs4_setup_sequence -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6ceeea86 pnfs_generic_sync -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6d25d435 nfs4_init_ds_session -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6f6621f2 pnfs_alloc_commit_array -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x716c245b nfs4_set_rw_stateid -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x73e43a51 nfs4_find_or_create_ds_client -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x76a56e16 pnfs_generic_write_commit_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x76f95a5c __traceiter_ff_layout_write_error -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x785c06ab __SCK__tp_func_ff_layout_read_error -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7969e98d __traceiter_nfs4_pnfs_read -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 0x7b33ba49 pnfs_nfs_generic_sync -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7cd013a8 __SCK__tp_func_pnfs_mds_fallback_pg_get_mirror_count -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x81783554 pnfs_unregister_layoutdriver -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x82409884 __tracepoint_pnfs_mds_fallback_read_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8722fcb1 nfs4_delete_deviceid -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8dbe032f pnfs_generic_ds_cinfo_destroy -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8fcb2965 nfs_remove_bad_delegation -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8fdc14c9 pnfs_free_commit_array -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x92d04bb0 pnfs_set_lo_fail -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x95bf70c3 pnfs_generic_pg_check_range -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x974a1614 __tracepoint_pnfs_mds_fallback_pg_init_write -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9a1a74c3 __tracepoint_nfs4_pnfs_write -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9a483771 nfs4_pnfs_ds_connect -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9b3b0487 __traceiter_pnfs_mds_fallback_pg_get_mirror_count -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa0993e05 pnfs_error_mark_layout_for_return -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa0c03052 pnfs_add_commit_array -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa351ddda pnfs_generic_recover_commit_reqs -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa38bfbba nfs4_put_deviceid_node -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa6053d93 nfs4_set_ds_client -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa615880b pnfs_generic_clear_request_commit -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xaf72537e pnfs_generic_pg_init_read -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb21b787f __traceiter_ff_layout_read_error -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb34d840a pnfs_generic_scan_commit_lists -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb69425fd pnfs_generic_pg_check_layout -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xba53a1ef __SCK__tp_func_pnfs_mds_fallback_pg_init_read -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc41ca80f pnfs_register_layoutdriver -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc4f0de81 pnfs_put_lseg -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc76f55bb __traceiter_ff_layout_commit_error -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc7a9d954 __SCK__tp_func_nfs4_pnfs_read -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xce11fa2a __traceiter_pnfs_mds_fallback_write_pagelist -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xcf29b95f __tracepoint_pnfs_mds_fallback_read_pagelist -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xcfc1f760 pnfs_read_resend_pnfs -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd0ecfaad __tracepoint_pnfs_mds_fallback_pg_init_read -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd35a2716 __traceiter_pnfs_mds_fallback_read_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xdbcea76d __traceiter_pnfs_mds_fallback_pg_init_write -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xdd654105 nfs4_mark_deviceid_available -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xde4e00b3 __traceiter_pnfs_mds_fallback_read_pagelist -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xde90fba3 nfs4_schedule_session_recovery -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xdf6991a4 __SCK__tp_func_pnfs_mds_fallback_write_pagelist -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe19a4646 pnfs_generic_pg_test -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe19f5ee0 __tracepoint_pnfs_mds_fallback_write_pagelist -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe8d1dd77 pnfs_ld_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 0xf06e1564 nfs4_schedule_stateid_recovery -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf2113886 nfs4_schedule_lease_moved_recovery -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf244dc30 nfs4_test_deviceid_unavailable -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf6354626 __traceiter_pnfs_mds_fallback_write_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf6d84eb1 nfs41_sequence_done -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 0xf9e02516 pnfs_set_layoutcommit -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xfe84d2c4 pnfs_generic_ds_cinfo_release_lseg -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xff464d02 nfs4_mark_deviceid_unavailable -EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x1fe1e1ad locks_end_grace -EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x20640c25 opens_in_grace -EXPORT_SYMBOL_GPL fs/nfs_common/grace 0xc896e05d locks_in_grace -EXPORT_SYMBOL_GPL fs/nfs_common/grace 0xcab90ffc locks_start_grace -EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x26793ac1 nfsacl_decode -EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x4f74f939 nfsacl_encode -EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x82ed9402 nfs_stream_encode_acl -EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0xdb5f54c6 nfs_stream_decode_acl -EXPORT_SYMBOL_GPL fs/nfsd/nfsd 0x2bd323b3 nfsd4_ssc_init_umount_work -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x13dbb1ef o2nm_get_node_by_num -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x164e3d0e o2hb_setup_callback -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x1b2feb72 o2hb_register_callback -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 0x5e95a4b2 o2net_send_message_vec -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x6a0c3847 __mlog_printk -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x7b4c5661 o2hb_unregister_callback -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x81a17396 mlog_and_bits -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x993a5156 o2nm_node_put -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 0xc6a3620d o2nm_get_node_by_ip -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xd859ac8c o2net_fill_node_map -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xf1a5611d o2net_unregister_handler_list -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xf56c2017 mlog_not_bits -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xf982e6db o2net_send_message -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xfe1298f3 o2net_register_handler -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xffa85df5 o2nm_node_get -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x0efcec0f dlm_unregister_domain -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x742ffcd6 dlmunlock -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x7a1211f8 dlm_setup_eviction_cb -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xb636c096 dlm_register_domain -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xc3d97860 dlm_register_eviction_cb -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xd7ba575e dlm_errmsg -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xd8fa57a6 dlm_unregister_eviction_cb -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xde1d33f3 dlmlock -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xedda67ce dlm_print_one_lock -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xfb86b96f dlm_errname -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x0a726931 ocfs2_cluster_this_node -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x0cfd3fc5 ocfs2_cluster_connect_agnostic -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x1475f64b ocfs2_dlm_lvb_valid -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x2fe1c19b ocfs2_stack_glue_register -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x4d3af7fa ocfs2_cluster_hangup -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x6263c1b1 ocfs2_kset -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x76f40744 ocfs2_dlm_lvb -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x9507547f ocfs2_cluster_disconnect -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xaf969565 ocfs2_dlm_lock -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xbbc4ef97 ocfs2_stack_supports_plocks -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xc23aa737 ocfs2_stack_glue_unregister -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xc5196999 ocfs2_dlm_unlock -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xc9fae756 ocfs2_cluster_connect -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xcafdd707 ocfs2_dlm_lock_status -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xd344e4ee ocfs2_stack_glue_set_max_proto_version -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xd806a273 ocfs2_dlm_dump_lksb -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xda1c2206 ocfs2_plock -EXPORT_SYMBOL_GPL fs/pstore/pstore_blk 0x43cc3d4b pstore_blk_get_config -EXPORT_SYMBOL_GPL fs/pstore/pstore_blk 0x8270beb2 unregister_pstore_device -EXPORT_SYMBOL_GPL fs/pstore/pstore_blk 0x949707c2 register_pstore_device -EXPORT_SYMBOL_GPL fs/pstore/pstore_zone 0x0d7326f4 register_pstore_zone -EXPORT_SYMBOL_GPL fs/pstore/pstore_zone 0x739cfc53 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 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 0x588e01bf notifier_err_inject_dir -EXPORT_SYMBOL_GPL lib/notifier-error-inject 0x7c3f585b 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 0x22e3a181 lowpan_header_compress -EXPORT_SYMBOL_GPL net/6lowpan/6lowpan 0x4bc9603e lowpan_header_decompress -EXPORT_SYMBOL_GPL net/802/garp 0x0d2880b0 garp_init_applicant -EXPORT_SYMBOL_GPL net/802/garp 0x26fe5ffb garp_unregister_application -EXPORT_SYMBOL_GPL net/802/garp 0x2e1e3c59 garp_request_join -EXPORT_SYMBOL_GPL net/802/garp 0x358e21be garp_request_leave -EXPORT_SYMBOL_GPL net/802/garp 0x59044a63 garp_uninit_applicant -EXPORT_SYMBOL_GPL net/802/garp 0x5cf3ff8e garp_register_application -EXPORT_SYMBOL_GPL net/802/mrp 0x5548648c mrp_request_leave -EXPORT_SYMBOL_GPL net/802/mrp 0x5632b252 mrp_uninit_applicant -EXPORT_SYMBOL_GPL net/802/mrp 0x6af79e0f mrp_init_applicant -EXPORT_SYMBOL_GPL net/802/mrp 0x9b3a7bb8 mrp_unregister_application -EXPORT_SYMBOL_GPL net/802/mrp 0xad58e364 mrp_register_application -EXPORT_SYMBOL_GPL net/802/mrp 0xd4804037 mrp_request_join -EXPORT_SYMBOL_GPL net/802/stp 0x615d8c7f stp_proto_register -EXPORT_SYMBOL_GPL net/802/stp 0x89330981 stp_proto_unregister -EXPORT_SYMBOL_GPL net/9p/9pnet 0x2f727749 p9_client_xattrwalk -EXPORT_SYMBOL_GPL net/9p/9pnet 0xdd5000a0 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 0xbf305f99 ax25_register_pid -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x0731b5d9 l2cap_chan_list -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x1445d0bb l2cap_chan_put -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x2e9859e4 l2cap_add_psm -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x3012cbc0 bt_debugfs -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x38db76f9 l2cap_chan_set_defaults -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x50a40258 l2cap_chan_create -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xa0ab1e58 l2cap_chan_del -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xe1162602 l2cap_chan_send -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xfa05d94e l2cap_chan_connect -EXPORT_SYMBOL_GPL net/bluetooth/hidp/hidp 0x50e51217 hidp_hid_driver -EXPORT_SYMBOL_GPL net/bridge/bridge 0x05954f50 br_fdb_clear_offload -EXPORT_SYMBOL_GPL net/bridge/bridge 0x184c3bc4 br_port_get_stp_state -EXPORT_SYMBOL_GPL net/bridge/bridge 0x2258d1a3 br_vlan_get_pvid_rcu -EXPORT_SYMBOL_GPL net/bridge/bridge 0x3919c7d6 nf_br_ops -EXPORT_SYMBOL_GPL net/bridge/bridge 0x3920969e br_port_flag_is_set -EXPORT_SYMBOL_GPL net/bridge/bridge 0x3d5c7d0f br_fdb_find_port -EXPORT_SYMBOL_GPL net/bridge/bridge 0x45f7bb46 br_vlan_get_proto -EXPORT_SYMBOL_GPL net/bridge/bridge 0x4e082d62 br_dev_queue_push_xmit -EXPORT_SYMBOL_GPL net/bridge/bridge 0x4eae173d br_multicast_list_adjacent -EXPORT_SYMBOL_GPL net/bridge/bridge 0x530a7d38 br_forward_finish -EXPORT_SYMBOL_GPL net/bridge/bridge 0x5ec62d2c br_multicast_router -EXPORT_SYMBOL_GPL net/bridge/bridge 0x709b5f8d br_multicast_has_router_adjacent -EXPORT_SYMBOL_GPL net/bridge/bridge 0x85363370 br_multicast_has_querier_anywhere -EXPORT_SYMBOL_GPL net/bridge/bridge 0x9b03c0fc br_get_ageing_time -EXPORT_SYMBOL_GPL net/bridge/bridge 0xaa3f637f br_vlan_get_pvid -EXPORT_SYMBOL_GPL net/bridge/bridge 0xbc56ad38 br_multicast_has_querier_adjacent -EXPORT_SYMBOL_GPL net/bridge/bridge 0xbe8f3e24 br_multicast_enabled -EXPORT_SYMBOL_GPL net/bridge/bridge 0xc9d0f139 br_vlan_enabled -EXPORT_SYMBOL_GPL net/bridge/bridge 0xce4d45c9 br_handle_frame_finish -EXPORT_SYMBOL_GPL net/bridge/bridge 0xd7d2486c br_vlan_get_info_rcu -EXPORT_SYMBOL_GPL net/bridge/bridge 0xd84eac26 br_vlan_get_info -EXPORT_SYMBOL_GPL net/bridge/bridge 0xf0ecba1c br_forward -EXPORT_SYMBOL_GPL net/core/failover 0x307b73c6 failover_unregister -EXPORT_SYMBOL_GPL net/core/failover 0x87ce0c02 failover_register -EXPORT_SYMBOL_GPL net/core/failover 0xae912f07 failover_slave_unregister -EXPORT_SYMBOL_GPL net/dccp/dccp 0x02282677 dccp_ioctl -EXPORT_SYMBOL_GPL net/dccp/dccp 0x08dc3692 dccp_disconnect -EXPORT_SYMBOL_GPL net/dccp/dccp 0x0e5cf2e8 dccp_poll -EXPORT_SYMBOL_GPL net/dccp/dccp 0x182ec2bf dccp_ackvec_parsed_add -EXPORT_SYMBOL_GPL net/dccp/dccp 0x18ea2728 dccp_insert_option -EXPORT_SYMBOL_GPL net/dccp/dccp 0x22f12197 dccp_send_sync -EXPORT_SYMBOL_GPL net/dccp/dccp 0x2a7a1515 dccp_getsockopt -EXPORT_SYMBOL_GPL net/dccp/dccp 0x38f68e35 dccp_destruct_common -EXPORT_SYMBOL_GPL net/dccp/dccp 0x3e8ab30e inet_dccp_listen -EXPORT_SYMBOL_GPL net/dccp/dccp 0x4197c59c dccp_connect -EXPORT_SYMBOL_GPL net/dccp/dccp 0x46457709 dccp_rcv_established -EXPORT_SYMBOL_GPL net/dccp/dccp 0x4a93e9d7 dccp_set_state -EXPORT_SYMBOL_GPL net/dccp/dccp 0x4cdd391d dccp_feat_list_purge -EXPORT_SYMBOL_GPL net/dccp/dccp 0x526f4959 dccp_destroy_sock -EXPORT_SYMBOL_GPL net/dccp/dccp 0x56de9585 dccp_child_process -EXPORT_SYMBOL_GPL net/dccp/dccp 0x59814a84 dccp_statistics -EXPORT_SYMBOL_GPL net/dccp/dccp 0x5f90b796 dccp_make_response -EXPORT_SYMBOL_GPL net/dccp/dccp 0x62c68c54 dccp_check_req -EXPORT_SYMBOL_GPL net/dccp/dccp 0x62cfd3d6 dccp_reqsk_send_ack -EXPORT_SYMBOL_GPL net/dccp/dccp 0x64af346d dccp_death_row -EXPORT_SYMBOL_GPL net/dccp/dccp 0x6f054c5b dccp_init_sock -EXPORT_SYMBOL_GPL net/dccp/dccp 0x80993155 dccp_timestamp -EXPORT_SYMBOL_GPL net/dccp/dccp 0x8322f8c5 dccp_hashinfo -EXPORT_SYMBOL_GPL net/dccp/dccp 0x857ff65d dccp_ctl_make_reset -EXPORT_SYMBOL_GPL net/dccp/dccp 0x86be7924 dccp_packet_name -EXPORT_SYMBOL_GPL net/dccp/dccp 0x879d6fb3 dccp_reqsk_init -EXPORT_SYMBOL_GPL net/dccp/dccp 0x9598d24d dccp_ackvec_parsed_cleanup -EXPORT_SYMBOL_GPL net/dccp/dccp 0x99027bae dccp_close -EXPORT_SYMBOL_GPL net/dccp/dccp 0xb496a973 dccp_shutdown -EXPORT_SYMBOL_GPL net/dccp/dccp 0xb7e476a0 dccp_sendmsg -EXPORT_SYMBOL_GPL net/dccp/dccp 0xb94f7980 dccp_create_openreq_child -EXPORT_SYMBOL_GPL net/dccp/dccp 0xbd5c873b dccp_feat_signal_nn_change -EXPORT_SYMBOL_GPL net/dccp/dccp 0xc026c82b dccp_setsockopt -EXPORT_SYMBOL_GPL net/dccp/dccp 0xc4059d74 dccp_recvmsg -EXPORT_SYMBOL_GPL net/dccp/dccp 0xce7e5ce9 dccp_done -EXPORT_SYMBOL_GPL net/dccp/dccp 0xd75b7072 dccp_orphan_count -EXPORT_SYMBOL_GPL net/dccp/dccp 0xd84abe02 dccp_feat_nn_get -EXPORT_SYMBOL_GPL net/dccp/dccp 0xec8df5fb dccp_send_ack -EXPORT_SYMBOL_GPL net/dccp/dccp 0xf5ee62b5 dccp_parse_options -EXPORT_SYMBOL_GPL net/dccp/dccp 0xfdd347cf dccp_sync_mss -EXPORT_SYMBOL_GPL net/dccp/dccp 0xfdf3d41e dccp_rcv_state_process -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x03fdb4cc dccp_v4_conn_request -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x071c4321 dccp_invalid_packet -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x17a4a05f dccp_v4_connect -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x56736d2b dccp_v4_do_rcv -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x67b7ce50 dccp_v4_send_check -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xb51cd5bc dccp_v4_request_recv_sock -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x07559474 dsa_devlink_resource_occ_get_unregister -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x1279d38e dsa_port_get_ethtool_phy_stats -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x13edf7ea dsa_slave_dev_check -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x1d102822 dsa_devlink_params_register -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x1ef40f80 dsa_dev_to_net_device -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x2150dadb dsa_devlink_param_set -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x28cc298d dsa_devlink_params_unregister -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x326abb83 dsa_port_get_phy_sset_count -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x3d322698 dsa_8021q_xmit -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x3e9caab2 dsa_devlink_resource_occ_get_register -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x417d1fed dsa_8021q_rx_switch_id -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x445847c6 dsa_devlink_param_get -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x45d8ab91 dsa_port_from_netdev -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x4a699d72 dsa_enqueue_skb -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x4ed73f42 dsa_switch_suspend -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x584e535c dsa_8021q_rx_vid -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x5928bba7 vid_is_dsa_8021q_rxvlan -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x69564f31 dsa_switch_resume -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x85a1319f dsa_port_phylink_mac_change -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x9e59271d dsa_8021q_rx_source_port -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xa48458c7 dsa_tag_8021q_register -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xa5b3d2c3 dsa_register_switch -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xbb880e17 dsa_devlink_port_region_create -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xbccc137c dsa_tag_8021q_bridge_tx_fwd_unoffload -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xbe3856fc dsa_8021q_bridge_tx_fwd_offload_vid -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xbf236257 dsa_8021q_rcv -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xc23e8d5f dsa_devlink_region_destroy -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xc90129b6 dsa_port_get_phy_strings -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xc9cacbf3 dsa_switch_find -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xd0237d19 dsa_tag_8021q_unregister -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xd1661e44 dsa_8021q_tx_vid -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xd3ee6597 dsa_switch_shutdown -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xd6c0bb30 dsa_tag_drivers_register -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xd8069eef dsa_tag_drivers_unregister -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xe1c96b93 dsa_unregister_switch -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xeb08ff0c dsa_devlink_resource_register -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xf13e1803 vid_is_dsa_8021q -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xf3759f72 dsa_tag_8021q_bridge_tx_fwd_offload -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xf551c93d dsa_devlink_resources_unregister -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xf6f3b5c8 vid_is_dsa_8021q_txvlan -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xfffbf94a dsa_devlink_region_create -EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x35223f4c ieee802154_hdr_push -EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x6863c0f5 ieee802154_hdr_peek_addrs -EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x87e2553b ieee802154_max_payload -EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0xdef5b5d1 ieee802154_hdr_peek -EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0xfee67aad ieee802154_hdr_pull -EXPORT_SYMBOL_GPL net/ife/ife 0x6210e871 ife_tlv_meta_next -EXPORT_SYMBOL_GPL net/ife/ife 0x67db2029 ife_tlv_meta_decode -EXPORT_SYMBOL_GPL net/ife/ife 0x8113c00d ife_decode -EXPORT_SYMBOL_GPL net/ife/ife 0xe7888e98 ife_tlv_meta_encode -EXPORT_SYMBOL_GPL net/ife/ife 0xeb372329 ife_encode -EXPORT_SYMBOL_GPL net/ipv4/esp4 0x8bb44338 esp_output_tail -EXPORT_SYMBOL_GPL net/ipv4/esp4 0x9f76a4c1 esp_output_head -EXPORT_SYMBOL_GPL net/ipv4/esp4 0xfa9c7c6f esp_input_done2 -EXPORT_SYMBOL_GPL net/ipv4/gre 0x16ec3020 gre_del_protocol -EXPORT_SYMBOL_GPL net/ipv4/gre 0x2308957b gre_add_protocol -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x2f47a439 inet_sk_diag_fill -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x78741dc8 inet_diag_bc_sk -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x8f6b6973 inet_diag_find_one_icsk -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xae45e7c3 inet_diag_register -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xc0aca6a7 inet_diag_msg_common_fill -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xe0928260 inet_diag_dump_one_icsk -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xe29348ec inet_diag_msg_attrs_fill -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xe5edcdc4 inet_diag_dump_icsk -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xeb84ccd0 inet_diag_unregister -EXPORT_SYMBOL_GPL net/ipv4/ip_gre 0x386c4a67 gretap_fb_dev_create -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x0895fdb9 ip_tunnel_uninit -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x0d8aa02f ip_tunnel_encap_setup -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x1bb00cb3 ip_tunnel_delete_nets -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x1bb15d16 ip_tunnel_init_net -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x27ae9044 ip_tunnel_xmit -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x2ab9cf08 ip_tunnel_rcv -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x33ca8d7e ip_tunnel_setup -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x42db96e2 ip_tunnel_changelink -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x5ce93d0f ip_tunnel_init -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x71ff6441 ip_tunnel_siocdevprivate -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x79f96ba5 ip_tunnel_change_mtu -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x817e917e __ip_tunnel_change_mtu -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xa79d1570 ip_md_tunnel_xmit -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xafa08ace ip_tunnel_dellink -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xb4ef899d ip_tunnel_ctl -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xcffc560e ip_tunnel_newlink -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xf0c5a6da ip_tunnel_lookup -EXPORT_SYMBOL_GPL net/ipv4/netfilter/arp_tables 0xd66434b8 arpt_alloc_initial_table -EXPORT_SYMBOL_GPL net/ipv4/netfilter/ip_tables 0xe56193a5 ipt_alloc_initial_table -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_defrag_ipv4 0x228a73ca nf_defrag_ipv4_enable -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_defrag_ipv4 0xcfb64c8b nf_defrag_ipv4_disable -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_dup_ipv4 0xde8de1e7 nf_dup_ipv4 -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x00d380e7 nf_send_unreach -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x09387938 nf_reject_iphdr_put -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x2c9d0ff2 nf_send_reset -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x3f4a4b30 nf_reject_skb_v4_unreach -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x45d7b401 nf_reject_skb_v4_tcp_reset -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x80be156f nf_reject_ip_tcphdr_get -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x9f1160c5 nf_reject_ip_tcphdr_put -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_socket_ipv4 0x8dcf7e61 nf_sk_lookup_slow_v4 -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0x16e863d0 nf_tproxy_get_sock_v4 -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0x52b11d48 nf_tproxy_laddr4 -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0xced4ea56 nf_tproxy_handle_time_wait4 -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nft_fib_ipv4 0x8f4d2bb1 nft_fib4_eval -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nft_fib_ipv4 0xefd1305e nft_fib4_eval_type -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x16d2bb94 tcp_vegas_get_info -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x25678c52 tcp_vegas_cwnd_event -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x541b2b70 tcp_vegas_state -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xa85d9bc4 tcp_vegas_init -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xe11ec08e tcp_vegas_pkts_acked -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x37f82d9f udp_tunnel_drop_rx_port -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x3d3b81fa udp_tunnel_notify_del_rx_port -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x5c45e857 udp_tunnel_notify_add_rx_port -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xa05cb2bb udp_tunnel_push_rx_port -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xa594c96a udp_tunnel_xmit_skb -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xaabc6020 setup_udp_tunnel_sock -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xd6d32a75 udp_tun_rx_dst -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xf434199c udp_tunnel_sock_release -EXPORT_SYMBOL_GPL net/ipv6/esp6 0x9e43ee5a esp6_output_head -EXPORT_SYMBOL_GPL net/ipv6/esp6 0xca9aa767 esp6_output_tail -EXPORT_SYMBOL_GPL net/ipv6/esp6 0xce669d04 esp6_input_done2 -EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x1efb5c99 ip6_tnl_xmit_ctl -EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x6e70b481 ip6_tnl_encap_setup -EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0xf3a3d4a7 ip6_tnl_rcv_ctl -EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0x4df2b653 udp_sock_create6 -EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0x9918cf8b udp_tunnel6_xmit_skb -EXPORT_SYMBOL_GPL net/ipv6/netfilter/ip6_tables 0x99332d57 ip6t_alloc_initial_table -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x15fcbd7a nf_defrag_ipv6_enable -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0xc89b2fb1 nf_defrag_ipv6_disable -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0xfa625f0b nf_ct_frag6_gather -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_dup_ipv6 0x0a69793f nf_dup_ipv6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x18a91685 nf_reject_skb_v6_unreach -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x7557af58 nf_reject_skb_v6_tcp_reset -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x76ade71e nf_reject_ip6_tcphdr_get -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x8e04c3d3 nf_send_unreach6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xa0477c8e nf_send_reset6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xa6878556 nf_reject_ip6_tcphdr_put -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xc58b7efe nf_reject_ip6hdr_put -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_socket_ipv6 0x0aa8df08 nf_sk_lookup_slow_v6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0x1cd06bc9 nf_tproxy_handle_time_wait6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0x824f18dc nf_tproxy_get_sock_v6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0xa7b26c2a nf_tproxy_laddr6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nft_fib_ipv6 0x38c04e8a nft_fib6_eval_type -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nft_fib_ipv6 0x8dd78e9b nft_fib6_eval -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x05a9702b l2tp_tunnel_create -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x14db2a9b l2tp_tunnel_get -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x2cda9b66 l2tp_tunnel_get_session -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x2ce74a1f l2tp_session_delete -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x54cf6984 l2tp_session_get_nth -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x552faa77 l2tp_session_get -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x651c400d l2tp_recv_common -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x7db625cf l2tp_session_register -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x7f7370f1 l2tp_session_inc_refcount -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x84236b89 l2tp_session_dec_refcount -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x9138d734 l2tp_udp_encap_recv -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x9f1181a6 l2tp_tunnel_delete -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xc6b20d5d l2tp_tunnel_register -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xc80e27a2 l2tp_tunnel_dec_refcount -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xcb4debea l2tp_session_create -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xd1dfce81 l2tp_tunnel_get_nth -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xd7206d51 l2tp_sk_to_tunnel -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xdbee7c01 l2tp_session_get_by_ifname -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xe0794e5c l2tp_session_set_header_len -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xe95c4d2d l2tp_tunnel_inc_refcount -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xf5ff3892 l2tp_xmit_skb -EXPORT_SYMBOL_GPL net/l2tp/l2tp_ip 0x1bdb1f0c l2tp_ioctl -EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0x337f2432 l2tp_nl_unregister_ops -EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0xcd991c88 l2tp_nl_register_ops -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x2bd9915a ieee80211_gtk_rekey_notify -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x395dfa55 ieee80211_resume_disconnect -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x422dffd4 ieee80211_ave_rssi -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x49222d6c ieee80211_iterate_active_interfaces_atomic -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x5250cf98 ieee80211_tkip_add_iv -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x52a40e78 ieee80211_request_smps -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x59c13bed ieee80211_key_mic_failure -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x5e0f6c65 ieee80211_iterate_interfaces -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x61f94a28 ieee80211_gtk_rekey_add -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x9a32ef36 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 0xa71f1f8c wdev_to_ieee80211_vif -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xada73781 ieee80211_iter_chan_contexts_atomic -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xb6da45d4 ieee80211_color_change_finish -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xc27b54ed ieee80211_remain_on_channel_expired -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xc2b16434 ieee80211_update_mu_groups -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xcdb1a797 ieee80211_iterate_stations_atomic -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xd8e09da4 ieee80211_set_key_rx_seq -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xe0eccaa8 ieeee80211_obss_color_collision_notify -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xe2f70613 ieee80211_ready_on_channel -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xe4665060 ieee80211_iterate_active_interfaces_mtx -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xe4ce95a6 ieee80211_calc_tx_airtime -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xf40bfbf2 ieee80211_calc_rx_airtime -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xf9432d30 ieee80211_find_sta_by_ifaddr -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x6ee3e45c nla_put_labels -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x7670b536 nla_get_labels -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x7f6510a9 mpls_stats_inc_outucastpkts -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xab6ea538 mpls_pkt_too_big -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xcda2a082 mpls_output_possible -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xf0993aff mpls_dev_mtu -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x008299b5 ip_set_test -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x012b862b ip_set_get_byname -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x22d966c6 ip_set_range_to_cidr -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x281876bb ip_set_nfnl_put -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x2a46fa46 ip_set_name_byindex -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x371e9386 ip_set_match_extensions -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x397f6231 ip_set_free -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x3c3420a8 ip_set_add -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x5e6da65d 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 0x874138bb ip_set_put_flags -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x965c87e5 ip_set_type_register -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x97badd07 ip_set_get_ip4_port -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x9b7c7466 ip_set_put_extensions -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x9e98722b ip_set_get_ipaddr6 -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xa293f8a6 ip_set_get_ipaddr4 -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xa6854afe ip_set_extensions -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xa9e65a89 ip_set_type_unregister -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xad47edae ip_set_put_byindex -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xb869a51c ip_set_nfnl_get_byindex -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xc2f374ff ip_set_init_comment -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xe64eda01 ip_set_get_ip6_port -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xf06d0633 ip_set_elem_len -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xf3b4d4ae ip_set_alloc -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xfe692a18 ip_set_get_extensions -EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x0ad1f726 unregister_ip_vs_pe -EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x245fb6c3 ip_vs_conn_in_get_proto -EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x732b2ef2 register_ip_vs_pe -EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0xc8ddcb60 ip_vs_conn_out_get_proto -EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x0900af01 nf_conncount_list_init -EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x1edd128d nf_conncount_add -EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x7341e1d2 nf_conncount_destroy -EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x79d10955 nf_conncount_cache_free -EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x979bd195 nf_conncount_gc_list -EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x9f915f24 nf_conncount_init -EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0xe4f99fc4 nf_conncount_count -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0600bbaa nf_ct_remove_expect -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x062862f7 nf_ct_helper_expectfn_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x093d0f89 __nf_conntrack_confirm -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0bc00f80 nf_nat_helper_try_module_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x13ea1f3c nf_ct_timeout_put_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x148796b9 nf_ct_netns_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x14d43146 nf_l4proto_log_invalid -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1e84cebf nf_connlabels_replace -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1fd0ea97 nf_nat_helper_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x23be1d62 nf_ct_get_tuplepr -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x24689b3c nf_ct_timeout_find_get_hook -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 0x2bf86242 nf_conntrack_in -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2df7eaad nf_ct_seqadj_set -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2f0e9c6d nf_ct_untimeout -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x320e35e1 nf_ct_gre_keymap_destroy -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x324756a0 nf_ct_seqadj_init -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x34bf14c4 nf_ct_acct_add -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3740a360 nf_ct_helper_ext_add -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x39d01daa nf_ct_expect_init -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3c398e9e nf_conntrack_alter_reply -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3d759bbe nf_ct_remove_expectations -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x404119ed nf_ct_helper_expectfn_find_by_name -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x420c6a24 nf_ct_expect_related_report -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x445d810a nf_conntrack_helpers_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x46eccaa1 __nf_ct_refresh_acct -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x49d33627 nf_ct_bridge_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4c7e0038 nf_ct_expect_iterate_net -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x585dfa9a nf_ct_tmpl_free -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x58d9d785 nf_ct_tcp_seqadj_set -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x59a6806e nf_ct_l4proto_log_invalid -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5b0e02c4 nf_conntrack_free -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5d9ad13b nf_conntrack_eventmask_report -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x60129c81 nf_ct_expect_alloc -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x627cc9c2 nf_conntrack_helper_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x693c3961 nf_ct_helper_hash -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6b49fab0 nf_conntrack_tuple_taken -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6c44cb76 nf_nat_helper_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6e0b810f nf_conntrack_lock -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6f6a161f nf_nat_helper_put -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7353e485 nf_ct_unlink_expect_report -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x76592988 nf_ct_port_tuple_to_nlattr -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7818e2ee nf_ct_expect_find_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x845ae7c7 nf_ct_tmpl_alloc -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x849e3f67 nf_conntrack_helper_put -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8a474cb4 nf_ct_netns_put -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8ffe7e89 nf_conntrack_htable_size -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x969ca0ab nf_ct_seq_offset -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x97148d9f __nf_ct_try_assign_helper -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9a2480f9 nf_conntrack_alloc -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9b0b247d nf_ct_set_auto_assign_helper_warned -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9cbbbf2a nf_ct_l4proto_find -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9f431cad nf_ct_helper_expectfn_find_by_symbol -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa21ea3db nf_conntrack_expect_lock -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa3b3434f nf_conntrack_find_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xab846514 nf_ct_unconfirmed_destroy -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xaeb19f81 nf_ct_gre_keymap_add -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xafbd6cf5 nf_ct_port_nlattr_to_tuple -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb620ed46 nf_conntrack_locks -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb66d9fa3 nf_conntrack_register_notifier -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb7c2d678 nf_ct_seq_adjust -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb841bc1f nf_conntrack_unregister_notifier -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbd116299 nf_ct_iterate_cleanup_net -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc18ac88d nf_ct_expect_hsize -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc3c78835 nf_ct_expect_put -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc3f9094d nf_ct_destroy_timeout -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc40f284c nf_ct_helper_hsize -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc8997459 nf_conntrack_helper_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc93f7469 nf_ct_extend_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xcdfca004 nf_ct_delete -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd085a29c nf_ct_helper_log -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd4b2eb62 nf_ct_helper_expectfn_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd505c3e0 nf_ct_port_nlattr_tuple_size -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd8f88662 nf_connlabels_put -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd9230207 nf_conntrack_hash_check_insert -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdc556594 __nf_ct_expect_find -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdd636a77 nf_ct_deliver_cached_events -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdf0aed48 nf_ct_port_nla_policy -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdfc12d80 nf_conntrack_count -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe04226f9 nf_connlabels_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe1568b65 nf_ct_kill_acct -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe263c8f9 nf_ct_unexpect_related -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe331691f nf_ct_helper_init -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe807b158 nf_confirm -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xec8beba6 nf_ct_expect_hash -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xecf4d473 __nf_conntrack_helper_find -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xed0b9ff2 nf_ct_set_timeout -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xefc48c4a nf_ct_get_id -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf38bcdf3 nf_conntrack_max -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf5274679 nf_ct_expect_iterate_destroy -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf71d7009 nf_ct_bridge_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfb1c883b nf_conntrack_helper_try_module_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfbea6b95 nf_conntrack_helpers_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfe731af8 nf_ct_invert_tuple -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfecc7632 nf_ct_iterate_destroy -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xff0691e3 nf_ct_extend_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_amanda 0xd836e1b7 nf_nat_amanda_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_broadcast 0xd398bf38 nf_conntrack_broadcast_help -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_ftp 0xbfbb3041 nf_nat_ftp_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x30463614 nat_rtp_rtcp_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x4e4b06ad nat_h245_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x64b7d91e set_sig_addr_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x6c6b38a6 set_h245_addr_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x8ac1c12a nat_t120_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x97b0fb6c nat_q931_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xc63ef1b9 set_ras_addr_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xd570ed1c set_h225_addr_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xda92d505 nat_callforwarding_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xe3f58740 get_h225_addr -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_irc 0x77a3dc9b nf_nat_irc_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x13a43bd9 nf_nat_pptp_hook_exp_gre -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x672d8359 nf_nat_pptp_hook_expectfn -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0xa31a18e2 nf_nat_pptp_hook_outbound -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0xdc011f89 nf_nat_pptp_hook_inbound -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x20eb565f ct_sip_parse_numerical_param -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x2ff9a9a5 ct_sip_parse_request -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x37486de0 ct_sip_parse_header_uri -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x53f6c56e ct_sip_parse_address_param -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xaa0d67f8 ct_sip_get_header -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xb1b9d8c5 ct_sip_get_sdp_header -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xc0313165 nf_nat_sip_hooks -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_snmp 0xf4f159fe nf_nat_snmp_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_tftp 0xcdd22323 nf_nat_tftp_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0x1615d96c nf_fwd_netdev_egress -EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0x4a7cef32 nft_fwd_dup_netdev_offload -EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0xe757f8db nf_dup_netdev_egress -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x0b7b8385 nf_flow_table_cleanup -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x0e94b113 nf_flow_snat_port -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x183f054d nf_flow_offload_ipv6_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x1d0d3769 flow_offload_alloc -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x218cbaa9 nf_flow_rule_route_ipv4 -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x2f9678bf nf_flow_dnat_port -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x30fbd3c5 flow_offload_route_init -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x4839d171 flow_offload_refresh -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x6424ea76 nf_flow_offload_ip_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x6c10a00f flow_offload_free -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x7f492f42 nf_flow_rule_route_ipv6 -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x8e515432 flow_offload_teardown -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x99b10723 flow_offload_add -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x9dca106b nf_flow_table_init -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xa7173420 nf_flow_table_free -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xd8ed5add nf_flow_table_offload_setup -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xfc670377 flow_offload_lookup -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x033864fe nf_nat_ipv6_unregister_fn -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x0cc7c4fe nf_nat_alloc_null_binding -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x1faa1cd0 nf_nat_icmp_reply_translation -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x22b4f157 nf_ct_nat_ext_add -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x34598f14 nf_nat_ipv6_register_fn -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x3bc17c49 nf_nat_masquerade_inet_register_notifiers -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x62ea602f nf_nat_icmpv6_reply_translation -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x68cecac6 nf_nat_ipv4_register_fn -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x7135c866 nf_nat_inet_register_fn -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x772fe6b0 nf_nat_masquerade_ipv4 -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x92ec092c nf_nat_redirect_ipv4 -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xb6802aeb nf_nat_ipv4_unregister_fn -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xcd6159a2 nf_nat_inet_fn -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xcde5a173 nf_nat_packet -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xd9c25654 nf_nat_masquerade_inet_unregister_notifiers -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xdad8cf9a nf_nat_redirect_ipv6 -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xe63dcb53 nf_nat_masquerade_ipv6 -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xf689eed5 nf_nat_inet_unregister_fn -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x1f099794 synproxy_init_timestamp_cookie -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x1f7881b6 synproxy_send_client_synack_ipv6 -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x7320388b synproxy_recv_client_ack -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x823936a0 ipv4_synproxy_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x96ea6883 nf_synproxy_ipv6_fini -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x9a2bb7f5 nf_synproxy_ipv6_init -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xa3f7991a nf_synproxy_ipv4_fini -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xaf36466c nf_synproxy_ipv4_init -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xca9fc082 synproxy_net_id -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xcb17809a synproxy_send_client_synack -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xcf7e3201 ipv6_synproxy_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xd73f2b24 synproxy_recv_client_ack_ipv6 -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xd9e4f88f synproxy_parse_options -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x008ebaf1 nft_meta_set_eval -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x01f727e5 nf_tables_deactivate_flowtable -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x05cc7d28 nft_unregister_flowtable_type -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x06c6ca47 nft_meta_policy -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x122c5a21 nft_register_expr -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x1d376c35 nft_meta_get_dump -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x1f3497d4 nft_meta_set_dump -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x1f51a520 nft_flowtable_lookup -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x3251d762 nf_tables_trans_destroy_flush_work -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x3457a75a nft_chain_validate -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x3667c758 nft_data_release -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x3c701dbd nft_dump_register -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x40ce9add nft_set_catchall_lookup -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x41844509 nf_tables_deactivate_set -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x41b71e65 nft_trace_enabled -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x4749fc27 nft_meta_get_init -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x4d9da27a nft_meta_set_destroy -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x5966fc53 nft_register_chain_type -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x6f02f9fe nft_data_init -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x736654ce nft_chain_validate_dependency -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x738adcae nft_obj_lookup -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x77310b4b nft_chain_validate_hooks -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x7feb0d98 nft_unregister_chain_type -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x87a293b5 nft_data_dump -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x8a79d660 nft_meta_set_validate -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x8b69e717 nft_do_chain -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x993dd176 nft_parse_register_store -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x9dcd64eb nf_tables_destroy_set -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xa04decdf nft_unregister_expr -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xaa157397 __nft_release_basechain -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xb6348a6e nf_tables_activate_set -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xc0d94004 nft_register_obj -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xcdae2e74 nf_tables_bind_set -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xd814ae68 nft_unregister_obj -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xd9b85a42 nft_request_module -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xdcabebc3 nft_obj_notify -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xde57b5f5 nft_parse_u32_check -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xe08105b0 nft_set_elem_destroy -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xe2b8cc13 nft_parse_register_load -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xeb9d767a nft_meta_get_eval -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xf47985ff nft_register_flowtable_type -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xf4cc3aa8 nft_meta_set_init -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xfa285f4d nft_set_lookup_global -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x57720cf7 nfnetlink_has_listeners -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x5c92e1c2 nfnetlink_subsys_register -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x5ce3b588 nfnl_lock -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x89ff89b0 nfnetlink_unicast -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x99f5e70f nfnetlink_send -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xc3f0ca4e nfnetlink_subsys_unregister -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xd7e06d8a nfnetlink_set_err -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xdb065657 nfnl_unlock -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xf26ecb4b nfnetlink_broadcast -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x261fe5ec nfnl_acct_overquota -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x3bb02644 nfnl_acct_find_get -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xbecf5d14 nfnl_acct_put -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xfe3ce012 nfnl_acct_update -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_osf 0x35eff5e0 nf_osf_fingers -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_osf 0xb04e91e1 nf_osf_match -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_osf 0xeb305bd9 nf_osf_find -EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0x130d7a32 nft_fib_dump -EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0x701b7148 nft_fib_store_result -EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0x90a2e4ee nft_fib_init -EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0xb313540b nft_fib_validate -EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x0166d9a2 nft_reject_dump -EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x1de558c1 nft_reject_icmpv6_code -EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x6081751d nft_reject_policy -EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x864e661f nft_reject_init -EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x87d679ac 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 0x1605e1b2 xt_hook_ops_alloc -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x1b13dd70 xt_compat_target_to_user -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x1e888b5e xt_match_to_user -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x221ed59a xt_compat_match_from_user -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x286c70ee xt_proto_init -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x44aa7146 xt_replace_table -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x4c31e598 xt_find_table_lock -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x5088f8d2 xt_compat_match_offset -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x59d3d6ff xt_request_find_target -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x7bce4603 xt_data_to_user -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x7d083b87 xt_check_match -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x807d2b2c xt_recseq -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x823edea5 xt_compat_add_offset -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x92fa8dcd xt_request_find_table_lock -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x98691980 xt_register_template -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x9c995c69 xt_percpu_counter_alloc -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x9cc3ef17 xt_check_target -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xa7c94f1d xt_compat_lock -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xa7d2fff7 xt_unregister_template -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xac46905a xt_compat_match_to_user -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xb07d2ff8 xt_table_unlock -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xb511d477 xt_target_to_user -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xb59d4644 xt_unregister_table -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xbfacb837 xt_percpu_counter_free -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xc6c01ad8 xt_compat_target_offset -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 0xd6fead60 xt_request_find_match -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xd7d5350b xt_compat_target_from_user -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xd9bb821b xt_copy_counters -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xddf68fc6 xt_find_revision -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xe411cc63 xt_register_table -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xfd226ebd xt_proto_fini -EXPORT_SYMBOL_GPL net/netfilter/xt_RATEEST 0x749320a6 xt_rateest_lookup -EXPORT_SYMBOL_GPL net/netfilter/xt_RATEEST 0xc15075a0 xt_rateest_put -EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0x34c8c028 nci_spi_read -EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0x636c00c1 nci_spi_allocate_spi -EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0x6ba182ac nci_spi_send -EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0x1e0625a5 nci_uart_set_config -EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0x33b970a3 nci_uart_unregister -EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0xaf228c52 nci_uart_register -EXPORT_SYMBOL_GPL net/nsh/nsh 0x513fde02 nsh_pop -EXPORT_SYMBOL_GPL net/nsh/nsh 0xbb42f02f nsh_push -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x2097385d ovs_netdev_tunnel_destroy -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x294e883e ovs_vport_ops_unregister -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x7ce7d5d4 ovs_netdev_link -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x93a8c889 ovs_vport_free -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xcb4d91ef ovs_vport_alloc -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xd5eb733d __ovs_vport_ops_register -EXPORT_SYMBOL_GPL net/psample/psample 0x4135570d psample_group_put -EXPORT_SYMBOL_GPL net/psample/psample 0x5ae541dc psample_group_get -EXPORT_SYMBOL_GPL net/psample/psample 0x7d892663 psample_group_take -EXPORT_SYMBOL_GPL net/psample/psample 0xcca00de1 psample_sample_packet -EXPORT_SYMBOL_GPL net/qrtr/qrtr 0x11d9be26 qrtr_endpoint_post -EXPORT_SYMBOL_GPL net/qrtr/qrtr 0x6d1f24ab qrtr_endpoint_register -EXPORT_SYMBOL_GPL net/qrtr/qrtr 0x8d25501f qrtr_ns_remove -EXPORT_SYMBOL_GPL net/qrtr/qrtr 0x93d3c63b 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 0x07232686 rds_info_register_func -EXPORT_SYMBOL_GPL net/rds/rds 0x110bffbd rds_atomic_send_complete -EXPORT_SYMBOL_GPL net/rds/rds 0x17a47299 rds_message_put -EXPORT_SYMBOL_GPL net/rds/rds 0x1c633a33 rds_inc_init -EXPORT_SYMBOL_GPL net/rds/rds 0x2b0d543c rds_message_add_extension -EXPORT_SYMBOL_GPL net/rds/rds 0x33daeb9c rds_connect_complete -EXPORT_SYMBOL_GPL net/rds/rds 0x355bedd9 rds_inc_path_init -EXPORT_SYMBOL_GPL net/rds/rds 0x36087aa4 rds_stats -EXPORT_SYMBOL_GPL net/rds/rds 0x3954f775 rds_send_path_reset -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 0x6303b0c1 rds_message_addref -EXPORT_SYMBOL_GPL net/rds/rds 0x75d4ef91 rds_conn_path_drop -EXPORT_SYMBOL_GPL net/rds/rds 0x7b399e66 rds_page_remainder_alloc -EXPORT_SYMBOL_GPL net/rds/rds 0x811edf24 rds_rdma_send_complete -EXPORT_SYMBOL_GPL net/rds/rds 0x85e4e520 rds_stats_info_copy -EXPORT_SYMBOL_GPL net/rds/rds 0x86f8073b rds_conn_connect_if_down -EXPORT_SYMBOL_GPL net/rds/rds 0x8995af4d rds_send_drop_acked -EXPORT_SYMBOL_GPL net/rds/rds 0x8c457e81 rds_trans_register -EXPORT_SYMBOL_GPL net/rds/rds 0x8e7df819 rds_conn_drop -EXPORT_SYMBOL_GPL net/rds/rds 0x92668680 rds_inc_put -EXPORT_SYMBOL_GPL net/rds/rds 0x957cadaf rds_message_unmapped -EXPORT_SYMBOL_GPL net/rds/rds 0x9644abbd rds_conn_destroy -EXPORT_SYMBOL_GPL net/rds/rds 0x9bec2ddb rds_info_deregister_func -EXPORT_SYMBOL_GPL net/rds/rds 0xb5f44a9e rds_send_xmit -EXPORT_SYMBOL_GPL net/rds/rds 0xbf504d89 rds_conn_path_connect_if_down -EXPORT_SYMBOL_GPL net/rds/rds 0xc2dab779 rds_info_copy -EXPORT_SYMBOL_GPL net/rds/rds 0xc6f966f4 rds_cong_map_updated -EXPORT_SYMBOL_GPL net/rds/rds 0xce0b824e rds_recv_incoming -EXPORT_SYMBOL_GPL net/rds/rds 0xd0c85284 rds_conn_create_outgoing -EXPORT_SYMBOL_GPL net/rds/rds 0xd154afc6 rds_for_each_conn_info -EXPORT_SYMBOL_GPL net/rds/rds 0xd1f144ed rds_send_ping -EXPORT_SYMBOL_GPL net/rds/rds 0xdf0288d4 rds_send_path_drop_acked -EXPORT_SYMBOL_GPL net/rds/rds 0xe7777217 rds_trans_unregister -EXPORT_SYMBOL_GPL net/rds/rds 0xe989d52a rds_connect_path_complete -EXPORT_SYMBOL_GPL net/rds/rds 0xf111d82b rds_conn_create -EXPORT_SYMBOL_GPL net/sched/sch_pie 0x2fcc1e98 pie_process_dequeue -EXPORT_SYMBOL_GPL net/sched/sch_pie 0x6ce9b467 pie_calculate_probability -EXPORT_SYMBOL_GPL net/sched/sch_pie 0xdef490b2 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 0x367119a8 sctp_for_each_endpoint -EXPORT_SYMBOL_GPL net/sctp/sctp 0xadc54c9d sctp_transport_lookup_process -EXPORT_SYMBOL_GPL net/sctp/sctp 0xe2b51ccb sctp_get_sctp_info -EXPORT_SYMBOL_GPL net/sctp/sctp 0xef063a08 sctp_transport_traverse_process -EXPORT_SYMBOL_GPL net/smc/smc 0x17a1a830 smc_proto6 -EXPORT_SYMBOL_GPL net/smc/smc 0x28ea4274 smcd_unregister_dev -EXPORT_SYMBOL_GPL net/smc/smc 0x2ea1e5e8 smcd_handle_event -EXPORT_SYMBOL_GPL net/smc/smc 0x4085a925 smc_hash_sk -EXPORT_SYMBOL_GPL net/smc/smc 0x607aa885 smcd_handle_irq -EXPORT_SYMBOL_GPL net/smc/smc 0x61545444 smcd_register_dev -EXPORT_SYMBOL_GPL net/smc/smc 0x81650b99 smcd_free_dev -EXPORT_SYMBOL_GPL net/smc/smc 0x98be724d smcd_alloc_dev -EXPORT_SYMBOL_GPL net/smc/smc 0x9aa48027 smc_unhash_sk -EXPORT_SYMBOL_GPL net/smc/smc 0xeda8b6c9 smc_proto -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x026a96a7 svcauth_gss_register_pseudoflavor -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x38d3dce5 g_make_token_header -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x482ac5a4 g_token_size -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xb8592503 gss_mech_unregister -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xbc70b568 svcauth_gss_flavor -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xc6359802 gss_mech_register -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xd7673035 g_verify_token_header -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x01b9bf34 xdr_enter_page -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x023c5f4c svc_xprt_put -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x03f37af7 rpc_task_timeout -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x048bcad4 cache_seq_stop_rcu -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0506ee0a put_rpccred -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 0x069df7af svc_find_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x08a8ed22 svc_unreg_xprt_class -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x09cf738e xdr_write_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0c17c343 svc_fill_write_vector -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0c9db69f xprt_disconnect_done -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0d0c9cd7 rpc_remove_pipe_dir_object -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0ed8c1f0 rpc_create -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0f40f5fc sunrpc_destroy_cache_detail -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0fa158b7 xdr_buf_trim -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x138e0149 svc_xprt_enqueue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x140cf64e rpc_clnt_swap_deactivate -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x177546b4 rpc_uaddr2sockaddr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x183015ba rpc_shutdown_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1894c00b rpc_max_bc_payload -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1911daa7 svc_recv -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1aef1de6 sunrpc_cache_unhash -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1bb8b23f xprt_complete_rqst -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1c5ab657 rpcauth_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1d385ae1 rpc_put_task -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1d74bbfa rpc_find_or_alloc_pipe_dir_object -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1da5bae1 rpc_prepare_reply_pages -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 0x1f36a89e rpc_alloc_iostats -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x22c0028e rpc_free -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x232fcfef bc_svc_process -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x237bf2ab svc_set_num_threads_sync -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x24533ec1 rpc_wake_up_first -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2560dbeb rpc_localaddr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x25cede80 svc_create -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2821300e xprt_reconnect_delay -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x28984d20 rpc_switch_client_transport -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2919b156 xdr_decode_string_inplace -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x29f2e3ce rpcauth_create -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2ae2ae45 rpcauth_lookupcred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2bebf412 svc_max_payload -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2cf3a43e rpc_count_iostats -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2dc96224 xprt_wait_for_reply_request_def -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2e89d82c rpc_get_sb_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2fe977e0 xprt_register_transport -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x30a0c259 svc_generic_rpcbind_set -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x31a89d59 rpc_debug -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x32b5ed89 xdr_stream_decode_string_dup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x32ead835 svc_proc_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3394a19c rpc_destroy_wait_queue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x33c1c61b cache_check -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x33ea9fcf rpc_clnt_xprt_switch_put -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x343373ea rpc_put_sb_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x378e1c0b xdr_encode_word -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x37a8f80a xprt_write_space -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x382d68f1 rpc_wake_up_queued_task -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x387e1639 rpc_pipefs_notifier_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x38de01c0 rpc_d_lookup_sb -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x399a1896 rpc_max_payload -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3b48c69a sunrpc_init_cache_detail -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3df7512a xprt_wake_pending_tasks -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3eba2fc3 xdr_decode_word -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3f2fe4af xdr_stream_decode_opaque_dup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3f9a2b0b rpcauth_get_gssinfo -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x41756d33 xprt_unpin_rqst -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x423ba5b4 rpc_wake_up_next -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x44785219 rpc_wake_up_status -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x44f5b311 xdr_stream_decode_string -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x453efa54 svc_pool_map -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4693e95f svc_create_pooled -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x48ec009b xdr_inline_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x49430a11 xprt_get -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4960593b xdr_reserve_space -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x49bb658e svc_rpcbind_set_version -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x49eacd51 rpcauth_wrap_req_encode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4a1ff6e2 svcauth_unix_purge -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4afedab1 xprtiod_workqueue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4dac77f0 xdr_encode_netobj -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4e8f6ca7 sunrpc_net_id -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4f2238ed svc_close_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4f8c2bdc rpc_wake_up -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5179492f xprt_pin_rqst -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x51a40d27 rpc_net_ns -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x51cc9b2f rpc_unlink -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x51f586a1 rpc_mkpipe_dentry -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x52353595 xprt_reconnect_backoff -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x52358b30 cache_unregister_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x53445f68 nlm_debug -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5483dc8a xdr_inline_decode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x548e8625 auth_domain_lookup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x549f46fe svc_rpcb_setup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5777f6cf rpc_pton -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x57cd0c3c rpc_machine_cred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x588a3b19 svc_exit_thread -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x58c3507e svc_xprt_copy_addrs -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5943907b svc_create_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5a435666 xdr_process_buf -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5a45ba31 svc_auth_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5b5bff20 svc_destroy -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5ddb1a84 svc_fill_symlink_pathname -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5e68c8dc svc_set_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5e82caec xdr_align_data -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5e961533 cache_create_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5fd64a39 cache_purge -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x62c7b414 svc_rqst_replace_page -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x636d70a2 rpc_call_async -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x65d0b156 svc_process -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x66da1197 xdr_init_decode_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x67dfc244 svc_wake_up -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x681e0f24 rpc_call_null -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x698917a6 rpc_exit -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x698e1e93 svc_rpcb_cleanup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x69e196d5 xprt_unregister_transport -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6a266fa3 rpcauth_stringify_acceptor -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6bb373c0 rpc_bind_new_program -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6bd772b5 rpc_malloc -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6f205837 rpc_destroy_pipe_data -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x71ab3684 rpc_set_connect_timeout -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x71d72ae1 xprt_release_xprt_cong -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x71fa908a cache_flush -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x74b71690 rpc_delay -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x75d5456d xdr_terminate_string -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x77a6fd62 xprt_setup_backchannel -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x78c1e52c svc_alien_sock -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7a3059c2 xprt_free -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7de53067 rpc_init_rtt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x846ba884 rpc_sleep_on_timeout -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x856c2dfb xdr_buf_subsegment -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x86532e84 svc_xprt_deferred_close -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x86c12f7f _copy_from_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x86f0be76 xprt_put -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x86feafd3 rpc_queue_upcall -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x875c324a rpc_add_pipe_dir_object -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8888e0ed rpcauth_init_cred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8a75d824 cache_register_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8b73adf6 rpc_clnt_show_stats -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8befec93 svc_auth_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8c74b65e rpc_free_iostats -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8ccdfa4f rpc_num_bc_slots -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8defe1ca rpc_clnt_xprt_switch_has_addr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8f8bcb58 xprt_force_disconnect -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8fa5597b csum_partial_copy_to_xdr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x90f8b8d4 cache_seq_start_rcu -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x93ad1eda xdr_buf_from_iov -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x93bc1783 rpc_init_pipe_dir_object -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x94bdeced rpc_init_priority_wait_queue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9646e1b5 svc_reserve -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x964dde1e rpcauth_destroy_credcache -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x965f25d1 xdr_shift_buf -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x96c95b8f auth_domain_find -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x976a9e55 sunrpc_cache_unregister_pipefs -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x97c3f4f8 rpcauth_init_credcache -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9911f766 svc_authenticate -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9b2a97ac xprt_destroy_backchannel -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9ca35f44 svc_addsock -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9f306417 rpc_restart_call_prepare -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9fabd9ce xprt_add_backlog -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa0e298ac rpc_init_wait_queue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa0e7d058 svc_xprt_received -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa1057662 svc_prepare_thread -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa13acdb8 svc_pool_map_put -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa37dfd69 xprt_release_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa7481df8 rpc_clnt_iterate_for_each_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa757c651 xprt_wake_up_backlog -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa75db429 xprt_reserve_xprt_cong -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa7d7906e xdr_encode_array2 -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa8bcc6c5 rpc_put_task_async -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xab25b25f svc_age_temp_xprts_now -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xab5a2004 rpc_pipe_generic_upcall -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xabee3279 rpc_clnt_setup_test_and_add_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xac9e5ce6 rpcb_getport_async -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xadceeb8d xprt_lookup_rqst -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaf5bf6ef nfs_debug -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb02d2c5b xdr_stream_subsegment -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb0b88389 write_bytes_to_xdr_buf -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb154ff3f rpc_clnt_swap_activate -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb28dfa36 rpc_sleep_on -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb312d0c4 svc_pool_map_get -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb34c6a64 auth_domain_put -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb34f70c0 rpc_proc_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb3e7af83 xprt_alloc -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb51a3724 rpc_pipefs_notifier_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb6117f62 svc_rqst_alloc -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb627899b xprt_adjust_cwnd -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb7d5479b __rpc_wait_for_completion_task -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb8519749 rpc_clnt_add_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb948eb76 svc_seq_show -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbb27f52c rpc_clone_client_set_auth -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbe0c6d8b rpc_peeraddr2str -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbeb2ed38 xprt_unlock_connect -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbf609e25 xdr_page_pos -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbf9d1b96 nfsd_debug -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc12435e3 rpc_calc_rto -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc240ba3e xdr_decode_array2 -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc3aa0ca5 xdr_expand_hole -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc457f591 rpc_sleep_on_priority_timeout -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc4f0c902 sunrpc_cache_update -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc5cfa623 cache_seq_next_rcu -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc629686b rpc_force_rebind -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc6361dcb xprt_wait_for_reply_request_rtt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc70592da sunrpc_cache_pipe_upcall_timeout -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc7b2f3c5 svc_reg_xprt_class -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc8e96dea qword_addhex -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc95c980a rpcauth_lookup_credcache -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xca0dd951 gssd_running -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xca776a8d svc_xprt_init -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcaec1775 svc_set_num_threads -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcc2591c3 xdr_init_encode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcd37c9e0 xprt_update_rtt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcd68f7df svc_print_addr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcd91e4da xprt_free_slot -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xce1c006b svc_sock_update_bufs -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xce678a59 xdr_decode_netobj -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcfc22613 rpc_call_sync -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd1ff73c6 rpc_sleep_on_priority -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd2e9d862 rpc_release_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd3a4de3f svc_xprt_do_enqueue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd3c06db3 xprt_lock_connect -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd52bba7a xdr_init_decode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd58889ae rpc_setbufsize -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd5a92884 rpcauth_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xda2b176a rpc_mkpipe_data -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdc507923 rpc_clnt_test_and_add_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdcbedbe5 rpc_peeraddr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdd691402 xprt_find_transport_ident -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xde489a5b svcauth_unix_set_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdf491585 svc_drop -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdf9ae97c xprt_alloc_slot -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe03b361d rpc_killall_tasks -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe1e39164 rpc_call_start -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe48476e0 svc_rqst_free -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe53c91bd svc_bind -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe5919cb1 xdr_encode_opaque -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe5af13a5 sunrpc_cache_pipe_upcall -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe5cce50f rpc_proc_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe6d9c695 rpc_task_release_transport -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe7820f5b svc_shutdown_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe97f4ce5 qword_get -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe999e1f1 sunrpc_cache_lookup_rcu -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe9c299f4 rpc_run_task -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xea26e279 svc_encode_result_payload -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xea300318 rpc_clone_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xea6e75c5 sunrpc_cache_register_pipefs -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeb3ff5bf xdr_stream_pos -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeb554e2f xprt_reserve_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xed0b184e xdr_reserve_space_vec -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 0xef274b64 read_bytes_from_xdr_buf -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf05dbe38 svc_xprt_names -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf1040e33 rpc_restart_call -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf180c916 svc_generic_init_request -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf25201ed xdr_stream_decode_opaque -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf259e5b8 rpcauth_unwrap_resp_decode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf35b9472 rpc_clnt_xprt_switch_add_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf61b755d xprt_release_rqst_cong -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf7ad3807 xdr_read_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf85e9be7 rpc_count_iostats_metrics -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf9df8111 svc_proc_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfa23ba52 xprt_wait_for_buffer_space -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfa675569 rpc_init_pipe_dir_head -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfd7d6672 unix_domain_find -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfe57c47c xdr_commit_encode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfe9f6def cache_destroy_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfedcff7b xprt_request_get_cong -EXPORT_SYMBOL_GPL net/tls/tls 0x6bfa0644 tls_encrypt_skb -EXPORT_SYMBOL_GPL net/tls/tls 0x8172b7f8 tls_validate_xmit_skb -EXPORT_SYMBOL_GPL net/tls/tls 0x8a50f9e2 tls_device_sk_destruct -EXPORT_SYMBOL_GPL net/tls/tls 0xf31213df 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 0x049386c5 virtio_transport_release -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x054f3d52 virtio_transport_stream_enqueue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x06696cc9 virtio_transport_notify_send_post_enqueue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x1376468c virtio_transport_shutdown -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x138ca7c7 virtio_transport_notify_recv_post_dequeue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x170ddb38 virtio_transport_inc_tx_pkt -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x20c9cbad virtio_transport_notify_send_pre_block -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x27a8f876 virtio_transport_dgram_bind -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x2a1e30ea virtio_transport_get_credit -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x301417c4 virtio_transport_notify_recv_init -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x32d110c5 virtio_transport_destruct -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x5f5305f3 virtio_transport_deliver_tap_pkt -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x62111cd2 virtio_transport_stream_rcvhiwat -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x625351f2 virtio_transport_free_pkt -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x6273f3d5 virtio_transport_notify_send_init -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x62fef3db virtio_transport_dgram_enqueue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x632a8885 virtio_transport_seqpacket_dequeue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x79c5a943 virtio_transport_stream_has_data -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x80832cae virtio_transport_stream_dequeue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x8f386b50 virtio_transport_stream_has_space -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x910c9ae6 virtio_transport_notify_poll_in -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x91f6357e virtio_transport_notify_buffer_size -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x95f66f9c virtio_transport_seqpacket_enqueue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xa24cd186 virtio_transport_notify_recv_pre_dequeue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xa99cc92e virtio_transport_connect -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xb0033ffc virtio_transport_dgram_dequeue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xbabd30f5 virtio_transport_dgram_allow -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xbfb2463a virtio_transport_notify_poll_out -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xc17310c3 virtio_transport_seqpacket_has_data -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xc49bf72c virtio_transport_do_socket_init -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xd2114f0d virtio_transport_recv_pkt -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xd45c154f virtio_transport_notify_recv_pre_block -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xdb03e5e1 virtio_transport_put_credit -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xea518e1c virtio_transport_stream_is_active -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xf3fdd6ca virtio_transport_notify_send_pre_enqueue -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x0e9bc9b6 vsock_addr_unbind -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x1b22e3bd vsock_assign_transport -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x1e091d9d vsock_core_get_transport -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 0x3f1fa12f vsock_remove_connected -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x4525c608 vsock_deliver_tap -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x4b99648c vsock_addr_bound -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x548b9e2c vsock_stream_has_data -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x6d1bef97 vsock_create_connected -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x77c14317 vsock_addr_cast -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x7ef22371 vsock_find_bound_socket -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x85b9da97 vsock_table_lock -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x860596dd vsock_insert_connected -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x90aa8549 vsock_find_cid -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x9b708131 vsock_core_register -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x9bb6fd09 vsock_connected_table -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xa76ecb46 vsock_core_unregister -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xaf2674b5 vsock_addr_equals_addr -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xb710e070 vsock_add_pending -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xbff88511 vsock_remove_sock -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xca9469f9 vsock_remove_pending -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xcf472787 vsock_enqueue_accept -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xd5a951d9 vsock_for_each_connected_socket -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xd7904cf8 vsock_remove_tap -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xddc8ca44 vsock_stream_has_space -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xec96eadf vsock_addr_validate -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xf14c384f vsock_find_connected_socket -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xfbf36cc2 vsock_remove_bound -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xfe377acb vsock_add_tap -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x0ae1dfec cfg80211_vendor_cmd_reply -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x1e9acef9 cfg80211_wext_giwrts -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x261df997 cfg80211_wext_giwrange -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x263b1339 cfg80211_pmsr_report -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x2db5c712 cfg80211_wext_giwname -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x40002c0d cfg80211_wext_giwmode -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x42ae2d8c cfg80211_wext_siwrts -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x513947fa cfg80211_vendor_cmd_get_sender -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x62696dbb cfg80211_wext_siwscan -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x72200d8f cfg80211_wext_giwscan -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x7851252c cfg80211_shutdown_all_interfaces -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x8675a9b9 cfg80211_pmsr_complete -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xce1a350c cfg80211_wext_giwfrag -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xceeba820 cfg80211_wext_siwmode -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xee29845c cfg80211_wext_siwfrag -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xf4406300 cfg80211_wext_giwretry -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x0049ca83 xfrm_aead_get_byname -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x00c80741 xfrm_ealg_get_byid -EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x0a575945 xfrm_count_pfkey_auth_supported -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 0x02dbb9d7 ipcomp_output -EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x59d81f9b ipcomp_input -EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0xa45d6889 ipcomp_init_state -EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0xd154fffb ipcomp_destroy -EXPORT_SYMBOL_GPL net/xfrm/xfrm_user 0x4a0c7516 xfrm_msg_min -EXPORT_SYMBOL_GPL net/xfrm/xfrm_user 0xe2521b1c xfrma_policy -EXPORT_SYMBOL_GPL sound/ac97_bus 0xff3bc8fd 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 0x02bd2849 snd_card_ref -EXPORT_SYMBOL_GPL sound/core/snd 0x05b7afb0 snd_ctl_disconnect_layer -EXPORT_SYMBOL_GPL sound/core/snd 0x1a0fd6c8 snd_card_add_dev_attr -EXPORT_SYMBOL_GPL sound/core/snd 0x20959a3f snd_device_initialize -EXPORT_SYMBOL_GPL sound/core/snd 0x324dccc6 snd_ctl_activate_id -EXPORT_SYMBOL_GPL sound/core/snd 0x56e6ee19 snd_devm_card_new -EXPORT_SYMBOL_GPL sound/core/snd 0x5af762f1 snd_fasync_free -EXPORT_SYMBOL_GPL sound/core/snd 0x5c0b10e3 snd_ctl_add_vmaster_hook -EXPORT_SYMBOL_GPL sound/core/snd 0x62414b29 snd_ctl_apply_vmaster_followers -EXPORT_SYMBOL_GPL sound/core/snd 0x6319dcfa snd_power_ref_and_wait -EXPORT_SYMBOL_GPL sound/core/snd 0x837976f7 snd_fasync_helper -EXPORT_SYMBOL_GPL sound/core/snd 0x86c6c91b snd_ctl_get_preferred_subdevice -EXPORT_SYMBOL_GPL sound/core/snd 0xaaf4bc6a snd_device_get_state -EXPORT_SYMBOL_GPL sound/core/snd 0xb20de249 snd_card_disconnect_sync -EXPORT_SYMBOL_GPL sound/core/snd 0xb2cdc1aa snd_ctl_register_layer -EXPORT_SYMBOL_GPL sound/core/snd 0xc88aef55 snd_card_rw_proc_new -EXPORT_SYMBOL_GPL sound/core/snd 0xced89b3b snd_device_disconnect -EXPORT_SYMBOL_GPL sound/core/snd 0xd3b43478 snd_ctl_sync_vmaster -EXPORT_SYMBOL_GPL sound/core/snd 0xe7f0d1bb snd_card_free_on_error -EXPORT_SYMBOL_GPL sound/core/snd 0xf8f2a4eb snd_kill_fasync -EXPORT_SYMBOL_GPL sound/core/snd 0xfaf598c6 snd_ctl_request_layer -EXPORT_SYMBOL_GPL sound/core/snd-compress 0x51ff03ff snd_compr_stop_error -EXPORT_SYMBOL_GPL sound/core/snd-compress 0xb27bb7eb 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 0x214fd778 snd_pcm_stream_unlock -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x3cd40b8f snd_pcm_hw_constraint_eld -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x488269ca _snd_pcm_stream_lock_irqsave_nested -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x52a7b7e9 snd_pcm_stream_unlock_irqrestore -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x55e7132e _snd_pcm_stream_lock_irqsave -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x5c407196 snd_pcm_fill_iec958_consumer_hw_params -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x649892e8 snd_pcm_create_iec958_consumer_default -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x68a236fe snd_pcm_add_chmap_ctls -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x6c958522 snd_pcm_stop_xrun -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x726b8897 snd_devm_alloc_pages -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x8263d7d1 snd_pcm_stream_lock_irq -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x8d864069 snd_pcm_rate_range_to_bits -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x8e469c29 snd_pcm_stream_unlock_irq -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x99a95826 snd_pcm_stream_lock -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 0xadf1436d snd_pcm_lib_default_mmap -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xfb04144c snd_pcm_fill_iec958_consumer -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x045673f1 snd_dmaengine_pcm_pointer_no_residue -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x04cba9ad snd_dmaengine_pcm_open_request_chan -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x3f1ef099 snd_dmaengine_pcm_request_channel -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x41b55506 snd_dmaengine_pcm_refine_runtime_hwparams -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x438a2b77 snd_dmaengine_pcm_close_release_chan -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x6d0ae0bf snd_dmaengine_pcm_get_chan -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x7936348a snd_dmaengine_pcm_trigger -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xa6b2b58f snd_dmaengine_pcm_set_config_from_dai_data -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xb5947efa snd_dmaengine_pcm_pointer -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xc7d6f139 snd_dmaengine_pcm_close -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xe06735f6 snd_hwparams_to_dma_slave_config -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xf6a69ded snd_dmaengine_pcm_open -EXPORT_SYMBOL_GPL sound/core/snd-seq-device 0x9f46392d snd_seq_driver_unregister -EXPORT_SYMBOL_GPL sound/core/snd-seq-device 0xf78a75e2 __snd_seq_driver_register -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x0e04a510 amdtp_am824_set_midi_position -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x1100cc11 amdtp_domain_stream_pcm_ack -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x1ba34250 amdtp_am824_set_pcm_position -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x290bfe4b amdtp_am824_set_parameters -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x5bb1fb58 amdtp_am824_init -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x666a5b2d amdtp_am824_add_pcm_hw_constraints -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x6933ae17 amdtp_domain_start -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x6951bcfc amdtp_domain_stop -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x7e02f334 amdtp_am824_midi_trigger -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xb14eee2f amdtp_domain_init -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xbbdfd00d amdtp_domain_stream_pcm_pointer -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xfb134041 amdtp_domain_add_stream -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xfe50c2d6 amdtp_domain_destroy -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x00177e32 hdac_get_device_id -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x033775c8 snd_hdac_bus_init -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x038f15e2 snd_hdac_set_codec_wakeup -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x04b81aa8 snd_hdac_acomp_register_notifier -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x053e67a2 snd_hdac_stop_streams_and_chip -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x05636f93 snd_hdac_aligned_read -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x08fb0a18 snd_hdac_read_parm_uncached -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x09ba7053 snd_hdac_get_stream -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0cdda121 snd_hdac_stream_sync -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0ebc7c89 snd_hdac_acomp_init -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0f15f3f6 snd_hdac_read -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x144bce50 snd_hdac_bus_free_stream_pages -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1488641f snd_hdac_aligned_write -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x14f30dbc snd_hdac_regmap_sync -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x18622dc5 snd_hdac_stream_sync_trigger -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x18dbcabb snd_hdac_stream_clear -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1be2bb08 snd_hdac_bus_init_chip -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1c888533 snd_hdac_power_up -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x222218cb snd_hdac_regmap_add_vendor_verb -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x22e8a073 snd_hdac_regmap_exit -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x24b7f3ae snd_hdac_bus_update_rirb -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x24f3eb83 snd_hdac_regmap_write_raw -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x25ce6b69 snd_hdac_get_connections -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x28b1ee7d snd_hdac_stream_reset -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2c01cf28 snd_hdac_bus_reset_link -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x31840c10 snd_hdac_bus_stop_chip -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x33996a99 snd_hdac_refresh_widgets -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x367f7f96 snd_hdac_codec_link_up -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3bd544c2 snd_hdac_get_active_channels -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3ccd76c7 snd_hdac_acomp_get_eld -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x407469a2 snd_hdac_query_supported_pcm -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4357a24c snd_hdac_stream_release -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x46ed4f7b snd_hdac_device_exit -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x49707ed1 snd_hdac_regmap_update_raw_once -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4bc1e07a snd_hdac_stream_start -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4c7ec4b6 snd_hdac_get_ch_alloc_from_ca -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x58b304fa snd_hdac_bus_enter_link_reset -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5c07cb49 snd_hdac_calc_stream_format -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x64b9e3a3 _snd_hdac_read_parm -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x66392d88 snd_hdac_stream_setup -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x67bfe791 snd_hdac_spk_to_chmap -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x69d9933c snd_hdac_check_power_state -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x6cbc19ce snd_hdac_regmap_init -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x6d28a828 snd_hdac_stop_streams -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x6e37ba5f snd_hdac_bus_send_cmd -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7418482c snd_hdac_stream_setup_periods -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x76229a2a snd_hdac_stream_stop -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x76cc0ca6 snd_hdac_setup_channel_mapping -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x77c754a8 snd_hdac_chmap_to_spk_mask -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7cd25c0d snd_hdac_bus_stop_cmd_io -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7e68cec8 snd_hdac_bus_link_power -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7ea6ddf7 snd_hdac_get_sub_nodes -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7f1d2954 snd_hdac_bus_exec_verb_unlocked -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x809bcfe8 snd_hdac_stream_cleanup -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x835d813b snd_hdac_channel_allocation -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x862cb2e5 snd_hdac_display_power -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x87745cd1 snd_hdac_sync_audio_rate -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8af809d4 snd_hdac_device_set_chip_name -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x91d8db39 snd_hdac_dsp_trigger -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x921518fb snd_hdac_bus_exit -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9270fe4a snd_hdac_sync_power_state -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x97be7cce snd_hdac_bus_handle_stream_irq -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9a85051a snd_hdac_override_parm -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9a8e1877 snd_array_free -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9d2c5621 snd_hdac_is_supported_format -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9d8e1cae snd_hdac_bus_init_cmd_io -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9e42615c snd_hdac_regmap_read_raw -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa6443ae7 snd_hdac_codec_modalias -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xab0ebc62 snd_hdac_device_register -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xac24bce7 snd_hdac_bus_get_response -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xaf08be1d snd_hdac_device_unregister -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb4427f7d snd_hdac_bus_alloc_stream_pages -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbbc6fd7c snd_hdac_power_down -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbe7dd7dc snd_array_new -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbefa2a66 snd_hdac_codec_write -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc05313f8 snd_hdac_power_down_pm -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc46f7d39 snd_hdac_bus_parse_capabilities -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc5e12aa1 snd_hdac_codec_read -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc62d6f3c snd_hdac_acomp_exit -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc7f5c5f3 snd_hdac_stream_timecounter_init -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc906856d snd_hdac_stream_assign -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xcd1746cb snd_hdac_power_up_pm -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xcf121d46 snd_hda_bus_type -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd0332acc snd_hdac_codec_link_down -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd077ce4e snd_hdac_stream_set_params -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe4e07754 snd_hdac_print_channel_allocation -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe53d1b2d snd_hdac_add_chmap_ctls -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe67a9478 snd_hdac_dsp_cleanup -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe827f136 snd_hdac_device_init -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe9e450ee snd_hdac_register_chmap_ops -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf50ac254 snd_hdac_regmap_update_raw -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf693bef9 snd_hdac_get_stream_stripe_ctl -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf973ee16 snd_hdac_stream_init -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xfe07e12b snd_hdac_dsp_prepare -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xffb3ac84 snd_hdac_bus_exit_link_reset -EXPORT_SYMBOL_GPL sound/hda/snd-intel-dspcfg 0x13a7b162 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 0x64ba961d intel_nhlt_get_dmic_geo -EXPORT_SYMBOL_GPL sound/hda/snd-intel-dspcfg 0x9752c9c0 snd_intel_dsp_driver_probe -EXPORT_SYMBOL_GPL sound/hda/snd-intel-dspcfg 0x9c8d79d7 intel_nhlt_init -EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x10ca491e snd_ak4113_external_rate -EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x3908a181 snd_ak4113_build -EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x4201f5b6 snd_ak4113_create -EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x7f1900ae snd_ak4113_check_rate_and_errors -EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xa142a423 snd_ak4113_reinit -EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xdd085260 snd_ak4113_reg_write -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0010b5c5 snd_hda_jack_detect_state_mst -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x03b3ba77 snd_hda_jack_set_dirty_all -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0402454c snd_hda_multi_out_dig_prepare -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0425ea81 azx_get_pos_posbuf -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x059a86d1 is_jack_detectable -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 0x0822efdb azx_get_pos_lpib -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0ab1e7bd snd_hda_codec_new -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0ca17316 snd_hda_jack_add_kctls -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0cb5c98d snd_hda_enable_beep_device -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0e46b5fe snd_hda_jack_pin_sense -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x10ff547c snd_hda_multi_out_dig_close -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x115cff0e hda_codec_driver_unregister -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x13ad585a snd_hda_pick_fixup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x14bd8b70 snd_hda_codec_amp_init_stereo -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1651a265 snd_hda_codec_get_pincfg -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1a9309b0 snd_hda_jack_poll_all -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1d10621a snd_hda_jack_detect_enable -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1e048f21 snd_hda_codec_load_dsp_prepare -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1e738655 snd_hda_pick_pin_fixup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x24439d68 snd_hda_jack_add_kctl_mst -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x263f244b snd_hda_codec_set_name -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x268d428f snd_hda_get_hint -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x298b4954 snd_hda_jack_report_sync -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2a2af907 __snd_hda_add_vmaster -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2ac1b936 snd_hda_get_int_hint -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2e729787 hda_get_autocfg_input_label -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2f863fe4 snd_hda_codec_parse_pcms -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x31964301 snd_hda_jack_set_gating_jack -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x37f0fec7 snd_hda_codec_pcm_put -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x37f50eda snd_hda_multi_out_analog_cleanup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x38ce402b azx_interrupt -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3b626c13 snd_hda_override_conn_list -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4200d45c snd_hda_spdif_ctls_unassign -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x44a75072 snd_hda_mixer_amp_tlv -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x46f6904f snd_hda_apply_fixup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4722cd33 azx_init_chip -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4c60f383 azx_stop_all_streams -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x525ea235 snd_hda_codec_build_controls -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x55bb8f07 snd_hda_codec_set_power_to_all -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x55eddac3 snd_hda_jack_bind_keymap -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x57f7a362 snd_hda_codec_amp_stereo -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5c1be33e snd_hda_jack_detect_enable_callback_mst -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5d32681c snd_hda_codec_cleanup_for_unbind -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5d643211 snd_hda_codec_get_pin_target -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5eabf498 snd_hda_unlock_devices -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x60ece2ef snd_hda_mixer_amp_switch_get_beep -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x610b367b snd_hda_get_bool_hint -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x61723c4d snd_hda_add_imux_item -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x61e16a22 snd_hda_get_connections -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x64853d07 snd_hda_spdif_ctls_assign -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x68d348ad snd_hda_attach_beep_device -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6cb2210f snd_hda_codec_device_new -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6e7607b8 snd_hda_apply_verbs -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x707266fa azx_codec_configure -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7303a8f1 snd_hda_enum_helper_info -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7372cc46 snd_hda_codec_configure -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x74b23015 snd_hda_codec_load_dsp_trigger -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x751f51f3 snd_hda_get_dev_select -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x754cc5ee snd_hda_codec_cleanup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7dc3c033 snd_hda_jack_tbl_get_mst -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x811471ca snd_hda_add_verbs -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x811aadb3 snd_hda_input_mux_put -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8224f5f6 snd_hda_codec_set_pin_target -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x867264e1 snd_hda_add_nid -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8683f43b snd_hda_multi_out_dig_open -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x86c44c93 snd_hda_add_new_ctls -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8744b1dc snd_hda_codec_update_widgets -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x894f0064 azx_stop_chip -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8a222445 azx_bus_init -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8c94ad7a snd_hda_codec_prepare -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x910f82a8 snd_hda_create_spdif_share_sw -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9251ffb6 query_amp_caps -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x92979741 snd_hda_override_amp_caps -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x92b10e4e __snd_hda_apply_fixup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x954dcc87 snd_hda_set_vmaster_tlv -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x971afe46 snd_hda_mixer_amp_volume_info -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9b1bc2eb snd_hda_get_conn_index -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9e231d4f snd_hda_check_amp_caps -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9ec2ab28 snd_hda_jack_set_button_state -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa4f0e003 azx_get_position -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa5714b4c snd_hda_codec_amp_update -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa5ea6a11 snd_hda_shutup_pins -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa5f3f848 snd_hda_jack_tbl_get_from_tag -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa6febbca snd_hda_create_dig_out_ctls -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa805a251 snd_hda_mixer_amp_volume_put -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xaa27e4d0 snd_hda_get_num_devices -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xaa5dbe2d _snd_hda_set_pin_ctl -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xab2eb037 snd_hda_codec_load_dsp_cleanup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xaf569f70 snd_hda_codec_setup_stream -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb1ea1abf snd_hda_spdif_out_of_nid -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb2e3eb9a snd_hda_codec_set_pincfg -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb436e21e azx_free_streams -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb80ed0c5 snd_hda_get_conn_list -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb8aa6d44 azx_probe_codecs -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb932e9d9 snd_hda_add_vmaster_hook -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbc6560df snd_hda_mixer_amp_volume_get -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbf6d1640 snd_hda_get_pin_label -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc050fc5b snd_hda_apply_pincfgs -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc0a65811 snd_hda_multi_out_dig_cleanup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc2bd2708 snd_hda_codec_pcm_new -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc31bade6 __hda_codec_driver_register -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc54064ce snd_hda_ctl_add -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc7b68062 snd_hda_mixer_amp_switch_put -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc8f24308 snd_hda_multi_out_analog_prepare -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc912f327 snd_hda_check_amp_list_power -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xcaa8e17d snd_hda_mixer_amp_switch_put_beep -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xcb0cfe49 snd_hda_codec_eapd_power_filter -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd3690ad1 __snd_hda_codec_cleanup_stream -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd3a5c4a4 snd_hda_load_patch -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd3d642ec snd_hda_mixer_amp_switch_get -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xdd069ac2 snd_hda_multi_out_analog_open -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xdeca00b0 snd_hda_jack_unsol_event -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe118de5d snd_pcm_2_1_chmaps -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe142f719 snd_hda_detach_beep_device -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe159f54d snd_hda_sequence_write -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe32df502 snd_hda_lock_devices -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xea3eca97 snd_hda_get_default_vref -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xeda3a721 snd_print_pcm_bits -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xedc660d7 snd_hda_find_mixer_ctl -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf18eec38 azx_init_streams -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf1a543fb snd_hda_codec_amp_init -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf365842d snd_hda_sync_vmaster_hook -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf36b324f snd_hda_set_power_save -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf3ba1dd5 snd_hda_parse_pin_defcfg -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf8a9dc75 snd_hda_mixer_amp_switch_info -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf8dc35ac snd_hda_input_mux_info -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfb6561b6 snd_hda_set_dev_select -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfbd70189 snd_hda_create_spdif_in_ctls -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfd138111 snd_hda_correct_pin_ctl -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x0470cda6 snd_hda_add_new_path -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x14f54116 snd_hda_gen_check_power_status -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x256c06f0 snd_hda_gen_add_micmute_led_cdev -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x280d4ac9 snd_hda_gen_add_mute_led_cdev -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x41e8f123 snd_hda_gen_build_controls -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x4202e6b0 snd_hda_gen_spec_init -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x4a67c238 snd_hda_gen_path_power_filter -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x59065cb7 snd_hda_gen_add_kctl -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x6760b8bd snd_hda_gen_init -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x76388fce snd_hda_gen_free -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 0x87a0bbe6 snd_hda_gen_line_automute -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x952e415c snd_hda_gen_hp_automute -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x9606e96d snd_hda_get_path_from_idx -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x9b42e25d snd_hda_gen_parse_auto_config -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xc5dab2ea snd_hda_gen_fix_pin_power -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xcfc9fa01 snd_hda_gen_mic_autoswitch -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xd1028f13 snd_hda_gen_stream_pm -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xd357f36f snd_hda_get_path_idx -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xd5afcc64 snd_hda_activate_path -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xd9ef91a2 snd_hda_gen_update_outputs -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xf2c95c12 snd_hda_gen_build_pcms -EXPORT_SYMBOL_GPL sound/soc/codecs/mt6359-accdet 0x21c14a28 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 0xa8128420 adau1372_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau1761 0x7e9dabb4 adau1761_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau1761 0xecfe4bc7 adau1761_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x0d94c33e adau17x1_volatile_register -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x4e7f8b56 adau17x1_dai_ops -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x72525157 adau17x1_readable_register -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x73b54c94 adau17x1_precious_register -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x80c4632f adau17x1_add_widgets -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x82682345 adau17x1_set_micbias_voltage -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0xaa4412d0 adau17x1_remove -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0xb433a2a2 adau17x1_add_routes -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0xd8e0037e adau17x1_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0xeb05ae51 adau17x1_resume -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau7118 0xe8451ed3 adau7118_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41 0x6c3ff6c1 cs35l41_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41 0xb1375191 cs35l41_pm_ops -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41 0xd5b57347 cs35l41_remove -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x25a1b6ee cs35l41_set_channels -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x40f24352 cs35l41_test_key_lock -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x499dfb0d cs35l41_regmap_spi -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x5fa8bd5d cs35l41_test_key_unlock -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x7c92b2f0 cs35l41_otp_unpack -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0xda21926c cs35l41_register_errata_patch -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0xfcfe0ebd cs35l41_boost_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0xffc8fdd2 cs35l41_regmap_i2c -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0x47cab736 cs4271_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0x7c83ef0e cs4271_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0x7d05786f cs4271_dt_ids -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x5246a3c8 cs42l51_remove -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x535b8f62 cs42l51_resume -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x548ad474 cs42l51_suspend -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x86de5948 cs42l51_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x941e0575 cs42l51_regmap -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x0245c4f2 cs42xx8_of_match -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x719c8948 cs42xx8_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x7cac7292 cs42888_data -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0xad57ccca cs42xx8_pm -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0xb7d164f9 cs42xx8_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0xcd3794c9 cs42448_data -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-da7219 0x0610431a da7219_aad_jack_det -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-da7219 0x4cf37a00 da7219_aad_init -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-da7219 0x7466c1f3 da7219_aad_exit -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-da7219 0xa439c3fd da7219_aad_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-es8328 0x2d149a68 es8328_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-es8328 0xe2f60c72 es8328_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98090 0x3d4c189e max98090_mic_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98373 0x34fab7a7 soc_codec_dev_max98373 -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98373 0x495b3914 max98373_slot_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98373 0xa70152cb max98373_reset -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98373 0xe8c83fde soc_codec_dev_max98373_sdw -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6358 0x0612efe9 mt6358_set_mtkaif_calibration_phase -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6358 0x673a52d3 mt6358_mtkaif_calibration_enable -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6358 0x784fc103 mt6358_mtkaif_calibration_disable -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6358 0xb66fd1c3 mt6358_set_mtkaif_protocol -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6359 0x525d0c77 mt6359_set_mtkaif_protocol -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6359 0x83088f67 mt6359_mtkaif_calibration_enable -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6359 0xb4a7844b mt6359_mtkaif_calibration_disable -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6359 0xc1335e35 mt6359_set_mtkaif_calibration_phase -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-nau8824 0xce873708 nau8824_enable_jack_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm1789-codec 0x5e060056 pcm1789_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm1789-codec 0x676605d6 pcm1789_common_exit -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm1789-codec 0xafd4b594 pcm1789_common_init -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm179x-codec 0x59b6ac7e pcm179x_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm179x-codec 0x5d4af2b1 pcm179x_common_init -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm186x 0x05a9b2ee pcm186x_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm186x 0x0f5383bf pcm186x_regmap -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0x5eeef50e pcm3168a_regmap -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0xca0206e8 pcm3168a_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0xce6502a0 pcm3168a_remove -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0xead8a4bc pcm3168a_pm_ops -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x592b650c pcm512x_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x7ef3263f pcm512x_regmap -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0xbdf3f632 pcm512x_pm_ops -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0xd425a830 pcm512x_remove -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rl6231 0x5dc92cdf rl6231_pll_calc -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rl6231 0x70617a04 rl6231_get_clk_info -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rl6231 0x8d7fa148 rl6231_get_pre_div -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rl6231 0xdba4502f rl6231_calc_dmic_clk -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5514-spi 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 0x354602e9 rt5640_sel_asrc_clk_src -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0x37d1127a rt5640_set_ovcd_params -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0x7b0b21d4 rt5640_detect_headset -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0x864c0bbf rt5640_enable_micbias1_for_ovcd -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0xa8e7b523 rt5640_dmic_enable -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0xb978712f rt5640_disable_micbias1_for_ovcd -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5645 0xb02fe107 rt5645_sel_asrc_clk_src -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5645 0xc3a502db rt5645_set_jack_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5659 0x61be1b1b rt5659_set_jack_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5663 0x48f24230 rt5663_sel_asrc_clk_src -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5677 0x57041808 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 0x0c62a145 rt5682_readable_register -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x20b3b76a 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 0x28ada259 rt5682_aif2_dai_ops -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x4a2e033f rt5682_reset -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x4b321baf 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 0x6eae9e8a rt5682_soc_component_dev -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x84b67deb rt5682_volatile_register -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x8a20a75c rt5682_calibrate -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0xb60d0b50 rt5682_register_dai_clks -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0xb897de56 rt5682_reg -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0xc39a195a rt5682_aif1_dai_ops -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0xf7a5e3d4 rt5682_apply_patch_list -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x00cb02a7 sigmadsp_reset -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x2474747b sigmadsp_restrict_params -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x86e780d3 devm_sigmadsp_init -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0xed57ea8a sigmadsp_attach -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0xee256ae1 sigmadsp_setup -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp-i2c 0x15a8db87 devm_sigmadsp_init_i2c -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp-regmap 0xa1725ee0 devm_sigmadsp_init_regmap -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ssm2602 0xba4cc8dd ssm2602_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ssm2602 0xdc55eb91 ssm2602_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tlv320aic32x4 0xdc191794 aic32x4_register_clocks -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tlv320aic3x 0xd38c4cf7 aic3x_regmap -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ts3a227e 0x13e0365b 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 0x3ca22d92 wcd938x_sdw_set_sdw_stream -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd938x-sdw 0x469c2fd9 wcd938x_swr_get_current_bank -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd938x-sdw 0xd21aeec8 wcd938x_sdw_hw_params -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd938x-sdw 0xe128ba34 wcd938x_sdw_device_get -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd938x-sdw 0xeb5226cc wcd938x_sdw_free -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x00288487 wm_adsp1_init -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x04098214 wm_adsp_fw_get -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x2afe5407 wm_adsp1_event -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x34eb2a87 wm_adsp_read_ctl -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x482b6c8b wm_adsp_compr_open -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x497ec81b 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 0x538654c9 wm_adsp_fw_enum -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x62b2fffa wm_adsp_compr_copy -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x6b7aff44 wm_adsp_compr_free -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x6f281ec6 wm_adsp_compr_pointer -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x6fedec83 wm_adsp2_component_remove -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x712ff42f wm_adsp2_preloader_get -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x75fb4cf2 wm_adsp_compr_get_caps -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x8bfd7689 wm_adsp2_set_dspclk -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x99865653 wm_adsp_compr_trigger -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xa2653b70 wm_adsp_fw_put -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xa3b2fe05 wm_adsp2_component_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xbad7c84f wm_adsp_compr_set_params -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xd1878055 wm_adsp2_remove -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xd7434d4b 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 0xe91ebc07 wm_halo_init -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xea38ee07 wm_halo_bus_error -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xebe37d89 wm_adsp2_init -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xf7ccabb5 wm_adsp_compr_handle_irq -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xf8d1d2d8 wm_adsp_write_ctl -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xfaa81585 wm_adsp_early_event -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x43e6a0c6 wm_hubs_handle_analogue_pdata -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x58b9bb99 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 0x6165d872 wm_hubs_hpl_mux -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x757206d5 wm_hubs_spkmix_tlv -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x8786ac85 wm_hubs_add_analogue_controls -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0xb66184eb wm_hubs_set_bias_level -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0xcc9dfba7 wm_hubs_add_analogue_routes -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0xdbbea9fe wm_hubs_vmid_ena -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0xe7682ede wm_hubs_update_class_w -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x1375798b wm8804_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x3a21cfc0 wm8804_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x9a5fac03 wm8804_pm -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0xce29e6b7 wm8804_remove -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8903 0x32406462 wm8903_mic_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8962 0x3bc98032 wm8962_mic_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8994 0x01647ec0 wm8958_mic_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8994 0x0a1a1004 wm8994_mic_detect -EXPORT_SYMBOL_GPL sound/soc/fsl/imx-pcm-dma 0xc9543823 imx_pcm_dma_init -EXPORT_SYMBOL_GPL sound/soc/fsl/snd-soc-fsl-asrc 0xc4cc46cc 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 0x0bb9d327 audio_graph_parse_of -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x0d5104fc asoc_simple_init_priv -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x24d1f87f asoc_simple_parse_daifmt -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x2d3e041b asoc_simple_hw_params -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x30310f27 asoc_simple_startup -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x3ba5055e asoc_simple_parse_card_name -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x51ffe9f8 asoc_simple_parse_clk -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x69134136 asoc_graph_card_probe -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x76530816 asoc_simple_parse_routing -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x81121331 asoc_simple_shutdown -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x9272d082 asoc_simple_clean_reference -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x993ec74c asoc_simple_be_hw_params_fixup -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xa29b2659 asoc_simple_parse_pin_switches -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xa7a7b3b8 asoc_simple_set_dailink_name -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xb5369d3b asoc_simple_canonicalize_platform -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xbcf0297b asoc_simple_parse_convert -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xbdf28742 asoc_simple_init_jack -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xc4dcf891 asoc_simple_dai_init -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xcee4a691 asoc_simple_canonicalize_cpu -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xe1c21be2 asoc_simple_parse_widgets -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xe48c62a2 asoc_simple_remove -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 0x08a91d32 mtk_afe_fe_shutdown -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x1939efeb mtk_afe_combine_sub_dai -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x374de472 mtk_afe_fe_startup -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x3a25c043 mtk_memif_set_addr -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x46b4e6f9 mtk_afe_pcm_new -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x5783608f mtk_afe_pcm_pointer -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x5f6ae666 mtk_memif_set_format -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x64d0d357 mtk_memif_set_channel -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x66c097ca mtk_memif_set_rate_substream -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x68122c85 mtk_dynamic_irq_release -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x70095671 mtk_memif_set_enable -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x853515c0 mtk_afe_add_sub_dai_control -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x96d27d0e mtk_afe_fe_ops -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x9c4e16d7 mtk_afe_fe_hw_params -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xae393243 mtk_memif_set_rate -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xb3885c0a mtk_afe_suspend -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xb3eca8b3 mtk_afe_fe_hw_free -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xb821a3dd mtk_afe_fe_trigger -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xbbbf1898 mtk_memif_set_pbuf_size -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xcdad3981 mtk_afe_fe_prepare -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xdbd3280f mtk_memif_set_disable -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xe373877a mtk_afe_resume -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xe7cb97a4 mtk_dynamic_irq_acquire -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xf820228f mtk_afe_pcm_platform -EXPORT_SYMBOL_GPL sound/soc/mediatek/mt8195/snd-soc-mt8195-afe 0xc3cea5da mt8195_afe_disable_clk -EXPORT_SYMBOL_GPL sound/soc/mediatek/mt8195/snd-soc-mt8195-afe 0xe1dd82cc mt8195_afe_enable_clk -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0x092f80a0 axg_fifo_pcm_pointer -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0x0ccebc64 axg_fifo_pcm_new -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0x2ea0e6b1 axg_fifo_probe -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0x3323ebaa axg_fifo_pcm_hw_free -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0x50a00958 axg_fifo_pcm_hw_params -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0x68a0e379 axg_fifo_pcm_trigger -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0x7554c22c axg_fifo_pcm_open -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0xd5567335 g12a_fifo_pcm_hw_params -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0xd7ac0dd1 axg_fifo_pcm_close -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-tdm-formatter 0x2d6934b2 axg_tdm_stream_free -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-tdm-formatter 0x7a9859f3 axg_tdm_formatter_set_channel_masks -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-tdm-formatter 0x8befed57 axg_tdm_stream_start -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-tdm-formatter 0xb49ce84b axg_tdm_stream_alloc -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-tdm-formatter 0xdc314b31 axg_tdm_formatter_probe -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-tdm-formatter 0xe9b325f2 axg_tdm_formatter_event -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-tdm-formatter 0xf3a16d87 axg_tdm_stream_stop -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-tdm-interface 0xdd6bc8b8 axg_tdm_set_tdm_slots -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0x1bf40f4d meson_card_set_be_link -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0x26e5f732 meson_card_probe -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0x5ced8504 meson_card_reallocate_links -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0x97bef108 meson_card_set_fe_link -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0xb42086f6 meson_card_i2s_set_sysclk -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0xbd413044 meson_card_remove -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0xc029a52b meson_card_parse_dai -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0xc6bad960 meson_card_parse_daifmt -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-codec-glue 0x057137cb meson_codec_glue_output_startup -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-codec-glue 0x07f73d23 meson_codec_glue_input_set_fmt -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-codec-glue 0x14027e60 meson_codec_glue_input_hw_params -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-codec-glue 0x86fe999c meson_codec_glue_input_dai_probe -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-codec-glue 0x8acef005 meson_codec_glue_input_dai_remove -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-codec-glue 0xfd3bc83c 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 0xa671a0e8 q6adm_close -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6adm 0xae8b3020 q6adm_matrix_map -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6adm 0xfb7f151e 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 0xae0c05a6 q6afe_port_get_from_id -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6afe 0xae809786 q6afe_hdmi_port_prepare -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6afe 0xd4523c59 q6afe_i2s_port_prepare -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6afe 0xe45246a8 q6afe_port_start -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6afe 0xfaf22370 q6afe_tdm_port_prepare -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6afe 0xfe3f4086 q6afe_set_lpass_clock -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0x13b7efd9 q6asm_cmd -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0x1b6c77fc q6asm_stream_media_format_block_alac -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0x25bfa476 q6asm_open_write -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0x2b693eed q6asm_stream_media_format_block_wma_v9 -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 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 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 0xac4cef8b q6asm_audio_client_alloc -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0xb37ed108 q6asm_enc_cfg_blk_pcm_format_support -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 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 0x8b5c2ba6 asoc_qcom_lpass_cpu_platform_shutdown -EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0x9e966da0 asoc_qcom_lpass_cpu_platform_probe -EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0xa3f8b1b6 asoc_qcom_lpass_cpu_platform_remove -EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0xd56738d4 asoc_qcom_lpass_cpu_dai_ops -EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0xe53232be lpass_cpu_pcm_new -EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0xef9319dd asoc_qcom_lpass_cpu_dai_probe -EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-hdmi 0xcecbb55c asoc_qcom_lpass_hdmi_dai_ops -EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-platform 0x04175a2f asoc_qcom_lpass_platform_register -EXPORT_SYMBOL_GPL sound/soc/rockchip/snd-soc-rockchip-pcm 0x636456e4 rockchip_pcm_platform_register -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x00911e1a snd_soc_dpcm_be_can_update -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x05156b30 snd_soc_dapm_disable_pin -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x055d8bba snd_soc_dai_compr_set_params -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x07ec1031 snd_soc_jack_add_pins -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x09faa338 snd_soc_get_dai_name -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0a2c122d snd_soc_dai_set_tdm_slot -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0eb79c04 snd_soc_bytes_info_ext -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0f55b775 snd_soc_info_xr_sx -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x12933c81 snd_soc_dapm_init -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x14594f7e snd_soc_put_strobe -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1752b570 snd_soc_dapm_sync -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1796e070 snd_soc_add_component -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1936d628 snd_soc_component_set_sysclk -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x19c2edc6 snd_soc_card_add_dai_link -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x19dc8de0 snd_soc_dai_action -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1b2c0b84 snd_soc_of_parse_audio_simple_widgets -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1d70e9fa dapm_regulator_event -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1d76438a snd_soc_set_runtime_hwparams -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1f04e818 snd_soc_rtdcom_lookup -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1f2929bd snd_soc_dapm_put_volsw -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1fbf9f26 snd_soc_component_read_field -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1fe4ea6e snd_soc_component_compr_free -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1fec496c snd_soc_component_compr_get_codec_caps -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x20a2440f snd_soc_component_update_bits -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x24c989e8 snd_soc_component_disable_pin_unlocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2541a979 snd_soc_calc_frame_size -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x26105497 snd_soc_dapm_new_widgets -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x26e49c15 snd_soc_component_nc_pin -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x274d9018 snd_soc_dai_set_sysclk -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x279f2ea4 snd_soc_dai_set_fmt -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x286f5ab5 snd_soc_dpcm_can_be_params -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x28e01e6a snd_soc_dapm_get_volsw -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x29b12cbc devm_snd_dmaengine_pcm_register -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2ab778fe snd_soc_jack_free_gpios -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2bd56a70 snd_soc_unregister_component_by_driver -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2c4aa204 snd_soc_dai_active -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x30043d57 snd_soc_component_compr_pointer -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3105eb6b snd_soc_dapm_get_pin_status -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x31804157 snd_soc_dai_compr_pointer -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x340f302a snd_soc_close_delayed_work -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x34a326ee snd_soc_dai_compr_ack -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3588d6ba snd_soc_of_parse_audio_routing -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x35f16832 snd_soc_dapm_add_routes -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x365fb2f6 snd_soc_limit_volume -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3753bffb dapm_kcontrol_get_value -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3888f460 snd_soc_of_parse_node_prefix -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x38e0d653 snd_soc_dapm_get_pin_switch -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3a08700e null_dailink_component -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3b0c1975 snd_soc_of_parse_tdm_slot -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3c1947d1 snd_soc_dapm_new_control -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3d64fafb snd_soc_get_volsw -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3d6d6d6d snd_soc_info_volsw_sx -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3e39fcd8 snd_soc_unregister_component -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x405ccefc snd_soc_dapm_force_enable_pin_unlocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x411e867a snd_soc_tplg_component_remove -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4169b110 snd_soc_dapm_mixer_update_power -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x443b30e4 snd_soc_jack_report -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x445398a7 snd_soc_jack_notifier_register -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x46579a23 snd_dmaengine_pcm_prepare_slave_config -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x46e81edc snd_soc_component_write_field -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4714e823 snd_soc_find_dai_with_mutex -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4787d5fe snd_soc_of_get_slot_mask -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x48b1ec14 snd_soc_put_enum_double -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4c00c57a snd_soc_suspend -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4c55ce02 snd_soc_dai_compr_get_metadata -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4c90f19f snd_soc_component_set_jack -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4d1a8a35 snd_soc_component_compr_open -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4e14401b snd_soc_dai_set_clkdiv -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x50cea6cd snd_soc_component_exit_regmap -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x52419eb8 snd_soc_dai_get_channel_map -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x541b52b0 snd_soc_dai_compr_trigger -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5485fc2e snd_soc_dai_compr_set_metadata -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5571f509 snd_soc_dapm_mux_update_power -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5623c812 snd_soc_add_pcm_runtime -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5a15d7ca snd_soc_dapm_force_bias_level -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5a303d6a snd_soc_component_compr_get_params -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5b6dae2c snd_soc_link_compr_startup -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5b78ce45 snd_soc_dapm_update_dai -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5e479a36 snd_soc_jack_notifier_unregister -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5e5baf1b snd_soc_dpcm_fe_can_update -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5f1a20ca snd_soc_component_async_complete -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x60b0b8f9 snd_soc_dapm_put_pin_switch -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x60d1fb93 snd_soc_debugfs_root -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x64ff0ba7 snd_soc_runtime_calc_hw -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x65a90551 snd_soc_get_strobe -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x66117490 snd_soc_of_get_dai_name -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x674b1c4b snd_soc_component_compr_get_metadata -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x67fb1310 snd_soc_add_card_controls -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6a24c827 snd_soc_dapm_weak_routes -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6a5516bf snd_dmaengine_pcm_unregister -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6be51969 snd_soc_dapm_nc_pin -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7091a6f3 snd_soc_lookup_component_nolocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x72089fcc snd_soc_dapm_del_routes -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x725e66af snd_soc_component_get_pin_status -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x744a2389 snd_soc_find_dai -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7535ba00 snd_soc_jack_get_type -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x77fe09a0 snd_soc_get_pcm_runtime -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x79d4c978 snd_soc_jack_add_gpios -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7a32544a snd_soc_component_write -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7a4c5fa1 snd_soc_set_ac97_ops_of_reset -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7afacbd8 snd_soc_dapm_enable_pin -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7c69d7ff snd_soc_get_enum_double -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7c7d24c5 snd_soc_component_init_regmap -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7cab5cbf snd_soc_put_volsw -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7e25fc64 snd_soc_put_volsw_sx -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7e606130 snd_soc_calc_bclk -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7eeb9840 dpcm_be_dai_trigger -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x83491a0e snd_soc_component_enable_pin_unlocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8394e771 snd_soc_jack_add_zones -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x85dc7b77 snd_soc_dpcm_can_be_free_stop -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x872e0c9f snd_soc_put_volsw_range -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x891c56a4 snd_soc_new_ac97_component -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x89495054 snd_soc_daifmt_parse_format -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8d36d80f snd_soc_bytes_get -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8d36d8c4 snd_soc_register_card -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8ea281bf snd_soc_new_compress -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8f12a716 dapm_pinctrl_event -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8f65adee snd_soc_bytes_info -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9063288c snd_soc_free_ac97_component -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x953b1b22 snd_soc_dapm_nc_pin_unlocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x95b83fcd snd_soc_add_component_controls -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x96c51cea snd_soc_dai_is_dummy -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x96ccc6d4 snd_soc_dapm_stream_stop -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x98a09d84 snd_soc_info_volsw_range -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x98aef85a snd_soc_dapm_kcontrol_dapm -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x98fd58d1 snd_soc_component_initialize -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x99a0ec67 snd_soc_link_compr_shutdown -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9bfde704 snd_soc_daifmt_clock_provider_fliped -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9db466b8 snd_soc_set_ac97_ops -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9ecdb3ca snd_soc_component_update_bits_async -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa1b0bcae snd_soc_dapm_sync_unlocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa244ea18 snd_soc_component_set_pll -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa37ed72b snd_soc_runtime_action -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa7c0f9a2 snd_soc_lookup_component -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xaad3954f snd_soc_poweroff -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xab71f8ed snd_soc_dpcm_get_substream -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xab735537 snd_soc_dpcm_can_be_prepared -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xacbdd31b snd_soc_dai_set_pll -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xace07abe snd_soc_of_parse_aux_devs -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xae00c802 snd_soc_info_volsw -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xafda62b1 snd_soc_dapm_ignore_suspend -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xafeaddf3 snd_soc_component_compr_copy -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb13aad7d snd_soc_component_compr_ack -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb26bed5f snd_soc_put_xr_sx -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb2894f5b devm_snd_soc_register_component -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb3f63774 snd_soc_get_volsw_range -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb46a108c snd_soc_set_dmi_name -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb6bde325 snd_soc_component_read -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb6ffb43b snd_soc_cnew -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb77d097b snd_soc_bytes_put -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb7cfcd40 snd_soc_dai_digital_mute -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbb62c8d0 dapm_mark_endpoints_dirty -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbbaca2d3 snd_soc_component_compr_set_params -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbdd58fb2 snd_soc_info_enum_double -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbe7533b6 snd_soc_card_remove_dai_link -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbf571de5 snd_soc_component_compr_set_metadata -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbfb3d83c snd_soc_dapm_new_controls -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbfed5d77 snd_soc_register_component -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc26f1978 snd_soc_pm_ops -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc3514dca snd_soc_dapm_free -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc51d3cce snd_soc_dapm_info_pin_switch -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc63836a6 snd_soc_runtime_set_dai_fmt -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc8269f94 snd_soc_params_to_frame_size -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xca2767f4 snd_soc_dai_set_bclk_ratio -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcaa7806b snd_soc_component_compr_trigger -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcb34b01c snd_soc_dapm_put_enum_double -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcbe5a14e snd_soc_dai_compr_startup -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcbf16e82 snd_soc_bytes_tlv_callback -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcd7ae9a6 snd_soc_component_enable_pin -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xce3561f2 snd_soc_dapm_force_enable_pin -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xced09345 snd_soc_unregister_dai -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xced7d268 snd_dmaengine_pcm_register -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd01f456e snd_soc_dai_compr_shutdown -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd169d995 snd_soc_resume -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd1ada7cf soc_ac97_ops -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd5649f82 snd_soc_component_nc_pin_unlocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd7008384 snd_soc_dapm_enable_pin_unlocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd92babbe snd_soc_dai_link_set_capabilities -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd9865ebc snd_soc_component_compr_get_caps -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd9db1c25 dapm_clock_event -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xda3e8384 snd_soc_dpcm_runtime_update -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdad11ad9 snd_soc_add_dai_controls -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdcc2caf4 devm_snd_soc_register_card -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdf8aaa95 snd_soc_card_jack_new -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe036670b snd_soc_component_force_enable_pin -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe261e379 snd_soc_of_get_dai_link_codecs -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe306a793 snd_soc_dapm_kcontrol_widget -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe65a8ddb snd_soc_dai_set_tristate -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe72cf8ca snd_soc_of_put_dai_link_codecs -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe75f3ddb snd_soc_jack_add_gpiods -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe88ae1b8 snd_soc_component_force_enable_pin_unlocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xeb711ae7 snd_soc_params_to_bclk -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xee58cbe9 snd_soc_tplg_component_load -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xef83f4d6 snd_soc_component_test_bits -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf2d22920 snd_soc_get_dai_id -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf33f2e11 snd_soc_dapm_disable_pin_unlocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf38f5c7b devm_snd_soc_register_dai -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf3a44b1b snd_soc_get_xr_sx -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf4de095a snd_soc_dai_set_channel_map -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf50e000b snd_soc_remove_pcm_runtime -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf56a352b snd_soc_dai_compr_get_params -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf59f4077 snd_soc_unregister_card -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf6b21005 snd_soc_daifmt_parse_clock_provider_raw -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf6d7ebb3 snd_soc_of_parse_card_name -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf706d99d snd_soc_component_disable_pin -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf8232d1b snd_soc_card_get_kcontrol -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf9622dd1 snd_soc_daifmt_clock_provider_from_bitmap -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfa301d77 snd_soc_get_volsw_sx -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfafaefcc snd_soc_link_compr_set_params -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfd6faa84 snd_soc_dapm_get_enum_double -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfde5126c snd_soc_tplg_widget_bind_event -EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0x0b380139 snd_sof_free_debug -EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0x16cb7d01 snd_sof_debugfs_buf_item -EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0x3f58d73e snd_sof_dbg_memory_info_init -EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0x4c228480 snd_sof_debugfs_io_item -EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0xf9f7261a 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 0x4a941189 tegra_asoc_machine_init -EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-machine 0xfe694390 tegra_asoc_machine_probe -EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0x4050131c tegra_pcm_pointer -EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0x5fb54534 tegra_pcm_platform_register -EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0x773fbad2 tegra_pcm_hw_params -EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0x8c5607ea tegra_pcm_platform_register_with_chan_names -EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0x963dcc0e tegra_pcm_construct -EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0xcfd561e6 tegra_pcm_platform_unregister -EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0xfb2dc083 tegra_pcm_close -EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0xfdd41337 tegra_pcm_open -EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra20-das 0x0d54c9b9 tegra20_das_connect_dap_to_dac -EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra20-das 0xb52cfca4 tegra20_das_connect_dac_to_dap -EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra20-das 0xbced7431 tegra20_das_connect_dap_to_dap -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 0x60ceed4f edma_pcm_platform_register -EXPORT_SYMBOL_GPL sound/soc/ti/snd-soc-ti-sdma 0x550bc5f2 sdma_pcm_platform_register -EXPORT_SYMBOL_GPL sound/soc/ti/snd-soc-ti-udma 0xe3737650 udma_pcm_platform_register -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x202a1b1b line6_midi_id -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x2daed673 line6_version_request_async -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x3a039498 line6_write_data -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x48f24864 line6_send_raw_message -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x7067db50 line6_disconnect -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x73fc72fd line6_send_raw_message_async -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x85f9a143 line6_suspend -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x92ccf6c3 line6_alloc_sysex_buffer -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xa44caf22 line6_init_pcm -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xac160174 line6_resume -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xaf5b7409 line6_pcm_release -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xc6ea8958 line6_read_serial_number -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xe76c8e8e line6_pcm_acquire -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xed863ac4 line6_send_sysex_message -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xf294a7f1 line6_read_data -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xf4e37f59 line6_init_midi -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xfe3db2e0 line6_probe -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 0x0004af19 kthread_queue_delayed_work -EXPORT_SYMBOL_GPL vmlinux 0x000757dd ethnl_cable_test_step -EXPORT_SYMBOL_GPL vmlinux 0x00182c38 kill_pid_usb_asyncio -EXPORT_SYMBOL_GPL vmlinux 0x003b4001 crypto_stats_decompress -EXPORT_SYMBOL_GPL vmlinux 0x00464340 dma_free_pages -EXPORT_SYMBOL_GPL vmlinux 0x0049b4c3 regulator_desc_list_voltage_linear_range -EXPORT_SYMBOL_GPL vmlinux 0x00513f58 get_timespec64 -EXPORT_SYMBOL_GPL vmlinux 0x005bf152 usb_add_phy_dev -EXPORT_SYMBOL_GPL vmlinux 0x005c3d39 usb_wakeup_notification -EXPORT_SYMBOL_GPL vmlinux 0x00739241 pm_generic_thaw_noirq -EXPORT_SYMBOL_GPL vmlinux 0x0081e7f3 btree_destroy -EXPORT_SYMBOL_GPL vmlinux 0x00998aa6 devlink_dpipe_table_counter_enabled -EXPORT_SYMBOL_GPL vmlinux 0x00a1a10b crypto_unregister_shashes -EXPORT_SYMBOL_GPL vmlinux 0x00af6e5d power_supply_am_i_supplied -EXPORT_SYMBOL_GPL vmlinux 0x00c21738 msi_desc_to_pci_sysdata -EXPORT_SYMBOL_GPL vmlinux 0x00c731d3 sbitmap_bitmap_show -EXPORT_SYMBOL_GPL vmlinux 0x00d4c500 usb_decode_interval -EXPORT_SYMBOL_GPL vmlinux 0x00da9158 bpf_trace_run11 -EXPORT_SYMBOL_GPL vmlinux 0x00df9837 ioasid_register_allocator -EXPORT_SYMBOL_GPL vmlinux 0x00e0b84d mtk_pinconf_drive_set_raw -EXPORT_SYMBOL_GPL vmlinux 0x00e0ea53 irq_gc_mask_clr_bit -EXPORT_SYMBOL_GPL vmlinux 0x00e96528 ip6_sk_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0x0106d9a5 of_pm_clk_add_clk -EXPORT_SYMBOL_GPL vmlinux 0x010c85f5 fscrypt_set_test_dummy_encryption -EXPORT_SYMBOL_GPL vmlinux 0x010e7d68 raw_seq_stop -EXPORT_SYMBOL_GPL vmlinux 0x011d68d7 list_lru_destroy -EXPORT_SYMBOL_GPL vmlinux 0x0120a27f tty_ldisc_receive_buf -EXPORT_SYMBOL_GPL vmlinux 0x012bc1de __rio_local_write_config_16 -EXPORT_SYMBOL_GPL vmlinux 0x012e730e apei_exec_noop -EXPORT_SYMBOL_GPL vmlinux 0x013610a8 power_supply_powers -EXPORT_SYMBOL_GPL vmlinux 0x01424384 fwnode_usb_role_switch_get -EXPORT_SYMBOL_GPL vmlinux 0x01481b40 sfp_add_phy -EXPORT_SYMBOL_GPL vmlinux 0x0148cc3b kthread_flush_work -EXPORT_SYMBOL_GPL vmlinux 0x014e8186 cpu_scale -EXPORT_SYMBOL_GPL vmlinux 0x014f80cd devlink_trap_groups_register -EXPORT_SYMBOL_GPL vmlinux 0x01622643 mnt_want_write -EXPORT_SYMBOL_GPL vmlinux 0x016e00ab ata_sff_port_ops -EXPORT_SYMBOL_GPL vmlinux 0x016fe145 ata_pci_sff_init_one -EXPORT_SYMBOL_GPL vmlinux 0x017eb974 to_nvdimm_bus_dev -EXPORT_SYMBOL_GPL vmlinux 0x017f3a11 pci_epc_add_epf -EXPORT_SYMBOL_GPL vmlinux 0x01819a6c __traceiter_pelt_cfs_tp -EXPORT_SYMBOL_GPL vmlinux 0x01849844 hvc_remove -EXPORT_SYMBOL_GPL vmlinux 0x01866a57 ezx_pcap_set_bits -EXPORT_SYMBOL_GPL vmlinux 0x018f22e2 dev_pm_genpd_suspend -EXPORT_SYMBOL_GPL vmlinux 0x019717e8 dpcon_reset -EXPORT_SYMBOL_GPL vmlinux 0x019f96fa nf_checksum -EXPORT_SYMBOL_GPL vmlinux 0x01a0cb78 property_entries_free -EXPORT_SYMBOL_GPL vmlinux 0x01a62738 ata_host_put -EXPORT_SYMBOL_GPL vmlinux 0x01a71964 sched_trace_rq_avg_rt -EXPORT_SYMBOL_GPL vmlinux 0x01bd6d0b call_switchdev_blocking_notifiers -EXPORT_SYMBOL_GPL vmlinux 0x01c0b158 wm831x_bulk_read -EXPORT_SYMBOL_GPL vmlinux 0x01c31ca8 __rio_local_read_config_8 -EXPORT_SYMBOL_GPL vmlinux 0x01c6cb0c cpu_cluster_pm_enter -EXPORT_SYMBOL_GPL vmlinux 0x01e1a8de kgdb_breakpoint -EXPORT_SYMBOL_GPL vmlinux 0x01ee3461 __kthread_should_park -EXPORT_SYMBOL_GPL vmlinux 0x01f0fcd3 gpiod_get_index -EXPORT_SYMBOL_GPL vmlinux 0x01f4a139 regmap_register_patch -EXPORT_SYMBOL_GPL vmlinux 0x0207a6c6 reset_control_bulk_acquire -EXPORT_SYMBOL_GPL vmlinux 0x021d7bc4 init_dummy_netdev -EXPORT_SYMBOL_GPL vmlinux 0x0226c807 __blk_req_zone_write_unlock -EXPORT_SYMBOL_GPL vmlinux 0x02321364 clk_fixed_factor_ops -EXPORT_SYMBOL_GPL vmlinux 0x0232fa48 dev_pm_opp_get_max_transition_latency -EXPORT_SYMBOL_GPL vmlinux 0x02394899 play_idle_precise -EXPORT_SYMBOL_GPL vmlinux 0x0248697e blk_rq_prep_clone -EXPORT_SYMBOL_GPL vmlinux 0x024d13dd request_free_mem_region -EXPORT_SYMBOL_GPL vmlinux 0x029dd9d5 gnttab_batch_copy -EXPORT_SYMBOL_GPL vmlinux 0x02a572f3 acpi_dev_resume -EXPORT_SYMBOL_GPL vmlinux 0x02b32422 pci_sriov_set_totalvfs -EXPORT_SYMBOL_GPL vmlinux 0x02bea3f6 irq_chip_unmask_parent -EXPORT_SYMBOL_GPL vmlinux 0x02d82bd6 nvdimm_pmem_region_create -EXPORT_SYMBOL_GPL vmlinux 0x02f93a3a device_initialize -EXPORT_SYMBOL_GPL vmlinux 0x02fc9664 serdev_controller_remove -EXPORT_SYMBOL_GPL vmlinux 0x0312b3b0 reset_controller_add_lookup -EXPORT_SYMBOL_GPL vmlinux 0x0319a527 rtnl_put_cacheinfo -EXPORT_SYMBOL_GPL vmlinux 0x0321cdbf of_alias_get_highest_id -EXPORT_SYMBOL_GPL vmlinux 0x0333be84 ohci_init_driver -EXPORT_SYMBOL_GPL vmlinux 0x033832c7 usb_amd_hang_symptom_quirk -EXPORT_SYMBOL_GPL vmlinux 0x0343bdf1 __i2c_board_list -EXPORT_SYMBOL_GPL vmlinux 0x0353469c proc_mkdir_data -EXPORT_SYMBOL_GPL vmlinux 0x03628eaf clk_hw_rate_is_protected -EXPORT_SYMBOL_GPL vmlinux 0x03679fa5 dma_buf_pin -EXPORT_SYMBOL_GPL vmlinux 0x036b2bca __percpu_down_read -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 0x03785ddb gov_attr_set_get -EXPORT_SYMBOL_GPL vmlinux 0x03952887 ktime_add_safe -EXPORT_SYMBOL_GPL vmlinux 0x039e8965 mptcp_get_reset_option -EXPORT_SYMBOL_GPL vmlinux 0x03aafff9 irq_work_queue -EXPORT_SYMBOL_GPL vmlinux 0x03c12dfe cancel_work_sync -EXPORT_SYMBOL_GPL vmlinux 0x03ce7234 sched_smt_present -EXPORT_SYMBOL_GPL vmlinux 0x03eb60fa gnttab_map_refs -EXPORT_SYMBOL_GPL vmlinux 0x03ec6d2a blk_mq_rdma_map_queues -EXPORT_SYMBOL_GPL vmlinux 0x03fd55b4 ata_sff_hsm_move -EXPORT_SYMBOL_GPL vmlinux 0x0408a0b1 tty_release_struct -EXPORT_SYMBOL_GPL vmlinux 0x0412654b rhashtable_walk_stop -EXPORT_SYMBOL_GPL vmlinux 0x041f317a vp_modern_get_driver_features -EXPORT_SYMBOL_GPL vmlinux 0x042c9a04 em_cpu_get -EXPORT_SYMBOL_GPL vmlinux 0x042f1aca __traceiter_detach_device_from_domain -EXPORT_SYMBOL_GPL vmlinux 0x0433a083 fuse_dev_alloc_install -EXPORT_SYMBOL_GPL vmlinux 0x044b45dc clean_acked_data_enable -EXPORT_SYMBOL_GPL vmlinux 0x0465a073 regmap_reg_in_ranges -EXPORT_SYMBOL_GPL vmlinux 0x046f359e of_overlay_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0x046fc322 i2c_handle_smbus_host_notify -EXPORT_SYMBOL_GPL vmlinux 0x0472cf3b register_kprobe -EXPORT_SYMBOL_GPL vmlinux 0x04792cb7 fuse_request_end -EXPORT_SYMBOL_GPL vmlinux 0x047bf1a7 __fscrypt_prepare_setattr -EXPORT_SYMBOL_GPL vmlinux 0x047e23ea gpiod_set_raw_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0x0482fdca pm_clk_create -EXPORT_SYMBOL_GPL vmlinux 0x048328d9 xdp_do_redirect -EXPORT_SYMBOL_GPL vmlinux 0x048942bd crypto_register_akcipher -EXPORT_SYMBOL_GPL vmlinux 0x048b5f8d twl4030_audio_get_mclk -EXPORT_SYMBOL_GPL vmlinux 0x04967cd4 xfrm_state_mtu -EXPORT_SYMBOL_GPL vmlinux 0x0497bf7b aead_register_instance -EXPORT_SYMBOL_GPL vmlinux 0x049e5156 gnttab_try_end_foreign_access -EXPORT_SYMBOL_GPL vmlinux 0x04a9eb72 dev_pm_domain_attach_by_name -EXPORT_SYMBOL_GPL vmlinux 0x04b7e1a7 debugfs_real_fops -EXPORT_SYMBOL_GPL vmlinux 0x04bf0092 io_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x04c4f603 mpi_get_buffer -EXPORT_SYMBOL_GPL vmlinux 0x04c79ef2 usb_get_phy -EXPORT_SYMBOL_GPL vmlinux 0x04c8aebf console_verbose -EXPORT_SYMBOL_GPL vmlinux 0x04df8fbc lzo1x_decompress_safe -EXPORT_SYMBOL_GPL vmlinux 0x0513cc52 sdev_evt_send -EXPORT_SYMBOL_GPL vmlinux 0x05196b49 __cpuhp_state_add_instance -EXPORT_SYMBOL_GPL vmlinux 0x05250280 pernet_ops_rwsem -EXPORT_SYMBOL_GPL vmlinux 0x052c9aed ktime_get_real_fast_ns -EXPORT_SYMBOL_GPL vmlinux 0x052cbe6c regulator_list_voltage -EXPORT_SYMBOL_GPL vmlinux 0x05369268 sock_map_destroy -EXPORT_SYMBOL_GPL vmlinux 0x053d738a __SCK__tp_func_br_fdb_update -EXPORT_SYMBOL_GPL vmlinux 0x054e550b kernel_halt -EXPORT_SYMBOL_GPL vmlinux 0x055457e3 bio_associate_blkg_from_css -EXPORT_SYMBOL_GPL vmlinux 0x055764b4 mptcp_subflow_init_cookie_req -EXPORT_SYMBOL_GPL vmlinux 0x05610897 of_changeset_destroy -EXPORT_SYMBOL_GPL vmlinux 0x05641313 imx_clk_hw_sscg_pll -EXPORT_SYMBOL_GPL vmlinux 0x0570d467 regulator_get_drvdata -EXPORT_SYMBOL_GPL vmlinux 0x0579f736 xfrm_output_resume -EXPORT_SYMBOL_GPL vmlinux 0x057fbd7a __fib_lookup -EXPORT_SYMBOL_GPL vmlinux 0x0583b252 __traceiter_rpm_return_int -EXPORT_SYMBOL_GPL vmlinux 0x05883efb __traceiter_suspend_resume -EXPORT_SYMBOL_GPL vmlinux 0x058b7db4 dm_device_name -EXPORT_SYMBOL_GPL vmlinux 0x058c6377 for_each_kernel_tracepoint -EXPORT_SYMBOL_GPL vmlinux 0x058f9366 apei_exec_collect_resources -EXPORT_SYMBOL_GPL vmlinux 0x05bed764 misc_cg_uncharge -EXPORT_SYMBOL_GPL vmlinux 0x05c1711a phy_check_downshift -EXPORT_SYMBOL_GPL vmlinux 0x05e7672d subsys_dev_iter_init -EXPORT_SYMBOL_GPL vmlinux 0x05eb5f5a fsl_mc_bus_dpdbg_type -EXPORT_SYMBOL_GPL vmlinux 0x06055a23 __tracepoint_pelt_se_tp -EXPORT_SYMBOL_GPL vmlinux 0x0610a888 devfreq_cooling_register -EXPORT_SYMBOL_GPL vmlinux 0x06209f49 phy_lookup_setting -EXPORT_SYMBOL_GPL vmlinux 0x0626da5f od_unregister_powersave_bias_handler -EXPORT_SYMBOL_GPL vmlinux 0x062d1ca2 regulator_map_voltage_iterate -EXPORT_SYMBOL_GPL vmlinux 0x063104a9 gpiod_get_index_optional -EXPORT_SYMBOL_GPL vmlinux 0x0635a9c9 blkcg_policy_register -EXPORT_SYMBOL_GPL vmlinux 0x06380f93 xenbus_probe_devices -EXPORT_SYMBOL_GPL vmlinux 0x063e201f devlink_port_type_eth_set -EXPORT_SYMBOL_GPL vmlinux 0x063e9296 rpi_firmware_put -EXPORT_SYMBOL_GPL vmlinux 0x064019e7 pci_generic_config_write32 -EXPORT_SYMBOL_GPL vmlinux 0x064bcab1 of_regulator_match -EXPORT_SYMBOL_GPL vmlinux 0x064cd5e9 find_vpid -EXPORT_SYMBOL_GPL vmlinux 0x064db9a5 mark_mounts_for_expiry -EXPORT_SYMBOL_GPL vmlinux 0x06529f1c pci_reset_function_locked -EXPORT_SYMBOL_GPL vmlinux 0x0685eb62 device_match_fwnode -EXPORT_SYMBOL_GPL vmlinux 0x068aef42 tty_perform_flush -EXPORT_SYMBOL_GPL vmlinux 0x069297b7 usb_unlink_urb -EXPORT_SYMBOL_GPL vmlinux 0x06a011b2 ahci_platform_get_resources -EXPORT_SYMBOL_GPL vmlinux 0x06bc0054 kobject_create_and_add -EXPORT_SYMBOL_GPL vmlinux 0x06cca30b ring_buffer_record_off -EXPORT_SYMBOL_GPL vmlinux 0x06e149cb devlink_param_driverinit_value_set -EXPORT_SYMBOL_GPL vmlinux 0x06e4433e sunxi_ccu_set_mmc_timing_mode -EXPORT_SYMBOL_GPL vmlinux 0x06e83f40 devm_thermal_zone_of_sensor_unregister -EXPORT_SYMBOL_GPL vmlinux 0x06f0ab2d do_unbind_con_driver -EXPORT_SYMBOL_GPL vmlinux 0x06fff92a pm_genpd_opp_to_performance_state -EXPORT_SYMBOL_GPL vmlinux 0x0707019a context_tracking -EXPORT_SYMBOL_GPL vmlinux 0x0712f144 ahci_ops -EXPORT_SYMBOL_GPL vmlinux 0x0718d17a wm8350_reg_read -EXPORT_SYMBOL_GPL vmlinux 0x071b18d2 adp5520_write -EXPORT_SYMBOL_GPL vmlinux 0x07242d92 put_dax -EXPORT_SYMBOL_GPL vmlinux 0x0727f7bf set_selection_kernel -EXPORT_SYMBOL_GPL vmlinux 0x0732b5a2 __blk_mq_debugfs_rq_show -EXPORT_SYMBOL_GPL vmlinux 0x073fc8e0 tcp_is_ulp_esp -EXPORT_SYMBOL_GPL vmlinux 0x07483e13 cn_del_callback -EXPORT_SYMBOL_GPL vmlinux 0x074f98db synth_event_add_field -EXPORT_SYMBOL_GPL vmlinux 0x0753bb3a gpiochip_find -EXPORT_SYMBOL_GPL vmlinux 0x0753deac platform_msi_domain_free_irqs -EXPORT_SYMBOL_GPL vmlinux 0x0760db61 sata_link_hardreset -EXPORT_SYMBOL_GPL vmlinux 0x076356e7 sfp_may_have_phy -EXPORT_SYMBOL_GPL vmlinux 0x07664239 ata_sas_port_init -EXPORT_SYMBOL_GPL vmlinux 0x077f73f2 led_classdev_register_ext -EXPORT_SYMBOL_GPL vmlinux 0x079b1937 ohci_resume -EXPORT_SYMBOL_GPL vmlinux 0x07b1da33 vp_modern_queue_address -EXPORT_SYMBOL_GPL vmlinux 0x07b21f85 kdb_get_kbd_char -EXPORT_SYMBOL_GPL vmlinux 0x07b52e38 rtnl_unregister -EXPORT_SYMBOL_GPL vmlinux 0x07be5816 rockchip_register_restart_notifier -EXPORT_SYMBOL_GPL vmlinux 0x07be6905 net_inc_egress_queue -EXPORT_SYMBOL_GPL vmlinux 0x07c36b08 ipv6_recv_error -EXPORT_SYMBOL_GPL vmlinux 0x07cb8854 cpufreq_freq_attr_scaling_boost_freqs -EXPORT_SYMBOL_GPL vmlinux 0x07cf820b devm_gpio_request_one -EXPORT_SYMBOL_GPL vmlinux 0x07d005f4 dev_pm_set_wake_irq -EXPORT_SYMBOL_GPL vmlinux 0x07d11004 dev_nit_active -EXPORT_SYMBOL_GPL vmlinux 0x07d6d521 of_property_match_string -EXPORT_SYMBOL_GPL vmlinux 0x07fb8120 free_io_pgtable_ops -EXPORT_SYMBOL_GPL vmlinux 0x08009d67 tcp_abort -EXPORT_SYMBOL_GPL vmlinux 0x080b61ea devlink_port_param_driverinit_value_get -EXPORT_SYMBOL_GPL vmlinux 0x080e3fcd locks_release_private -EXPORT_SYMBOL_GPL vmlinux 0x08135613 dax_write_cache -EXPORT_SYMBOL_GPL vmlinux 0x082427bf mmc_regulator_set_ocr -EXPORT_SYMBOL_GPL vmlinux 0x08260f67 dev_attr_em_message_type -EXPORT_SYMBOL_GPL vmlinux 0x0827e848 of_clk_src_onecell_get -EXPORT_SYMBOL_GPL vmlinux 0x08296285 crypto_unregister_akcipher -EXPORT_SYMBOL_GPL vmlinux 0x08355430 device_remove_properties -EXPORT_SYMBOL_GPL vmlinux 0x0836f754 is_dock_device -EXPORT_SYMBOL_GPL vmlinux 0x0849c586 gpiod_get_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0x0850153e kernel_read_file -EXPORT_SYMBOL_GPL vmlinux 0x08576175 unregister_kretprobes -EXPORT_SYMBOL_GPL vmlinux 0x085b23d2 platform_bus -EXPORT_SYMBOL_GPL vmlinux 0x0870a34c regulator_set_drvdata -EXPORT_SYMBOL_GPL vmlinux 0x087f5dc5 wm831x_of_match -EXPORT_SYMBOL_GPL vmlinux 0x088650c8 evict_inodes -EXPORT_SYMBOL_GPL vmlinux 0x08869902 vchan_tx_submit -EXPORT_SYMBOL_GPL vmlinux 0x088884cc mtk_pinconf_adv_drive_get -EXPORT_SYMBOL_GPL vmlinux 0x089f710b edac_get_sysfs_subsys -EXPORT_SYMBOL_GPL vmlinux 0x08c78cf7 offline_and_remove_memory -EXPORT_SYMBOL_GPL vmlinux 0x08cd35c0 clockevents_unbind_device -EXPORT_SYMBOL_GPL vmlinux 0x08ce28af mtk_pinconf_drive_get_rev1 -EXPORT_SYMBOL_GPL vmlinux 0x08d93755 led_trigger_unregister_simple -EXPORT_SYMBOL_GPL vmlinux 0x08dedc29 wm831x_set_bits -EXPORT_SYMBOL_GPL vmlinux 0x08e14ce0 usb_driver_claim_interface -EXPORT_SYMBOL_GPL vmlinux 0x08e9803f ahci_sdev_attrs -EXPORT_SYMBOL_GPL vmlinux 0x08eb1a52 of_icc_xlate_onecell -EXPORT_SYMBOL_GPL vmlinux 0x08ecb3a2 security_path_chmod -EXPORT_SYMBOL_GPL vmlinux 0x08ef8f9f usb_clear_halt -EXPORT_SYMBOL_GPL vmlinux 0x08fef448 __traceiter_remove_device_from_group -EXPORT_SYMBOL_GPL vmlinux 0x0902d98b usb_intf_get_dma_device -EXPORT_SYMBOL_GPL vmlinux 0x090a19e4 ip6_datagram_connect -EXPORT_SYMBOL_GPL vmlinux 0x090e1bff __dma_request_channel -EXPORT_SYMBOL_GPL vmlinux 0x091eb9b4 round_jiffies -EXPORT_SYMBOL_GPL vmlinux 0x092a1f26 pm_runtime_no_callbacks -EXPORT_SYMBOL_GPL vmlinux 0x092df71e mnt_want_write_file -EXPORT_SYMBOL_GPL vmlinux 0x0934a665 br_fdb_test_addr_hook -EXPORT_SYMBOL_GPL vmlinux 0x093786cf synth_event_add_field_str -EXPORT_SYMBOL_GPL vmlinux 0x09401c17 __ip6_datagram_connect -EXPORT_SYMBOL_GPL vmlinux 0x0941a3f1 acpi_pm_set_device_wakeup -EXPORT_SYMBOL_GPL vmlinux 0x0952f6f9 perf_event_pause -EXPORT_SYMBOL_GPL vmlinux 0x095a7850 get_net_ns_by_pid -EXPORT_SYMBOL_GPL vmlinux 0x095a980c pci_epf_type_add_cfs -EXPORT_SYMBOL_GPL vmlinux 0x095cbcc0 thermal_zone_device_register -EXPORT_SYMBOL_GPL vmlinux 0x0967ee7a kobject_uevent -EXPORT_SYMBOL_GPL vmlinux 0x096a7d96 srcu_batches_completed -EXPORT_SYMBOL_GPL vmlinux 0x096daf49 usb_debug_root -EXPORT_SYMBOL_GPL vmlinux 0x097ddc04 context_tracking_exit -EXPORT_SYMBOL_GPL vmlinux 0x0983085b simple_attr_open -EXPORT_SYMBOL_GPL vmlinux 0x098fd2db bpf_event_output -EXPORT_SYMBOL_GPL vmlinux 0x0992b719 usb_disable_autosuspend -EXPORT_SYMBOL_GPL vmlinux 0x09986e9f da903x_set_bits -EXPORT_SYMBOL_GPL vmlinux 0x099db19e of_k3_ringacc_get_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0x09b53e14 interval_tree_remove -EXPORT_SYMBOL_GPL vmlinux 0x09ba6e45 cpu_latency_qos_request_active -EXPORT_SYMBOL_GPL vmlinux 0x09d0b240 rtnl_af_unregister -EXPORT_SYMBOL_GPL vmlinux 0x09e3f034 nvdimm_bus_check_dimm_count -EXPORT_SYMBOL_GPL vmlinux 0x09f50f32 rcu_nocb_flush_deferred_wakeup -EXPORT_SYMBOL_GPL vmlinux 0x0a0ea95e da903x_writes -EXPORT_SYMBOL_GPL vmlinux 0x0a20ff99 __traceiter_io_page_fault -EXPORT_SYMBOL_GPL vmlinux 0x0a266780 spi_mem_supports_op -EXPORT_SYMBOL_GPL vmlinux 0x0a3eed19 of_thermal_is_trip_valid -EXPORT_SYMBOL_GPL vmlinux 0x0a3f17c9 __phy_modify_mmd -EXPORT_SYMBOL_GPL vmlinux 0x0a463293 __tracepoint_error_report_end -EXPORT_SYMBOL_GPL vmlinux 0x0a52c511 hv_query_ext_cap -EXPORT_SYMBOL_GPL vmlinux 0x0a664138 tty_port_install -EXPORT_SYMBOL_GPL vmlinux 0x0a6c4041 cn_netlink_send -EXPORT_SYMBOL_GPL vmlinux 0x0a6c8a7f bsg_remove_queue -EXPORT_SYMBOL_GPL vmlinux 0x0a6fed0c bpf_prog_sub -EXPORT_SYMBOL_GPL vmlinux 0x0a7ceb30 __tracepoint_non_standard_event -EXPORT_SYMBOL_GPL vmlinux 0x0a845d67 acpi_device_modalias -EXPORT_SYMBOL_GPL vmlinux 0x0aa2a9fb pinmux_generic_add_function -EXPORT_SYMBOL_GPL vmlinux 0x0abc6be6 k3_ringacc_ring_is_full -EXPORT_SYMBOL_GPL vmlinux 0x0abcbf05 pkcs7_parse_message -EXPORT_SYMBOL_GPL vmlinux 0x0ac551c7 led_stop_software_blink -EXPORT_SYMBOL_GPL vmlinux 0x0acbbac6 ata_bmdma_setup -EXPORT_SYMBOL_GPL vmlinux 0x0acd5da9 battery_hook_register -EXPORT_SYMBOL_GPL vmlinux 0x0ace4c04 serial8250_em485_start_tx -EXPORT_SYMBOL_GPL vmlinux 0x0ad28402 devlink_free -EXPORT_SYMBOL_GPL vmlinux 0x0addd16f pwm_apply_state -EXPORT_SYMBOL_GPL vmlinux 0x0af026b7 usb_hc_died -EXPORT_SYMBOL_GPL vmlinux 0x0af40724 iommu_alloc_resv_region -EXPORT_SYMBOL_GPL vmlinux 0x0b07abe2 unshare_fs_struct -EXPORT_SYMBOL_GPL vmlinux 0x0b0ffe63 nvmem_cell_read_u16 -EXPORT_SYMBOL_GPL vmlinux 0x0b13c133 spi_alloc_device -EXPORT_SYMBOL_GPL vmlinux 0x0b1bb9f9 synchronize_rcu_tasks -EXPORT_SYMBOL_GPL vmlinux 0x0b1ef3fa klist_init -EXPORT_SYMBOL_GPL vmlinux 0x0b29eb37 kset_find_obj -EXPORT_SYMBOL_GPL vmlinux 0x0b2db2d5 remove_resource -EXPORT_SYMBOL_GPL vmlinux 0x0b32c67c ata_bmdma_error_handler -EXPORT_SYMBOL_GPL vmlinux 0x0b3a3ed7 zynqmp_pm_fpga_get_status -EXPORT_SYMBOL_GPL vmlinux 0x0b3f40d9 crypto_enqueue_request_head -EXPORT_SYMBOL_GPL vmlinux 0x0b4bac96 blk_ksm_reprogram_all_keys -EXPORT_SYMBOL_GPL vmlinux 0x0b4cc127 stmpe_block_write -EXPORT_SYMBOL_GPL vmlinux 0x0b505426 gpiod_get_from_of_node -EXPORT_SYMBOL_GPL vmlinux 0x0b52e502 apei_resources_add -EXPORT_SYMBOL_GPL vmlinux 0x0b6125bc dma_buf_detach -EXPORT_SYMBOL_GPL vmlinux 0x0b627a4c devm_of_led_get -EXPORT_SYMBOL_GPL vmlinux 0x0b690f04 k3_udma_glue_tx_get_txcq_id -EXPORT_SYMBOL_GPL vmlinux 0x0b7c073e __pm_runtime_resume -EXPORT_SYMBOL_GPL vmlinux 0x0bac77c5 alloc_skb_for_msg -EXPORT_SYMBOL_GPL vmlinux 0x0bb028d4 hisi_clk_register_fixed_factor -EXPORT_SYMBOL_GPL vmlinux 0x0bbd4621 fuse_get_unique -EXPORT_SYMBOL_GPL vmlinux 0x0bbdc9b2 remove_memory -EXPORT_SYMBOL_GPL vmlinux 0x0bcc685d ip6_route_output_flags_noref -EXPORT_SYMBOL_GPL vmlinux 0x0bcdebd9 virtqueue_is_broken -EXPORT_SYMBOL_GPL vmlinux 0x0bd3686d sfp_bus_find_fwnode -EXPORT_SYMBOL_GPL vmlinux 0x0bde86c6 blk_trace_remove -EXPORT_SYMBOL_GPL vmlinux 0x0bee248e regulator_bulk_disable -EXPORT_SYMBOL_GPL vmlinux 0x0bf32478 __SCK__tp_func_pelt_rt_tp -EXPORT_SYMBOL_GPL vmlinux 0x0bf6967b gnttab_unmap_refs -EXPORT_SYMBOL_GPL vmlinux 0x0bfa3a19 rcu_idle_exit -EXPORT_SYMBOL_GPL vmlinux 0x0c0d15a2 da903x_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x0c1f4049 __device_reset -EXPORT_SYMBOL_GPL vmlinux 0x0c2b6c7b __traceiter_br_fdb_update -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 0x0c49a958 tty_kclose -EXPORT_SYMBOL_GPL vmlinux 0x0c4a9bd5 crypto_unregister_templates -EXPORT_SYMBOL_GPL vmlinux 0x0c4dc709 ncsi_vlan_rx_kill_vid -EXPORT_SYMBOL_GPL vmlinux 0x0c585af6 anon_inode_getfd -EXPORT_SYMBOL_GPL vmlinux 0x0c5c6846 device_match_name -EXPORT_SYMBOL_GPL vmlinux 0x0c6468c4 fsl8250_handle_irq -EXPORT_SYMBOL_GPL vmlinux 0x0c65d1ee dev_pm_genpd_remove_notifier -EXPORT_SYMBOL_GPL vmlinux 0x0c81c7da bus_for_each_dev -EXPORT_SYMBOL_GPL vmlinux 0x0c84bcdf tps6586x_set_bits -EXPORT_SYMBOL_GPL vmlinux 0x0c88c1c3 pci_vpd_find_id_string -EXPORT_SYMBOL_GPL vmlinux 0x0c8b5cb0 fwnode_property_read_u32_array -EXPORT_SYMBOL_GPL vmlinux 0x0c8eb15d set_primary_fwnode -EXPORT_SYMBOL_GPL vmlinux 0x0c9716ab watchdog_set_last_hw_keepalive -EXPORT_SYMBOL_GPL vmlinux 0x0c972dbe irq_domain_free_irqs_parent -EXPORT_SYMBOL_GPL vmlinux 0x0cbc0df8 iommu_dev_enable_feature -EXPORT_SYMBOL_GPL vmlinux 0x0cbe3ee2 software_node_unregister -EXPORT_SYMBOL_GPL vmlinux 0x0cc85c67 pci_epc_mem_exit -EXPORT_SYMBOL_GPL vmlinux 0x0ccf5275 zynqmp_pm_pinctrl_get_config -EXPORT_SYMBOL_GPL vmlinux 0x0cd0bcd7 setfl -EXPORT_SYMBOL_GPL vmlinux 0x0ce3dd73 bman_is_probed -EXPORT_SYMBOL_GPL vmlinux 0x0ce448f5 crypto_stats_init -EXPORT_SYMBOL_GPL vmlinux 0x0ce8673e debugfs_create_u16 -EXPORT_SYMBOL_GPL vmlinux 0x0d1759fb usb_bus_idr_lock -EXPORT_SYMBOL_GPL vmlinux 0x0d192f06 ahci_handle_port_intr -EXPORT_SYMBOL_GPL vmlinux 0x0d330bcb platform_driver_unregister -EXPORT_SYMBOL_GPL vmlinux 0x0d35fc75 regulator_register -EXPORT_SYMBOL_GPL vmlinux 0x0d41ab69 split_page -EXPORT_SYMBOL_GPL vmlinux 0x0d459213 work_on_cpu_safe -EXPORT_SYMBOL_GPL vmlinux 0x0d4961de nf_log_buf_open -EXPORT_SYMBOL_GPL vmlinux 0x0d4a42d3 regmap_raw_write -EXPORT_SYMBOL_GPL vmlinux 0x0d4e3f8c iopf_queue_alloc -EXPORT_SYMBOL_GPL vmlinux 0x0d5cecc6 ima_measure_critical_data -EXPORT_SYMBOL_GPL vmlinux 0x0d614b1c cpufreq_unregister_governor -EXPORT_SYMBOL_GPL vmlinux 0x0d627d3c pci_epc_remove_epf -EXPORT_SYMBOL_GPL vmlinux 0x0d7c2a8e __inode_attach_wb -EXPORT_SYMBOL_GPL vmlinux 0x0d865b0b iomap_writepage -EXPORT_SYMBOL_GPL vmlinux 0x0d8917a2 led_trigger_read -EXPORT_SYMBOL_GPL vmlinux 0x0d8aeecf spi_slave_abort -EXPORT_SYMBOL_GPL vmlinux 0x0d9ef0ff ip6_datagram_release_cb -EXPORT_SYMBOL_GPL vmlinux 0x0daa5b6c virtqueue_get_used_addr -EXPORT_SYMBOL_GPL vmlinux 0x0dad57dc tcp_reno_cong_avoid -EXPORT_SYMBOL_GPL vmlinux 0x0dbbffaa bus_sort_breadthfirst -EXPORT_SYMBOL_GPL vmlinux 0x0dc1319e tegra_mc_get_emem_device_count -EXPORT_SYMBOL_GPL vmlinux 0x0dd3b829 fib_rule_matchall -EXPORT_SYMBOL_GPL vmlinux 0x0dd8802d usb_get_hcd -EXPORT_SYMBOL_GPL vmlinux 0x0dd9cee9 ata_sff_queue_pio_task -EXPORT_SYMBOL_GPL vmlinux 0x0ddb1cd7 llist_reverse_order -EXPORT_SYMBOL_GPL vmlinux 0x0df044bf cpufreq_dbs_governor_stop -EXPORT_SYMBOL_GPL vmlinux 0x0df428df lp8788_read_byte -EXPORT_SYMBOL_GPL vmlinux 0x0dfc06ca pm_clk_add_clk -EXPORT_SYMBOL_GPL vmlinux 0x0e007edf xen_evtchn_nr_channels -EXPORT_SYMBOL_GPL vmlinux 0x0e0fe432 nf_hook_entries_insert_raw -EXPORT_SYMBOL_GPL vmlinux 0x0e12135d devm_init_badblocks -EXPORT_SYMBOL_GPL vmlinux 0x0e13cb4d apei_resources_release -EXPORT_SYMBOL_GPL vmlinux 0x0e3550ba dm_set_target_max_io_len -EXPORT_SYMBOL_GPL vmlinux 0x0e3a5044 bus_register -EXPORT_SYMBOL_GPL vmlinux 0x0e3d9a95 meson8_aobus_parse_dt_extra -EXPORT_SYMBOL_GPL vmlinux 0x0e4c8520 md_find_rdev_rcu -EXPORT_SYMBOL_GPL vmlinux 0x0e545978 synth_event_trace_start -EXPORT_SYMBOL_GPL vmlinux 0x0e5cc9d7 xdp_unreg_mem_model -EXPORT_SYMBOL_GPL vmlinux 0x0e69dc01 devlink_region_snapshot_id_put -EXPORT_SYMBOL_GPL vmlinux 0x0e6b79af static_key_disable_cpuslocked -EXPORT_SYMBOL_GPL vmlinux 0x0e7ac66d __ata_ehi_push_desc -EXPORT_SYMBOL_GPL vmlinux 0x0e9012fd device_set_wakeup_capable -EXPORT_SYMBOL_GPL vmlinux 0x0e971558 cpuidle_unregister -EXPORT_SYMBOL_GPL vmlinux 0x0ea5cbce xen_irq_lateeoi -EXPORT_SYMBOL_GPL vmlinux 0x0ea6d854 of_pci_parse_bus_range -EXPORT_SYMBOL_GPL vmlinux 0x0eb5101d dprc_close -EXPORT_SYMBOL_GPL vmlinux 0x0eb5f228 pci_epc_put -EXPORT_SYMBOL_GPL vmlinux 0x0ec096b0 hv_read_reference_counter -EXPORT_SYMBOL_GPL vmlinux 0x0ec529a8 acpi_data_fwnode_ops -EXPORT_SYMBOL_GPL vmlinux 0x0eebb6a0 nfs42_ssc_unregister -EXPORT_SYMBOL_GPL vmlinux 0x0f109495 ncsi_vlan_rx_add_vid -EXPORT_SYMBOL_GPL vmlinux 0x0f180070 ring_buffer_free_read_page -EXPORT_SYMBOL_GPL vmlinux 0x0f1a4fda strp_process -EXPORT_SYMBOL_GPL vmlinux 0x0f1f4c00 fib_nh_common_release -EXPORT_SYMBOL_GPL vmlinux 0x0f42bec4 nvmem_cell_read_variable_le_u32 -EXPORT_SYMBOL_GPL vmlinux 0x0f491857 synth_event_gen_cmd_array_start -EXPORT_SYMBOL_GPL vmlinux 0x0f49fb76 btree_get_prev -EXPORT_SYMBOL_GPL vmlinux 0x0f4a0ef7 l3mdev_master_upper_ifindex_by_index_rcu -EXPORT_SYMBOL_GPL vmlinux 0x0f4a3688 iommu_device_sysfs_add -EXPORT_SYMBOL_GPL vmlinux 0x0f50abc4 dev_fill_metadata_dst -EXPORT_SYMBOL_GPL vmlinux 0x0f61e9d6 devm_usb_get_phy_by_node -EXPORT_SYMBOL_GPL vmlinux 0x0f69b090 phy_power_off -EXPORT_SYMBOL_GPL vmlinux 0x0f6dfde7 rio_mport_chk_dev_access -EXPORT_SYMBOL_GPL vmlinux 0x0f706c52 serdev_device_write -EXPORT_SYMBOL_GPL vmlinux 0x0f72ada1 acpi_dev_resource_io -EXPORT_SYMBOL_GPL vmlinux 0x0f7ca236 dmi_memdev_name -EXPORT_SYMBOL_GPL vmlinux 0x0f93ca5f device_change_owner -EXPORT_SYMBOL_GPL vmlinux 0x0f985353 crypto_shash_final -EXPORT_SYMBOL_GPL vmlinux 0x0f9f90da sdio_memcpy_toio -EXPORT_SYMBOL_GPL vmlinux 0x0fae652a crypto_register_shashes -EXPORT_SYMBOL_GPL vmlinux 0x0fbb7344 memremap_compat_align -EXPORT_SYMBOL_GPL vmlinux 0x0fc5b9dd __traceiter_xdp_exception -EXPORT_SYMBOL_GPL vmlinux 0x0fcba316 usb_set_device_state -EXPORT_SYMBOL_GPL vmlinux 0x0fd33bf2 ip6_dst_lookup_flow -EXPORT_SYMBOL_GPL vmlinux 0x0fd4610e kmem_dump_obj -EXPORT_SYMBOL_GPL vmlinux 0x0fd533ca rio_free_net -EXPORT_SYMBOL_GPL vmlinux 0x0fdbce7c regcache_drop_region -EXPORT_SYMBOL_GPL vmlinux 0x10044f82 acpi_find_child_device -EXPORT_SYMBOL_GPL vmlinux 0x1005d60b tick_nohz_dep_set_cpu -EXPORT_SYMBOL_GPL vmlinux 0x10074eb0 shmem_zero_setup -EXPORT_SYMBOL_GPL vmlinux 0x10097791 platform_msi_domain_alloc_irqs -EXPORT_SYMBOL_GPL vmlinux 0x100f91fb pci_epc_raise_irq -EXPORT_SYMBOL_GPL vmlinux 0x10138352 tracing_on -EXPORT_SYMBOL_GPL vmlinux 0x1019f13b dma_get_slave_caps -EXPORT_SYMBOL_GPL vmlinux 0x1030981a pci_user_read_config_byte -EXPORT_SYMBOL_GPL vmlinux 0x1041fdf7 devm_led_classdev_register_ext -EXPORT_SYMBOL_GPL vmlinux 0x104f5a3f irq_domain_xlate_onetwocell -EXPORT_SYMBOL_GPL vmlinux 0x10597c41 pci_user_read_config_dword -EXPORT_SYMBOL_GPL vmlinux 0x1061508e sched_set_normal -EXPORT_SYMBOL_GPL vmlinux 0x106402ad fuse_mount_remove -EXPORT_SYMBOL_GPL vmlinux 0x106b7ea1 devlink_port_attrs_pci_pf_set -EXPORT_SYMBOL_GPL vmlinux 0x107af4ee usb_wait_anchor_empty_timeout -EXPORT_SYMBOL_GPL vmlinux 0x107f3fdc md_bitmap_load -EXPORT_SYMBOL_GPL vmlinux 0x108a0acd bstr_printf -EXPORT_SYMBOL_GPL vmlinux 0x109d806a iommu_set_pgtable_quirks -EXPORT_SYMBOL_GPL vmlinux 0x10ab1128 rio_map_outb_region -EXPORT_SYMBOL_GPL vmlinux 0x10bad066 pm_schedule_suspend -EXPORT_SYMBOL_GPL vmlinux 0x10e579b7 device_phy_find_device -EXPORT_SYMBOL_GPL vmlinux 0x10ecc52c usb_amd_quirk_pll_enable -EXPORT_SYMBOL_GPL vmlinux 0x10ef5e37 trace_array_init_printk -EXPORT_SYMBOL_GPL vmlinux 0x10f57eef alarm_cancel -EXPORT_SYMBOL_GPL vmlinux 0x110106c1 cper_severity_to_aer -EXPORT_SYMBOL_GPL vmlinux 0x11064a56 ata_dummy_port_ops -EXPORT_SYMBOL_GPL vmlinux 0x110c5f09 kobj_sysfs_ops -EXPORT_SYMBOL_GPL vmlinux 0x1114f0d7 devlink_port_param_value_changed -EXPORT_SYMBOL_GPL vmlinux 0x1117cbbd ata_ncq_sdev_attrs -EXPORT_SYMBOL_GPL vmlinux 0x11475c41 class_dev_iter_exit -EXPORT_SYMBOL_GPL vmlinux 0x115ea240 __fsnotify_inode_delete -EXPORT_SYMBOL_GPL vmlinux 0x115eb8cc dma_buf_get -EXPORT_SYMBOL_GPL vmlinux 0x11634fbe gpiochip_unlock_as_irq -EXPORT_SYMBOL_GPL vmlinux 0x1172ff8f pm_generic_freeze_noirq -EXPORT_SYMBOL_GPL vmlinux 0x1188d333 genphy_c45_read_link -EXPORT_SYMBOL_GPL vmlinux 0x1196275e regulator_set_active_discharge_regmap -EXPORT_SYMBOL_GPL vmlinux 0x119e3b48 dax_inode -EXPORT_SYMBOL_GPL vmlinux 0x11a2e0ac crypto_dh_key_len -EXPORT_SYMBOL_GPL vmlinux 0x11a87502 umd_unload_blob -EXPORT_SYMBOL_GPL vmlinux 0x11b0c201 rio_get_comptag -EXPORT_SYMBOL_GPL vmlinux 0x11bf7e00 mbox_request_channel_byname -EXPORT_SYMBOL_GPL vmlinux 0x11db3f12 blk_ksm_destroy -EXPORT_SYMBOL_GPL vmlinux 0x11df0e75 devlink_fmsg_binary_pair_nest_start -EXPORT_SYMBOL_GPL vmlinux 0x11e08f96 trace_seq_putmem_hex -EXPORT_SYMBOL_GPL vmlinux 0x11f12a83 btree_visitor -EXPORT_SYMBOL_GPL vmlinux 0x1208329c blk_ksm_init -EXPORT_SYMBOL_GPL vmlinux 0x120ef49c serdev_device_add -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 0x123ba5e6 __traceiter_rpm_suspend -EXPORT_SYMBOL_GPL vmlinux 0x1242d083 kthread_flush_worker -EXPORT_SYMBOL_GPL vmlinux 0x12462f3d of_reserved_mem_device_release -EXPORT_SYMBOL_GPL vmlinux 0x1246f3e0 sysfs_add_link_to_group -EXPORT_SYMBOL_GPL vmlinux 0x124e67b5 fsl_mc_object_allocate -EXPORT_SYMBOL_GPL vmlinux 0x12537dae __tracepoint_napi_poll -EXPORT_SYMBOL_GPL vmlinux 0x125ddf68 xas_pause -EXPORT_SYMBOL_GPL vmlinux 0x126622c0 gpiod_to_irq -EXPORT_SYMBOL_GPL vmlinux 0x1268f357 resume_device_irqs -EXPORT_SYMBOL_GPL vmlinux 0x126db2e4 pci_walk_bus -EXPORT_SYMBOL_GPL vmlinux 0x129334ae sfp_parse_support -EXPORT_SYMBOL_GPL vmlinux 0x129bd097 device_node_to_regmap -EXPORT_SYMBOL_GPL vmlinux 0x12b2bef5 irq_chip_mask_ack_parent -EXPORT_SYMBOL_GPL vmlinux 0x12ba61c6 sk_psock_msg_verdict -EXPORT_SYMBOL_GPL vmlinux 0x12be3e96 ip_route_output_key_hash -EXPORT_SYMBOL_GPL vmlinux 0x12bf9223 pci_probe_reset_bus -EXPORT_SYMBOL_GPL vmlinux 0x12c56e26 __traceiter_block_rq_remap -EXPORT_SYMBOL_GPL vmlinux 0x12e7d80e klist_iter_init_node -EXPORT_SYMBOL_GPL vmlinux 0x12eca2a6 edac_mc_alloc -EXPORT_SYMBOL_GPL vmlinux 0x12ee1173 memory_group_unregister -EXPORT_SYMBOL_GPL vmlinux 0x12f7fb71 crypto_alloc_akcipher -EXPORT_SYMBOL_GPL vmlinux 0x12fa4950 pci_bus_max_busnr -EXPORT_SYMBOL_GPL vmlinux 0x12fe012d pm_generic_suspend -EXPORT_SYMBOL_GPL vmlinux 0x1307204e ata_std_qc_defer -EXPORT_SYMBOL_GPL vmlinux 0x131165cf of_prop_next_u32 -EXPORT_SYMBOL_GPL vmlinux 0x13197ecc acpi_dev_suspend -EXPORT_SYMBOL_GPL vmlinux 0x131a5ed7 regmap_del_irq_chip -EXPORT_SYMBOL_GPL vmlinux 0x131db64a system_long_wq -EXPORT_SYMBOL_GPL vmlinux 0x13235b79 pci_epf_add_vepf -EXPORT_SYMBOL_GPL vmlinux 0x1324007e pci_epc_get_msi -EXPORT_SYMBOL_GPL vmlinux 0x13271d04 debugfs_read_file_bool -EXPORT_SYMBOL_GPL vmlinux 0x132b8789 aead_init_geniv -EXPORT_SYMBOL_GPL vmlinux 0x133969d7 __trace_printk -EXPORT_SYMBOL_GPL vmlinux 0x13540d02 ptp_parse_header -EXPORT_SYMBOL_GPL vmlinux 0x1355a85f aead_exit_geniv -EXPORT_SYMBOL_GPL vmlinux 0x135b170d dpbp_close -EXPORT_SYMBOL_GPL vmlinux 0x136209db power_supply_reg_notifier -EXPORT_SYMBOL_GPL vmlinux 0x13640660 get_cached_msi_msg -EXPORT_SYMBOL_GPL vmlinux 0x13736dc6 inet_csk_route_child_sock -EXPORT_SYMBOL_GPL vmlinux 0x1373a38e clk_register_fractional_divider -EXPORT_SYMBOL_GPL vmlinux 0x138aff76 gnttab_init -EXPORT_SYMBOL_GPL vmlinux 0x138e0957 dax_write_cache_enabled -EXPORT_SYMBOL_GPL vmlinux 0x13ce87e8 asn1_ber_decoder -EXPORT_SYMBOL_GPL vmlinux 0x13db1eb8 k3_udma_glue_rx_cppi5_to_dma_addr -EXPORT_SYMBOL_GPL vmlinux 0x13ed8784 sdev_evt_alloc -EXPORT_SYMBOL_GPL vmlinux 0x13f53fb7 mmc_pwrseq_register -EXPORT_SYMBOL_GPL vmlinux 0x13fab921 cpuidle_unregister_device -EXPORT_SYMBOL_GPL vmlinux 0x13ff69c3 pm_runtime_allow -EXPORT_SYMBOL_GPL vmlinux 0x1403ad09 cpufreq_add_update_util_hook -EXPORT_SYMBOL_GPL vmlinux 0x141f38bf ktime_get_raw_fast_ns -EXPORT_SYMBOL_GPL vmlinux 0x142d3986 devlink_resource_occ_get_register -EXPORT_SYMBOL_GPL vmlinux 0x144a5e9e vfs_listxattr -EXPORT_SYMBOL_GPL vmlinux 0x14509072 __spi_alloc_controller -EXPORT_SYMBOL_GPL vmlinux 0x1456762b k3_ringacc_ring_get_free -EXPORT_SYMBOL_GPL vmlinux 0x145c844b __clk_mux_determine_rate_closest -EXPORT_SYMBOL_GPL vmlinux 0x145d0633 dev_get_regmap -EXPORT_SYMBOL_GPL vmlinux 0x146cc88f bpf_master_redirect_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x147642a3 crypto_dequeue_request -EXPORT_SYMBOL_GPL vmlinux 0x14806112 iommu_device_unlink -EXPORT_SYMBOL_GPL vmlinux 0x1481dec9 usb_ep0_reinit -EXPORT_SYMBOL_GPL vmlinux 0x14830894 mtk_eint_do_init -EXPORT_SYMBOL_GPL vmlinux 0x148fd794 enable_kprobe -EXPORT_SYMBOL_GPL vmlinux 0x14b964d4 mbox_chan_received_data -EXPORT_SYMBOL_GPL vmlinux 0x14bd6384 tty_port_tty_wakeup -EXPORT_SYMBOL_GPL vmlinux 0x14c40258 __hvc_resize -EXPORT_SYMBOL_GPL vmlinux 0x14d01690 clk_mux_index_to_val -EXPORT_SYMBOL_GPL vmlinux 0x14d13ef1 fib4_rule_default -EXPORT_SYMBOL_GPL vmlinux 0x14d375c9 fwnode_graph_get_remote_port_parent -EXPORT_SYMBOL_GPL vmlinux 0x14e2ece8 simple_attr_write_signed -EXPORT_SYMBOL_GPL vmlinux 0x14e48cdb crypto_skcipher_decrypt -EXPORT_SYMBOL_GPL vmlinux 0x14ec4fdb evtchn_put -EXPORT_SYMBOL_GPL vmlinux 0x14ee12b1 devm_gpiod_get_index_optional -EXPORT_SYMBOL_GPL vmlinux 0x14ee7995 devres_remove_group -EXPORT_SYMBOL_GPL vmlinux 0x14f739d9 regulator_get -EXPORT_SYMBOL_GPL vmlinux 0x14f94c3a __wake_up_locked_sync_key -EXPORT_SYMBOL_GPL vmlinux 0x15189076 raw_abort -EXPORT_SYMBOL_GPL vmlinux 0x152220d1 iomap_readahead -EXPORT_SYMBOL_GPL vmlinux 0x152f6182 bio_trim -EXPORT_SYMBOL_GPL vmlinux 0x152fc73c pci_epf_unbind -EXPORT_SYMBOL_GPL vmlinux 0x15312ad7 sysfs_rename_link_ns -EXPORT_SYMBOL_GPL vmlinux 0x1539c669 pci_try_reset_function -EXPORT_SYMBOL_GPL vmlinux 0x153b60a6 klist_del -EXPORT_SYMBOL_GPL vmlinux 0x15510a89 devlink_fmsg_binary_put -EXPORT_SYMBOL_GPL vmlinux 0x1551b454 hrtimer_sleeper_start_expires -EXPORT_SYMBOL_GPL vmlinux 0x1568ad74 __udp_gso_segment -EXPORT_SYMBOL_GPL vmlinux 0x15ade1cc filter_irq_stacks -EXPORT_SYMBOL_GPL vmlinux 0x15c0daa8 cpuidle_unregister_driver -EXPORT_SYMBOL_GPL vmlinux 0x15c60a71 __tracepoint_pelt_dl_tp -EXPORT_SYMBOL_GPL vmlinux 0x15cf46d1 ata_pci_bmdma_prepare_host -EXPORT_SYMBOL_GPL vmlinux 0x15d1b2d0 extcon_set_property_capability -EXPORT_SYMBOL_GPL vmlinux 0x15d51fa7 dprc_cleanup -EXPORT_SYMBOL_GPL vmlinux 0x15ea2648 hwpoison_filter_flags_mask -EXPORT_SYMBOL_GPL vmlinux 0x15f321c1 pci_epc_unmap_addr -EXPORT_SYMBOL_GPL vmlinux 0x15f3c8b7 __phy_modify -EXPORT_SYMBOL_GPL vmlinux 0x1622e3d6 regulator_set_current_limit -EXPORT_SYMBOL_GPL vmlinux 0x1623089b sdio_f0_writeb -EXPORT_SYMBOL_GPL vmlinux 0x1625005e thermal_cooling_device_register -EXPORT_SYMBOL_GPL vmlinux 0x163e70b1 dmi_kobj -EXPORT_SYMBOL_GPL vmlinux 0x1641eb94 usb_of_get_device_node -EXPORT_SYMBOL_GPL vmlinux 0x16422a6e xdp_reg_mem_model -EXPORT_SYMBOL_GPL vmlinux 0x164b8ed7 __traceiter_add_device_to_group -EXPORT_SYMBOL_GPL vmlinux 0x16516798 osc_pc_lpi_support_confirmed -EXPORT_SYMBOL_GPL vmlinux 0x1655fe57 shmem_truncate_range -EXPORT_SYMBOL_GPL vmlinux 0x166b8ec4 tty_ldisc_ref -EXPORT_SYMBOL_GPL vmlinux 0x166d1ff5 elv_unregister -EXPORT_SYMBOL_GPL vmlinux 0x167581d1 usb_get_dr_mode -EXPORT_SYMBOL_GPL vmlinux 0x16776a98 regulator_map_voltage_ascend -EXPORT_SYMBOL_GPL vmlinux 0x167d7113 acpi_bus_register_early_device -EXPORT_SYMBOL_GPL vmlinux 0x16879910 em_pd_get -EXPORT_SYMBOL_GPL vmlinux 0x1687ec20 tty_get_frame_size -EXPORT_SYMBOL_GPL vmlinux 0x1690b503 usb_role_switch_get_drvdata -EXPORT_SYMBOL_GPL vmlinux 0x16a28313 idr_alloc -EXPORT_SYMBOL_GPL vmlinux 0x16ad276d pci_scan_child_bus -EXPORT_SYMBOL_GPL vmlinux 0x16d3d621 usb_enable_autosuspend -EXPORT_SYMBOL_GPL vmlinux 0x16da1f88 devlink_fmsg_u32_put -EXPORT_SYMBOL_GPL vmlinux 0x16dfbf36 add_interrupt_randomness -EXPORT_SYMBOL_GPL vmlinux 0x16e476a7 fat_detach -EXPORT_SYMBOL_GPL vmlinux 0x16ec3b9b ata_sff_data_xfer -EXPORT_SYMBOL_GPL vmlinux 0x16f10bde wm831x_reg_write -EXPORT_SYMBOL_GPL vmlinux 0x16f15139 bind_evtchn_to_irq -EXPORT_SYMBOL_GPL vmlinux 0x17015966 sysfs_notify -EXPORT_SYMBOL_GPL vmlinux 0x170cc36c put_timespec64 -EXPORT_SYMBOL_GPL vmlinux 0x17163f4e dev_pm_opp_remove_table -EXPORT_SYMBOL_GPL vmlinux 0x1717a120 dm_start_time_ns_from_clone -EXPORT_SYMBOL_GPL vmlinux 0x1725eb17 lp8788_read_multi_bytes -EXPORT_SYMBOL_GPL vmlinux 0x172f2618 regmap_field_alloc -EXPORT_SYMBOL_GPL vmlinux 0x1738e86f __clocksource_update_freq_scale -EXPORT_SYMBOL_GPL vmlinux 0x1741ddee trace_seq_puts -EXPORT_SYMBOL_GPL vmlinux 0x174288bc pinctrl_put -EXPORT_SYMBOL_GPL vmlinux 0x1746fe48 devm_acpi_dev_remove_driver_gpios -EXPORT_SYMBOL_GPL vmlinux 0x17480d56 x509_free_certificate -EXPORT_SYMBOL_GPL vmlinux 0x1748d634 ata_sff_busy_sleep -EXPORT_SYMBOL_GPL vmlinux 0x174c6274 ring_buffer_time_stamp -EXPORT_SYMBOL_GPL vmlinux 0x17591ecd zynqmp_pm_write_ggs -EXPORT_SYMBOL_GPL vmlinux 0x176031a7 devlink_fmsg_string_put -EXPORT_SYMBOL_GPL vmlinux 0x17614bf3 apei_resources_sub -EXPORT_SYMBOL_GPL vmlinux 0x176faeb0 blk_lld_busy -EXPORT_SYMBOL_GPL vmlinux 0x177c338d twl_get_version -EXPORT_SYMBOL_GPL vmlinux 0x177eecc3 add_disk_randomness -EXPORT_SYMBOL_GPL vmlinux 0x179973c5 devm_create_dev_dax -EXPORT_SYMBOL_GPL vmlinux 0x179b206d devm_regmap_add_irq_chip_fwnode -EXPORT_SYMBOL_GPL vmlinux 0x17d1d5c6 gpiod_get_array_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0x17d2f430 bus_remove_file -EXPORT_SYMBOL_GPL vmlinux 0x17d56aeb of_gen_pool_get -EXPORT_SYMBOL_GPL vmlinux 0x17ddd6e2 seg6_do_srh_inline -EXPORT_SYMBOL_GPL vmlinux 0x17e01f11 erst_clear -EXPORT_SYMBOL_GPL vmlinux 0x17e27d70 input_ff_upload -EXPORT_SYMBOL_GPL vmlinux 0x17e4553e perf_event_read_value -EXPORT_SYMBOL_GPL vmlinux 0x17f90cba fw_devlink_purge_absent_suppliers -EXPORT_SYMBOL_GPL vmlinux 0x18008c59 ring_buffer_resize -EXPORT_SYMBOL_GPL vmlinux 0x18156686 cpu_device_create -EXPORT_SYMBOL_GPL vmlinux 0x18269df7 shash_ahash_update -EXPORT_SYMBOL_GPL vmlinux 0x182985a3 auxiliary_driver_unregister -EXPORT_SYMBOL_GPL vmlinux 0x1831240c of_reconfig_get_state_change -EXPORT_SYMBOL_GPL vmlinux 0x18341cd3 blk_queue_rq_timeout -EXPORT_SYMBOL_GPL vmlinux 0x1835fa00 platform_get_irq_byname -EXPORT_SYMBOL_GPL vmlinux 0x183b53f8 cgrp_dfl_root -EXPORT_SYMBOL_GPL vmlinux 0x1841be05 blk_mq_complete_request_remote -EXPORT_SYMBOL_GPL vmlinux 0x18428692 __cookie_v6_init_sequence -EXPORT_SYMBOL_GPL vmlinux 0x184c33e4 clean_record_shared_mapping_range -EXPORT_SYMBOL_GPL vmlinux 0x185505f2 usb_store_new_id -EXPORT_SYMBOL_GPL vmlinux 0x185fb447 tcp_enter_memory_pressure -EXPORT_SYMBOL_GPL vmlinux 0x18615d35 efivar_supports_writes -EXPORT_SYMBOL_GPL vmlinux 0x1867bef9 fwnode_property_read_u8_array -EXPORT_SYMBOL_GPL vmlinux 0x18686768 of_device_modalias -EXPORT_SYMBOL_GPL vmlinux 0x18715353 k3_udma_glue_push_tx_chn -EXPORT_SYMBOL_GPL vmlinux 0x1871ab54 __efivar_entry_iter -EXPORT_SYMBOL_GPL vmlinux 0x187d55c6 switchdev_port_obj_add -EXPORT_SYMBOL_GPL vmlinux 0x1898955b fsl_mc_portal_allocate -EXPORT_SYMBOL_GPL vmlinux 0x189eda70 __clk_hw_register_mux -EXPORT_SYMBOL_GPL vmlinux 0x18a37cd0 nvmem_register -EXPORT_SYMBOL_GPL vmlinux 0x18a8d037 xas_store -EXPORT_SYMBOL_GPL vmlinux 0x18aae06a lwtunnel_encap_add_ops -EXPORT_SYMBOL_GPL vmlinux 0x18cdad44 __traceiter_block_bio_complete -EXPORT_SYMBOL_GPL vmlinux 0x18d74e61 thermal_zone_get_offset -EXPORT_SYMBOL_GPL vmlinux 0x18d9a780 tcp_get_info -EXPORT_SYMBOL_GPL vmlinux 0x18e4f8aa swphy_read_reg -EXPORT_SYMBOL_GPL vmlinux 0x18e8c440 arch_freq_scale -EXPORT_SYMBOL_GPL vmlinux 0x18f10f38 k3_udma_glue_enable_rx_chn -EXPORT_SYMBOL_GPL vmlinux 0x18f637b6 ata_sff_thaw -EXPORT_SYMBOL_GPL vmlinux 0x18fb2caf cpus_read_unlock -EXPORT_SYMBOL_GPL vmlinux 0x190d2e10 __pm_runtime_use_autosuspend -EXPORT_SYMBOL_GPL vmlinux 0x19117f2a ata_sff_qc_fill_rtf -EXPORT_SYMBOL_GPL vmlinux 0x1913b57a kcpustat_cpu_fetch -EXPORT_SYMBOL_GPL vmlinux 0x19144256 iomap_swapfile_activate -EXPORT_SYMBOL_GPL vmlinux 0x191f4466 ip6_pol_route -EXPORT_SYMBOL_GPL vmlinux 0x1922f214 gpiochip_generic_request -EXPORT_SYMBOL_GPL vmlinux 0x1926028c zynqmp_pm_reset_assert -EXPORT_SYMBOL_GPL vmlinux 0x192bad46 gpiochip_generic_config -EXPORT_SYMBOL_GPL vmlinux 0x1931705c hypervisor_kobj -EXPORT_SYMBOL_GPL vmlinux 0x193ca06d sdio_f0_readb -EXPORT_SYMBOL_GPL vmlinux 0x1951ec45 ahci_shost_attrs -EXPORT_SYMBOL_GPL vmlinux 0x19601efd tick_nohz_dep_set_task -EXPORT_SYMBOL_GPL vmlinux 0x197003bd msg_zerocopy_alloc -EXPORT_SYMBOL_GPL vmlinux 0x19821689 __tracepoint_fdb_delete -EXPORT_SYMBOL_GPL vmlinux 0x19a304ba usb_disabled -EXPORT_SYMBOL_GPL vmlinux 0x19aeed4b pm_runtime_enable -EXPORT_SYMBOL_GPL vmlinux 0x19b27ce3 pm_clk_suspend -EXPORT_SYMBOL_GPL vmlinux 0x19b5397c serdev_device_set_tiocm -EXPORT_SYMBOL_GPL vmlinux 0x19c20269 soc_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0x19c5be56 regulator_put -EXPORT_SYMBOL_GPL vmlinux 0x19df530a dw_pcie_setup_rc -EXPORT_SYMBOL_GPL vmlinux 0x19e217e9 uart_console_write -EXPORT_SYMBOL_GPL vmlinux 0x19e70f1e nvmem_device_find -EXPORT_SYMBOL_GPL vmlinux 0x19e81304 btree_alloc -EXPORT_SYMBOL_GPL vmlinux 0x19e86184 fscrypt_ioctl_get_nonce -EXPORT_SYMBOL_GPL vmlinux 0x19e8f718 fib_rules_dump -EXPORT_SYMBOL_GPL vmlinux 0x19e93e00 wakeup_source_add -EXPORT_SYMBOL_GPL vmlinux 0x19eae4aa tpm_pcr_extend -EXPORT_SYMBOL_GPL vmlinux 0x19edd064 blkg_rwstat_exit -EXPORT_SYMBOL_GPL vmlinux 0x19f3eadf spi_sync -EXPORT_SYMBOL_GPL vmlinux 0x19f58760 device_create_file -EXPORT_SYMBOL_GPL vmlinux 0x1a08c3be devm_acpi_dev_add_driver_gpios -EXPORT_SYMBOL_GPL vmlinux 0x1a10c32b crypto_ft_tab -EXPORT_SYMBOL_GPL vmlinux 0x1a146ec3 usb_ep_type_string -EXPORT_SYMBOL_GPL vmlinux 0x1a17282a sysfs_remove_bin_file -EXPORT_SYMBOL_GPL vmlinux 0x1a2a54a3 devlink_param_driverinit_value_get -EXPORT_SYMBOL_GPL vmlinux 0x1a2bc2a0 nfs_ssc_register -EXPORT_SYMBOL_GPL vmlinux 0x1a3120c2 vfs_kern_mount -EXPORT_SYMBOL_GPL vmlinux 0x1a3176c6 ahci_platform_init_host -EXPORT_SYMBOL_GPL vmlinux 0x1a368b46 skb_zerocopy -EXPORT_SYMBOL_GPL vmlinux 0x1a4763be i2c_of_match_device -EXPORT_SYMBOL_GPL vmlinux 0x1a488d30 mddev_init -EXPORT_SYMBOL_GPL vmlinux 0x1a60be94 mctrl_gpio_free -EXPORT_SYMBOL_GPL vmlinux 0x1a6bf28f fsnotify_get_cookie -EXPORT_SYMBOL_GPL vmlinux 0x1a6db9db generic_fsdax_supported -EXPORT_SYMBOL_GPL vmlinux 0x1a77903a of_alias_get_alias_list -EXPORT_SYMBOL_GPL vmlinux 0x1a7e465a acpi_get_pci_dev -EXPORT_SYMBOL_GPL vmlinux 0x1a82ff66 mtk_hw_set_value -EXPORT_SYMBOL_GPL vmlinux 0x1a876574 __tracepoint_attach_device_to_domain -EXPORT_SYMBOL_GPL vmlinux 0x1a939443 arm64_mm_context_get -EXPORT_SYMBOL_GPL vmlinux 0x1a939ab5 vfs_getxattr_alloc -EXPORT_SYMBOL_GPL vmlinux 0x1aa75968 icc_get_name -EXPORT_SYMBOL_GPL vmlinux 0x1aa9555d devlink_dpipe_table_resource_set -EXPORT_SYMBOL_GPL vmlinux 0x1abe7c6c fwnode_get_parent -EXPORT_SYMBOL_GPL vmlinux 0x1acd18c8 cpuset_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0x1ad888fa genphy_c45_an_disable_aneg -EXPORT_SYMBOL_GPL vmlinux 0x1adeb575 tcp_unregister_ulp -EXPORT_SYMBOL_GPL vmlinux 0x1af267f8 int_pow -EXPORT_SYMBOL_GPL vmlinux 0x1afb6f3a devlink_param_unregister -EXPORT_SYMBOL_GPL vmlinux 0x1afdff19 devm_gpiochip_add_data_with_key -EXPORT_SYMBOL_GPL vmlinux 0x1afe3d33 of_property_read_u64 -EXPORT_SYMBOL_GPL vmlinux 0x1b01d54d virtqueue_poll -EXPORT_SYMBOL_GPL vmlinux 0x1b0d594d transport_add_device -EXPORT_SYMBOL_GPL vmlinux 0x1b0eb571 dev_pm_opp_find_freq_ceil_by_volt -EXPORT_SYMBOL_GPL vmlinux 0x1b149c2a acpi_subsys_prepare -EXPORT_SYMBOL_GPL vmlinux 0x1b1978b9 mmc_send_abort_tuning -EXPORT_SYMBOL_GPL vmlinux 0x1b1d4e31 serial8250_tx_chars -EXPORT_SYMBOL_GPL vmlinux 0x1b1f072a vp_modern_set_status -EXPORT_SYMBOL_GPL vmlinux 0x1b2701c8 devm_regmap_del_irq_chip -EXPORT_SYMBOL_GPL vmlinux 0x1b27fe9e devlink_trap_policers_register -EXPORT_SYMBOL_GPL vmlinux 0x1b2e2ed3 fsl_mc_bus_type -EXPORT_SYMBOL_GPL vmlinux 0x1b3740dc adp5520_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x1b43d753 rio_alloc_net -EXPORT_SYMBOL_GPL vmlinux 0x1b5059ce ata_id_xfermask -EXPORT_SYMBOL_GPL vmlinux 0x1b5f4377 trace_seq_putc -EXPORT_SYMBOL_GPL vmlinux 0x1b61ff83 mtk_pinconf_bias_set_combo -EXPORT_SYMBOL_GPL vmlinux 0x1b6370f7 clk_gate_is_enabled -EXPORT_SYMBOL_GPL vmlinux 0x1b6a8744 xenbus_dev_fatal -EXPORT_SYMBOL_GPL vmlinux 0x1b776013 wakeup_source_register -EXPORT_SYMBOL_GPL vmlinux 0x1b8822d8 pinctrl_gpio_direction_output -EXPORT_SYMBOL_GPL vmlinux 0x1b92e41d inet_putpeer -EXPORT_SYMBOL_GPL vmlinux 0x1b9c6925 ata_link_online -EXPORT_SYMBOL_GPL vmlinux 0x1bac8154 watchdog_register_device -EXPORT_SYMBOL_GPL vmlinux 0x1bc5eebe pinctrl_gpio_direction_input -EXPORT_SYMBOL_GPL vmlinux 0x1bc85e1c irq_set_affinity -EXPORT_SYMBOL_GPL vmlinux 0x1bd36d9d dma_buf_fd -EXPORT_SYMBOL_GPL vmlinux 0x1bd4e8d8 gpiod_unexport -EXPORT_SYMBOL_GPL vmlinux 0x1be87df1 debugfs_create_x32 -EXPORT_SYMBOL_GPL vmlinux 0x1bee4974 sg_alloc_table_chained -EXPORT_SYMBOL_GPL vmlinux 0x1bf5e63f pm_clk_add -EXPORT_SYMBOL_GPL vmlinux 0x1c047290 dm_disk -EXPORT_SYMBOL_GPL vmlinux 0x1c1c18a4 usb_check_bulk_endpoints -EXPORT_SYMBOL_GPL vmlinux 0x1c1c3f72 efivar_entry_remove -EXPORT_SYMBOL_GPL vmlinux 0x1c216d2c dev_pm_opp_get_required_pstate -EXPORT_SYMBOL_GPL vmlinux 0x1c2406ff regulator_list_voltage_linear -EXPORT_SYMBOL_GPL vmlinux 0x1c447785 proc_create_net_data -EXPORT_SYMBOL_GPL vmlinux 0x1c5541bd cpufreq_boost_enabled -EXPORT_SYMBOL_GPL vmlinux 0x1c5b1f28 irq_free_descs -EXPORT_SYMBOL_GPL vmlinux 0x1c5c7ac9 uart_handle_cts_change -EXPORT_SYMBOL_GPL vmlinux 0x1c5e0421 pci_slots_kset -EXPORT_SYMBOL_GPL vmlinux 0x1c5ff742 clk_get_phase -EXPORT_SYMBOL_GPL vmlinux 0x1c80d27d btree_geo128 -EXPORT_SYMBOL_GPL vmlinux 0x1c850647 dst_cache_set_ip4 -EXPORT_SYMBOL_GPL vmlinux 0x1c87a811 __round_jiffies_up -EXPORT_SYMBOL_GPL vmlinux 0x1c89fb22 zynqmp_pm_clock_setparent -EXPORT_SYMBOL_GPL vmlinux 0x1c9f73c1 pci_cfg_access_trylock -EXPORT_SYMBOL_GPL vmlinux 0x1ca4a930 smp_call_function_any -EXPORT_SYMBOL_GPL vmlinux 0x1ca9cc64 dm_per_bio_data -EXPORT_SYMBOL_GPL vmlinux 0x1cb7c983 apei_exec_read_register_value -EXPORT_SYMBOL_GPL vmlinux 0x1cb9a1c8 xenbus_gather -EXPORT_SYMBOL_GPL vmlinux 0x1cb9d51f crypto_register_rngs -EXPORT_SYMBOL_GPL vmlinux 0x1cbcbca7 pci_dev_lock -EXPORT_SYMBOL_GPL vmlinux 0x1cbd92b0 cpu_mitigations_off -EXPORT_SYMBOL_GPL vmlinux 0x1cd93987 __free_iova -EXPORT_SYMBOL_GPL vmlinux 0x1cda8562 iomap_file_unshare -EXPORT_SYMBOL_GPL vmlinux 0x1cde50db pci_create_root_bus -EXPORT_SYMBOL_GPL vmlinux 0x1ce60b12 sock_diag_register -EXPORT_SYMBOL_GPL vmlinux 0x1ce72fde ata_sff_tf_read -EXPORT_SYMBOL_GPL vmlinux 0x1cebad27 xfrm_audit_state_notfound -EXPORT_SYMBOL_GPL vmlinux 0x1cf2ff97 gpiod_set_transitory -EXPORT_SYMBOL_GPL vmlinux 0x1cfa1698 of_get_videomode -EXPORT_SYMBOL_GPL vmlinux 0x1d0d8976 rockchip_pcie_cfg_configuration_accesses -EXPORT_SYMBOL_GPL vmlinux 0x1d15c6d8 thermal_zone_device_disable -EXPORT_SYMBOL_GPL vmlinux 0x1d176a0c irq_domain_disconnect_hierarchy -EXPORT_SYMBOL_GPL vmlinux 0x1d1b8c1f tps6586x_update -EXPORT_SYMBOL_GPL vmlinux 0x1d222ced irq_get_irqchip_state -EXPORT_SYMBOL_GPL vmlinux 0x1d2df261 blk_update_request -EXPORT_SYMBOL_GPL vmlinux 0x1d63a039 pci_get_dsn -EXPORT_SYMBOL_GPL vmlinux 0x1d6696b0 mtk_mutex_disable -EXPORT_SYMBOL_GPL vmlinux 0x1d6c8320 nvmem_cell_read_u64 -EXPORT_SYMBOL_GPL vmlinux 0x1d70d64d usb_init_urb -EXPORT_SYMBOL_GPL vmlinux 0x1d77b0f8 unix_socket_table -EXPORT_SYMBOL_GPL vmlinux 0x1d77dad6 input_class -EXPORT_SYMBOL_GPL vmlinux 0x1d7e1a5c fscrypt_set_context -EXPORT_SYMBOL_GPL vmlinux 0x1d8c29e9 xas_get_mark -EXPORT_SYMBOL_GPL vmlinux 0x1d93d081 ata_sff_drain_fifo -EXPORT_SYMBOL_GPL vmlinux 0x1d94a218 dmi_memdev_handle -EXPORT_SYMBOL_GPL vmlinux 0x1d98fd7e pci_epc_get -EXPORT_SYMBOL_GPL vmlinux 0x1da5967a hrtimer_forward -EXPORT_SYMBOL_GPL vmlinux 0x1daa5061 bus_get_device_klist -EXPORT_SYMBOL_GPL vmlinux 0x1dad2fd7 clk_regmap_gate_ops -EXPORT_SYMBOL_GPL vmlinux 0x1dc08481 debugfs_attr_write -EXPORT_SYMBOL_GPL vmlinux 0x1deb4545 rio_enable_rx_tx_port -EXPORT_SYMBOL_GPL vmlinux 0x1df24b62 rio_route_get_entry -EXPORT_SYMBOL_GPL vmlinux 0x1dfa5dbd mpi_invm -EXPORT_SYMBOL_GPL vmlinux 0x1e0670c6 reset_control_release -EXPORT_SYMBOL_GPL vmlinux 0x1e134dde gpiod_export_link -EXPORT_SYMBOL_GPL vmlinux 0x1e3bbb31 dev_pm_opp_get_level -EXPORT_SYMBOL_GPL vmlinux 0x1e3e84cf acpi_match_device -EXPORT_SYMBOL_GPL vmlinux 0x1e424d61 user_preparse -EXPORT_SYMBOL_GPL vmlinux 0x1e486fb2 rio_request_inb_mbox -EXPORT_SYMBOL_GPL vmlinux 0x1e4e98c0 acpi_dev_filter_resource_type -EXPORT_SYMBOL_GPL vmlinux 0x1e53df4e pwm_put -EXPORT_SYMBOL_GPL vmlinux 0x1e563bee __class_register -EXPORT_SYMBOL_GPL vmlinux 0x1e5db56c dmaengine_desc_set_metadata_len -EXPORT_SYMBOL_GPL vmlinux 0x1e681b86 xfrm_audit_state_notfound_simple -EXPORT_SYMBOL_GPL vmlinux 0x1e681f73 xen_dbgp_external_startup -EXPORT_SYMBOL_GPL vmlinux 0x1e7bb550 devm_thermal_add_hwmon_sysfs -EXPORT_SYMBOL_GPL vmlinux 0x1e7bbcb3 kernel_restart -EXPORT_SYMBOL_GPL vmlinux 0x1e83fee6 HYPERVISOR_physdev_op -EXPORT_SYMBOL_GPL vmlinux 0x1e8a31ac rt_mutex_lock -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 0x1ebf6c2a pci_power_names -EXPORT_SYMBOL_GPL vmlinux 0x1ec5cf7c srcu_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0x1ed4d2eb percpu_ref_kill_and_confirm -EXPORT_SYMBOL_GPL vmlinux 0x1ef59793 irq_chip_set_parent_state -EXPORT_SYMBOL_GPL vmlinux 0x1efaa06f __tracepoint_xhci_dbg_quirks -EXPORT_SYMBOL_GPL vmlinux 0x1efdff8d thermal_zone_bind_cooling_device -EXPORT_SYMBOL_GPL vmlinux 0x1f0cb5bf pm_power_off_prepare -EXPORT_SYMBOL_GPL vmlinux 0x1f0f8ef5 da903x_write -EXPORT_SYMBOL_GPL vmlinux 0x1f113306 ata_do_dev_read_id -EXPORT_SYMBOL_GPL vmlinux 0x1f127dcd pci_enable_pcie_error_reporting -EXPORT_SYMBOL_GPL vmlinux 0x1f1ac45e xhci_ext_cap_init -EXPORT_SYMBOL_GPL vmlinux 0x1f1cc011 zynqmp_pm_get_chipid -EXPORT_SYMBOL_GPL vmlinux 0x1f213d96 iomap_truncate_page -EXPORT_SYMBOL_GPL vmlinux 0x1f2300ea dw_pcie_write_dbi -EXPORT_SYMBOL_GPL vmlinux 0x1f37a5b3 efivars_register -EXPORT_SYMBOL_GPL vmlinux 0x1f38a4f6 mpi_set_highbit -EXPORT_SYMBOL_GPL vmlinux 0x1f3b63d7 devm_clk_get_enabled -EXPORT_SYMBOL_GPL vmlinux 0x1f449588 mctrl_gpio_disable_ms -EXPORT_SYMBOL_GPL vmlinux 0x1f449b58 nvdimm_has_cache -EXPORT_SYMBOL_GPL vmlinux 0x1f458bc6 __platform_register_drivers -EXPORT_SYMBOL_GPL vmlinux 0x1f492da0 devm_kmalloc -EXPORT_SYMBOL_GPL vmlinux 0x1f563160 bpf_offload_dev_priv -EXPORT_SYMBOL_GPL vmlinux 0x1f5a89d2 rockchip_register_softrst -EXPORT_SYMBOL_GPL vmlinux 0x1f5c1e86 devlink_port_attrs_set -EXPORT_SYMBOL_GPL vmlinux 0x1f63bdc0 badblocks_check -EXPORT_SYMBOL_GPL vmlinux 0x1f6bc922 devm_phy_get -EXPORT_SYMBOL_GPL vmlinux 0x1f70d768 irq_set_default_host -EXPORT_SYMBOL_GPL vmlinux 0x1f70d944 devm_thermal_of_cooling_device_register -EXPORT_SYMBOL_GPL vmlinux 0x1f73768f tty_port_default_client_ops -EXPORT_SYMBOL_GPL vmlinux 0x1f761e83 fsl_mc_resource_allocate -EXPORT_SYMBOL_GPL vmlinux 0x1f8544b8 panic_timeout -EXPORT_SYMBOL_GPL vmlinux 0x1f891304 __put_task_struct -EXPORT_SYMBOL_GPL vmlinux 0x1f9747f9 blocking_notifier_chain_unregister -EXPORT_SYMBOL_GPL vmlinux 0x1f97af86 __wake_up_locked_key -EXPORT_SYMBOL_GPL vmlinux 0x1f9a2b53 zynqmp_pm_clock_enable -EXPORT_SYMBOL_GPL vmlinux 0x1f9e5eb7 ata_do_set_mode -EXPORT_SYMBOL_GPL vmlinux 0x1fa1d95c sha256_zero_message_hash -EXPORT_SYMBOL_GPL vmlinux 0x1fa546d6 ata_slave_link_init -EXPORT_SYMBOL_GPL vmlinux 0x1fa86972 component_add -EXPORT_SYMBOL_GPL vmlinux 0x1fb39662 xenbus_watch_pathfmt -EXPORT_SYMBOL_GPL vmlinux 0x1fb70eb9 gnttab_end_foreign_transfer_ref -EXPORT_SYMBOL_GPL vmlinux 0x1fb90627 get_governor_parent_kobj -EXPORT_SYMBOL_GPL vmlinux 0x1fbb4b49 ip6_dst_lookup -EXPORT_SYMBOL_GPL vmlinux 0x1fbc67ce dma_need_sync -EXPORT_SYMBOL_GPL vmlinux 0x1fc3cc1c metadata_dst_free_percpu -EXPORT_SYMBOL_GPL vmlinux 0x1fdb9c89 init_user_ns -EXPORT_SYMBOL_GPL vmlinux 0x1fdfe88d devlink_health_reporter_create -EXPORT_SYMBOL_GPL vmlinux 0x1fe36500 skb_clone_tx_timestamp -EXPORT_SYMBOL_GPL vmlinux 0x1fe6e504 gpiod_add_hogs -EXPORT_SYMBOL_GPL vmlinux 0x1fe6f98a dev_coredumpm -EXPORT_SYMBOL_GPL vmlinux 0x1fe8b3d6 of_clk_hw_register -EXPORT_SYMBOL_GPL vmlinux 0x1feb1f9e devm_of_icc_get -EXPORT_SYMBOL_GPL vmlinux 0x1ff818f6 usb_phy_roothub_resume -EXPORT_SYMBOL_GPL vmlinux 0x2007c198 __traceiter_fdb_delete -EXPORT_SYMBOL_GPL vmlinux 0x2009e400 devlink_info_board_serial_number_put -EXPORT_SYMBOL_GPL vmlinux 0x2013b5b4 pm_genpd_remove -EXPORT_SYMBOL_GPL vmlinux 0x2023b238 usb_sg_wait -EXPORT_SYMBOL_GPL vmlinux 0x2024080b pinctrl_register_and_init -EXPORT_SYMBOL_GPL vmlinux 0x2026cdb3 power_supply_register_no_ws -EXPORT_SYMBOL_GPL vmlinux 0x202a224c pwm_request_from_chip -EXPORT_SYMBOL_GPL vmlinux 0x202adca9 wm831x_reg_unlock -EXPORT_SYMBOL_GPL vmlinux 0x202d4ed6 nvmem_cell_write -EXPORT_SYMBOL_GPL vmlinux 0x203b339a __get_task_comm -EXPORT_SYMBOL_GPL vmlinux 0x204f2c5c gnttab_free_grant_reference -EXPORT_SYMBOL_GPL vmlinux 0x20626f53 pingv6_ops -EXPORT_SYMBOL_GPL vmlinux 0x206af724 pm_runtime_get_if_active -EXPORT_SYMBOL_GPL vmlinux 0x206d04bd led_put -EXPORT_SYMBOL_GPL vmlinux 0x207c5901 sdio_readb -EXPORT_SYMBOL_GPL vmlinux 0x20835a9f __xdp_release_frame -EXPORT_SYMBOL_GPL vmlinux 0x208d712b bus_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x20ab2529 idr_find -EXPORT_SYMBOL_GPL vmlinux 0x20ac0a61 aead_geniv_alloc -EXPORT_SYMBOL_GPL vmlinux 0x20bf0acc udp4_hwcsum -EXPORT_SYMBOL_GPL vmlinux 0x20bf410c iomap_finish_ioends -EXPORT_SYMBOL_GPL vmlinux 0x20d4c243 ata_link_offline -EXPORT_SYMBOL_GPL vmlinux 0x20dd2291 imx_ccm_lock -EXPORT_SYMBOL_GPL vmlinux 0x20fbf716 irq_alloc_generic_chip -EXPORT_SYMBOL_GPL vmlinux 0x20fc44ac serdev_acpi_get_uart_resource -EXPORT_SYMBOL_GPL vmlinux 0x21013941 input_device_enabled -EXPORT_SYMBOL_GPL vmlinux 0x2133a194 acpi_dma_request_slave_chan_by_name -EXPORT_SYMBOL_GPL vmlinux 0x213ee8da of_clk_add_hw_provider -EXPORT_SYMBOL_GPL vmlinux 0x21419d47 crypto_register_aeads -EXPORT_SYMBOL_GPL vmlinux 0x214eff6a is_software_node -EXPORT_SYMBOL_GPL vmlinux 0x21675640 vfs_truncate -EXPORT_SYMBOL_GPL vmlinux 0x216b5191 power_supply_property_is_writeable -EXPORT_SYMBOL_GPL vmlinux 0x216de4e1 rcu_get_gp_kthreads_prio -EXPORT_SYMBOL_GPL vmlinux 0x217303d6 cpufreq_cpu_get_raw -EXPORT_SYMBOL_GPL vmlinux 0x2176e42a hwpoison_filter_memcg -EXPORT_SYMBOL_GPL vmlinux 0x2183e6c9 pm_runtime_force_resume -EXPORT_SYMBOL_GPL vmlinux 0x218c0528 ahci_host_activate -EXPORT_SYMBOL_GPL vmlinux 0x218e37f7 find_iova -EXPORT_SYMBOL_GPL vmlinux 0x21a563da clk_get_accuracy -EXPORT_SYMBOL_GPL vmlinux 0x21ac8b77 iommu_group_get_by_id -EXPORT_SYMBOL_GPL vmlinux 0x21c00039 sysfs_create_files -EXPORT_SYMBOL_GPL vmlinux 0x21c29c95 dma_get_required_mask -EXPORT_SYMBOL_GPL vmlinux 0x21c34c8f gnttab_end_foreign_transfer -EXPORT_SYMBOL_GPL vmlinux 0x21c78e11 devm_usb_get_phy -EXPORT_SYMBOL_GPL vmlinux 0x21cd536a crypto_put_default_null_skcipher -EXPORT_SYMBOL_GPL vmlinux 0x21ce3ed1 dev_fetch_sw_netstats -EXPORT_SYMBOL_GPL vmlinux 0x21d18170 regulator_map_voltage_linear_range -EXPORT_SYMBOL_GPL vmlinux 0x21d5769b page_cache_ra_unbounded -EXPORT_SYMBOL_GPL vmlinux 0x21dbed53 mpc8xxx_spi_probe -EXPORT_SYMBOL_GPL vmlinux 0x21e0e314 crypto_stats_ahash_update -EXPORT_SYMBOL_GPL vmlinux 0x21eb8355 crypto_unregister_rngs -EXPORT_SYMBOL_GPL vmlinux 0x21ee522f dma_resv_wait_timeout -EXPORT_SYMBOL_GPL vmlinux 0x21f3703c perf_tp_event -EXPORT_SYMBOL_GPL vmlinux 0x21f53a1a pm_generic_suspend_late -EXPORT_SYMBOL_GPL vmlinux 0x21f64438 rio_request_mport_dma -EXPORT_SYMBOL_GPL vmlinux 0x2200061c __tracepoint_pelt_irq_tp -EXPORT_SYMBOL_GPL vmlinux 0x220ce70c kvm_arm_hyp_service_available -EXPORT_SYMBOL_GPL vmlinux 0x220dde7c skb_morph -EXPORT_SYMBOL_GPL vmlinux 0x2211a4c0 blk_op_str -EXPORT_SYMBOL_GPL vmlinux 0x221eab6d scatterwalk_copychunks -EXPORT_SYMBOL_GPL vmlinux 0x221f4272 ata_pci_device_do_resume -EXPORT_SYMBOL_GPL vmlinux 0x22264ac1 blk_mq_free_request -EXPORT_SYMBOL_GPL vmlinux 0x223503d6 debugfs_create_u32 -EXPORT_SYMBOL_GPL vmlinux 0x223806b7 fsverity_prepare_setattr -EXPORT_SYMBOL_GPL vmlinux 0x2238e83b serial8250_do_set_mctrl -EXPORT_SYMBOL_GPL vmlinux 0x224a14f5 pci_intx -EXPORT_SYMBOL_GPL vmlinux 0x224f51bf nvmem_device_cell_read -EXPORT_SYMBOL_GPL vmlinux 0x2259d41e dev_pm_opp_get_opp_count -EXPORT_SYMBOL_GPL vmlinux 0x226750e0 divider_recalc_rate -EXPORT_SYMBOL_GPL vmlinux 0x2279655c tpm1_do_selftest -EXPORT_SYMBOL_GPL vmlinux 0x22821d23 badblocks_init -EXPORT_SYMBOL_GPL vmlinux 0x22875496 meson_clk_mpll_ro_ops -EXPORT_SYMBOL_GPL vmlinux 0x229fc8fb gpiochip_enable_irq -EXPORT_SYMBOL_GPL vmlinux 0x22a7f3e7 ahci_start_engine -EXPORT_SYMBOL_GPL vmlinux 0x22ab5367 clk_gate_restore_context -EXPORT_SYMBOL_GPL vmlinux 0x22b9f3c9 thermal_zone_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0x22bde24e __of_reset_control_get -EXPORT_SYMBOL_GPL vmlinux 0x22d259f4 disk_uevent -EXPORT_SYMBOL_GPL vmlinux 0x22d60537 tcf_frag_xmit_count -EXPORT_SYMBOL_GPL vmlinux 0x22d9409b iomap_sort_ioends -EXPORT_SYMBOL_GPL vmlinux 0x22f25931 sysfs_remove_group -EXPORT_SYMBOL_GPL vmlinux 0x22f31abb add_hwgenerator_randomness -EXPORT_SYMBOL_GPL vmlinux 0x22f6d5d1 ata_pci_remove_one -EXPORT_SYMBOL_GPL vmlinux 0x22fb6a32 elv_register -EXPORT_SYMBOL_GPL vmlinux 0x22fd08ba cpuacct_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0x22fffeb2 devlink_is_reload_failed -EXPORT_SYMBOL_GPL vmlinux 0x230127f3 fwnode_get_phy_mode -EXPORT_SYMBOL_GPL vmlinux 0x230dc872 phy_reset -EXPORT_SYMBOL_GPL vmlinux 0x2316a8fe pci_msi_create_irq_domain -EXPORT_SYMBOL_GPL vmlinux 0x23217d30 blkg_conf_finish -EXPORT_SYMBOL_GPL vmlinux 0x2340a131 security_path_truncate -EXPORT_SYMBOL_GPL vmlinux 0x23412816 rtc_tm_to_ktime -EXPORT_SYMBOL_GPL vmlinux 0x234cf416 devlink_fmsg_string_pair_put -EXPORT_SYMBOL_GPL vmlinux 0x23722b12 serdev_device_set_baudrate -EXPORT_SYMBOL_GPL vmlinux 0x2380e355 of_add_property -EXPORT_SYMBOL_GPL vmlinux 0x23864ce7 cpuset_mem_spread_node -EXPORT_SYMBOL_GPL vmlinux 0x239102f0 max8997_bulk_read -EXPORT_SYMBOL_GPL vmlinux 0x2395acf7 acpi_device_fix_up_power -EXPORT_SYMBOL_GPL vmlinux 0x2396c7f0 clk_set_parent -EXPORT_SYMBOL_GPL vmlinux 0x23a68101 icc_nodes_remove -EXPORT_SYMBOL_GPL vmlinux 0x23acd586 device_match_any -EXPORT_SYMBOL_GPL vmlinux 0x23b32578 __raw_v4_lookup -EXPORT_SYMBOL_GPL vmlinux 0x23b8221c sysfs_remove_file_ns -EXPORT_SYMBOL_GPL vmlinux 0x23bba397 iommu_device_sysfs_remove -EXPORT_SYMBOL_GPL vmlinux 0x23dd8dbd dev_pm_opp_detach_genpd -EXPORT_SYMBOL_GPL vmlinux 0x23f14139 devm_fwnode_gpiod_get_index -EXPORT_SYMBOL_GPL vmlinux 0x240a3f8e usb_control_msg_recv -EXPORT_SYMBOL_GPL vmlinux 0x240b3f42 pinctrl_dev_get_drvdata -EXPORT_SYMBOL_GPL vmlinux 0x2417e28c gpiochip_line_is_persistent -EXPORT_SYMBOL_GPL vmlinux 0x2421097b mpi_const -EXPORT_SYMBOL_GPL vmlinux 0x2421bd45 sbitmap_del_wait_queue -EXPORT_SYMBOL_GPL vmlinux 0x2426a082 __traceiter_xdp_bulk_tx -EXPORT_SYMBOL_GPL vmlinux 0x24297070 pm_generic_poweroff -EXPORT_SYMBOL_GPL vmlinux 0x242e9265 kthread_unpark -EXPORT_SYMBOL_GPL vmlinux 0x242ed802 rio_register_driver -EXPORT_SYMBOL_GPL vmlinux 0x243808b5 spi_finalize_current_message -EXPORT_SYMBOL_GPL vmlinux 0x24382e6e xhci_dbg_trace -EXPORT_SYMBOL_GPL vmlinux 0x2441adc8 synth_event_add_next_val -EXPORT_SYMBOL_GPL vmlinux 0x2441b838 md_start -EXPORT_SYMBOL_GPL vmlinux 0x2445370d pci_iomap_wc -EXPORT_SYMBOL_GPL vmlinux 0x244cac14 wm8350_reg_unlock -EXPORT_SYMBOL_GPL vmlinux 0x2462ec1b synth_event_add_val -EXPORT_SYMBOL_GPL vmlinux 0x2469810f __rcu_read_unlock -EXPORT_SYMBOL_GPL vmlinux 0x24709b2f trace_seq_putmem -EXPORT_SYMBOL_GPL vmlinux 0x247f1348 devm_bitmap_zalloc -EXPORT_SYMBOL_GPL vmlinux 0x2484baee acpi_subsys_suspend_late -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 0x2494752f rtnl_link_unregister -EXPORT_SYMBOL_GPL vmlinux 0x2496e6a2 report_iommu_fault -EXPORT_SYMBOL_GPL vmlinux 0x24ad11db wakeup_sources_read_unlock -EXPORT_SYMBOL_GPL vmlinux 0x24b67859 sk_msg_return -EXPORT_SYMBOL_GPL vmlinux 0x24d54b58 regulator_unregister -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 0x24f7facf __traceiter_neigh_timer_handler -EXPORT_SYMBOL_GPL vmlinux 0x24fc50f4 kdb_unregister -EXPORT_SYMBOL_GPL vmlinux 0x250841a8 sock_inuse_get -EXPORT_SYMBOL_GPL vmlinux 0x2512aae9 find_pid_ns -EXPORT_SYMBOL_GPL vmlinux 0x251ae79d param_ops_bool_enable_only -EXPORT_SYMBOL_GPL vmlinux 0x251c330a fwnode_find_reference -EXPORT_SYMBOL_GPL vmlinux 0x252cba03 dev_pm_qos_remove_notifier -EXPORT_SYMBOL_GPL vmlinux 0x25301bc6 arch_wb_cache_pmem -EXPORT_SYMBOL_GPL vmlinux 0x2533fa51 devm_of_pwm_get -EXPORT_SYMBOL_GPL vmlinux 0x25379e73 clk_set_min_rate -EXPORT_SYMBOL_GPL vmlinux 0x25449117 nexthop_select_path -EXPORT_SYMBOL_GPL vmlinux 0x2549c54a crypto_grab_ahash -EXPORT_SYMBOL_GPL vmlinux 0x254a55c9 ata_host_init -EXPORT_SYMBOL_GPL vmlinux 0x25520962 mbox_free_channel -EXPORT_SYMBOL_GPL vmlinux 0x255be6a8 firmware_request_platform -EXPORT_SYMBOL_GPL vmlinux 0x2562aa2b pci_check_and_unmask_intx -EXPORT_SYMBOL_GPL vmlinux 0x2574da11 zynqmp_pm_write_pggs -EXPORT_SYMBOL_GPL vmlinux 0x2591a601 __hwspin_trylock -EXPORT_SYMBOL_GPL vmlinux 0x2592fc6c console_printk -EXPORT_SYMBOL_GPL vmlinux 0x259c25fa raw_unhash_sk -EXPORT_SYMBOL_GPL vmlinux 0x259e8857 of_dma_controller_register -EXPORT_SYMBOL_GPL vmlinux 0x25a5d5d5 balloon_page_list_dequeue -EXPORT_SYMBOL_GPL vmlinux 0x25a7ff76 fat_build_inode -EXPORT_SYMBOL_GPL vmlinux 0x25bb279d bio_alloc_kiocb -EXPORT_SYMBOL_GPL vmlinux 0x25bbfa9a security_kernel_load_data -EXPORT_SYMBOL_GPL vmlinux 0x25c245b6 usb_create_shared_hcd -EXPORT_SYMBOL_GPL vmlinux 0x25c71ecf cpu_latency_qos_remove_request -EXPORT_SYMBOL_GPL vmlinux 0x25d744f3 ohci_setup -EXPORT_SYMBOL_GPL vmlinux 0x25e3ff7d iommu_group_for_each_dev -EXPORT_SYMBOL_GPL vmlinux 0x2608a2d8 of_dma_is_coherent -EXPORT_SYMBOL_GPL vmlinux 0x2611c7b7 xenbus_dev_is_online -EXPORT_SYMBOL_GPL vmlinux 0x2625bd02 battery_hook_unregister -EXPORT_SYMBOL_GPL vmlinux 0x26298e85 akcipher_register_instance -EXPORT_SYMBOL_GPL vmlinux 0x263dc0c3 ip6_redirect -EXPORT_SYMBOL_GPL vmlinux 0x26483e77 inet6_cleanup_sock -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 0x2672d620 dprc_reset_container -EXPORT_SYMBOL_GPL vmlinux 0x267df662 smp_call_on_cpu -EXPORT_SYMBOL_GPL vmlinux 0x2684ab98 ipv6_dup_options -EXPORT_SYMBOL_GPL vmlinux 0x26901267 amba_ahb_device_add -EXPORT_SYMBOL_GPL vmlinux 0x269e7bf5 regulator_bulk_unregister_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0x26a9bafd pci_epc_init_notify -EXPORT_SYMBOL_GPL vmlinux 0x26ab4755 put_old_itimerspec32 -EXPORT_SYMBOL_GPL vmlinux 0x26bb3f28 fixed_phy_set_link_update -EXPORT_SYMBOL_GPL vmlinux 0x26c35fa8 mbox_flush -EXPORT_SYMBOL_GPL vmlinux 0x26c90ea4 scsi_eh_get_sense -EXPORT_SYMBOL_GPL vmlinux 0x26cabe91 cpufreq_policy_transition_delay_us -EXPORT_SYMBOL_GPL vmlinux 0x26dbc2bb __skb_tstamp_tx -EXPORT_SYMBOL_GPL vmlinux 0x26ed2186 register_vmap_purge_notifier -EXPORT_SYMBOL_GPL vmlinux 0x26f1a52b regulator_bulk_get -EXPORT_SYMBOL_GPL vmlinux 0x2701953f mtk_mutex_add_comp -EXPORT_SYMBOL_GPL vmlinux 0x271b4a93 pci_enable_ats -EXPORT_SYMBOL_GPL vmlinux 0x271b6e84 __traceiter_fib6_table_lookup -EXPORT_SYMBOL_GPL vmlinux 0x27270311 ata_scsi_dma_need_drain -EXPORT_SYMBOL_GPL vmlinux 0x272e9d77 hisi_reset_exit -EXPORT_SYMBOL_GPL vmlinux 0x273cac5d usb_block_urb -EXPORT_SYMBOL_GPL vmlinux 0x273e2382 __context_tracking_enter -EXPORT_SYMBOL_GPL vmlinux 0x273efade mtk_pinconf_bias_set -EXPORT_SYMBOL_GPL vmlinux 0x27402b77 shmem_read_mapping_page_gfp -EXPORT_SYMBOL_GPL vmlinux 0x274dd1a3 sg_free_table_chained -EXPORT_SYMBOL_GPL vmlinux 0x2754fa87 tty_standard_install -EXPORT_SYMBOL_GPL vmlinux 0x27610bbd of_irq_to_resource -EXPORT_SYMBOL_GPL vmlinux 0x2762fed8 debugfs_attr_read -EXPORT_SYMBOL_GPL vmlinux 0x2772d796 efivars_kobject -EXPORT_SYMBOL_GPL vmlinux 0x27741345 lwtunnel_state_alloc -EXPORT_SYMBOL_GPL vmlinux 0x277b4f53 gpiod_set_array_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0x27896385 of_hwspin_lock_get_id_byname -EXPORT_SYMBOL_GPL vmlinux 0x2791890e __traceiter_napi_poll -EXPORT_SYMBOL_GPL vmlinux 0x2795f4f3 ata_scsi_port_error_handler -EXPORT_SYMBOL_GPL vmlinux 0x27a01dc5 crypto_ahash_setkey -EXPORT_SYMBOL_GPL vmlinux 0x27a200b0 platform_get_irq -EXPORT_SYMBOL_GPL vmlinux 0x27b274c9 blk_mq_quiesce_queue_nowait -EXPORT_SYMBOL_GPL vmlinux 0x27c0bd23 sync_page_io -EXPORT_SYMBOL_GPL vmlinux 0x27c5318c __traceiter_wbc_writepage -EXPORT_SYMBOL_GPL vmlinux 0x27c735ad rio_mport_write_config_32 -EXPORT_SYMBOL_GPL vmlinux 0x27d3ff92 regulator_unregister_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0x27dc9471 __tracepoint_br_fdb_update -EXPORT_SYMBOL_GPL vmlinux 0x27df3f07 sk_psock_drop -EXPORT_SYMBOL_GPL vmlinux 0x27e79084 of_pwm_get -EXPORT_SYMBOL_GPL vmlinux 0x27f4f029 ftrace_set_global_filter -EXPORT_SYMBOL_GPL vmlinux 0x27f5adbf usb_hcd_map_urb_for_dma -EXPORT_SYMBOL_GPL vmlinux 0x27fa66e1 nr_free_buffer_pages -EXPORT_SYMBOL_GPL vmlinux 0x28084c4b dm_internal_suspend_fast -EXPORT_SYMBOL_GPL vmlinux 0x28177625 devm_regmap_init_vexpress_config -EXPORT_SYMBOL_GPL vmlinux 0x2817f7fd cppc_get_desired_perf -EXPORT_SYMBOL_GPL vmlinux 0x2822a212 of_phy_simple_xlate -EXPORT_SYMBOL_GPL vmlinux 0x282cdabc usb_led_activity -EXPORT_SYMBOL_GPL vmlinux 0x2840efc5 __dev_forward_skb -EXPORT_SYMBOL_GPL vmlinux 0x28452ac6 bsg_job_done -EXPORT_SYMBOL_GPL vmlinux 0x284f77e9 device_del -EXPORT_SYMBOL_GPL vmlinux 0x28556f2c scsi_autopm_put_device -EXPORT_SYMBOL_GPL vmlinux 0x285ec52b elv_rqhash_del -EXPORT_SYMBOL_GPL vmlinux 0x2864abc9 klist_node_attached -EXPORT_SYMBOL_GPL vmlinux 0x2868f89b task_cgroup_path -EXPORT_SYMBOL_GPL vmlinux 0x286a9e2c tpmm_chip_alloc -EXPORT_SYMBOL_GPL vmlinux 0x286ac262 device_remove_groups -EXPORT_SYMBOL_GPL vmlinux 0x286cc647 async_synchronize_cookie_domain -EXPORT_SYMBOL_GPL vmlinux 0x2875d3ea gnttab_alloc_pages -EXPORT_SYMBOL_GPL vmlinux 0x2882d40e usb_role_switch_unregister -EXPORT_SYMBOL_GPL vmlinux 0x28832ddb nvdimm_bus_register -EXPORT_SYMBOL_GPL vmlinux 0x289310c1 da903x_clr_bits -EXPORT_SYMBOL_GPL vmlinux 0x28aa6a67 call_rcu -EXPORT_SYMBOL_GPL vmlinux 0x28ab214f devlink_port_param_driverinit_value_set -EXPORT_SYMBOL_GPL vmlinux 0x28ab4fb9 pinctrl_gpio_free -EXPORT_SYMBOL_GPL vmlinux 0x28af2bad gpiod_get -EXPORT_SYMBOL_GPL vmlinux 0x28b030d2 of_overlay_notifier_unregister -EXPORT_SYMBOL_GPL vmlinux 0x28ba99af dst_blackhole_mtu -EXPORT_SYMBOL_GPL vmlinux 0x28ca1550 of_usb_get_dr_mode_by_phy -EXPORT_SYMBOL_GPL vmlinux 0x28ed95e7 cpu_latency_qos_update_request -EXPORT_SYMBOL_GPL vmlinux 0x28ef0b4d bd_link_disk_holder -EXPORT_SYMBOL_GPL vmlinux 0x28f26684 irq_set_affinity_hint -EXPORT_SYMBOL_GPL vmlinux 0x28f4468e regmap_multi_reg_write_bypassed -EXPORT_SYMBOL_GPL vmlinux 0x28fd7ea8 __nf_ip6_route -EXPORT_SYMBOL_GPL vmlinux 0x290a6a22 fib_add_nexthop -EXPORT_SYMBOL_GPL vmlinux 0x291876f3 mpi_ec_get_affine -EXPORT_SYMBOL_GPL vmlinux 0x291bc077 devfreq_event_get_edev_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0x2923691f usb_reset_endpoint -EXPORT_SYMBOL_GPL vmlinux 0x292bb5db xhci_gen_setup -EXPORT_SYMBOL_GPL vmlinux 0x293f8901 tty_port_register_device_attr -EXPORT_SYMBOL_GPL vmlinux 0x29502c73 usb_enable_ltm -EXPORT_SYMBOL_GPL vmlinux 0x2959332a xfrm_state_afinfo_get_rcu -EXPORT_SYMBOL_GPL vmlinux 0x295a3854 lwtunnel_xmit -EXPORT_SYMBOL_GPL vmlinux 0x295b982a hisi_clk_register_fixed_rate -EXPORT_SYMBOL_GPL vmlinux 0x295f16e6 pinctrl_dev_get_devname -EXPORT_SYMBOL_GPL vmlinux 0x29611b5a blk_revalidate_disk_zones -EXPORT_SYMBOL_GPL vmlinux 0x29710471 component_master_add_with_match -EXPORT_SYMBOL_GPL vmlinux 0x2972e190 k3_ringacc_ring_cfg -EXPORT_SYMBOL_GPL vmlinux 0x29753a45 blk_steal_bios -EXPORT_SYMBOL_GPL vmlinux 0x29758cd1 nf_queue_entry_get_refs -EXPORT_SYMBOL_GPL vmlinux 0x2982ba40 i2c_detect_slave_mode -EXPORT_SYMBOL_GPL vmlinux 0x29ba6e5c __spi_register_driver -EXPORT_SYMBOL_GPL vmlinux 0x29c2ce98 devm_hwmon_device_register_with_groups -EXPORT_SYMBOL_GPL vmlinux 0x29d27e87 devlink_port_params_register -EXPORT_SYMBOL_GPL vmlinux 0x29d76547 k3_udma_glue_tdown_rx_chn -EXPORT_SYMBOL_GPL vmlinux 0x29e8c412 iommu_sva_unbind_gpasid -EXPORT_SYMBOL_GPL vmlinux 0x29eba37f current_is_async -EXPORT_SYMBOL_GPL vmlinux 0x29ec56a9 scsi_bus_type -EXPORT_SYMBOL_GPL vmlinux 0x29f92cc2 mtk_eint_do_suspend -EXPORT_SYMBOL_GPL vmlinux 0x2a1248ca crypto_alg_extsize -EXPORT_SYMBOL_GPL vmlinux 0x2a22ab4f dpbp_disable -EXPORT_SYMBOL_GPL vmlinux 0x2a2f01ee mpc8xxx_spi_tx_buf_u32 -EXPORT_SYMBOL_GPL vmlinux 0x2a2f98db shash_free_singlespawn_instance -EXPORT_SYMBOL_GPL vmlinux 0x2a37ea11 imx_clk_hw_frac_pll -EXPORT_SYMBOL_GPL vmlinux 0x2a3fc604 edac_pci_handle_pe -EXPORT_SYMBOL_GPL vmlinux 0x2a466157 iterate_mounts -EXPORT_SYMBOL_GPL vmlinux 0x2a5a0b04 __platform_create_bundle -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 0x2a8143c9 cdrom_read_tocentry -EXPORT_SYMBOL_GPL vmlinux 0x2a9a7112 powercap_unregister_control_type -EXPORT_SYMBOL_GPL vmlinux 0x2aa03dfc xdp_rxq_info_unused -EXPORT_SYMBOL_GPL vmlinux 0x2aa244c3 crypto_stats_akcipher_verify -EXPORT_SYMBOL_GPL vmlinux 0x2aadad1a efi_capsule_update -EXPORT_SYMBOL_GPL vmlinux 0x2ab44859 sysfs_groups_change_owner -EXPORT_SYMBOL_GPL vmlinux 0x2ab7ba76 usb_bulk_msg -EXPORT_SYMBOL_GPL vmlinux 0x2aba8626 md_find_rdev_nr_rcu -EXPORT_SYMBOL_GPL vmlinux 0x2ac18417 nf_nat_hook -EXPORT_SYMBOL_GPL vmlinux 0x2acb6ba9 pinctrl_get -EXPORT_SYMBOL_GPL vmlinux 0x2ae1689e zynqmp_pm_clock_getdivider -EXPORT_SYMBOL_GPL vmlinux 0x2af07f0d fib_nexthop_info -EXPORT_SYMBOL_GPL vmlinux 0x2af3835f blk_execute_rq_nowait -EXPORT_SYMBOL_GPL vmlinux 0x2af46b15 cpufreq_cooling_register -EXPORT_SYMBOL_GPL vmlinux 0x2b0765ca xen_store_interface -EXPORT_SYMBOL_GPL vmlinux 0x2b0fe000 gnttab_cancel_free_callback -EXPORT_SYMBOL_GPL vmlinux 0x2b172340 usb_urb_ep_type_check -EXPORT_SYMBOL_GPL vmlinux 0x2b182f1d percpu_up_write -EXPORT_SYMBOL_GPL vmlinux 0x2b230305 pci_epf_remove_vepf -EXPORT_SYMBOL_GPL vmlinux 0x2b26724a unregister_virtio_driver -EXPORT_SYMBOL_GPL vmlinux 0x2b2a206e pci_epf_unregister_driver -EXPORT_SYMBOL_GPL vmlinux 0x2b353ad9 reset_simple_ops -EXPORT_SYMBOL_GPL vmlinux 0x2b4509dd devlink_health_reporter_state_update -EXPORT_SYMBOL_GPL vmlinux 0x2b519a97 vfs_write -EXPORT_SYMBOL_GPL vmlinux 0x2b6150fb power_supply_temp2resist_simple -EXPORT_SYMBOL_GPL vmlinux 0x2b6221c7 inet6_lookup_listener -EXPORT_SYMBOL_GPL vmlinux 0x2b673c08 ehci_handshake -EXPORT_SYMBOL_GPL vmlinux 0x2b6b2371 virtio_device_restore -EXPORT_SYMBOL_GPL vmlinux 0x2b6d48d4 transport_destroy_device -EXPORT_SYMBOL_GPL vmlinux 0x2b6d960d synth_event_cmd_init -EXPORT_SYMBOL_GPL vmlinux 0x2b7b8892 syscon_node_to_regmap -EXPORT_SYMBOL_GPL vmlinux 0x2b850edf meson_clk_mpll_ops -EXPORT_SYMBOL_GPL vmlinux 0x2b8b9d71 gpiod_put -EXPORT_SYMBOL_GPL vmlinux 0x2b952517 clk_has_parent -EXPORT_SYMBOL_GPL vmlinux 0x2b960b66 qman_is_probed -EXPORT_SYMBOL_GPL vmlinux 0x2ba54d9f xdp_attachment_setup -EXPORT_SYMBOL_GPL vmlinux 0x2ba787f9 device_create_with_groups -EXPORT_SYMBOL_GPL vmlinux 0x2bc3af45 __fl6_sock_lookup -EXPORT_SYMBOL_GPL vmlinux 0x2bcd8658 sata_scr_write_flush -EXPORT_SYMBOL_GPL vmlinux 0x2bcfede7 spi_res_alloc -EXPORT_SYMBOL_GPL vmlinux 0x2be89dd5 mpc8xxx_spi_rx_buf_u16 -EXPORT_SYMBOL_GPL vmlinux 0x2be92de3 i2c_probe_func_quick_read -EXPORT_SYMBOL_GPL vmlinux 0x2bf66dab ata_cable_unknown -EXPORT_SYMBOL_GPL vmlinux 0x2bfb2935 ahci_kick_engine -EXPORT_SYMBOL_GPL vmlinux 0x2bfbca5b list_lru_walk_one -EXPORT_SYMBOL_GPL vmlinux 0x2c00f425 da903x_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x2c0a4a3a acpi_processor_get_performance_info -EXPORT_SYMBOL_GPL vmlinux 0x2c0f0f87 raw_v6_hashinfo -EXPORT_SYMBOL_GPL vmlinux 0x2c18f474 ata_ehi_clear_desc -EXPORT_SYMBOL_GPL vmlinux 0x2c19be40 pci_enable_rom -EXPORT_SYMBOL_GPL vmlinux 0x2c208607 power_supply_is_system_supplied -EXPORT_SYMBOL_GPL vmlinux 0x2c3054f9 net_inc_ingress_queue -EXPORT_SYMBOL_GPL vmlinux 0x2c36cc85 __tracepoint_unmap -EXPORT_SYMBOL_GPL vmlinux 0x2c39412e fsnotify_add_mark -EXPORT_SYMBOL_GPL vmlinux 0x2c5335e5 pstore_unregister -EXPORT_SYMBOL_GPL vmlinux 0x2c5cf4b3 imx_pinctrl_pm_ops -EXPORT_SYMBOL_GPL vmlinux 0x2c635527 arch_invalidate_pmem -EXPORT_SYMBOL_GPL vmlinux 0x2c66ac85 devlink_info_serial_number_put -EXPORT_SYMBOL_GPL vmlinux 0x2c72185f shmem_file_setup_with_mnt -EXPORT_SYMBOL_GPL vmlinux 0x2c752118 devm_phy_optional_get -EXPORT_SYMBOL_GPL vmlinux 0x2c790d4a __tracepoint_sched_util_est_cfs_tp -EXPORT_SYMBOL_GPL vmlinux 0x2c7db649 irq_dispose_mapping -EXPORT_SYMBOL_GPL vmlinux 0x2c7ec256 dev_pm_opp_init_cpufreq_table -EXPORT_SYMBOL_GPL vmlinux 0x2c81a826 imx_1443x_pll -EXPORT_SYMBOL_GPL vmlinux 0x2c8dd6b8 edac_mem_types -EXPORT_SYMBOL_GPL vmlinux 0x2c9013a9 pm_genpd_add_device -EXPORT_SYMBOL_GPL vmlinux 0x2c962ad0 relay_subbufs_consumed -EXPORT_SYMBOL_GPL vmlinux 0x2c967edc usb_driver_release_interface -EXPORT_SYMBOL_GPL vmlinux 0x2c97f8a2 of_reconfig_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0x2ca35afa sdio_get_host_pm_caps -EXPORT_SYMBOL_GPL vmlinux 0x2ca41024 ioasid_get -EXPORT_SYMBOL_GPL vmlinux 0x2cb88442 iommu_detach_device -EXPORT_SYMBOL_GPL vmlinux 0x2cc495c5 rpi_firmware_property_list -EXPORT_SYMBOL_GPL vmlinux 0x2cddabc6 sata_scr_write -EXPORT_SYMBOL_GPL vmlinux 0x2ce4e01b crypto_stats_aead_decrypt -EXPORT_SYMBOL_GPL vmlinux 0x2ce61f33 __SCK__tp_func_br_fdb_add -EXPORT_SYMBOL_GPL vmlinux 0x2ce9bc15 dw_pcie_host_deinit -EXPORT_SYMBOL_GPL vmlinux 0x2cea32ee unregister_oldmem_pfn_is_ram -EXPORT_SYMBOL_GPL vmlinux 0x2cef6bb4 gnttab_unmap_refs_sync -EXPORT_SYMBOL_GPL vmlinux 0x2cf4f776 sysfs_create_group -EXPORT_SYMBOL_GPL vmlinux 0x2cf550b8 usb_control_msg -EXPORT_SYMBOL_GPL vmlinux 0x2cf7cde4 __traceiter_sched_util_est_cfs_tp -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 0x2d2f491a sata_scr_read -EXPORT_SYMBOL_GPL vmlinux 0x2d2ffb98 balloon_page_alloc -EXPORT_SYMBOL_GPL vmlinux 0x2d314085 gpiochip_lock_as_irq -EXPORT_SYMBOL_GPL vmlinux 0x2d38b76f pinctrl_utils_add_config -EXPORT_SYMBOL_GPL vmlinux 0x2d41e6f5 __trace_puts -EXPORT_SYMBOL_GPL vmlinux 0x2d4ef80a usb_interrupt_msg -EXPORT_SYMBOL_GPL vmlinux 0x2d58bf20 dw_pcie_ep_init_notify -EXPORT_SYMBOL_GPL vmlinux 0x2d59dd39 debugfs_attr_write_signed -EXPORT_SYMBOL_GPL vmlinux 0x2d6998e4 clk_hw_unregister_mux -EXPORT_SYMBOL_GPL vmlinux 0x2d6a5801 dma_buf_dynamic_attach -EXPORT_SYMBOL_GPL vmlinux 0x2d6aa0f0 arch_apei_enable_cmcff -EXPORT_SYMBOL_GPL vmlinux 0x2d73ca89 devfreq_cooling_unregister -EXPORT_SYMBOL_GPL vmlinux 0x2d7aa12a crypto_find_alg -EXPORT_SYMBOL_GPL vmlinux 0x2d8050dc crypto_register_ahashes -EXPORT_SYMBOL_GPL vmlinux 0x2d837471 pci_platform_power_transition -EXPORT_SYMBOL_GPL vmlinux 0x2d8ee710 fib_table_lookup -EXPORT_SYMBOL_GPL vmlinux 0x2d8fc281 tps6586x_clr_bits -EXPORT_SYMBOL_GPL vmlinux 0x2daf755e pci_dev_unlock -EXPORT_SYMBOL_GPL vmlinux 0x2db67d4a owl_sps_set_pg -EXPORT_SYMBOL_GPL vmlinux 0x2de2178b sock_diag_unregister -EXPORT_SYMBOL_GPL vmlinux 0x2dea4a07 crypto_stats_get -EXPORT_SYMBOL_GPL vmlinux 0x2df684dc clk_hw_unregister_divider -EXPORT_SYMBOL_GPL vmlinux 0x2df958b4 usb_find_interface -EXPORT_SYMBOL_GPL vmlinux 0x2dfbeb04 acpi_pci_check_ejectable -EXPORT_SYMBOL_GPL vmlinux 0x2e028ae6 rcutorture_get_gp_data -EXPORT_SYMBOL_GPL vmlinux 0x2e0635f9 led_trigger_write -EXPORT_SYMBOL_GPL vmlinux 0x2e2360b1 ftrace_set_global_notrace -EXPORT_SYMBOL_GPL vmlinux 0x2e376fb6 fsl_mc_object_free -EXPORT_SYMBOL_GPL vmlinux 0x2e3ffb86 rdev_get_regmap -EXPORT_SYMBOL_GPL vmlinux 0x2e48fe68 add_swap_extent -EXPORT_SYMBOL_GPL vmlinux 0x2e66298c __SCK__tp_func_sched_util_est_cfs_tp -EXPORT_SYMBOL_GPL vmlinux 0x2e743fc5 ahci_start_fis_rx -EXPORT_SYMBOL_GPL vmlinux 0x2e9369b7 kvm_arch_ptp_get_crosststamp -EXPORT_SYMBOL_GPL vmlinux 0x2ea7b75c dma_buf_put -EXPORT_SYMBOL_GPL vmlinux 0x2ea7f047 sbitmap_finish_wait -EXPORT_SYMBOL_GPL vmlinux 0x2ebb19fd execute_in_process_context -EXPORT_SYMBOL_GPL vmlinux 0x2ebe3135 cpu_is_hotpluggable -EXPORT_SYMBOL_GPL vmlinux 0x2ec5e4a4 of_dma_configure_id -EXPORT_SYMBOL_GPL vmlinux 0x2ecb7803 of_clk_get_from_provider -EXPORT_SYMBOL_GPL vmlinux 0x2ed15d86 devm_regmap_field_free -EXPORT_SYMBOL_GPL vmlinux 0x2ed253cf __list_lru_init -EXPORT_SYMBOL_GPL vmlinux 0x2ed29ff4 ip6_flush_pending_frames -EXPORT_SYMBOL_GPL vmlinux 0x2ed902e3 __pci_epf_register_driver -EXPORT_SYMBOL_GPL vmlinux 0x2eed2967 dev_pm_genpd_add_notifier -EXPORT_SYMBOL_GPL vmlinux 0x2eff1c53 device_store_int -EXPORT_SYMBOL_GPL vmlinux 0x2f0d9053 usb_otg_state_string -EXPORT_SYMBOL_GPL vmlinux 0x2f171ecf devm_gpiod_put_array -EXPORT_SYMBOL_GPL vmlinux 0x2f1ea064 __SCK__tp_func_xdp_bulk_tx -EXPORT_SYMBOL_GPL vmlinux 0x2f232fbb gen_pool_size -EXPORT_SYMBOL_GPL vmlinux 0x2f27c66d blk_trace_setup -EXPORT_SYMBOL_GPL vmlinux 0x2f2c95c4 flush_work -EXPORT_SYMBOL_GPL vmlinux 0x2f3dea66 ata_std_bios_param -EXPORT_SYMBOL_GPL vmlinux 0x2f4880df static_key_slow_dec -EXPORT_SYMBOL_GPL vmlinux 0x2f49c86e of_pci_dma_range_parser_init -EXPORT_SYMBOL_GPL vmlinux 0x2f5f2a48 sata_port_ops -EXPORT_SYMBOL_GPL vmlinux 0x2f62d1b6 sched_setattr_nocheck -EXPORT_SYMBOL_GPL vmlinux 0x2f64415f unregister_acpi_hed_notifier -EXPORT_SYMBOL_GPL vmlinux 0x2f7e4f26 spi_bus_unlock -EXPORT_SYMBOL_GPL vmlinux 0x2f7fec0a of_map_id -EXPORT_SYMBOL_GPL vmlinux 0x2f85a8f8 devlink_param_publish -EXPORT_SYMBOL_GPL vmlinux 0x2f883c53 led_classdev_unregister -EXPORT_SYMBOL_GPL vmlinux 0x2f8dd371 devm_hwspin_lock_free -EXPORT_SYMBOL_GPL vmlinux 0x2fa62e31 __of_phy_provider_register -EXPORT_SYMBOL_GPL vmlinux 0x2fac3c71 k3_ringacc_request_rings_pair -EXPORT_SYMBOL_GPL vmlinux 0x2fb41480 regulator_set_voltage -EXPORT_SYMBOL_GPL vmlinux 0x2fb463f9 bio_end_io_acct_remapped -EXPORT_SYMBOL_GPL vmlinux 0x2fb4b4ab __reset_control_get -EXPORT_SYMBOL_GPL vmlinux 0x2fc1e0fe kmem_valid_obj -EXPORT_SYMBOL_GPL vmlinux 0x2fc2cfa4 mmc_get_ext_csd -EXPORT_SYMBOL_GPL vmlinux 0x2fc7a062 xenbus_switch_state -EXPORT_SYMBOL_GPL vmlinux 0x2fc7eeb0 posix_acl_default_xattr_handler -EXPORT_SYMBOL_GPL vmlinux 0x2fde9bc2 bind_interdomain_evtchn_to_irqhandler_lateeoi -EXPORT_SYMBOL_GPL vmlinux 0x2fed32e9 dev_pm_qos_update_request -EXPORT_SYMBOL_GPL vmlinux 0x300c310d extcon_unregister_notifier_all -EXPORT_SYMBOL_GPL vmlinux 0x300e35c5 scsi_register_device_handler -EXPORT_SYMBOL_GPL vmlinux 0x30172e44 fuse_dax_cancel_work -EXPORT_SYMBOL_GPL vmlinux 0x301e1eb0 virtio_device_freeze -EXPORT_SYMBOL_GPL vmlinux 0x3025eee0 tegra210_clk_emc_dll_update_setting -EXPORT_SYMBOL_GPL vmlinux 0x302a3948 cgroup_path_ns -EXPORT_SYMBOL_GPL vmlinux 0x302f2632 of_get_display_timings -EXPORT_SYMBOL_GPL vmlinux 0x30351294 k3_udma_glue_rx_flow_get_fdq_id -EXPORT_SYMBOL_GPL vmlinux 0x304fd11b digsig_verify -EXPORT_SYMBOL_GPL vmlinux 0x30514a38 devfreq_event_enable_edev -EXPORT_SYMBOL_GPL vmlinux 0x3061cfce ring_buffer_entries_cpu -EXPORT_SYMBOL_GPL vmlinux 0x3064f404 ata_cable_sata -EXPORT_SYMBOL_GPL vmlinux 0x30692706 __scsi_init_queue -EXPORT_SYMBOL_GPL vmlinux 0x306bcc85 dma_vunmap_noncontiguous -EXPORT_SYMBOL_GPL vmlinux 0x30904da0 ata_cable_40wire -EXPORT_SYMBOL_GPL vmlinux 0x30a42a5f tcpv6_prot -EXPORT_SYMBOL_GPL vmlinux 0x30b3aadd irq_set_chained_handler_and_data -EXPORT_SYMBOL_GPL vmlinux 0x30c23613 find_extend_vma -EXPORT_SYMBOL_GPL vmlinux 0x30c504cc pci_epc_write_header -EXPORT_SYMBOL_GPL vmlinux 0x30c9af56 inet_csk_get_port -EXPORT_SYMBOL_GPL vmlinux 0x30d14d22 blk_mq_unfreeze_queue -EXPORT_SYMBOL_GPL vmlinux 0x30ded4d4 extcon_set_property_sync -EXPORT_SYMBOL_GPL vmlinux 0x30e1ec25 apei_map_generic_address -EXPORT_SYMBOL_GPL vmlinux 0x30e42163 tick_nohz_dep_clear_cpu -EXPORT_SYMBOL_GPL vmlinux 0x30f278ae __wake_up_locked_key_bookmark -EXPORT_SYMBOL_GPL vmlinux 0x30f88237 regmap_fields_update_bits_base -EXPORT_SYMBOL_GPL vmlinux 0x30fe9054 ahci_save_initial_config -EXPORT_SYMBOL_GPL vmlinux 0x31019477 __ftrace_vbprintk -EXPORT_SYMBOL_GPL vmlinux 0x31128b8e hv_remove_kexec_handler -EXPORT_SYMBOL_GPL vmlinux 0x3113b3af blk_freeze_queue_start -EXPORT_SYMBOL_GPL vmlinux 0x3114b83e usb_remove_hcd -EXPORT_SYMBOL_GPL vmlinux 0x31266931 con_debug_leave -EXPORT_SYMBOL_GPL vmlinux 0x31289d82 rio_add_device -EXPORT_SYMBOL_GPL vmlinux 0x3131ff08 xdp_return_frame -EXPORT_SYMBOL_GPL vmlinux 0x31345133 fsl_mc_portal_free -EXPORT_SYMBOL_GPL vmlinux 0x3134ad51 handle_level_irq -EXPORT_SYMBOL_GPL vmlinux 0x313b49bd skcipher_walk_complete -EXPORT_SYMBOL_GPL vmlinux 0x313ea5fd ipi_send_single -EXPORT_SYMBOL_GPL vmlinux 0x314893a2 dev_pm_opp_set_supported_hw -EXPORT_SYMBOL_GPL vmlinux 0x314f68a2 uart_get_rs485_mode -EXPORT_SYMBOL_GPL vmlinux 0x31839ad3 software_node_register_nodes -EXPORT_SYMBOL_GPL vmlinux 0x3183d66c ima_inode_hash -EXPORT_SYMBOL_GPL vmlinux 0x3187490a __SCK__tp_func_detach_device_from_domain -EXPORT_SYMBOL_GPL vmlinux 0x3191900d cros_ec_get_sensor_count -EXPORT_SYMBOL_GPL vmlinux 0x3192d768 cpufreq_remove_update_util_hook -EXPORT_SYMBOL_GPL vmlinux 0x31977fb6 inet_csk_listen_stop -EXPORT_SYMBOL_GPL vmlinux 0x3198202a serdev_device_get_tiocm -EXPORT_SYMBOL_GPL vmlinux 0x31a95e8b ring_buffer_record_enable_cpu -EXPORT_SYMBOL_GPL vmlinux 0x31c7970f pciserial_suspend_ports -EXPORT_SYMBOL_GPL vmlinux 0x31cb571a sata_std_hardreset -EXPORT_SYMBOL_GPL vmlinux 0x31cbe25c mtk_mmsys_ddp_disconnect -EXPORT_SYMBOL_GPL vmlinux 0x31dca4d8 gnttab_claim_grant_reference -EXPORT_SYMBOL_GPL vmlinux 0x31dcaff0 devlink_port_health_reporter_create -EXPORT_SYMBOL_GPL vmlinux 0x31e0a573 exportfs_encode_inode_fh -EXPORT_SYMBOL_GPL vmlinux 0x31e68f82 crypto_default_rng -EXPORT_SYMBOL_GPL vmlinux 0x31e7ade2 hisi_clk_alloc -EXPORT_SYMBOL_GPL vmlinux 0x31e9e8d5 zynqmp_pm_set_suspend_mode -EXPORT_SYMBOL_GPL vmlinux 0x31eea2f3 platform_unregister_drivers -EXPORT_SYMBOL_GPL vmlinux 0x31f2ea87 irq_domain_reset_irq_data -EXPORT_SYMBOL_GPL vmlinux 0x31f785f4 dma_max_mapping_size -EXPORT_SYMBOL_GPL vmlinux 0x3203c1c1 lwtunnel_fill_encap -EXPORT_SYMBOL_GPL vmlinux 0x3206ff69 gpiod_get_raw_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0x320747d5 __account_locked_vm -EXPORT_SYMBOL_GPL vmlinux 0x320e4ce8 xenbus_dev_cancel -EXPORT_SYMBOL_GPL vmlinux 0x321b2c3f nvdimm_has_flush -EXPORT_SYMBOL_GPL vmlinux 0x3224b2a9 mpi_read_raw_from_sgl -EXPORT_SYMBOL_GPL vmlinux 0x323982b9 clockevents_config_and_register -EXPORT_SYMBOL_GPL vmlinux 0x323e8f0a ata_sff_error_handler -EXPORT_SYMBOL_GPL vmlinux 0x324a7db5 irq_domain_set_hwirq_and_chip -EXPORT_SYMBOL_GPL vmlinux 0x325888a3 __tracepoint_neigh_update -EXPORT_SYMBOL_GPL vmlinux 0x325d16a2 mtk_eint_do_resume -EXPORT_SYMBOL_GPL vmlinux 0x325da768 of_nvmem_cell_get -EXPORT_SYMBOL_GPL vmlinux 0x32624abc mmc_regulator_set_vqmmc -EXPORT_SYMBOL_GPL vmlinux 0x3265d6c7 usb_set_configuration -EXPORT_SYMBOL_GPL vmlinux 0x326622c7 ata_cable_80wire -EXPORT_SYMBOL_GPL vmlinux 0x326cefe5 hwpoison_filter_dev_minor -EXPORT_SYMBOL_GPL vmlinux 0x327a2687 bind_evtchn_to_irq_lateeoi -EXPORT_SYMBOL_GPL vmlinux 0x327f465b pm_clk_destroy -EXPORT_SYMBOL_GPL vmlinux 0x3280f44c rockchip_clk_register_plls -EXPORT_SYMBOL_GPL vmlinux 0x32860233 pm_wakeup_dev_event -EXPORT_SYMBOL_GPL vmlinux 0x328aac57 perf_get_aux -EXPORT_SYMBOL_GPL vmlinux 0x328dc07e __traceiter_sched_util_est_se_tp -EXPORT_SYMBOL_GPL vmlinux 0x3299234c shash_ahash_finup -EXPORT_SYMBOL_GPL vmlinux 0x32a07ab1 nvdimm_security_setup_events -EXPORT_SYMBOL_GPL vmlinux 0x32a7e87d tcf_dev_queue_xmit -EXPORT_SYMBOL_GPL vmlinux 0x32ab06cc irq_percpu_is_enabled -EXPORT_SYMBOL_GPL vmlinux 0x32aea118 relay_open -EXPORT_SYMBOL_GPL vmlinux 0x32b5f6e1 usb_reset_configuration -EXPORT_SYMBOL_GPL vmlinux 0x32bb5975 efivar_entry_set_get_size -EXPORT_SYMBOL_GPL vmlinux 0x32c02ef0 wm831x_reg_lock -EXPORT_SYMBOL_GPL vmlinux 0x32c3cb4e class_compat_register -EXPORT_SYMBOL_GPL vmlinux 0x32cbd601 btree_last -EXPORT_SYMBOL_GPL vmlinux 0x32f145fd PageHuge -EXPORT_SYMBOL_GPL vmlinux 0x330010b6 cpuset_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x330070c0 devm_pm_opp_register_set_opp_helper -EXPORT_SYMBOL_GPL vmlinux 0x3300710b i2c_dw_probe_master -EXPORT_SYMBOL_GPL vmlinux 0x3302ee55 rdev_get_id -EXPORT_SYMBOL_GPL vmlinux 0x3313bc22 phy_modify -EXPORT_SYMBOL_GPL vmlinux 0x331845d1 tegra_mc_probe_device -EXPORT_SYMBOL_GPL vmlinux 0x331a7b0a fork_usermode_driver -EXPORT_SYMBOL_GPL vmlinux 0x331d261e edac_device_add_device -EXPORT_SYMBOL_GPL vmlinux 0x332f4459 pm_generic_poweroff_late -EXPORT_SYMBOL_GPL vmlinux 0x335a19aa pinctrl_add_gpio_ranges -EXPORT_SYMBOL_GPL vmlinux 0x335c570f enable_percpu_irq -EXPORT_SYMBOL_GPL vmlinux 0x3371ee0f usb_phy_set_charger_state -EXPORT_SYMBOL_GPL vmlinux 0x3385493a idr_remove -EXPORT_SYMBOL_GPL vmlinux 0x33859a75 devm_pwm_get -EXPORT_SYMBOL_GPL vmlinux 0x338857a7 devm_mbox_controller_unregister -EXPORT_SYMBOL_GPL vmlinux 0x3396a07d clk_divider_ops -EXPORT_SYMBOL_GPL vmlinux 0x3399de57 fat_alloc_new_dir -EXPORT_SYMBOL_GPL vmlinux 0x33b79131 meson_clk_cpu_dyndiv_ops -EXPORT_SYMBOL_GPL vmlinux 0x33be95e2 serial8250_get_port -EXPORT_SYMBOL_GPL vmlinux 0x33c7739a crypto_register_skciphers -EXPORT_SYMBOL_GPL vmlinux 0x33d7b7e2 list_lru_del -EXPORT_SYMBOL_GPL vmlinux 0x33e5991a inet6_csk_addr2sockaddr -EXPORT_SYMBOL_GPL vmlinux 0x33f533ad inet6_destroy_sock -EXPORT_SYMBOL_GPL vmlinux 0x34016c31 devm_request_pci_bus_resources -EXPORT_SYMBOL_GPL vmlinux 0x34023125 power_supply_set_battery_charged -EXPORT_SYMBOL_GPL vmlinux 0x3402f718 perf_aux_output_begin -EXPORT_SYMBOL_GPL vmlinux 0x3403485f debugfs_rename -EXPORT_SYMBOL_GPL vmlinux 0x340bb56a crypto_unregister_instance -EXPORT_SYMBOL_GPL vmlinux 0x341ad77e seg6_do_srh_encap -EXPORT_SYMBOL_GPL vmlinux 0x3426979c zap_vma_ptes -EXPORT_SYMBOL_GPL vmlinux 0x342a9de3 crypto_register_kpp -EXPORT_SYMBOL_GPL vmlinux 0x3431acb1 shash_ahash_digest -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 0x3447bc24 vp_modern_generation -EXPORT_SYMBOL_GPL vmlinux 0x344a2c84 iomap_dio_complete -EXPORT_SYMBOL_GPL vmlinux 0x344b4545 mtk_pinconf_bias_disable_set_rev1 -EXPORT_SYMBOL_GPL vmlinux 0x344f5aab xenbus_dev_resume -EXPORT_SYMBOL_GPL vmlinux 0x3450ad94 mpi_set_ui -EXPORT_SYMBOL_GPL vmlinux 0x346f39a9 regulator_disable -EXPORT_SYMBOL_GPL vmlinux 0x3473a59d ip6_input -EXPORT_SYMBOL_GPL vmlinux 0x34769bfe inet6_hash -EXPORT_SYMBOL_GPL vmlinux 0x34909454 mtk_hw_get_value -EXPORT_SYMBOL_GPL vmlinux 0x34a7b142 __SCK__tp_func_rpm_suspend -EXPORT_SYMBOL_GPL vmlinux 0x34baab7f ata_host_resume -EXPORT_SYMBOL_GPL vmlinux 0x34c918dc mddev_unlock -EXPORT_SYMBOL_GPL vmlinux 0x34ce74b0 crypto_unregister_acomps -EXPORT_SYMBOL_GPL vmlinux 0x34e1ac77 fib_rules_lookup -EXPORT_SYMBOL_GPL vmlinux 0x34e70536 tegra_bpmp_put -EXPORT_SYMBOL_GPL vmlinux 0x34ea2d44 regulator_get_hardware_vsel_register -EXPORT_SYMBOL_GPL vmlinux 0x34eab46d bind_evtchn_to_irqhandler -EXPORT_SYMBOL_GPL vmlinux 0x34f2a60d fscrypt_set_bio_crypt_ctx_bh -EXPORT_SYMBOL_GPL vmlinux 0x34fc4ad3 __tracepoint_block_split -EXPORT_SYMBOL_GPL vmlinux 0x35012c51 devm_clk_unregister -EXPORT_SYMBOL_GPL vmlinux 0x350ccdf5 __clk_get_hw -EXPORT_SYMBOL_GPL vmlinux 0x350e8138 strp_init -EXPORT_SYMBOL_GPL vmlinux 0x350f6ce5 tasklet_unlock_wait -EXPORT_SYMBOL_GPL vmlinux 0x351dc19e do_xdp_generic -EXPORT_SYMBOL_GPL vmlinux 0x352b3813 maxim_charger_calc_reg_current -EXPORT_SYMBOL_GPL vmlinux 0x352ec68b bpf_offload_dev_destroy -EXPORT_SYMBOL_GPL vmlinux 0x35351919 debugfs_create_x16 -EXPORT_SYMBOL_GPL vmlinux 0x354c8ee3 paste_selection -EXPORT_SYMBOL_GPL vmlinux 0x355b2ef2 ti_sci_put_handle -EXPORT_SYMBOL_GPL vmlinux 0x3561089d tty_get_pgrp -EXPORT_SYMBOL_GPL vmlinux 0x3562f983 read_sanitised_ftr_reg -EXPORT_SYMBOL_GPL vmlinux 0x35717aef net_ns_get_ownership -EXPORT_SYMBOL_GPL vmlinux 0x357457c3 psil_get_ep_config -EXPORT_SYMBOL_GPL vmlinux 0x3579c906 ata_bmdma_post_internal_cmd -EXPORT_SYMBOL_GPL vmlinux 0x357a9916 fsl_mc_bus_dpsw_type -EXPORT_SYMBOL_GPL vmlinux 0x358ff60f twl_get_hfclk_rate -EXPORT_SYMBOL_GPL vmlinux 0x359d469d devm_devfreq_event_add_edev -EXPORT_SYMBOL_GPL vmlinux 0x35a4f59d zynqmp_pm_clock_setdivider -EXPORT_SYMBOL_GPL vmlinux 0x35ab8454 usb_enable_lpm -EXPORT_SYMBOL_GPL vmlinux 0x35da6aad get_cpu_device -EXPORT_SYMBOL_GPL vmlinux 0x35f0317d __devm_spi_alloc_controller -EXPORT_SYMBOL_GPL vmlinux 0x35f687e6 acpi_gpiochip_free_interrupts -EXPORT_SYMBOL_GPL vmlinux 0x36075bb5 iommu_group_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x361fc591 ipv6_opt_accepted -EXPORT_SYMBOL_GPL vmlinux 0x36242943 switchdev_deferred_process -EXPORT_SYMBOL_GPL vmlinux 0x362846df cpuidle_get_driver -EXPORT_SYMBOL_GPL vmlinux 0x363654ed clk_hw_register_gate2 -EXPORT_SYMBOL_GPL vmlinux 0x365989e5 imx_1416x_pll -EXPORT_SYMBOL_GPL vmlinux 0x365b45d1 __tracepoint_sched_update_nr_running_tp -EXPORT_SYMBOL_GPL vmlinux 0x3672ecaa pwm_capture -EXPORT_SYMBOL_GPL vmlinux 0x369fcd70 tracing_snapshot -EXPORT_SYMBOL_GPL vmlinux 0x36c27cc9 pci_generic_ecam_ops -EXPORT_SYMBOL_GPL vmlinux 0x36c84d85 __nvdimm_create -EXPORT_SYMBOL_GPL vmlinux 0x36cc88ab mdiobus_modify -EXPORT_SYMBOL_GPL vmlinux 0x36d2214e devlink_sb_unregister -EXPORT_SYMBOL_GPL vmlinux 0x36d4060f ata_sff_tf_load -EXPORT_SYMBOL_GPL vmlinux 0x36f6b87b clk_fixed_rate_ops -EXPORT_SYMBOL_GPL vmlinux 0x370058f5 fsnotify_init_mark -EXPORT_SYMBOL_GPL vmlinux 0x3703d72d fat_getattr -EXPORT_SYMBOL_GPL vmlinux 0x370a7cce kill_dev_dax -EXPORT_SYMBOL_GPL vmlinux 0x3713ee73 verify_pkcs7_signature -EXPORT_SYMBOL_GPL vmlinux 0x371991ba dev_pm_opp_adjust_voltage -EXPORT_SYMBOL_GPL vmlinux 0x372ae771 bpf_trace_run5 -EXPORT_SYMBOL_GPL vmlinux 0x372cfd6e gnttab_end_foreign_access -EXPORT_SYMBOL_GPL vmlinux 0x372e01b1 hwspin_lock_unregister -EXPORT_SYMBOL_GPL vmlinux 0x373bcc59 xenbus_read_otherend_details -EXPORT_SYMBOL_GPL vmlinux 0x373c7318 usb_of_has_combined_node -EXPORT_SYMBOL_GPL vmlinux 0x374c53e1 ata_get_cmd_descript -EXPORT_SYMBOL_GPL vmlinux 0x3750d770 erst_read -EXPORT_SYMBOL_GPL vmlinux 0x375881e1 class_unregister -EXPORT_SYMBOL_GPL vmlinux 0x375d684d security_kernel_read_file -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 0x377e5693 devlink_resource_register -EXPORT_SYMBOL_GPL vmlinux 0x378adfb7 zynqmp_pm_sd_dll_reset -EXPORT_SYMBOL_GPL vmlinux 0x37914025 xenbus_write -EXPORT_SYMBOL_GPL vmlinux 0x37963de3 tegra_bpmp_get -EXPORT_SYMBOL_GPL vmlinux 0x37a31449 ping_unhash -EXPORT_SYMBOL_GPL vmlinux 0x37a31fb1 acpi_dma_simple_xlate -EXPORT_SYMBOL_GPL vmlinux 0x37bf7be3 percpu_ref_exit -EXPORT_SYMBOL_GPL vmlinux 0x37bfb670 kobject_get_path -EXPORT_SYMBOL_GPL vmlinux 0x37c9b86b usb_unpoison_anchored_urbs -EXPORT_SYMBOL_GPL vmlinux 0x37d2ed02 spi_controller_suspend -EXPORT_SYMBOL_GPL vmlinux 0x37e00980 pci_bridge_emul_cleanup -EXPORT_SYMBOL_GPL vmlinux 0x3801776b __ioread32_copy -EXPORT_SYMBOL_GPL vmlinux 0x3807c393 iommu_uapi_sva_unbind_gpasid -EXPORT_SYMBOL_GPL vmlinux 0x381d396e __mdiobus_modify_changed -EXPORT_SYMBOL_GPL vmlinux 0x38268b62 icc_bulk_enable -EXPORT_SYMBOL_GPL vmlinux 0x38348493 nf_queue_entry_free -EXPORT_SYMBOL_GPL vmlinux 0x38374815 clear_selection -EXPORT_SYMBOL_GPL vmlinux 0x383843e1 scsi_nl_sock -EXPORT_SYMBOL_GPL vmlinux 0x3838e019 phy_remove_lookup -EXPORT_SYMBOL_GPL vmlinux 0x38658278 devm_pm_clk_create -EXPORT_SYMBOL_GPL vmlinux 0x3866e217 nvmem_device_write -EXPORT_SYMBOL_GPL vmlinux 0x387103af of_icc_get_from_provider -EXPORT_SYMBOL_GPL vmlinux 0x388a78e9 netdev_rx_handler_unregister -EXPORT_SYMBOL_GPL vmlinux 0x388b62ff kernfs_put -EXPORT_SYMBOL_GPL vmlinux 0x3891c6fb sata_pmp_qc_defer_cmd_switch -EXPORT_SYMBOL_GPL vmlinux 0x389b06a6 hwspin_lock_get_id -EXPORT_SYMBOL_GPL vmlinux 0x389b64a2 static_key_count -EXPORT_SYMBOL_GPL vmlinux 0x389bbca0 device_get_match_data -EXPORT_SYMBOL_GPL vmlinux 0x38aa1397 gpiod_add_lookup_table -EXPORT_SYMBOL_GPL vmlinux 0x38b346ee max8997_read_reg -EXPORT_SYMBOL_GPL vmlinux 0x38b5fb40 uart_console_device -EXPORT_SYMBOL_GPL vmlinux 0x38bee888 wakeup_source_destroy -EXPORT_SYMBOL_GPL vmlinux 0x38bfd408 console_drivers -EXPORT_SYMBOL_GPL vmlinux 0x38ce3ef9 attribute_container_register -EXPORT_SYMBOL_GPL vmlinux 0x38d210f0 regmap_async_complete -EXPORT_SYMBOL_GPL vmlinux 0x38e1fde7 mpi_set -EXPORT_SYMBOL_GPL vmlinux 0x38e5bc5a clk_set_rate_range -EXPORT_SYMBOL_GPL vmlinux 0x38e6d9ab ahci_platform_enable_phys -EXPORT_SYMBOL_GPL vmlinux 0x38e78b75 __devm_reset_control_bulk_get -EXPORT_SYMBOL_GPL vmlinux 0x38f18f9a unregister_acpi_bus_type -EXPORT_SYMBOL_GPL vmlinux 0x38fcfb2e handle_fasteoi_ack_irq -EXPORT_SYMBOL_GPL vmlinux 0x38fec5bf spi_mem_poll_status -EXPORT_SYMBOL_GPL vmlinux 0x39070632 wm8350_clear_bits -EXPORT_SYMBOL_GPL vmlinux 0x3913cda6 ata_pci_sff_activate_host -EXPORT_SYMBOL_GPL vmlinux 0x3922e77b tpm_transmit_cmd -EXPORT_SYMBOL_GPL vmlinux 0x392a4480 switchdev_port_obj_del -EXPORT_SYMBOL_GPL vmlinux 0x394b5d08 regulator_get_exclusive -EXPORT_SYMBOL_GPL vmlinux 0x39524399 thermal_cooling_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0x39580b13 dev_pm_opp_get_suspend_opp_freq -EXPORT_SYMBOL_GPL vmlinux 0x395a926d xdp_return_frame_rx_napi -EXPORT_SYMBOL_GPL vmlinux 0x396046d0 __xenbus_register_frontend -EXPORT_SYMBOL_GPL vmlinux 0x396b323a __traceiter_block_bio_remap -EXPORT_SYMBOL_GPL vmlinux 0x396ee40d devlink_param_register -EXPORT_SYMBOL_GPL vmlinux 0x3979643b blk_mq_pci_map_queues -EXPORT_SYMBOL_GPL vmlinux 0x397e2142 __SCK__tp_func_sched_cpu_capacity_tp -EXPORT_SYMBOL_GPL vmlinux 0x3992ebad crypto_enqueue_request -EXPORT_SYMBOL_GPL vmlinux 0x39a7affc driver_deferred_probe_timeout -EXPORT_SYMBOL_GPL vmlinux 0x39aa4888 usb_role_string -EXPORT_SYMBOL_GPL vmlinux 0x39af5311 rhashtable_walk_exit -EXPORT_SYMBOL_GPL vmlinux 0x39b537e2 serial8250_do_set_ldisc -EXPORT_SYMBOL_GPL vmlinux 0x39c32aca __SCK__tp_func_neigh_event_send_done -EXPORT_SYMBOL_GPL vmlinux 0x39c3e536 input_ff_event -EXPORT_SYMBOL_GPL vmlinux 0x39d5102d page_cache_async_ra -EXPORT_SYMBOL_GPL vmlinux 0x39ded098 rdma_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x39f979da dev_pm_opp_find_level_ceil -EXPORT_SYMBOL_GPL vmlinux 0x39fd9c76 regmap_exit -EXPORT_SYMBOL_GPL vmlinux 0x3a10d549 sdio_release_irq -EXPORT_SYMBOL_GPL vmlinux 0x3a12d1d5 blk_next_bio -EXPORT_SYMBOL_GPL vmlinux 0x3a24fb2f percpu_ref_resurrect -EXPORT_SYMBOL_GPL vmlinux 0x3a28394b devres_release -EXPORT_SYMBOL_GPL vmlinux 0x3a2a084b ti_sci_inta_msi_get_virq -EXPORT_SYMBOL_GPL vmlinux 0x3a2a1210 devm_memremap_pages -EXPORT_SYMBOL_GPL vmlinux 0x3a2f2eaa hwpoison_filter -EXPORT_SYMBOL_GPL vmlinux 0x3a442e8e phy_restore_page -EXPORT_SYMBOL_GPL vmlinux 0x3a44b636 serdev_controller_alloc -EXPORT_SYMBOL_GPL vmlinux 0x3a46c89e spi_replace_transfers -EXPORT_SYMBOL_GPL vmlinux 0x3a4f6a32 ata_sff_interrupt -EXPORT_SYMBOL_GPL vmlinux 0x3a5296bd irq_chip_request_resources_parent -EXPORT_SYMBOL_GPL vmlinux 0x3a536bd7 ring_buffer_read_finish -EXPORT_SYMBOL_GPL vmlinux 0x3a55981a static_key_enable_cpuslocked -EXPORT_SYMBOL_GPL vmlinux 0x3a57b06e spi_take_timestamp_post -EXPORT_SYMBOL_GPL vmlinux 0x3a58abc0 devm_regulator_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x3a596bde tpm_pm_resume -EXPORT_SYMBOL_GPL vmlinux 0x3a5f2945 skb_zerocopy_iter_stream -EXPORT_SYMBOL_GPL vmlinux 0x3a74e484 __tracepoint_sched_util_est_se_tp -EXPORT_SYMBOL_GPL vmlinux 0x3a7f1053 devm_clk_bulk_get_all -EXPORT_SYMBOL_GPL vmlinux 0x3a8553f2 __regmap_init_mmio_clk -EXPORT_SYMBOL_GPL vmlinux 0x3a92ecf0 phy_modify_changed -EXPORT_SYMBOL_GPL vmlinux 0x3a9be019 asymmetric_key_id_partial -EXPORT_SYMBOL_GPL vmlinux 0x3aa3046d ata_sff_lost_interrupt -EXPORT_SYMBOL_GPL vmlinux 0x3aba8a19 do_splice_to -EXPORT_SYMBOL_GPL vmlinux 0x3abb786c __devm_regmap_init -EXPORT_SYMBOL_GPL vmlinux 0x3acdf325 twl4030_audio_enable_resource -EXPORT_SYMBOL_GPL vmlinux 0x3ad215f0 ahci_init_controller -EXPORT_SYMBOL_GPL vmlinux 0x3ad6d277 rtc_set_time -EXPORT_SYMBOL_GPL vmlinux 0x3ad92d7d __sbitmap_queue_get_shallow -EXPORT_SYMBOL_GPL vmlinux 0x3ad9e10a devlink_dpipe_entry_ctx_close -EXPORT_SYMBOL_GPL vmlinux 0x3ae4bf59 switchdev_bridge_port_unoffload -EXPORT_SYMBOL_GPL vmlinux 0x3ae57727 skb_to_sgvec -EXPORT_SYMBOL_GPL vmlinux 0x3aee4e90 clkdev_create -EXPORT_SYMBOL_GPL vmlinux 0x3afc2fad blk_rq_unprep_clone -EXPORT_SYMBOL_GPL vmlinux 0x3b038ee6 pci_host_common_probe -EXPORT_SYMBOL_GPL vmlinux 0x3b0dd201 l3mdev_master_ifindex_rcu -EXPORT_SYMBOL_GPL vmlinux 0x3b216bdd rio_inb_pwrite_handler -EXPORT_SYMBOL_GPL vmlinux 0x3b2fc43f devfreq_event_disable_edev -EXPORT_SYMBOL_GPL vmlinux 0x3b31134a nvdimm_name -EXPORT_SYMBOL_GPL vmlinux 0x3b40f8e1 max8997_write_reg -EXPORT_SYMBOL_GPL vmlinux 0x3b4c240a display_timings_release -EXPORT_SYMBOL_GPL vmlinux 0x3b610584 __tracepoint_sched_cpu_capacity_tp -EXPORT_SYMBOL_GPL vmlinux 0x3b6d9407 pci_enable_pasid -EXPORT_SYMBOL_GPL vmlinux 0x3b78bf02 sunxi_ccu_get_mmc_timing_mode -EXPORT_SYMBOL_GPL vmlinux 0x3b79d311 pci_hp_remove_module_link -EXPORT_SYMBOL_GPL vmlinux 0x3b7a95b0 crypto_unregister_skcipher -EXPORT_SYMBOL_GPL vmlinux 0x3b84ba61 of_cpufreq_cooling_register -EXPORT_SYMBOL_GPL vmlinux 0x3b8979ea gnttab_grant_foreign_transfer_ref -EXPORT_SYMBOL_GPL vmlinux 0x3b948d6c sysfs_create_groups -EXPORT_SYMBOL_GPL vmlinux 0x3b992ad8 k3_udma_glue_request_rx_chn -EXPORT_SYMBOL_GPL vmlinux 0x3ba01b47 get_compat_sigset -EXPORT_SYMBOL_GPL vmlinux 0x3bb08490 icc_node_del -EXPORT_SYMBOL_GPL vmlinux 0x3bba82ac spi_get_device_id -EXPORT_SYMBOL_GPL vmlinux 0x3bc2cdbf ip_build_and_send_pkt -EXPORT_SYMBOL_GPL vmlinux 0x3bc8f1bf spi_mem_dirmap_destroy -EXPORT_SYMBOL_GPL vmlinux 0x3bd002d7 cpufreq_freq_transition_begin -EXPORT_SYMBOL_GPL vmlinux 0x3bdb5d28 alg_test -EXPORT_SYMBOL_GPL vmlinux 0x3bdc0e0c __tracepoint_neigh_event_send_done -EXPORT_SYMBOL_GPL vmlinux 0x3be2cedc skcipher_alloc_instance_simple -EXPORT_SYMBOL_GPL vmlinux 0x3be5f2a4 device_match_devt -EXPORT_SYMBOL_GPL vmlinux 0x3bef0c40 devlink_param_value_changed -EXPORT_SYMBOL_GPL vmlinux 0x3bf17755 mpi_read_buffer -EXPORT_SYMBOL_GPL vmlinux 0x3bfc9431 scsi_internal_device_block_nowait -EXPORT_SYMBOL_GPL vmlinux 0x3c036f53 dst_blackhole_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0x3c0e8050 hyperv_pcpu_input_arg -EXPORT_SYMBOL_GPL vmlinux 0x3c11b9f5 tegra210_put_utmipll_in_iddq -EXPORT_SYMBOL_GPL vmlinux 0x3c17fbbe linear_hugepage_index -EXPORT_SYMBOL_GPL vmlinux 0x3c1c3725 rcu_fwd_progress_check -EXPORT_SYMBOL_GPL vmlinux 0x3c1f24b5 platform_device_alloc -EXPORT_SYMBOL_GPL vmlinux 0x3c24734f pci_ignore_hotplug -EXPORT_SYMBOL_GPL vmlinux 0x3c2a29c8 bio_start_io_acct -EXPORT_SYMBOL_GPL vmlinux 0x3c2b68f7 of_changeset_apply -EXPORT_SYMBOL_GPL vmlinux 0x3c3c85d8 __SCK__tp_func_kfree_skb -EXPORT_SYMBOL_GPL vmlinux 0x3c42b1fb devm_clk_hw_register -EXPORT_SYMBOL_GPL vmlinux 0x3c66dc9a devm_pm_opp_of_add_table -EXPORT_SYMBOL_GPL vmlinux 0x3c681dc4 ring_buffer_record_disable -EXPORT_SYMBOL_GPL vmlinux 0x3c6b3a85 sk_free_unlock_clone -EXPORT_SYMBOL_GPL vmlinux 0x3c7a7c3c gpiochip_remove -EXPORT_SYMBOL_GPL vmlinux 0x3c7eb7eb rio_route_add_entry -EXPORT_SYMBOL_GPL vmlinux 0x3c8a5d50 dma_buf_begin_cpu_access -EXPORT_SYMBOL_GPL vmlinux 0x3c9ecb15 ipv6_find_tlv -EXPORT_SYMBOL_GPL vmlinux 0x3cae4fed pm_generic_restore_noirq -EXPORT_SYMBOL_GPL vmlinux 0x3cba679c efivar_entry_delete -EXPORT_SYMBOL_GPL vmlinux 0x3cbb7269 regulator_count_voltages -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 0x3cd1da87 ahci_platform_enable_clks -EXPORT_SYMBOL_GPL vmlinux 0x3ce3e204 driver_find_device -EXPORT_SYMBOL_GPL vmlinux 0x3ce650fd phy_10gbit_features -EXPORT_SYMBOL_GPL vmlinux 0x3cf3f163 rt_mutex_lock_interruptible -EXPORT_SYMBOL_GPL vmlinux 0x3d0fdcaf acpi_dev_get_property -EXPORT_SYMBOL_GPL vmlinux 0x3d170eb7 usb_phy_roothub_suspend -EXPORT_SYMBOL_GPL vmlinux 0x3d250633 fscrypt_d_revalidate -EXPORT_SYMBOL_GPL vmlinux 0x3d36ae15 gpiod_set_config -EXPORT_SYMBOL_GPL vmlinux 0x3d388324 dpm_resume_end -EXPORT_SYMBOL_GPL vmlinux 0x3d3e3c00 device_link_del -EXPORT_SYMBOL_GPL vmlinux 0x3d426721 regulator_get_linear_step -EXPORT_SYMBOL_GPL vmlinux 0x3d44a93e dev_pm_opp_set_rate -EXPORT_SYMBOL_GPL vmlinux 0x3d4f2971 rio_add_mport_pw_handler -EXPORT_SYMBOL_GPL vmlinux 0x3d510a7b rcu_jiffies_till_stall_check -EXPORT_SYMBOL_GPL vmlinux 0x3d579206 gpiod_direction_input -EXPORT_SYMBOL_GPL vmlinux 0x3d614389 key_type_trusted -EXPORT_SYMBOL_GPL vmlinux 0x3d654687 fwnode_property_match_string -EXPORT_SYMBOL_GPL vmlinux 0x3d712796 inet6_sk_rebuild_header -EXPORT_SYMBOL_GPL vmlinux 0x3d74f457 tpm_tis_resume -EXPORT_SYMBOL_GPL vmlinux 0x3d866e05 __SCK__tp_func_block_rq_insert -EXPORT_SYMBOL_GPL vmlinux 0x3d8baf3b zs_huge_class_size -EXPORT_SYMBOL_GPL vmlinux 0x3d948d4a mmc_cmdq_enable -EXPORT_SYMBOL_GPL vmlinux 0x3daa2540 nf_hooks_lwtunnel_enabled -EXPORT_SYMBOL_GPL vmlinux 0x3db48927 sbitmap_any_bit_set -EXPORT_SYMBOL_GPL vmlinux 0x3db81dfa bpf_prog_create -EXPORT_SYMBOL_GPL vmlinux 0x3dd2e389 rio_release_inb_mbox -EXPORT_SYMBOL_GPL vmlinux 0x3de9cae1 crypto_remove_final -EXPORT_SYMBOL_GPL vmlinux 0x3dec267d spi_register_controller -EXPORT_SYMBOL_GPL vmlinux 0x3df70c99 trace_clock_global -EXPORT_SYMBOL_GPL vmlinux 0x3e09b6bf dma_resv_get_fences -EXPORT_SYMBOL_GPL vmlinux 0x3e190ec9 scsi_autopm_get_device -EXPORT_SYMBOL_GPL vmlinux 0x3e43e3a8 blk_mq_alloc_request_hctx -EXPORT_SYMBOL_GPL vmlinux 0x3e47457b uprobe_register -EXPORT_SYMBOL_GPL vmlinux 0x3e4b4788 ethnl_cable_test_finished -EXPORT_SYMBOL_GPL vmlinux 0x3e64e93e phy_resolve_aneg_linkmode -EXPORT_SYMBOL_GPL vmlinux 0x3e652722 meson_clk_pcie_pll_ops -EXPORT_SYMBOL_GPL vmlinux 0x3e685a76 od_register_powersave_bias_handler -EXPORT_SYMBOL_GPL vmlinux 0x3e6b214e virtio_break_device -EXPORT_SYMBOL_GPL vmlinux 0x3e7080cb mpi_read_from_buffer -EXPORT_SYMBOL_GPL vmlinux 0x3e7a0edb dev_pm_opp_add -EXPORT_SYMBOL_GPL vmlinux 0x3e87b608 __regmap_init_spi -EXPORT_SYMBOL_GPL vmlinux 0x3e901657 __traceiter_br_fdb_external_learn_add -EXPORT_SYMBOL_GPL vmlinux 0x3e902caa tcp_set_state -EXPORT_SYMBOL_GPL vmlinux 0x3ea15858 dev_pm_opp_attach_genpd -EXPORT_SYMBOL_GPL vmlinux 0x3ea5196d apei_osc_setup -EXPORT_SYMBOL_GPL vmlinux 0x3ebb7c92 dpcon_disable -EXPORT_SYMBOL_GPL vmlinux 0x3ebf0507 __bio_add_page -EXPORT_SYMBOL_GPL vmlinux 0x3eef7abd devm_rpi_firmware_get -EXPORT_SYMBOL_GPL vmlinux 0x3ef051c8 crypto_inc -EXPORT_SYMBOL_GPL vmlinux 0x3efa5f6e iommu_iova_to_phys -EXPORT_SYMBOL_GPL vmlinux 0x3efb2c8d usb_phy_roothub_alloc -EXPORT_SYMBOL_GPL vmlinux 0x3efc89e4 mbox_chan_txdone -EXPORT_SYMBOL_GPL vmlinux 0x3efd1889 dax_direct_access -EXPORT_SYMBOL_GPL vmlinux 0x3f457a18 screen_glyph -EXPORT_SYMBOL_GPL vmlinux 0x3f491f49 reset_control_bulk_reset -EXPORT_SYMBOL_GPL vmlinux 0x3f4bd428 phy_pm_runtime_get_sync -EXPORT_SYMBOL_GPL vmlinux 0x3f516999 spi_add_device -EXPORT_SYMBOL_GPL vmlinux 0x3f5f01eb iptunnel_handle_offloads -EXPORT_SYMBOL_GPL vmlinux 0x3f63cd03 dma_vmap_noncontiguous -EXPORT_SYMBOL_GPL vmlinux 0x3f81d228 serdev_device_alloc -EXPORT_SYMBOL_GPL vmlinux 0x3f83f8d3 rcu_bind_current_to_nocb -EXPORT_SYMBOL_GPL vmlinux 0x3f84bcd7 dax_alive -EXPORT_SYMBOL_GPL vmlinux 0x3f8ab72e devlink_fmsg_bool_put -EXPORT_SYMBOL_GPL vmlinux 0x3f8cb87d dev_pm_qos_expose_latency_tolerance -EXPORT_SYMBOL_GPL vmlinux 0x3f8f5cde ata_pci_shutdown_one -EXPORT_SYMBOL_GPL vmlinux 0x3fa23471 msg_zerocopy_realloc -EXPORT_SYMBOL_GPL vmlinux 0x3faa8413 loop_backing_file -EXPORT_SYMBOL_GPL vmlinux 0x3fae6ab0 hv_vp_index -EXPORT_SYMBOL_GPL vmlinux 0x3fb6f37d crypto_unregister_aead -EXPORT_SYMBOL_GPL vmlinux 0x3fb9fa57 fb_bl_default_curve -EXPORT_SYMBOL_GPL vmlinux 0x3fd4f9b7 mmu_notifier_get_locked -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 0x3ffab420 sdio_set_block_size -EXPORT_SYMBOL_GPL vmlinux 0x3ffdacf3 timerqueue_iterate_next -EXPORT_SYMBOL_GPL vmlinux 0x400903be regulator_is_enabled -EXPORT_SYMBOL_GPL vmlinux 0x400a024b acpi_scan_lock_release -EXPORT_SYMBOL_GPL vmlinux 0x4014600c meson_eeclkc_probe -EXPORT_SYMBOL_GPL vmlinux 0x40200080 br_ip6_fragment -EXPORT_SYMBOL_GPL vmlinux 0x402c3b5b msg_zerocopy_put_abort -EXPORT_SYMBOL_GPL vmlinux 0x402cc05e of_clk_src_simple_get -EXPORT_SYMBOL_GPL vmlinux 0x403a7fc7 iomap_seek_hole -EXPORT_SYMBOL_GPL vmlinux 0x403f9529 gpio_request_one -EXPORT_SYMBOL_GPL vmlinux 0x4044ca16 pkcs7_verify -EXPORT_SYMBOL_GPL vmlinux 0x4046367a mtk_build_eint -EXPORT_SYMBOL_GPL vmlinux 0x4065d168 pm_print_active_wakeup_sources -EXPORT_SYMBOL_GPL vmlinux 0x406b92c5 acct_bioset_exit -EXPORT_SYMBOL_GPL vmlinux 0x406c4cb1 hrtimer_resolution -EXPORT_SYMBOL_GPL vmlinux 0x4071b517 out_of_line_wait_on_bit_timeout -EXPORT_SYMBOL_GPL vmlinux 0x408a51c3 imx_pinctrl_parse_pin_scu -EXPORT_SYMBOL_GPL vmlinux 0x4099f919 tun_ptr_free -EXPORT_SYMBOL_GPL vmlinux 0x40a15c99 mmc_poll_for_busy -EXPORT_SYMBOL_GPL vmlinux 0x40ba59b0 nf_ipv6_ops -EXPORT_SYMBOL_GPL vmlinux 0x40bb1f5c rhltable_init -EXPORT_SYMBOL_GPL vmlinux 0x40c5501b edac_pci_release_generic_ctl -EXPORT_SYMBOL_GPL vmlinux 0x40cc962d fsl_mc_bus_dpbp_type -EXPORT_SYMBOL_GPL vmlinux 0x40dae614 pci_load_saved_state -EXPORT_SYMBOL_GPL vmlinux 0x40de8895 pci_cfg_access_lock -EXPORT_SYMBOL_GPL vmlinux 0x40ee00dc idr_alloc_u32 -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 0x40ff0ff8 __bio_try_merge_page -EXPORT_SYMBOL_GPL vmlinux 0x4100a662 clk_get_scaled_duty_cycle -EXPORT_SYMBOL_GPL vmlinux 0x41237f71 cpu_have_feature -EXPORT_SYMBOL_GPL vmlinux 0x412bc681 ring_buffer_empty_cpu -EXPORT_SYMBOL_GPL vmlinux 0x41335ccf device_property_read_u8_array -EXPORT_SYMBOL_GPL vmlinux 0x414550a4 __vfs_removexattr_locked -EXPORT_SYMBOL_GPL vmlinux 0x414d119a videomode_from_timings -EXPORT_SYMBOL_GPL vmlinux 0x41652c0b pci_aer_clear_nonfatal_status -EXPORT_SYMBOL_GPL vmlinux 0x4179968c i2c_client_type -EXPORT_SYMBOL_GPL vmlinux 0x41814cb8 dirty_writeback_interval -EXPORT_SYMBOL_GPL vmlinux 0x4195dfa5 dm_report_zones -EXPORT_SYMBOL_GPL vmlinux 0x419752b2 pcie_reset_flr -EXPORT_SYMBOL_GPL vmlinux 0x419c585b regmap_update_bits_base -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 0x41d80c36 fwnode_graph_get_endpoint_by_id -EXPORT_SYMBOL_GPL vmlinux 0x41e416b8 task_active_pid_ns -EXPORT_SYMBOL_GPL vmlinux 0x41eb51b0 devm_gpiod_get -EXPORT_SYMBOL_GPL vmlinux 0x41ed3cec eventfd_ctx_remove_wait_queue -EXPORT_SYMBOL_GPL vmlinux 0x41f046b5 firmware_kobj -EXPORT_SYMBOL_GPL vmlinux 0x4202644e regulator_set_voltage_time_sel -EXPORT_SYMBOL_GPL vmlinux 0x42041512 i2c_get_dma_safe_msg_buf -EXPORT_SYMBOL_GPL vmlinux 0x4205790c devm_mbox_controller_register -EXPORT_SYMBOL_GPL vmlinux 0x4207c2ad devm_regulator_get -EXPORT_SYMBOL_GPL vmlinux 0x420f3d01 nvmem_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x421296c8 rcuwait_wake_up -EXPORT_SYMBOL_GPL vmlinux 0x42149931 mbox_request_channel -EXPORT_SYMBOL_GPL vmlinux 0x4218b2e2 led_trigger_rename_static -EXPORT_SYMBOL_GPL vmlinux 0x421d8363 vp_modern_map_vq_notify -EXPORT_SYMBOL_GPL vmlinux 0x42219cf4 pinctrl_pm_select_default_state -EXPORT_SYMBOL_GPL vmlinux 0x42565b44 bpf_prog_add -EXPORT_SYMBOL_GPL vmlinux 0x425d8871 vring_del_virtqueue -EXPORT_SYMBOL_GPL vmlinux 0x42635d55 pm_suspend_global_flags -EXPORT_SYMBOL_GPL vmlinux 0x426452a3 acpi_evaluation_failure_warn -EXPORT_SYMBOL_GPL vmlinux 0x42825ce2 rcu_scheduler_active -EXPORT_SYMBOL_GPL vmlinux 0x4287fc3d rio_mport_write_config_8 -EXPORT_SYMBOL_GPL vmlinux 0x4288646f security_file_permission -EXPORT_SYMBOL_GPL vmlinux 0x4294cdbf ping_close -EXPORT_SYMBOL_GPL vmlinux 0x42a2ca77 edac_pci_add_device -EXPORT_SYMBOL_GPL vmlinux 0x42aa085d device_link_remove -EXPORT_SYMBOL_GPL vmlinux 0x42bbab8b fsverity_file_open -EXPORT_SYMBOL_GPL vmlinux 0x42c23a84 regmap_noinc_write -EXPORT_SYMBOL_GPL vmlinux 0x42c5ce72 of_pci_range_parser_init -EXPORT_SYMBOL_GPL vmlinux 0x42ce55b7 pci_destroy_slot -EXPORT_SYMBOL_GPL vmlinux 0x42d0a160 crypto_grab_spawn -EXPORT_SYMBOL_GPL vmlinux 0x42d88f91 __fput_sync -EXPORT_SYMBOL_GPL vmlinux 0x42e9d0da ring_buffer_unlock_commit -EXPORT_SYMBOL_GPL vmlinux 0x42ec0711 pci_epc_multi_mem_init -EXPORT_SYMBOL_GPL vmlinux 0x42f728aa mctrl_gpio_get_outputs -EXPORT_SYMBOL_GPL vmlinux 0x42fc6706 power_supply_get_battery_info -EXPORT_SYMBOL_GPL vmlinux 0x430d88ec __traceiter_arm_event -EXPORT_SYMBOL_GPL vmlinux 0x43195c9f clk_fractional_divider_ops -EXPORT_SYMBOL_GPL vmlinux 0x432369cb pwmchip_add -EXPORT_SYMBOL_GPL vmlinux 0x432ac6c9 vchan_init -EXPORT_SYMBOL_GPL vmlinux 0x434d646c nd_blk_region_set_provider_data -EXPORT_SYMBOL_GPL vmlinux 0x4358d5fd tcp_rate_check_app_limited -EXPORT_SYMBOL_GPL vmlinux 0x435e42f2 devm_irq_setup_generic_chip -EXPORT_SYMBOL_GPL vmlinux 0x436d817f mpi_clear_bit -EXPORT_SYMBOL_GPL vmlinux 0x436db37f umd_cleanup_helper -EXPORT_SYMBOL_GPL vmlinux 0x436fe1f3 __page_file_index -EXPORT_SYMBOL_GPL vmlinux 0x4370bce0 devm_ti_sci_get_resource -EXPORT_SYMBOL_GPL vmlinux 0x437769ec l3mdev_fib_table_by_index -EXPORT_SYMBOL_GPL vmlinux 0x437eb1df ipv6_mod_enabled -EXPORT_SYMBOL_GPL vmlinux 0x4387d1bf ata_sff_exec_command -EXPORT_SYMBOL_GPL vmlinux 0x438d8df2 iova_cache_get -EXPORT_SYMBOL_GPL vmlinux 0x4399811b k3_udma_glue_rx_get_dma_device -EXPORT_SYMBOL_GPL vmlinux 0x439c935b __traceiter_neigh_update -EXPORT_SYMBOL_GPL vmlinux 0x439e639b mtk_pinconf_bias_get_combo -EXPORT_SYMBOL_GPL vmlinux 0x43a50557 of_get_regulator_init_data -EXPORT_SYMBOL_GPL vmlinux 0x43a9ef20 skb_zerocopy_iter_dgram -EXPORT_SYMBOL_GPL vmlinux 0x43aa319e lease_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x43ba3a9e of_i2c_get_board_info -EXPORT_SYMBOL_GPL vmlinux 0x43c8dcf9 devm_ti_sci_get_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0x43db6afd dev_pm_opp_of_find_icc_paths -EXPORT_SYMBOL_GPL vmlinux 0x43f2d964 power_supply_get_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0x43f4b104 devm_spi_mem_dirmap_create -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 0x4403f20f edac_device_handle_ue_count -EXPORT_SYMBOL_GPL vmlinux 0x44209fa3 transport_configure_device -EXPORT_SYMBOL_GPL vmlinux 0x442deaa9 poll_state_synchronize_rcu -EXPORT_SYMBOL_GPL vmlinux 0x442eea02 tty_port_register_device_serdev -EXPORT_SYMBOL_GPL vmlinux 0x4439bcd2 __SCK__tp_func_neigh_event_send_dead -EXPORT_SYMBOL_GPL vmlinux 0x444124b6 raw_v4_hashinfo -EXPORT_SYMBOL_GPL vmlinux 0x4443dae9 of_phandle_iterator_init -EXPORT_SYMBOL_GPL vmlinux 0x4447a454 led_compose_name -EXPORT_SYMBOL_GPL vmlinux 0x444f1735 cpu_pm_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x4454c890 ata_link_abort -EXPORT_SYMBOL_GPL vmlinux 0x445a09c0 nvmem_device_cell_write -EXPORT_SYMBOL_GPL vmlinux 0x445ac7b0 fscrypt_prepare_new_inode -EXPORT_SYMBOL_GPL vmlinux 0x445cdecf rhashtable_free_and_destroy -EXPORT_SYMBOL_GPL vmlinux 0x445eda95 clk_hw_get_flags -EXPORT_SYMBOL_GPL vmlinux 0x44610e05 usb_create_hcd -EXPORT_SYMBOL_GPL vmlinux 0x4479cfc2 security_path_link -EXPORT_SYMBOL_GPL vmlinux 0x4481ed41 nf_route -EXPORT_SYMBOL_GPL vmlinux 0x4484a5a4 wait_for_device_probe -EXPORT_SYMBOL_GPL vmlinux 0x44918d26 perf_event_create_kernel_counter -EXPORT_SYMBOL_GPL vmlinux 0x44955c48 ata_qc_complete_multiple -EXPORT_SYMBOL_GPL vmlinux 0x44a62ce7 gpiod_set_raw_value -EXPORT_SYMBOL_GPL vmlinux 0x44a793ab HYPERVISOR_grant_table_op -EXPORT_SYMBOL_GPL vmlinux 0x44b39740 l3mdev_table_lookup_unregister -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 0x44e235e5 pwm_free -EXPORT_SYMBOL_GPL vmlinux 0x44e3cabc perf_pmu_migrate_context -EXPORT_SYMBOL_GPL vmlinux 0x44efbdb0 sdio_writel -EXPORT_SYMBOL_GPL vmlinux 0x44fa4059 tty_buffer_request_room -EXPORT_SYMBOL_GPL vmlinux 0x44fde0ac tty_kopen_shared -EXPORT_SYMBOL_GPL vmlinux 0x45074c90 iommu_sva_alloc_pasid -EXPORT_SYMBOL_GPL vmlinux 0x4507f4a8 cpuhp_tasks_frozen -EXPORT_SYMBOL_GPL vmlinux 0x4513b6c2 virtqueue_enable_cb_prepare -EXPORT_SYMBOL_GPL vmlinux 0x4517986b device_property_match_string -EXPORT_SYMBOL_GPL vmlinux 0x452819a2 bus_unregister -EXPORT_SYMBOL_GPL vmlinux 0x452cfa5f ata_sff_pause -EXPORT_SYMBOL_GPL vmlinux 0x4531624f usb_decode_ctrl -EXPORT_SYMBOL_GPL vmlinux 0x4531ab62 copy_from_kernel_nofault -EXPORT_SYMBOL_GPL vmlinux 0x4544aba6 ip6_datagram_recv_ctl -EXPORT_SYMBOL_GPL vmlinux 0x454d88ed ohci_hub_control -EXPORT_SYMBOL_GPL vmlinux 0x454f38d0 pm_generic_resume_noirq -EXPORT_SYMBOL_GPL vmlinux 0x4554bc7b lwtunnel_output -EXPORT_SYMBOL_GPL vmlinux 0x45558f56 clk_unregister_fixed_factor -EXPORT_SYMBOL_GPL vmlinux 0x4561f990 qcom_smem_state_unregister -EXPORT_SYMBOL_GPL vmlinux 0x456564c6 power_supply_set_property -EXPORT_SYMBOL_GPL vmlinux 0x45738946 gpiod_set_raw_array_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0x457594fa crypto_alg_list -EXPORT_SYMBOL_GPL vmlinux 0x45762111 phy_led_triggers_unregister -EXPORT_SYMBOL_GPL vmlinux 0x457fedd5 open_related_ns -EXPORT_SYMBOL_GPL vmlinux 0x459833a7 ftrace_set_filter -EXPORT_SYMBOL_GPL vmlinux 0x459e6151 mm_unaccount_pinned_pages -EXPORT_SYMBOL_GPL vmlinux 0x45c3aa9b mptcp_pm_get_add_addr_signal_max -EXPORT_SYMBOL_GPL vmlinux 0x45d6e424 pinctrl_dev_get_name -EXPORT_SYMBOL_GPL vmlinux 0x45e09806 serial8250_rpm_get_tx -EXPORT_SYMBOL_GPL vmlinux 0x45f3e5e3 fscrypt_fname_siphash -EXPORT_SYMBOL_GPL vmlinux 0x46013233 net_dec_ingress_queue -EXPORT_SYMBOL_GPL vmlinux 0x4613bbdc fsnotify_get_group -EXPORT_SYMBOL_GPL vmlinux 0x4614a44e dax_layout_busy_page_range -EXPORT_SYMBOL_GPL vmlinux 0x4616787d netdev_set_default_ethtool_ops -EXPORT_SYMBOL_GPL vmlinux 0x461c5e73 ahci_reset_em -EXPORT_SYMBOL_GPL vmlinux 0x461ed211 __ndisc_fill_addr_option -EXPORT_SYMBOL_GPL vmlinux 0x46269814 __tracepoint_neigh_event_send_dead -EXPORT_SYMBOL_GPL vmlinux 0x462f49bc thermal_zone_get_zone_by_name -EXPORT_SYMBOL_GPL vmlinux 0x46324181 devm_release_action -EXPORT_SYMBOL_GPL vmlinux 0x465c4840 devfreq_event_get_edev_count -EXPORT_SYMBOL_GPL vmlinux 0x466bcb7d serdev_device_set_parity -EXPORT_SYMBOL_GPL vmlinux 0x467b9a75 vp_modern_get_queue_size -EXPORT_SYMBOL_GPL vmlinux 0x46862e5c syscon_regmap_lookup_by_phandle_args -EXPORT_SYMBOL_GPL vmlinux 0x4688d7ec pvclock_gtod_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x46935eeb devm_extcon_dev_free -EXPORT_SYMBOL_GPL vmlinux 0x4697c530 cpci_hp_register_bus -EXPORT_SYMBOL_GPL vmlinux 0x46991793 dma_buf_map_attachment -EXPORT_SYMBOL_GPL vmlinux 0x46a4004c anon_transport_class_unregister -EXPORT_SYMBOL_GPL vmlinux 0x46ab63f8 regmap_parse_val -EXPORT_SYMBOL_GPL vmlinux 0x46b3d9e1 uart_xchar_out -EXPORT_SYMBOL_GPL vmlinux 0x46b8fcbc devlink_remote_reload_actions_performed -EXPORT_SYMBOL_GPL vmlinux 0x46c5be22 clk_multiplier_ops -EXPORT_SYMBOL_GPL vmlinux 0x46ce4a86 fsnotify_put_mark -EXPORT_SYMBOL_GPL vmlinux 0x46d381fa rio_request_outb_dbell -EXPORT_SYMBOL_GPL vmlinux 0x46d7b437 usb_get_from_anchor -EXPORT_SYMBOL_GPL vmlinux 0x46df7b64 kobject_rename -EXPORT_SYMBOL_GPL vmlinux 0x46e23c48 usb_match_id -EXPORT_SYMBOL_GPL vmlinux 0x46e6e60d trace_get_event_file -EXPORT_SYMBOL_GPL vmlinux 0x46f42be0 devlink_fmsg_u8_put -EXPORT_SYMBOL_GPL vmlinux 0x46f54b9b __pci_hp_register -EXPORT_SYMBOL_GPL vmlinux 0x46f57881 cpufreq_disable_fast_switch -EXPORT_SYMBOL_GPL vmlinux 0x46fc7b61 ata_pci_sff_prepare_host -EXPORT_SYMBOL_GPL vmlinux 0x46fd3180 mpc8xxx_spi_tx_buf_u8 -EXPORT_SYMBOL_GPL vmlinux 0x47154bc3 pin_get_name -EXPORT_SYMBOL_GPL vmlinux 0x471671e4 set_task_ioprio -EXPORT_SYMBOL_GPL vmlinux 0x47229b5c gpio_request -EXPORT_SYMBOL_GPL vmlinux 0x4722b154 __irq_resolve_mapping -EXPORT_SYMBOL_GPL vmlinux 0x47234be5 __irq_set_handler -EXPORT_SYMBOL_GPL vmlinux 0x47296af5 led_set_brightness_nosleep -EXPORT_SYMBOL_GPL vmlinux 0x472f7f18 lp8788_update_bits -EXPORT_SYMBOL_GPL vmlinux 0x47334fc0 __udp6_lib_lookup -EXPORT_SYMBOL_GPL vmlinux 0x4734ecee mtk_pinconf_drive_set -EXPORT_SYMBOL_GPL vmlinux 0x473e84f4 tps65912_device_exit -EXPORT_SYMBOL_GPL vmlinux 0x474335e1 inet6_csk_xmit -EXPORT_SYMBOL_GPL vmlinux 0x474ba48b wait_for_stable_page -EXPORT_SYMBOL_GPL vmlinux 0x4761f17c register_netevent_notifier -EXPORT_SYMBOL_GPL vmlinux 0x4762ea95 meson_a1_parse_dt_extra -EXPORT_SYMBOL_GPL vmlinux 0x476af3a4 d_exchange -EXPORT_SYMBOL_GPL vmlinux 0x47884890 system_power_efficient_wq -EXPORT_SYMBOL_GPL vmlinux 0x478a595f device_remove_file -EXPORT_SYMBOL_GPL vmlinux 0x478debf5 phy_10gbit_fec_features -EXPORT_SYMBOL_GPL vmlinux 0x478e81f8 tcp_orphan_count -EXPORT_SYMBOL_GPL vmlinux 0x479f7d4b clk_bulk_disable -EXPORT_SYMBOL_GPL vmlinux 0x47a9270d phy_pm_runtime_allow -EXPORT_SYMBOL_GPL vmlinux 0x47aad3b9 have_governor_per_policy -EXPORT_SYMBOL_GPL vmlinux 0x47aad856 pci_restore_msi_state -EXPORT_SYMBOL_GPL vmlinux 0x47b2334c dev_pm_opp_put_clkname -EXPORT_SYMBOL_GPL vmlinux 0x47c1683d alloc_page_buffers -EXPORT_SYMBOL_GPL vmlinux 0x47d0eea2 acpi_lpat_temp_to_raw -EXPORT_SYMBOL_GPL vmlinux 0x47d20488 device_set_wakeup_enable -EXPORT_SYMBOL_GPL vmlinux 0x47d52ab1 platform_irqchip_probe -EXPORT_SYMBOL_GPL vmlinux 0x47d97088 component_master_del -EXPORT_SYMBOL_GPL vmlinux 0x47de0dc7 clk_unregister_mux -EXPORT_SYMBOL_GPL vmlinux 0x47ec0e28 skb_tstamp_tx -EXPORT_SYMBOL_GPL vmlinux 0x47f3cc3c pwm_set_chip_data -EXPORT_SYMBOL_GPL vmlinux 0x47fba6e3 ipv6_stub -EXPORT_SYMBOL_GPL vmlinux 0x47fe1b73 dpbp_enable -EXPORT_SYMBOL_GPL vmlinux 0x48000c2b device_set_node -EXPORT_SYMBOL_GPL vmlinux 0x480305ca kmsg_dump_rewind -EXPORT_SYMBOL_GPL vmlinux 0x4803762c bus_get_kset -EXPORT_SYMBOL_GPL vmlinux 0x4803aa10 ata_sff_wait_ready -EXPORT_SYMBOL_GPL vmlinux 0x48071051 of_hwspin_lock_get_id -EXPORT_SYMBOL_GPL vmlinux 0x480bd4d3 cpufreq_generic_init -EXPORT_SYMBOL_GPL vmlinux 0x4810bf06 max8997_update_reg -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 0x482a9453 kstrdup_quotable_cmdline -EXPORT_SYMBOL_GPL vmlinux 0x4842365d rdev_get_drvdata -EXPORT_SYMBOL_GPL vmlinux 0x4843a748 qman_portals_probed -EXPORT_SYMBOL_GPL vmlinux 0x484653c0 kobject_init_and_add -EXPORT_SYMBOL_GPL vmlinux 0x4849f0c8 set_online_page_callback -EXPORT_SYMBOL_GPL vmlinux 0x48506a51 __synth_event_gen_cmd_start -EXPORT_SYMBOL_GPL vmlinux 0x48547feb rio_dev_get -EXPORT_SYMBOL_GPL vmlinux 0x4855ca11 __udp4_lib_lookup -EXPORT_SYMBOL_GPL vmlinux 0x48688960 netlink_has_listeners -EXPORT_SYMBOL_GPL vmlinux 0x486bf400 usb_of_get_companion_dev -EXPORT_SYMBOL_GPL vmlinux 0x486dedc3 ghes_unregister_vendor_record_notifier -EXPORT_SYMBOL_GPL vmlinux 0x487f3a3b md_allow_write -EXPORT_SYMBOL_GPL vmlinux 0x488640bc invalidate_inode_pages2 -EXPORT_SYMBOL_GPL vmlinux 0x4890ad4b power_supply_put -EXPORT_SYMBOL_GPL vmlinux 0x48956478 devres_find -EXPORT_SYMBOL_GPL vmlinux 0x489627ce sfp_register_socket -EXPORT_SYMBOL_GPL vmlinux 0x48a3961b __mnt_drop_write -EXPORT_SYMBOL_GPL vmlinux 0x48a3a923 pkcs7_get_content_data -EXPORT_SYMBOL_GPL vmlinux 0x48a3d20b mctrl_gpio_get -EXPORT_SYMBOL_GPL vmlinux 0x48b21497 i2c_adapter_type -EXPORT_SYMBOL_GPL vmlinux 0x48c32847 __SCK__tp_func_sched_util_est_se_tp -EXPORT_SYMBOL_GPL vmlinux 0x48c53a94 to_nvdimm_bus -EXPORT_SYMBOL_GPL vmlinux 0x48d0c0bc __kthread_init_worker -EXPORT_SYMBOL_GPL vmlinux 0x48d3a83a acpi_dev_get_first_consumer_dev -EXPORT_SYMBOL_GPL vmlinux 0x48d5f764 dev_pm_opp_of_add_table -EXPORT_SYMBOL_GPL vmlinux 0x48d6ea10 sdio_retune_crc_enable -EXPORT_SYMBOL_GPL vmlinux 0x48f0bfa1 of_pci_range_parser_one -EXPORT_SYMBOL_GPL vmlinux 0x48f49400 apei_hest_parse -EXPORT_SYMBOL_GPL vmlinux 0x48fa1b23 inet_send_prepare -EXPORT_SYMBOL_GPL vmlinux 0x490f1915 ata_bmdma_port_start32 -EXPORT_SYMBOL_GPL vmlinux 0x4911310a init_pid_ns -EXPORT_SYMBOL_GPL vmlinux 0x491d0998 phy_package_join -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 0x4947e79f class_find_device -EXPORT_SYMBOL_GPL vmlinux 0x49608959 migrate_disable -EXPORT_SYMBOL_GPL vmlinux 0x49663f93 devm_watchdog_register_device -EXPORT_SYMBOL_GPL vmlinux 0x496eb394 skb_copy_ubufs -EXPORT_SYMBOL_GPL vmlinux 0x4988c8f6 lwtunnel_build_state -EXPORT_SYMBOL_GPL vmlinux 0x498f372a regulator_force_disable -EXPORT_SYMBOL_GPL vmlinux 0x499043d3 crypto_init_queue -EXPORT_SYMBOL_GPL vmlinux 0x499a0945 pci_bus_add_device -EXPORT_SYMBOL_GPL vmlinux 0x499b82f2 devm_ti_sci_get_handle -EXPORT_SYMBOL_GPL vmlinux 0x499e12f8 clk_hw_get_parent_by_index -EXPORT_SYMBOL_GPL vmlinux 0x49ca5555 fsnotify -EXPORT_SYMBOL_GPL vmlinux 0x49cd25ed alloc_workqueue -EXPORT_SYMBOL_GPL vmlinux 0x49e96999 cond_synchronize_rcu -EXPORT_SYMBOL_GPL vmlinux 0x49e9a339 i2c_dw_adjust_bus_speed -EXPORT_SYMBOL_GPL vmlinux 0x49fdc731 fuse_file_poll -EXPORT_SYMBOL_GPL vmlinux 0x4a17ed66 sysrq_mask -EXPORT_SYMBOL_GPL vmlinux 0x4a1c884c fscrypt_set_bio_crypt_ctx -EXPORT_SYMBOL_GPL vmlinux 0x4a27bbe7 iommu_map -EXPORT_SYMBOL_GPL vmlinux 0x4a2ecaee devm_clk_hw_get_clk -EXPORT_SYMBOL_GPL vmlinux 0x4a420d09 acpi_bus_detach_private_data -EXPORT_SYMBOL_GPL vmlinux 0x4a92a4d1 cpufreq_table_index_unsorted -EXPORT_SYMBOL_GPL vmlinux 0x4a999636 i2c_unregister_device -EXPORT_SYMBOL_GPL vmlinux 0x4ae832a3 to_nd_desc -EXPORT_SYMBOL_GPL vmlinux 0x4ae9b74f dpcon_close -EXPORT_SYMBOL_GPL vmlinux 0x4aebc2b5 devm_clk_bulk_get_optional -EXPORT_SYMBOL_GPL vmlinux 0x4af079ad thermal_zone_get_temp -EXPORT_SYMBOL_GPL vmlinux 0x4b050821 ping_rcv -EXPORT_SYMBOL_GPL vmlinux 0x4b16a8bc spi_mem_driver_register_with_owner -EXPORT_SYMBOL_GPL vmlinux 0x4b218df2 platform_device_add_data -EXPORT_SYMBOL_GPL vmlinux 0x4b25b302 scsi_unregister_device_handler -EXPORT_SYMBOL_GPL vmlinux 0x4b2b233c rhashtable_destroy -EXPORT_SYMBOL_GPL vmlinux 0x4b2b4117 iommu_uapi_sva_bind_gpasid -EXPORT_SYMBOL_GPL vmlinux 0x4b51f74c ata_xfer_mode2mask -EXPORT_SYMBOL_GPL vmlinux 0x4b526a25 devlink_param_unpublish -EXPORT_SYMBOL_GPL vmlinux 0x4b823aac clk_hw_is_prepared -EXPORT_SYMBOL_GPL vmlinux 0x4b871cef fib6_check_nexthop -EXPORT_SYMBOL_GPL vmlinux 0x4b8926cf qcom_smem_state_register -EXPORT_SYMBOL_GPL vmlinux 0x4b89d0b4 ethtool_set_ethtool_phy_ops -EXPORT_SYMBOL_GPL vmlinux 0x4b931968 xen_features -EXPORT_SYMBOL_GPL vmlinux 0x4b9519df clk_hw_get_num_parents -EXPORT_SYMBOL_GPL vmlinux 0x4ba3151e virtqueue_detach_unused_buf -EXPORT_SYMBOL_GPL vmlinux 0x4ba7933c sata_link_resume -EXPORT_SYMBOL_GPL vmlinux 0x4bc8727f xen_balloon_init -EXPORT_SYMBOL_GPL vmlinux 0x4bcc593b devm_usb_get_phy_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0x4bcf6dab usb_phy_set_charger_current -EXPORT_SYMBOL_GPL vmlinux 0x4bd6f08b misc_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0x4bdb84d0 rockchip_clk_register_ddrclk -EXPORT_SYMBOL_GPL vmlinux 0x4bef9de5 device_show_ulong -EXPORT_SYMBOL_GPL vmlinux 0x4bf7bdfe sched_trace_rq_cpu_capacity -EXPORT_SYMBOL_GPL vmlinux 0x4c11bc3c sysfs_chmod_file -EXPORT_SYMBOL_GPL vmlinux 0x4c1f8cd8 platform_find_device_by_driver -EXPORT_SYMBOL_GPL vmlinux 0x4c20c04e __rtnl_link_unregister -EXPORT_SYMBOL_GPL vmlinux 0x4c2c0ea7 evtchn_make_refcounted -EXPORT_SYMBOL_GPL vmlinux 0x4c2ec683 watchdog_unregister_device -EXPORT_SYMBOL_GPL vmlinux 0x4c410d39 clk_divider_ro_ops -EXPORT_SYMBOL_GPL vmlinux 0x4c549b36 __traceiter_xhci_dbg_quirks -EXPORT_SYMBOL_GPL vmlinux 0x4c68557f usb_add_hcd -EXPORT_SYMBOL_GPL vmlinux 0x4c72bd90 sec_irq_init -EXPORT_SYMBOL_GPL vmlinux 0x4c773b87 mmu_notifier_range_update_to_read_only -EXPORT_SYMBOL_GPL vmlinux 0x4c87ed3a of_irq_find_parent -EXPORT_SYMBOL_GPL vmlinux 0x4c8adfe1 hv_root_partition -EXPORT_SYMBOL_GPL vmlinux 0x4ca85557 usb_kill_anchored_urbs -EXPORT_SYMBOL_GPL vmlinux 0x4cb27100 ktime_get_snapshot -EXPORT_SYMBOL_GPL vmlinux 0x4cb6c058 dax_iomap_rw -EXPORT_SYMBOL_GPL vmlinux 0x4cb81fda __SCK__tp_func_wbc_writepage -EXPORT_SYMBOL_GPL vmlinux 0x4cbe44cf mbox_client_txdone -EXPORT_SYMBOL_GPL vmlinux 0x4cf2c990 tcp_unregister_congestion_control -EXPORT_SYMBOL_GPL vmlinux 0x4cf33b8d imx_pinconf_set_scu -EXPORT_SYMBOL_GPL vmlinux 0x4cfd7d77 relay_late_setup_files -EXPORT_SYMBOL_GPL vmlinux 0x4d0015e2 cpu_hotplug_disable -EXPORT_SYMBOL_GPL vmlinux 0x4d0fc030 synth_event_trace_end -EXPORT_SYMBOL_GPL vmlinux 0x4d14599d blk_queue_set_zoned -EXPORT_SYMBOL_GPL vmlinux 0x4d1cfa0d hvc_instantiate -EXPORT_SYMBOL_GPL vmlinux 0x4d338bf7 wm8350_reg_write -EXPORT_SYMBOL_GPL vmlinux 0x4d37e23e meson_aoclkc_probe -EXPORT_SYMBOL_GPL vmlinux 0x4d3a0696 __SCK__tp_func_rpm_idle -EXPORT_SYMBOL_GPL vmlinux 0x4d3a7c65 ehci_reset -EXPORT_SYMBOL_GPL vmlinux 0x4d4ce86b ahci_pmp_retry_srst_ops -EXPORT_SYMBOL_GPL vmlinux 0x4d4d7b79 blk_mq_map_queues -EXPORT_SYMBOL_GPL vmlinux 0x4d577102 __fscrypt_prepare_link -EXPORT_SYMBOL_GPL vmlinux 0x4d58c139 gpiod_get_raw_array_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0x4d62db3f gpiod_direction_output_raw -EXPORT_SYMBOL_GPL vmlinux 0x4d6a79ae dma_can_mmap -EXPORT_SYMBOL_GPL vmlinux 0x4d6d0bbc iommu_group_ref_get -EXPORT_SYMBOL_GPL vmlinux 0x4d7272e4 migrate_enable -EXPORT_SYMBOL_GPL vmlinux 0x4d75060a tpm_get_random -EXPORT_SYMBOL_GPL vmlinux 0x4d7551eb device_find_child_by_name -EXPORT_SYMBOL_GPL vmlinux 0x4d78433f crypto_inst_setname -EXPORT_SYMBOL_GPL vmlinux 0x4d7b36e3 rio_mport_read_config_32 -EXPORT_SYMBOL_GPL vmlinux 0x4d83c710 k3_udma_glue_tdown_tx_chn -EXPORT_SYMBOL_GPL vmlinux 0x4d95d6d1 memcpy_flushcache -EXPORT_SYMBOL_GPL vmlinux 0x4dae16e4 i2c_put_dma_safe_msg_buf -EXPORT_SYMBOL_GPL vmlinux 0x4db40044 rio_del_mport_pw_handler -EXPORT_SYMBOL_GPL vmlinux 0x4dc376a0 devm_hwspin_lock_request -EXPORT_SYMBOL_GPL vmlinux 0x4dd9d14d cn_netlink_send_mult -EXPORT_SYMBOL_GPL vmlinux 0x4de17ab3 usb_state_string -EXPORT_SYMBOL_GPL vmlinux 0x4e010b84 ata_sas_port_destroy -EXPORT_SYMBOL_GPL vmlinux 0x4e08245a badblocks_show -EXPORT_SYMBOL_GPL vmlinux 0x4e0feaf3 tps6586x_write -EXPORT_SYMBOL_GPL vmlinux 0x4e133eac clk_hw_get_rate -EXPORT_SYMBOL_GPL vmlinux 0x4e142a95 acpi_is_pnp_device -EXPORT_SYMBOL_GPL vmlinux 0x4e152ca9 tpm_is_tpm2 -EXPORT_SYMBOL_GPL vmlinux 0x4e17c613 ata_sff_queue_delayed_work -EXPORT_SYMBOL_GPL vmlinux 0x4e203efb xenbus_dev_suspend -EXPORT_SYMBOL_GPL vmlinux 0x4e2f5222 stmpe811_adc_common_init -EXPORT_SYMBOL_GPL vmlinux 0x4e69d36a tc3589x_reg_write -EXPORT_SYMBOL_GPL vmlinux 0x4e74878e __tracepoint_devlink_hwerr -EXPORT_SYMBOL_GPL vmlinux 0x4e81bb45 serdev_controller_add -EXPORT_SYMBOL_GPL vmlinux 0x4e8ceade ahci_print_info -EXPORT_SYMBOL_GPL vmlinux 0x4ea81277 phy_driver_is_genphy_10g -EXPORT_SYMBOL_GPL vmlinux 0x4eac5fc1 cpu_mitigations_auto_nosmt -EXPORT_SYMBOL_GPL vmlinux 0x4eb39d4e __tracepoint_tcp_bad_csum -EXPORT_SYMBOL_GPL vmlinux 0x4ec17696 wm8350_device_init -EXPORT_SYMBOL_GPL vmlinux 0x4ee04ca0 dma_async_device_channel_unregister -EXPORT_SYMBOL_GPL vmlinux 0x4ee2f957 ip6_append_data -EXPORT_SYMBOL_GPL vmlinux 0x4eeb25f0 ata_scsi_change_queue_depth -EXPORT_SYMBOL_GPL vmlinux 0x4ef5bcf4 perf_swevent_get_recursion_context -EXPORT_SYMBOL_GPL vmlinux 0x4efcf021 mpi_normalize -EXPORT_SYMBOL_GPL vmlinux 0x4f087a40 crypto_ahash_finup -EXPORT_SYMBOL_GPL vmlinux 0x4f19450e usb_hcd_unlink_urb_from_ep -EXPORT_SYMBOL_GPL vmlinux 0x4f204712 do_truncate -EXPORT_SYMBOL_GPL vmlinux 0x4f2c996d kmsg_dump_get_line -EXPORT_SYMBOL_GPL vmlinux 0x4f31e441 regmap_field_bulk_alloc -EXPORT_SYMBOL_GPL vmlinux 0x4f53abd0 usb_for_each_dev -EXPORT_SYMBOL_GPL vmlinux 0x4f55c038 xhci_update_hub_device -EXPORT_SYMBOL_GPL vmlinux 0x4f59101b icc_set_tag -EXPORT_SYMBOL_GPL vmlinux 0x4f5c45e8 xen_xenbus_fops -EXPORT_SYMBOL_GPL vmlinux 0x4f6a07fe show_rcu_gp_kthreads -EXPORT_SYMBOL_GPL vmlinux 0x4f71bb58 of_irq_parse_and_map_pci -EXPORT_SYMBOL_GPL vmlinux 0x4f72a987 uart_parse_options -EXPORT_SYMBOL_GPL vmlinux 0x4f8a12db crypto_unregister_ahashes -EXPORT_SYMBOL_GPL vmlinux 0x4f9753e0 crypto_stats_aead_encrypt -EXPORT_SYMBOL_GPL vmlinux 0x4f98d766 cpu_pm_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x4fa40a45 dm_get_md -EXPORT_SYMBOL_GPL vmlinux 0x4fc3ca8e __raw_v6_lookup -EXPORT_SYMBOL_GPL vmlinux 0x4fdc945d sata_deb_timing_normal -EXPORT_SYMBOL_GPL vmlinux 0x4fe1eddf unregister_netevent_notifier -EXPORT_SYMBOL_GPL vmlinux 0x50051d13 sock_diag_put_meminfo -EXPORT_SYMBOL_GPL vmlinux 0x50055d4e usb_put_dev -EXPORT_SYMBOL_GPL vmlinux 0x50077221 crypto_spawn_tfm2 -EXPORT_SYMBOL_GPL vmlinux 0x5009c889 perf_aux_output_end -EXPORT_SYMBOL_GPL vmlinux 0x500c768c apei_exec_read_register -EXPORT_SYMBOL_GPL vmlinux 0x50125876 rtc_set_alarm -EXPORT_SYMBOL_GPL vmlinux 0x501fdb68 blk_crypto_evict_key -EXPORT_SYMBOL_GPL vmlinux 0x5026585c xen_irq_from_gsi -EXPORT_SYMBOL_GPL vmlinux 0x503342b7 clk_register_hisi_phase -EXPORT_SYMBOL_GPL vmlinux 0x503f3285 devres_release_group -EXPORT_SYMBOL_GPL vmlinux 0x5051069e acpi_bind_one -EXPORT_SYMBOL_GPL vmlinux 0x50567c1b crypto_skcipher_setkey -EXPORT_SYMBOL_GPL vmlinux 0x505e4c5a nf_checksum_partial -EXPORT_SYMBOL_GPL vmlinux 0x505fc6af crypto_unregister_aeads -EXPORT_SYMBOL_GPL vmlinux 0x506f95e7 scsi_dh_attach -EXPORT_SYMBOL_GPL vmlinux 0x5091b823 ring_buffer_read_start -EXPORT_SYMBOL_GPL vmlinux 0x50aa947b trace_event_ignore_this_pid -EXPORT_SYMBOL_GPL vmlinux 0x50b6ab9d md_account_bio -EXPORT_SYMBOL_GPL vmlinux 0x50c2ae54 rpi_firmware_property -EXPORT_SYMBOL_GPL vmlinux 0x50c61940 __context_tracking_exit -EXPORT_SYMBOL_GPL vmlinux 0x50cf3e1b ahci_platform_enable_regulators -EXPORT_SYMBOL_GPL vmlinux 0x50d3e8c4 sock_prot_inuse_add -EXPORT_SYMBOL_GPL vmlinux 0x50dc62f1 usb_hcd_unmap_urb_for_dma -EXPORT_SYMBOL_GPL vmlinux 0x50e7193a __i2c_first_dynamic_bus_num -EXPORT_SYMBOL_GPL vmlinux 0x50f1d87a dmaengine_desc_attach_metadata -EXPORT_SYMBOL_GPL vmlinux 0x50fad434 round_jiffies_up -EXPORT_SYMBOL_GPL vmlinux 0x50fe989f acpi_dev_get_resources -EXPORT_SYMBOL_GPL vmlinux 0x510851b8 irq_chip_enable_parent -EXPORT_SYMBOL_GPL vmlinux 0x510a2e86 kgdb_unregister_io_module -EXPORT_SYMBOL_GPL vmlinux 0x51203bd6 gov_attr_set_init -EXPORT_SYMBOL_GPL vmlinux 0x51390c96 rcu_barrier_tasks_rude -EXPORT_SYMBOL_GPL vmlinux 0x51394af1 xen_xlate_unmap_gfn_range -EXPORT_SYMBOL_GPL vmlinux 0x5152c256 init_iova_domain -EXPORT_SYMBOL_GPL vmlinux 0x515608f9 dev_pm_domain_set -EXPORT_SYMBOL_GPL vmlinux 0x515b390f __SCK__tp_func_remove_device_from_group -EXPORT_SYMBOL_GPL vmlinux 0x51641e64 desc_to_gpio -EXPORT_SYMBOL_GPL vmlinux 0x5169344d k3_udma_glue_pop_tx_chn -EXPORT_SYMBOL_GPL vmlinux 0x5187ac4b xen_store_evtchn -EXPORT_SYMBOL_GPL vmlinux 0x518be3b9 __netdev_watchdog_up -EXPORT_SYMBOL_GPL vmlinux 0x518e8f73 proc_create_net_single_write -EXPORT_SYMBOL_GPL vmlinux 0x518f6b60 pci_hp_add -EXPORT_SYMBOL_GPL vmlinux 0x51925ae3 bd_unlink_disk_holder -EXPORT_SYMBOL_GPL vmlinux 0x51965785 user_read -EXPORT_SYMBOL_GPL vmlinux 0x51989661 tpm_put_ops -EXPORT_SYMBOL_GPL vmlinux 0x51991b38 mtk_mutex_enable -EXPORT_SYMBOL_GPL vmlinux 0x519d4d8f regmap_mmio_detach_clk -EXPORT_SYMBOL_GPL vmlinux 0x51a348cc usb_role_switch_set_drvdata -EXPORT_SYMBOL_GPL vmlinux 0x51aafd5a devlink_register -EXPORT_SYMBOL_GPL vmlinux 0x51ad07dd tegra210_plle_hw_sequence_start -EXPORT_SYMBOL_GPL vmlinux 0x51b1c881 dw_pcie_find_ext_capability -EXPORT_SYMBOL_GPL vmlinux 0x51bbf458 sprd_pinctrl_remove -EXPORT_SYMBOL_GPL vmlinux 0x51be6c87 scsi_free_sgtables -EXPORT_SYMBOL_GPL vmlinux 0x51c4b4db ahci_do_hardreset -EXPORT_SYMBOL_GPL vmlinux 0x51c4bf48 platform_bus_type -EXPORT_SYMBOL_GPL vmlinux 0x51c84f30 devm_get_free_pages -EXPORT_SYMBOL_GPL vmlinux 0x51c94713 ata_bmdma_qc_prep -EXPORT_SYMBOL_GPL vmlinux 0x51e5f3bb generic_fh_to_parent -EXPORT_SYMBOL_GPL vmlinux 0x51e61f69 usb_deregister_device_driver -EXPORT_SYMBOL_GPL vmlinux 0x51e8fc32 metadata_dst_alloc -EXPORT_SYMBOL_GPL vmlinux 0x51ebd789 icc_disable -EXPORT_SYMBOL_GPL vmlinux 0x51f1fa87 spi_async_locked -EXPORT_SYMBOL_GPL vmlinux 0x51fc9a6d xenmem_reservation_decrease -EXPORT_SYMBOL_GPL vmlinux 0x520631c0 pm_clk_runtime_suspend -EXPORT_SYMBOL_GPL vmlinux 0x520b9206 scsi_mode_select -EXPORT_SYMBOL_GPL vmlinux 0x5213e27d query_asymmetric_key -EXPORT_SYMBOL_GPL vmlinux 0x5214c22d thermal_zone_device_update -EXPORT_SYMBOL_GPL vmlinux 0x52187478 icc_link_create -EXPORT_SYMBOL_GPL vmlinux 0x52252316 clk_unregister_fixed_rate -EXPORT_SYMBOL_GPL vmlinux 0x52295a47 sock_diag_destroy -EXPORT_SYMBOL_GPL vmlinux 0x522bacd8 trace_event_raw_init -EXPORT_SYMBOL_GPL vmlinux 0x5234eee8 of_property_read_variable_u64_array -EXPORT_SYMBOL_GPL vmlinux 0x523872a9 dev_pm_disable_wake_irq -EXPORT_SYMBOL_GPL vmlinux 0x523bbe94 __kernel_write -EXPORT_SYMBOL_GPL vmlinux 0x52431348 xenbus_transaction_start -EXPORT_SYMBOL_GPL vmlinux 0x524a0d90 wakeup_sources_walk_next -EXPORT_SYMBOL_GPL vmlinux 0x525d0aa3 trace_seq_printf -EXPORT_SYMBOL_GPL vmlinux 0x52843a62 sk_attach_filter -EXPORT_SYMBOL_GPL vmlinux 0x528f4da2 dummy_irq_chip -EXPORT_SYMBOL_GPL vmlinux 0x52abcdab dev_pm_opp_enable -EXPORT_SYMBOL_GPL vmlinux 0x52b1e3c7 pci_flags -EXPORT_SYMBOL_GPL vmlinux 0x52bab24d unix_table_lock -EXPORT_SYMBOL_GPL vmlinux 0x52bec428 iommu_set_fault_handler -EXPORT_SYMBOL_GPL vmlinux 0x52c35e83 call_rcu_tasks_trace -EXPORT_SYMBOL_GPL vmlinux 0x52ce2057 hv_setup_crash_handler -EXPORT_SYMBOL_GPL vmlinux 0x52d54fce devlink_info_version_stored_put -EXPORT_SYMBOL_GPL vmlinux 0x52d7e49f i2c_dw_configure_master -EXPORT_SYMBOL_GPL vmlinux 0x53010b64 regmap_field_read -EXPORT_SYMBOL_GPL vmlinux 0x53012944 __tracepoint_rpm_resume -EXPORT_SYMBOL_GPL vmlinux 0x53082a0c irq_chip_set_affinity_parent -EXPORT_SYMBOL_GPL vmlinux 0x530d5e49 pci_epc_set_bar -EXPORT_SYMBOL_GPL vmlinux 0x53128888 of_icc_get -EXPORT_SYMBOL_GPL vmlinux 0x5321d3d6 sbitmap_get -EXPORT_SYMBOL_GPL vmlinux 0x532aae9f dma_buf_unmap_attachment -EXPORT_SYMBOL_GPL vmlinux 0x532b90b5 kprobe_event_cmd_init -EXPORT_SYMBOL_GPL vmlinux 0x532c0b7f attribute_container_find_class_device -EXPORT_SYMBOL_GPL vmlinux 0x532caf4e bus_find_device -EXPORT_SYMBOL_GPL vmlinux 0x533b65e9 pm_generic_suspend_noirq -EXPORT_SYMBOL_GPL vmlinux 0x534088c6 devm_device_add_group -EXPORT_SYMBOL_GPL vmlinux 0x534ace06 phy_restart_aneg -EXPORT_SYMBOL_GPL vmlinux 0x534ddcee access_process_vm -EXPORT_SYMBOL_GPL vmlinux 0x5358864e devlink_fmsg_binary_pair_nest_end -EXPORT_SYMBOL_GPL vmlinux 0x535b13ec dm_internal_suspend_noflush -EXPORT_SYMBOL_GPL vmlinux 0x535f788e xa_delete_node -EXPORT_SYMBOL_GPL vmlinux 0x536822e3 sfp_module_insert -EXPORT_SYMBOL_GPL vmlinux 0x536bd78c pci_find_vsec_capability -EXPORT_SYMBOL_GPL vmlinux 0x537252cf __SCK__tp_func_rpm_return_int -EXPORT_SYMBOL_GPL vmlinux 0x538672b0 fwnode_property_present -EXPORT_SYMBOL_GPL vmlinux 0x538d073d phy_duplex_to_str -EXPORT_SYMBOL_GPL vmlinux 0x5391f2c7 gnttab_end_foreign_access_ref -EXPORT_SYMBOL_GPL vmlinux 0x539fb72e ata_sas_tport_add -EXPORT_SYMBOL_GPL vmlinux 0x53b5e915 cgroup_get_from_path -EXPORT_SYMBOL_GPL vmlinux 0x53c089f5 property_entries_dup -EXPORT_SYMBOL_GPL vmlinux 0x53d7c01e __traceiter_cpu_idle -EXPORT_SYMBOL_GPL vmlinux 0x53e9d428 acpi_ec_remove_query_handler -EXPORT_SYMBOL_GPL vmlinux 0x53fec91b virtqueue_add_inbuf -EXPORT_SYMBOL_GPL vmlinux 0x5407ad60 da9052_disable_irq_nosync -EXPORT_SYMBOL_GPL vmlinux 0x5418858d xdp_convert_zc_to_xdp_frame -EXPORT_SYMBOL_GPL vmlinux 0x541bd60a irq_work_run -EXPORT_SYMBOL_GPL vmlinux 0x54215db5 visitor64 -EXPORT_SYMBOL_GPL vmlinux 0x5422f038 ip6_route_lookup -EXPORT_SYMBOL_GPL vmlinux 0x543d5ae5 irq_domain_alloc_irqs_parent -EXPORT_SYMBOL_GPL vmlinux 0x54422341 __traceiter_sched_overutilized_tp -EXPORT_SYMBOL_GPL vmlinux 0x54490061 pci_dev_trylock -EXPORT_SYMBOL_GPL vmlinux 0x545025e5 nvmem_add_cell_table -EXPORT_SYMBOL_GPL vmlinux 0x545a430e sock_diag_check_cookie -EXPORT_SYMBOL_GPL vmlinux 0x546ff2c7 sata_pmp_port_ops -EXPORT_SYMBOL_GPL vmlinux 0x547d6289 dma_resv_test_signaled -EXPORT_SYMBOL_GPL vmlinux 0x54840230 ata_dev_set_feature -EXPORT_SYMBOL_GPL vmlinux 0x549525ef handle_nested_irq -EXPORT_SYMBOL_GPL vmlinux 0x54a25da2 qcom_smem_state_put -EXPORT_SYMBOL_GPL vmlinux 0x54a8dcc7 debugfs_remove -EXPORT_SYMBOL_GPL vmlinux 0x54aa6bba cpuidle_get_cpu_driver -EXPORT_SYMBOL_GPL vmlinux 0x54b19d10 sata_sff_hardreset -EXPORT_SYMBOL_GPL vmlinux 0x54ee0677 bpf_trace_run12 -EXPORT_SYMBOL_GPL vmlinux 0x54f3eaf5 debugfs_create_file_unsafe -EXPORT_SYMBOL_GPL vmlinux 0x550a6ea0 input_ff_create -EXPORT_SYMBOL_GPL vmlinux 0x550f3e05 i2c_freq_mode_string -EXPORT_SYMBOL_GPL vmlinux 0x5511d800 hwmon_device_register_with_info -EXPORT_SYMBOL_GPL vmlinux 0x551fa3fd clk_register -EXPORT_SYMBOL_GPL vmlinux 0x55219758 bpf_map_inc -EXPORT_SYMBOL_GPL vmlinux 0x55243c45 regmap_can_raw_write -EXPORT_SYMBOL_GPL vmlinux 0x55339365 flush_delayed_fput -EXPORT_SYMBOL_GPL vmlinux 0x553b1984 i2c_acpi_find_bus_speed -EXPORT_SYMBOL_GPL vmlinux 0x553b49a4 cpufreq_get_driver_data -EXPORT_SYMBOL_GPL vmlinux 0x553ba4dd of_mm_gpiochip_remove -EXPORT_SYMBOL_GPL vmlinux 0x553efde9 usb_add_phy -EXPORT_SYMBOL_GPL vmlinux 0x55417264 unregister_vt_notifier -EXPORT_SYMBOL_GPL vmlinux 0x554f7e33 kobject_uevent_env -EXPORT_SYMBOL_GPL vmlinux 0x555ac4a6 usb_free_urb -EXPORT_SYMBOL_GPL vmlinux 0x55685272 pm_generic_restore -EXPORT_SYMBOL_GPL vmlinux 0x556b311e __traceiter_neigh_update_done -EXPORT_SYMBOL_GPL vmlinux 0x556e4390 clk_get_rate -EXPORT_SYMBOL_GPL vmlinux 0x55739236 transport_remove_device -EXPORT_SYMBOL_GPL vmlinux 0x55784228 regmap_irq_get_virq -EXPORT_SYMBOL_GPL vmlinux 0x557fb345 devm_hwspin_lock_unregister -EXPORT_SYMBOL_GPL vmlinux 0x5581b1cc devm_request_free_mem_region -EXPORT_SYMBOL_GPL vmlinux 0x558a8456 acpi_dev_add_driver_gpios -EXPORT_SYMBOL_GPL vmlinux 0x559c1e71 dev_pm_set_dedicated_wake_irq -EXPORT_SYMBOL_GPL vmlinux 0x55a9c659 is_skb_forwardable -EXPORT_SYMBOL_GPL vmlinux 0x55ad31f4 ata_sff_freeze -EXPORT_SYMBOL_GPL vmlinux 0x55b09770 wm831x_auxadc_read -EXPORT_SYMBOL_GPL vmlinux 0x55c76a23 ksys_sync_helper -EXPORT_SYMBOL_GPL vmlinux 0x55c9880c zynqmp_pm_release_node -EXPORT_SYMBOL_GPL vmlinux 0x55d6b2fb rhashtable_insert_slow -EXPORT_SYMBOL_GPL vmlinux 0x55eecff4 bit_wait_io_timeout -EXPORT_SYMBOL_GPL vmlinux 0x55f9f863 fuse_dev_alloc -EXPORT_SYMBOL_GPL vmlinux 0x560343e3 power_supply_changed -EXPORT_SYMBOL_GPL vmlinux 0x56054c05 crypto_it_tab -EXPORT_SYMBOL_GPL vmlinux 0x5614d4e1 adp5520_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x5615efdb dw_pcie_wait_for_link -EXPORT_SYMBOL_GPL vmlinux 0x56173654 pcap_set_ts_bits -EXPORT_SYMBOL_GPL vmlinux 0x561e6dc8 pci_cfg_access_unlock -EXPORT_SYMBOL_GPL vmlinux 0x56235826 crypto_register_acomps -EXPORT_SYMBOL_GPL vmlinux 0x56256e8a orderly_poweroff -EXPORT_SYMBOL_GPL vmlinux 0x56310925 regulator_mode_to_status -EXPORT_SYMBOL_GPL vmlinux 0x563f5ed5 acpiphp_register_attention -EXPORT_SYMBOL_GPL vmlinux 0x5641485b tty_termios_encode_baud_rate -EXPORT_SYMBOL_GPL vmlinux 0x564458c5 dw_pcie_host_init -EXPORT_SYMBOL_GPL vmlinux 0x564ef78b dax_copy_from_iter -EXPORT_SYMBOL_GPL vmlinux 0x566a5a9a of_fdt_unflatten_tree -EXPORT_SYMBOL_GPL vmlinux 0x566ccc9e proc_douintvec_minmax -EXPORT_SYMBOL_GPL vmlinux 0x568b887d devlink_region_create -EXPORT_SYMBOL_GPL vmlinux 0x569547ff pci_find_next_ext_capability -EXPORT_SYMBOL_GPL vmlinux 0x56980df3 pm_clk_add_notifier -EXPORT_SYMBOL_GPL vmlinux 0x56989425 pci_num_vf -EXPORT_SYMBOL_GPL vmlinux 0x569fad4d regulator_set_voltage_rdev -EXPORT_SYMBOL_GPL vmlinux 0x56a858aa scsi_host_busy_iter -EXPORT_SYMBOL_GPL vmlinux 0x56ab9894 verify_signature -EXPORT_SYMBOL_GPL vmlinux 0x56ce9dc5 mtk_pinconf_adv_drive_set_raw -EXPORT_SYMBOL_GPL vmlinux 0x56d61dce context_tracking_enter -EXPORT_SYMBOL_GPL vmlinux 0x56dc2a9a regmap_field_bulk_free -EXPORT_SYMBOL_GPL vmlinux 0x56ded5b9 regmap_read -EXPORT_SYMBOL_GPL vmlinux 0x56e9103b cpu_pm_enter -EXPORT_SYMBOL_GPL vmlinux 0x56fbb130 no_hash_pointers -EXPORT_SYMBOL_GPL vmlinux 0x570db648 crypto_alloc_shash -EXPORT_SYMBOL_GPL vmlinux 0x57291877 ping_seq_start -EXPORT_SYMBOL_GPL vmlinux 0x573b5453 ipv6_fixup_options -EXPORT_SYMBOL_GPL vmlinux 0x573f31c2 of_property_read_u64_index -EXPORT_SYMBOL_GPL vmlinux 0x574609c5 apei_exec_write_register_value -EXPORT_SYMBOL_GPL vmlinux 0x575c4788 irq_chip_set_wake_parent -EXPORT_SYMBOL_GPL vmlinux 0x57679971 vga_default_device -EXPORT_SYMBOL_GPL vmlinux 0x57719632 gnttab_grant_foreign_access -EXPORT_SYMBOL_GPL vmlinux 0x577a438a tegra210_clk_emc_detach -EXPORT_SYMBOL_GPL vmlinux 0x577bbcfa sched_set_fifo_low -EXPORT_SYMBOL_GPL vmlinux 0x57875d7a meson_clk_pll_ro_ops -EXPORT_SYMBOL_GPL vmlinux 0x5788fd69 usb_sg_init -EXPORT_SYMBOL_GPL vmlinux 0x578eeb4d hugetlb_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x5790e7a0 pci_unlock_rescan_remove -EXPORT_SYMBOL_GPL vmlinux 0x5798c881 get_dev_pagemap -EXPORT_SYMBOL_GPL vmlinux 0x579e0bf5 rtnl_unregister_all -EXPORT_SYMBOL_GPL vmlinux 0x579edb45 of_genpd_add_device -EXPORT_SYMBOL_GPL vmlinux 0x57a0275e mmc_regulator_get_supply -EXPORT_SYMBOL_GPL vmlinux 0x57a71640 dev_attr_unload_heads -EXPORT_SYMBOL_GPL vmlinux 0x57b41d98 debugfs_file_get -EXPORT_SYMBOL_GPL vmlinux 0x57bef59e vchan_find_desc -EXPORT_SYMBOL_GPL vmlinux 0x57c419ff acpi_dma_controller_register -EXPORT_SYMBOL_GPL vmlinux 0x57cde7ce pm_clk_runtime_resume -EXPORT_SYMBOL_GPL vmlinux 0x57d33d34 cpufreq_cpu_get -EXPORT_SYMBOL_GPL vmlinux 0x57d4050a xhci_get_endpoint_index -EXPORT_SYMBOL_GPL vmlinux 0x57ddc935 led_trigger_remove -EXPORT_SYMBOL_GPL vmlinux 0x57e0e735 scmi_driver_register -EXPORT_SYMBOL_GPL vmlinux 0x57e88923 rhashtable_walk_start_check -EXPORT_SYMBOL_GPL vmlinux 0x57f576b9 mpi_ec_curve_point -EXPORT_SYMBOL_GPL vmlinux 0x58024cda nd_region_dev -EXPORT_SYMBOL_GPL vmlinux 0x5806c57d dprc_setup -EXPORT_SYMBOL_GPL vmlinux 0x58142dbb eventfd_ctx_fileget -EXPORT_SYMBOL_GPL vmlinux 0x58203de4 __phy_modify_mmd_changed -EXPORT_SYMBOL_GPL vmlinux 0x5825b7aa dpbp_reset -EXPORT_SYMBOL_GPL vmlinux 0x58276f93 cper_next_record_id -EXPORT_SYMBOL_GPL vmlinux 0x5831e062 cpus_read_trylock -EXPORT_SYMBOL_GPL vmlinux 0x58570c2e debugfs_create_bool -EXPORT_SYMBOL_GPL vmlinux 0x5860d2d7 acpi_subsys_restore_early -EXPORT_SYMBOL_GPL vmlinux 0x5879a27d sfp_get_module_info -EXPORT_SYMBOL_GPL vmlinux 0x589d4baf ahci_platform_suspend_host -EXPORT_SYMBOL_GPL vmlinux 0x58c198c7 usb_hcd_pci_pm_ops -EXPORT_SYMBOL_GPL vmlinux 0x58d3de9d pci_check_and_mask_intx -EXPORT_SYMBOL_GPL vmlinux 0x58d63d84 pm_generic_freeze -EXPORT_SYMBOL_GPL vmlinux 0x58def6ca sfp_module_remove -EXPORT_SYMBOL_GPL vmlinux 0x58e14f15 HYPERVISOR_event_channel_op -EXPORT_SYMBOL_GPL vmlinux 0x58e4ea20 virtqueue_get_desc_addr -EXPORT_SYMBOL_GPL vmlinux 0x58f3548a ata_port_wait_eh -EXPORT_SYMBOL_GPL vmlinux 0x58f7aa3e usb_alloc_coherent -EXPORT_SYMBOL_GPL vmlinux 0x590bb5bf led_classdev_suspend -EXPORT_SYMBOL_GPL vmlinux 0x591d2cae serial8250_rpm_put_tx -EXPORT_SYMBOL_GPL vmlinux 0x5927de8e fuse_simple_background -EXPORT_SYMBOL_GPL vmlinux 0x59366d56 posix_clock_unregister -EXPORT_SYMBOL_GPL vmlinux 0x593e97fd regulator_bulk_set_supply_names -EXPORT_SYMBOL_GPL vmlinux 0x59435569 debugfs_create_blob -EXPORT_SYMBOL_GPL vmlinux 0x594aa723 nf_hook_entries_delete_raw -EXPORT_SYMBOL_GPL vmlinux 0x5976d69d inet_ehash_locks_alloc -EXPORT_SYMBOL_GPL vmlinux 0x597bccce irq_setup_generic_chip -EXPORT_SYMBOL_GPL vmlinux 0x597ddcf8 usb_acpi_set_power_state -EXPORT_SYMBOL_GPL vmlinux 0x5986d190 kdb_printf -EXPORT_SYMBOL_GPL vmlinux 0x598e6514 __i2c_board_lock -EXPORT_SYMBOL_GPL vmlinux 0x5995cefc sysfs_remove_link_from_group -EXPORT_SYMBOL_GPL vmlinux 0x59b2adbf input_ff_effect_from_user -EXPORT_SYMBOL_GPL vmlinux 0x59bfdaad platform_device_add -EXPORT_SYMBOL_GPL vmlinux 0x59c32023 usb_control_msg_send -EXPORT_SYMBOL_GPL vmlinux 0x59c43dc9 __traceiter_non_standard_event -EXPORT_SYMBOL_GPL vmlinux 0x59c58f4d skb_mpls_dec_ttl -EXPORT_SYMBOL_GPL vmlinux 0x59c60bb6 vc_scrolldelta_helper -EXPORT_SYMBOL_GPL vmlinux 0x59dbd404 pci_test_config_bits -EXPORT_SYMBOL_GPL vmlinux 0x59f32720 mpi_subm -EXPORT_SYMBOL_GPL vmlinux 0x59fa7e7d regcache_cache_bypass -EXPORT_SYMBOL_GPL vmlinux 0x5a042800 crypto_register_skcipher -EXPORT_SYMBOL_GPL vmlinux 0x5a12e60c __SCK__tp_func_sched_update_nr_running_tp -EXPORT_SYMBOL_GPL vmlinux 0x5a184254 rio_dma_prep_xfer -EXPORT_SYMBOL_GPL vmlinux 0x5a1d134a rcu_momentary_dyntick_idle -EXPORT_SYMBOL_GPL vmlinux 0x5a224552 usb_altnum_to_altsetting -EXPORT_SYMBOL_GPL vmlinux 0x5a4521fd edac_pci_handle_npe -EXPORT_SYMBOL_GPL vmlinux 0x5a48f82a crypto_alloc_kpp -EXPORT_SYMBOL_GPL vmlinux 0x5a49baf1 clk_hw_set_parent -EXPORT_SYMBOL_GPL vmlinux 0x5a49dbc9 timerqueue_del -EXPORT_SYMBOL_GPL vmlinux 0x5a5c4fa5 iommu_dev_feature_enabled -EXPORT_SYMBOL_GPL vmlinux 0x5a613f45 btree_lookup -EXPORT_SYMBOL_GPL vmlinux 0x5a6cdb52 nf_ct_zone_dflt -EXPORT_SYMBOL_GPL vmlinux 0x5a7bfe41 crypto_probing_notify -EXPORT_SYMBOL_GPL vmlinux 0x5a8b796c phy_get -EXPORT_SYMBOL_GPL vmlinux 0x5aa159f7 serial8250_request_dma -EXPORT_SYMBOL_GPL vmlinux 0x5aa3054f get_net_ns_by_fd -EXPORT_SYMBOL_GPL vmlinux 0x5aa70984 acpi_reduced_hardware -EXPORT_SYMBOL_GPL vmlinux 0x5aa9332e regulator_set_ramp_delay_regmap -EXPORT_SYMBOL_GPL vmlinux 0x5ab09745 edac_get_owner -EXPORT_SYMBOL_GPL vmlinux 0x5abb5b91 gov_attr_set_put -EXPORT_SYMBOL_GPL vmlinux 0x5ac89b98 watchdog_init_timeout -EXPORT_SYMBOL_GPL vmlinux 0x5aeb00af pinmux_generic_get_function_count -EXPORT_SYMBOL_GPL vmlinux 0x5af07211 devm_spi_register_controller -EXPORT_SYMBOL_GPL vmlinux 0x5af332a4 is_virtio_device -EXPORT_SYMBOL_GPL vmlinux 0x5afd9d7e sk_setup_caps -EXPORT_SYMBOL_GPL vmlinux 0x5b064d5d hwmon_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0x5b0ec2f5 get_task_mm -EXPORT_SYMBOL_GPL vmlinux 0x5b14ed5b mptcp_token_get_sock -EXPORT_SYMBOL_GPL vmlinux 0x5b190184 tps6586x_read -EXPORT_SYMBOL_GPL vmlinux 0x5b21ceff ring_buffer_iter_peek -EXPORT_SYMBOL_GPL vmlinux 0x5b313011 dst_cache_set_ip6 -EXPORT_SYMBOL_GPL vmlinux 0x5b52fe80 iomap_releasepage -EXPORT_SYMBOL_GPL vmlinux 0x5b6a4582 edac_pci_alloc_ctl_info -EXPORT_SYMBOL_GPL vmlinux 0x5b6a8a56 skb_mpls_push -EXPORT_SYMBOL_GPL vmlinux 0x5b6b0329 swiotlb_max_segment -EXPORT_SYMBOL_GPL vmlinux 0x5b6c8a8f virtqueue_enable_cb -EXPORT_SYMBOL_GPL vmlinux 0x5b70c9ec platform_device_register_full -EXPORT_SYMBOL_GPL vmlinux 0x5b7942d8 usb_unlocked_enable_lpm -EXPORT_SYMBOL_GPL vmlinux 0x5b910074 kthread_park -EXPORT_SYMBOL_GPL vmlinux 0x5b92bf85 of_usb_get_phy_mode -EXPORT_SYMBOL_GPL vmlinux 0x5ba036dd i2c_adapter_depth -EXPORT_SYMBOL_GPL vmlinux 0x5baef41a __clk_hw_register_divider -EXPORT_SYMBOL_GPL vmlinux 0x5baf9e15 mc_send_command -EXPORT_SYMBOL_GPL vmlinux 0x5bbdfa26 scatterwalk_ffwd -EXPORT_SYMBOL_GPL vmlinux 0x5bc7aa88 led_trigger_event -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 0x5be8f5c5 mtk_pinconf_bias_disable_set -EXPORT_SYMBOL_GPL vmlinux 0x5bfbcfd9 freq_qos_update_request -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 0x5c377344 iomap_is_partially_uptodate -EXPORT_SYMBOL_GPL vmlinux 0x5c3bbd06 __SCK__tp_func_mc_event -EXPORT_SYMBOL_GPL vmlinux 0x5c3e7953 sk_msg_return_zero -EXPORT_SYMBOL_GPL vmlinux 0x5c43b872 blk_insert_cloned_request -EXPORT_SYMBOL_GPL vmlinux 0x5c4cfc24 ata_cable_ignore -EXPORT_SYMBOL_GPL vmlinux 0x5c4f0f19 pci_user_read_config_word -EXPORT_SYMBOL_GPL vmlinux 0x5c58e0bb subsys_interface_register -EXPORT_SYMBOL_GPL vmlinux 0x5c5a1b16 tick_broadcast_control -EXPORT_SYMBOL_GPL vmlinux 0x5c5b8d34 pci_epf_alloc_space -EXPORT_SYMBOL_GPL vmlinux 0x5c5c6826 phy_10gbit_full_features -EXPORT_SYMBOL_GPL vmlinux 0x5c709240 devlink_dpipe_headers_register -EXPORT_SYMBOL_GPL vmlinux 0x5c724258 vfs_setxattr -EXPORT_SYMBOL_GPL vmlinux 0x5c7285f6 vchan_tx_desc_free -EXPORT_SYMBOL_GPL vmlinux 0x5c784e43 crypto_skcipher_encrypt -EXPORT_SYMBOL_GPL vmlinux 0x5c82016e __SCK__tp_func_napi_poll -EXPORT_SYMBOL_GPL vmlinux 0x5ca723d2 tty_encode_baud_rate -EXPORT_SYMBOL_GPL vmlinux 0x5ca95bf4 wait_on_page_writeback -EXPORT_SYMBOL_GPL vmlinux 0x5cab9945 unregister_xenbus_watch -EXPORT_SYMBOL_GPL vmlinux 0x5cad8fc3 power_supply_ocv2cap_simple -EXPORT_SYMBOL_GPL vmlinux 0x5cb8751d led_update_brightness -EXPORT_SYMBOL_GPL vmlinux 0x5cc33221 iommu_capable -EXPORT_SYMBOL_GPL vmlinux 0x5cc33ac8 nfs42_ssc_register -EXPORT_SYMBOL_GPL vmlinux 0x5cc4b544 serial8250_do_set_divisor -EXPORT_SYMBOL_GPL vmlinux 0x5cc679f7 kthread_data -EXPORT_SYMBOL_GPL vmlinux 0x5cc8e206 sock_map_close -EXPORT_SYMBOL_GPL vmlinux 0x5cec6a59 __cpuhp_state_remove_instance -EXPORT_SYMBOL_GPL vmlinux 0x5cede0a7 xdp_flush_frame_bulk -EXPORT_SYMBOL_GPL vmlinux 0x5d0534fe scsi_dh_activate -EXPORT_SYMBOL_GPL vmlinux 0x5d089768 devm_clk_get_prepared -EXPORT_SYMBOL_GPL vmlinux 0x5d08f3c2 pinctrl_utils_add_map_mux -EXPORT_SYMBOL_GPL vmlinux 0x5d17148b apei_write -EXPORT_SYMBOL_GPL vmlinux 0x5d17d62e regmap_raw_write_async -EXPORT_SYMBOL_GPL vmlinux 0x5d1bdaf0 skb_complete_tx_timestamp -EXPORT_SYMBOL_GPL vmlinux 0x5d2bc42a reset_control_rearm -EXPORT_SYMBOL_GPL vmlinux 0x5d37235c get_state_synchronize_srcu -EXPORT_SYMBOL_GPL vmlinux 0x5d38aa05 rio_local_get_device_id -EXPORT_SYMBOL_GPL vmlinux 0x5d445e6d usb_anchor_empty -EXPORT_SYMBOL_GPL vmlinux 0x5d51dee1 get_device_system_crosststamp -EXPORT_SYMBOL_GPL vmlinux 0x5d520abe ata_sff_wait_after_reset -EXPORT_SYMBOL_GPL vmlinux 0x5d5576a6 acpi_dev_gpio_irq_get_by -EXPORT_SYMBOL_GPL vmlinux 0x5d6af03f wp_shared_mapping_range -EXPORT_SYMBOL_GPL vmlinux 0x5d747e43 nf_queue -EXPORT_SYMBOL_GPL vmlinux 0x5d820b20 fuse_conn_destroy -EXPORT_SYMBOL_GPL vmlinux 0x5d8476d3 bpf_sk_storage_diag_alloc -EXPORT_SYMBOL_GPL vmlinux 0x5d90f61d posix_acl_create -EXPORT_SYMBOL_GPL vmlinux 0x5d95f879 cpufreq_cooling_unregister -EXPORT_SYMBOL_GPL vmlinux 0x5da67adc zs_compact -EXPORT_SYMBOL_GPL vmlinux 0x5db9df6f blk_ksm_init_passthrough -EXPORT_SYMBOL_GPL vmlinux 0x5dc7fab9 gnttab_free_pages -EXPORT_SYMBOL_GPL vmlinux 0x5de412cd k3_ringacc_ring_push -EXPORT_SYMBOL_GPL vmlinux 0x5e15a5dd trace_array_put -EXPORT_SYMBOL_GPL vmlinux 0x5e173309 cpu_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0x5e1d604a ata_acpi_cbl_80wire -EXPORT_SYMBOL_GPL vmlinux 0x5e1ed570 clk_mux_ops -EXPORT_SYMBOL_GPL vmlinux 0x5e2dc246 bio_associate_blkg -EXPORT_SYMBOL_GPL vmlinux 0x5e4f9051 inet_csk_reqsk_queue_hash_add -EXPORT_SYMBOL_GPL vmlinux 0x5e515be6 ktime_get_ts64 -EXPORT_SYMBOL_GPL vmlinux 0x5e6794ba dm_table_device_name -EXPORT_SYMBOL_GPL vmlinux 0x5e6a51d8 addrconf_prefix_rcv_add_addr -EXPORT_SYMBOL_GPL vmlinux 0x5e6b36d7 iommu_group_remove_device -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 0x5e87b52b acpi_gpiochip_request_interrupts -EXPORT_SYMBOL_GPL vmlinux 0x5e890241 devlink_port_region_create -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 0x5ebb06eb crypto_larval_kill -EXPORT_SYMBOL_GPL vmlinux 0x5ec2319a mtk_mutex_unprepare -EXPORT_SYMBOL_GPL vmlinux 0x5ecdcf90 ti_sci_get_free_resource -EXPORT_SYMBOL_GPL vmlinux 0x5ee59031 sock_diag_unregister_inet_compat -EXPORT_SYMBOL_GPL vmlinux 0x5eed41aa crypto_unregister_algs -EXPORT_SYMBOL_GPL vmlinux 0x5ef6bc39 rockchip_clk_add_lookup -EXPORT_SYMBOL_GPL vmlinux 0x5efda22d ipv4_redirect -EXPORT_SYMBOL_GPL vmlinux 0x5f08d2a1 ata_sff_dev_classify -EXPORT_SYMBOL_GPL vmlinux 0x5f0ec9d1 pinctrl_generic_get_group_count -EXPORT_SYMBOL_GPL vmlinux 0x5f185ce4 tcp_set_keepalive -EXPORT_SYMBOL_GPL vmlinux 0x5f23e3fa insert_resource -EXPORT_SYMBOL_GPL vmlinux 0x5f419fbf regmap_check_range_table -EXPORT_SYMBOL_GPL vmlinux 0x5f4fc543 iommu_group_add_device -EXPORT_SYMBOL_GPL vmlinux 0x5f52693f gpiochip_irqchip_irq_valid -EXPORT_SYMBOL_GPL vmlinux 0x5f52724e of_dma_xlate_by_chan_id -EXPORT_SYMBOL_GPL vmlinux 0x5f540c6a sock_diag_save_cookie -EXPORT_SYMBOL_GPL vmlinux 0x5f6101ad hisi_reset_init -EXPORT_SYMBOL_GPL vmlinux 0x5f61e1b7 tps65912_device_init -EXPORT_SYMBOL_GPL vmlinux 0x5f62db0a fb_deferred_io_cleanup -EXPORT_SYMBOL_GPL vmlinux 0x5f6ced47 kernel_kobj -EXPORT_SYMBOL_GPL vmlinux 0x5f6f1e9e dax_get_private -EXPORT_SYMBOL_GPL vmlinux 0x5f922426 phy_set_mode_ext -EXPORT_SYMBOL_GPL vmlinux 0x5f9aec28 srcu_notifier_chain_register -EXPORT_SYMBOL_GPL vmlinux 0x5fa625ed mpi_ec_mul_point -EXPORT_SYMBOL_GPL vmlinux 0x5fa876f0 task_user_regset_view -EXPORT_SYMBOL_GPL vmlinux 0x5fc3a497 dst_blackhole_redirect -EXPORT_SYMBOL_GPL vmlinux 0x5fcd3464 __pci_hp_initialize -EXPORT_SYMBOL_GPL vmlinux 0x5fd33bd4 to_nvdimm -EXPORT_SYMBOL_GPL vmlinux 0x5fdf2f0d of_resolve_phandles -EXPORT_SYMBOL_GPL vmlinux 0x5fdfcd57 __tracepoint_pelt_thermal_tp -EXPORT_SYMBOL_GPL vmlinux 0x5fe87fce irq_chip_release_resources_parent -EXPORT_SYMBOL_GPL vmlinux 0x5ff41a7f device_set_of_node_from_dev -EXPORT_SYMBOL_GPL vmlinux 0x60091316 clk_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0x600f24e9 stmpe_set_altfunc -EXPORT_SYMBOL_GPL vmlinux 0x601b86dc pcie_port_bus_type -EXPORT_SYMBOL_GPL vmlinux 0x6020ccf9 gpiod_get_raw_value -EXPORT_SYMBOL_GPL vmlinux 0x60336c2b platform_device_del -EXPORT_SYMBOL_GPL vmlinux 0x603d0d51 acpi_os_map_iomem -EXPORT_SYMBOL_GPL vmlinux 0x60422233 __traceiter_rpm_idle -EXPORT_SYMBOL_GPL vmlinux 0x60442822 phys_to_mach -EXPORT_SYMBOL_GPL vmlinux 0x604722fd devices_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x605c9f62 device_property_read_u64_array -EXPORT_SYMBOL_GPL vmlinux 0x605d5bfa cache_line_size -EXPORT_SYMBOL_GPL vmlinux 0x607c4683 devlink_info_version_fixed_put -EXPORT_SYMBOL_GPL vmlinux 0x6091797f synchronize_rcu -EXPORT_SYMBOL_GPL vmlinux 0x60a13e90 rcu_barrier -EXPORT_SYMBOL_GPL vmlinux 0x60a32ea9 pm_power_off -EXPORT_SYMBOL_GPL vmlinux 0x60ae211b da9052_regmap_config -EXPORT_SYMBOL_GPL vmlinux 0x60c8125e ata_scsi_slave_destroy -EXPORT_SYMBOL_GPL vmlinux 0x60ebc96f ring_buffer_read_prepare -EXPORT_SYMBOL_GPL vmlinux 0x60f11639 pci_hp_deregister -EXPORT_SYMBOL_GPL vmlinux 0x60f99e1b cppc_set_perf -EXPORT_SYMBOL_GPL vmlinux 0x61067786 gpiochip_line_is_irq -EXPORT_SYMBOL_GPL vmlinux 0x6106f51d crypto_hash_alg_has_setkey -EXPORT_SYMBOL_GPL vmlinux 0x611ca6d0 mmu_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0x611e263a serial8250_rpm_put -EXPORT_SYMBOL_GPL vmlinux 0x6129fb93 sfp_remove_phy -EXPORT_SYMBOL_GPL vmlinux 0x612b5776 virtqueue_notify -EXPORT_SYMBOL_GPL vmlinux 0x612bfd89 errno_to_blk_status -EXPORT_SYMBOL_GPL vmlinux 0x6146c50e netif_carrier_event -EXPORT_SYMBOL_GPL vmlinux 0x614adcb7 of_overlay_remove_all -EXPORT_SYMBOL_GPL vmlinux 0x614b7b41 gnttab_page_cache_get -EXPORT_SYMBOL_GPL vmlinux 0x6156fbde led_set_brightness -EXPORT_SYMBOL_GPL vmlinux 0x615d3447 kernel_read_file_from_path -EXPORT_SYMBOL_GPL vmlinux 0x61783630 pci_epc_destroy -EXPORT_SYMBOL_GPL vmlinux 0x617b026c hwrng_register -EXPORT_SYMBOL_GPL vmlinux 0x6181e79f timerqueue_add -EXPORT_SYMBOL_GPL vmlinux 0x6188ba88 usb_get_urb -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 0x61b3d94f devlink_rate_nodes_destroy -EXPORT_SYMBOL_GPL vmlinux 0x61c032a6 iomap_file_buffered_write -EXPORT_SYMBOL_GPL vmlinux 0x61c1ca29 __SCK__tp_func_add_device_to_group -EXPORT_SYMBOL_GPL vmlinux 0x61c3050d ata_timing_compute -EXPORT_SYMBOL_GPL vmlinux 0x61c7c895 serial8250_clear_and_reinit_fifos -EXPORT_SYMBOL_GPL vmlinux 0x61c8688b k3_udma_glue_rx_flow_init -EXPORT_SYMBOL_GPL vmlinux 0x61ceb539 rtnl_af_register -EXPORT_SYMBOL_GPL vmlinux 0x61d855f6 rhashtable_walk_enter -EXPORT_SYMBOL_GPL vmlinux 0x61de6e69 fuse_dev_release -EXPORT_SYMBOL_GPL vmlinux 0x61e67bf6 __xas_next -EXPORT_SYMBOL_GPL vmlinux 0x61f67c92 phy_gbit_features_array -EXPORT_SYMBOL_GPL vmlinux 0x61fdc1df usb_of_get_interface_node -EXPORT_SYMBOL_GPL vmlinux 0x62009fbf crypto_alg_mod_lookup -EXPORT_SYMBOL_GPL vmlinux 0x6207a552 usb_hcd_check_unlink_urb -EXPORT_SYMBOL_GPL vmlinux 0x620ef754 ahci_platform_suspend -EXPORT_SYMBOL_GPL vmlinux 0x621831ec fscrypt_symlink_getattr -EXPORT_SYMBOL_GPL vmlinux 0x622c7922 register_oom_notifier -EXPORT_SYMBOL_GPL vmlinux 0x62377a7b blk_io_schedule -EXPORT_SYMBOL_GPL vmlinux 0x623c7e14 blk_mq_update_nr_hw_queues -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 0x62636c92 genpd_dev_pm_attach -EXPORT_SYMBOL_GPL vmlinux 0x627aaa60 ncsi_stop_dev -EXPORT_SYMBOL_GPL vmlinux 0x628d92d8 ping_init_sock -EXPORT_SYMBOL_GPL vmlinux 0x62a7a4f7 sch_frag_xmit_hook -EXPORT_SYMBOL_GPL vmlinux 0x62b483a4 bpf_map_inc_not_zero -EXPORT_SYMBOL_GPL vmlinux 0x62bb09bf clocks_calc_mult_shift -EXPORT_SYMBOL_GPL vmlinux 0x62c0a962 clk_hw_register -EXPORT_SYMBOL_GPL vmlinux 0x62cf2584 regulator_is_enabled_regmap -EXPORT_SYMBOL_GPL vmlinux 0x62d1bda4 anon_inode_getfile -EXPORT_SYMBOL_GPL vmlinux 0x62f7060d of_irq_parse_one -EXPORT_SYMBOL_GPL vmlinux 0x630a0e18 udp4_lib_lookup -EXPORT_SYMBOL_GPL vmlinux 0x63150e06 clk_get_parent -EXPORT_SYMBOL_GPL vmlinux 0x6318757f mdio_mux_uninit -EXPORT_SYMBOL_GPL vmlinux 0x63197685 s2idle_wake -EXPORT_SYMBOL_GPL vmlinux 0x6333f4d5 scsi_check_sense -EXPORT_SYMBOL_GPL vmlinux 0x633784dc ata_host_suspend -EXPORT_SYMBOL_GPL vmlinux 0x633a5b82 led_trigger_set -EXPORT_SYMBOL_GPL vmlinux 0x634b9d42 __SCK__tp_func_block_unplug -EXPORT_SYMBOL_GPL vmlinux 0x636f2d1b of_genpd_add_provider_simple -EXPORT_SYMBOL_GPL vmlinux 0x637087a6 devm_rtc_allocate_device -EXPORT_SYMBOL_GPL vmlinux 0x637fb22f nvdimm_to_bus -EXPORT_SYMBOL_GPL vmlinux 0x6392c456 device_show_int -EXPORT_SYMBOL_GPL vmlinux 0x63960315 pcie_bus_configure_settings -EXPORT_SYMBOL_GPL vmlinux 0x6398ceda rt_mutex_unlock -EXPORT_SYMBOL_GPL vmlinux 0x639fade5 synchronize_srcu_expedited -EXPORT_SYMBOL_GPL vmlinux 0x63ab92c7 fuse_conn_get -EXPORT_SYMBOL_GPL vmlinux 0x63b2ddd8 bpf_prog_inc -EXPORT_SYMBOL_GPL vmlinux 0x63b34ea9 cleanup_srcu_struct -EXPORT_SYMBOL_GPL vmlinux 0x63bac5c3 handle_fasteoi_nmi -EXPORT_SYMBOL_GPL vmlinux 0x63c08029 clk_bulk_unprepare -EXPORT_SYMBOL_GPL vmlinux 0x63cd94bd pinmux_generic_get_function -EXPORT_SYMBOL_GPL vmlinux 0x63d9eb22 inet_csk_route_req -EXPORT_SYMBOL_GPL vmlinux 0x63ea1ab7 rtc_read_time -EXPORT_SYMBOL_GPL vmlinux 0x63ea80b3 cper_mem_err_type_str -EXPORT_SYMBOL_GPL vmlinux 0x63eaa43d ethnl_cable_test_result -EXPORT_SYMBOL_GPL vmlinux 0x6403d43b watchdog_notify_pretimeout -EXPORT_SYMBOL_GPL vmlinux 0x641ee756 devlink_region_snapshot_id_get -EXPORT_SYMBOL_GPL vmlinux 0x6423a742 rockchip_clk_register_armclk -EXPORT_SYMBOL_GPL vmlinux 0x6427572b tegra210_clk_emc_dll_enable -EXPORT_SYMBOL_GPL vmlinux 0x6434a864 gpiochip_request_own_desc -EXPORT_SYMBOL_GPL vmlinux 0x6436580f wbc_detach_inode -EXPORT_SYMBOL_GPL vmlinux 0x643b06b0 zynqmp_pm_clock_setrate -EXPORT_SYMBOL_GPL vmlinux 0x64609d25 __tracepoint_devlink_trap_report -EXPORT_SYMBOL_GPL vmlinux 0x6465f211 serial8250_read_char -EXPORT_SYMBOL_GPL vmlinux 0x6466150d iommu_report_device_fault -EXPORT_SYMBOL_GPL vmlinux 0x64704970 of_mm_gpiochip_add_data -EXPORT_SYMBOL_GPL vmlinux 0x647537f3 pl320_ipc_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x648168c7 housekeeping_affine -EXPORT_SYMBOL_GPL vmlinux 0x6482cc74 pci_probe_reset_slot -EXPORT_SYMBOL_GPL vmlinux 0x648761ed switchdev_port_attr_set -EXPORT_SYMBOL_GPL vmlinux 0x64877da9 nd_blk_region_provider_data -EXPORT_SYMBOL_GPL vmlinux 0x648ba801 ping_hash -EXPORT_SYMBOL_GPL vmlinux 0x64925270 __dax_synchronous -EXPORT_SYMBOL_GPL vmlinux 0x64a1bf7d blkdev_zone_mgmt -EXPORT_SYMBOL_GPL vmlinux 0x64a1d907 irq_find_matching_fwspec -EXPORT_SYMBOL_GPL vmlinux 0x64a5ab07 dev_pm_genpd_set_performance_state -EXPORT_SYMBOL_GPL vmlinux 0x64a69767 i2c_new_scanned_device -EXPORT_SYMBOL_GPL vmlinux 0x64a9b4c2 key_type_user -EXPORT_SYMBOL_GPL vmlinux 0x64d75ec7 regmap_multi_reg_write -EXPORT_SYMBOL_GPL vmlinux 0x64e27c4f synth_event_delete -EXPORT_SYMBOL_GPL vmlinux 0x64e3299f __iomap_dio_rw -EXPORT_SYMBOL_GPL vmlinux 0x64eeafe3 meson_pmx_get_func_name -EXPORT_SYMBOL_GPL vmlinux 0x64f037f9 tcp_sendpage_locked -EXPORT_SYMBOL_GPL vmlinux 0x64f36620 dax_flush -EXPORT_SYMBOL_GPL vmlinux 0x64f74abf __tracepoint_pelt_cfs_tp -EXPORT_SYMBOL_GPL vmlinux 0x64f93c22 pci_host_common_remove -EXPORT_SYMBOL_GPL vmlinux 0x6502d9c2 xenbus_scanf -EXPORT_SYMBOL_GPL vmlinux 0x650a1ca8 bsg_job_get -EXPORT_SYMBOL_GPL vmlinux 0x6513d813 alloc_iova_fast -EXPORT_SYMBOL_GPL vmlinux 0x6517c1e7 pci_disable_rom -EXPORT_SYMBOL_GPL vmlinux 0x651886a9 gpiod_is_active_low -EXPORT_SYMBOL_GPL vmlinux 0x652106b7 of_clk_get_parent_count -EXPORT_SYMBOL_GPL vmlinux 0x6531a37f mpi_add -EXPORT_SYMBOL_GPL vmlinux 0x653c7ef4 serial8250_release_dma -EXPORT_SYMBOL_GPL vmlinux 0x6543beeb crypto_unregister_scomp -EXPORT_SYMBOL_GPL vmlinux 0x6545268e __tracepoint_neigh_cleanup_and_release -EXPORT_SYMBOL_GPL vmlinux 0x654d0381 devm_regmap_field_bulk_alloc -EXPORT_SYMBOL_GPL vmlinux 0x654f7a58 __irq_domain_alloc_fwnode -EXPORT_SYMBOL_GPL vmlinux 0x655e4879 __irq_alloc_descs -EXPORT_SYMBOL_GPL vmlinux 0x6561cfb8 inet_getpeer -EXPORT_SYMBOL_GPL vmlinux 0x656c35e8 spi_setup -EXPORT_SYMBOL_GPL vmlinux 0x656da958 tcp_register_congestion_control -EXPORT_SYMBOL_GPL vmlinux 0x657a4b3b sysfs_create_link_nowarn -EXPORT_SYMBOL_GPL vmlinux 0x6586e70f serdev_device_open -EXPORT_SYMBOL_GPL vmlinux 0x659f791f of_prop_next_string -EXPORT_SYMBOL_GPL vmlinux 0x65a3123c acpi_initialize_hp_context -EXPORT_SYMBOL_GPL vmlinux 0x65ac8411 powercap_unregister_zone -EXPORT_SYMBOL_GPL vmlinux 0x65ccb6f0 call_netevent_notifiers -EXPORT_SYMBOL_GPL vmlinux 0x65d0e10a dm_hold -EXPORT_SYMBOL_GPL vmlinux 0x65dbde7f of_reserved_mem_device_init_by_name -EXPORT_SYMBOL_GPL vmlinux 0x65dc5d70 crypto_stats_compress -EXPORT_SYMBOL_GPL vmlinux 0x65e01af9 __sync_icache_dcache -EXPORT_SYMBOL_GPL vmlinux 0x65fc9c82 devm_gpio_free -EXPORT_SYMBOL_GPL vmlinux 0x66048a49 anon_inode_getfd_secure -EXPORT_SYMBOL_GPL vmlinux 0x660919b3 crypto_alloc_rng -EXPORT_SYMBOL_GPL vmlinux 0x661601de sprint_symbol -EXPORT_SYMBOL_GPL vmlinux 0x662227e8 soc_device_register -EXPORT_SYMBOL_GPL vmlinux 0x66253469 pci_rescan_bus -EXPORT_SYMBOL_GPL vmlinux 0x6625dfc5 kthread_func -EXPORT_SYMBOL_GPL vmlinux 0x6636c3c9 irq_set_vcpu_affinity -EXPORT_SYMBOL_GPL vmlinux 0x6637e952 phy_save_page -EXPORT_SYMBOL_GPL vmlinux 0x663bb448 devlink_fmsg_obj_nest_end -EXPORT_SYMBOL_GPL vmlinux 0x66491350 pm_relax -EXPORT_SYMBOL_GPL vmlinux 0x664eb54a k3_ringacc_ring_reset_dma -EXPORT_SYMBOL_GPL vmlinux 0x6650b9a3 bpf_prog_alloc -EXPORT_SYMBOL_GPL vmlinux 0x665e92a0 clk_set_duty_cycle -EXPORT_SYMBOL_GPL vmlinux 0x66609d14 simple_attr_read -EXPORT_SYMBOL_GPL vmlinux 0x66610caf regulator_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x668402aa crypto_put_default_rng -EXPORT_SYMBOL_GPL vmlinux 0x668ffb3a strp_done -EXPORT_SYMBOL_GPL vmlinux 0x66923e6b mptcp_pm_get_subflows_max -EXPORT_SYMBOL_GPL vmlinux 0x66a6898e k3_udma_glue_tx_get_dma_device -EXPORT_SYMBOL_GPL vmlinux 0x66a700e5 gnttab_page_cache_put -EXPORT_SYMBOL_GPL vmlinux 0x66a70d37 pci_stop_and_remove_bus_device_locked -EXPORT_SYMBOL_GPL vmlinux 0x66af8a08 sk_psock_init -EXPORT_SYMBOL_GPL vmlinux 0x66b11723 skb_to_sgvec_nomark -EXPORT_SYMBOL_GPL vmlinux 0x66b54608 __fscrypt_prepare_lookup -EXPORT_SYMBOL_GPL vmlinux 0x66b7a7d3 scsi_schedule_eh -EXPORT_SYMBOL_GPL vmlinux 0x66b97421 sfp_link_up -EXPORT_SYMBOL_GPL vmlinux 0x66d68149 irq_domain_free_fwnode -EXPORT_SYMBOL_GPL vmlinux 0x66d87d38 symbol_put_addr -EXPORT_SYMBOL_GPL vmlinux 0x66e55a55 ata_host_start -EXPORT_SYMBOL_GPL vmlinux 0x66e8f743 __serdev_device_driver_register -EXPORT_SYMBOL_GPL vmlinux 0x66fcb157 devm_regulator_get_optional -EXPORT_SYMBOL_GPL vmlinux 0x670c8517 usb_autopm_put_interface -EXPORT_SYMBOL_GPL vmlinux 0x670fd1e6 __devm_of_phy_provider_register -EXPORT_SYMBOL_GPL vmlinux 0x671111d5 param_set_bool_enable_only -EXPORT_SYMBOL_GPL vmlinux 0x671217b6 badrange_forget -EXPORT_SYMBOL_GPL vmlinux 0x672d28bc device_unregister -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 0x674ce3af tps6586x_reads -EXPORT_SYMBOL_GPL vmlinux 0x675672ab usb_unlink_anchored_urbs -EXPORT_SYMBOL_GPL vmlinux 0x675688e6 bgpio_init -EXPORT_SYMBOL_GPL vmlinux 0x676c688f k3_ringacc_ring_free -EXPORT_SYMBOL_GPL vmlinux 0x6792fb4f rockchip_pcie_parse_dt -EXPORT_SYMBOL_GPL vmlinux 0x67955ce6 profile_hits -EXPORT_SYMBOL_GPL vmlinux 0x679d98f2 tty_set_termios -EXPORT_SYMBOL_GPL vmlinux 0x67ac5bf0 iomap_migrate_page -EXPORT_SYMBOL_GPL vmlinux 0x67b30cd0 fsl_mc_allocate_irqs -EXPORT_SYMBOL_GPL vmlinux 0x67b8c2dd ethnl_cable_test_fault_length -EXPORT_SYMBOL_GPL vmlinux 0x67b9ed7e virtio_max_dma_size -EXPORT_SYMBOL_GPL vmlinux 0x67c1c3d8 devfreq_event_reset_event -EXPORT_SYMBOL_GPL vmlinux 0x67c31fef dev_pm_opp_xlate_required_opp -EXPORT_SYMBOL_GPL vmlinux 0x67c8fe58 dev_xdp_prog_count -EXPORT_SYMBOL_GPL vmlinux 0x67d25847 klist_next -EXPORT_SYMBOL_GPL vmlinux 0x67da9f7c sha512_zero_message_hash -EXPORT_SYMBOL_GPL vmlinux 0x67e08782 led_trigger_register_simple -EXPORT_SYMBOL_GPL vmlinux 0x68180bfb gpiochip_generic_free -EXPORT_SYMBOL_GPL vmlinux 0x681a99c9 pci_epc_start -EXPORT_SYMBOL_GPL vmlinux 0x681a9f33 __clk_determine_rate -EXPORT_SYMBOL_GPL vmlinux 0x68201fab firmware_request_nowarn -EXPORT_SYMBOL_GPL vmlinux 0x682df53d wbc_account_cgroup_owner -EXPORT_SYMBOL_GPL vmlinux 0x682ff057 ring_buffer_commit_overrun_cpu -EXPORT_SYMBOL_GPL vmlinux 0x6840cbc4 synchronize_srcu -EXPORT_SYMBOL_GPL vmlinux 0x684b1e30 mmc_cmdq_disable -EXPORT_SYMBOL_GPL vmlinux 0x684ca117 zynqmp_pm_get_pll_frac_mode -EXPORT_SYMBOL_GPL vmlinux 0x685daf33 pm_runtime_set_memalloc_noio -EXPORT_SYMBOL_GPL vmlinux 0x685f1777 set_secondary_fwnode -EXPORT_SYMBOL_GPL vmlinux 0x686cc0a5 clk_hw_get_parent -EXPORT_SYMBOL_GPL vmlinux 0x68707b64 invalidate_inode_pages2_range -EXPORT_SYMBOL_GPL vmlinux 0x687c5c89 xenbus_dev_changed -EXPORT_SYMBOL_GPL vmlinux 0x68804f09 devm_regulator_bulk_get -EXPORT_SYMBOL_GPL vmlinux 0x688b3e80 device_property_read_string -EXPORT_SYMBOL_GPL vmlinux 0x688f6726 devlink_dpipe_match_put -EXPORT_SYMBOL_GPL vmlinux 0x68952493 rcu_note_context_switch -EXPORT_SYMBOL_GPL vmlinux 0x689ae345 pci_user_write_config_word -EXPORT_SYMBOL_GPL vmlinux 0x68ac6e7e of_get_named_gpio_flags -EXPORT_SYMBOL_GPL vmlinux 0x68d474fd percpu_free_rwsem -EXPORT_SYMBOL_GPL vmlinux 0x68d63c1f acpi_pci_find_root -EXPORT_SYMBOL_GPL vmlinux 0x68d775ec dma_get_merge_boundary -EXPORT_SYMBOL_GPL vmlinux 0x68eb1ccd devm_clk_get_optional_enabled -EXPORT_SYMBOL_GPL vmlinux 0x68eb29a9 sdio_register_driver -EXPORT_SYMBOL_GPL vmlinux 0x68f3cadd freq_qos_remove_request -EXPORT_SYMBOL_GPL vmlinux 0x68f5f232 xas_create_range -EXPORT_SYMBOL_GPL vmlinux 0x6901065e blk_mq_start_stopped_hw_queue -EXPORT_SYMBOL_GPL vmlinux 0x690f585e phy_basic_ports_array -EXPORT_SYMBOL_GPL vmlinux 0x6914ba45 phy_pm_runtime_put_sync -EXPORT_SYMBOL_GPL vmlinux 0x69196604 devm_device_remove_group -EXPORT_SYMBOL_GPL vmlinux 0x692657ed ksm_madvise -EXPORT_SYMBOL_GPL vmlinux 0x69266ac2 devfreq_get_devfreq_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0x694da035 pci_epf_create -EXPORT_SYMBOL_GPL vmlinux 0x696274fa of_phy_provider_unregister -EXPORT_SYMBOL_GPL vmlinux 0x69637b2c __traceiter_powernv_throttle -EXPORT_SYMBOL_GPL vmlinux 0x6964fe64 ata_scsi_queuecmd -EXPORT_SYMBOL_GPL vmlinux 0x696ef279 ata_scsi_ioctl -EXPORT_SYMBOL_GPL vmlinux 0x696f2b63 of_changeset_init -EXPORT_SYMBOL_GPL vmlinux 0x69726161 of_phy_put -EXPORT_SYMBOL_GPL vmlinux 0x697c5d0d tracing_snapshot_alloc -EXPORT_SYMBOL_GPL vmlinux 0x69836047 iomap_zero_range -EXPORT_SYMBOL_GPL vmlinux 0x6983ca09 css_next_descendant_pre -EXPORT_SYMBOL_GPL vmlinux 0x6988d3c5 do_tcp_sendpages -EXPORT_SYMBOL_GPL vmlinux 0x699c68a7 regulator_allow_bypass -EXPORT_SYMBOL_GPL vmlinux 0x69ada5bd is_swiotlb_active -EXPORT_SYMBOL_GPL vmlinux 0x69afc501 register_user_hw_breakpoint -EXPORT_SYMBOL_GPL vmlinux 0x69bac9a1 devlink_resource_occ_get_unregister -EXPORT_SYMBOL_GPL vmlinux 0x69c05235 edac_pci_create_generic_ctl -EXPORT_SYMBOL_GPL vmlinux 0x69c20b2c class_dev_iter_next -EXPORT_SYMBOL_GPL vmlinux 0x69ccc594 nd_blk_memremap_flags -EXPORT_SYMBOL_GPL vmlinux 0x69cf0632 mpi_fromstr -EXPORT_SYMBOL_GPL vmlinux 0x69e683de uuid_gen -EXPORT_SYMBOL_GPL vmlinux 0x69e6dc06 device_add_groups -EXPORT_SYMBOL_GPL vmlinux 0x69ee2220 linear_range_get_selector_high -EXPORT_SYMBOL_GPL vmlinux 0x69f78d17 ahci_platform_enable_resources -EXPORT_SYMBOL_GPL vmlinux 0x6a011ed7 inet_unhash -EXPORT_SYMBOL_GPL vmlinux 0x6a05b65b fb_videomode_from_videomode -EXPORT_SYMBOL_GPL vmlinux 0x6a13fd8d regulator_set_voltage_sel_pickable_regmap -EXPORT_SYMBOL_GPL vmlinux 0x6a1733eb iommu_group_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x6a3198c0 subsys_virtual_register -EXPORT_SYMBOL_GPL vmlinux 0x6a336e5f acpi_subsys_runtime_resume -EXPORT_SYMBOL_GPL vmlinux 0x6a412155 fsl_mc_bus_dprc_type -EXPORT_SYMBOL_GPL vmlinux 0x6a421062 memory_failure_queue -EXPORT_SYMBOL_GPL vmlinux 0x6a42d91a ti_sci_inta_msi_domain_alloc_irqs -EXPORT_SYMBOL_GPL vmlinux 0x6a460dc5 schedule_hrtimeout -EXPORT_SYMBOL_GPL vmlinux 0x6a4f623b mmu_notifier_synchronize -EXPORT_SYMBOL_GPL vmlinux 0x6a55bafd clk_register_fixed_factor -EXPORT_SYMBOL_GPL vmlinux 0x6a584d8a blk_queue_max_zone_append_sectors -EXPORT_SYMBOL_GPL vmlinux 0x6a7659f7 wakeup_source_create -EXPORT_SYMBOL_GPL vmlinux 0x6a83234d free_fib_info -EXPORT_SYMBOL_GPL vmlinux 0x6a8441be cpci_hp_start -EXPORT_SYMBOL_GPL vmlinux 0x6a93c9b2 zynqmp_pm_pinctrl_get_function -EXPORT_SYMBOL_GPL vmlinux 0x6a972a82 kthread_unuse_mm -EXPORT_SYMBOL_GPL vmlinux 0x6aa16a0b inet6_lookup -EXPORT_SYMBOL_GPL vmlinux 0x6aa2a877 xenbus_printf -EXPORT_SYMBOL_GPL vmlinux 0x6aad9152 xen_set_callback_via -EXPORT_SYMBOL_GPL vmlinux 0x6abe2285 iommu_aux_attach_device -EXPORT_SYMBOL_GPL vmlinux 0x6ac01b65 power_supply_put_battery_info -EXPORT_SYMBOL_GPL vmlinux 0x6acebdb0 pci_stop_root_bus -EXPORT_SYMBOL_GPL vmlinux 0x6ad82bfc __traceiter_br_fdb_add -EXPORT_SYMBOL_GPL vmlinux 0x6aeb1aec clk_hw_is_enabled -EXPORT_SYMBOL_GPL vmlinux 0x6aeb7fbe of_platform_device_destroy -EXPORT_SYMBOL_GPL vmlinux 0x6aefd242 software_node_fwnode -EXPORT_SYMBOL_GPL vmlinux 0x6af68c80 irq_work_sync -EXPORT_SYMBOL_GPL vmlinux 0x6afa37fc security_path_chown -EXPORT_SYMBOL_GPL vmlinux 0x6afdade1 acpi_cppc_processor_probe -EXPORT_SYMBOL_GPL vmlinux 0x6aff0661 extcon_register_notifier_all -EXPORT_SYMBOL_GPL vmlinux 0x6b0a5aab __auxiliary_device_add -EXPORT_SYMBOL_GPL vmlinux 0x6b0cae3d skb_defer_rx_timestamp -EXPORT_SYMBOL_GPL vmlinux 0x6b0dc565 xen_set_irq_priority -EXPORT_SYMBOL_GPL vmlinux 0x6b17d57b ohci_suspend -EXPORT_SYMBOL_GPL vmlinux 0x6b198c77 led_colors -EXPORT_SYMBOL_GPL vmlinux 0x6b2b69f7 static_key_enable -EXPORT_SYMBOL_GPL vmlinux 0x6b396ee9 of_get_display_timing -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 0x6b4ceaa1 user_update -EXPORT_SYMBOL_GPL vmlinux 0x6b4e5c2e rtnl_delete_link -EXPORT_SYMBOL_GPL vmlinux 0x6b575247 ata_pci_device_do_suspend -EXPORT_SYMBOL_GPL vmlinux 0x6b7a4335 hyperv_cleanup -EXPORT_SYMBOL_GPL vmlinux 0x6b7d11eb devm_pci_epc_destroy -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 0x6bb6174f xhci_drop_endpoint -EXPORT_SYMBOL_GPL vmlinux 0x6bba114d fat_fill_super -EXPORT_SYMBOL_GPL vmlinux 0x6bcdedc0 mpi_point_init -EXPORT_SYMBOL_GPL vmlinux 0x6bd1aa56 stack_trace_save -EXPORT_SYMBOL_GPL vmlinux 0x6bde1469 nvdimm_setup_pfn -EXPORT_SYMBOL_GPL vmlinux 0x6bdef35c acpi_ec_mark_gpe_for_wake -EXPORT_SYMBOL_GPL vmlinux 0x6be3a96b hv_remove_vmbus_handler -EXPORT_SYMBOL_GPL vmlinux 0x6bf97140 tegra_xusb_padctl_legacy_remove -EXPORT_SYMBOL_GPL vmlinux 0x6bff8a5a rio_set_port_lockout -EXPORT_SYMBOL_GPL vmlinux 0x6c184c57 usb_choose_configuration -EXPORT_SYMBOL_GPL vmlinux 0x6c205008 mpi_print -EXPORT_SYMBOL_GPL vmlinux 0x6c2b1e3a imx_pinconf_get_scu -EXPORT_SYMBOL_GPL vmlinux 0x6c37962b bpf_trace_run10 -EXPORT_SYMBOL_GPL vmlinux 0x6c389761 acpi_bus_get_private_data -EXPORT_SYMBOL_GPL vmlinux 0x6c3f70e0 guid_gen -EXPORT_SYMBOL_GPL vmlinux 0x6c43df47 usb_alloc_urb -EXPORT_SYMBOL_GPL vmlinux 0x6c4b6684 reset_control_assert -EXPORT_SYMBOL_GPL vmlinux 0x6c52006e devm_of_phy_get_by_index -EXPORT_SYMBOL_GPL vmlinux 0x6c54d787 iommu_attach_group -EXPORT_SYMBOL_GPL vmlinux 0x6c5ad0cd kmsg_dump_register -EXPORT_SYMBOL_GPL vmlinux 0x6c655913 register_acpi_hed_notifier -EXPORT_SYMBOL_GPL vmlinux 0x6c7bfa03 gpiochip_irq_domain_deactivate -EXPORT_SYMBOL_GPL vmlinux 0x6c7dab94 inet6_csk_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0x6c814c1d gpiod_count -EXPORT_SYMBOL_GPL vmlinux 0x6c956075 __SCK__tp_func_devlink_hwerr -EXPORT_SYMBOL_GPL vmlinux 0x6c9c74cd hrtimer_start_range_ns -EXPORT_SYMBOL_GPL vmlinux 0x6ca4bf88 async_synchronize_full_domain -EXPORT_SYMBOL_GPL vmlinux 0x6cb0ce87 irq_get_percpu_devid_partition -EXPORT_SYMBOL_GPL vmlinux 0x6cb2bab7 of_i2c_setup_smbus_alert -EXPORT_SYMBOL_GPL vmlinux 0x6ce10eb0 trace_clock_jiffies -EXPORT_SYMBOL_GPL vmlinux 0x6ce11416 regmap_raw_read -EXPORT_SYMBOL_GPL vmlinux 0x6ce4e8ff acpi_set_modalias -EXPORT_SYMBOL_GPL vmlinux 0x6cf12b8d alarmtimer_get_rtcdev -EXPORT_SYMBOL_GPL vmlinux 0x6cff77cd devm_gpiod_get_optional -EXPORT_SYMBOL_GPL vmlinux 0x6d08b855 blk_queue_flag_test_and_set -EXPORT_SYMBOL_GPL vmlinux 0x6d09843f copy_bpf_fprog_from_user -EXPORT_SYMBOL_GPL vmlinux 0x6d099aa4 pin_user_pages_fast -EXPORT_SYMBOL_GPL vmlinux 0x6d0ae550 pinctrl_gpio_request -EXPORT_SYMBOL_GPL vmlinux 0x6d0fac60 blk_ksm_update_capabilities -EXPORT_SYMBOL_GPL vmlinux 0x6d1c9d64 handle_untracked_irq -EXPORT_SYMBOL_GPL vmlinux 0x6d24ed6a devm_regulator_get_exclusive -EXPORT_SYMBOL_GPL vmlinux 0x6d2c609d of_phandle_iterator_next -EXPORT_SYMBOL_GPL vmlinux 0x6d2fc5a6 net_namespace_list -EXPORT_SYMBOL_GPL vmlinux 0x6d3e30e6 tty_set_ldisc -EXPORT_SYMBOL_GPL vmlinux 0x6d405e12 fuse_send_init -EXPORT_SYMBOL_GPL vmlinux 0x6d427af7 device_attach -EXPORT_SYMBOL_GPL vmlinux 0x6d467b08 arm_smccc_1_1_get_conduit -EXPORT_SYMBOL_GPL vmlinux 0x6d4d0198 irq_domain_xlate_twocell -EXPORT_SYMBOL_GPL vmlinux 0x6d5581b8 dax_copy_to_iter -EXPORT_SYMBOL_GPL vmlinux 0x6d6f748b acpi_dev_clear_dependencies -EXPORT_SYMBOL_GPL vmlinux 0x6d6fdba4 tegra210_clk_emc_attach -EXPORT_SYMBOL_GPL vmlinux 0x6d6fec1f ktime_mono_to_any -EXPORT_SYMBOL_GPL vmlinux 0x6d7aaf43 sk_clear_memalloc -EXPORT_SYMBOL_GPL vmlinux 0x6d7e951e rcu_exp_batches_completed -EXPORT_SYMBOL_GPL vmlinux 0x6d878f0b ahci_platform_disable_regulators -EXPORT_SYMBOL_GPL vmlinux 0x6d87c463 dev_pm_domain_detach -EXPORT_SYMBOL_GPL vmlinux 0x6d91ac22 devm_platform_ioremap_resource_byname -EXPORT_SYMBOL_GPL vmlinux 0x6d9647a9 skcipher_walk_aead_encrypt -EXPORT_SYMBOL_GPL vmlinux 0x6d9fbcae da9052_adc_read_temp -EXPORT_SYMBOL_GPL vmlinux 0x6dac017d xenbus_unregister_driver -EXPORT_SYMBOL_GPL vmlinux 0x6dac0616 __vfs_removexattr_noperm -EXPORT_SYMBOL_GPL vmlinux 0x6dac8123 blocking_notifier_call_chain_robust -EXPORT_SYMBOL_GPL vmlinux 0x6db346c6 fat_setattr -EXPORT_SYMBOL_GPL vmlinux 0x6dba8d6f espintcp_queue_out -EXPORT_SYMBOL_GPL vmlinux 0x6dbaafd3 put_old_timespec32 -EXPORT_SYMBOL_GPL vmlinux 0x6dc19012 driver_remove_file -EXPORT_SYMBOL_GPL vmlinux 0x6dc99092 spi_split_transfers_maxsize -EXPORT_SYMBOL_GPL vmlinux 0x6dd5680d sprint_symbol_build_id -EXPORT_SYMBOL_GPL vmlinux 0x6de732a6 tracepoint_srcu -EXPORT_SYMBOL_GPL vmlinux 0x6def119e usb_get_maximum_ssp_rate -EXPORT_SYMBOL_GPL vmlinux 0x6df04727 dax_writeback_mapping_range -EXPORT_SYMBOL_GPL vmlinux 0x6e027d85 hwspin_lock_request -EXPORT_SYMBOL_GPL vmlinux 0x6e03ccc0 regmap_get_reg_stride -EXPORT_SYMBOL_GPL vmlinux 0x6e09d93d __SCK__tp_func_map -EXPORT_SYMBOL_GPL vmlinux 0x6e15cb36 of_platform_default_populate -EXPORT_SYMBOL_GPL vmlinux 0x6e1f62ba clk_hw_set_rate_range -EXPORT_SYMBOL_GPL vmlinux 0x6e3ff83a edac_device_alloc_index -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 0x6e7943ec iommu_group_id -EXPORT_SYMBOL_GPL vmlinux 0x6e89a560 regmap_irq_chip_get_base -EXPORT_SYMBOL_GPL vmlinux 0x6e928b43 md_bitmap_copy_from_slot -EXPORT_SYMBOL_GPL vmlinux 0x6eaf8cbd pinctrl_parse_index_with_args -EXPORT_SYMBOL_GPL vmlinux 0x6eb76973 sata_scr_valid -EXPORT_SYMBOL_GPL vmlinux 0x6eb7d833 rio_local_set_device_id -EXPORT_SYMBOL_GPL vmlinux 0x6ebe366f ktime_get_mono_fast_ns -EXPORT_SYMBOL_GPL vmlinux 0x6ec66400 of_pci_get_devfn -EXPORT_SYMBOL_GPL vmlinux 0x6ec74f9f devm_spi_mem_dirmap_destroy -EXPORT_SYMBOL_GPL vmlinux 0x6ee8c94b sfp_get_module_eeprom -EXPORT_SYMBOL_GPL vmlinux 0x6eeaff25 kset_create_and_add -EXPORT_SYMBOL_GPL vmlinux 0x6ef291ff dev_attr_ncq_prio_supported -EXPORT_SYMBOL_GPL vmlinux 0x6ef6b54f ktime_get_boot_fast_ns -EXPORT_SYMBOL_GPL vmlinux 0x6ef89621 usb_put_intf -EXPORT_SYMBOL_GPL vmlinux 0x6f01a14d led_trigger_blink_oneshot -EXPORT_SYMBOL_GPL vmlinux 0x6f0542f8 __traceiter_sched_cpu_capacity_tp -EXPORT_SYMBOL_GPL vmlinux 0x6f104613 xas_clear_mark -EXPORT_SYMBOL_GPL vmlinux 0x6f12560a get_old_timespec32 -EXPORT_SYMBOL_GPL vmlinux 0x6f176291 fsl_mc_bus_dpcon_type -EXPORT_SYMBOL_GPL vmlinux 0x6f19b38d fscrypt_mergeable_bio -EXPORT_SYMBOL_GPL vmlinux 0x6f2017de misc_cg_set_capacity -EXPORT_SYMBOL_GPL vmlinux 0x6f336990 yield_to -EXPORT_SYMBOL_GPL vmlinux 0x6f70d097 pin_user_pages_fast_only -EXPORT_SYMBOL_GPL vmlinux 0x6f7296e0 dma_wait_for_async_tx -EXPORT_SYMBOL_GPL vmlinux 0x6f789f61 blk_queue_zone_write_granularity -EXPORT_SYMBOL_GPL vmlinux 0x6f7b478d gpiod_set_value -EXPORT_SYMBOL_GPL vmlinux 0x6f7dd106 vp_modern_get_status -EXPORT_SYMBOL_GPL vmlinux 0x6f7e6040 irq_has_action -EXPORT_SYMBOL_GPL vmlinux 0x6f8229f9 devm_remove_action -EXPORT_SYMBOL_GPL vmlinux 0x6f89e7d2 bpf_redirect_info -EXPORT_SYMBOL_GPL vmlinux 0x6f9e763b timecounter_read -EXPORT_SYMBOL_GPL vmlinux 0x6fa1abdf devm_hwspin_lock_request_specific -EXPORT_SYMBOL_GPL vmlinux 0x6fa2c60a sysfs_break_active_protection -EXPORT_SYMBOL_GPL vmlinux 0x6faf2cef tc3589x_block_write -EXPORT_SYMBOL_GPL vmlinux 0x6fb42e73 crypto_aead_decrypt -EXPORT_SYMBOL_GPL vmlinux 0x6fcba657 init_srcu_struct -EXPORT_SYMBOL_GPL vmlinux 0x6fccc426 ahci_stop_engine -EXPORT_SYMBOL_GPL vmlinux 0x6fcef6ab ring_buffer_reset -EXPORT_SYMBOL_GPL vmlinux 0x6fcf7ed9 dev_pm_opp_put_prop_name -EXPORT_SYMBOL_GPL vmlinux 0x6fe6e12b i2c_slave_unregister -EXPORT_SYMBOL_GPL vmlinux 0x6ff607b6 crypto_get_default_rng -EXPORT_SYMBOL_GPL vmlinux 0x7000a832 fwnode_get_next_parent -EXPORT_SYMBOL_GPL vmlinux 0x70025d33 usb_hcd_unmap_urb_setup_for_dma -EXPORT_SYMBOL_GPL vmlinux 0x7006586e iommu_get_group_resv_regions -EXPORT_SYMBOL_GPL vmlinux 0x70081b29 ti_sci_get_handle -EXPORT_SYMBOL_GPL vmlinux 0x700ad8a4 alloc_dax -EXPORT_SYMBOL_GPL vmlinux 0x70189847 rhashtable_walk_next -EXPORT_SYMBOL_GPL vmlinux 0x7018bd8f __sbitmap_queue_get -EXPORT_SYMBOL_GPL vmlinux 0x70323308 bpf_trace_run6 -EXPORT_SYMBOL_GPL vmlinux 0x70387bc7 skb_gso_validate_network_len -EXPORT_SYMBOL_GPL vmlinux 0x7043626c vp_modern_queue_vector -EXPORT_SYMBOL_GPL vmlinux 0x7068f9e4 pci_remove_root_bus -EXPORT_SYMBOL_GPL vmlinux 0x707108a8 exportfs_encode_fh -EXPORT_SYMBOL_GPL vmlinux 0x7072dc68 md_rdev_init -EXPORT_SYMBOL_GPL vmlinux 0x7073c04f phy_10_100_features_array -EXPORT_SYMBOL_GPL vmlinux 0x70751d51 tegra_xusb_padctl_legacy_probe -EXPORT_SYMBOL_GPL vmlinux 0x7081600a acpi_device_get_match_data -EXPORT_SYMBOL_GPL vmlinux 0x7091f81b irq_get_default_host -EXPORT_SYMBOL_GPL vmlinux 0x709ef259 crypto_unregister_skciphers -EXPORT_SYMBOL_GPL vmlinux 0x70b131de pci_find_host_bridge -EXPORT_SYMBOL_GPL vmlinux 0x70b23a0a devm_i2c_new_dummy_device -EXPORT_SYMBOL_GPL vmlinux 0x70b5a11f of_devfreq_cooling_register_power -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 0x70c8127e dev_pm_domain_attach -EXPORT_SYMBOL_GPL vmlinux 0x70cbcffa pwm_adjust_config -EXPORT_SYMBOL_GPL vmlinux 0x70cf032f usb_hcd_irq -EXPORT_SYMBOL_GPL vmlinux 0x70d18c9b hvc_alloc -EXPORT_SYMBOL_GPL vmlinux 0x70ddb5cc usb_phy_set_event -EXPORT_SYMBOL_GPL vmlinux 0x70e06e33 pkcs7_free_message -EXPORT_SYMBOL_GPL vmlinux 0x70e3c365 platform_device_add_resources -EXPORT_SYMBOL_GPL vmlinux 0x71019cad balloon_aops -EXPORT_SYMBOL_GPL vmlinux 0x710c73b6 crypto_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x7122c1e5 sysfs_create_mount_point -EXPORT_SYMBOL_GPL vmlinux 0x712477fd bpf_trace_run1 -EXPORT_SYMBOL_GPL vmlinux 0x7129a6f4 osc_sb_native_usb4_support_confirmed -EXPORT_SYMBOL_GPL vmlinux 0x712ebfe7 pci_hp_add_bridge -EXPORT_SYMBOL_GPL vmlinux 0x713e5e9a extcon_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x7144c85a xenbus_grant_ring -EXPORT_SYMBOL_GPL vmlinux 0x71466b95 fat_search_long -EXPORT_SYMBOL_GPL vmlinux 0x714716c5 devlink_resource_size_get -EXPORT_SYMBOL_GPL vmlinux 0x714b7cb7 pci_ecam_create -EXPORT_SYMBOL_GPL vmlinux 0x71597b0c devm_power_supply_register_no_ws -EXPORT_SYMBOL_GPL vmlinux 0x715db9db devm_regmap_field_bulk_free -EXPORT_SYMBOL_GPL vmlinux 0x716265c7 debugfs_initialized -EXPORT_SYMBOL_GPL vmlinux 0x718260af pcie_update_link_speed -EXPORT_SYMBOL_GPL vmlinux 0x7184202c ahci_port_resume -EXPORT_SYMBOL_GPL vmlinux 0x718878a4 pci_epc_clear_bar -EXPORT_SYMBOL_GPL vmlinux 0x718dffaa perf_event_release_kernel -EXPORT_SYMBOL_GPL vmlinux 0x71908285 xdp_rxq_info_reg_mem_model -EXPORT_SYMBOL_GPL vmlinux 0x719e17ff clk_notifier_unregister -EXPORT_SYMBOL_GPL vmlinux 0x71a0d4fb __srcu_read_lock -EXPORT_SYMBOL_GPL vmlinux 0x71a20f4a __SCK__tp_func_non_standard_event -EXPORT_SYMBOL_GPL vmlinux 0x71a26f68 __wake_up_sync -EXPORT_SYMBOL_GPL vmlinux 0x71a9a3ab mtk_mutex_acquire -EXPORT_SYMBOL_GPL vmlinux 0x71ae5aa2 devm_clk_register -EXPORT_SYMBOL_GPL vmlinux 0x71af9936 xhci_get_ep_ctx -EXPORT_SYMBOL_GPL vmlinux 0x71b15008 lwtunnel_valid_encap_type -EXPORT_SYMBOL_GPL vmlinux 0x71b6cf94 dst_cache_reset_now -EXPORT_SYMBOL_GPL vmlinux 0x71b89cdd pwmchip_remove -EXPORT_SYMBOL_GPL vmlinux 0x71b9fddb device_move -EXPORT_SYMBOL_GPL vmlinux 0x71bedc0c perf_event_enable -EXPORT_SYMBOL_GPL vmlinux 0x71c059d8 __traceiter_map -EXPORT_SYMBOL_GPL vmlinux 0x71cd459b devm_tegra_memory_controller_get -EXPORT_SYMBOL_GPL vmlinux 0x71d54eb4 __devm_clk_hw_register_mux -EXPORT_SYMBOL_GPL vmlinux 0x71e79542 pci_iov_virtfn_devfn -EXPORT_SYMBOL_GPL vmlinux 0x71e7db74 devm_extcon_dev_allocate -EXPORT_SYMBOL_GPL vmlinux 0x71e7e3ba __netpoll_cleanup -EXPORT_SYMBOL_GPL vmlinux 0x71ea84ae of_clk_set_defaults -EXPORT_SYMBOL_GPL vmlinux 0x71fa4018 rio_release_inb_pwrite -EXPORT_SYMBOL_GPL vmlinux 0x71ff3556 mbox_controller_unregister -EXPORT_SYMBOL_GPL vmlinux 0x72086283 extcon_dev_register -EXPORT_SYMBOL_GPL vmlinux 0x721c632f trace_event_reg -EXPORT_SYMBOL_GPL vmlinux 0x72209e8f regulator_bulk_force_disable -EXPORT_SYMBOL_GPL vmlinux 0x7223d79c vp_modern_get_num_queues -EXPORT_SYMBOL_GPL vmlinux 0x72527423 crypto_alloc_aead -EXPORT_SYMBOL_GPL vmlinux 0x7262702b sfp_get_module_eeprom_by_page -EXPORT_SYMBOL_GPL vmlinux 0x7265f2b0 pci_vpd_check_csum -EXPORT_SYMBOL_GPL vmlinux 0x72723bb4 virtqueue_add_outbuf -EXPORT_SYMBOL_GPL vmlinux 0x7278d328 all_vm_events -EXPORT_SYMBOL_GPL vmlinux 0x728003fb rio_mport_get_feature -EXPORT_SYMBOL_GPL vmlinux 0x7283161b percpu_ref_switch_to_percpu -EXPORT_SYMBOL_GPL vmlinux 0x729c3ac6 inet_twsk_purge -EXPORT_SYMBOL_GPL vmlinux 0x729dee95 __traceiter_devlink_trap_report -EXPORT_SYMBOL_GPL vmlinux 0x72a58cdd devm_pm_opp_set_clkname -EXPORT_SYMBOL_GPL vmlinux 0x72aad597 genphy_c45_an_config_aneg -EXPORT_SYMBOL_GPL vmlinux 0x72b6dbb1 relay_reset -EXPORT_SYMBOL_GPL vmlinux 0x72c0d362 clk_regmap_divider_ro_ops -EXPORT_SYMBOL_GPL vmlinux 0x72c2198e sysfs_merge_group -EXPORT_SYMBOL_GPL vmlinux 0x72d267dc nvmem_del_cell_lookups -EXPORT_SYMBOL_GPL vmlinux 0x72de9d94 relay_file_operations -EXPORT_SYMBOL_GPL vmlinux 0x72edf918 __tracepoint_kfree_skb -EXPORT_SYMBOL_GPL vmlinux 0x72feeca0 gpiochip_reqres_irq -EXPORT_SYMBOL_GPL vmlinux 0x73152872 switchdev_handle_port_attr_set -EXPORT_SYMBOL_GPL vmlinux 0x731f971e acpi_get_and_request_gpiod -EXPORT_SYMBOL_GPL vmlinux 0x7320a2ff pinctrl_generic_get_group_pins -EXPORT_SYMBOL_GPL vmlinux 0x73242dcd cpu_set_feature -EXPORT_SYMBOL_GPL vmlinux 0x732852fe xenbus_transaction_end -EXPORT_SYMBOL_GPL vmlinux 0x733daddb ipv4_sk_redirect -EXPORT_SYMBOL_GPL vmlinux 0x733e1e2a rq_flush_dcache_pages -EXPORT_SYMBOL_GPL vmlinux 0x73406d2b pm_genpd_add_subdomain -EXPORT_SYMBOL_GPL vmlinux 0x734cf912 class_interface_unregister -EXPORT_SYMBOL_GPL vmlinux 0x735b6dd2 trace_define_field -EXPORT_SYMBOL_GPL vmlinux 0x736f9ebf devfreq_event_remove_edev -EXPORT_SYMBOL_GPL vmlinux 0x737ecfcc nvdimm_bus_unregister -EXPORT_SYMBOL_GPL vmlinux 0x7381287f trace_handle_return -EXPORT_SYMBOL_GPL vmlinux 0x738fb778 platform_add_devices -EXPORT_SYMBOL_GPL vmlinux 0x73903527 crypto_unregister_template -EXPORT_SYMBOL_GPL vmlinux 0x73a48b4a ata_sff_std_ports -EXPORT_SYMBOL_GPL vmlinux 0x73c166c6 led_classdev_notify_brightness_hw_changed -EXPORT_SYMBOL_GPL vmlinux 0x73c2554f __iowrite64_copy -EXPORT_SYMBOL_GPL vmlinux 0x73cc8631 oiap -EXPORT_SYMBOL_GPL vmlinux 0x73d35a1f sock_diag_register_inet_compat -EXPORT_SYMBOL_GPL vmlinux 0x73d61814 kern_mount -EXPORT_SYMBOL_GPL vmlinux 0x73d90d4e of_clk_hw_onecell_get -EXPORT_SYMBOL_GPL vmlinux 0x73df15d4 tun_get_tx_ring -EXPORT_SYMBOL_GPL vmlinux 0x73e51e6e scsi_host_block -EXPORT_SYMBOL_GPL vmlinux 0x73ed4b30 metadata_dst_alloc_percpu -EXPORT_SYMBOL_GPL vmlinux 0x73f25581 devm_usb_put_phy -EXPORT_SYMBOL_GPL vmlinux 0x73f65765 screen_pos -EXPORT_SYMBOL_GPL vmlinux 0x73fc9e74 dma_mmap_noncontiguous -EXPORT_SYMBOL_GPL vmlinux 0x74196080 leds_list_lock -EXPORT_SYMBOL_GPL vmlinux 0x7424a553 sdev_evt_send_simple -EXPORT_SYMBOL_GPL vmlinux 0x743a165e ata_pack_xfermask -EXPORT_SYMBOL_GPL vmlinux 0x743b99d8 xenmem_reservation_increase -EXPORT_SYMBOL_GPL vmlinux 0x7442b1fb extcon_dev_free -EXPORT_SYMBOL_GPL vmlinux 0x74457e56 apei_resources_fini -EXPORT_SYMBOL_GPL vmlinux 0x744e65a9 fsstack_copy_attr_all -EXPORT_SYMBOL_GPL vmlinux 0x7456c96e fb_deferred_io_open -EXPORT_SYMBOL_GPL vmlinux 0x74606e23 nvdimm_delete -EXPORT_SYMBOL_GPL vmlinux 0x746c1fd3 spi_mem_default_supports_op -EXPORT_SYMBOL_GPL vmlinux 0x74846c5f dma_map_sgtable -EXPORT_SYMBOL_GPL vmlinux 0x748b0569 scmi_driver_unregister -EXPORT_SYMBOL_GPL vmlinux 0x7496191b usb_phy_get_charger_current -EXPORT_SYMBOL_GPL vmlinux 0x74a22bb4 k3_udma_glue_push_rx_chn -EXPORT_SYMBOL_GPL vmlinux 0x74b50610 hwspin_lock_request_specific -EXPORT_SYMBOL_GPL vmlinux 0x74b5ea68 lcm_not_zero -EXPORT_SYMBOL_GPL vmlinux 0x74baf17a tracing_is_on -EXPORT_SYMBOL_GPL vmlinux 0x74bfc206 addrconf_add_linklocal -EXPORT_SYMBOL_GPL vmlinux 0x74c7bffa stack_trace_snprint -EXPORT_SYMBOL_GPL vmlinux 0x74e73871 housekeeping_overridden -EXPORT_SYMBOL_GPL vmlinux 0x74f11687 gpiod_get_value -EXPORT_SYMBOL_GPL vmlinux 0x75133f6e visitor128 -EXPORT_SYMBOL_GPL vmlinux 0x75143f92 tick_nohz_dep_clear_task -EXPORT_SYMBOL_GPL vmlinux 0x751b39d7 generic_device_group -EXPORT_SYMBOL_GPL vmlinux 0x7522f3ba irq_modify_status -EXPORT_SYMBOL_GPL vmlinux 0x752c9e07 led_sysfs_enable -EXPORT_SYMBOL_GPL vmlinux 0x7533ad0b inet_ctl_sock_create -EXPORT_SYMBOL_GPL vmlinux 0x753d694b usb_get_current_frame_number -EXPORT_SYMBOL_GPL vmlinux 0x753f51e9 thermal_zone_get_slope -EXPORT_SYMBOL_GPL vmlinux 0x75459618 mmu_notifier_put -EXPORT_SYMBOL_GPL vmlinux 0x7555db9d ata_acpi_gtm -EXPORT_SYMBOL_GPL vmlinux 0x757aff96 devm_pwmchip_add -EXPORT_SYMBOL_GPL vmlinux 0x75864349 mmc_crypto_setup_queue -EXPORT_SYMBOL_GPL vmlinux 0x7586deda ping_common_sendmsg -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 0x7591ec77 icc_sync_state -EXPORT_SYMBOL_GPL vmlinux 0x75a12de4 usb_hub_clear_tt_buffer -EXPORT_SYMBOL_GPL vmlinux 0x75b15b07 pinctrl_select_default_state -EXPORT_SYMBOL_GPL vmlinux 0x75c49c33 balloon_page_enqueue -EXPORT_SYMBOL_GPL vmlinux 0x75d0d7c9 fwnode_gpiod_get_index -EXPORT_SYMBOL_GPL vmlinux 0x75d6d9b7 ata_dev_disable -EXPORT_SYMBOL_GPL vmlinux 0x75dd4ebe of_overlay_remove -EXPORT_SYMBOL_GPL vmlinux 0x75e51945 __SCK__tp_func_error_report_end -EXPORT_SYMBOL_GPL vmlinux 0x75e90888 bpf_map_inc_with_uref -EXPORT_SYMBOL_GPL vmlinux 0x75e9c735 pci_ats_disabled -EXPORT_SYMBOL_GPL vmlinux 0x75efc14a account_locked_vm -EXPORT_SYMBOL_GPL vmlinux 0x75f5d7a3 dm_path_uevent -EXPORT_SYMBOL_GPL vmlinux 0x75fb9062 arch_timer_read_counter -EXPORT_SYMBOL_GPL vmlinux 0x760af8bb dm_noflush_suspending -EXPORT_SYMBOL_GPL vmlinux 0x761d48a5 led_sysfs_disable -EXPORT_SYMBOL_GPL vmlinux 0x764bf1f5 usb_kill_urb -EXPORT_SYMBOL_GPL vmlinux 0x764ffefa page_reporting_register -EXPORT_SYMBOL_GPL vmlinux 0x76509a09 crypto_unregister_kpp -EXPORT_SYMBOL_GPL vmlinux 0x7654a46a bd_prepare_to_claim -EXPORT_SYMBOL_GPL vmlinux 0x765a8f41 dm_suspended -EXPORT_SYMBOL_GPL vmlinux 0x76640a30 sk_msg_memcopy_from_iter -EXPORT_SYMBOL_GPL vmlinux 0x7665ee72 crypto_dh_decode_key -EXPORT_SYMBOL_GPL vmlinux 0x7671b7e5 irq_chip_get_parent_state -EXPORT_SYMBOL_GPL vmlinux 0x7679e554 spi_mem_adjust_op_size -EXPORT_SYMBOL_GPL vmlinux 0x7681946c unregister_pm_notifier -EXPORT_SYMBOL_GPL vmlinux 0x768817e7 k3_udma_glue_request_tx_chn -EXPORT_SYMBOL_GPL vmlinux 0x7692b3bb class_compat_remove_link -EXPORT_SYMBOL_GPL vmlinux 0x769cefb5 percpu_ref_switch_to_atomic -EXPORT_SYMBOL_GPL vmlinux 0x76a29e5f platform_irq_count -EXPORT_SYMBOL_GPL vmlinux 0x76d30b38 extcon_find_edev_by_node -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 0x7712771a unbind_from_irqhandler -EXPORT_SYMBOL_GPL vmlinux 0x7718d8fd compat_only_sysfs_link_entry_to_kobj -EXPORT_SYMBOL_GPL vmlinux 0x77222306 ring_buffer_read_page -EXPORT_SYMBOL_GPL vmlinux 0x7729cbdd task_handoff_register -EXPORT_SYMBOL_GPL vmlinux 0x77315e80 usb_string -EXPORT_SYMBOL_GPL vmlinux 0x77393ff1 devm_phy_package_join -EXPORT_SYMBOL_GPL vmlinux 0x774ca640 icc_link_destroy -EXPORT_SYMBOL_GPL vmlinux 0x774d63a5 usb_hcd_amd_remote_wakeup_quirk -EXPORT_SYMBOL_GPL vmlinux 0x774d69a9 led_blink_set_oneshot -EXPORT_SYMBOL_GPL vmlinux 0x774f16ef __tracepoint_cpu_idle -EXPORT_SYMBOL_GPL vmlinux 0x7757b51a clk_unregister -EXPORT_SYMBOL_GPL vmlinux 0x776c7d05 iomap_fiemap -EXPORT_SYMBOL_GPL vmlinux 0x7775d045 regmap_get_val_bytes -EXPORT_SYMBOL_GPL vmlinux 0x777cbbaf bgmac_enet_suspend -EXPORT_SYMBOL_GPL vmlinux 0x7791e066 dw_pcie_read -EXPORT_SYMBOL_GPL vmlinux 0x7793ce8e hwspin_lock_register -EXPORT_SYMBOL_GPL vmlinux 0x7793faba sbitmap_queue_clear -EXPORT_SYMBOL_GPL vmlinux 0x779b0a84 device_get_next_child_node -EXPORT_SYMBOL_GPL vmlinux 0x77a08b25 pinctrl_utils_free_map -EXPORT_SYMBOL_GPL vmlinux 0x77ae495d usb_speed_string -EXPORT_SYMBOL_GPL vmlinux 0x77b06cad usb_find_alt_setting -EXPORT_SYMBOL_GPL vmlinux 0x77c475b1 do_splice_from -EXPORT_SYMBOL_GPL vmlinux 0x77e75be3 sfp_bus_put -EXPORT_SYMBOL_GPL vmlinux 0x77ecf68d memalloc_socks_key -EXPORT_SYMBOL_GPL vmlinux 0x77fac528 nvdimm_in_overwrite -EXPORT_SYMBOL_GPL vmlinux 0x77fe320e phy_pm_runtime_put -EXPORT_SYMBOL_GPL vmlinux 0x785a93b4 si_mem_available -EXPORT_SYMBOL_GPL vmlinux 0x786cc698 fl6_update_dst -EXPORT_SYMBOL_GPL vmlinux 0x78715838 gpiochip_populate_parent_fwspec_twocell -EXPORT_SYMBOL_GPL vmlinux 0x7873a000 pci_disable_sriov -EXPORT_SYMBOL_GPL vmlinux 0x787c882b lzo1x_1_compress -EXPORT_SYMBOL_GPL vmlinux 0x7889e498 nexthop_for_each_fib6_nh -EXPORT_SYMBOL_GPL vmlinux 0x788bfbad ring_buffer_empty -EXPORT_SYMBOL_GPL vmlinux 0x788c5395 crypto_type_has_alg -EXPORT_SYMBOL_GPL vmlinux 0x78954b8f efivar_entry_iter -EXPORT_SYMBOL_GPL vmlinux 0x789c73d9 rcu_cpu_stall_suppress_at_boot -EXPORT_SYMBOL_GPL vmlinux 0x789d99ed pci_msi_unmask_irq -EXPORT_SYMBOL_GPL vmlinux 0x78a2b472 lwtunnel_encap_del_ops -EXPORT_SYMBOL_GPL vmlinux 0x78b16456 mddev_resume -EXPORT_SYMBOL_GPL vmlinux 0x78b7b476 acpi_debugfs_dir -EXPORT_SYMBOL_GPL vmlinux 0x78c42b2a pci_max_pasids -EXPORT_SYMBOL_GPL vmlinux 0x78d5d4b7 pinmux_generic_remove_function -EXPORT_SYMBOL_GPL vmlinux 0x78d66876 sdio_retune_hold_now -EXPORT_SYMBOL_GPL vmlinux 0x78ddb76b dmi_match -EXPORT_SYMBOL_GPL vmlinux 0x78e4ba32 virtqueue_get_vring_size -EXPORT_SYMBOL_GPL vmlinux 0x7918d817 memory_failure -EXPORT_SYMBOL_GPL vmlinux 0x7922567b l3mdev_link_scope_lookup -EXPORT_SYMBOL_GPL vmlinux 0x79345cb9 register_kretprobe -EXPORT_SYMBOL_GPL vmlinux 0x7934aa08 register_kprobes -EXPORT_SYMBOL_GPL vmlinux 0x7937a2a9 genphy_c45_config_aneg -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 0x794a0461 rockchip_pcie_disable_clocks -EXPORT_SYMBOL_GPL vmlinux 0x794b7271 orderly_reboot -EXPORT_SYMBOL_GPL vmlinux 0x7968eadb syscon_regmap_lookup_by_phandle_optional -EXPORT_SYMBOL_GPL vmlinux 0x796bff55 follow_pte -EXPORT_SYMBOL_GPL vmlinux 0x797cdb03 iomap_seek_data -EXPORT_SYMBOL_GPL vmlinux 0x79830e77 fib_nh_common_init -EXPORT_SYMBOL_GPL vmlinux 0x7984940b spi_unregister_controller -EXPORT_SYMBOL_GPL vmlinux 0x79898244 crypto_alloc_acomp -EXPORT_SYMBOL_GPL vmlinux 0x798f0a0a devlink_port_params_unregister -EXPORT_SYMBOL_GPL vmlinux 0x79b09c05 splice_to_pipe -EXPORT_SYMBOL_GPL vmlinux 0x79c2d0b6 crypto_grab_akcipher -EXPORT_SYMBOL_GPL vmlinux 0x79cd6892 pci_set_pcie_reset_state -EXPORT_SYMBOL_GPL vmlinux 0x79defbe1 kthread_should_park -EXPORT_SYMBOL_GPL vmlinux 0x79e02fce rio_release_outb_dbell -EXPORT_SYMBOL_GPL vmlinux 0x79e0a0a5 mtk_is_virt_gpio -EXPORT_SYMBOL_GPL vmlinux 0x79ebb430 acpi_device_uevent_modalias -EXPORT_SYMBOL_GPL vmlinux 0x79f36d5b devm_clk_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0x79f697e4 lzorle1x_1_compress -EXPORT_SYMBOL_GPL vmlinux 0x79fa44fc blockdev_superblock -EXPORT_SYMBOL_GPL vmlinux 0x79fd59c1 device_property_read_u32_array -EXPORT_SYMBOL_GPL vmlinux 0x7a009e25 iptunnel_xmit -EXPORT_SYMBOL_GPL vmlinux 0x7a10d30d tpm_get_timeouts -EXPORT_SYMBOL_GPL vmlinux 0x7a11fbb4 pci_find_ext_capability -EXPORT_SYMBOL_GPL vmlinux 0x7a202689 pm_runtime_set_autosuspend_delay -EXPORT_SYMBOL_GPL vmlinux 0x7a20ddb9 regulator_suspend_disable -EXPORT_SYMBOL_GPL vmlinux 0x7a2f5978 usb_hub_find_child -EXPORT_SYMBOL_GPL vmlinux 0x7a30ab6e gpiod_set_raw_array_value -EXPORT_SYMBOL_GPL vmlinux 0x7a32f7a6 pci_sriov_configure_simple -EXPORT_SYMBOL_GPL vmlinux 0x7a33f504 power_supply_find_ocv2cap_table -EXPORT_SYMBOL_GPL vmlinux 0x7a724b5f debugfs_create_dir -EXPORT_SYMBOL_GPL vmlinux 0x7a732aaa ahci_platform_disable_phys -EXPORT_SYMBOL_GPL vmlinux 0x7a73e605 wm831x_isinkv_values -EXPORT_SYMBOL_GPL vmlinux 0x7a746509 pinctrl_utils_add_map_configs -EXPORT_SYMBOL_GPL vmlinux 0x7a7ea74f serdev_device_set_flow_control -EXPORT_SYMBOL_GPL vmlinux 0x7a81541b async_synchronize_cookie -EXPORT_SYMBOL_GPL vmlinux 0x7a87f948 usb_free_streams -EXPORT_SYMBOL_GPL vmlinux 0x7a8b6ac1 rio_mport_write_config_16 -EXPORT_SYMBOL_GPL vmlinux 0x7a91b819 stmpe_disable -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 0x7ab8637d scsi_queue_work -EXPORT_SYMBOL_GPL vmlinux 0x7abb775e sk_psock_tls_strp_read -EXPORT_SYMBOL_GPL vmlinux 0x7ac10ad8 icst_clk_register -EXPORT_SYMBOL_GPL vmlinux 0x7ac722bd phy_all_ports_features_array -EXPORT_SYMBOL_GPL vmlinux 0x7ac748a2 irq_domain_update_bus_token -EXPORT_SYMBOL_GPL vmlinux 0x7acf0712 ack_all_badblocks -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 0x7ad33c1f noop_direct_IO -EXPORT_SYMBOL_GPL vmlinux 0x7aed598b dev_pm_opp_unregister_set_opp_helper -EXPORT_SYMBOL_GPL vmlinux 0x7af83f85 ata_port_abort -EXPORT_SYMBOL_GPL vmlinux 0x7afcb7db __kprobe_event_add_fields -EXPORT_SYMBOL_GPL vmlinux 0x7afd8617 auxiliary_find_device -EXPORT_SYMBOL_GPL vmlinux 0x7afed014 fuse_abort_conn -EXPORT_SYMBOL_GPL vmlinux 0x7b0b6e66 fbcon_modechange_possible -EXPORT_SYMBOL_GPL vmlinux 0x7b178afe unlock_system_sleep -EXPORT_SYMBOL_GPL vmlinux 0x7b2163bd HYPERVISOR_tmem_op -EXPORT_SYMBOL_GPL vmlinux 0x7b315849 sdio_disable_func -EXPORT_SYMBOL_GPL vmlinux 0x7b33598c sdio_retune_release -EXPORT_SYMBOL_GPL vmlinux 0x7b391ea8 pid_nr_ns -EXPORT_SYMBOL_GPL vmlinux 0x7b3d8dfd ata_sff_dma_pause -EXPORT_SYMBOL_GPL vmlinux 0x7b499bac btree_remove -EXPORT_SYMBOL_GPL vmlinux 0x7b5452b8 acpi_unregister_gsi -EXPORT_SYMBOL_GPL vmlinux 0x7b5a4926 sha1_zero_message_hash -EXPORT_SYMBOL_GPL vmlinux 0x7b5b065c cpufreq_frequency_table_get_index -EXPORT_SYMBOL_GPL vmlinux 0x7b6f9536 acpi_register_wakeup_handler -EXPORT_SYMBOL_GPL vmlinux 0x7b75dc93 devm_reset_controller_register -EXPORT_SYMBOL_GPL vmlinux 0x7b83dec6 dev_pm_opp_find_freq_exact -EXPORT_SYMBOL_GPL vmlinux 0x7b895b5c dev_get_tstats64 -EXPORT_SYMBOL_GPL vmlinux 0x7b8ea197 ethtool_params_from_link_mode -EXPORT_SYMBOL_GPL vmlinux 0x7b90d1a9 bind_virq_to_irqhandler -EXPORT_SYMBOL_GPL vmlinux 0x7b92e25f crypto_alloc_ahash -EXPORT_SYMBOL_GPL vmlinux 0x7b9793a2 get_cpu_idle_time_us -EXPORT_SYMBOL_GPL vmlinux 0x7ba22e0d pinctrl_pm_select_idle_state -EXPORT_SYMBOL_GPL vmlinux 0x7bb045a7 __request_percpu_irq -EXPORT_SYMBOL_GPL vmlinux 0x7bb5829b wm831x_auxadc_read_uv -EXPORT_SYMBOL_GPL vmlinux 0x7bcf3441 netdev_rx_handler_register -EXPORT_SYMBOL_GPL vmlinux 0x7bcfd253 ip6_route_input_lookup -EXPORT_SYMBOL_GPL vmlinux 0x7bd2159f ping_getfrag -EXPORT_SYMBOL_GPL vmlinux 0x7bd74528 __inet_lookup_established -EXPORT_SYMBOL_GPL vmlinux 0x7bdd561e rpi_firmware_get -EXPORT_SYMBOL_GPL vmlinux 0x7bea2462 regulator_get_bypass_regmap -EXPORT_SYMBOL_GPL vmlinux 0x7c291e86 show_rcu_tasks_trace_gp_kthread -EXPORT_SYMBOL_GPL vmlinux 0x7c2ce311 blk_stat_enable_accounting -EXPORT_SYMBOL_GPL vmlinux 0x7c3d8a4b icc_bulk_put -EXPORT_SYMBOL_GPL vmlinux 0x7c3e736a rcu_nocb_cpu_offload -EXPORT_SYMBOL_GPL vmlinux 0x7c5f3711 ioasid_unregister_allocator -EXPORT_SYMBOL_GPL vmlinux 0x7c650bb0 crypto_shash_alg_has_setkey -EXPORT_SYMBOL_GPL vmlinux 0x7c73ede7 sbitmap_queue_min_shallow_depth -EXPORT_SYMBOL_GPL vmlinux 0x7c817bf0 rtc_initialize_alarm -EXPORT_SYMBOL_GPL vmlinux 0x7c88b607 devm_ioremap_uc -EXPORT_SYMBOL_GPL vmlinux 0x7c905911 devm_pinctrl_register -EXPORT_SYMBOL_GPL vmlinux 0x7c91ce42 iptunnel_metadata_reply -EXPORT_SYMBOL_GPL vmlinux 0x7c983a5d dmi_walk -EXPORT_SYMBOL_GPL vmlinux 0x7c9a7371 clk_prepare -EXPORT_SYMBOL_GPL vmlinux 0x7c9f044a debugfs_write_file_bool -EXPORT_SYMBOL_GPL vmlinux 0x7ca2b1db srcutorture_get_gp_data -EXPORT_SYMBOL_GPL vmlinux 0x7ca64a0b __cookie_v4_init_sequence -EXPORT_SYMBOL_GPL vmlinux 0x7ca85256 ms_hyperv -EXPORT_SYMBOL_GPL vmlinux 0x7caf21eb crypto_hash_walk_first -EXPORT_SYMBOL_GPL vmlinux 0x7cb56fd0 crypto_stats_ahash_final -EXPORT_SYMBOL_GPL vmlinux 0x7cc302dd devfreq_event_set_event -EXPORT_SYMBOL_GPL vmlinux 0x7cc6f61e ata_host_alloc -EXPORT_SYMBOL_GPL vmlinux 0x7cc89b81 dma_get_slave_channel -EXPORT_SYMBOL_GPL vmlinux 0x7cceaf92 zs_pool_stats -EXPORT_SYMBOL_GPL vmlinux 0x7cd6f042 cpufreq_get_current_driver -EXPORT_SYMBOL_GPL vmlinux 0x7ce97940 bsg_setup_queue -EXPORT_SYMBOL_GPL vmlinux 0x7ce9c39a key_type_asymmetric -EXPORT_SYMBOL_GPL vmlinux 0x7ceaf0d5 generic_handle_irq -EXPORT_SYMBOL_GPL vmlinux 0x7d00c65b nd_synchronize -EXPORT_SYMBOL_GPL vmlinux 0x7d02b223 cpufreq_driver_fast_switch -EXPORT_SYMBOL_GPL vmlinux 0x7d05cc81 alarm_forward_now -EXPORT_SYMBOL_GPL vmlinux 0x7d061972 rtnl_get_net_ns_capable -EXPORT_SYMBOL_GPL vmlinux 0x7d0afe04 pinctrl_register -EXPORT_SYMBOL_GPL vmlinux 0x7d1bb1d4 tnum_strn -EXPORT_SYMBOL_GPL vmlinux 0x7d1e7c75 class_create_file_ns -EXPORT_SYMBOL_GPL vmlinux 0x7d2ab206 blk_mq_debugfs_rq_show -EXPORT_SYMBOL_GPL vmlinux 0x7d471321 zynqmp_pm_pinctrl_release -EXPORT_SYMBOL_GPL vmlinux 0x7d481ad1 dma_run_dependencies -EXPORT_SYMBOL_GPL vmlinux 0x7d4e28e1 xen_remap_vma_range -EXPORT_SYMBOL_GPL vmlinux 0x7d59dd46 pm_wq -EXPORT_SYMBOL_GPL vmlinux 0x7d6bd00b crypto_shash_tfm_digest -EXPORT_SYMBOL_GPL vmlinux 0x7d7ca41c regmap_get_raw_read_max -EXPORT_SYMBOL_GPL vmlinux 0x7d847a3c dev_pm_qos_hide_flags -EXPORT_SYMBOL_GPL vmlinux 0x7d8a4179 iommu_uapi_cache_invalidate -EXPORT_SYMBOL_GPL vmlinux 0x7d8eee13 crypto_spawn_tfm -EXPORT_SYMBOL_GPL vmlinux 0x7d974dbc of_genpd_remove_subdomain -EXPORT_SYMBOL_GPL vmlinux 0x7d97599a of_thermal_get_ntrips -EXPORT_SYMBOL_GPL vmlinux 0x7da22c7a driver_create_file -EXPORT_SYMBOL_GPL vmlinux 0x7db353e5 balloon_page_dequeue -EXPORT_SYMBOL_GPL vmlinux 0x7db3d426 blk_req_needs_zone_write_lock -EXPORT_SYMBOL_GPL vmlinux 0x7db6410d mmu_interval_read_begin -EXPORT_SYMBOL_GPL vmlinux 0x7db915b3 sbitmap_queue_resize -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 0x7dea4e5d dma_alloc_pages -EXPORT_SYMBOL_GPL vmlinux 0x7e0d8829 dummy_con -EXPORT_SYMBOL_GPL vmlinux 0x7e1caa2b encrypt_blob -EXPORT_SYMBOL_GPL vmlinux 0x7e204fae fsl_mc_bus_dpci_type -EXPORT_SYMBOL_GPL vmlinux 0x7e3bdecd __ftrace_vprintk -EXPORT_SYMBOL_GPL vmlinux 0x7e442986 ahci_platform_disable_clks -EXPORT_SYMBOL_GPL vmlinux 0x7e46cce9 devm_nvmem_device_put -EXPORT_SYMBOL_GPL vmlinux 0x7e53c73d devlink_port_attrs_pci_vf_set -EXPORT_SYMBOL_GPL vmlinux 0x7e557cd0 dbs_update -EXPORT_SYMBOL_GPL vmlinux 0x7e5db80b pstore_name_to_type -EXPORT_SYMBOL_GPL vmlinux 0x7e5f737b bpf_prog_inc_not_zero -EXPORT_SYMBOL_GPL vmlinux 0x7e64181d usb_calc_bus_time -EXPORT_SYMBOL_GPL vmlinux 0x7e7a47c9 pci_acpi_clear_companion_lookup_hook -EXPORT_SYMBOL_GPL vmlinux 0x7e7e3f58 ring_buffer_reset_cpu -EXPORT_SYMBOL_GPL vmlinux 0x7e8a0c97 rhashtable_walk_peek -EXPORT_SYMBOL_GPL vmlinux 0x7e8af718 nvmem_cell_get -EXPORT_SYMBOL_GPL vmlinux 0x7e917894 __SCK__tp_func_unmap -EXPORT_SYMBOL_GPL vmlinux 0x7eadccb9 irq_domain_push_irq -EXPORT_SYMBOL_GPL vmlinux 0x7eafd4d0 usb_ifnum_to_if -EXPORT_SYMBOL_GPL vmlinux 0x7eb1795e __tracepoint_detach_device_from_domain -EXPORT_SYMBOL_GPL vmlinux 0x7eb72cfe inet_peer_base_init -EXPORT_SYMBOL_GPL vmlinux 0x7eb808d0 add_cpu -EXPORT_SYMBOL_GPL vmlinux 0x7ebe41d3 __netpoll_setup -EXPORT_SYMBOL_GPL vmlinux 0x7ec1efcb rio_unregister_driver -EXPORT_SYMBOL_GPL vmlinux 0x7ed14ef5 bdi_dev_name -EXPORT_SYMBOL_GPL vmlinux 0x7edefc20 fib_rules_register -EXPORT_SYMBOL_GPL vmlinux 0x7ee4ff2f __hrtimer_get_remaining -EXPORT_SYMBOL_GPL vmlinux 0x7eea6b8b pcap_adc_async -EXPORT_SYMBOL_GPL vmlinux 0x7eed4cdc skb_segment -EXPORT_SYMBOL_GPL vmlinux 0x7f1b6eb0 sdio_readsb -EXPORT_SYMBOL_GPL vmlinux 0x7f23021f __vring_new_virtqueue -EXPORT_SYMBOL_GPL vmlinux 0x7f3e2f55 blk_mq_sched_mark_restart_hctx -EXPORT_SYMBOL_GPL vmlinux 0x7f549f4a irq_domain_simple_ops -EXPORT_SYMBOL_GPL vmlinux 0x7f6dbc69 hrtimer_init -EXPORT_SYMBOL_GPL vmlinux 0x7f7620a6 devm_i2c_add_adapter -EXPORT_SYMBOL_GPL vmlinux 0x7f785a8f ohci_restart -EXPORT_SYMBOL_GPL vmlinux 0x7f7864ea skb_complete_wifi_ack -EXPORT_SYMBOL_GPL vmlinux 0x7f7cbc64 ip_tunnel_need_metadata -EXPORT_SYMBOL_GPL vmlinux 0x7f8969f1 rio_release_dma -EXPORT_SYMBOL_GPL vmlinux 0x7f977f73 iommu_register_device_fault_handler -EXPORT_SYMBOL_GPL vmlinux 0x7f9c2352 mmc_switch -EXPORT_SYMBOL_GPL vmlinux 0x7fa96509 erst_get_record_id_next -EXPORT_SYMBOL_GPL vmlinux 0x7fae2324 ata_platform_remove_one -EXPORT_SYMBOL_GPL vmlinux 0x7fb454b3 clk_regmap_divider_ops -EXPORT_SYMBOL_GPL vmlinux 0x7fc57ddd mtk_pctrl_show_one_pin -EXPORT_SYMBOL_GPL vmlinux 0x7fe70361 rio_mport_read_config_16 -EXPORT_SYMBOL_GPL vmlinux 0x7ff19c40 zynqmp_pm_set_requirement -EXPORT_SYMBOL_GPL vmlinux 0x7ffed012 serial8250_em485_config -EXPORT_SYMBOL_GPL vmlinux 0x800e4ad9 usb_get_status -EXPORT_SYMBOL_GPL vmlinux 0x80106eed ata_sas_port_stop -EXPORT_SYMBOL_GPL vmlinux 0x80135182 k3_ringacc_ring_pop_tail -EXPORT_SYMBOL_GPL vmlinux 0x8013bb60 security_kernel_post_read_file -EXPORT_SYMBOL_GPL vmlinux 0x80231dfa unix_inq_len -EXPORT_SYMBOL_GPL vmlinux 0x8035bed7 rockchip_clk_protect_critical -EXPORT_SYMBOL_GPL vmlinux 0x805667cf devlink_fmsg_u64_put -EXPORT_SYMBOL_GPL vmlinux 0x805ffabb nvdimm_provider_data -EXPORT_SYMBOL_GPL vmlinux 0x806327ea imx_clk_hw_cpu -EXPORT_SYMBOL_GPL vmlinux 0x806f00de pci_bridge_secondary_bus_reset -EXPORT_SYMBOL_GPL vmlinux 0x807fdcc4 call_rcu_tasks_rude -EXPORT_SYMBOL_GPL vmlinux 0x808ec1a3 crypto_alg_tested -EXPORT_SYMBOL_GPL vmlinux 0x80a20f0b nd_region_provider_data -EXPORT_SYMBOL_GPL vmlinux 0x80a42df6 regulator_get_voltage_rdev -EXPORT_SYMBOL_GPL vmlinux 0x80a9e70a ata_sas_port_resume -EXPORT_SYMBOL_GPL vmlinux 0x80badff4 __tracepoint_block_unplug -EXPORT_SYMBOL_GPL vmlinux 0x80c469b8 irq_domain_translate_onecell -EXPORT_SYMBOL_GPL vmlinux 0x80c68137 nf_log_buf_close -EXPORT_SYMBOL_GPL vmlinux 0x80c743da debugfs_lookup -EXPORT_SYMBOL_GPL vmlinux 0x80d02385 pci_epf_free_space -EXPORT_SYMBOL_GPL vmlinux 0x80d5e57a mpi_free -EXPORT_SYMBOL_GPL vmlinux 0x80d734fd __sync_filesystem -EXPORT_SYMBOL_GPL vmlinux 0x80e01338 bpf_preload_ops -EXPORT_SYMBOL_GPL vmlinux 0x80e9b0fb klist_iter_exit -EXPORT_SYMBOL_GPL vmlinux 0x8108c99d scsi_get_vpd_page -EXPORT_SYMBOL_GPL vmlinux 0x810a09a3 regulator_sync_voltage -EXPORT_SYMBOL_GPL vmlinux 0x810f232a alarm_init -EXPORT_SYMBOL_GPL vmlinux 0x811884a4 __traceiter_pelt_dl_tp -EXPORT_SYMBOL_GPL vmlinux 0x811dc334 usb_unregister_notify -EXPORT_SYMBOL_GPL vmlinux 0x812371d7 skb_splice_bits -EXPORT_SYMBOL_GPL vmlinux 0x812624ce rio_unregister_mport -EXPORT_SYMBOL_GPL vmlinux 0x813b5e29 mtk_pinconf_bias_disable_get -EXPORT_SYMBOL_GPL vmlinux 0x814e2386 kcpustat_field -EXPORT_SYMBOL_GPL vmlinux 0x814ee361 bdev_disk_changed -EXPORT_SYMBOL_GPL vmlinux 0x815588a6 clk_enable -EXPORT_SYMBOL_GPL vmlinux 0x81572944 rio_lock_device -EXPORT_SYMBOL_GPL vmlinux 0x815fda83 sed_ioctl -EXPORT_SYMBOL_GPL vmlinux 0x8163c3a1 nvmem_cell_read_u32 -EXPORT_SYMBOL_GPL vmlinux 0x816a41ca cpufreq_update_limits -EXPORT_SYMBOL_GPL vmlinux 0x816f3349 pci_find_next_ht_capability -EXPORT_SYMBOL_GPL vmlinux 0x8175c094 hwmon_notify_event -EXPORT_SYMBOL_GPL vmlinux 0x817bbe27 debugfs_create_symlink -EXPORT_SYMBOL_GPL vmlinux 0x818003d7 crypto_register_alg -EXPORT_SYMBOL_GPL vmlinux 0x8180cede asn1_encode_sequence -EXPORT_SYMBOL_GPL vmlinux 0x818b04d3 regcache_sync -EXPORT_SYMBOL_GPL vmlinux 0x818dca50 mtk_pinconf_adv_pull_set -EXPORT_SYMBOL_GPL vmlinux 0x81a7f541 percpu_ref_init -EXPORT_SYMBOL_GPL vmlinux 0x81aa78d8 zynqmp_pm_aes_engine -EXPORT_SYMBOL_GPL vmlinux 0x81b03377 efivar_entry_set_safe -EXPORT_SYMBOL_GPL vmlinux 0x81ba2586 bpfilter_ops -EXPORT_SYMBOL_GPL vmlinux 0x81c0843f dm_get_queue_limits -EXPORT_SYMBOL_GPL vmlinux 0x81c349de udp_destruct_common -EXPORT_SYMBOL_GPL vmlinux 0x81d0b623 __netif_set_xps_queue -EXPORT_SYMBOL_GPL vmlinux 0x81e2bdf4 generic_handle_irq_safe -EXPORT_SYMBOL_GPL vmlinux 0x81f21e75 dev_pm_opp_disable -EXPORT_SYMBOL_GPL vmlinux 0x81f372a2 unregister_ftrace_export -EXPORT_SYMBOL_GPL vmlinux 0x82016eb8 sata_link_scr_lpm -EXPORT_SYMBOL_GPL vmlinux 0x820c73fa imx_obtain_fixed_clk_hw -EXPORT_SYMBOL_GPL vmlinux 0x820c7e5f timer_unstable_counter_workaround -EXPORT_SYMBOL_GPL vmlinux 0x820da4ec dev_pm_genpd_set_next_wakeup -EXPORT_SYMBOL_GPL vmlinux 0x8220a38e k3_ringacc_get_ring_id -EXPORT_SYMBOL_GPL vmlinux 0x82226c53 pinctrl_unregister_mappings -EXPORT_SYMBOL_GPL vmlinux 0x8229666e virtqueue_add_sgs -EXPORT_SYMBOL_GPL vmlinux 0x823bdbef devm_clk_bulk_get -EXPORT_SYMBOL_GPL vmlinux 0x8269c614 perf_event_addr_filters_sync -EXPORT_SYMBOL_GPL vmlinux 0x827e61f8 acpi_has_watchdog -EXPORT_SYMBOL_GPL vmlinux 0x828f0028 i2c_recover_bus -EXPORT_SYMBOL_GPL vmlinux 0x82a80545 __SCK__tp_func_fdb_delete -EXPORT_SYMBOL_GPL vmlinux 0x82b3ffcd fscrypt_mergeable_bio_bh -EXPORT_SYMBOL_GPL vmlinux 0x82b75555 devm_of_platform_populate -EXPORT_SYMBOL_GPL vmlinux 0x82bbf30b __tracepoint_map -EXPORT_SYMBOL_GPL vmlinux 0x82bec576 unregister_net_sysctl_table -EXPORT_SYMBOL_GPL vmlinux 0x82d128cf register_ftrace_function -EXPORT_SYMBOL_GPL vmlinux 0x82d79b51 sysctl_vfs_cache_pressure -EXPORT_SYMBOL_GPL vmlinux 0x82d806c0 of_pm_clk_add_clks -EXPORT_SYMBOL_GPL vmlinux 0x82ff636f dw_pcie_upconfig_setup -EXPORT_SYMBOL_GPL vmlinux 0x8300c4ed rdev_get_name -EXPORT_SYMBOL_GPL vmlinux 0x831f4f23 pci_d3cold_enable -EXPORT_SYMBOL_GPL vmlinux 0x83215f1f hisi_clk_register_phase -EXPORT_SYMBOL_GPL vmlinux 0x832abbb3 fsl_mc_bus_dpdcei_type -EXPORT_SYMBOL_GPL vmlinux 0x832c872f genpd_dev_pm_attach_by_id -EXPORT_SYMBOL_GPL vmlinux 0x8339df73 klist_add_behind -EXPORT_SYMBOL_GPL vmlinux 0x8349a895 nvmem_device_put -EXPORT_SYMBOL_GPL vmlinux 0x8353dfff acpi_os_get_iomem -EXPORT_SYMBOL_GPL vmlinux 0x835d188c tc3589x_reg_read -EXPORT_SYMBOL_GPL vmlinux 0x8370121b perf_pmu_register -EXPORT_SYMBOL_GPL vmlinux 0x83884cd1 watchdog_set_restart_priority -EXPORT_SYMBOL_GPL vmlinux 0x8390d9b1 spi_mem_get_name -EXPORT_SYMBOL_GPL vmlinux 0x83a243c0 sdio_claim_irq -EXPORT_SYMBOL_GPL vmlinux 0x83a39ceb copy_user_highpage -EXPORT_SYMBOL_GPL vmlinux 0x83a3da48 perf_aux_output_flag -EXPORT_SYMBOL_GPL vmlinux 0x83b14843 ip_route_output_flow -EXPORT_SYMBOL_GPL vmlinux 0x83c2d2d9 tty_port_link_device -EXPORT_SYMBOL_GPL vmlinux 0x840c8dc5 blkcg_print_blkgs -EXPORT_SYMBOL_GPL vmlinux 0x84106f36 devlink_trap_ctx_priv -EXPORT_SYMBOL_GPL vmlinux 0x84179c88 acpi_dma_controller_free -EXPORT_SYMBOL_GPL vmlinux 0x841a9aa5 __wake_up_sync_key -EXPORT_SYMBOL_GPL vmlinux 0x841cb802 icc_enable -EXPORT_SYMBOL_GPL vmlinux 0x84264ced fs_umode_to_ftype -EXPORT_SYMBOL_GPL vmlinux 0x8435b6d8 skb_segment_list -EXPORT_SYMBOL_GPL vmlinux 0x84386ba5 noop_invalidatepage -EXPORT_SYMBOL_GPL vmlinux 0x843d70ef acpi_is_root_bridge -EXPORT_SYMBOL_GPL vmlinux 0x843fdd25 devm_pm_runtime_enable -EXPORT_SYMBOL_GPL vmlinux 0x844cb904 mtk_mutex_remove_comp -EXPORT_SYMBOL_GPL vmlinux 0x844e3b4f subsys_system_register -EXPORT_SYMBOL_GPL vmlinux 0x84502a47 blk_status_to_errno -EXPORT_SYMBOL_GPL vmlinux 0x8450e964 rcu_read_unlock_trace_special -EXPORT_SYMBOL_GPL vmlinux 0x8456b4e9 pinctrl_lookup_state -EXPORT_SYMBOL_GPL vmlinux 0x845dbf3b scatterwalk_map_and_copy -EXPORT_SYMBOL_GPL vmlinux 0x845dd49c regcache_sync_region -EXPORT_SYMBOL_GPL vmlinux 0x8462cb62 atapi_cmd_type -EXPORT_SYMBOL_GPL vmlinux 0x846e31a0 of_genpd_parse_idle_states -EXPORT_SYMBOL_GPL vmlinux 0x84803226 user_describe -EXPORT_SYMBOL_GPL vmlinux 0x848333db fixup_user_fault -EXPORT_SYMBOL_GPL vmlinux 0x848b77f2 sock_map_unhash -EXPORT_SYMBOL_GPL vmlinux 0x84a8d0eb of_changeset_revert -EXPORT_SYMBOL_GPL vmlinux 0x84bd81b4 fsnotify_alloc_group -EXPORT_SYMBOL_GPL vmlinux 0x84d23b01 of_msi_configure -EXPORT_SYMBOL_GPL vmlinux 0x84ef27f5 synth_event_add_fields -EXPORT_SYMBOL_GPL vmlinux 0x84f4017e devfreq_get_devfreq_by_node -EXPORT_SYMBOL_GPL vmlinux 0x84ff1583 iommu_unmap -EXPORT_SYMBOL_GPL vmlinux 0x8506baa8 clk_unregister_gate -EXPORT_SYMBOL_GPL vmlinux 0x8509ea18 __clk_hw_register_gate -EXPORT_SYMBOL_GPL vmlinux 0x850bb6db devlink_health_reporter_destroy -EXPORT_SYMBOL_GPL vmlinux 0x85145c1f edac_mc_find_csrow_by_page -EXPORT_SYMBOL_GPL vmlinux 0x851b5823 serdev_device_write_flush -EXPORT_SYMBOL_GPL vmlinux 0x851e6003 usb_phy_roothub_calibrate -EXPORT_SYMBOL_GPL vmlinux 0x851fe124 __SCK__tp_func_fib6_table_lookup -EXPORT_SYMBOL_GPL vmlinux 0x85270341 tty_put_char -EXPORT_SYMBOL_GPL vmlinux 0x854e08e8 mpc8xxx_spi_tx_buf_u16 -EXPORT_SYMBOL_GPL vmlinux 0x85540ebc nvmem_cell_put -EXPORT_SYMBOL_GPL vmlinux 0x8566579b rdev_clear_badblocks -EXPORT_SYMBOL_GPL vmlinux 0x85862277 ioasid_find -EXPORT_SYMBOL_GPL vmlinux 0x8590b00a amba_ahb_device_add_res -EXPORT_SYMBOL_GPL vmlinux 0x85930811 i2c_add_numbered_adapter -EXPORT_SYMBOL_GPL vmlinux 0x85935a61 acpi_dev_irq_flags -EXPORT_SYMBOL_GPL vmlinux 0x859e4e45 bpf_trace_run7 -EXPORT_SYMBOL_GPL vmlinux 0x85ba97f5 blk_mq_freeze_queue -EXPORT_SYMBOL_GPL vmlinux 0x85c54b61 efivar_validate -EXPORT_SYMBOL_GPL vmlinux 0x85c55df2 regulator_map_voltage_linear -EXPORT_SYMBOL_GPL vmlinux 0x85c8d858 anon_transport_class_register -EXPORT_SYMBOL_GPL vmlinux 0x85dd1b99 of_reset_control_array_get -EXPORT_SYMBOL_GPL vmlinux 0x85de48f2 cdrom_multisession -EXPORT_SYMBOL_GPL vmlinux 0x85e181db add_page_wait_queue -EXPORT_SYMBOL_GPL vmlinux 0x85ed2d98 ethnl_cable_test_free -EXPORT_SYMBOL_GPL vmlinux 0x85eed1be iopf_queue_discard_partial -EXPORT_SYMBOL_GPL vmlinux 0x85fd7d46 xhci_check_bandwidth -EXPORT_SYMBOL_GPL vmlinux 0x8600bbb4 raw_seq_next -EXPORT_SYMBOL_GPL vmlinux 0x860b4d74 ata_bmdma_port_start -EXPORT_SYMBOL_GPL vmlinux 0x861cf9a2 alarm_start_relative -EXPORT_SYMBOL_GPL vmlinux 0x862252f5 transport_setup_device -EXPORT_SYMBOL_GPL vmlinux 0x862258db timecounter_init -EXPORT_SYMBOL_GPL vmlinux 0x862bb17b linear_range_values_in_range_array -EXPORT_SYMBOL_GPL vmlinux 0x862d5c67 ata_sff_softreset -EXPORT_SYMBOL_GPL vmlinux 0x86353b85 pinctrl_generic_get_group_name -EXPORT_SYMBOL_GPL vmlinux 0x86585a33 devlink_fmsg_obj_nest_start -EXPORT_SYMBOL_GPL vmlinux 0x86623fd7 notify_remote_via_irq -EXPORT_SYMBOL_GPL vmlinux 0x8663b1c9 devlink_rate_leaf_create -EXPORT_SYMBOL_GPL vmlinux 0x866af400 debugfs_print_regs32 -EXPORT_SYMBOL_GPL vmlinux 0x86700220 acpi_get_cpuid -EXPORT_SYMBOL_GPL vmlinux 0x86733597 iomap_page_mkwrite -EXPORT_SYMBOL_GPL vmlinux 0x8677245d unregister_switchdev_blocking_notifier -EXPORT_SYMBOL_GPL vmlinux 0x868784cb __symbol_get -EXPORT_SYMBOL_GPL vmlinux 0x868e35ec devm_regulator_register_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0x86a2cce4 bpf_sk_storage_diag_put -EXPORT_SYMBOL_GPL vmlinux 0x86ade729 fat_flush_inodes -EXPORT_SYMBOL_GPL vmlinux 0x86b1ceb3 tegra210_set_sata_pll_seq_sw -EXPORT_SYMBOL_GPL vmlinux 0x86bcffa3 usb_queue_reset_device -EXPORT_SYMBOL_GPL vmlinux 0x86c02001 ipi_send_mask -EXPORT_SYMBOL_GPL vmlinux 0x86c19895 regmap_bulk_read -EXPORT_SYMBOL_GPL vmlinux 0x86c1e982 sk_msg_free_nocharge -EXPORT_SYMBOL_GPL vmlinux 0x86c43a8c cper_estatus_check -EXPORT_SYMBOL_GPL vmlinux 0x86c7706e tty_get_icount -EXPORT_SYMBOL_GPL vmlinux 0x86c961b3 __set_dax_synchronous -EXPORT_SYMBOL_GPL vmlinux 0x86ce1494 pci_d3cold_disable -EXPORT_SYMBOL_GPL vmlinux 0x86dda6ef rtm_getroute_parse_ip_proto -EXPORT_SYMBOL_GPL vmlinux 0x86df9405 sdio_writesb -EXPORT_SYMBOL_GPL vmlinux 0x86e5132b hwspin_lock_free -EXPORT_SYMBOL_GPL vmlinux 0x86f6b99d synchronize_rcu_expedited -EXPORT_SYMBOL_GPL vmlinux 0x86f85114 net_dec_egress_queue -EXPORT_SYMBOL_GPL vmlinux 0x86f919a9 irq_domain_associate_many -EXPORT_SYMBOL_GPL vmlinux 0x870435c2 tracing_snapshot_cond_disable -EXPORT_SYMBOL_GPL vmlinux 0x870c7a5f fixed_phy_change_carrier -EXPORT_SYMBOL_GPL vmlinux 0x870cbcda device_property_present -EXPORT_SYMBOL_GPL vmlinux 0x870e16b7 xen_test_irq_shared -EXPORT_SYMBOL_GPL vmlinux 0x871a2b49 blkcg_deactivate_policy -EXPORT_SYMBOL_GPL vmlinux 0x871f1f71 fib_info_nh_uses_dev -EXPORT_SYMBOL_GPL vmlinux 0x8733df0f iommu_map_atomic -EXPORT_SYMBOL_GPL vmlinux 0x8748176c ehci_suspend -EXPORT_SYMBOL_GPL vmlinux 0x87519672 reserve_iova -EXPORT_SYMBOL_GPL vmlinux 0x875582b7 nvmem_del_cell_table -EXPORT_SYMBOL_GPL vmlinux 0x875ec166 edac_mc_del_mc -EXPORT_SYMBOL_GPL vmlinux 0x8764c6a2 gpiod_cansleep -EXPORT_SYMBOL_GPL vmlinux 0x8775fab5 create_signature -EXPORT_SYMBOL_GPL vmlinux 0x878da86a usb_put_phy -EXPORT_SYMBOL_GPL vmlinux 0x87c5ad2a nvdimm_kobj -EXPORT_SYMBOL_GPL vmlinux 0x87d454e8 mmu_interval_notifier_remove -EXPORT_SYMBOL_GPL vmlinux 0x87dc2714 dma_buf_vunmap -EXPORT_SYMBOL_GPL vmlinux 0x87de2557 dev_pm_opp_find_freq_ceil -EXPORT_SYMBOL_GPL vmlinux 0x87dfa843 regmap_attach_dev -EXPORT_SYMBOL_GPL vmlinux 0x87edbab2 of_get_pci_domain_nr -EXPORT_SYMBOL_GPL vmlinux 0x87f1da16 fscrypt_prepare_symlink -EXPORT_SYMBOL_GPL vmlinux 0x87f1f297 devres_add -EXPORT_SYMBOL_GPL vmlinux 0x8810e36e pci_bridge_emul_conf_read -EXPORT_SYMBOL_GPL vmlinux 0x88141e0c edac_pci_del_device -EXPORT_SYMBOL_GPL vmlinux 0x8821400c gnttab_unmap_refs_async -EXPORT_SYMBOL_GPL vmlinux 0x88284691 free_iova_fast -EXPORT_SYMBOL_GPL vmlinux 0x88387b84 spi_new_ancillary_device -EXPORT_SYMBOL_GPL vmlinux 0x884bfaa2 pci_reset_function -EXPORT_SYMBOL_GPL vmlinux 0x885528a6 ring_buffer_discard_commit -EXPORT_SYMBOL_GPL vmlinux 0x885766d3 tracing_snapshot_cond -EXPORT_SYMBOL_GPL vmlinux 0x888cbdec ndo_dflt_bridge_getlink -EXPORT_SYMBOL_GPL vmlinux 0x8890d9b6 blk_ksm_intersect_modes -EXPORT_SYMBOL_GPL vmlinux 0x8896619f mmc_send_status -EXPORT_SYMBOL_GPL vmlinux 0x88ab6fe3 kgdb_active -EXPORT_SYMBOL_GPL vmlinux 0x88b14d45 device_dma_supported -EXPORT_SYMBOL_GPL vmlinux 0x88b1b6bf pm_generic_runtime_resume -EXPORT_SYMBOL_GPL vmlinux 0x88b4ae92 ring_buffer_normalize_time_stamp -EXPORT_SYMBOL_GPL vmlinux 0x88c5c5de __ip6_local_out -EXPORT_SYMBOL_GPL vmlinux 0x88cd7a9a k3_ringacc_ring_get_occ -EXPORT_SYMBOL_GPL vmlinux 0x88d46c71 genphy_c45_loopback -EXPORT_SYMBOL_GPL vmlinux 0x88d51075 serial8250_handle_irq -EXPORT_SYMBOL_GPL vmlinux 0x88d533d8 genphy_c45_pma_resume -EXPORT_SYMBOL_GPL vmlinux 0x88e57308 cpci_hp_unregister_controller -EXPORT_SYMBOL_GPL vmlinux 0x88e9e0e6 of_device_uevent_modalias -EXPORT_SYMBOL_GPL vmlinux 0x89076974 task_cls_state -EXPORT_SYMBOL_GPL vmlinux 0x890f4f97 __kprobe_event_gen_cmd_start -EXPORT_SYMBOL_GPL vmlinux 0x8913e3e5 clk_mux_val_to_index -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 0x89485687 iommu_group_put -EXPORT_SYMBOL_GPL vmlinux 0x8954dc8e __SCK__tp_func_br_fdb_external_learn_add -EXPORT_SYMBOL_GPL vmlinux 0x8960d133 rio_mport_initialize -EXPORT_SYMBOL_GPL vmlinux 0x89781655 fsnotify_destroy_mark -EXPORT_SYMBOL_GPL vmlinux 0x897ea21c em_dev_register_perf_domain -EXPORT_SYMBOL_GPL vmlinux 0x8986138f regulator_set_current_limit_regmap -EXPORT_SYMBOL_GPL vmlinux 0x898ae273 blocking_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0x899204f2 securityfs_create_dir -EXPORT_SYMBOL_GPL vmlinux 0x89a346c8 i2c_new_ancillary_device -EXPORT_SYMBOL_GPL vmlinux 0x89a4476d HYPERVISOR_multicall -EXPORT_SYMBOL_GPL vmlinux 0x89ae7aa0 rsa_parse_pub_key -EXPORT_SYMBOL_GPL vmlinux 0x89bb51bc dm_bio_get_target_bio_nr -EXPORT_SYMBOL_GPL vmlinux 0x89bb7e66 ata_scsi_slave_config -EXPORT_SYMBOL_GPL vmlinux 0x89bbafc6 usb_register_notify -EXPORT_SYMBOL_GPL vmlinux 0x89c429e4 __tracepoint_mc_event -EXPORT_SYMBOL_GPL vmlinux 0x89d12c51 screen_glyph_unicode -EXPORT_SYMBOL_GPL vmlinux 0x89d6ba30 __crypto_alloc_tfm -EXPORT_SYMBOL_GPL vmlinux 0x89e340cf acpi_bus_get_ejd -EXPORT_SYMBOL_GPL vmlinux 0x89f028ad stmpe_enable -EXPORT_SYMBOL_GPL vmlinux 0x89f3ca3a scsi_dh_set_params -EXPORT_SYMBOL_GPL vmlinux 0x89f4f43e sched_trace_cfs_rq_path -EXPORT_SYMBOL_GPL vmlinux 0x8a026bab sched_trace_rq_avg_irq -EXPORT_SYMBOL_GPL vmlinux 0x8a11a527 __pm_runtime_suspend -EXPORT_SYMBOL_GPL vmlinux 0x8a11b5e0 dev_pm_opp_of_add_table_noclk -EXPORT_SYMBOL_GPL vmlinux 0x8a1a6b8d regmap_irq_get_domain -EXPORT_SYMBOL_GPL vmlinux 0x8a29c6ec security_inode_setattr -EXPORT_SYMBOL_GPL vmlinux 0x8a365904 amba_device_put -EXPORT_SYMBOL_GPL vmlinux 0x8a38fe0d regulator_disable_regmap -EXPORT_SYMBOL_GPL vmlinux 0x8a3b46f6 kernfs_find_and_get_ns -EXPORT_SYMBOL_GPL vmlinux 0x8a3c9db9 badblocks_clear -EXPORT_SYMBOL_GPL vmlinux 0x8a3cc3f2 event_triggers_call -EXPORT_SYMBOL_GPL vmlinux 0x8a3f84ba linear_range_get_selector_low -EXPORT_SYMBOL_GPL vmlinux 0x8a45a555 acpi_unregister_wakeup_handler -EXPORT_SYMBOL_GPL vmlinux 0x8a4ae15a usb_hcd_resume_root_hub -EXPORT_SYMBOL_GPL vmlinux 0x8a4bf32c ping_err -EXPORT_SYMBOL_GPL vmlinux 0x8a554a36 mpc8xxx_spi_strmode -EXPORT_SYMBOL_GPL vmlinux 0x8a5da07b pinctrl_generic_add_group -EXPORT_SYMBOL_GPL vmlinux 0x8a62b81b sfp_upstream_stop -EXPORT_SYMBOL_GPL vmlinux 0x8a66c116 relay_switch_subbuf -EXPORT_SYMBOL_GPL vmlinux 0x8a7a39ef regulator_set_suspend_voltage -EXPORT_SYMBOL_GPL vmlinux 0x8a7b2c04 phy_destroy -EXPORT_SYMBOL_GPL vmlinux 0x8a83fb45 mpi_point_free_parts -EXPORT_SYMBOL_GPL vmlinux 0x8a96456d bpf_verifier_log_write -EXPORT_SYMBOL_GPL vmlinux 0x8aa2dc49 pstore_register -EXPORT_SYMBOL_GPL vmlinux 0x8aa9fb37 devlink_sb_register -EXPORT_SYMBOL_GPL vmlinux 0x8abacc47 get_max_files -EXPORT_SYMBOL_GPL vmlinux 0x8abf8aa7 pm_clk_remove -EXPORT_SYMBOL_GPL vmlinux 0x8ac868b3 ata_bmdma32_port_ops -EXPORT_SYMBOL_GPL vmlinux 0x8ad1edb2 of_thermal_get_trip_points -EXPORT_SYMBOL_GPL vmlinux 0x8ae5b0ac trace_output_call -EXPORT_SYMBOL_GPL vmlinux 0x8ae7020d shmem_file_setup -EXPORT_SYMBOL_GPL vmlinux 0x8aed7869 crypto_grab_aead -EXPORT_SYMBOL_GPL vmlinux 0x8af17b31 da9052_request_irq -EXPORT_SYMBOL_GPL vmlinux 0x8af4de30 vfs_read -EXPORT_SYMBOL_GPL vmlinux 0x8b0c8559 devm_regulator_irq_helper -EXPORT_SYMBOL_GPL vmlinux 0x8b0cfcd2 ping_queue_rcv_skb -EXPORT_SYMBOL_GPL vmlinux 0x8b13fc3b devlink_port_attrs_pci_sf_set -EXPORT_SYMBOL_GPL vmlinux 0x8b149c36 clk_is_match -EXPORT_SYMBOL_GPL vmlinux 0x8b180ae9 device_rename -EXPORT_SYMBOL_GPL vmlinux 0x8b1ea527 pci_epc_mem_init -EXPORT_SYMBOL_GPL vmlinux 0x8b317f7c get_kernel_pages -EXPORT_SYMBOL_GPL vmlinux 0x8b435b2b mtk_pinconf_drive_get -EXPORT_SYMBOL_GPL vmlinux 0x8b52039d fwnode_connection_find_match -EXPORT_SYMBOL_GPL vmlinux 0x8b5b1b84 acpi_subsys_suspend_noirq -EXPORT_SYMBOL_GPL vmlinux 0x8b5d7f05 mtk_pinconf_bias_get_rev1 -EXPORT_SYMBOL_GPL vmlinux 0x8b650752 mtk_mutex_release -EXPORT_SYMBOL_GPL vmlinux 0x8b68ec85 acpi_dma_configure_id -EXPORT_SYMBOL_GPL vmlinux 0x8b7a698b __tracepoint_xdp_exception -EXPORT_SYMBOL_GPL vmlinux 0x8ba0eb15 hv_set_vpreg -EXPORT_SYMBOL_GPL vmlinux 0x8ba5afe9 HYPERVISOR_memory_op -EXPORT_SYMBOL_GPL vmlinux 0x8bb63947 noop_backing_dev_info -EXPORT_SYMBOL_GPL vmlinux 0x8bbed239 xfrm_local_error -EXPORT_SYMBOL_GPL vmlinux 0x8bc21b10 gen_pool_avail -EXPORT_SYMBOL_GPL vmlinux 0x8bcf5855 ata_sff_data_xfer32 -EXPORT_SYMBOL_GPL vmlinux 0x8bcfd02d fs_kobj -EXPORT_SYMBOL_GPL vmlinux 0x8bdc33ce __traceiter_neigh_cleanup_and_release -EXPORT_SYMBOL_GPL vmlinux 0x8bee4af4 xfrm_audit_policy_add -EXPORT_SYMBOL_GPL vmlinux 0x8bf5f379 k3_udma_glue_release_tx_chn -EXPORT_SYMBOL_GPL vmlinux 0x8bfdbfe6 ip_route_output_tunnel -EXPORT_SYMBOL_GPL vmlinux 0x8c0215f2 pm_system_wakeup -EXPORT_SYMBOL_GPL vmlinux 0x8c03d20c destroy_workqueue -EXPORT_SYMBOL_GPL vmlinux 0x8c05154a fwnode_remove_software_node -EXPORT_SYMBOL_GPL vmlinux 0x8c0ed103 rcu_check_boost_fail -EXPORT_SYMBOL_GPL vmlinux 0x8c109273 __traceiter_neigh_event_send_done -EXPORT_SYMBOL_GPL vmlinux 0x8c2214dd clk_gate_ops -EXPORT_SYMBOL_GPL vmlinux 0x8c228e8e __devres_alloc_node -EXPORT_SYMBOL_GPL vmlinux 0x8c30665c fsl_mc_bus_dpio_type -EXPORT_SYMBOL_GPL vmlinux 0x8c32b177 __rtnl_link_register -EXPORT_SYMBOL_GPL vmlinux 0x8c3805cd of_pci_get_max_link_speed -EXPORT_SYMBOL_GPL vmlinux 0x8c484409 gnttab_release_grant_reference -EXPORT_SYMBOL_GPL vmlinux 0x8c60ed56 regulator_set_mode -EXPORT_SYMBOL_GPL vmlinux 0x8c725a31 kick_process -EXPORT_SYMBOL_GPL vmlinux 0x8c743fb6 reset_control_status -EXPORT_SYMBOL_GPL vmlinux 0x8c746a93 genphy_c45_pma_suspend -EXPORT_SYMBOL_GPL vmlinux 0x8c776a32 scsi_target_block -EXPORT_SYMBOL_GPL vmlinux 0x8c89e3b8 usb_phy_roothub_power_off -EXPORT_SYMBOL_GPL vmlinux 0x8c8d2320 xenbus_dev_error -EXPORT_SYMBOL_GPL vmlinux 0x8c94329c synth_event_trace -EXPORT_SYMBOL_GPL vmlinux 0x8c98bd1e pci_ioremap_bar -EXPORT_SYMBOL_GPL vmlinux 0x8ca00bae gpiochip_populate_parent_fwspec_fourcell -EXPORT_SYMBOL_GPL vmlinux 0x8cb3d5b8 gpiochip_irq_map -EXPORT_SYMBOL_GPL vmlinux 0x8cb5a38e k3_udma_glue_rx_flow_disable -EXPORT_SYMBOL_GPL vmlinux 0x8ce2d446 __tracepoint_block_rq_remap -EXPORT_SYMBOL_GPL vmlinux 0x8ce5a622 serdev_device_wait_until_sent -EXPORT_SYMBOL_GPL vmlinux 0x8ceece13 spi_mem_dirmap_write -EXPORT_SYMBOL_GPL vmlinux 0x8cfc7bc8 cpu_latency_qos_add_request -EXPORT_SYMBOL_GPL vmlinux 0x8d0abf3a __tracepoint_io_page_fault -EXPORT_SYMBOL_GPL vmlinux 0x8d10a608 dev_pm_clear_wake_irq -EXPORT_SYMBOL_GPL vmlinux 0x8d11e0df rockchip_pcie_init_port -EXPORT_SYMBOL_GPL vmlinux 0x8d199158 sdio_set_host_pm_flags -EXPORT_SYMBOL_GPL vmlinux 0x8d1eb0d6 alarm_try_to_cancel -EXPORT_SYMBOL_GPL vmlinux 0x8d22bb58 iommu_group_alloc -EXPORT_SYMBOL_GPL vmlinux 0x8d3330b6 cpuacct_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x8d3ac8d3 extcon_sync -EXPORT_SYMBOL_GPL vmlinux 0x8d522714 __rcu_read_lock -EXPORT_SYMBOL_GPL vmlinux 0x8d52e905 fsl_mc_portal_reset -EXPORT_SYMBOL_GPL vmlinux 0x8d682fdd reset_controller_register -EXPORT_SYMBOL_GPL vmlinux 0x8d724315 __skb_get_hash_symmetric -EXPORT_SYMBOL_GPL vmlinux 0x8d79fe0d con_debug_enter -EXPORT_SYMBOL_GPL vmlinux 0x8d7a5e3f call_switchdev_notifiers -EXPORT_SYMBOL_GPL vmlinux 0x8d7e3373 hwpoison_filter_dev_major -EXPORT_SYMBOL_GPL vmlinux 0x8d8f603f mptcp_pm_get_local_addr_max -EXPORT_SYMBOL_GPL vmlinux 0x8d913189 alarm_start -EXPORT_SYMBOL_GPL vmlinux 0x8d9688f8 cpufreq_freq_transition_end -EXPORT_SYMBOL_GPL vmlinux 0x8d9d8d08 inet_hashinfo2_init_mod -EXPORT_SYMBOL_GPL vmlinux 0x8daf96c0 fsverity_ioctl_enable -EXPORT_SYMBOL_GPL vmlinux 0x8dafdded lwtunnel_valid_encap_type_attr -EXPORT_SYMBOL_GPL vmlinux 0x8dbf7aaa privcmd_call -EXPORT_SYMBOL_GPL vmlinux 0x8dc6877e gpiochip_add_pin_range -EXPORT_SYMBOL_GPL vmlinux 0x8dd218b0 icc_bulk_disable -EXPORT_SYMBOL_GPL vmlinux 0x8dd70e61 fuse_free_conn -EXPORT_SYMBOL_GPL vmlinux 0x8de6817a acpi_dev_resource_address_space -EXPORT_SYMBOL_GPL vmlinux 0x8e16419b trace_clock_local -EXPORT_SYMBOL_GPL vmlinux 0x8e233ac3 bpf_prog_create_from_user -EXPORT_SYMBOL_GPL vmlinux 0x8e3554df fwnode_property_read_u16_array -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 0x8e581721 debugfs_create_file_size -EXPORT_SYMBOL_GPL vmlinux 0x8e618340 do_take_over_console -EXPORT_SYMBOL_GPL vmlinux 0x8e6b1a9e net_selftest_get_count -EXPORT_SYMBOL_GPL vmlinux 0x8e6ecee7 ahash_register_instance -EXPORT_SYMBOL_GPL vmlinux 0x8e6fa8b5 apei_exec_pre_map_gars -EXPORT_SYMBOL_GPL vmlinux 0x8e7c4eab bus_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x8e7f0a9c acpi_get_phys_id -EXPORT_SYMBOL_GPL vmlinux 0x8e92f7c4 static_key_slow_inc -EXPORT_SYMBOL_GPL vmlinux 0x8ead800c user_free_preparse -EXPORT_SYMBOL_GPL vmlinux 0x8eba942d pskb_put -EXPORT_SYMBOL_GPL vmlinux 0x8ebca520 to_nd_region -EXPORT_SYMBOL_GPL vmlinux 0x8ec88c23 add_to_page_cache_lru -EXPORT_SYMBOL_GPL vmlinux 0x8eda4536 device_remove_bin_file -EXPORT_SYMBOL_GPL vmlinux 0x8ede3434 cpuidle_register_driver -EXPORT_SYMBOL_GPL vmlinux 0x8ee57198 mdio_mux_init -EXPORT_SYMBOL_GPL vmlinux 0x8ee9a844 of_dma_request_slave_channel -EXPORT_SYMBOL_GPL vmlinux 0x8eea758d irq_create_mapping_affinity -EXPORT_SYMBOL_GPL vmlinux 0x8eec19bd __SCK__tp_func_pelt_dl_tp -EXPORT_SYMBOL_GPL vmlinux 0x8eed0fa2 sbitmap_get_shallow -EXPORT_SYMBOL_GPL vmlinux 0x8eee3399 dax_read_unlock -EXPORT_SYMBOL_GPL vmlinux 0x8effb505 phy_gbit_features -EXPORT_SYMBOL_GPL vmlinux 0x8f0748af rcu_expedite_gp -EXPORT_SYMBOL_GPL vmlinux 0x8f08f45b spi_async -EXPORT_SYMBOL_GPL vmlinux 0x8f10d234 __fscrypt_prepare_readdir -EXPORT_SYMBOL_GPL vmlinux 0x8f19b568 mtk_pinconf_bias_get -EXPORT_SYMBOL_GPL vmlinux 0x8f217047 pm_genpd_remove_device -EXPORT_SYMBOL_GPL vmlinux 0x8f22e6f8 dax_attribute_group -EXPORT_SYMBOL_GPL vmlinux 0x8f33c92f dev_pm_opp_of_cpumask_add_table -EXPORT_SYMBOL_GPL vmlinux 0x8f378d4e devm_kmemdup -EXPORT_SYMBOL_GPL vmlinux 0x8f3969e1 zynqmp_pm_clock_getrate -EXPORT_SYMBOL_GPL vmlinux 0x8f3add11 sock_prot_inuse_get -EXPORT_SYMBOL_GPL vmlinux 0x8f4fb0a9 wm8350_gpio_config -EXPORT_SYMBOL_GPL vmlinux 0x8f556e3f clk_hw_get_name -EXPORT_SYMBOL_GPL vmlinux 0x8f6cee77 __round_jiffies_relative -EXPORT_SYMBOL_GPL vmlinux 0x8f7337f2 sk_msg_zerocopy_from_iter -EXPORT_SYMBOL_GPL vmlinux 0x8f786bee fs_umode_to_dtype -EXPORT_SYMBOL_GPL vmlinux 0x8f7888b7 nvdimm_clear_poison -EXPORT_SYMBOL_GPL vmlinux 0x8f7d3b13 pci_disable_pri -EXPORT_SYMBOL_GPL vmlinux 0x8f89d299 devm_of_phy_get -EXPORT_SYMBOL_GPL vmlinux 0x8f9f5fcd tpm_default_chip -EXPORT_SYMBOL_GPL vmlinux 0x8f9fa78d of_property_read_variable_u32_array -EXPORT_SYMBOL_GPL vmlinux 0x8faa800d acpi_cpc_valid -EXPORT_SYMBOL_GPL vmlinux 0x8fb5df53 devm_gpiod_get_from_of_node -EXPORT_SYMBOL_GPL vmlinux 0x8fb72cae fwnode_graph_get_remote_port -EXPORT_SYMBOL_GPL vmlinux 0x8fbc3af4 skcipher_walk_virt -EXPORT_SYMBOL_GPL vmlinux 0x8fc12788 software_node_unregister_node_group -EXPORT_SYMBOL_GPL vmlinux 0x8fc22687 phy_package_leave -EXPORT_SYMBOL_GPL vmlinux 0x8fcba8f1 of_phy_get -EXPORT_SYMBOL_GPL vmlinux 0x8fdc4615 irq_domain_free_irqs_common -EXPORT_SYMBOL_GPL vmlinux 0x8ff60436 mpi_ec_add_points -EXPORT_SYMBOL_GPL vmlinux 0x8ff8a3a5 mmu_interval_notifier_insert -EXPORT_SYMBOL_GPL vmlinux 0x8ffe792f tracepoint_probe_register_prio_may_exist -EXPORT_SYMBOL_GPL vmlinux 0x900997f3 virtqueue_add_inbuf_ctx -EXPORT_SYMBOL_GPL vmlinux 0x9010edb0 pkcs7_validate_trust -EXPORT_SYMBOL_GPL vmlinux 0x903b1682 crypto_aead_setkey -EXPORT_SYMBOL_GPL vmlinux 0x903b627c list_lru_isolate_move -EXPORT_SYMBOL_GPL vmlinux 0x903bff2f power_supply_unregister -EXPORT_SYMBOL_GPL vmlinux 0x904b6258 gpiochip_remove_pin_ranges -EXPORT_SYMBOL_GPL vmlinux 0x90636f5b __reset_control_bulk_get -EXPORT_SYMBOL_GPL vmlinux 0x906474a7 gnttab_pages_set_private -EXPORT_SYMBOL_GPL vmlinux 0x9065799a devm_regmap_add_irq_chip -EXPORT_SYMBOL_GPL vmlinux 0x90688bcd devlink_info_driver_name_put -EXPORT_SYMBOL_GPL vmlinux 0x90735346 usb_free_coherent -EXPORT_SYMBOL_GPL vmlinux 0x90829fcd irq_chip_set_vcpu_affinity_parent -EXPORT_SYMBOL_GPL vmlinux 0x908ca6e7 thermal_zone_of_sensor_unregister -EXPORT_SYMBOL_GPL vmlinux 0x90981ade devlink_traps_unregister -EXPORT_SYMBOL_GPL vmlinux 0x90995676 acpi_subsys_suspend -EXPORT_SYMBOL_GPL vmlinux 0x90a0d5d1 i2c_bus_type -EXPORT_SYMBOL_GPL vmlinux 0x90a12787 __ata_change_queue_depth -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 0x90b8f214 ata_pio_need_iordy -EXPORT_SYMBOL_GPL vmlinux 0x90b9444f of_irq_get -EXPORT_SYMBOL_GPL vmlinux 0x90c8498c apei_exec_write_register -EXPORT_SYMBOL_GPL vmlinux 0x90d1bbcb devm_regulator_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x90d341c4 xas_init_marks -EXPORT_SYMBOL_GPL vmlinux 0x90d937b4 __tracepoint_pelt_rt_tp -EXPORT_SYMBOL_GPL vmlinux 0x90f11763 ata_sff_check_status -EXPORT_SYMBOL_GPL vmlinux 0x90f64203 alloc_io_pgtable_ops -EXPORT_SYMBOL_GPL vmlinux 0x90f938ef attribute_container_unregister -EXPORT_SYMBOL_GPL vmlinux 0x90fc1ffe vtime_guest_enter -EXPORT_SYMBOL_GPL vmlinux 0x9101ace9 bus_create_file -EXPORT_SYMBOL_GPL vmlinux 0x910bdf6b trace_seq_vprintf -EXPORT_SYMBOL_GPL vmlinux 0x911cbcaf driver_register -EXPORT_SYMBOL_GPL vmlinux 0x91247bd7 crypto_stats_akcipher_encrypt -EXPORT_SYMBOL_GPL vmlinux 0x912db3e3 tty_prepare_flip_string -EXPORT_SYMBOL_GPL vmlinux 0x912e0d04 spi_bus_lock -EXPORT_SYMBOL_GPL vmlinux 0x9146caba usb_poison_anchored_urbs -EXPORT_SYMBOL_GPL vmlinux 0x915b6b28 sysfs_remove_file_self -EXPORT_SYMBOL_GPL vmlinux 0x9168c0c9 __inet_inherit_port -EXPORT_SYMBOL_GPL vmlinux 0x918adcfd rio_del_device -EXPORT_SYMBOL_GPL vmlinux 0x9194e18f xenbus_mkdir -EXPORT_SYMBOL_GPL vmlinux 0x91955a9f start_poll_synchronize_rcu -EXPORT_SYMBOL_GPL vmlinux 0x91998426 trace_array_set_clr_event -EXPORT_SYMBOL_GPL vmlinux 0x919ac9c4 __traceiter_attach_device_to_domain -EXPORT_SYMBOL_GPL vmlinux 0x91b1239d blk_clear_pm_only -EXPORT_SYMBOL_GPL vmlinux 0x91b774a1 mpi_scanval -EXPORT_SYMBOL_GPL vmlinux 0x91b80c47 dev_pm_opp_remove_all_dynamic -EXPORT_SYMBOL_GPL vmlinux 0x91c6e5b0 pcap_to_irq -EXPORT_SYMBOL_GPL vmlinux 0x91c73ee4 __rt_mutex_init -EXPORT_SYMBOL_GPL vmlinux 0x91c800dd irq_domain_get_irq_data -EXPORT_SYMBOL_GPL vmlinux 0x91c9313c acpi_gpio_get_io_resource -EXPORT_SYMBOL_GPL vmlinux 0x91e30809 HYPERVISOR_vm_assist -EXPORT_SYMBOL_GPL vmlinux 0x91ea8726 asn1_encode_boolean -EXPORT_SYMBOL_GPL vmlinux 0x91f297a7 spi_get_next_queued_message -EXPORT_SYMBOL_GPL vmlinux 0x91ff63b3 __devm_reset_control_get -EXPORT_SYMBOL_GPL vmlinux 0x920cc389 visitorl -EXPORT_SYMBOL_GPL vmlinux 0x920d6d33 meson_clk_dualdiv_ro_ops -EXPORT_SYMBOL_GPL vmlinux 0x923a25cf tty_buffer_set_limit -EXPORT_SYMBOL_GPL vmlinux 0x923e42aa sysfb_disable -EXPORT_SYMBOL_GPL vmlinux 0x9241b358 __static_key_slow_dec_deferred -EXPORT_SYMBOL_GPL vmlinux 0x9248804c thermal_zone_of_get_sensor_id -EXPORT_SYMBOL_GPL vmlinux 0x924c46f8 zs_unmap_object -EXPORT_SYMBOL_GPL vmlinux 0x92544361 xen_dbgp_reset_prep -EXPORT_SYMBOL_GPL vmlinux 0x9260c69c dev_pm_qos_update_user_latency_tolerance -EXPORT_SYMBOL_GPL vmlinux 0x92732c44 __clk_mux_determine_rate -EXPORT_SYMBOL_GPL vmlinux 0x927487ea zynqmp_pm_read_ggs -EXPORT_SYMBOL_GPL vmlinux 0x927e6ee8 tpm_chip_register -EXPORT_SYMBOL_GPL vmlinux 0x92abf55c nvdimm_badblocks_populate -EXPORT_SYMBOL_GPL vmlinux 0x92b8c78b hyperv_pcpu_output_arg -EXPORT_SYMBOL_GPL vmlinux 0x92c4cbab cpuidle_register -EXPORT_SYMBOL_GPL vmlinux 0x92d0eab4 shake_page -EXPORT_SYMBOL_GPL vmlinux 0x92d31cfb fixed_phy_add -EXPORT_SYMBOL_GPL vmlinux 0x92db8f68 do_trace_rcu_torture_read -EXPORT_SYMBOL_GPL vmlinux 0x92dc128a cpufreq_register_driver -EXPORT_SYMBOL_GPL vmlinux 0x92e8e9ab fsverity_enqueue_verify_work -EXPORT_SYMBOL_GPL vmlinux 0x92e9a2f0 xenbus_dev_groups -EXPORT_SYMBOL_GPL vmlinux 0x92f01156 pinctrl_get_group_pins -EXPORT_SYMBOL_GPL vmlinux 0x92f8f786 inode_dax -EXPORT_SYMBOL_GPL vmlinux 0x92fea781 fib_nl_newrule -EXPORT_SYMBOL_GPL vmlinux 0x9302db01 netlink_strict_get_check -EXPORT_SYMBOL_GPL vmlinux 0x930ab533 k3_ringacc_request_ring -EXPORT_SYMBOL_GPL vmlinux 0x930e585c devm_acpi_dma_controller_register -EXPORT_SYMBOL_GPL vmlinux 0x93136e50 l3mdev_update_flow -EXPORT_SYMBOL_GPL vmlinux 0x93255b2b ring_buffer_lock_reserve -EXPORT_SYMBOL_GPL vmlinux 0x9329d9fd spi_bus_type -EXPORT_SYMBOL_GPL vmlinux 0x932b221c cpu_subsys -EXPORT_SYMBOL_GPL vmlinux 0x932c8d7a linear_range_get_value_array -EXPORT_SYMBOL_GPL vmlinux 0x93407c8b cookie_tcp_reqsk_alloc -EXPORT_SYMBOL_GPL vmlinux 0x934dfe45 nvmem_cell_read_variable_le_u64 -EXPORT_SYMBOL_GPL vmlinux 0x9359d06e usb_hcd_link_urb_to_ep -EXPORT_SYMBOL_GPL vmlinux 0x935e2bff component_unbind_all -EXPORT_SYMBOL_GPL vmlinux 0x935f504b gpiod_get_optional -EXPORT_SYMBOL_GPL vmlinux 0x936cd5b9 extcon_get_extcon_dev -EXPORT_SYMBOL_GPL vmlinux 0x9372d57f gpiochip_irqchip_add_domain -EXPORT_SYMBOL_GPL vmlinux 0x937c9f04 dax_layout_busy_page -EXPORT_SYMBOL_GPL vmlinux 0x938895f0 ata_eh_analyze_ncq_error -EXPORT_SYMBOL_GPL vmlinux 0x938eb780 regcache_cache_only -EXPORT_SYMBOL_GPL vmlinux 0x939289d6 ata_sas_scsi_ioctl -EXPORT_SYMBOL_GPL vmlinux 0x939b3cb9 blkdev_report_zones -EXPORT_SYMBOL_GPL vmlinux 0x93ab3fbc fsl_mc_bus_dpaiop_type -EXPORT_SYMBOL_GPL vmlinux 0x93b91587 devlink_port_unregister -EXPORT_SYMBOL_GPL vmlinux 0x93c09ae3 xenbus_frontend_closed -EXPORT_SYMBOL_GPL vmlinux 0x93c7edeb usb_find_common_endpoints -EXPORT_SYMBOL_GPL vmlinux 0x93d1d424 gnttab_free_grant_references -EXPORT_SYMBOL_GPL vmlinux 0x93edef07 devlink_health_report -EXPORT_SYMBOL_GPL vmlinux 0x93f55fe0 power_supply_batinfo_ocv2cap -EXPORT_SYMBOL_GPL vmlinux 0x93f75af7 regulator_set_pull_down_regmap -EXPORT_SYMBOL_GPL vmlinux 0x93fb71a2 inet_csk_addr2sockaddr -EXPORT_SYMBOL_GPL vmlinux 0x94160518 __put_task_struct_rcu_cb -EXPORT_SYMBOL_GPL vmlinux 0x941c8d9a gpiod_get_array -EXPORT_SYMBOL_GPL vmlinux 0x941f2aaa eventfd_ctx_put -EXPORT_SYMBOL_GPL vmlinux 0x9425bb34 nvmem_dev_name -EXPORT_SYMBOL_GPL vmlinux 0x9428001b sdio_writew -EXPORT_SYMBOL_GPL vmlinux 0x9430b198 trace_dump_stack -EXPORT_SYMBOL_GPL vmlinux 0x9436e405 memory_group_register_dynamic -EXPORT_SYMBOL_GPL vmlinux 0x943b0e47 dev_pm_qos_add_ancestor_request -EXPORT_SYMBOL_GPL vmlinux 0x943e70c2 iommu_attach_device -EXPORT_SYMBOL_GPL vmlinux 0x943fc708 xen_setup_shutdown_event -EXPORT_SYMBOL_GPL vmlinux 0x94448d62 find_mci_by_dev -EXPORT_SYMBOL_GPL vmlinux 0x9458afad pinctrl_utils_reserve_map -EXPORT_SYMBOL_GPL vmlinux 0x94590966 of_platform_populate -EXPORT_SYMBOL_GPL vmlinux 0x94594c00 dev_pm_qos_flags -EXPORT_SYMBOL_GPL vmlinux 0x9468ea70 schedule_hrtimeout_range_clock -EXPORT_SYMBOL_GPL vmlinux 0x946dd559 sha224_zero_message_hash -EXPORT_SYMBOL_GPL vmlinux 0x946e0b79 tcp_reno_undo_cwnd -EXPORT_SYMBOL_GPL vmlinux 0x94772287 apply_to_page_range -EXPORT_SYMBOL_GPL vmlinux 0x94898229 elv_rqhash_add -EXPORT_SYMBOL_GPL vmlinux 0x948d3eaf device_wakeup_enable -EXPORT_SYMBOL_GPL vmlinux 0x94931f9b crypto_alloc_tfm_node -EXPORT_SYMBOL_GPL vmlinux 0x949b5176 devlink_region_snapshot_create -EXPORT_SYMBOL_GPL vmlinux 0x949f7342 __alloc_percpu -EXPORT_SYMBOL_GPL vmlinux 0x94a3b316 cpufreq_unregister_driver -EXPORT_SYMBOL_GPL vmlinux 0x94aa781e fsl_mc_bus_dprtc_type -EXPORT_SYMBOL_GPL vmlinux 0x94af1850 scmi_protocol_unregister -EXPORT_SYMBOL_GPL vmlinux 0x94b853d6 serdev_device_close -EXPORT_SYMBOL_GPL vmlinux 0x94b881e2 serial8250_init_port -EXPORT_SYMBOL_GPL vmlinux 0x94c6b44e kthread_queue_work -EXPORT_SYMBOL_GPL vmlinux 0x94de90da usb_match_one_id -EXPORT_SYMBOL_GPL vmlinux 0x94e02d0b peernet2id_alloc -EXPORT_SYMBOL_GPL vmlinux 0x94e62d2e __set_phys_to_machine_multi -EXPORT_SYMBOL_GPL vmlinux 0x94ecac0f __xas_prev -EXPORT_SYMBOL_GPL vmlinux 0x94ef4d05 cpci_hp_stop -EXPORT_SYMBOL_GPL vmlinux 0x94f0136c irq_set_affinity_notifier -EXPORT_SYMBOL_GPL vmlinux 0x94f61fe1 _copy_from_iter_flushcache -EXPORT_SYMBOL_GPL vmlinux 0x9504cd20 dev_pm_qos_expose_flags -EXPORT_SYMBOL_GPL vmlinux 0x9504dccf crypto_aead_setauthsize -EXPORT_SYMBOL_GPL vmlinux 0x9504df26 irq_wake_thread -EXPORT_SYMBOL_GPL vmlinux 0x950a067a devm_hwmon_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0x951a2773 crypto_has_alg -EXPORT_SYMBOL_GPL vmlinux 0x951d9b1c platform_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0x952664c5 do_exit -EXPORT_SYMBOL_GPL vmlinux 0x953c8ef8 pci_ecam_free -EXPORT_SYMBOL_GPL vmlinux 0x953dcdea bpf_trace_run4 -EXPORT_SYMBOL_GPL vmlinux 0x953e1b9e ktime_get_real_seconds -EXPORT_SYMBOL_GPL vmlinux 0x95462dec blkcg_root -EXPORT_SYMBOL_GPL vmlinux 0x955b0e2e kthread_worker_fn -EXPORT_SYMBOL_GPL vmlinux 0x95609b26 context_tracking_key -EXPORT_SYMBOL_GPL vmlinux 0x95657ad8 trace_seq_path -EXPORT_SYMBOL_GPL vmlinux 0x9565bbb9 xdp_rxq_info_unreg -EXPORT_SYMBOL_GPL vmlinux 0x956ac400 ring_buffer_dropped_events_cpu -EXPORT_SYMBOL_GPL vmlinux 0x95785910 spi_mem_driver_unregister -EXPORT_SYMBOL_GPL vmlinux 0x957a2dcb class_for_each_device -EXPORT_SYMBOL_GPL vmlinux 0x95843030 mpi_ec_init -EXPORT_SYMBOL_GPL vmlinux 0x958513ed pl08x_filter_id -EXPORT_SYMBOL_GPL vmlinux 0x958df3ac zs_free -EXPORT_SYMBOL_GPL vmlinux 0x959223de rhashtable_init -EXPORT_SYMBOL_GPL vmlinux 0x9593ef31 register_ftrace_export -EXPORT_SYMBOL_GPL vmlinux 0x9595a38e pid_vnr -EXPORT_SYMBOL_GPL vmlinux 0x9597423b __traceiter_pelt_se_tp -EXPORT_SYMBOL_GPL vmlinux 0x9597c635 tty_ldisc_flush -EXPORT_SYMBOL_GPL vmlinux 0x959ec5f5 call_rcu_tasks -EXPORT_SYMBOL_GPL vmlinux 0x95a0cff3 nexthop_find_by_id -EXPORT_SYMBOL_GPL vmlinux 0x95ac59e1 irq_chip_disable_parent -EXPORT_SYMBOL_GPL vmlinux 0x95bc9078 btree_free -EXPORT_SYMBOL_GPL vmlinux 0x95beb801 clk_regmap_gate_ro_ops -EXPORT_SYMBOL_GPL vmlinux 0x95e102ab tracepoint_probe_register -EXPORT_SYMBOL_GPL vmlinux 0x95e12548 blk_mark_disk_dead -EXPORT_SYMBOL_GPL vmlinux 0x95ef1ccc dmi_memdev_size -EXPORT_SYMBOL_GPL vmlinux 0x9603028a iommu_unmap_fast -EXPORT_SYMBOL_GPL vmlinux 0x961286e0 ring_buffer_read_events_cpu -EXPORT_SYMBOL_GPL vmlinux 0x96176152 spi_write_then_read -EXPORT_SYMBOL_GPL vmlinux 0x961d8793 tcp_get_syncookie_mss -EXPORT_SYMBOL_GPL vmlinux 0x96554810 register_keyboard_notifier -EXPORT_SYMBOL_GPL vmlinux 0x96641ced ata_host_activate -EXPORT_SYMBOL_GPL vmlinux 0x966504ff serdev_device_write_room -EXPORT_SYMBOL_GPL vmlinux 0x96788ec8 rio_release_outb_mbox -EXPORT_SYMBOL_GPL vmlinux 0x967ba5b6 inet_twsk_put -EXPORT_SYMBOL_GPL vmlinux 0x96840667 xhci_add_endpoint -EXPORT_SYMBOL_GPL vmlinux 0x968f9a23 efivar_entry_iter_begin -EXPORT_SYMBOL_GPL vmlinux 0x969e020d fsl_mc_device_group -EXPORT_SYMBOL_GPL vmlinux 0x96a42c97 gpiochip_free_own_desc -EXPORT_SYMBOL_GPL vmlinux 0x96ab931d securityfs_create_file -EXPORT_SYMBOL_GPL vmlinux 0x96b3d226 __traceiter_tcp_bad_csum -EXPORT_SYMBOL_GPL vmlinux 0x96d738c6 pinctrl_find_gpio_range_from_pin_nolock -EXPORT_SYMBOL_GPL vmlinux 0x96e06df4 is_current_mnt_ns -EXPORT_SYMBOL_GPL vmlinux 0x96e4ae4a dm_put -EXPORT_SYMBOL_GPL vmlinux 0x96ea0134 kernfs_path_from_node -EXPORT_SYMBOL_GPL vmlinux 0x96ed331d clk_hw_round_rate -EXPORT_SYMBOL_GPL vmlinux 0x96f6c89a get_task_pid -EXPORT_SYMBOL_GPL vmlinux 0x96f9a01b __SCK__tp_func_pelt_thermal_tp -EXPORT_SYMBOL_GPL vmlinux 0x96faffd0 inet_ehash_nolisten -EXPORT_SYMBOL_GPL vmlinux 0x97147748 usb_submit_urb -EXPORT_SYMBOL_GPL vmlinux 0x9714e0bb ktime_get_raw -EXPORT_SYMBOL_GPL vmlinux 0x97198d0e efivar_entry_set -EXPORT_SYMBOL_GPL vmlinux 0x973a0979 devlink_dpipe_entry_ctx_prepare -EXPORT_SYMBOL_GPL vmlinux 0x975519c1 asymmetric_key_id_same -EXPORT_SYMBOL_GPL vmlinux 0x9756ed52 debugfs_create_regset32 -EXPORT_SYMBOL_GPL vmlinux 0x9760bf31 cpufreq_freq_attr_scaling_available_freqs -EXPORT_SYMBOL_GPL vmlinux 0x97897241 __vfs_setxattr_noperm -EXPORT_SYMBOL_GPL vmlinux 0x978c13dc fuse_fill_super_common -EXPORT_SYMBOL_GPL vmlinux 0x978f2712 memunmap_pages -EXPORT_SYMBOL_GPL vmlinux 0x97969ba4 devlink_dpipe_table_unregister -EXPORT_SYMBOL_GPL vmlinux 0x979c400c usb_autopm_get_interface_no_resume -EXPORT_SYMBOL_GPL vmlinux 0x97a62275 sysfs_remove_groups -EXPORT_SYMBOL_GPL vmlinux 0x97b42757 regmap_async_complete_cb -EXPORT_SYMBOL_GPL vmlinux 0x97bbb64d icc_node_add -EXPORT_SYMBOL_GPL vmlinux 0x97c0275d dev_pm_qos_remove_request -EXPORT_SYMBOL_GPL vmlinux 0x97c072ca crypto_stats_akcipher_sign -EXPORT_SYMBOL_GPL vmlinux 0x97c4de4e dev_pm_opp_get_max_clock_latency -EXPORT_SYMBOL_GPL vmlinux 0x97de2b83 debug_locks_silent -EXPORT_SYMBOL_GPL vmlinux 0x97eb076a kobject_move -EXPORT_SYMBOL_GPL vmlinux 0x97eb9135 of_modalias_node -EXPORT_SYMBOL_GPL vmlinux 0x97f940a7 iommu_device_link -EXPORT_SYMBOL_GPL vmlinux 0x98016491 clockevent_delta2ns -EXPORT_SYMBOL_GPL vmlinux 0x980fd6f9 wakeup_source_remove -EXPORT_SYMBOL_GPL vmlinux 0x9812acf4 __pci_epc_create -EXPORT_SYMBOL_GPL vmlinux 0x9833bc0c hvc_kick -EXPORT_SYMBOL_GPL vmlinux 0x983617cf ip6_sk_redirect -EXPORT_SYMBOL_GPL vmlinux 0x9843f501 __cookie_v4_check -EXPORT_SYMBOL_GPL vmlinux 0x98503a63 mpi_alloc -EXPORT_SYMBOL_GPL vmlinux 0x98516bf8 __fsnotify_parent -EXPORT_SYMBOL_GPL vmlinux 0x985453e1 lease_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x98737c27 pm_generic_thaw -EXPORT_SYMBOL_GPL vmlinux 0x9879932b crypto_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x988d3588 ncsi_register_dev -EXPORT_SYMBOL_GPL vmlinux 0x988ed53a tc3589x_set_bits -EXPORT_SYMBOL_GPL vmlinux 0x989074ff kmsg_dump_reason_str -EXPORT_SYMBOL_GPL vmlinux 0x9890c8f7 gnttab_foreach_grant_in_range -EXPORT_SYMBOL_GPL vmlinux 0x98922242 unregister_pernet_subsys -EXPORT_SYMBOL_GPL vmlinux 0x9893b14b fuse_sync_release -EXPORT_SYMBOL_GPL vmlinux 0x98a18b44 trace_array_get_by_name -EXPORT_SYMBOL_GPL vmlinux 0x98b142fa blk_fill_rwbs -EXPORT_SYMBOL_GPL vmlinux 0x98c2b08c ip6_push_pending_frames -EXPORT_SYMBOL_GPL vmlinux 0x98c59274 __tracepoint_rpm_idle -EXPORT_SYMBOL_GPL vmlinux 0x98c79222 posix_acl_access_xattr_handler -EXPORT_SYMBOL_GPL vmlinux 0x98d14355 perf_event_refresh -EXPORT_SYMBOL_GPL vmlinux 0x98d74f8f pci_ioremap_wc_bar -EXPORT_SYMBOL_GPL vmlinux 0x98dd055f regulator_list_voltage_linear_range -EXPORT_SYMBOL_GPL vmlinux 0x98ded20e devm_platform_get_irqs_affinity -EXPORT_SYMBOL_GPL vmlinux 0x98e54798 bsg_job_put -EXPORT_SYMBOL_GPL vmlinux 0x98e5bb57 crypto_alg_sem -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 0x990b8652 devm_gpiod_put -EXPORT_SYMBOL_GPL vmlinux 0x99466070 acpiphp_unregister_attention -EXPORT_SYMBOL_GPL vmlinux 0x99470bc7 perf_event_update_userpage -EXPORT_SYMBOL_GPL vmlinux 0x9954bbd2 btree_update -EXPORT_SYMBOL_GPL vmlinux 0x995d1071 prof_on -EXPORT_SYMBOL_GPL vmlinux 0x995d5f65 __traceiter_pelt_rt_tp -EXPORT_SYMBOL_GPL vmlinux 0x9968aacb __audit_log_nfcfg -EXPORT_SYMBOL_GPL vmlinux 0x9970f8df virtqueue_get_vring -EXPORT_SYMBOL_GPL vmlinux 0x9973e7c7 usb_autopm_get_interface -EXPORT_SYMBOL_GPL vmlinux 0x998725fc pm_generic_resume -EXPORT_SYMBOL_GPL vmlinux 0x99889e40 devlink_flash_update_timeout_notify -EXPORT_SYMBOL_GPL vmlinux 0x998a59aa skcipher_walk_async -EXPORT_SYMBOL_GPL vmlinux 0x998bd1ca pm_clk_remove_clk -EXPORT_SYMBOL_GPL vmlinux 0x998d79d6 x509_decode_time -EXPORT_SYMBOL_GPL vmlinux 0x99b8125d gnttab_dma_free_pages -EXPORT_SYMBOL_GPL vmlinux 0x99cd0a28 serial8250_em485_destroy -EXPORT_SYMBOL_GPL vmlinux 0x99dd730c page_reporting_unregister -EXPORT_SYMBOL_GPL vmlinux 0x99e3432b rockchip_clk_init -EXPORT_SYMBOL_GPL vmlinux 0x99e51eb1 fsl_mc_get_endpoint -EXPORT_SYMBOL_GPL vmlinux 0x99f018c4 nvmem_cell_read -EXPORT_SYMBOL_GPL vmlinux 0x99f2d00a sysfs_emit_at -EXPORT_SYMBOL_GPL vmlinux 0x9a0666d9 bpf_map_put -EXPORT_SYMBOL_GPL vmlinux 0x9a0cc64e dev_pm_genpd_resume -EXPORT_SYMBOL_GPL vmlinux 0x9a11a0fc crypto_attr_alg_name -EXPORT_SYMBOL_GPL vmlinux 0x9a185ace tick_nohz_full_running -EXPORT_SYMBOL_GPL vmlinux 0x9a1b5d6d rtc_update_irq -EXPORT_SYMBOL_GPL vmlinux 0x9a4fe166 tcp_leave_memory_pressure -EXPORT_SYMBOL_GPL vmlinux 0x9a58dd2d trace_print_bitmask_seq -EXPORT_SYMBOL_GPL vmlinux 0x9a795a29 pci_assign_unassigned_bus_resources -EXPORT_SYMBOL_GPL vmlinux 0x9a7d6d5c dev_pm_domain_attach_by_id -EXPORT_SYMBOL_GPL vmlinux 0x9a829351 dev_pm_opp_is_turbo -EXPORT_SYMBOL_GPL vmlinux 0x9a8e8b83 xdp_rxq_info_unreg_mem_model -EXPORT_SYMBOL_GPL vmlinux 0x9aa4bb73 usb_mon_register -EXPORT_SYMBOL_GPL vmlinux 0x9aadb376 register_acpi_bus_type -EXPORT_SYMBOL_GPL vmlinux 0x9ab547f6 gpiochip_disable_irq -EXPORT_SYMBOL_GPL vmlinux 0x9ab944ca tcp_sendmsg_locked -EXPORT_SYMBOL_GPL vmlinux 0x9ac11b74 suspend_set_ops -EXPORT_SYMBOL_GPL vmlinux 0x9ac619ce regulator_get_current_limit -EXPORT_SYMBOL_GPL vmlinux 0x9accd868 crypto_stats_kpp_compute_shared_secret -EXPORT_SYMBOL_GPL vmlinux 0x9ad2c3d2 event_triggers_post_call -EXPORT_SYMBOL_GPL vmlinux 0x9ada059f devm_regulator_register -EXPORT_SYMBOL_GPL vmlinux 0x9ae1d4b2 __page_mapcount -EXPORT_SYMBOL_GPL vmlinux 0x9aeacb87 ring_buffer_iter_empty -EXPORT_SYMBOL_GPL vmlinux 0x9af49514 icc_bulk_set_bw -EXPORT_SYMBOL_GPL vmlinux 0x9b0c5cbc of_genpd_del_provider -EXPORT_SYMBOL_GPL vmlinux 0x9b0eaa52 tegra210_xusb_pll_hw_sequence_start -EXPORT_SYMBOL_GPL vmlinux 0x9b0f788d crypto_comp_compress -EXPORT_SYMBOL_GPL vmlinux 0x9b1cdf67 fib_nl_delrule -EXPORT_SYMBOL_GPL vmlinux 0x9b215ddc crypto_register_template -EXPORT_SYMBOL_GPL vmlinux 0x9b3d54d9 xfrm_output -EXPORT_SYMBOL_GPL vmlinux 0x9b4db6f3 ata_qc_complete -EXPORT_SYMBOL_GPL vmlinux 0x9b553a1f blkcg_root_css -EXPORT_SYMBOL_GPL vmlinux 0x9b555c8c pm_suspend_default_s2idle -EXPORT_SYMBOL_GPL vmlinux 0x9b61d523 vfs_test_lock -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 0x9b741237 sdio_writeb_readb -EXPORT_SYMBOL_GPL vmlinux 0x9b748361 blkg_lookup_slowpath -EXPORT_SYMBOL_GPL vmlinux 0x9b7ab781 usb_asmedia_modifyflowcontrol -EXPORT_SYMBOL_GPL vmlinux 0x9b7fa319 em_dev_unregister_perf_domain -EXPORT_SYMBOL_GPL vmlinux 0x9b896724 devlink_param_value_str_fill -EXPORT_SYMBOL_GPL vmlinux 0x9b8ba735 ipv4_sk_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0x9b9071cb get_old_itimerspec32 -EXPORT_SYMBOL_GPL vmlinux 0x9b92d16e pinctrl_gpio_set_config -EXPORT_SYMBOL_GPL vmlinux 0x9b9b50ac acpi_dma_request_slave_chan_by_index -EXPORT_SYMBOL_GPL vmlinux 0x9ba2bb2b gpio_request_array -EXPORT_SYMBOL_GPL vmlinux 0x9ba3bec3 iommu_detach_group -EXPORT_SYMBOL_GPL vmlinux 0x9ba897a5 device_reprobe -EXPORT_SYMBOL_GPL vmlinux 0x9bb6dee1 uhci_reset_hc -EXPORT_SYMBOL_GPL vmlinux 0x9bcd02c4 devlink_reload_enable -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 0x9bedc6e1 crypto_chain -EXPORT_SYMBOL_GPL vmlinux 0x9c268462 palmas_ext_control_req_config -EXPORT_SYMBOL_GPL vmlinux 0x9c3adf85 usb_hcd_pci_probe -EXPORT_SYMBOL_GPL vmlinux 0x9c448d8d tegra210_put_utmipll_out_iddq -EXPORT_SYMBOL_GPL vmlinux 0x9c469f4d fat_attach -EXPORT_SYMBOL_GPL vmlinux 0x9c49a55d device_get_child_node_count -EXPORT_SYMBOL_GPL vmlinux 0x9c4df003 ata_scsi_unlock_native_capacity -EXPORT_SYMBOL_GPL vmlinux 0x9c514ae0 clk_hw_register_composite -EXPORT_SYMBOL_GPL vmlinux 0x9c534e8f pcc_mbox_request_channel -EXPORT_SYMBOL_GPL vmlinux 0x9c56783b ata_sff_prereset -EXPORT_SYMBOL_GPL vmlinux 0x9c5a4c83 devm_pinctrl_unregister -EXPORT_SYMBOL_GPL vmlinux 0x9c68d1eb power_supply_register -EXPORT_SYMBOL_GPL vmlinux 0x9c6febfc add_uevent_var -EXPORT_SYMBOL_GPL vmlinux 0x9c78304c bio_clone_blkg_association -EXPORT_SYMBOL_GPL vmlinux 0x9c78d48a ata_pci_sff_init_host -EXPORT_SYMBOL_GPL vmlinux 0x9c803020 usb_phy_roothub_power_on -EXPORT_SYMBOL_GPL vmlinux 0x9c8609b9 __hwspin_lock_timeout -EXPORT_SYMBOL_GPL vmlinux 0x9c8da106 devm_device_add_groups -EXPORT_SYMBOL_GPL vmlinux 0x9c9c3a4f get_user_pages_fast_only -EXPORT_SYMBOL_GPL vmlinux 0x9ca8569d usb_show_dynids -EXPORT_SYMBOL_GPL vmlinux 0x9cb277e5 sysfs_group_change_owner -EXPORT_SYMBOL_GPL vmlinux 0x9cb486b5 pci_hp_del -EXPORT_SYMBOL_GPL vmlinux 0x9cb4c54c __inet_lookup_listener -EXPORT_SYMBOL_GPL vmlinux 0x9cb5af34 disable_kprobe -EXPORT_SYMBOL_GPL vmlinux 0x9cbcc547 dm_bio_from_per_bio_data -EXPORT_SYMBOL_GPL vmlinux 0x9cc4f70a register_pm_notifier -EXPORT_SYMBOL_GPL vmlinux 0x9cf37c44 __iowrite32_copy -EXPORT_SYMBOL_GPL vmlinux 0x9cf5d331 __traceiter_block_rq_insert -EXPORT_SYMBOL_GPL vmlinux 0x9cfc3a6b set_cpus_allowed_ptr -EXPORT_SYMBOL_GPL vmlinux 0x9d070c50 pci_host_probe -EXPORT_SYMBOL_GPL vmlinux 0x9d09e8ae ring_buffer_event_data -EXPORT_SYMBOL_GPL vmlinux 0x9d1355de fuse_dev_fiq_ops -EXPORT_SYMBOL_GPL vmlinux 0x9d28b244 blk_mq_flush_busy_ctxs -EXPORT_SYMBOL_GPL vmlinux 0x9d2f49ef __SCK__tp_func_pelt_se_tp -EXPORT_SYMBOL_GPL vmlinux 0x9d5102f9 extcon_get_edev_name -EXPORT_SYMBOL_GPL vmlinux 0x9d57d96e da9055_regmap_config -EXPORT_SYMBOL_GPL vmlinux 0x9d5afabb vp_modern_probe -EXPORT_SYMBOL_GPL vmlinux 0x9d65d471 fscrypt_ioctl_get_key_status -EXPORT_SYMBOL_GPL vmlinux 0x9d6d1d54 dev_attr_link_power_management_policy -EXPORT_SYMBOL_GPL vmlinux 0x9d7417a0 crypto_alloc_base -EXPORT_SYMBOL_GPL vmlinux 0x9d9d58a5 xenbus_map_ring_valloc -EXPORT_SYMBOL_GPL vmlinux 0x9da4b813 phy_validate -EXPORT_SYMBOL_GPL vmlinux 0x9dac9445 md_new_event -EXPORT_SYMBOL_GPL vmlinux 0x9dafd23c ata_acpi_gtm_xfermask -EXPORT_SYMBOL_GPL vmlinux 0x9db8a08e __audit_inode_child -EXPORT_SYMBOL_GPL vmlinux 0x9dba2713 ahci_fill_cmd_slot -EXPORT_SYMBOL_GPL vmlinux 0x9dc94e0c pci_epc_stop -EXPORT_SYMBOL_GPL vmlinux 0x9de3e91d iommu_enable_nesting -EXPORT_SYMBOL_GPL vmlinux 0x9deca8a3 sysfs_update_groups -EXPORT_SYMBOL_GPL vmlinux 0x9deeaef9 clk_hw_unregister_gate -EXPORT_SYMBOL_GPL vmlinux 0x9deec6df crypto_register_scomp -EXPORT_SYMBOL_GPL vmlinux 0x9df12819 dev_pm_opp_set_sharing_cpus -EXPORT_SYMBOL_GPL vmlinux 0x9df1843f get_net_ns -EXPORT_SYMBOL_GPL vmlinux 0x9df84f24 genphy_c45_pma_read_abilities -EXPORT_SYMBOL_GPL vmlinux 0x9e005e6f cppc_get_perf_caps -EXPORT_SYMBOL_GPL vmlinux 0x9e029456 sdio_enable_func -EXPORT_SYMBOL_GPL vmlinux 0x9e0484c7 irq_domain_remove -EXPORT_SYMBOL_GPL vmlinux 0x9e0a4aa8 acpi_get_first_physical_node -EXPORT_SYMBOL_GPL vmlinux 0x9e0b99c8 restore_online_page_callback -EXPORT_SYMBOL_GPL vmlinux 0x9e2ce31c phy_pm_runtime_forbid -EXPORT_SYMBOL_GPL vmlinux 0x9e472f5f snmp_fold_field -EXPORT_SYMBOL_GPL vmlinux 0x9e4efbff ti_sci_get_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0x9e58b7f8 inet_hash -EXPORT_SYMBOL_GPL vmlinux 0x9e5dacf1 usb_bus_idr -EXPORT_SYMBOL_GPL vmlinux 0x9e7b03c0 rockchip_pcie_deinit_phys -EXPORT_SYMBOL_GPL vmlinux 0x9e92e6b1 hwmon_device_register_with_groups -EXPORT_SYMBOL_GPL vmlinux 0x9e9b913d __tracepoint_arm_event -EXPORT_SYMBOL_GPL vmlinux 0x9ebee8c9 tty_port_register_device_attr_serdev -EXPORT_SYMBOL_GPL vmlinux 0x9ed554b3 unregister_keyboard_notifier -EXPORT_SYMBOL_GPL vmlinux 0x9edaef2e register_asymmetric_key_parser -EXPORT_SYMBOL_GPL vmlinux 0x9ee5375d serdev_device_write_buf -EXPORT_SYMBOL_GPL vmlinux 0x9eebdde7 mpi_point_new -EXPORT_SYMBOL_GPL vmlinux 0x9ef02af9 sk_set_peek_off -EXPORT_SYMBOL_GPL vmlinux 0x9ef20372 pcc_mbox_free_channel -EXPORT_SYMBOL_GPL vmlinux 0x9efad5c0 usb_register_driver -EXPORT_SYMBOL_GPL vmlinux 0x9efff073 sprd_pinctrl_shutdown -EXPORT_SYMBOL_GPL vmlinux 0x9f03bcbc pinmux_generic_get_function_name -EXPORT_SYMBOL_GPL vmlinux 0x9f067678 divider_determine_rate -EXPORT_SYMBOL_GPL vmlinux 0x9f0a6bb9 fsnotify_alloc_user_group -EXPORT_SYMBOL_GPL vmlinux 0x9f16b26d wm8350_block_read -EXPORT_SYMBOL_GPL vmlinux 0x9f1900ef debugfs_create_x8 -EXPORT_SYMBOL_GPL vmlinux 0x9f19bbaf srcu_notifier_chain_unregister -EXPORT_SYMBOL_GPL vmlinux 0x9f1c50d5 relay_close -EXPORT_SYMBOL_GPL vmlinux 0x9f2ae621 meson_pmx_get_funcs_count -EXPORT_SYMBOL_GPL vmlinux 0x9f390d60 mmu_notifier_unregister -EXPORT_SYMBOL_GPL vmlinux 0x9f3fd510 of_property_read_variable_u16_array -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 0x9f60ff72 fib_rules_unregister -EXPORT_SYMBOL_GPL vmlinux 0x9f68a5de blkcg_policy_unregister -EXPORT_SYMBOL_GPL vmlinux 0x9f6ff1a0 fscrypt_show_test_dummy_encryption -EXPORT_SYMBOL_GPL vmlinux 0x9f7ab3de perf_aux_output_skip -EXPORT_SYMBOL_GPL vmlinux 0x9fa4564a timer_shutdown -EXPORT_SYMBOL_GPL vmlinux 0x9faaab37 of_clk_get_parent_name -EXPORT_SYMBOL_GPL vmlinux 0x9fb0d392 pm_generic_thaw_early -EXPORT_SYMBOL_GPL vmlinux 0x9fb7a7c7 led_get_default_pattern -EXPORT_SYMBOL_GPL vmlinux 0x9fb84980 virtqueue_get_buf -EXPORT_SYMBOL_GPL vmlinux 0x9fbfebab erst_write -EXPORT_SYMBOL_GPL vmlinux 0x9fc470cc __mmc_poll_for_busy -EXPORT_SYMBOL_GPL vmlinux 0x9fce80db fb_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0x9fd03945 irq_chip_ack_parent -EXPORT_SYMBOL_GPL vmlinux 0x9fe899b7 get_cpu_idle_time -EXPORT_SYMBOL_GPL vmlinux 0x9fe939e1 mpi_powm -EXPORT_SYMBOL_GPL vmlinux 0x9fea1628 ping_seq_stop -EXPORT_SYMBOL_GPL vmlinux 0x9ff25099 fwnode_property_read_u64_array -EXPORT_SYMBOL_GPL vmlinux 0xa015ba54 sbitmap_add_wait_queue -EXPORT_SYMBOL_GPL vmlinux 0xa01a8d9b nd_cmd_bus_desc -EXPORT_SYMBOL_GPL vmlinux 0xa01bdfdc class_remove_file_ns -EXPORT_SYMBOL_GPL vmlinux 0xa01dbe6d devm_clk_get_optional_prepared -EXPORT_SYMBOL_GPL vmlinux 0xa03d6b57 device_bind_driver -EXPORT_SYMBOL_GPL vmlinux 0xa04f147e make_device_exclusive_range -EXPORT_SYMBOL_GPL vmlinux 0xa04f945a cpus_read_lock -EXPORT_SYMBOL_GPL vmlinux 0xa051d438 alarm_restart -EXPORT_SYMBOL_GPL vmlinux 0xa053636c devm_hwspin_lock_register -EXPORT_SYMBOL_GPL vmlinux 0xa060d367 device_store_bool -EXPORT_SYMBOL_GPL vmlinux 0xa0672173 iommu_sva_bind_device -EXPORT_SYMBOL_GPL vmlinux 0xa071c0cd tegra210_xusb_pll_hw_control_enable -EXPORT_SYMBOL_GPL vmlinux 0xa074966c eventfd_fget -EXPORT_SYMBOL_GPL vmlinux 0xa07636c0 perf_event_sysfs_show -EXPORT_SYMBOL_GPL vmlinux 0xa078acdd crypto_mod_get -EXPORT_SYMBOL_GPL vmlinux 0xa07acccf fsverity_ioctl_read_metadata -EXPORT_SYMBOL_GPL vmlinux 0xa080c5e5 smp_call_function_single_async -EXPORT_SYMBOL_GPL vmlinux 0xa09a1597 blkdev_ioctl -EXPORT_SYMBOL_GPL vmlinux 0xa0a9b25a devlink_params_register -EXPORT_SYMBOL_GPL vmlinux 0xa0b52a72 gpiochip_line_is_open_source -EXPORT_SYMBOL_GPL vmlinux 0xa0bb4242 mtk_pinconf_adv_drive_set -EXPORT_SYMBOL_GPL vmlinux 0xa0c85fcb rio_mport_get_physefb -EXPORT_SYMBOL_GPL vmlinux 0xa0d2f94f security_inode_create -EXPORT_SYMBOL_GPL vmlinux 0xa0d3456d nr_swap_pages -EXPORT_SYMBOL_GPL vmlinux 0xa0d5d701 tegra_bpmp_mrq_is_supported -EXPORT_SYMBOL_GPL vmlinux 0xa0de26ac tty_wakeup -EXPORT_SYMBOL_GPL vmlinux 0xa0e7a3a8 security_inode_permission -EXPORT_SYMBOL_GPL vmlinux 0xa0e811bd regulator_get_current_limit_regmap -EXPORT_SYMBOL_GPL vmlinux 0xa0e99e66 tpm2_probe -EXPORT_SYMBOL_GPL vmlinux 0xa0fed32f crypto_destroy_tfm -EXPORT_SYMBOL_GPL vmlinux 0xa0fed4e5 iommu_sva_free_pasid -EXPORT_SYMBOL_GPL vmlinux 0xa11216be xen_store_domain_type -EXPORT_SYMBOL_GPL vmlinux 0xa11c2f30 set_capacity_and_notify -EXPORT_SYMBOL_GPL vmlinux 0xa121f718 ata_dev_pair -EXPORT_SYMBOL_GPL vmlinux 0xa1228b78 fwnode_device_is_available -EXPORT_SYMBOL_GPL vmlinux 0xa136c1e9 nf_ip_route -EXPORT_SYMBOL_GPL vmlinux 0xa13748b7 devm_regmap_field_alloc -EXPORT_SYMBOL_GPL vmlinux 0xa1442a67 dax_region_put -EXPORT_SYMBOL_GPL vmlinux 0xa146822b usb_role_switch_register -EXPORT_SYMBOL_GPL vmlinux 0xa14e5f89 of_alias_get_id -EXPORT_SYMBOL_GPL vmlinux 0xa156a1f2 erst_get_record_id_end -EXPORT_SYMBOL_GPL vmlinux 0xa1607b51 regmap_get_device -EXPORT_SYMBOL_GPL vmlinux 0xa16162cb meson_clk_pll_ops -EXPORT_SYMBOL_GPL vmlinux 0xa16deb13 sbitmap_resize -EXPORT_SYMBOL_GPL vmlinux 0xa1747883 dma_request_chan_by_mask -EXPORT_SYMBOL_GPL vmlinux 0xa18cc3b5 tty_kopen_exclusive -EXPORT_SYMBOL_GPL vmlinux 0xa19da3c1 regulator_bulk_enable -EXPORT_SYMBOL_GPL vmlinux 0xa1a956ae vfs_getxattr -EXPORT_SYMBOL_GPL vmlinux 0xa1bdb12d spi_mem_dtr_supports_op -EXPORT_SYMBOL_GPL vmlinux 0xa1c90cc6 udp_bpf_update_proto -EXPORT_SYMBOL_GPL vmlinux 0xa1d53457 devm_of_platform_depopulate -EXPORT_SYMBOL_GPL vmlinux 0xa1d8004a videomode_from_timing -EXPORT_SYMBOL_GPL vmlinux 0xa1dc523d dev_coredumpv -EXPORT_SYMBOL_GPL vmlinux 0xa1df6e77 pci_sriov_get_totalvfs -EXPORT_SYMBOL_GPL vmlinux 0xa1e116a7 usb_alloc_dev -EXPORT_SYMBOL_GPL vmlinux 0xa1ed0ca4 gpiochip_relres_irq -EXPORT_SYMBOL_GPL vmlinux 0xa1f616f1 devlink_trap_report -EXPORT_SYMBOL_GPL vmlinux 0xa20d01ba __trace_bprintk -EXPORT_SYMBOL_GPL vmlinux 0xa20deafa ata_bmdma_port_intr -EXPORT_SYMBOL_GPL vmlinux 0xa2109f03 devlink_traps_register -EXPORT_SYMBOL_GPL vmlinux 0xa2209db9 meson_clk_dualdiv_ops -EXPORT_SYMBOL_GPL vmlinux 0xa23c13c9 kernfs_get -EXPORT_SYMBOL_GPL vmlinux 0xa2408744 evm_inode_init_security -EXPORT_SYMBOL_GPL vmlinux 0xa2500ef6 __SCK__tp_func_powernv_throttle -EXPORT_SYMBOL_GPL vmlinux 0xa26d9b4f workqueue_congested -EXPORT_SYMBOL_GPL vmlinux 0xa2732063 device_match_of_node -EXPORT_SYMBOL_GPL vmlinux 0xa290d3f6 virtio_add_status -EXPORT_SYMBOL_GPL vmlinux 0xa2a1a190 acpi_device_update_power -EXPORT_SYMBOL_GPL vmlinux 0xa2a427be dw_pcie_ep_init -EXPORT_SYMBOL_GPL vmlinux 0xa2af54b3 irq_from_evtchn -EXPORT_SYMBOL_GPL vmlinux 0xa2b0820d __SCK__tp_func_cpu_idle -EXPORT_SYMBOL_GPL vmlinux 0xa2bafd3f iopf_queue_remove_device -EXPORT_SYMBOL_GPL vmlinux 0xa2c0c342 subsys_find_device_by_id -EXPORT_SYMBOL_GPL vmlinux 0xa2d9ec0e usb_get_role_switch_default_mode -EXPORT_SYMBOL_GPL vmlinux 0xa2e0cdf4 xas_nomem -EXPORT_SYMBOL_GPL vmlinux 0xa2e1b3ef trace_printk_init_buffers -EXPORT_SYMBOL_GPL vmlinux 0xa2e42055 vp_modern_set_queue_size -EXPORT_SYMBOL_GPL vmlinux 0xa2f7487f hv_is_hibernation_supported -EXPORT_SYMBOL_GPL vmlinux 0xa30432f3 gpiod_set_array_value -EXPORT_SYMBOL_GPL vmlinux 0xa30d6e53 pcie_aspm_enabled -EXPORT_SYMBOL_GPL vmlinux 0xa3186eb4 irq_domain_create_hierarchy -EXPORT_SYMBOL_GPL vmlinux 0xa31ef6d7 btree_merge -EXPORT_SYMBOL_GPL vmlinux 0xa3243ac7 blkg_conf_prep -EXPORT_SYMBOL_GPL vmlinux 0xa326b013 platform_get_mem_or_io -EXPORT_SYMBOL_GPL vmlinux 0xa34de3e4 generic_online_page -EXPORT_SYMBOL_GPL vmlinux 0xa34f53d2 icc_set_bw -EXPORT_SYMBOL_GPL vmlinux 0xa35a8df5 ata_pci_device_resume -EXPORT_SYMBOL_GPL vmlinux 0xa35e57b9 blk_mq_virtio_map_queues -EXPORT_SYMBOL_GPL vmlinux 0xa360c350 scsi_build_sense -EXPORT_SYMBOL_GPL vmlinux 0xa364a571 __pm_relax -EXPORT_SYMBOL_GPL vmlinux 0xa36d0e3e pm_generic_restore_early -EXPORT_SYMBOL_GPL vmlinux 0xa36db8e1 get_device -EXPORT_SYMBOL_GPL vmlinux 0xa36f50fb is_binary_blacklisted -EXPORT_SYMBOL_GPL vmlinux 0xa37d11a8 virtqueue_enable_cb_delayed -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 0xa3a330c3 sk_set_memalloc -EXPORT_SYMBOL_GPL vmlinux 0xa3ab81ac crypto_req_done -EXPORT_SYMBOL_GPL vmlinux 0xa3b03a6d int_active_memcg -EXPORT_SYMBOL_GPL vmlinux 0xa3b958ce reset_hung_task_detector -EXPORT_SYMBOL_GPL vmlinux 0xa3bf0a67 wakeup_sources_walk_start -EXPORT_SYMBOL_GPL vmlinux 0xa3cb612e metadata_dst_free -EXPORT_SYMBOL_GPL vmlinux 0xa3d95eb8 devm_clk_hw_register_fixed_factor -EXPORT_SYMBOL_GPL vmlinux 0xa3dcb681 zynqmp_pm_fpga_load -EXPORT_SYMBOL_GPL vmlinux 0xa3dcd112 xfrm_audit_state_replay -EXPORT_SYMBOL_GPL vmlinux 0xa3ece414 freezer_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0xa3f12f69 __crypto_xor -EXPORT_SYMBOL_GPL vmlinux 0xa4031b7f sfp_parse_port -EXPORT_SYMBOL_GPL vmlinux 0xa4040e8a to_software_node -EXPORT_SYMBOL_GPL vmlinux 0xa410a295 devlink_region_destroy -EXPORT_SYMBOL_GPL vmlinux 0xa4185685 unregister_asymmetric_key_parser -EXPORT_SYMBOL_GPL vmlinux 0xa42147f4 start_poll_synchronize_srcu -EXPORT_SYMBOL_GPL vmlinux 0xa4253536 devm_reset_control_array_get -EXPORT_SYMBOL_GPL vmlinux 0xa434d1f4 tty_init_termios -EXPORT_SYMBOL_GPL vmlinux 0xa44a1307 interval_tree_iter_first -EXPORT_SYMBOL_GPL vmlinux 0xa450ca51 ata_bmdma_dumb_qc_prep -EXPORT_SYMBOL_GPL vmlinux 0xa452f2a4 xen_pirq_from_irq -EXPORT_SYMBOL_GPL vmlinux 0xa45c7b90 stack_trace_print -EXPORT_SYMBOL_GPL vmlinux 0xa45cc393 inet_csk_listen_start -EXPORT_SYMBOL_GPL vmlinux 0xa45d44fc zynqmp_pm_get_pll_frac_data -EXPORT_SYMBOL_GPL vmlinux 0xa4667ea6 regulator_bulk_register_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0xa46e374f skcipher_walk_done -EXPORT_SYMBOL_GPL vmlinux 0xa46f12bf __traceiter_devlink_hwmsg -EXPORT_SYMBOL_GPL vmlinux 0xa48035b0 serial8250_do_shutdown -EXPORT_SYMBOL_GPL vmlinux 0xa48196c8 kdb_poll_idx -EXPORT_SYMBOL_GPL vmlinux 0xa483340c crypto_register_algs -EXPORT_SYMBOL_GPL vmlinux 0xa485c121 device_show_bool -EXPORT_SYMBOL_GPL vmlinux 0xa487da59 is_nvdimm_sync -EXPORT_SYMBOL_GPL vmlinux 0xa490234e devlink_reload_disable -EXPORT_SYMBOL_GPL vmlinux 0xa49465fe register_trace_event -EXPORT_SYMBOL_GPL vmlinux 0xa4a96012 wbt_enable_default -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 0xa4c9ecc7 regulator_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0xa4d5b2ae ahci_set_em_messages -EXPORT_SYMBOL_GPL vmlinux 0xa4e02259 ping_bind -EXPORT_SYMBOL_GPL vmlinux 0xa4e2d6d8 rtc_update_irq_enable -EXPORT_SYMBOL_GPL vmlinux 0xa4eb5793 sbitmap_weight -EXPORT_SYMBOL_GPL vmlinux 0xa4f2a2ed acpi_irq_get -EXPORT_SYMBOL_GPL vmlinux 0xa50fd35d ata_pci_bmdma_init_one -EXPORT_SYMBOL_GPL vmlinux 0xa50febe4 ethnl_cable_test_pulse -EXPORT_SYMBOL_GPL vmlinux 0xa517f884 tegra210_plle_hw_sequence_is_enabled -EXPORT_SYMBOL_GPL vmlinux 0xa5232930 devm_namespace_enable -EXPORT_SYMBOL_GPL vmlinux 0xa52e9d6b i2c_new_client_device -EXPORT_SYMBOL_GPL vmlinux 0xa531471e clk_save_context -EXPORT_SYMBOL_GPL vmlinux 0xa533d781 tcp_register_ulp -EXPORT_SYMBOL_GPL vmlinux 0xa53bb538 uart_try_toggle_sysrq -EXPORT_SYMBOL_GPL vmlinux 0xa545e680 inode_sb_list_add -EXPORT_SYMBOL_GPL vmlinux 0xa54753f0 clk_bulk_get_optional -EXPORT_SYMBOL_GPL vmlinux 0xa54a1304 of_css -EXPORT_SYMBOL_GPL vmlinux 0xa5538c41 class_compat_create_link -EXPORT_SYMBOL_GPL vmlinux 0xa55b7796 regulator_get_voltage_sel_regmap -EXPORT_SYMBOL_GPL vmlinux 0xa564220f sysfs_create_file_ns -EXPORT_SYMBOL_GPL vmlinux 0xa569370a __alloc_pages_bulk -EXPORT_SYMBOL_GPL vmlinux 0xa5778963 edac_mc_handle_error -EXPORT_SYMBOL_GPL vmlinux 0xa58022b9 pci_vfs_assigned -EXPORT_SYMBOL_GPL vmlinux 0xa5900476 dpm_for_each_dev -EXPORT_SYMBOL_GPL vmlinux 0xa59c6003 scsi_eh_ready_devs -EXPORT_SYMBOL_GPL vmlinux 0xa5ab1c9c cgroup_get_from_fd -EXPORT_SYMBOL_GPL vmlinux 0xa5bb097a iommu_aux_get_pasid -EXPORT_SYMBOL_GPL vmlinux 0xa5bd011e pci_generic_config_write -EXPORT_SYMBOL_GPL vmlinux 0xa5bda8a1 efi_capsule_supported -EXPORT_SYMBOL_GPL vmlinux 0xa5beb994 pci_epc_get_features -EXPORT_SYMBOL_GPL vmlinux 0xa5c2fcac __efivar_entry_get -EXPORT_SYMBOL_GPL vmlinux 0xa5c5e847 regmap_bulk_write -EXPORT_SYMBOL_GPL vmlinux 0xa5c7748a ata_bmdma_irq_clear -EXPORT_SYMBOL_GPL vmlinux 0xa5cd9924 bpf_prog_select_runtime -EXPORT_SYMBOL_GPL vmlinux 0xa5d3029f clk_register_divider_table -EXPORT_SYMBOL_GPL vmlinux 0xa5d7c388 pstore_type_to_name -EXPORT_SYMBOL_GPL vmlinux 0xa5efbf4c async_synchronize_full -EXPORT_SYMBOL_GPL vmlinux 0xa5fdc565 rockchip_pcie_enable_clocks -EXPORT_SYMBOL_GPL vmlinux 0xa5fe348d gpiod_get_direction -EXPORT_SYMBOL_GPL vmlinux 0xa61a68b2 gpiod_get_raw_array_value -EXPORT_SYMBOL_GPL vmlinux 0xa63206eb rio_request_outb_mbox -EXPORT_SYMBOL_GPL vmlinux 0xa63b33a8 inet6_compat_ioctl -EXPORT_SYMBOL_GPL vmlinux 0xa6514c1e devm_power_supply_get_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0xa654e4cb acpi_dev_remove_driver_gpios -EXPORT_SYMBOL_GPL vmlinux 0xa655aca3 devm_devfreq_event_remove_edev -EXPORT_SYMBOL_GPL vmlinux 0xa65f3c8c __tracepoint_block_bio_complete -EXPORT_SYMBOL_GPL vmlinux 0xa67be8da atomic_notifier_chain_unregister -EXPORT_SYMBOL_GPL vmlinux 0xa67d3597 sbitmap_show -EXPORT_SYMBOL_GPL vmlinux 0xa689947a bgmac_enet_resume -EXPORT_SYMBOL_GPL vmlinux 0xa69d6f12 pm_clk_init -EXPORT_SYMBOL_GPL vmlinux 0xa6a088b7 fscrypt_match_name -EXPORT_SYMBOL_GPL vmlinux 0xa6ac984d of_clk_add_provider -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 0xa6b27c40 of_property_read_u32_index -EXPORT_SYMBOL_GPL vmlinux 0xa6b5ee5b __SCK__tp_func_block_split -EXPORT_SYMBOL_GPL vmlinux 0xa6c0e29b strp_stop -EXPORT_SYMBOL_GPL vmlinux 0xa6c49f84 devm_free_percpu -EXPORT_SYMBOL_GPL vmlinux 0xa6d27fca tpm_try_get_ops -EXPORT_SYMBOL_GPL vmlinux 0xa6da0aad icc_provider_del -EXPORT_SYMBOL_GPL vmlinux 0xa6dc0d97 tegra_read_ram_code -EXPORT_SYMBOL_GPL vmlinux 0xa6e1a69d kick_all_cpus_sync -EXPORT_SYMBOL_GPL vmlinux 0xa6ee15ca __tracepoint_rpm_suspend -EXPORT_SYMBOL_GPL vmlinux 0xa6f25a88 ip_local_out -EXPORT_SYMBOL_GPL vmlinux 0xa6f934e1 xfrm_audit_state_add -EXPORT_SYMBOL_GPL vmlinux 0xa6f979d9 pm_stay_awake -EXPORT_SYMBOL_GPL vmlinux 0xa6fc855a percpu_down_write -EXPORT_SYMBOL_GPL vmlinux 0xa709c835 fib6_info_destroy_rcu -EXPORT_SYMBOL_GPL vmlinux 0xa70ab157 edac_mc_add_mc_with_groups -EXPORT_SYMBOL_GPL vmlinux 0xa7142992 of_mpc8xxx_spi_probe -EXPORT_SYMBOL_GPL vmlinux 0xa71d0ef2 __pm_runtime_set_status -EXPORT_SYMBOL_GPL vmlinux 0xa71e73eb rio_register_mport -EXPORT_SYMBOL_GPL vmlinux 0xa720c837 rockchip_clk_register_branches -EXPORT_SYMBOL_GPL vmlinux 0xa73b3eba atomic_notifier_chain_register -EXPORT_SYMBOL_GPL vmlinux 0xa757b672 iommu_page_response -EXPORT_SYMBOL_GPL vmlinux 0xa784d12c crypto_stats_skcipher_encrypt -EXPORT_SYMBOL_GPL vmlinux 0xa7856098 cpu_topology -EXPORT_SYMBOL_GPL vmlinux 0xa788700b copy_to_user_nofault -EXPORT_SYMBOL_GPL vmlinux 0xa78a3626 devlink_trap_policers_unregister -EXPORT_SYMBOL_GPL vmlinux 0xa78d0140 hrtimer_try_to_cancel -EXPORT_SYMBOL_GPL vmlinux 0xa7a44411 iomap_ioend_try_merge -EXPORT_SYMBOL_GPL vmlinux 0xa7a67d12 ip6_sk_dst_lookup_flow -EXPORT_SYMBOL_GPL vmlinux 0xa7c6701a adp5520_read -EXPORT_SYMBOL_GPL vmlinux 0xa7c67d11 ehci_adjust_port_wakeup_flags -EXPORT_SYMBOL_GPL vmlinux 0xa7cba284 housekeeping_any_cpu -EXPORT_SYMBOL_GPL vmlinux 0xa7f7a368 crypto_stats_rng_generate -EXPORT_SYMBOL_GPL vmlinux 0xa7fd35df shash_register_instance -EXPORT_SYMBOL_GPL vmlinux 0xa8030c14 free_iova -EXPORT_SYMBOL_GPL vmlinux 0xa805e9b0 blocking_notifier_chain_register -EXPORT_SYMBOL_GPL vmlinux 0xa806b52c fb_deferred_io_init -EXPORT_SYMBOL_GPL vmlinux 0xa80ebb29 tc3589x_block_read -EXPORT_SYMBOL_GPL vmlinux 0xa82a04e5 icc_std_aggregate -EXPORT_SYMBOL_GPL vmlinux 0xa83ef5d7 dev_pm_opp_get_opp_table -EXPORT_SYMBOL_GPL vmlinux 0xa851973a raw_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0xa86a3895 devm_rtc_device_register -EXPORT_SYMBOL_GPL vmlinux 0xa86e66d2 of_clk_del_provider -EXPORT_SYMBOL_GPL vmlinux 0xa879a409 ping_recvmsg -EXPORT_SYMBOL_GPL vmlinux 0xa879ecea efivar_entry_size -EXPORT_SYMBOL_GPL vmlinux 0xa87dc4d7 dma_async_device_channel_register -EXPORT_SYMBOL_GPL vmlinux 0xa8856908 tcp_cong_avoid_ai -EXPORT_SYMBOL_GPL vmlinux 0xa89a2c3a hvc_poll -EXPORT_SYMBOL_GPL vmlinux 0xa8cd00b1 fuse_init_fs_context_submount -EXPORT_SYMBOL_GPL vmlinux 0xa900a30f spi_mem_dirmap_read -EXPORT_SYMBOL_GPL vmlinux 0xa909f2be fsl_mc_free_irqs -EXPORT_SYMBOL_GPL vmlinux 0xa90bbb89 iomap_dio_iopoll -EXPORT_SYMBOL_GPL vmlinux 0xa9187b55 input_ff_destroy -EXPORT_SYMBOL_GPL vmlinux 0xa91f4623 pinconf_generic_dt_free_map -EXPORT_SYMBOL_GPL vmlinux 0xa9251378 regmap_field_free -EXPORT_SYMBOL_GPL vmlinux 0xa92f6c79 pinctrl_find_gpio_range_from_pin -EXPORT_SYMBOL_GPL vmlinux 0xa9320d27 ktime_get_seconds -EXPORT_SYMBOL_GPL vmlinux 0xa93513ed of_property_count_elems_of_size -EXPORT_SYMBOL_GPL vmlinux 0xa9495f82 fwnode_property_read_string -EXPORT_SYMBOL_GPL vmlinux 0xa94ae06e ahci_platform_shutdown -EXPORT_SYMBOL_GPL vmlinux 0xa96abdd4 __wake_up_locked -EXPORT_SYMBOL_GPL vmlinux 0xa96e8b4e hv_setup_vmbus_handler -EXPORT_SYMBOL_GPL vmlinux 0xa97a5b35 dma_buf_mmap -EXPORT_SYMBOL_GPL vmlinux 0xa98015cb tegra_mc_write_emem_configuration -EXPORT_SYMBOL_GPL vmlinux 0xa98167b9 put_pid_ns -EXPORT_SYMBOL_GPL vmlinux 0xa99b8e70 __SCK__tp_func_xdp_exception -EXPORT_SYMBOL_GPL vmlinux 0xa99ef899 devlink_fmsg_bool_pair_put -EXPORT_SYMBOL_GPL vmlinux 0xa99f50f9 devm_acpi_dma_controller_free -EXPORT_SYMBOL_GPL vmlinux 0xa9e0798c regmap_add_irq_chip -EXPORT_SYMBOL_GPL vmlinux 0xa9e18049 task_handoff_unregister -EXPORT_SYMBOL_GPL vmlinux 0xa9e30132 nl_table -EXPORT_SYMBOL_GPL vmlinux 0xa9fc1d22 dma_alloc_noncontiguous -EXPORT_SYMBOL_GPL vmlinux 0xaa0819d5 call_srcu -EXPORT_SYMBOL_GPL vmlinux 0xaa0e6271 fat_sync_inode -EXPORT_SYMBOL_GPL vmlinux 0xaa230f88 perf_unregister_guest_info_callbacks -EXPORT_SYMBOL_GPL vmlinux 0xaa39289e nvdimm_cmd_mask -EXPORT_SYMBOL_GPL vmlinux 0xaa4a1482 iommu_group_get -EXPORT_SYMBOL_GPL vmlinux 0xaa4c2d60 fuse_direct_io -EXPORT_SYMBOL_GPL vmlinux 0xaa51fa27 dequeue_signal -EXPORT_SYMBOL_GPL vmlinux 0xaa57e719 dev_pm_opp_remove -EXPORT_SYMBOL_GPL vmlinux 0xaa5f1fc0 genphy_c45_aneg_done -EXPORT_SYMBOL_GPL vmlinux 0xaa6170f8 xenbus_probe_node -EXPORT_SYMBOL_GPL vmlinux 0xaa6a50f9 __static_key_deferred_flush -EXPORT_SYMBOL_GPL vmlinux 0xaa853796 tpm_chip_unregister -EXPORT_SYMBOL_GPL vmlinux 0xaaa918c9 ftrace_dump -EXPORT_SYMBOL_GPL vmlinux 0xaac2998d bgmac_enet_remove -EXPORT_SYMBOL_GPL vmlinux 0xaacffb35 irq_of_parse_and_map -EXPORT_SYMBOL_GPL vmlinux 0xaae170a1 clone_private_mount -EXPORT_SYMBOL_GPL vmlinux 0xaaf8f780 ahci_error_handler -EXPORT_SYMBOL_GPL vmlinux 0xab047cb3 scmi_protocol_register -EXPORT_SYMBOL_GPL vmlinux 0xab060841 zynqmp_pm_query_data -EXPORT_SYMBOL_GPL vmlinux 0xab1e0e93 hv_setup_kexec_handler -EXPORT_SYMBOL_GPL vmlinux 0xab3c2d41 klist_iter_init -EXPORT_SYMBOL_GPL vmlinux 0xab64b5a2 ip_icmp_error_rfc4884 -EXPORT_SYMBOL_GPL vmlinux 0xab6943f8 devm_phy_destroy -EXPORT_SYMBOL_GPL vmlinux 0xab695818 dev_pm_qos_add_request -EXPORT_SYMBOL_GPL vmlinux 0xab6f1851 fwnode_property_read_string_array -EXPORT_SYMBOL_GPL vmlinux 0xab74e245 usb_get_intf -EXPORT_SYMBOL_GPL vmlinux 0xab7f853d mtk_mutex_prepare -EXPORT_SYMBOL_GPL vmlinux 0xab917855 devlink_dpipe_headers_unregister -EXPORT_SYMBOL_GPL vmlinux 0xab9447f9 dev_pm_get_subsys_data -EXPORT_SYMBOL_GPL vmlinux 0xab981c37 nd_cmd_in_size -EXPORT_SYMBOL_GPL vmlinux 0xab9bd884 perf_register_guest_info_callbacks -EXPORT_SYMBOL_GPL vmlinux 0xabb46d8f iommu_device_register -EXPORT_SYMBOL_GPL vmlinux 0xabc640f3 list_lru_isolate -EXPORT_SYMBOL_GPL vmlinux 0xabd45848 stop_machine -EXPORT_SYMBOL_GPL vmlinux 0xabdb9cb2 dev_pm_opp_get_max_volt_latency -EXPORT_SYMBOL_GPL vmlinux 0xabdccee9 dev_pm_opp_set_opp -EXPORT_SYMBOL_GPL vmlinux 0xabe08076 regulator_get_voltage_sel_pickable_regmap -EXPORT_SYMBOL_GPL vmlinux 0xac03eb0f dev_pm_opp_get_freq -EXPORT_SYMBOL_GPL vmlinux 0xac137155 crypto_alloc_skcipher -EXPORT_SYMBOL_GPL vmlinux 0xac13a884 register_pernet_device -EXPORT_SYMBOL_GPL vmlinux 0xac21735f subsys_dev_iter_next -EXPORT_SYMBOL_GPL vmlinux 0xac2fcf2a devlink_resources_unregister -EXPORT_SYMBOL_GPL vmlinux 0xac3cd5e0 __clocksource_register_scale -EXPORT_SYMBOL_GPL vmlinux 0xac45b183 put_device -EXPORT_SYMBOL_GPL vmlinux 0xac52cbfe blkdev_nr_zones -EXPORT_SYMBOL_GPL vmlinux 0xac7211fd serdev_device_write_wakeup -EXPORT_SYMBOL_GPL vmlinux 0xac72b43f subsys_dev_iter_exit -EXPORT_SYMBOL_GPL vmlinux 0xac72bc6f xas_find_conflict -EXPORT_SYMBOL_GPL vmlinux 0xac73fb6c fuse_dev_install -EXPORT_SYMBOL_GPL vmlinux 0xac837eed of_clk_parent_fill -EXPORT_SYMBOL_GPL vmlinux 0xac996c16 fscrypt_ioctl_remove_key_all_users -EXPORT_SYMBOL_GPL vmlinux 0xac9d3257 dev_pm_opp_register_set_opp_helper -EXPORT_SYMBOL_GPL vmlinux 0xacb4d88c clk_rate_exclusive_put -EXPORT_SYMBOL_GPL vmlinux 0xacd02fd6 btree_init -EXPORT_SYMBOL_GPL vmlinux 0xacdc60c2 inet_hashinfo_init -EXPORT_SYMBOL_GPL vmlinux 0xad07cf06 iommu_setup_dma_ops -EXPORT_SYMBOL_GPL vmlinux 0xad0e580d ata_port_schedule_eh -EXPORT_SYMBOL_GPL vmlinux 0xad0fa9d3 freq_qos_add_request -EXPORT_SYMBOL_GPL vmlinux 0xad18946a devm_phy_create -EXPORT_SYMBOL_GPL vmlinux 0xad25343c netdev_is_rx_handler_busy -EXPORT_SYMBOL_GPL vmlinux 0xad25602f __tracepoint_sched_overutilized_tp -EXPORT_SYMBOL_GPL vmlinux 0xad395dd9 mm_account_pinned_pages -EXPORT_SYMBOL_GPL vmlinux 0xad42dff8 __SCK__tp_func_tcp_bad_csum -EXPORT_SYMBOL_GPL vmlinux 0xad46791c acpi_irq_create_hierarchy -EXPORT_SYMBOL_GPL vmlinux 0xad46e961 regulator_set_soft_start_regmap -EXPORT_SYMBOL_GPL vmlinux 0xad4e6259 remove_cpu -EXPORT_SYMBOL_GPL vmlinux 0xad5737fc efivar_init -EXPORT_SYMBOL_GPL vmlinux 0xad63cce3 irq_gc_ack_set_bit -EXPORT_SYMBOL_GPL vmlinux 0xad645234 register_switchdev_notifier -EXPORT_SYMBOL_GPL vmlinux 0xad6bc772 tpm_pm_suspend -EXPORT_SYMBOL_GPL vmlinux 0xad76a3f0 __SCK__tp_func_neigh_update_done -EXPORT_SYMBOL_GPL vmlinux 0xad9010d0 pingv6_prot -EXPORT_SYMBOL_GPL vmlinux 0xada38766 dst_cache_destroy -EXPORT_SYMBOL_GPL vmlinux 0xadc7395f of_genpd_add_provider_onecell -EXPORT_SYMBOL_GPL vmlinux 0xadcae333 of_fwnode_ops -EXPORT_SYMBOL_GPL vmlinux 0xadda7aea bio_release_pages -EXPORT_SYMBOL_GPL vmlinux 0xade12807 unregister_hw_breakpoint -EXPORT_SYMBOL_GPL vmlinux 0xae09f1da devlink_dpipe_action_put -EXPORT_SYMBOL_GPL vmlinux 0xae0d1161 tty_buffer_lock_exclusive -EXPORT_SYMBOL_GPL vmlinux 0xae1051b0 net_cls_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0xae1e4470 hrtimer_active -EXPORT_SYMBOL_GPL vmlinux 0xae324c2b sk_msg_is_readable -EXPORT_SYMBOL_GPL vmlinux 0xae39f80e dst_cache_init -EXPORT_SYMBOL_GPL vmlinux 0xae3edc88 fsstack_copy_inode_size -EXPORT_SYMBOL_GPL vmlinux 0xae487335 __rio_local_read_config_16 -EXPORT_SYMBOL_GPL vmlinux 0xae5a6a79 phy_put -EXPORT_SYMBOL_GPL vmlinux 0xae63431b __traceiter_neigh_event_send_dead -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 0xae69db79 spi_mem_dirmap_create -EXPORT_SYMBOL_GPL vmlinux 0xae7c231d mpi_cmp -EXPORT_SYMBOL_GPL vmlinux 0xae7ed782 xdp_build_skb_from_frame -EXPORT_SYMBOL_GPL vmlinux 0xae947e49 crypto_shash_digest -EXPORT_SYMBOL_GPL vmlinux 0xae98bb2c dev_forward_skb -EXPORT_SYMBOL_GPL vmlinux 0xae9e1f97 ata_std_prereset -EXPORT_SYMBOL_GPL vmlinux 0xaead6d55 xas_set_mark -EXPORT_SYMBOL_GPL vmlinux 0xaeaedd5b to_of_pinfo -EXPORT_SYMBOL_GPL vmlinux 0xaebbf4f5 ata_sas_port_start -EXPORT_SYMBOL_GPL vmlinux 0xaec103bd crypto_unregister_shash -EXPORT_SYMBOL_GPL vmlinux 0xaec43cf9 acpi_subsys_runtime_suspend -EXPORT_SYMBOL_GPL vmlinux 0xaec4ec38 sbitmap_prepare_to_wait -EXPORT_SYMBOL_GPL vmlinux 0xaecca596 acpi_unbind_one -EXPORT_SYMBOL_GPL vmlinux 0xaee604c3 raw_seq_start -EXPORT_SYMBOL_GPL vmlinux 0xaee60c87 fixed_phy_register -EXPORT_SYMBOL_GPL vmlinux 0xaee69c63 regmap_fields_read -EXPORT_SYMBOL_GPL vmlinux 0xaef48a0a regulator_list_voltage_pickable_linear_range -EXPORT_SYMBOL_GPL vmlinux 0xaf076aec nd_fletcher64 -EXPORT_SYMBOL_GPL vmlinux 0xaf0b6ba7 blkg_rwstat_init -EXPORT_SYMBOL_GPL vmlinux 0xaf117d81 rtc_alarm_irq_enable -EXPORT_SYMBOL_GPL vmlinux 0xaf12ebb0 sysfs_remove_mount_point -EXPORT_SYMBOL_GPL vmlinux 0xaf21cb2d pci_set_cacheline_size -EXPORT_SYMBOL_GPL vmlinux 0xaf2cae84 nd_blk_region_to_dimm -EXPORT_SYMBOL_GPL vmlinux 0xaf2cb03d dpcon_set_notification -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 0xaf43eebc wm8350_read_auxadc -EXPORT_SYMBOL_GPL vmlinux 0xaf4fe3d5 icc_node_create -EXPORT_SYMBOL_GPL vmlinux 0xaf4fef7a phy_modify_mmd -EXPORT_SYMBOL_GPL vmlinux 0xaf6b31fd xdp_rxq_info_is_reg -EXPORT_SYMBOL_GPL vmlinux 0xaf7252a9 scsi_host_complete_all_commands -EXPORT_SYMBOL_GPL vmlinux 0xaf754d95 alarm_forward -EXPORT_SYMBOL_GPL vmlinux 0xaf7690b7 device_destroy -EXPORT_SYMBOL_GPL vmlinux 0xaf793668 __alloc_percpu_gfp -EXPORT_SYMBOL_GPL vmlinux 0xaf7e7f1c usb_hcd_platform_shutdown -EXPORT_SYMBOL_GPL vmlinux 0xaf80a879 btree_insert -EXPORT_SYMBOL_GPL vmlinux 0xaf852873 cpuidle_register_device -EXPORT_SYMBOL_GPL vmlinux 0xaf8d2630 skb_send_sock_locked -EXPORT_SYMBOL_GPL vmlinux 0xaf939cb9 handle_fasteoi_mask_irq -EXPORT_SYMBOL_GPL vmlinux 0xafa2a595 regulator_suspend_enable -EXPORT_SYMBOL_GPL vmlinux 0xafa763be ncsi_start_dev -EXPORT_SYMBOL_GPL vmlinux 0xafb07262 __pfn_to_mfn -EXPORT_SYMBOL_GPL vmlinux 0xafc2209f tegra_bpmp_transfer_atomic -EXPORT_SYMBOL_GPL vmlinux 0xafc29228 pci_epf_destroy -EXPORT_SYMBOL_GPL vmlinux 0xafc33fe8 dprc_open -EXPORT_SYMBOL_GPL vmlinux 0xafc3a966 show_class_attr_string -EXPORT_SYMBOL_GPL vmlinux 0xafddd545 ata_id_c_string -EXPORT_SYMBOL_GPL vmlinux 0xafeb58c1 __SCK__tp_func_io_page_fault -EXPORT_SYMBOL_GPL vmlinux 0xaff9d588 fat_time_unix2fat -EXPORT_SYMBOL_GPL vmlinux 0xb0099f79 topology_clear_scale_freq_source -EXPORT_SYMBOL_GPL vmlinux 0xb00ebc09 i2c_match_id -EXPORT_SYMBOL_GPL vmlinux 0xb0124e41 uprobe_register_refctr -EXPORT_SYMBOL_GPL vmlinux 0xb020bbb9 blk_mq_sched_try_insert_merge -EXPORT_SYMBOL_GPL vmlinux 0xb029140a fscrypt_ioctl_get_policy_ex -EXPORT_SYMBOL_GPL vmlinux 0xb02ac411 register_xenstore_notifier -EXPORT_SYMBOL_GPL vmlinux 0xb037da1b blk_queue_can_use_dma_map_merging -EXPORT_SYMBOL_GPL vmlinux 0xb049a294 __SCK__tp_func_pelt_irq_tp -EXPORT_SYMBOL_GPL vmlinux 0xb053fb5a fwnode_graph_get_port_parent -EXPORT_SYMBOL_GPL vmlinux 0xb0587b12 clk_register_gate -EXPORT_SYMBOL_GPL vmlinux 0xb05b68d5 zynqmp_pm_reset_get_status -EXPORT_SYMBOL_GPL vmlinux 0xb0747ed2 rcu_cpu_stall_suppress -EXPORT_SYMBOL_GPL vmlinux 0xb077e70a clk_unprepare -EXPORT_SYMBOL_GPL vmlinux 0xb07a6af6 tpm_tis_core_init -EXPORT_SYMBOL_GPL vmlinux 0xb086bd1c __hwspin_unlock -EXPORT_SYMBOL_GPL vmlinux 0xb08a22a3 cpufreq_show_cpus -EXPORT_SYMBOL_GPL vmlinux 0xb090febc extcon_set_state_sync -EXPORT_SYMBOL_GPL vmlinux 0xb0b85f47 ring_buffer_iter_reset -EXPORT_SYMBOL_GPL vmlinux 0xb0bb7c4a devlink_params_publish -EXPORT_SYMBOL_GPL vmlinux 0xb0ce4e61 register_wide_hw_breakpoint -EXPORT_SYMBOL_GPL vmlinux 0xb0d1656c gpio_free_array -EXPORT_SYMBOL_GPL vmlinux 0xb0e612e2 phy_optional_get -EXPORT_SYMBOL_GPL vmlinux 0xb0e8e671 xenbus_otherend_changed -EXPORT_SYMBOL_GPL vmlinux 0xb0ed86b4 qcom_smem_state_get -EXPORT_SYMBOL_GPL vmlinux 0xb0f70b2b transport_class_unregister -EXPORT_SYMBOL_GPL vmlinux 0xb0f830b2 crypto_register_templates -EXPORT_SYMBOL_GPL vmlinux 0xb0fec5ac l3mdev_table_lookup_register -EXPORT_SYMBOL_GPL vmlinux 0xb0ff62e7 of_pci_address_to_resource -EXPORT_SYMBOL_GPL vmlinux 0xb10d964d devlink_fmsg_pair_nest_end -EXPORT_SYMBOL_GPL vmlinux 0xb11d9000 tty_dev_name_to_number -EXPORT_SYMBOL_GPL vmlinux 0xb1471180 fscrypt_ioctl_add_key -EXPORT_SYMBOL_GPL vmlinux 0xb16077bd ncsi_unregister_dev -EXPORT_SYMBOL_GPL vmlinux 0xb1647fc2 devlink_info_version_running_put -EXPORT_SYMBOL_GPL vmlinux 0xb16c6949 list_lru_walk_node -EXPORT_SYMBOL_GPL vmlinux 0xb16de95d pinctrl_remove_gpio_range -EXPORT_SYMBOL_GPL vmlinux 0xb18429eb suspend_device_irqs -EXPORT_SYMBOL_GPL vmlinux 0xb1877870 regulator_list_voltage_table -EXPORT_SYMBOL_GPL vmlinux 0xb19fa71c uart_set_options -EXPORT_SYMBOL_GPL vmlinux 0xb1a35306 devm_blk_ksm_init -EXPORT_SYMBOL_GPL vmlinux 0xb1a5306f __pm_runtime_idle -EXPORT_SYMBOL_GPL vmlinux 0xb1bed25d dpm_resume_start -EXPORT_SYMBOL_GPL vmlinux 0xb1ca6406 ata_dev_next -EXPORT_SYMBOL_GPL vmlinux 0xb1d294a5 perf_event_period -EXPORT_SYMBOL_GPL vmlinux 0xb1dcbd20 klist_add_tail -EXPORT_SYMBOL_GPL vmlinux 0xb1e25684 __trace_bputs -EXPORT_SYMBOL_GPL vmlinux 0xb1e94fa0 scsi_target_unblock -EXPORT_SYMBOL_GPL vmlinux 0xb1f857c6 security_inode_mkdir -EXPORT_SYMBOL_GPL vmlinux 0xb1f91eea fib_alias_hw_flags_set -EXPORT_SYMBOL_GPL vmlinux 0xb1fc1782 pci_speed_string -EXPORT_SYMBOL_GPL vmlinux 0xb1fc5390 phy_speed_down -EXPORT_SYMBOL_GPL vmlinux 0xb20db2cd spi_res_release -EXPORT_SYMBOL_GPL vmlinux 0xb216862d tps80031_ext_power_req_config -EXPORT_SYMBOL_GPL vmlinux 0xb21b8548 clk_hw_register_fractional_divider -EXPORT_SYMBOL_GPL vmlinux 0xb2210d64 reset_control_deassert -EXPORT_SYMBOL_GPL vmlinux 0xb222fbda tcp_bpf_sendmsg_redir -EXPORT_SYMBOL_GPL vmlinux 0xb22acea1 blk_mq_freeze_queue_wait -EXPORT_SYMBOL_GPL vmlinux 0xb22ba254 dev_pm_opp_set_prop_name -EXPORT_SYMBOL_GPL vmlinux 0xb22ba4d5 da903x_read -EXPORT_SYMBOL_GPL vmlinux 0xb2405efc secure_tcp_seq -EXPORT_SYMBOL_GPL vmlinux 0xb240ce83 fsl_mc_populate_irq_pool -EXPORT_SYMBOL_GPL vmlinux 0xb2439d25 genphy_c45_check_and_restart_aneg -EXPORT_SYMBOL_GPL vmlinux 0xb25104c1 pwm_get -EXPORT_SYMBOL_GPL vmlinux 0xb25bb27a devm_extcon_dev_register -EXPORT_SYMBOL_GPL vmlinux 0xb260f2f1 gpiochip_is_requested -EXPORT_SYMBOL_GPL vmlinux 0xb261500b tcp_twsk_unique -EXPORT_SYMBOL_GPL vmlinux 0xb2640854 extcon_get_property -EXPORT_SYMBOL_GPL vmlinux 0xb26a1add elfcorehdr_addr -EXPORT_SYMBOL_GPL vmlinux 0xb2943edc __irq_alloc_domain_generic_chips -EXPORT_SYMBOL_GPL vmlinux 0xb2944527 crypto_get_default_null_skcipher -EXPORT_SYMBOL_GPL vmlinux 0xb29533ee zs_malloc -EXPORT_SYMBOL_GPL vmlinux 0xb29681f6 blk_mq_alloc_sq_tag_set -EXPORT_SYMBOL_GPL vmlinux 0xb29ea1bf tpm_calc_ordinal_duration -EXPORT_SYMBOL_GPL vmlinux 0xb2a21966 device_property_read_string_array -EXPORT_SYMBOL_GPL vmlinux 0xb2aa14ce usb_autopm_get_interface_async -EXPORT_SYMBOL_GPL vmlinux 0xb2ae5223 skb_cow_data -EXPORT_SYMBOL_GPL vmlinux 0xb2c1732e rcu_gp_set_torture_wait -EXPORT_SYMBOL_GPL vmlinux 0xb2d68ff7 dw_pcie_own_conf_map_bus -EXPORT_SYMBOL_GPL vmlinux 0xb2e19a12 mtk_pinconf_adv_pull_get -EXPORT_SYMBOL_GPL vmlinux 0xb2e2a474 crypto_unregister_scomps -EXPORT_SYMBOL_GPL vmlinux 0xb2e764e8 suspend_valid_only_mem -EXPORT_SYMBOL_GPL vmlinux 0xb2e7781c sata_set_spd -EXPORT_SYMBOL_GPL vmlinux 0xb2ea738f usb_unanchor_urb -EXPORT_SYMBOL_GPL vmlinux 0xb2facfe5 badrange_add -EXPORT_SYMBOL_GPL vmlinux 0xb307c909 devlink_fmsg_u64_pair_put -EXPORT_SYMBOL_GPL vmlinux 0xb31d4bd0 dpcon_get_attributes -EXPORT_SYMBOL_GPL vmlinux 0xb31ffc54 mmc_sanitize -EXPORT_SYMBOL_GPL vmlinux 0xb323deee regmap_write -EXPORT_SYMBOL_GPL vmlinux 0xb32a9ded usb_hcd_poll_rh_status -EXPORT_SYMBOL_GPL vmlinux 0xb32d20df pci_load_and_free_saved_state -EXPORT_SYMBOL_GPL vmlinux 0xb341a674 dev_pm_opp_get_of_node -EXPORT_SYMBOL_GPL vmlinux 0xb349a6d0 dma_buf_export -EXPORT_SYMBOL_GPL vmlinux 0xb3506efb mbox_controller_register -EXPORT_SYMBOL_GPL vmlinux 0xb36bdf6d pci_pr3_present -EXPORT_SYMBOL_GPL vmlinux 0xb38bacae wm831x_reg_read -EXPORT_SYMBOL_GPL vmlinux 0xb39f4790 vfs_removexattr -EXPORT_SYMBOL_GPL vmlinux 0xb3bb88b9 spi_sync_locked -EXPORT_SYMBOL_GPL vmlinux 0xb3dfab78 sysfs_remove_link -EXPORT_SYMBOL_GPL vmlinux 0xb3e78e4e debugfs_create_u32_array -EXPORT_SYMBOL_GPL vmlinux 0xb3f032ca devm_fwnode_pwm_get -EXPORT_SYMBOL_GPL vmlinux 0xb40d673e zynqmp_pm_pinctrl_request -EXPORT_SYMBOL_GPL vmlinux 0xb418cc9a __platform_driver_register -EXPORT_SYMBOL_GPL vmlinux 0xb42e110e da903x_update -EXPORT_SYMBOL_GPL vmlinux 0xb4392f25 bgmac_enet_probe -EXPORT_SYMBOL_GPL vmlinux 0xb43f9365 ktime_get -EXPORT_SYMBOL_GPL vmlinux 0xb4429b64 acpi_dev_resource_ext_address_space -EXPORT_SYMBOL_GPL vmlinux 0xb44e18ea audit_enabled -EXPORT_SYMBOL_GPL vmlinux 0xb4617c5e tty_ldisc_ref_wait -EXPORT_SYMBOL_GPL vmlinux 0xb4685e49 usb_alloc_streams -EXPORT_SYMBOL_GPL vmlinux 0xb472347b md_bitmap_resize -EXPORT_SYMBOL_GPL vmlinux 0xb489aaf0 input_ff_flush -EXPORT_SYMBOL_GPL vmlinux 0xb48a6ec4 power_supply_get_property_from_supplier -EXPORT_SYMBOL_GPL vmlinux 0xb48f0638 software_node_register -EXPORT_SYMBOL_GPL vmlinux 0xb4a8d5f4 pm_runtime_irq_safe -EXPORT_SYMBOL_GPL vmlinux 0xb4ac350f transport_class_register -EXPORT_SYMBOL_GPL vmlinux 0xb4b161ce dma_buf_move_notify -EXPORT_SYMBOL_GPL vmlinux 0xb4b19455 imx8m_clk_hw_composite_flags -EXPORT_SYMBOL_GPL vmlinux 0xb4b75845 alloc_dax_region -EXPORT_SYMBOL_GPL vmlinux 0xb4b8c2c7 __mmu_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0xb4b97c90 pvclock_gtod_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0xb4bba115 __sock_recv_timestamp -EXPORT_SYMBOL_GPL vmlinux 0xb4c7550b __pci_reset_function_locked -EXPORT_SYMBOL_GPL vmlinux 0xb4d9811d devm_serdev_device_open -EXPORT_SYMBOL_GPL vmlinux 0xb4dd2d91 i2c_parse_fw_timings -EXPORT_SYMBOL_GPL vmlinux 0xb4dd950d governor_sysfs_ops -EXPORT_SYMBOL_GPL vmlinux 0xb4dff310 ata_acpi_stm -EXPORT_SYMBOL_GPL vmlinux 0xb4e3841e strp_unpause -EXPORT_SYMBOL_GPL vmlinux 0xb4ea7cf7 kgdb_connected -EXPORT_SYMBOL_GPL vmlinux 0xb4eda0da ring_buffer_event_length -EXPORT_SYMBOL_GPL vmlinux 0xb4f31ef8 dpbp_get_attributes -EXPORT_SYMBOL_GPL vmlinux 0xb5002956 pinctrl_select_state -EXPORT_SYMBOL_GPL vmlinux 0xb501b2df nd_cmd_dimm_desc -EXPORT_SYMBOL_GPL vmlinux 0xb51ede5f tcp_slow_start -EXPORT_SYMBOL_GPL vmlinux 0xb51fbd64 edac_op_state -EXPORT_SYMBOL_GPL vmlinux 0xb549483e clk_regmap_mux_ops -EXPORT_SYMBOL_GPL vmlinux 0xb54b1bc2 tpm1_getcap -EXPORT_SYMBOL_GPL vmlinux 0xb55de460 HYPERVISOR_dm_op -EXPORT_SYMBOL_GPL vmlinux 0xb56af6de regulator_list_hardware_vsel -EXPORT_SYMBOL_GPL vmlinux 0xb56c1e8c __devm_pci_epc_create -EXPORT_SYMBOL_GPL vmlinux 0xb57c18c6 devlink_port_register -EXPORT_SYMBOL_GPL vmlinux 0xb5813cdc icmp_build_probe -EXPORT_SYMBOL_GPL vmlinux 0xb58e49e9 imx_unregister_hw_clocks -EXPORT_SYMBOL_GPL vmlinux 0xb592e83f crypto_alloc_acomp_node -EXPORT_SYMBOL_GPL vmlinux 0xb5a83e35 gnttab_setup_auto_xlat_frames -EXPORT_SYMBOL_GPL vmlinux 0xb5a8c226 acpi_gsi_to_irq -EXPORT_SYMBOL_GPL vmlinux 0xb5b3721a mtk_mutex_get -EXPORT_SYMBOL_GPL vmlinux 0xb5b6fb04 hv_get_vpreg -EXPORT_SYMBOL_GPL vmlinux 0xb5b9ac7f file_ra_state_init -EXPORT_SYMBOL_GPL vmlinux 0xb5ba4e49 phy_speed_up -EXPORT_SYMBOL_GPL vmlinux 0xb5d4ddc8 fsl_mc_driver_unregister -EXPORT_SYMBOL_GPL vmlinux 0xb5de2fe9 vfs_lock_file -EXPORT_SYMBOL_GPL vmlinux 0xb5ef0a2a devlink_port_type_ib_set -EXPORT_SYMBOL_GPL vmlinux 0xb5fc8a60 pci_hp_create_module_link -EXPORT_SYMBOL_GPL vmlinux 0xb6014ab2 fwnode_get_nth_parent -EXPORT_SYMBOL_GPL vmlinux 0xb61a8203 irq_get_domain_generic_chip -EXPORT_SYMBOL_GPL vmlinux 0xb6246f75 mptcp_pm_get_add_addr_accept_max -EXPORT_SYMBOL_GPL vmlinux 0xb6261484 register_die_notifier -EXPORT_SYMBOL_GPL vmlinux 0xb6357e53 cpuidle_enable_device -EXPORT_SYMBOL_GPL vmlinux 0xb63e49a2 ahci_do_softreset -EXPORT_SYMBOL_GPL vmlinux 0xb6410433 mpi_addm -EXPORT_SYMBOL_GPL vmlinux 0xb645aac8 generic_handle_domain_irq -EXPORT_SYMBOL_GPL vmlinux 0xb655f91b pci_epc_get_next_free_bar -EXPORT_SYMBOL_GPL vmlinux 0xb668504a pci_ecam_map_bus -EXPORT_SYMBOL_GPL vmlinux 0xb66a41c3 of_irq_get_byname -EXPORT_SYMBOL_GPL vmlinux 0xb66b5228 da9052_adc_manual_read -EXPORT_SYMBOL_GPL vmlinux 0xb6745749 devfreq_event_is_enabled -EXPORT_SYMBOL_GPL vmlinux 0xb6787346 sfp_unregister_socket -EXPORT_SYMBOL_GPL vmlinux 0xb679829c fwnode_graph_get_remote_endpoint -EXPORT_SYMBOL_GPL vmlinux 0xb6845453 ata_pci_device_suspend -EXPORT_SYMBOL_GPL vmlinux 0xb689cb10 inet_csk_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0xb6923aa5 regcache_mark_dirty -EXPORT_SYMBOL_GPL vmlinux 0xb6a7f1bc dev_pm_put_subsys_data -EXPORT_SYMBOL_GPL vmlinux 0xb6d1d955 dev_pm_opp_find_level_exact -EXPORT_SYMBOL_GPL vmlinux 0xb6d4aec5 dma_free_noncontiguous -EXPORT_SYMBOL_GPL vmlinux 0xb6d6861e freq_qos_remove_notifier -EXPORT_SYMBOL_GPL vmlinux 0xb6d79298 kstrdup_quotable_file -EXPORT_SYMBOL_GPL vmlinux 0xb6e6d99d clk_disable -EXPORT_SYMBOL_GPL vmlinux 0xb6ef2903 klist_add_head -EXPORT_SYMBOL_GPL vmlinux 0xb6ff34be clk_register_fixed_rate -EXPORT_SYMBOL_GPL vmlinux 0xb71049b8 pm_runtime_suspended_time -EXPORT_SYMBOL_GPL vmlinux 0xb71bb42b devm_memunmap_pages -EXPORT_SYMBOL_GPL vmlinux 0xb72f2b63 __pm_runtime_disable -EXPORT_SYMBOL_GPL vmlinux 0xb7329c06 clk_set_phase -EXPORT_SYMBOL_GPL vmlinux 0xb73713d7 nvmem_add_cell_lookups -EXPORT_SYMBOL_GPL vmlinux 0xb737739f bpf_trace_run3 -EXPORT_SYMBOL_GPL vmlinux 0xb740be53 dev_attr_em_message -EXPORT_SYMBOL_GPL vmlinux 0xb747165c wm8350_reg_lock -EXPORT_SYMBOL_GPL vmlinux 0xb7666bf2 regulator_register_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0xb76d11a1 fwnode_get_next_child_node -EXPORT_SYMBOL_GPL vmlinux 0xb77f0184 xfrm_dev_offload_ok -EXPORT_SYMBOL_GPL vmlinux 0xb782c1a3 hv_get_vpreg_128 -EXPORT_SYMBOL_GPL vmlinux 0xb783a286 gnttab_page_cache_shrink -EXPORT_SYMBOL_GPL vmlinux 0xb786bf75 pci_write_msi_msg -EXPORT_SYMBOL_GPL vmlinux 0xb7935686 usb_register_device_driver -EXPORT_SYMBOL_GPL vmlinux 0xb79f1173 cros_ec_check_features -EXPORT_SYMBOL_GPL vmlinux 0xb7a387fc synchronize_rcu_tasks_rude -EXPORT_SYMBOL_GPL vmlinux 0xb7b6e16e devm_gpiod_get_array -EXPORT_SYMBOL_GPL vmlinux 0xb7b99f04 clean_acked_data_disable -EXPORT_SYMBOL_GPL vmlinux 0xb7bf2abc dev_pm_qos_add_notifier -EXPORT_SYMBOL_GPL vmlinux 0xb7c14a1f pci_user_write_config_byte -EXPORT_SYMBOL_GPL vmlinux 0xb7c3b400 vp_modern_set_queue_enable -EXPORT_SYMBOL_GPL vmlinux 0xb7c69a63 unregister_vmap_purge_notifier -EXPORT_SYMBOL_GPL vmlinux 0xb7cc0cff __tracepoint_br_fdb_add -EXPORT_SYMBOL_GPL vmlinux 0xb7db03c6 mtk_pinconf_drive_get_raw -EXPORT_SYMBOL_GPL vmlinux 0xb7dbbef1 of_reserved_mem_device_init_by_idx -EXPORT_SYMBOL_GPL vmlinux 0xb7e33e7c cpufreq_driver_resolve_freq -EXPORT_SYMBOL_GPL vmlinux 0xb7f6adfd dev_attr_sw_activity -EXPORT_SYMBOL_GPL vmlinux 0xb7f990e9 rht_bucket_nested -EXPORT_SYMBOL_GPL vmlinux 0xb8026607 usb_reset_device -EXPORT_SYMBOL_GPL vmlinux 0xb809500a fb_deferred_io_fsync -EXPORT_SYMBOL_GPL vmlinux 0xb8149a0c __percpu_init_rwsem -EXPORT_SYMBOL_GPL vmlinux 0xb83a9a5b unmap_mapping_pages -EXPORT_SYMBOL_GPL vmlinux 0xb847585f is_hash_blacklisted -EXPORT_SYMBOL_GPL vmlinux 0xb84fe9d8 acpi_bus_trim -EXPORT_SYMBOL_GPL vmlinux 0xb85630ee dma_release_channel -EXPORT_SYMBOL_GPL vmlinux 0xb8795f64 of_nvmem_device_get -EXPORT_SYMBOL_GPL vmlinux 0xb87c5a3e extcon_dev_unregister -EXPORT_SYMBOL_GPL vmlinux 0xb87f40fe cppc_set_enable -EXPORT_SYMBOL_GPL vmlinux 0xb885a1a1 __xenbus_register_backend -EXPORT_SYMBOL_GPL vmlinux 0xb88bc47e arch_apei_report_mem_error -EXPORT_SYMBOL_GPL vmlinux 0xb88dbfce irq_set_irqchip_state -EXPORT_SYMBOL_GPL vmlinux 0xb894c919 synth_event_create -EXPORT_SYMBOL_GPL vmlinux 0xb898b64f pinconf_generic_dump_config -EXPORT_SYMBOL_GPL vmlinux 0xb8993fac __tracepoint_remove_device_from_group -EXPORT_SYMBOL_GPL vmlinux 0xb89e69b1 jump_label_update_timeout -EXPORT_SYMBOL_GPL vmlinux 0xb8a1a480 pci_store_saved_state -EXPORT_SYMBOL_GPL vmlinux 0xb8a7e9b7 list_lru_add -EXPORT_SYMBOL_GPL vmlinux 0xb8b7782a crypto_unregister_alg -EXPORT_SYMBOL_GPL vmlinux 0xb8b8c4f0 ti_sci_release_resource -EXPORT_SYMBOL_GPL vmlinux 0xb8c73e27 irq_chip_retrigger_hierarchy -EXPORT_SYMBOL_GPL vmlinux 0xb8cd3a7f nf_logger_put -EXPORT_SYMBOL_GPL vmlinux 0xb8cfd137 pwm_request -EXPORT_SYMBOL_GPL vmlinux 0xb8d580c5 rio_dma_prep_slave_sg -EXPORT_SYMBOL_GPL vmlinux 0xb8e77b06 device_property_read_u16_array -EXPORT_SYMBOL_GPL vmlinux 0xb8ee613b mpc8xxx_spi_rx_buf_u32 -EXPORT_SYMBOL_GPL vmlinux 0xb8f4ae59 devres_destroy -EXPORT_SYMBOL_GPL vmlinux 0xb9053b83 ata_sas_sync_probe -EXPORT_SYMBOL_GPL vmlinux 0xb90ae361 tegra_bpmp_request_mrq -EXPORT_SYMBOL_GPL vmlinux 0xb912560d static_key_disable -EXPORT_SYMBOL_GPL vmlinux 0xb917b6d7 return_address -EXPORT_SYMBOL_GPL vmlinux 0xb91e0f0a dev_err_probe -EXPORT_SYMBOL_GPL vmlinux 0xb91e1332 iopf_queue_add_device -EXPORT_SYMBOL_GPL vmlinux 0xb93d4f2b pinctrl_force_default -EXPORT_SYMBOL_GPL vmlinux 0xb9434abf tpm_pcr_read -EXPORT_SYMBOL_GPL vmlinux 0xb9492867 xdp_rxq_info_reg -EXPORT_SYMBOL_GPL vmlinux 0xb9613b7c dev_pm_opp_get_sharing_cpus -EXPORT_SYMBOL_GPL vmlinux 0xb9681621 xdp_do_flush -EXPORT_SYMBOL_GPL vmlinux 0xb975bbbb skb_scrub_packet -EXPORT_SYMBOL_GPL vmlinux 0xb976fb7a fat_remove_entries -EXPORT_SYMBOL_GPL vmlinux 0xb97c35e7 dm_accept_partial_bio -EXPORT_SYMBOL_GPL vmlinux 0xb9852d11 __traceiter_mc_event -EXPORT_SYMBOL_GPL vmlinux 0xb98bb315 phy_gbit_fibre_features -EXPORT_SYMBOL_GPL vmlinux 0xb99278be find_asymmetric_key -EXPORT_SYMBOL_GPL vmlinux 0xb99434d1 rt_mutex_lock_killable -EXPORT_SYMBOL_GPL vmlinux 0xb99c5d63 rio_pw_enable -EXPORT_SYMBOL_GPL vmlinux 0xb99e1d94 sk_detach_filter -EXPORT_SYMBOL_GPL vmlinux 0xb9abad61 sysfs_create_link -EXPORT_SYMBOL_GPL vmlinux 0xb9b4f25a nvdimm_blk_region_create -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 0xb9cb1f43 regulator_get_mode -EXPORT_SYMBOL_GPL vmlinux 0xb9d025c9 llist_del_first -EXPORT_SYMBOL_GPL vmlinux 0xb9d7440c devlink_port_type_clear -EXPORT_SYMBOL_GPL vmlinux 0xb9db6963 wm8350_block_write -EXPORT_SYMBOL_GPL vmlinux 0xb9dd9f2e __blkg_prfill_rwstat -EXPORT_SYMBOL_GPL vmlinux 0xb9e5dd93 fwnode_property_get_reference_args -EXPORT_SYMBOL_GPL vmlinux 0xb9e9a85f pci_generic_config_read32 -EXPORT_SYMBOL_GPL vmlinux 0xb9fce775 devm_pinctrl_register_and_init -EXPORT_SYMBOL_GPL vmlinux 0xba057786 kernel_read_file_from_path_initns -EXPORT_SYMBOL_GPL vmlinux 0xba155e79 nfnl_ct_hook -EXPORT_SYMBOL_GPL vmlinux 0xba16cba9 acpi_spi_device_alloc -EXPORT_SYMBOL_GPL vmlinux 0xba2b7f64 cpufreq_generic_get -EXPORT_SYMBOL_GPL vmlinux 0xba329962 of_get_required_opp_performance_state -EXPORT_SYMBOL_GPL vmlinux 0xba54832a pci_dev_run_wake -EXPORT_SYMBOL_GPL vmlinux 0xba7cc3d8 __devm_regmap_init_spi -EXPORT_SYMBOL_GPL vmlinux 0xba970730 driver_attach -EXPORT_SYMBOL_GPL vmlinux 0xba996449 nvmem_device_get -EXPORT_SYMBOL_GPL vmlinux 0xba9f0b96 irq_domain_translate_twocell -EXPORT_SYMBOL_GPL vmlinux 0xba9ff3c7 pci_vpd_alloc -EXPORT_SYMBOL_GPL vmlinux 0xbaa2e427 ata_port_pbar_desc -EXPORT_SYMBOL_GPL vmlinux 0xbab9a9f0 maxim_charger_currents -EXPORT_SYMBOL_GPL vmlinux 0xbaf0ea76 bpf_prog_destroy -EXPORT_SYMBOL_GPL vmlinux 0xbaf22757 kvfree_call_rcu -EXPORT_SYMBOL_GPL vmlinux 0xbaf2cf60 devlink_rate_leaf_destroy -EXPORT_SYMBOL_GPL vmlinux 0xbaf45346 scsi_host_unblock -EXPORT_SYMBOL_GPL vmlinux 0xbaf6850c fsnotify_wait_marks_destroyed -EXPORT_SYMBOL_GPL vmlinux 0xbafc31be sysfs_file_change_owner -EXPORT_SYMBOL_GPL vmlinux 0xbb042432 blk_mq_queue_inflight -EXPORT_SYMBOL_GPL vmlinux 0xbb0ab47b debug_locks -EXPORT_SYMBOL_GPL vmlinux 0xbb0b25d2 register_xenbus_watch -EXPORT_SYMBOL_GPL vmlinux 0xbb107380 page_endio -EXPORT_SYMBOL_GPL vmlinux 0xbb24f372 __SCK__tp_func_attach_device_to_domain -EXPORT_SYMBOL_GPL vmlinux 0xbb2d01ec xenbus_dev_remove -EXPORT_SYMBOL_GPL vmlinux 0xbb33e91c mctrl_gpio_init -EXPORT_SYMBOL_GPL vmlinux 0xbb36895d device_init_wakeup -EXPORT_SYMBOL_GPL vmlinux 0xbb3ce931 platform_get_resource -EXPORT_SYMBOL_GPL vmlinux 0xbb3d96fb sb800_prefetch -EXPORT_SYMBOL_GPL vmlinux 0xbb4bbccf clk_hw_unregister_fixed_rate -EXPORT_SYMBOL_GPL vmlinux 0xbb507657 inet6_sock_destruct -EXPORT_SYMBOL_GPL vmlinux 0xbb5c51b6 xfrm_audit_state_delete -EXPORT_SYMBOL_GPL vmlinux 0xbb5d23fb usb_hub_release_port -EXPORT_SYMBOL_GPL vmlinux 0xbb5e8bdc bus_for_each_drv -EXPORT_SYMBOL_GPL vmlinux 0xbb5f826d regulator_get_voltage -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 0xbb763fbc inet_hash_connect -EXPORT_SYMBOL_GPL vmlinux 0xbb86d56a bpf_offload_dev_netdev_register -EXPORT_SYMBOL_GPL vmlinux 0xbb93eec5 ioasid_alloc -EXPORT_SYMBOL_GPL vmlinux 0xbb9a46e5 io_cgrp_subsys -EXPORT_SYMBOL_GPL vmlinux 0xbbb026f4 acpi_create_platform_device -EXPORT_SYMBOL_GPL vmlinux 0xbbb3c874 rio_unmap_outb_region -EXPORT_SYMBOL_GPL vmlinux 0xbbb4ab02 mtk_mutex_put -EXPORT_SYMBOL_GPL vmlinux 0xbbb9ff4c sk_msg_clone -EXPORT_SYMBOL_GPL vmlinux 0xbbd51d4c regmap_noinc_read -EXPORT_SYMBOL_GPL vmlinux 0xbbe21362 kgdb_register_io_module -EXPORT_SYMBOL_GPL vmlinux 0xbbe56404 sprint_OID -EXPORT_SYMBOL_GPL vmlinux 0xbbf4dfbe phy_basic_t1_features -EXPORT_SYMBOL_GPL vmlinux 0xbbf75651 gnttab_dma_alloc_pages -EXPORT_SYMBOL_GPL vmlinux 0xbc08bc3c __auxiliary_driver_register -EXPORT_SYMBOL_GPL vmlinux 0xbc0c7b93 gov_update_cpu_data -EXPORT_SYMBOL_GPL vmlinux 0xbc143809 register_virtio_device -EXPORT_SYMBOL_GPL vmlinux 0xbc200973 wait_on_page_writeback_killable -EXPORT_SYMBOL_GPL vmlinux 0xbc31d5a5 fsverity_cleanup_inode -EXPORT_SYMBOL_GPL vmlinux 0xbc3f2cb0 timecounter_cyc2time -EXPORT_SYMBOL_GPL vmlinux 0xbc479bd8 __class_create -EXPORT_SYMBOL_GPL vmlinux 0xbc4d2b93 fwnode_graph_get_next_endpoint -EXPORT_SYMBOL_GPL vmlinux 0xbc5f069f dev_pm_opp_of_add_table_indexed -EXPORT_SYMBOL_GPL vmlinux 0xbc6bec66 free_percpu_irq -EXPORT_SYMBOL_GPL vmlinux 0xbc6d7279 serial8250_do_startup -EXPORT_SYMBOL_GPL vmlinux 0xbc6e9035 switchdev_bridge_port_offload -EXPORT_SYMBOL_GPL vmlinux 0xbc82c3d6 fwnode_create_software_node -EXPORT_SYMBOL_GPL vmlinux 0xbc877d34 arm64_mm_context_put -EXPORT_SYMBOL_GPL vmlinux 0xbcaa7db1 virtqueue_get_avail_addr -EXPORT_SYMBOL_GPL vmlinux 0xbcb31b7c mmput -EXPORT_SYMBOL_GPL vmlinux 0xbcc15e75 ktime_get_coarse_with_offset -EXPORT_SYMBOL_GPL vmlinux 0xbcc4d0ab ata_bmdma_stop -EXPORT_SYMBOL_GPL vmlinux 0xbccfd4d8 register_oldmem_pfn_is_ram -EXPORT_SYMBOL_GPL vmlinux 0xbcdbf29d fib6_get_table -EXPORT_SYMBOL_GPL vmlinux 0xbcdd5b99 iommu_group_set_name -EXPORT_SYMBOL_GPL vmlinux 0xbce3480d switchdev_handle_port_obj_add -EXPORT_SYMBOL_GPL vmlinux 0xbcf1f0e6 zs_create_pool -EXPORT_SYMBOL_GPL vmlinux 0xbcf8d7ba i2c_new_smbus_alert_device -EXPORT_SYMBOL_GPL vmlinux 0xbcfb4eac irq_chip_eoi_parent -EXPORT_SYMBOL_GPL vmlinux 0xbcfcafbd pm_generic_poweroff_noirq -EXPORT_SYMBOL_GPL vmlinux 0xbcfe69be divider_ro_round_rate_parent -EXPORT_SYMBOL_GPL vmlinux 0xbd024a25 sk_msg_recvmsg -EXPORT_SYMBOL_GPL vmlinux 0xbd058c4b device_remove_file_self -EXPORT_SYMBOL_GPL vmlinux 0xbd061fcd of_device_request_module -EXPORT_SYMBOL_GPL vmlinux 0xbd089563 of_remove_property -EXPORT_SYMBOL_GPL vmlinux 0xbd15310b xen_unmap_domain_gfn_range -EXPORT_SYMBOL_GPL vmlinux 0xbd1b810c memremap_pages -EXPORT_SYMBOL_GPL vmlinux 0xbd20ba8a ipv6_bpf_stub -EXPORT_SYMBOL_GPL vmlinux 0xbd28a8d3 blk_ksm_is_superset -EXPORT_SYMBOL_GPL vmlinux 0xbd2dfae5 iomap_writepages -EXPORT_SYMBOL_GPL vmlinux 0xbd32fbc7 reset_control_get_count -EXPORT_SYMBOL_GPL vmlinux 0xbd37fa0a sched_set_fifo -EXPORT_SYMBOL_GPL vmlinux 0xbd3fe1e3 disable_hardirq -EXPORT_SYMBOL_GPL vmlinux 0xbd41bb4e __cpufreq_driver_target -EXPORT_SYMBOL_GPL vmlinux 0xbd470712 of_genpd_remove_last -EXPORT_SYMBOL_GPL vmlinux 0xbd52a8c7 __mnt_is_readonly -EXPORT_SYMBOL_GPL vmlinux 0xbd5704ec __tracepoint_xdp_bulk_tx -EXPORT_SYMBOL_GPL vmlinux 0xbd7aaaee add_memory -EXPORT_SYMBOL_GPL vmlinux 0xbd7b7251 netdev_walk_all_upper_dev_rcu -EXPORT_SYMBOL_GPL vmlinux 0xbd8bf74e device_wakeup_disable -EXPORT_SYMBOL_GPL vmlinux 0xbda41cbf validate_xmit_xfrm -EXPORT_SYMBOL_GPL vmlinux 0xbdac4fd3 gpiod_set_debounce -EXPORT_SYMBOL_GPL vmlinux 0xbdae6065 devm_free_pages -EXPORT_SYMBOL_GPL vmlinux 0xbdb2217d hv_is_isolation_supported -EXPORT_SYMBOL_GPL vmlinux 0xbdb72342 __tracepoint_devlink_hwmsg -EXPORT_SYMBOL_GPL vmlinux 0xbdbcea33 phy_exit -EXPORT_SYMBOL_GPL vmlinux 0xbdc170f4 ata_sas_async_probe -EXPORT_SYMBOL_GPL vmlinux 0xbdd5a102 hrtimer_init_sleeper -EXPORT_SYMBOL_GPL vmlinux 0xbded8c1e pwm_get_chip_data -EXPORT_SYMBOL_GPL vmlinux 0xbdeeb5fe acpi_pm_wakeup_event -EXPORT_SYMBOL_GPL vmlinux 0xbdfcd765 phy_driver_is_genphy -EXPORT_SYMBOL_GPL vmlinux 0xbe0e64f8 spi_unregister_device -EXPORT_SYMBOL_GPL vmlinux 0xbe1aca0f debugfs_lookup_and_remove -EXPORT_SYMBOL_GPL vmlinux 0xbe2b02ee usb_check_int_endpoints -EXPORT_SYMBOL_GPL vmlinux 0xbe4f4baa usb_disable_xhci_ports -EXPORT_SYMBOL_GPL vmlinux 0xbe568887 clk_regmap_mux_ro_ops -EXPORT_SYMBOL_GPL vmlinux 0xbe5e3414 k3_udma_glue_reset_rx_chn -EXPORT_SYMBOL_GPL vmlinux 0xbe641b94 dev_pm_qos_expose_latency_limit -EXPORT_SYMBOL_GPL vmlinux 0xbe6528dc sysfs_update_group -EXPORT_SYMBOL_GPL vmlinux 0xbe664dc7 uhci_check_and_reset_hc -EXPORT_SYMBOL_GPL vmlinux 0xbe687e88 wake_up_all_idle_cpus -EXPORT_SYMBOL_GPL vmlinux 0xbe6d43d7 ioasid_put -EXPORT_SYMBOL_GPL vmlinux 0xbe7f7f1d ip6_route_output_flags -EXPORT_SYMBOL_GPL vmlinux 0xbe96dfd8 of_reconfig_notifier_unregister -EXPORT_SYMBOL_GPL vmlinux 0xbe9707ea power_supply_notifier -EXPORT_SYMBOL_GPL vmlinux 0xbe9a83d5 dw_pcie_write -EXPORT_SYMBOL_GPL vmlinux 0xbea5ff1e static_key_initialized -EXPORT_SYMBOL_GPL vmlinux 0xbea71189 ata_sas_queuecmd -EXPORT_SYMBOL_GPL vmlinux 0xbeb6041d bpf_prog_get_type_dev -EXPORT_SYMBOL_GPL vmlinux 0xbec66c3a __apei_exec_run -EXPORT_SYMBOL_GPL vmlinux 0xbeeae5a6 register_virtio_driver -EXPORT_SYMBOL_GPL vmlinux 0xbeeb1d2a devm_pm_opp_attach_genpd -EXPORT_SYMBOL_GPL vmlinux 0xbef51a0d xenbus_watch_path -EXPORT_SYMBOL_GPL vmlinux 0xbefff4b5 pci_disable_pcie_error_reporting -EXPORT_SYMBOL_GPL vmlinux 0xbf041102 register_vt_notifier -EXPORT_SYMBOL_GPL vmlinux 0xbf064ee7 extcon_set_property -EXPORT_SYMBOL_GPL vmlinux 0xbf079b17 __devm_clk_hw_register_divider -EXPORT_SYMBOL_GPL vmlinux 0xbf1220ab badblocks_set -EXPORT_SYMBOL_GPL vmlinux 0xbf1f5418 devlink_alloc_ns -EXPORT_SYMBOL_GPL vmlinux 0xbf2ea730 unregister_ftrace_function -EXPORT_SYMBOL_GPL vmlinux 0xbf316ee6 iommu_map_sg -EXPORT_SYMBOL_GPL vmlinux 0xbf3e3a21 thermal_zone_unbind_cooling_device -EXPORT_SYMBOL_GPL vmlinux 0xbf53a091 rtc_class_open -EXPORT_SYMBOL_GPL vmlinux 0xbf5ba29d nfs_ssc_unregister -EXPORT_SYMBOL_GPL vmlinux 0xbf6c17b3 devm_kstrdup -EXPORT_SYMBOL_GPL vmlinux 0xbf70e5b8 dw_pcie_read_dbi -EXPORT_SYMBOL_GPL vmlinux 0xbf89dc9b crypto_grab_skcipher -EXPORT_SYMBOL_GPL vmlinux 0xbf92d68e mtk_pinconf_adv_drive_get_raw -EXPORT_SYMBOL_GPL vmlinux 0xbf98f739 acpi_dev_get_dma_resources -EXPORT_SYMBOL_GPL vmlinux 0xbfb62b51 pinctrl_find_and_add_gpio_range -EXPORT_SYMBOL_GPL vmlinux 0xbfbc5434 pciserial_resume_ports -EXPORT_SYMBOL_GPL vmlinux 0xbfd41589 thermal_zone_of_sensor_register -EXPORT_SYMBOL_GPL vmlinux 0xbfdc343b meson_vid_pll_div_ro_ops -EXPORT_SYMBOL_GPL vmlinux 0xbfe31eb6 pcie_aspm_capable -EXPORT_SYMBOL_GPL vmlinux 0xbfe5616d tick_broadcast_oneshot_control -EXPORT_SYMBOL_GPL vmlinux 0xbfe72968 ata_wait_register -EXPORT_SYMBOL_GPL vmlinux 0xbfed2cd9 __wait_rcu_gp -EXPORT_SYMBOL_GPL vmlinux 0xbff6e19f usb_remove_phy -EXPORT_SYMBOL_GPL vmlinux 0xc001ccb1 crypto_rng_reset -EXPORT_SYMBOL_GPL vmlinux 0xc0357467 rio_mport_read_config_8 -EXPORT_SYMBOL_GPL vmlinux 0xc03842d4 __mmc_send_status -EXPORT_SYMBOL_GPL vmlinux 0xc04040a3 xenbus_register_driver_common -EXPORT_SYMBOL_GPL vmlinux 0xc05cee80 ipi_get_hwirq -EXPORT_SYMBOL_GPL vmlinux 0xc06aee81 wb_writeout_inc -EXPORT_SYMBOL_GPL vmlinux 0xc0716315 __wake_up_pollfree -EXPORT_SYMBOL_GPL vmlinux 0xc072796b of_dma_router_register -EXPORT_SYMBOL_GPL vmlinux 0xc0848a2c kthread_mod_delayed_work -EXPORT_SYMBOL_GPL vmlinux 0xc0886171 dev_pm_domain_start -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 0xc0b1a447 dev_pm_opp_of_register_em -EXPORT_SYMBOL_GPL vmlinux 0xc0b7eac6 tcp_ca_openreq_child -EXPORT_SYMBOL_GPL vmlinux 0xc0bd7f9c exportfs_decode_fh_raw -EXPORT_SYMBOL_GPL vmlinux 0xc0bf755e __acpi_node_get_property_reference -EXPORT_SYMBOL_GPL vmlinux 0xc0dcb59e edac_layer_name -EXPORT_SYMBOL_GPL vmlinux 0xc0f0458a ip_tunnel_unneed_metadata -EXPORT_SYMBOL_GPL vmlinux 0xc0fad4cd fixed_phy_register_with_gpiod -EXPORT_SYMBOL_GPL vmlinux 0xc0fdadc8 tps6586x_get_version -EXPORT_SYMBOL_GPL vmlinux 0xc1086e0c sysrq_toggle_support -EXPORT_SYMBOL_GPL vmlinux 0xc10fddb8 name_to_dev_t -EXPORT_SYMBOL_GPL vmlinux 0xc114f659 imx_pinctrl_sc_ipc_init -EXPORT_SYMBOL_GPL vmlinux 0xc11d8ac1 crypto_register_ahash -EXPORT_SYMBOL_GPL vmlinux 0xc1304a6e mmu_interval_notifier_insert_locked -EXPORT_SYMBOL_GPL vmlinux 0xc13b8dec pinctrl_unregister -EXPORT_SYMBOL_GPL vmlinux 0xc165c098 netdev_walk_all_lower_dev_rcu -EXPORT_SYMBOL_GPL vmlinux 0xc1743430 cpuidle_disable_device -EXPORT_SYMBOL_GPL vmlinux 0xc17515d7 usb_hcds_loaded -EXPORT_SYMBOL_GPL vmlinux 0xc18e01d9 __dev_change_net_namespace -EXPORT_SYMBOL_GPL vmlinux 0xc198afa9 fuse_conn_init -EXPORT_SYMBOL_GPL vmlinux 0xc1a86d8a dev_pm_opp_set_regulators -EXPORT_SYMBOL_GPL vmlinux 0xc1b8be70 bpfilter_umh_cleanup -EXPORT_SYMBOL_GPL vmlinux 0xc1baaa1d devm_gpiod_get_index -EXPORT_SYMBOL_GPL vmlinux 0xc1dce028 k3_udma_glue_reset_tx_chn -EXPORT_SYMBOL_GPL vmlinux 0xc1ecbeab fat_free_clusters -EXPORT_SYMBOL_GPL vmlinux 0xc1ef1635 cpufreq_dbs_governor_start -EXPORT_SYMBOL_GPL vmlinux 0xc1f5ba68 sysfs_unmerge_group -EXPORT_SYMBOL_GPL vmlinux 0xc20fde33 bgmac_phy_connect_direct -EXPORT_SYMBOL_GPL vmlinux 0xc213926d dev_fill_forward_path -EXPORT_SYMBOL_GPL vmlinux 0xc22a3091 vm_unmap_aliases -EXPORT_SYMBOL_GPL vmlinux 0xc235646a mbox_client_peek_data -EXPORT_SYMBOL_GPL vmlinux 0xc2472388 tegra210_clk_emc_update_setting -EXPORT_SYMBOL_GPL vmlinux 0xc2527930 irq_domain_pop_irq -EXPORT_SYMBOL_GPL vmlinux 0xc25b8971 hv_remove_crash_handler -EXPORT_SYMBOL_GPL vmlinux 0xc2608da2 fib_rules_seq_read -EXPORT_SYMBOL_GPL vmlinux 0xc2654d01 iomap_dio_rw -EXPORT_SYMBOL_GPL vmlinux 0xc2692173 wakeup_sources_read_lock -EXPORT_SYMBOL_GPL vmlinux 0xc26d90e0 locks_alloc_lock -EXPORT_SYMBOL_GPL vmlinux 0xc2730cae regulator_enable_regmap -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 0xc2a99a62 key_set_timeout -EXPORT_SYMBOL_GPL vmlinux 0xc2aa4dc4 usb_deregister -EXPORT_SYMBOL_GPL vmlinux 0xc2ad88f8 crypto_stats_kpp_set_secret -EXPORT_SYMBOL_GPL vmlinux 0xc2b0942d spi_finalize_current_transfer -EXPORT_SYMBOL_GPL vmlinux 0xc2b860a2 meson_pinctrl_probe -EXPORT_SYMBOL_GPL vmlinux 0xc2b90bbd irq_create_fwspec_mapping -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 0xc2cba436 scsi_ioctl_block_when_processing_errors -EXPORT_SYMBOL_GPL vmlinux 0xc2cdbf5c extcon_set_state -EXPORT_SYMBOL_GPL vmlinux 0xc2cdff32 dev_pm_opp_of_remove_table -EXPORT_SYMBOL_GPL vmlinux 0xc2d0801a pci_msi_mask_irq -EXPORT_SYMBOL_GPL vmlinux 0xc2dacff6 crypto_register_scomps -EXPORT_SYMBOL_GPL vmlinux 0xc2de27ca hest_disable -EXPORT_SYMBOL_GPL vmlinux 0xc2eb6196 spi_res_add -EXPORT_SYMBOL_GPL vmlinux 0xc2eff715 devm_extcon_dev_unregister -EXPORT_SYMBOL_GPL vmlinux 0xc312bb2b spi_controller_resume -EXPORT_SYMBOL_GPL vmlinux 0xc3261ffb pcie_flr -EXPORT_SYMBOL_GPL vmlinux 0xc32e73ff pci_status_get_and_clear_errors -EXPORT_SYMBOL_GPL vmlinux 0xc340e246 zynqmp_pm_request_node -EXPORT_SYMBOL_GPL vmlinux 0xc341ae6d zs_map_object -EXPORT_SYMBOL_GPL vmlinux 0xc36373a8 ptp_classify_raw -EXPORT_SYMBOL_GPL vmlinux 0xc3708747 trace_vprintk -EXPORT_SYMBOL_GPL vmlinux 0xc3805cd1 fs_ftype_to_dtype -EXPORT_SYMBOL_GPL vmlinux 0xc388b4b4 alarm_expires_remaining -EXPORT_SYMBOL_GPL vmlinux 0xc396a3c4 balloon_page_list_enqueue -EXPORT_SYMBOL_GPL vmlinux 0xc3be50da devres_remove -EXPORT_SYMBOL_GPL vmlinux 0xc3c4c6cc hash_algo_name -EXPORT_SYMBOL_GPL vmlinux 0xc3de65ff ring_buffer_bytes_cpu -EXPORT_SYMBOL_GPL vmlinux 0xc3e70e3e ata_std_sched_eh -EXPORT_SYMBOL_GPL vmlinux 0xc3e72333 ip_fib_metrics_init -EXPORT_SYMBOL_GPL vmlinux 0xc3ea5305 iommu_default_passthrough -EXPORT_SYMBOL_GPL vmlinux 0xc3f52f1d vring_create_virtqueue -EXPORT_SYMBOL_GPL vmlinux 0xc40e2326 md_stop_writes -EXPORT_SYMBOL_GPL vmlinux 0xc416d280 phy_configure -EXPORT_SYMBOL_GPL vmlinux 0xc423f556 dev_pm_opp_sync_regulators -EXPORT_SYMBOL_GPL vmlinux 0xc428068d sata_deb_timing_long -EXPORT_SYMBOL_GPL vmlinux 0xc43e92b9 trace_seq_bprintf -EXPORT_SYMBOL_GPL vmlinux 0xc444a63e adp5520_set_bits -EXPORT_SYMBOL_GPL vmlinux 0xc453b0e5 devm_bitmap_alloc -EXPORT_SYMBOL_GPL vmlinux 0xc454fc7b twl_get_type -EXPORT_SYMBOL_GPL vmlinux 0xc45e246f housekeeping_test_cpu -EXPORT_SYMBOL_GPL vmlinux 0xc4616c91 regulator_is_supported_voltage -EXPORT_SYMBOL_GPL vmlinux 0xc46324f6 dynevent_create -EXPORT_SYMBOL_GPL vmlinux 0xc471c67a twl4030_audio_disable_resource -EXPORT_SYMBOL_GPL vmlinux 0xc474954a d_walk -EXPORT_SYMBOL_GPL vmlinux 0xc48488ae usb_hcd_giveback_urb -EXPORT_SYMBOL_GPL vmlinux 0xc484f07a synth_event_trace_array -EXPORT_SYMBOL_GPL vmlinux 0xc48b7ccf ata_mode_string -EXPORT_SYMBOL_GPL vmlinux 0xc49235b2 sdio_signal_irq -EXPORT_SYMBOL_GPL vmlinux 0xc4939635 proc_create_net_single -EXPORT_SYMBOL_GPL vmlinux 0xc4998a47 rtnl_register_module -EXPORT_SYMBOL_GPL vmlinux 0xc4a31146 rdma_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0xc4a72936 trusted_tpm_send -EXPORT_SYMBOL_GPL vmlinux 0xc4b5483f pci_find_ht_capability -EXPORT_SYMBOL_GPL vmlinux 0xc4d8146d unregister_wide_hw_breakpoint -EXPORT_SYMBOL_GPL vmlinux 0xc4e59960 tegra_bpmp_mrq_return -EXPORT_SYMBOL_GPL vmlinux 0xc4eedfe4 dprc_get_obj -EXPORT_SYMBOL_GPL vmlinux 0xc4f0da12 ktime_get_with_offset -EXPORT_SYMBOL_GPL vmlinux 0xc4f762d7 crypto_stats_skcipher_decrypt -EXPORT_SYMBOL_GPL vmlinux 0xc4fb2bff sk_clone_lock -EXPORT_SYMBOL_GPL vmlinux 0xc4fe1dd6 irq_domain_xlate_onecell -EXPORT_SYMBOL_GPL vmlinux 0xc4ff09c7 pci_hp_destroy -EXPORT_SYMBOL_GPL vmlinux 0xc51534a2 amba_device_alloc -EXPORT_SYMBOL_GPL vmlinux 0xc51674dc phy_create_lookup -EXPORT_SYMBOL_GPL vmlinux 0xc51b03b2 of_genpd_add_subdomain -EXPORT_SYMBOL_GPL vmlinux 0xc52e68c3 fwnode_get_phy_node -EXPORT_SYMBOL_GPL vmlinux 0xc53188e1 xhci_init_driver -EXPORT_SYMBOL_GPL vmlinux 0xc5411905 usb_hcd_start_port_resume -EXPORT_SYMBOL_GPL vmlinux 0xc541924e sfp_bus_add_upstream -EXPORT_SYMBOL_GPL vmlinux 0xc544dcbd iommu_get_domain_for_dev -EXPORT_SYMBOL_GPL vmlinux 0xc54bc79f usb_unlocked_disable_lpm -EXPORT_SYMBOL_GPL vmlinux 0xc550d227 crypto_drop_spawn -EXPORT_SYMBOL_GPL vmlinux 0xc552aaf7 umd_load_blob -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 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 0xc58fc380 srcu_init_notifier_head -EXPORT_SYMBOL_GPL vmlinux 0xc59e00db fuse_dev_operations -EXPORT_SYMBOL_GPL vmlinux 0xc5a57d02 nd_cmd_out_size -EXPORT_SYMBOL_GPL vmlinux 0xc5a5c678 uart_parse_earlycon -EXPORT_SYMBOL_GPL vmlinux 0xc5a97704 apply_to_existing_page_range -EXPORT_SYMBOL_GPL vmlinux 0xc5cecc35 mtk_eint_find_irq -EXPORT_SYMBOL_GPL vmlinux 0xc5d65146 xen_xlate_remap_gfn_array -EXPORT_SYMBOL_GPL vmlinux 0xc5e28294 fsverity_verify_bio -EXPORT_SYMBOL_GPL vmlinux 0xc5f3e5df platform_device_put -EXPORT_SYMBOL_GPL vmlinux 0xc5f944c7 genphy_c45_pma_setup_forced -EXPORT_SYMBOL_GPL vmlinux 0xc605968d irq_gc_mask_set_bit -EXPORT_SYMBOL_GPL vmlinux 0xc60c3be5 devlink_dpipe_table_register -EXPORT_SYMBOL_GPL vmlinux 0xc60ce28b usb_put_hcd -EXPORT_SYMBOL_GPL vmlinux 0xc617f82c unregister_oom_notifier -EXPORT_SYMBOL_GPL vmlinux 0xc624bf85 regulator_set_voltage_sel_regmap -EXPORT_SYMBOL_GPL vmlinux 0xc626493a fwnode_count_parents -EXPORT_SYMBOL_GPL vmlinux 0xc63a377b securityfs_create_symlink -EXPORT_SYMBOL_GPL vmlinux 0xc63dea8d of_property_read_string_helper -EXPORT_SYMBOL_GPL vmlinux 0xc646cbc9 wm831x_regmap_config -EXPORT_SYMBOL_GPL vmlinux 0xc6516047 tpm_send -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 0xc66aa569 bsg_register_queue -EXPORT_SYMBOL_GPL vmlinux 0xc66b77b1 iommu_group_set_iommudata -EXPORT_SYMBOL_GPL vmlinux 0xc6769a38 perf_event_disable -EXPORT_SYMBOL_GPL vmlinux 0xc6779093 ring_buffer_record_enable -EXPORT_SYMBOL_GPL vmlinux 0xc68757ab mmc_send_tuning -EXPORT_SYMBOL_GPL vmlinux 0xc695389f pci_iomap_wc_range -EXPORT_SYMBOL_GPL vmlinux 0xc697b0f7 nvmem_device_read -EXPORT_SYMBOL_GPL vmlinux 0xc699928e nvmem_cell_read_u8 -EXPORT_SYMBOL_GPL vmlinux 0xc69b7ee5 zs_destroy_pool -EXPORT_SYMBOL_GPL vmlinux 0xc6a495ed usb_amd_pt_check_port -EXPORT_SYMBOL_GPL vmlinux 0xc6a4a872 __clk_is_enabled -EXPORT_SYMBOL_GPL vmlinux 0xc6bd9a37 device_get_phy_mode -EXPORT_SYMBOL_GPL vmlinux 0xc6bfa973 component_bind_all -EXPORT_SYMBOL_GPL vmlinux 0xc6c31944 subsys_interface_unregister -EXPORT_SYMBOL_GPL vmlinux 0xc6d20946 of_clk_hw_simple_get -EXPORT_SYMBOL_GPL vmlinux 0xc6d33bb9 usb_wakeup_enabled_descendants -EXPORT_SYMBOL_GPL vmlinux 0xc6d462fc device_link_add -EXPORT_SYMBOL_GPL vmlinux 0xc6db7cd2 edac_device_del_device -EXPORT_SYMBOL_GPL vmlinux 0xc6def34b gnttab_empty_grant_references -EXPORT_SYMBOL_GPL vmlinux 0xc6e5bcf3 linear_range_get_selector_within -EXPORT_SYMBOL_GPL vmlinux 0xc6ed89ad class_dev_iter_init -EXPORT_SYMBOL_GPL vmlinux 0xc6f6fe3b __devm_rtc_register_device -EXPORT_SYMBOL_GPL vmlinux 0xc6fac24b __traceiter_rpm_resume -EXPORT_SYMBOL_GPL vmlinux 0xc7059d3c ipv4_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0xc7061ef3 iova_cache_put -EXPORT_SYMBOL_GPL vmlinux 0xc70fd8fc cpufreq_dbs_governor_init -EXPORT_SYMBOL_GPL vmlinux 0xc718500c sdio_release_host -EXPORT_SYMBOL_GPL vmlinux 0xc71e64a9 snmp_get_cpu_field -EXPORT_SYMBOL_GPL vmlinux 0xc71e7c5c rdev_set_badblocks -EXPORT_SYMBOL_GPL vmlinux 0xc7215592 max8997_bulk_write -EXPORT_SYMBOL_GPL vmlinux 0xc724a450 md_do_sync -EXPORT_SYMBOL_GPL vmlinux 0xc7320ca0 acpi_spi_count_resources -EXPORT_SYMBOL_GPL vmlinux 0xc7428d08 crypto_register_aead -EXPORT_SYMBOL_GPL vmlinux 0xc747432d udp_abort -EXPORT_SYMBOL_GPL vmlinux 0xc74dffe5 pinmux_generic_get_function_groups -EXPORT_SYMBOL_GPL vmlinux 0xc75b6379 cgroup_get_e_css -EXPORT_SYMBOL_GPL vmlinux 0xc7741583 tcp_reno_ssthresh -EXPORT_SYMBOL_GPL vmlinux 0xc79b4bdf fsl_mc_bus_dpmcp_type -EXPORT_SYMBOL_GPL vmlinux 0xc7a0b2e5 dax_iomap_fault -EXPORT_SYMBOL_GPL vmlinux 0xc7a1840e llist_add_batch -EXPORT_SYMBOL_GPL vmlinux 0xc7a360d9 usb_hcd_is_primary_hcd -EXPORT_SYMBOL_GPL vmlinux 0xc7a480c6 __usb_create_hcd -EXPORT_SYMBOL_GPL vmlinux 0xc7a7e770 clk_bulk_enable -EXPORT_SYMBOL_GPL vmlinux 0xc7a9e2af __fsl_mc_driver_register -EXPORT_SYMBOL_GPL vmlinux 0xc7ab16ee pci_create_slot -EXPORT_SYMBOL_GPL vmlinux 0xc7b9d087 nd_tbl -EXPORT_SYMBOL_GPL vmlinux 0xc7c1eacd devm_nvmem_device_get -EXPORT_SYMBOL_GPL vmlinux 0xc7c23ff0 xenbus_exists -EXPORT_SYMBOL_GPL vmlinux 0xc7da0b1d mmc_crypto_prepare_req -EXPORT_SYMBOL_GPL vmlinux 0xc7e64fc2 asn1_encode_integer -EXPORT_SYMBOL_GPL vmlinux 0xc7e866d0 fwnode_graph_get_remote_node -EXPORT_SYMBOL_GPL vmlinux 0xc7e9ebed pci_epc_set_msix -EXPORT_SYMBOL_GPL vmlinux 0xc7fa1b72 fwnode_handle_get -EXPORT_SYMBOL_GPL vmlinux 0xc7fa4aa9 kobj_ns_drop -EXPORT_SYMBOL_GPL vmlinux 0xc80a784f sdio_writeb -EXPORT_SYMBOL_GPL vmlinux 0xc8202e94 __traceiter_block_unplug -EXPORT_SYMBOL_GPL vmlinux 0xc8211598 i2c_get_device_id -EXPORT_SYMBOL_GPL vmlinux 0xc82b3a88 __SCK__tp_func_rpm_resume -EXPORT_SYMBOL_GPL vmlinux 0xc82c721f klist_remove -EXPORT_SYMBOL_GPL vmlinux 0xc8389be9 pfn_to_online_page -EXPORT_SYMBOL_GPL vmlinux 0xc839c1ce trace_seq_to_user -EXPORT_SYMBOL_GPL vmlinux 0xc8594d3d reset_control_acquire -EXPORT_SYMBOL_GPL vmlinux 0xc85c2314 relay_flush -EXPORT_SYMBOL_GPL vmlinux 0xc8636463 smpboot_register_percpu_thread -EXPORT_SYMBOL_GPL vmlinux 0xc87dd725 k3_udma_glue_pop_rx_chn -EXPORT_SYMBOL_GPL vmlinux 0xc881e397 serial8250_rx_dma_flush -EXPORT_SYMBOL_GPL vmlinux 0xc898334f iomap_invalidatepage -EXPORT_SYMBOL_GPL vmlinux 0xc898eeae firmware_request_cache -EXPORT_SYMBOL_GPL vmlinux 0xc89b2783 xenbus_alloc_evtchn -EXPORT_SYMBOL_GPL vmlinux 0xc8a2de19 inet_twsk_alloc -EXPORT_SYMBOL_GPL vmlinux 0xc8a9d492 ata_sff_qc_issue -EXPORT_SYMBOL_GPL vmlinux 0xc8c231b0 xenbus_free_evtchn -EXPORT_SYMBOL_GPL vmlinux 0xc8cdd1ee ping_seq_next -EXPORT_SYMBOL_GPL vmlinux 0xc8cf9a37 gpiod_get_array_value -EXPORT_SYMBOL_GPL vmlinux 0xc8dd722f led_trigger_register -EXPORT_SYMBOL_GPL vmlinux 0xc8ddd5b5 kstrdup_quotable -EXPORT_SYMBOL_GPL vmlinux 0xc8e04a59 scsi_dh_attached_handler_name -EXPORT_SYMBOL_GPL vmlinux 0xc8e94c16 ata_bmdma_start -EXPORT_SYMBOL_GPL vmlinux 0xc8ea0200 dax_finish_sync_fault -EXPORT_SYMBOL_GPL vmlinux 0xc8f1f84b crypto_stats_rng_seed -EXPORT_SYMBOL_GPL vmlinux 0xc91123b0 virtio_config_changed -EXPORT_SYMBOL_GPL vmlinux 0xc91fdf58 percpu_ref_is_zero -EXPORT_SYMBOL_GPL vmlinux 0xc93ee1e7 usb_phy_roothub_init -EXPORT_SYMBOL_GPL vmlinux 0xc95212c9 bind_interdomain_evtchn_to_irq_lateeoi -EXPORT_SYMBOL_GPL vmlinux 0xc9561772 fb_destroy_modelist -EXPORT_SYMBOL_GPL vmlinux 0xc9641b48 visitor32 -EXPORT_SYMBOL_GPL vmlinux 0xc96838f3 irq_setup_alt_chip -EXPORT_SYMBOL_GPL vmlinux 0xc9827693 __bpf_call_base -EXPORT_SYMBOL_GPL vmlinux 0xc991ae29 mtk_pinconf_bias_set_rev1 -EXPORT_SYMBOL_GPL vmlinux 0xc9ad5c64 vfs_setlease -EXPORT_SYMBOL_GPL vmlinux 0xc9b7a1a0 dev_pm_opp_get_voltage -EXPORT_SYMBOL_GPL vmlinux 0xc9b89568 gpiod_get_array_optional -EXPORT_SYMBOL_GPL vmlinux 0xc9ba304e switchdev_handle_port_obj_del -EXPORT_SYMBOL_GPL vmlinux 0xc9bc01af skcipher_walk_aead_decrypt -EXPORT_SYMBOL_GPL vmlinux 0xc9d41ee5 pci_epf_bind -EXPORT_SYMBOL_GPL vmlinux 0xc9db24fd blk_queue_required_elevator_features -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 0xca051ecf i2c_dw_acpi_configure -EXPORT_SYMBOL_GPL vmlinux 0xca12b465 vp_modern_get_queue_enable -EXPORT_SYMBOL_GPL vmlinux 0xca168e05 class_interface_register -EXPORT_SYMBOL_GPL vmlinux 0xca2e96cd phy_init -EXPORT_SYMBOL_GPL vmlinux 0xca37f72a phy_set_speed -EXPORT_SYMBOL_GPL vmlinux 0xca3b37e4 kthread_use_mm -EXPORT_SYMBOL_GPL vmlinux 0xca42d375 extcon_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0xca454a34 vt_get_leds -EXPORT_SYMBOL_GPL vmlinux 0xca45650c crypto_ahash_digest -EXPORT_SYMBOL_GPL vmlinux 0xca46d21c icc_get -EXPORT_SYMBOL_GPL vmlinux 0xca55cb59 cn_add_callback -EXPORT_SYMBOL_GPL vmlinux 0xca56aed8 posix_clock_register -EXPORT_SYMBOL_GPL vmlinux 0xca639b34 pm_runtime_forbid -EXPORT_SYMBOL_GPL vmlinux 0xca7d8764 kthread_freezable_should_stop -EXPORT_SYMBOL_GPL vmlinux 0xca8e1da6 dma_get_any_slave_channel -EXPORT_SYMBOL_GPL vmlinux 0xca8f9631 unix_outq_len -EXPORT_SYMBOL_GPL vmlinux 0xca98333c sdio_claim_host -EXPORT_SYMBOL_GPL vmlinux 0xca99f6e5 dev_pm_opp_put_regulators -EXPORT_SYMBOL_GPL vmlinux 0xca9a1d5e ring_buffer_free -EXPORT_SYMBOL_GPL vmlinux 0xcaa02ef0 bus_set_iommu -EXPORT_SYMBOL_GPL vmlinux 0xcabe04de cpuidle_resume_and_unlock -EXPORT_SYMBOL_GPL vmlinux 0xcac0adf2 icc_put -EXPORT_SYMBOL_GPL vmlinux 0xcac5a2ca rockchip_pcie_get_phys -EXPORT_SYMBOL_GPL vmlinux 0xcad4657e ata_host_detach -EXPORT_SYMBOL_GPL vmlinux 0xcad50196 fsnotify_put_group -EXPORT_SYMBOL_GPL vmlinux 0xcae18ce9 ehci_resume -EXPORT_SYMBOL_GPL vmlinux 0xcae63f72 fat_get_dotdot_entry -EXPORT_SYMBOL_GPL vmlinux 0xcae7ce5d fsl_mc_get_version -EXPORT_SYMBOL_GPL vmlinux 0xcaf1d958 evtchn_get -EXPORT_SYMBOL_GPL vmlinux 0xcaf78fe3 udp_cmsg_send -EXPORT_SYMBOL_GPL vmlinux 0xcaf84db8 __traceiter_pelt_thermal_tp -EXPORT_SYMBOL_GPL vmlinux 0xcb15eee9 sdhci_pci_get_data -EXPORT_SYMBOL_GPL vmlinux 0xcb1b9ff6 fuse_dev_free -EXPORT_SYMBOL_GPL vmlinux 0xcb2bfe2b nvmem_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0xcb561441 mem_dump_obj -EXPORT_SYMBOL_GPL vmlinux 0xcb575fe5 soc_device_match -EXPORT_SYMBOL_GPL vmlinux 0xcb7310e1 ata_eh_freeze_port -EXPORT_SYMBOL_GPL vmlinux 0xcb781d94 pci_common_swizzle -EXPORT_SYMBOL_GPL vmlinux 0xcb9d2be8 perf_pmu_unregister -EXPORT_SYMBOL_GPL vmlinux 0xcba45a86 phy_pm_runtime_get -EXPORT_SYMBOL_GPL vmlinux 0xcbaa629d irq_remove_generic_chip -EXPORT_SYMBOL_GPL vmlinux 0xcbacc53d devm_regulator_put -EXPORT_SYMBOL_GPL vmlinux 0xcbcabe96 __lock_page_killable -EXPORT_SYMBOL_GPL vmlinux 0xcbd287ce dw_pcie_ep_linkup -EXPORT_SYMBOL_GPL vmlinux 0xcbd3bb3d crypto_shash_update -EXPORT_SYMBOL_GPL vmlinux 0xcbd435cb crypto_aead_encrypt -EXPORT_SYMBOL_GPL vmlinux 0xcbdb808f devm_gpiod_unhinge -EXPORT_SYMBOL_GPL vmlinux 0xcbe56bc2 zs_get_total_pages -EXPORT_SYMBOL_GPL vmlinux 0xcc0fd0a7 k3_ringacc_ring_push_head -EXPORT_SYMBOL_GPL vmlinux 0xcc28c460 iopf_queue_flush_dev -EXPORT_SYMBOL_GPL vmlinux 0xcc2dbfd8 irq_domain_check_msi_remap -EXPORT_SYMBOL_GPL vmlinux 0xcc314c01 serial8250_rpm_get -EXPORT_SYMBOL_GPL vmlinux 0xcc34d5f1 debugfs_create_u64 -EXPORT_SYMBOL_GPL vmlinux 0xcc39c03e nvmem_unregister -EXPORT_SYMBOL_GPL vmlinux 0xcc40582d uprobe_unregister -EXPORT_SYMBOL_GPL vmlinux 0xcc4bde85 tcp_ca_get_key_by_name -EXPORT_SYMBOL_GPL vmlinux 0xcc519ef8 of_detach_node -EXPORT_SYMBOL_GPL vmlinux 0xcc555b30 dprc_set_obj_irq -EXPORT_SYMBOL_GPL vmlinux 0xcc5deb72 vfs_submount -EXPORT_SYMBOL_GPL vmlinux 0xcc7054be led_set_brightness_sync -EXPORT_SYMBOL_GPL vmlinux 0xcc8e006d otg_ulpi_create -EXPORT_SYMBOL_GPL vmlinux 0xcc8f0c6b ata_sff_irq_on -EXPORT_SYMBOL_GPL vmlinux 0xcc9268fc hwpoison_filter_enable -EXPORT_SYMBOL_GPL vmlinux 0xcc935375 walk_iomem_res_desc -EXPORT_SYMBOL_GPL vmlinux 0xcc93c6ee of_irq_to_resource_table -EXPORT_SYMBOL_GPL vmlinux 0xcc9f41d7 l3mdev_ifindex_lookup_by_table_id -EXPORT_SYMBOL_GPL vmlinux 0xcca88eba check_move_unevictable_pages -EXPORT_SYMBOL_GPL vmlinux 0xccaa0418 meson_pmx_get_groups -EXPORT_SYMBOL_GPL vmlinux 0xccb5cad4 nfs_ssc_client_tbl -EXPORT_SYMBOL_GPL vmlinux 0xccc691f9 rio_mport_send_doorbell -EXPORT_SYMBOL_GPL vmlinux 0xccc75990 apei_get_debugfs_dir -EXPORT_SYMBOL_GPL vmlinux 0xcccfb2fa sata_deb_timing_hotplug -EXPORT_SYMBOL_GPL vmlinux 0xccd67683 sprd_pinctrl_core_probe -EXPORT_SYMBOL_GPL vmlinux 0xccd86806 ata_id_string -EXPORT_SYMBOL_GPL vmlinux 0xccd9e257 ipv6_proxy_select_ident -EXPORT_SYMBOL_GPL vmlinux 0xccda2b9b handle_mm_fault -EXPORT_SYMBOL_GPL vmlinux 0xccf52bc9 sfp_upstream_start -EXPORT_SYMBOL_GPL vmlinux 0xcd0f47a5 usb_register_dev -EXPORT_SYMBOL_GPL vmlinux 0xcd1cab87 serdev_device_remove -EXPORT_SYMBOL_GPL vmlinux 0xcd24e146 hash_digest_size -EXPORT_SYMBOL_GPL vmlinux 0xcd30f86b usb_disable_lpm -EXPORT_SYMBOL_GPL vmlinux 0xcd3e5c7c acpi_release_memory -EXPORT_SYMBOL_GPL vmlinux 0xcd655192 fsl_mc_resource_free -EXPORT_SYMBOL_GPL vmlinux 0xcd679e4a skb_pull_rcsum -EXPORT_SYMBOL_GPL vmlinux 0xcd684b73 dev_pm_opp_put_opp_table -EXPORT_SYMBOL_GPL vmlinux 0xcd6f2dc9 nf_log_buf_add -EXPORT_SYMBOL_GPL vmlinux 0xcd759b82 k3_ringacc_ring_reset -EXPORT_SYMBOL_GPL vmlinux 0xcd86df80 gpiochip_get_desc -EXPORT_SYMBOL_GPL vmlinux 0xcd910be7 ti_sci_get_num_resources -EXPORT_SYMBOL_GPL vmlinux 0xcd91b127 system_highpri_wq -EXPORT_SYMBOL_GPL vmlinux 0xcd9cd2ff wakeme_after_rcu -EXPORT_SYMBOL_GPL vmlinux 0xcda2aaba k3_udma_glue_tx_dma_to_cppi5_addr -EXPORT_SYMBOL_GPL vmlinux 0xcda6769e key_type_logon -EXPORT_SYMBOL_GPL vmlinux 0xcdb6adcc ras_userspace_consumers -EXPORT_SYMBOL_GPL vmlinux 0xcdbef02f dmaengine_desc_get_metadata_ptr -EXPORT_SYMBOL_GPL vmlinux 0xcdc05204 rtc_class_close -EXPORT_SYMBOL_GPL vmlinux 0xcdc28256 trace_put_event_file -EXPORT_SYMBOL_GPL vmlinux 0xcdc86b55 sched_clock -EXPORT_SYMBOL_GPL vmlinux 0xcdca3691 nr_irqs -EXPORT_SYMBOL_GPL vmlinux 0xcddeebda gpiod_set_consumer_name -EXPORT_SYMBOL_GPL vmlinux 0xcde26600 cppc_get_transition_latency -EXPORT_SYMBOL_GPL vmlinux 0xcde56a78 driver_find -EXPORT_SYMBOL_GPL vmlinux 0xcdea3a1c extcon_get_property_capability -EXPORT_SYMBOL_GPL vmlinux 0xcdf0ce2b root_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0xcdf457cf spi_statistics_add_transfer_stats -EXPORT_SYMBOL_GPL vmlinux 0xce07b57d regulator_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0xce0a29f0 dw_pcie_find_capability -EXPORT_SYMBOL_GPL vmlinux 0xce0a4020 xenbus_directory -EXPORT_SYMBOL_GPL vmlinux 0xce11d075 fib6_rule_default -EXPORT_SYMBOL_GPL vmlinux 0xce1b3902 inet_csk_clone_lock -EXPORT_SYMBOL_GPL vmlinux 0xce1e1196 kthread_cancel_delayed_work_sync -EXPORT_SYMBOL_GPL vmlinux 0xce316d7e zynqmp_pm_set_sd_tapdelay -EXPORT_SYMBOL_GPL vmlinux 0xce3902e0 poll_state_synchronize_srcu -EXPORT_SYMBOL_GPL vmlinux 0xce3d3c82 component_del -EXPORT_SYMBOL_GPL vmlinux 0xce45c8fd policy_has_boost_freq -EXPORT_SYMBOL_GPL vmlinux 0xce511bae trace_event_buffer_reserve -EXPORT_SYMBOL_GPL vmlinux 0xce537297 __netpoll_free -EXPORT_SYMBOL_GPL vmlinux 0xce598ef2 unregister_kretprobe -EXPORT_SYMBOL_GPL vmlinux 0xce684a81 gpiochip_line_is_valid -EXPORT_SYMBOL_GPL vmlinux 0xce6db656 rcu_is_watching -EXPORT_SYMBOL_GPL vmlinux 0xce8319d2 put_pid -EXPORT_SYMBOL_GPL vmlinux 0xcea3b593 replace_page_cache_page -EXPORT_SYMBOL_GPL vmlinux 0xceac8674 zynqmp_pm_read_pggs -EXPORT_SYMBOL_GPL vmlinux 0xceb1f126 mpi_read_raw_data -EXPORT_SYMBOL_GPL vmlinux 0xcecfb017 lwtunnel_get_encap_size -EXPORT_SYMBOL_GPL vmlinux 0xcecfe9e7 tegra_bpmp_free_mrq -EXPORT_SYMBOL_GPL vmlinux 0xcee1641c kgdb_unregister_nmi_console -EXPORT_SYMBOL_GPL vmlinux 0xcee1fc9c bpf_offload_dev_create -EXPORT_SYMBOL_GPL vmlinux 0xcee88e7a of_overlay_fdt_apply -EXPORT_SYMBOL_GPL vmlinux 0xceed8c16 __set_phys_to_machine -EXPORT_SYMBOL_GPL vmlinux 0xcefa71f6 regmap_reinit_cache -EXPORT_SYMBOL_GPL vmlinux 0xcf0d39bd __traceiter_kfree_skb -EXPORT_SYMBOL_GPL vmlinux 0xcf2013c2 iomap_readpage -EXPORT_SYMBOL_GPL vmlinux 0xcf276508 led_classdev_resume -EXPORT_SYMBOL_GPL vmlinux 0xcf2eec09 ata_host_register -EXPORT_SYMBOL_GPL vmlinux 0xcf32d249 blkcg_activate_policy -EXPORT_SYMBOL_GPL vmlinux 0xcf4404b1 edac_device_free_ctl_info -EXPORT_SYMBOL_GPL vmlinux 0xcf589d18 pci_epc_mem_alloc_addr -EXPORT_SYMBOL_GPL vmlinux 0xcf5c9586 security_file_ioctl -EXPORT_SYMBOL_GPL vmlinux 0xcf60c2dc usb_autopm_put_interface_async -EXPORT_SYMBOL_GPL vmlinux 0xcf7f66f9 imx_dev_clk_hw_pll14xx -EXPORT_SYMBOL_GPL vmlinux 0xcf80fa1e acpi_driver_match_device -EXPORT_SYMBOL_GPL vmlinux 0xcf87643e dprc_get_obj_region -EXPORT_SYMBOL_GPL vmlinux 0xcf9294f7 ehci_setup -EXPORT_SYMBOL_GPL vmlinux 0xcf97ad1f acomp_request_alloc -EXPORT_SYMBOL_GPL vmlinux 0xcfa26edb fsl_mc_bus_dpdmai_type -EXPORT_SYMBOL_GPL vmlinux 0xcfa934f2 platform_device_register -EXPORT_SYMBOL_GPL vmlinux 0xcfbfb031 stmpe_block_read -EXPORT_SYMBOL_GPL vmlinux 0xcfc5108a devlink_fmsg_u8_pair_put -EXPORT_SYMBOL_GPL vmlinux 0xcfc6107e task_cputime_adjusted -EXPORT_SYMBOL_GPL vmlinux 0xcfc7b4e4 rcu_barrier_tasks_trace -EXPORT_SYMBOL_GPL vmlinux 0xcfc81280 pinctrl_generic_remove_group -EXPORT_SYMBOL_GPL vmlinux 0xcfc905f2 rio_request_inb_pwrite -EXPORT_SYMBOL_GPL vmlinux 0xcfcf6569 pci_epc_map_msi_irq -EXPORT_SYMBOL_GPL vmlinux 0xcfd30d71 acpi_os_map_memory -EXPORT_SYMBOL_GPL vmlinux 0xcfdaf986 virtqueue_disable_cb -EXPORT_SYMBOL_GPL vmlinux 0xcffbf4ea validate_xmit_skb_list -EXPORT_SYMBOL_GPL vmlinux 0xcffd793e hyperv_report_panic -EXPORT_SYMBOL_GPL vmlinux 0xd005c8b4 dev_attr_ncq_prio_enable -EXPORT_SYMBOL_GPL vmlinux 0xd00e32c5 inet_twsk_hashdance -EXPORT_SYMBOL_GPL vmlinux 0xd026d518 HYPERVISOR_vcpu_op -EXPORT_SYMBOL_GPL vmlinux 0xd029b9e7 skb_zerocopy_headlen -EXPORT_SYMBOL_GPL vmlinux 0xd02a71a8 __devm_regmap_init_mmio_clk -EXPORT_SYMBOL_GPL vmlinux 0xd03eaf4c schedule_hrtimeout_range -EXPORT_SYMBOL_GPL vmlinux 0xd0458ccb xenbus_strstate -EXPORT_SYMBOL_GPL vmlinux 0xd046b014 hrtimer_cancel -EXPORT_SYMBOL_GPL vmlinux 0xd04aedfd __SCK__tp_func_arm_event -EXPORT_SYMBOL_GPL vmlinux 0xd06524ba raw_notifier_chain_unregister -EXPORT_SYMBOL_GPL vmlinux 0xd067d3c5 system_freezable_power_efficient_wq -EXPORT_SYMBOL_GPL vmlinux 0xd082153a irq_chip_set_type_parent -EXPORT_SYMBOL_GPL vmlinux 0xd0936220 devres_get -EXPORT_SYMBOL_GPL vmlinux 0xd0940e79 genphy_c45_read_lpa -EXPORT_SYMBOL_GPL vmlinux 0xd09911a6 acpi_dev_get_irq_type -EXPORT_SYMBOL_GPL vmlinux 0xd09ba052 dev_pm_opp_of_get_opp_desc_node -EXPORT_SYMBOL_GPL vmlinux 0xd0b54e32 devlink_net -EXPORT_SYMBOL_GPL vmlinux 0xd0c05159 emergency_restart -EXPORT_SYMBOL_GPL vmlinux 0xd0d156e9 __rht_bucket_nested -EXPORT_SYMBOL_GPL vmlinux 0xd0db0f12 run_dax -EXPORT_SYMBOL_GPL vmlinux 0xd0dff8ca ethnl_cable_test_alloc -EXPORT_SYMBOL_GPL vmlinux 0xd0f698ba radix_tree_preloads -EXPORT_SYMBOL_GPL vmlinux 0xd0faf634 of_pwm_xlate_with_flags -EXPORT_SYMBOL_GPL vmlinux 0xd1096bdb proc_create_net_data_write -EXPORT_SYMBOL_GPL vmlinux 0xd12d9aa1 msg_zerocopy_callback -EXPORT_SYMBOL_GPL vmlinux 0xd130f68d cgroup_get_from_id -EXPORT_SYMBOL_GPL vmlinux 0xd13827ec psil_set_new_ep_config -EXPORT_SYMBOL_GPL vmlinux 0xd1386738 x509_cert_parse -EXPORT_SYMBOL_GPL vmlinux 0xd13ba62a rio_route_clr_table -EXPORT_SYMBOL_GPL vmlinux 0xd13f5630 register_net_sysctl -EXPORT_SYMBOL_GPL vmlinux 0xd1481de7 mpi_clear -EXPORT_SYMBOL_GPL vmlinux 0xd14a7fde crypto_mod_put -EXPORT_SYMBOL_GPL vmlinux 0xd14d3b24 lwtstate_free -EXPORT_SYMBOL_GPL vmlinux 0xd14d689d devlink_params_unpublish -EXPORT_SYMBOL_GPL vmlinux 0xd14fec52 of_changeset_action -EXPORT_SYMBOL_GPL vmlinux 0xd154c983 i2c_dw_prepare_clk -EXPORT_SYMBOL_GPL vmlinux 0xd159586c net_prio_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0xd163e5cf gpiod_direction_output -EXPORT_SYMBOL_GPL vmlinux 0xd16a8cef __tracepoint_add_device_to_group -EXPORT_SYMBOL_GPL vmlinux 0xd17d2a22 phy_basic_features -EXPORT_SYMBOL_GPL vmlinux 0xd17f8ebb __blk_req_zone_write_lock -EXPORT_SYMBOL_GPL vmlinux 0xd191e661 efivar_entry_find -EXPORT_SYMBOL_GPL vmlinux 0xd1a9ca15 __SCK__tp_func_neigh_update -EXPORT_SYMBOL_GPL vmlinux 0xd1bda65b iommu_fwspec_init -EXPORT_SYMBOL_GPL vmlinux 0xd1cb504c usb_disable_ltm -EXPORT_SYMBOL_GPL vmlinux 0xd1cbc23c add_timer_on -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 0xd21f1d35 __SCK__tp_func_tcp_send_reset -EXPORT_SYMBOL_GPL vmlinux 0xd227106e auxiliary_device_init -EXPORT_SYMBOL_GPL vmlinux 0xd2423f76 i2c_acpi_get_i2c_resource -EXPORT_SYMBOL_GPL vmlinux 0xd2437f3f rio_bus_type -EXPORT_SYMBOL_GPL vmlinux 0xd24f0990 skb_consume_udp -EXPORT_SYMBOL_GPL vmlinux 0xd250969e rio_unmap_inb_region -EXPORT_SYMBOL_GPL vmlinux 0xd25efb9f acpi_cppc_processor_exit -EXPORT_SYMBOL_GPL vmlinux 0xd25f9ab2 efivar_entry_get -EXPORT_SYMBOL_GPL vmlinux 0xd25fe9ee key_type_encrypted -EXPORT_SYMBOL_GPL vmlinux 0xd260af0d ring_buffer_write -EXPORT_SYMBOL_GPL vmlinux 0xd27002d4 spi_busnum_to_master -EXPORT_SYMBOL_GPL vmlinux 0xd270e977 pci_bridge_emul_conf_write -EXPORT_SYMBOL_GPL vmlinux 0xd273b1b1 __round_jiffies_up_relative -EXPORT_SYMBOL_GPL vmlinux 0xd2797cc4 rio_dev_put -EXPORT_SYMBOL_GPL vmlinux 0xd27f215d gnttab_alloc_grant_references -EXPORT_SYMBOL_GPL vmlinux 0xd290fd06 modify_user_hw_breakpoint -EXPORT_SYMBOL_GPL vmlinux 0xd299b9ec xas_split_alloc -EXPORT_SYMBOL_GPL vmlinux 0xd2ac19b8 __efivar_entry_delete -EXPORT_SYMBOL_GPL vmlinux 0xd2b10a05 ata_timing_find_mode -EXPORT_SYMBOL_GPL vmlinux 0xd2bba628 gpiochip_line_is_open_drain -EXPORT_SYMBOL_GPL vmlinux 0xd2c8f239 trace_event_buffer_lock_reserve -EXPORT_SYMBOL_GPL vmlinux 0xd2dc3110 rio_attach_device -EXPORT_SYMBOL_GPL vmlinux 0xd2e070ee devm_hwmon_device_register_with_info -EXPORT_SYMBOL_GPL vmlinux 0xd2e94729 nvdimm_flush -EXPORT_SYMBOL_GPL vmlinux 0xd2f5d385 k3_ringacc_dmarings_init -EXPORT_SYMBOL_GPL vmlinux 0xd2fc9ec3 led_blink_set -EXPORT_SYMBOL_GPL vmlinux 0xd3003300 devm_hwrng_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 0xd32446e1 usb_lock_device_for_reset -EXPORT_SYMBOL_GPL vmlinux 0xd3333350 regulator_set_bypass_regmap -EXPORT_SYMBOL_GPL vmlinux 0xd336fd3e virtqueue_get_buf_ctx -EXPORT_SYMBOL_GPL vmlinux 0xd33ada8b cci_probed -EXPORT_SYMBOL_GPL vmlinux 0xd33c54b2 bgmac_adjust_link -EXPORT_SYMBOL_GPL vmlinux 0xd35080bb dax_supported -EXPORT_SYMBOL_GPL vmlinux 0xd3549f4f rio_release_inb_dbell -EXPORT_SYMBOL_GPL vmlinux 0xd359202e clk_register_mux_table -EXPORT_SYMBOL_GPL vmlinux 0xd35eeb86 __devm_regmap_init_i2c -EXPORT_SYMBOL_GPL vmlinux 0xd3648c1d i2c_acpi_find_adapter_by_handle -EXPORT_SYMBOL_GPL vmlinux 0xd36760ef __usb_get_extra_descriptor -EXPORT_SYMBOL_GPL vmlinux 0xd388caf1 fsl_mc_bus_dpmac_type -EXPORT_SYMBOL_GPL vmlinux 0xd38f2b5e irq_set_chip_and_handler_name -EXPORT_SYMBOL_GPL vmlinux 0xd39e9848 put_itimerspec64 -EXPORT_SYMBOL_GPL vmlinux 0xd3b9267c device_get_dma_attr -EXPORT_SYMBOL_GPL vmlinux 0xd3c5f211 phy_power_on -EXPORT_SYMBOL_GPL vmlinux 0xd3daf5a6 devm_pm_opp_set_supported_hw -EXPORT_SYMBOL_GPL vmlinux 0xd3e4c3b8 ip6_dst_lookup_tunnel -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 0xd41d0d95 platform_get_resource_byname -EXPORT_SYMBOL_GPL vmlinux 0xd423b063 __regmap_init_i2c -EXPORT_SYMBOL_GPL vmlinux 0xd426dbc4 erst_get_record_count -EXPORT_SYMBOL_GPL vmlinux 0xd42f1d4e show_rcu_tasks_rude_gp_kthread -EXPORT_SYMBOL_GPL vmlinux 0xd44a5eac kgdb_register_nmi_console -EXPORT_SYMBOL_GPL vmlinux 0xd46a13f1 phy_set_media -EXPORT_SYMBOL_GPL vmlinux 0xd46af5ef cppc_get_perf_ctrs -EXPORT_SYMBOL_GPL vmlinux 0xd474ca5c ti_sci_inta_msi_create_irq_domain -EXPORT_SYMBOL_GPL vmlinux 0xd47fbd8a __fscrypt_encrypt_symlink -EXPORT_SYMBOL_GPL vmlinux 0xd48ee9f8 klist_prev -EXPORT_SYMBOL_GPL vmlinux 0xd4935851 __SCK__tp_func_suspend_resume -EXPORT_SYMBOL_GPL vmlinux 0xd493a40b device_create -EXPORT_SYMBOL_GPL vmlinux 0xd4aa2cb3 pinctrl_add_gpio_range -EXPORT_SYMBOL_GPL vmlinux 0xd4ad2787 device_remove_software_node -EXPORT_SYMBOL_GPL vmlinux 0xd4b6157e devlink_health_reporter_recovery_done -EXPORT_SYMBOL_GPL vmlinux 0xd4b9a616 reset_control_bulk_put -EXPORT_SYMBOL_GPL vmlinux 0xd4bead6c ftrace_ops_set_global_filter -EXPORT_SYMBOL_GPL vmlinux 0xd4c14632 system_unbound_wq -EXPORT_SYMBOL_GPL vmlinux 0xd4c487a0 acpi_ec_add_query_handler -EXPORT_SYMBOL_GPL vmlinux 0xd4cbdbe3 __SCK__tp_func_devlink_trap_report -EXPORT_SYMBOL_GPL vmlinux 0xd4d0f6a7 lp8788_write_byte -EXPORT_SYMBOL_GPL vmlinux 0xd4e2b73c ahci_platform_resume_host -EXPORT_SYMBOL_GPL vmlinux 0xd4e6d7e0 linear_range_get_value -EXPORT_SYMBOL_GPL vmlinux 0xd4f5bfa5 iommu_queue_iopf -EXPORT_SYMBOL_GPL vmlinux 0xd50c24cb ip6_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0xd50eb9b5 irq_chip_mask_parent -EXPORT_SYMBOL_GPL vmlinux 0xd513f5e6 gpiod_toggle_active_low -EXPORT_SYMBOL_GPL vmlinux 0xd5179868 ethnl_cable_test_amplitude -EXPORT_SYMBOL_GPL vmlinux 0xd522d385 dev_pm_enable_wake_irq -EXPORT_SYMBOL_GPL vmlinux 0xd5240cd1 sbitmap_queue_show -EXPORT_SYMBOL_GPL vmlinux 0xd5286799 dev_pm_qos_hide_latency_tolerance -EXPORT_SYMBOL_GPL vmlinux 0xd5301b2c linear_range_get_max_value -EXPORT_SYMBOL_GPL vmlinux 0xd533d7d7 __irq_domain_add -EXPORT_SYMBOL_GPL vmlinux 0xd5365f35 led_init_default_state_get -EXPORT_SYMBOL_GPL vmlinux 0xd5414799 fuse_do_open -EXPORT_SYMBOL_GPL vmlinux 0xd542d469 mnt_drop_write -EXPORT_SYMBOL_GPL vmlinux 0xd5465bb1 driver_for_each_device -EXPORT_SYMBOL_GPL vmlinux 0xd5474690 usb_role_switch_set_role -EXPORT_SYMBOL_GPL vmlinux 0xd55ad93b iommu_group_get_iommudata -EXPORT_SYMBOL_GPL vmlinux 0xd5600eae sbitmap_queue_wake_all -EXPORT_SYMBOL_GPL vmlinux 0xd5611d17 btree_grim_visitor -EXPORT_SYMBOL_GPL vmlinux 0xd57d7e11 sched_trace_rd_span -EXPORT_SYMBOL_GPL vmlinux 0xd57fbd31 hwrng_unregister -EXPORT_SYMBOL_GPL vmlinux 0xd5807af3 k3_ringacc_ring_pop -EXPORT_SYMBOL_GPL vmlinux 0xd59a1587 linkmode_resolve_pause -EXPORT_SYMBOL_GPL vmlinux 0xd59ab6a3 net_selftest -EXPORT_SYMBOL_GPL vmlinux 0xd5a1b5a8 debugfs_create_ulong -EXPORT_SYMBOL_GPL vmlinux 0xd5ba2465 da9052_free_irq -EXPORT_SYMBOL_GPL vmlinux 0xd5c723ca blk_bio_list_merge -EXPORT_SYMBOL_GPL vmlinux 0xd5cd6fb9 iommu_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0xd5cecb10 blk_abort_request -EXPORT_SYMBOL_GPL vmlinux 0xd5d62d9b iommu_domain_alloc -EXPORT_SYMBOL_GPL vmlinux 0xd5ed4a62 pci_enable_sriov -EXPORT_SYMBOL_GPL vmlinux 0xd603a14a unregister_pernet_device -EXPORT_SYMBOL_GPL vmlinux 0xd609285d sysfs_unbreak_active_protection -EXPORT_SYMBOL_GPL vmlinux 0xd61e00bb atomic_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0xd61eba9f fsverity_verify_page -EXPORT_SYMBOL_GPL vmlinux 0xd621bf76 __trace_note_message -EXPORT_SYMBOL_GPL vmlinux 0xd62c9c72 devm_led_classdev_unregister -EXPORT_SYMBOL_GPL vmlinux 0xd63d58bb gpiod_export -EXPORT_SYMBOL_GPL vmlinux 0xd64ed259 __memcat_p -EXPORT_SYMBOL_GPL vmlinux 0xd65ce5aa ip6_datagram_send_ctl -EXPORT_SYMBOL_GPL vmlinux 0xd660d20e thermal_of_cooling_device_register -EXPORT_SYMBOL_GPL vmlinux 0xd67364f7 eventfd_ctx_fdget -EXPORT_SYMBOL_GPL vmlinux 0xd68d8805 device_for_each_child_reverse -EXPORT_SYMBOL_GPL vmlinux 0xd6acd508 clkdev_hw_create -EXPORT_SYMBOL_GPL vmlinux 0xd6b38f46 clk_mux_determine_rate_flags -EXPORT_SYMBOL_GPL vmlinux 0xd6cf4824 dev_coredumpsg -EXPORT_SYMBOL_GPL vmlinux 0xd6d5853d platform_get_irq_byname_optional -EXPORT_SYMBOL_GPL vmlinux 0xd6d8f6b3 topology_set_scale_freq_source -EXPORT_SYMBOL_GPL vmlinux 0xd6ef668d sysfs_add_file_to_group -EXPORT_SYMBOL_GPL vmlinux 0xd6f0cf33 devm_led_trigger_register -EXPORT_SYMBOL_GPL vmlinux 0xd6f128e2 rio_map_inb_region -EXPORT_SYMBOL_GPL vmlinux 0xd6fdb685 skb_mpls_pop -EXPORT_SYMBOL_GPL vmlinux 0xd715d2cf vp_modern_get_features -EXPORT_SYMBOL_GPL vmlinux 0xd71bfaa1 regulator_get_optional -EXPORT_SYMBOL_GPL vmlinux 0xd7269c64 osc_sb_native_usb4_control -EXPORT_SYMBOL_GPL vmlinux 0xd7293ffc percpu_ref_reinit -EXPORT_SYMBOL_GPL vmlinux 0xd72b7e22 vfs_inode_has_locks -EXPORT_SYMBOL_GPL vmlinux 0xd72d0913 devm_pinctrl_get -EXPORT_SYMBOL_GPL vmlinux 0xd72feba2 xenbus_read_driver_state -EXPORT_SYMBOL_GPL vmlinux 0xd7399d2a efivar_entry_iter_end -EXPORT_SYMBOL_GPL vmlinux 0xd74e400f show_rcu_tasks_classic_gp_kthread -EXPORT_SYMBOL_GPL vmlinux 0xd75b20aa rsa_parse_priv_key -EXPORT_SYMBOL_GPL vmlinux 0xd7600976 path_noexec -EXPORT_SYMBOL_GPL vmlinux 0xd7684286 scsi_flush_work -EXPORT_SYMBOL_GPL vmlinux 0xd768e985 regulator_has_full_constraints -EXPORT_SYMBOL_GPL vmlinux 0xd76f2300 dma_buf_attach -EXPORT_SYMBOL_GPL vmlinux 0xd774957d mpi_write_to_sgl -EXPORT_SYMBOL_GPL vmlinux 0xd7b290fa tty_mode_ioctl -EXPORT_SYMBOL_GPL vmlinux 0xd7b4ccd5 bpf_trace_run8 -EXPORT_SYMBOL_GPL vmlinux 0xd7c4820e receive_fd -EXPORT_SYMBOL_GPL vmlinux 0xd7c91b63 tegra210_sata_pll_hw_control_enable -EXPORT_SYMBOL_GPL vmlinux 0xd7cea889 edac_mod_work -EXPORT_SYMBOL_GPL vmlinux 0xd7d34ff7 crypto_aes_set_key -EXPORT_SYMBOL_GPL vmlinux 0xd7d7f2a7 devlink_port_health_reporter_destroy -EXPORT_SYMBOL_GPL vmlinux 0xd7da4cb8 pinctrl_count_index_with_args -EXPORT_SYMBOL_GPL vmlinux 0xd7da6c16 devm_nvmem_register -EXPORT_SYMBOL_GPL vmlinux 0xd7dccd23 __SCK__tp_func_xhci_dbg_quirks -EXPORT_SYMBOL_GPL vmlinux 0xd806ba4e ip6_local_out -EXPORT_SYMBOL_GPL vmlinux 0xd83fae50 md_stop -EXPORT_SYMBOL_GPL vmlinux 0xd84d35bd dax_read_lock -EXPORT_SYMBOL_GPL vmlinux 0xd8506039 pci_reset_bus -EXPORT_SYMBOL_GPL vmlinux 0xd8532916 fixed_phy_unregister -EXPORT_SYMBOL_GPL vmlinux 0xd8570355 phy_led_trigger_change_speed -EXPORT_SYMBOL_GPL vmlinux 0xd86190f8 of_usb_update_otg_caps -EXPORT_SYMBOL_GPL vmlinux 0xd86bf6b7 xhci_shutdown -EXPORT_SYMBOL_GPL vmlinux 0xd87fc0a0 usb_amd_prefetch_quirk -EXPORT_SYMBOL_GPL vmlinux 0xd87febde led_trigger_blink -EXPORT_SYMBOL_GPL vmlinux 0xd8864233 hwmon_device_register -EXPORT_SYMBOL_GPL vmlinux 0xd88834d6 syscon_regmap_lookup_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0xd890e568 xdp_return_frame_bulk -EXPORT_SYMBOL_GPL vmlinux 0xd8b33570 iommu_fwspec_add_ids -EXPORT_SYMBOL_GPL vmlinux 0xd8cc811a ata_sff_dev_select -EXPORT_SYMBOL_GPL vmlinux 0xd8cde08c debugfs_create_devm_seqfile -EXPORT_SYMBOL_GPL vmlinux 0xd8d68ab1 dmi_memdev_type -EXPORT_SYMBOL_GPL vmlinux 0xd8d9c6d5 mtk_eint_set_debounce -EXPORT_SYMBOL_GPL vmlinux 0xd8e12f05 da9052_disable_irq -EXPORT_SYMBOL_GPL vmlinux 0xd8e8c83e sched_show_task -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 0xd9197580 dev_pm_opp_put_supported_hw -EXPORT_SYMBOL_GPL vmlinux 0xd91d5df5 regmap_get_val_endian -EXPORT_SYMBOL_GPL vmlinux 0xd91dbd1f xdp_alloc_skb_bulk -EXPORT_SYMBOL_GPL vmlinux 0xd92ef192 security_kernel_post_load_data -EXPORT_SYMBOL_GPL vmlinux 0xd938eb98 spi_take_timestamp_pre -EXPORT_SYMBOL_GPL vmlinux 0xd93a5cb1 efivar_variable_is_removable -EXPORT_SYMBOL_GPL vmlinux 0xd949208c ahci_reset_controller -EXPORT_SYMBOL_GPL vmlinux 0xd94e0499 pci_epc_get_msix -EXPORT_SYMBOL_GPL vmlinux 0xd954b606 ahci_check_ready -EXPORT_SYMBOL_GPL vmlinux 0xd96babb4 interval_tree_iter_next -EXPORT_SYMBOL_GPL vmlinux 0xd9707954 gpiod_to_chip -EXPORT_SYMBOL_GPL vmlinux 0xd9709b77 stmpe_reg_read -EXPORT_SYMBOL_GPL vmlinux 0xd9819981 badrange_init -EXPORT_SYMBOL_GPL vmlinux 0xd988da49 pci_pasid_features -EXPORT_SYMBOL_GPL vmlinux 0xd9b0086a pinctrl_force_sleep -EXPORT_SYMBOL_GPL vmlinux 0xd9bacdef skb_append_pagefrags -EXPORT_SYMBOL_GPL vmlinux 0xd9c8d85d extcon_get_edev_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0xd9ccc953 pm_runtime_autosuspend_expiration -EXPORT_SYMBOL_GPL vmlinux 0xd9d2c0fe iommu_sva_unbind_device -EXPORT_SYMBOL_GPL vmlinux 0xd9d73fb3 mtk_pinconf_drive_set_rev1 -EXPORT_SYMBOL_GPL vmlinux 0xd9df455b usb_hcd_setup_local_mem -EXPORT_SYMBOL_GPL vmlinux 0xd9e0985f decrypt_blob -EXPORT_SYMBOL_GPL vmlinux 0xd9e24457 ring_buffer_peek -EXPORT_SYMBOL_GPL vmlinux 0xd9e7ba07 acpi_subsys_poweroff -EXPORT_SYMBOL_GPL vmlinux 0xd9eba8db efivar_entry_add -EXPORT_SYMBOL_GPL vmlinux 0xd9f47598 irq_domain_create_legacy -EXPORT_SYMBOL_GPL vmlinux 0xd9faa7a5 zynqmp_pm_set_pll_frac_mode -EXPORT_SYMBOL_GPL vmlinux 0xd9fcc4d1 dprc_get_obj_count -EXPORT_SYMBOL_GPL vmlinux 0xd9fd668b xhci_resume -EXPORT_SYMBOL_GPL vmlinux 0xd9ff2172 ezx_pcap_write -EXPORT_SYMBOL_GPL vmlinux 0xda0947de kmsg_dump_unregister -EXPORT_SYMBOL_GPL vmlinux 0xda14e27f rht_bucket_nested_insert -EXPORT_SYMBOL_GPL vmlinux 0xda28e67f crypto_hash_walk_done -EXPORT_SYMBOL_GPL vmlinux 0xda320d31 sfp_module_start -EXPORT_SYMBOL_GPL vmlinux 0xda4a0d26 ata_qc_get_active -EXPORT_SYMBOL_GPL vmlinux 0xda4b1c3c clockevents_register_device -EXPORT_SYMBOL_GPL vmlinux 0xda4d6023 of_get_phy_mode -EXPORT_SYMBOL_GPL vmlinux 0xda53fbe7 tpm2_get_tpm_pt -EXPORT_SYMBOL_GPL vmlinux 0xda63f2cd clk_hw_unregister_fixed_factor -EXPORT_SYMBOL_GPL vmlinux 0xda69d7b9 pciserial_init_ports -EXPORT_SYMBOL_GPL vmlinux 0xda6ee2f1 iommu_fwspec_free -EXPORT_SYMBOL_GPL vmlinux 0xda824bc9 nf_queue_nf_hook_drop -EXPORT_SYMBOL_GPL vmlinux 0xda8c7903 pm_generic_resume_early -EXPORT_SYMBOL_GPL vmlinux 0xda8e1302 software_node_find_by_name -EXPORT_SYMBOL_GPL vmlinux 0xda8f5547 securityfs_remove -EXPORT_SYMBOL_GPL vmlinux 0xda9e7803 usb_hcd_pci_shutdown -EXPORT_SYMBOL_GPL vmlinux 0xdaa06dc1 acpi_lpat_raw_to_temp -EXPORT_SYMBOL_GPL vmlinux 0xdaa5069a devfreq_event_add_edev -EXPORT_SYMBOL_GPL vmlinux 0xdaa91849 ehci_init_driver -EXPORT_SYMBOL_GPL vmlinux 0xdaafdbb6 genphy_c45_read_pma -EXPORT_SYMBOL_GPL vmlinux 0xdab40eae dt_init_idle_driver -EXPORT_SYMBOL_GPL vmlinux 0xdab5a1eb interval_tree_insert -EXPORT_SYMBOL_GPL vmlinux 0xdac1f137 usb_pipe_type_check -EXPORT_SYMBOL_GPL vmlinux 0xdac7b8b6 usb_for_each_port -EXPORT_SYMBOL_GPL vmlinux 0xdacccace mctrl_gpio_init_noauto -EXPORT_SYMBOL_GPL vmlinux 0xdae0ec84 iommu_sva_find -EXPORT_SYMBOL_GPL vmlinux 0xdaf34ce4 fwnode_handle_put -EXPORT_SYMBOL_GPL vmlinux 0xdaf4dfb3 fb_mode_option -EXPORT_SYMBOL_GPL vmlinux 0xdaf57fca acpi_dev_pm_attach -EXPORT_SYMBOL_GPL vmlinux 0xdaf73033 pm_generic_freeze_late -EXPORT_SYMBOL_GPL vmlinux 0xdb208ecd gen_pool_get -EXPORT_SYMBOL_GPL vmlinux 0xdb23c7f0 regmap_mmio_attach_clk -EXPORT_SYMBOL_GPL vmlinux 0xdb38a43d rio_register_scan -EXPORT_SYMBOL_GPL vmlinux 0xdb3cfd43 usb_acpi_port_lpm_incapable -EXPORT_SYMBOL_GPL vmlinux 0xdb419aac amba_apb_device_add -EXPORT_SYMBOL_GPL vmlinux 0xdb5063a4 __strp_unpause -EXPORT_SYMBOL_GPL vmlinux 0xdb518623 scsi_internal_device_unblock_nowait -EXPORT_SYMBOL_GPL vmlinux 0xdb63a944 acpi_lpat_get_conversion_table -EXPORT_SYMBOL_GPL vmlinux 0xdb63fa04 l3mdev_fib_table_rcu -EXPORT_SYMBOL_GPL vmlinux 0xdb662d0b switchdev_handle_fdb_del_to_device -EXPORT_SYMBOL_GPL vmlinux 0xdb6c9322 blk_mq_hctx_set_fq_lock_class -EXPORT_SYMBOL_GPL vmlinux 0xdb6d2f08 driver_unregister -EXPORT_SYMBOL_GPL vmlinux 0xdb6fbb3d xenbus_unmap_ring_vfree -EXPORT_SYMBOL_GPL vmlinux 0xdb7cd156 pci_set_host_bridge_release -EXPORT_SYMBOL_GPL vmlinux 0xdb7f70f3 gpio_to_desc -EXPORT_SYMBOL_GPL vmlinux 0xdb82f71f sbitmap_init_node -EXPORT_SYMBOL_GPL vmlinux 0xdb8a1b3f usermodehelper_read_trylock -EXPORT_SYMBOL_GPL vmlinux 0xdb945aed dax_driver_unregister -EXPORT_SYMBOL_GPL vmlinux 0xdb9f933a ata_pci_bmdma_init -EXPORT_SYMBOL_GPL vmlinux 0xdba964a5 da903x_reads -EXPORT_SYMBOL_GPL vmlinux 0xdbbb00b1 evm_verifyxattr -EXPORT_SYMBOL_GPL vmlinux 0xdbc15e1c __inet_twsk_schedule -EXPORT_SYMBOL_GPL vmlinux 0xdbd0ca49 pcie_port_find_device -EXPORT_SYMBOL_GPL vmlinux 0xdbdb0e8b request_any_context_irq -EXPORT_SYMBOL_GPL vmlinux 0xdbdfb702 dm_copy_name_and_uuid -EXPORT_SYMBOL_GPL vmlinux 0xdbe8d8a0 __SCK__tp_func_cpu_frequency -EXPORT_SYMBOL_GPL vmlinux 0xdbeeece6 tracepoint_probe_unregister -EXPORT_SYMBOL_GPL vmlinux 0xdbf2efaf vfs_fallocate -EXPORT_SYMBOL_GPL vmlinux 0xdbf7cb70 mpi_get_nbits -EXPORT_SYMBOL_GPL vmlinux 0xdbf942f8 __dax_driver_register -EXPORT_SYMBOL_GPL vmlinux 0xdbf9585c bgmac_alloc -EXPORT_SYMBOL_GPL vmlinux 0xdc0223e7 acpi_storage_d3 -EXPORT_SYMBOL_GPL vmlinux 0xdc02eb39 dmi_available -EXPORT_SYMBOL_GPL vmlinux 0xdc0a137a devm_phy_put -EXPORT_SYMBOL_GPL vmlinux 0xdc0e8ed8 pci_disable_ats -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 0xdc301ac4 crypto_shash_setkey -EXPORT_SYMBOL_GPL vmlinux 0xdc368b01 netlink_remove_tap -EXPORT_SYMBOL_GPL vmlinux 0xdc43bdc6 pci_vpd_find_ro_info_keyword -EXPORT_SYMBOL_GPL vmlinux 0xdc45a5db edac_stop_work -EXPORT_SYMBOL_GPL vmlinux 0xdc48810f device_pm_wait_for_dev -EXPORT_SYMBOL_GPL vmlinux 0xdc529ac5 sched_trace_cfs_rq_cpu -EXPORT_SYMBOL_GPL vmlinux 0xdc59913f imx_check_clk_hws -EXPORT_SYMBOL_GPL vmlinux 0xdc6596fa irq_set_parent -EXPORT_SYMBOL_GPL vmlinux 0xdc6699cb acpi_dev_free_resource_list -EXPORT_SYMBOL_GPL vmlinux 0xdc6e2a4c disk_force_media_change -EXPORT_SYMBOL_GPL vmlinux 0xdc74ed4f mmc_app_cmd -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 0xdc857b5e pci_ats_supported -EXPORT_SYMBOL_GPL vmlinux 0xdc8888e5 proc_dou8vec_minmax -EXPORT_SYMBOL_GPL vmlinux 0xdc97af2e syscore_suspend -EXPORT_SYMBOL_GPL vmlinux 0xdc9c14eb dprc_scan_container -EXPORT_SYMBOL_GPL vmlinux 0xdc9fa232 raw_notifier_chain_register -EXPORT_SYMBOL_GPL vmlinux 0xdcad9429 ata_bmdma_qc_issue -EXPORT_SYMBOL_GPL vmlinux 0xdcc912dc acpi_subsys_complete -EXPORT_SYMBOL_GPL vmlinux 0xdcd446e0 iommu_sva_get_pasid -EXPORT_SYMBOL_GPL vmlinux 0xdcecd420 devm_device_remove_groups -EXPORT_SYMBOL_GPL vmlinux 0xdcee3a00 store_sampling_rate -EXPORT_SYMBOL_GPL vmlinux 0xdcf9850f serial8250_rx_chars -EXPORT_SYMBOL_GPL vmlinux 0xdcf9f371 sdio_unregister_driver -EXPORT_SYMBOL_GPL vmlinux 0xdd03442e regulator_is_equal -EXPORT_SYMBOL_GPL vmlinux 0xdd0762df set_worker_desc -EXPORT_SYMBOL_GPL vmlinux 0xdd15e2ba fuse_conn_put -EXPORT_SYMBOL_GPL vmlinux 0xdd1a4c74 md_rdev_clear -EXPORT_SYMBOL_GPL vmlinux 0xdd272005 crypto_lookup_template -EXPORT_SYMBOL_GPL vmlinux 0xdd2f2fae devfreq_event_get_event -EXPORT_SYMBOL_GPL vmlinux 0xdd391eff profile_event_unregister -EXPORT_SYMBOL_GPL vmlinux 0xdd3bd1b2 i2c_slave_register -EXPORT_SYMBOL_GPL vmlinux 0xdd4681a5 of_find_spi_device_by_node -EXPORT_SYMBOL_GPL vmlinux 0xdd514c56 __clk_hw_register_fixed_rate -EXPORT_SYMBOL_GPL vmlinux 0xdd626ee3 fuse_len_args -EXPORT_SYMBOL_GPL vmlinux 0xdd684b21 device_for_each_child -EXPORT_SYMBOL_GPL vmlinux 0xdd6ddcec __traceiter_error_report_end -EXPORT_SYMBOL_GPL vmlinux 0xdd81d8f6 __SCK__tp_func_block_bio_complete -EXPORT_SYMBOL_GPL vmlinux 0xdd8a995d inet6_hash_connect -EXPORT_SYMBOL_GPL vmlinux 0xdd9fdaf3 usb_acpi_power_manageable -EXPORT_SYMBOL_GPL vmlinux 0xddb4c39a sata_link_debounce -EXPORT_SYMBOL_GPL vmlinux 0xddbeeecc pci_lock_rescan_remove -EXPORT_SYMBOL_GPL vmlinux 0xddc146b4 dev_pm_qos_hide_latency_limit -EXPORT_SYMBOL_GPL vmlinux 0xddcbc9e4 wm8350_set_bits -EXPORT_SYMBOL_GPL vmlinux 0xddd8717f gpiochip_get_data -EXPORT_SYMBOL_GPL vmlinux 0xdddd2fc4 rtnl_link_register -EXPORT_SYMBOL_GPL vmlinux 0xdde85e5c security_path_symlink -EXPORT_SYMBOL_GPL vmlinux 0xdde86604 sched_trace_rq_avg_dl -EXPORT_SYMBOL_GPL vmlinux 0xddf32520 __tracepoint_powernv_throttle -EXPORT_SYMBOL_GPL vmlinux 0xddfe83d9 fsl_mc_device_remove -EXPORT_SYMBOL_GPL vmlinux 0xde442978 pci_generic_config_read -EXPORT_SYMBOL_GPL vmlinux 0xde4dbaed tpm_chip_start -EXPORT_SYMBOL_GPL vmlinux 0xde5bbb0a of_irq_parse_raw -EXPORT_SYMBOL_GPL vmlinux 0xde63fe9d pinctrl_pm_select_sleep_state -EXPORT_SYMBOL_GPL vmlinux 0xde6f1851 TSS_checkhmac1 -EXPORT_SYMBOL_GPL vmlinux 0xde83c688 ata_noop_qc_prep -EXPORT_SYMBOL_GPL vmlinux 0xde84792e ima_file_hash -EXPORT_SYMBOL_GPL vmlinux 0xde9ab8c7 xenbus_rm -EXPORT_SYMBOL_GPL vmlinux 0xdea41f05 devm_clk_hw_unregister -EXPORT_SYMBOL_GPL vmlinux 0xdeb1d4a2 nvdimm_region_notify -EXPORT_SYMBOL_GPL vmlinux 0xdebbb5c2 driver_deferred_probe_check_state -EXPORT_SYMBOL_GPL vmlinux 0xdecff7ff regmap_field_update_bits_base -EXPORT_SYMBOL_GPL vmlinux 0xdefc1438 md_run -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 0xdf10a023 irq_domain_add_legacy -EXPORT_SYMBOL_GPL vmlinux 0xdf119fdd rio_unlock_device -EXPORT_SYMBOL_GPL vmlinux 0xdf12a7ad usb_driver_set_configuration -EXPORT_SYMBOL_GPL vmlinux 0xdf237453 timer_shutdown_sync -EXPORT_SYMBOL_GPL vmlinux 0xdf2738bb cpu_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0xdf3e3d47 tracing_snapshot_cond_enable -EXPORT_SYMBOL_GPL vmlinux 0xdf3ebd65 cpci_hp_register_controller -EXPORT_SYMBOL_GPL vmlinux 0xdf504e27 uart_handle_dcd_change -EXPORT_SYMBOL_GPL vmlinux 0xdf50b58c edac_device_handle_ce_count -EXPORT_SYMBOL_GPL vmlinux 0xdf61cc8f ata_sas_slave_configure -EXPORT_SYMBOL_GPL vmlinux 0xdf65e98a phy_start_machine -EXPORT_SYMBOL_GPL vmlinux 0xdf75896f dpcon_enable -EXPORT_SYMBOL_GPL vmlinux 0xdf8154ba nvdimm_bus_add_badrange -EXPORT_SYMBOL_GPL vmlinux 0xdf818210 fanout_mutex -EXPORT_SYMBOL_GPL vmlinux 0xdf825951 virtqueue_kick_prepare -EXPORT_SYMBOL_GPL vmlinux 0xdf82c918 crypto_create_tfm_node -EXPORT_SYMBOL_GPL vmlinux 0xdf8402aa i2c_for_each_dev -EXPORT_SYMBOL_GPL vmlinux 0xdf84d86a nl_table_lock -EXPORT_SYMBOL_GPL vmlinux 0xdf879885 crypto_unregister_rng -EXPORT_SYMBOL_GPL vmlinux 0xdf9cc9ce meson_axg_pmx_ops -EXPORT_SYMBOL_GPL vmlinux 0xdf9ece56 fib_new_table -EXPORT_SYMBOL_GPL vmlinux 0xdfb611ab iommu_dev_disable_feature -EXPORT_SYMBOL_GPL vmlinux 0xdfc4d18f of_led_get -EXPORT_SYMBOL_GPL vmlinux 0xdfc63d5c gnttab_pages_clear_private -EXPORT_SYMBOL_GPL vmlinux 0xdfcb6c90 mctrl_gpio_set -EXPORT_SYMBOL_GPL vmlinux 0xdfd2bad1 ata_ehi_push_desc -EXPORT_SYMBOL_GPL vmlinux 0xdfdbb437 perf_trace_run_bpf_submit -EXPORT_SYMBOL_GPL vmlinux 0xdfe1fa85 usb_anchor_resume_wakeups -EXPORT_SYMBOL_GPL vmlinux 0xdfeef5e4 of_pinctrl_get -EXPORT_SYMBOL_GPL vmlinux 0xdff1c2e0 __bio_crypt_clone -EXPORT_SYMBOL_GPL vmlinux 0xdff7fb0c handle_fasteoi_irq -EXPORT_SYMBOL_GPL vmlinux 0xe015d970 pinconf_generic_parse_dt_config -EXPORT_SYMBOL_GPL vmlinux 0xe01992ba device_add -EXPORT_SYMBOL_GPL vmlinux 0xe01f4cb0 irq_force_affinity -EXPORT_SYMBOL_GPL vmlinux 0xe03a4397 __pm_stay_awake -EXPORT_SYMBOL_GPL vmlinux 0xe05e2f85 nexthop_free_rcu -EXPORT_SYMBOL_GPL vmlinux 0xe072eceb debugfs_create_size_t -EXPORT_SYMBOL_GPL vmlinux 0xe085ca2b dma_request_chan -EXPORT_SYMBOL_GPL vmlinux 0xe08f6562 dpbp_open -EXPORT_SYMBOL_GPL vmlinux 0xe09dcc3f led_init_core -EXPORT_SYMBOL_GPL vmlinux 0xe0b1c103 clk_set_max_rate -EXPORT_SYMBOL_GPL vmlinux 0xe0b5fa02 rio_unregister_scan -EXPORT_SYMBOL_GPL vmlinux 0xe0de932e __trace_array_puts -EXPORT_SYMBOL_GPL vmlinux 0xe0df9d1d clk_hw_unregister -EXPORT_SYMBOL_GPL vmlinux 0xe0e3147c HYPERVISOR_sched_op -EXPORT_SYMBOL_GPL vmlinux 0xe0e35930 ehci_hub_control -EXPORT_SYMBOL_GPL vmlinux 0xe0faf829 devres_close_group -EXPORT_SYMBOL_GPL vmlinux 0xe1061b9b icc_provider_add -EXPORT_SYMBOL_GPL vmlinux 0xe10cd6ad erst_get_record_id_begin -EXPORT_SYMBOL_GPL vmlinux 0xe11c075a blk_req_zone_write_trylock -EXPORT_SYMBOL_GPL vmlinux 0xe125f720 dw8250_setup_port -EXPORT_SYMBOL_GPL vmlinux 0xe13cba87 dev_queue_xmit_nit -EXPORT_SYMBOL_GPL vmlinux 0xe143c05b fat_add_entries -EXPORT_SYMBOL_GPL vmlinux 0xe146e64a led_set_brightness_nopm -EXPORT_SYMBOL_GPL vmlinux 0xe15f71d3 usb_role_switch_get -EXPORT_SYMBOL_GPL vmlinux 0xe1635c2e crypto_unregister_ahash -EXPORT_SYMBOL_GPL vmlinux 0xe16e0049 da9052_enable_irq -EXPORT_SYMBOL_GPL vmlinux 0xe1775ee7 dm_get_reserved_bio_based_ios -EXPORT_SYMBOL_GPL vmlinux 0xe17c023b i2c_acpi_new_device -EXPORT_SYMBOL_GPL vmlinux 0xe18b8ebd devm_irq_alloc_generic_chip -EXPORT_SYMBOL_GPL vmlinux 0xe1ac773e tick_nohz_full_mask -EXPORT_SYMBOL_GPL vmlinux 0xe1b20052 __devm_alloc_percpu -EXPORT_SYMBOL_GPL vmlinux 0xe1b404c7 devm_kfree -EXPORT_SYMBOL_GPL vmlinux 0xe1bd6c99 rio_init_mports -EXPORT_SYMBOL_GPL vmlinux 0xe1c61c59 pci_pri_supported -EXPORT_SYMBOL_GPL vmlinux 0xe1c63523 blk_ksm_get_slot_idx -EXPORT_SYMBOL_GPL vmlinux 0xe1cea699 crypto_ahash_final -EXPORT_SYMBOL_GPL vmlinux 0xe1d0eb96 serial8250_modem_status -EXPORT_SYMBOL_GPL vmlinux 0xe1ed0623 xas_find -EXPORT_SYMBOL_GPL vmlinux 0xe1f4448c mtk_mmsys_ddp_connect -EXPORT_SYMBOL_GPL vmlinux 0xe1f8827c regulator_enable -EXPORT_SYMBOL_GPL vmlinux 0xe1f9b235 __pneigh_lookup -EXPORT_SYMBOL_GPL vmlinux 0xe208465c __fscrypt_prepare_rename -EXPORT_SYMBOL_GPL vmlinux 0xe210b9de rio_mport_class -EXPORT_SYMBOL_GPL vmlinux 0xe2150af1 devlink_trap_groups_unregister -EXPORT_SYMBOL_GPL vmlinux 0xe22cdcfc add_wait_queue_priority -EXPORT_SYMBOL_GPL vmlinux 0xe22ee57c irq_generic_chip_ops -EXPORT_SYMBOL_GPL vmlinux 0xe232c943 sched_trace_rq_nr_running -EXPORT_SYMBOL_GPL vmlinux 0xe233762a input_event_from_user -EXPORT_SYMBOL_GPL vmlinux 0xe2449171 tty_register_device_attr -EXPORT_SYMBOL_GPL vmlinux 0xe252d0eb imx_pinctrl_probe -EXPORT_SYMBOL_GPL vmlinux 0xe25376d0 gpiochip_add_data_with_key -EXPORT_SYMBOL_GPL vmlinux 0xe268ed24 genphy_c45_read_mdix -EXPORT_SYMBOL_GPL vmlinux 0xe27437f0 regulator_irq_helper -EXPORT_SYMBOL_GPL vmlinux 0xe27a4653 __rio_local_read_config_32 -EXPORT_SYMBOL_GPL vmlinux 0xe2822b8c register_pernet_subsys -EXPORT_SYMBOL_GPL vmlinux 0xe29338b0 gpiod_put_array -EXPORT_SYMBOL_GPL vmlinux 0xe2a3da0b dma_mmap_pages -EXPORT_SYMBOL_GPL vmlinux 0xe2af259f spi_controller_dma_unmap_mem_op_data -EXPORT_SYMBOL_GPL vmlinux 0xe2b3207a unregister_switchdev_notifier -EXPORT_SYMBOL_GPL vmlinux 0xe2c455d8 devm_platform_get_and_ioremap_resource -EXPORT_SYMBOL_GPL vmlinux 0xe2ce2b4d evm_set_key -EXPORT_SYMBOL_GPL vmlinux 0xe2da55ff lochnagar_update_config -EXPORT_SYMBOL_GPL vmlinux 0xe2df92c0 pci_find_next_capability -EXPORT_SYMBOL_GPL vmlinux 0xe2e357bf vp_modern_set_features -EXPORT_SYMBOL_GPL vmlinux 0xe2f9862c usb_sg_cancel -EXPORT_SYMBOL_GPL vmlinux 0xe30926ab ti_sci_inta_msi_domain_free_irqs -EXPORT_SYMBOL_GPL vmlinux 0xe31315a4 spi_delay_exec -EXPORT_SYMBOL_GPL vmlinux 0xe331b6bd ata_link_next -EXPORT_SYMBOL_GPL vmlinux 0xe33ea80a find_get_pid -EXPORT_SYMBOL_GPL vmlinux 0xe3423240 reset_controller_unregister -EXPORT_SYMBOL_GPL vmlinux 0xe3664b40 ata_pci_bmdma_clear_simplex -EXPORT_SYMBOL_GPL vmlinux 0xe3840e18 secure_ipv4_port_ephemeral -EXPORT_SYMBOL_GPL vmlinux 0xe3854335 crypto_alloc_sync_skcipher -EXPORT_SYMBOL_GPL vmlinux 0xe38a2d80 ftrace_set_filter_ip -EXPORT_SYMBOL_GPL vmlinux 0xe38c565a ata_bmdma_port_ops -EXPORT_SYMBOL_GPL vmlinux 0xe38ca856 vfs_cancel_lock -EXPORT_SYMBOL_GPL vmlinux 0xe38eabfd bpf_prog_free -EXPORT_SYMBOL_GPL vmlinux 0xe39205c0 sdio_readl -EXPORT_SYMBOL_GPL vmlinux 0xe3941c82 inode_congested -EXPORT_SYMBOL_GPL vmlinux 0xe3950531 kthread_cancel_work_sync -EXPORT_SYMBOL_GPL vmlinux 0xe397caf5 seq_buf_printf -EXPORT_SYMBOL_GPL vmlinux 0xe3981601 __mmdrop -EXPORT_SYMBOL_GPL vmlinux 0xe39d0794 usb_phy_roothub_exit -EXPORT_SYMBOL_GPL vmlinux 0xe3adfffb regulator_disable_deferred -EXPORT_SYMBOL_GPL vmlinux 0xe3afaa15 cpci_hp_unregister_bus -EXPORT_SYMBOL_GPL vmlinux 0xe3b09712 kprobe_event_delete -EXPORT_SYMBOL_GPL vmlinux 0xe3b3536a blk_add_driver_data -EXPORT_SYMBOL_GPL vmlinux 0xe3db5954 devm_pm_opp_set_regulators -EXPORT_SYMBOL_GPL vmlinux 0xe3fbfd78 blkg_prfill_rwstat -EXPORT_SYMBOL_GPL vmlinux 0xe401e1c8 device_find_child -EXPORT_SYMBOL_GPL vmlinux 0xe40988d5 edac_pci_free_ctl_info -EXPORT_SYMBOL_GPL vmlinux 0xe40bb23e devlink_health_reporter_priv -EXPORT_SYMBOL_GPL vmlinux 0xe40ee049 rio_request_inb_dbell -EXPORT_SYMBOL_GPL vmlinux 0xe4248980 cper_estatus_print -EXPORT_SYMBOL_GPL vmlinux 0xe42d8539 phy_modify_mmd_changed -EXPORT_SYMBOL_GPL vmlinux 0xe4309905 syscore_resume -EXPORT_SYMBOL_GPL vmlinux 0xe4352f53 dev_pm_opp_set_clkname -EXPORT_SYMBOL_GPL vmlinux 0xe4646615 unix_peer_get -EXPORT_SYMBOL_GPL vmlinux 0xe478c8c4 usb_anchor_suspend_wakeups -EXPORT_SYMBOL_GPL vmlinux 0xe47a5741 dst_cache_get_ip6 -EXPORT_SYMBOL_GPL vmlinux 0xe491e700 unregister_kprobes -EXPORT_SYMBOL_GPL vmlinux 0xe4971ade tracing_alloc_snapshot -EXPORT_SYMBOL_GPL vmlinux 0xe4a171e0 __traceiter_block_split -EXPORT_SYMBOL_GPL vmlinux 0xe4abf5a0 pci_device_group -EXPORT_SYMBOL_GPL vmlinux 0xe4b064f9 pcie_link_speed -EXPORT_SYMBOL_GPL vmlinux 0xe4b50445 irq_get_irq_data -EXPORT_SYMBOL_GPL vmlinux 0xe4b818c3 phy_speed_to_str -EXPORT_SYMBOL_GPL vmlinux 0xe4b93f27 public_key_verify_signature -EXPORT_SYMBOL_GPL vmlinux 0xe4c078b3 sata_async_notification -EXPORT_SYMBOL_GPL vmlinux 0xe4c2c66c rtc_ktime_to_tm -EXPORT_SYMBOL_GPL vmlinux 0xe4c54ed9 acct_bioset_init -EXPORT_SYMBOL_GPL vmlinux 0xe4c77489 amba_device_add -EXPORT_SYMBOL_GPL vmlinux 0xe4e48b12 swphy_validate_state -EXPORT_SYMBOL_GPL vmlinux 0xe4ec2985 xas_find_marked -EXPORT_SYMBOL_GPL vmlinux 0xe4ede977 of_get_fb_videomode -EXPORT_SYMBOL_GPL vmlinux 0xe4f0b6a9 pci_bus_resource_n -EXPORT_SYMBOL_GPL vmlinux 0xe4f7b0bb ata_port_freeze -EXPORT_SYMBOL_GPL vmlinux 0xe4f8c74b crypto_register_rng -EXPORT_SYMBOL_GPL vmlinux 0xe500811b blk_mq_freeze_queue_wait_timeout -EXPORT_SYMBOL_GPL vmlinux 0xe5089da5 fwnode_get_named_gpiod -EXPORT_SYMBOL_GPL vmlinux 0xe514fa79 misc_cg_try_charge -EXPORT_SYMBOL_GPL vmlinux 0xe5255a7f fsl_mc_bus_dpni_type -EXPORT_SYMBOL_GPL vmlinux 0xe5459c7c pci_epc_map_addr -EXPORT_SYMBOL_GPL vmlinux 0xe54fd860 adp5520_clr_bits -EXPORT_SYMBOL_GPL vmlinux 0xe5516728 k3_udma_glue_tx_get_irq -EXPORT_SYMBOL_GPL vmlinux 0xe5558502 mddev_init_writes_pending -EXPORT_SYMBOL_GPL vmlinux 0xe56a0abb crypto_register_shash -EXPORT_SYMBOL_GPL vmlinux 0xe5781be7 i2c_generic_scl_recovery -EXPORT_SYMBOL_GPL vmlinux 0xe5883bd9 class_compat_unregister -EXPORT_SYMBOL_GPL vmlinux 0xe5a370cc page_mkclean -EXPORT_SYMBOL_GPL vmlinux 0xe5a5977b exportfs_decode_fh -EXPORT_SYMBOL_GPL vmlinux 0xe5a925d3 zynqmp_pm_init_finalize -EXPORT_SYMBOL_GPL vmlinux 0xe5cb1943 hisi_clk_register_divider -EXPORT_SYMBOL_GPL vmlinux 0xe5d0164f acpi_get_psd_map -EXPORT_SYMBOL_GPL vmlinux 0xe5dcca86 cpufreq_register_governor -EXPORT_SYMBOL_GPL vmlinux 0xe5dd5a9f mtk_pinconf_bias_disable_get_rev1 -EXPORT_SYMBOL_GPL vmlinux 0xe5eae3be dm_post_suspending -EXPORT_SYMBOL_GPL vmlinux 0xe5ebe3df __sock_recv_ts_and_drops -EXPORT_SYMBOL_GPL vmlinux 0xe5fec40b __tcp_send_ack -EXPORT_SYMBOL_GPL vmlinux 0xe60632a9 edac_queue_work -EXPORT_SYMBOL_GPL vmlinux 0xe6099051 simple_attr_write -EXPORT_SYMBOL_GPL vmlinux 0xe6099d52 attribute_container_classdev_to_container -EXPORT_SYMBOL_GPL vmlinux 0xe60a5e8d pids_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0xe611f5cf gpiochip_irq_unmap -EXPORT_SYMBOL_GPL vmlinux 0xe613616b mpc8xxx_spi_rx_buf_u8 -EXPORT_SYMBOL_GPL vmlinux 0xe6187eb9 amba_apb_device_add_res -EXPORT_SYMBOL_GPL vmlinux 0xe61bb8be acomp_request_free -EXPORT_SYMBOL_GPL vmlinux 0xe61cc7f5 iommu_domain_free -EXPORT_SYMBOL_GPL vmlinux 0xe6220864 edac_mc_free -EXPORT_SYMBOL_GPL vmlinux 0xe627cde7 wbt_disable_default -EXPORT_SYMBOL_GPL vmlinux 0xe628bb9f phy_fibre_port_array -EXPORT_SYMBOL_GPL vmlinux 0xe63dd862 cpufreq_enable_fast_switch -EXPORT_SYMBOL_GPL vmlinux 0xe63ee79a devfreq_cooling_em_register -EXPORT_SYMBOL_GPL vmlinux 0xe659bbfd free_vm_area -EXPORT_SYMBOL_GPL vmlinux 0xe65bac42 devm_otg_ulpi_create -EXPORT_SYMBOL_GPL vmlinux 0xe675a9b4 simple_attr_release -EXPORT_SYMBOL_GPL vmlinux 0xe675b536 rockchip_clk_of_add_provider -EXPORT_SYMBOL_GPL vmlinux 0xe690ddd3 rt_mutex_trylock -EXPORT_SYMBOL_GPL vmlinux 0xe696151c sysfs_create_bin_file -EXPORT_SYMBOL_GPL vmlinux 0xe6965777 tty_buffer_unlock_exclusive -EXPORT_SYMBOL_GPL vmlinux 0xe69759c7 usb_unpoison_urb -EXPORT_SYMBOL_GPL vmlinux 0xe6995ccf relay_buf_full -EXPORT_SYMBOL_GPL vmlinux 0xe69b5761 dm_internal_resume_fast -EXPORT_SYMBOL_GPL vmlinux 0xe69c52bb serial8250_set_defaults -EXPORT_SYMBOL_GPL vmlinux 0xe69d0129 device_register -EXPORT_SYMBOL_GPL vmlinux 0xe6c349ea tun_get_socket -EXPORT_SYMBOL_GPL vmlinux 0xe6d15d92 dev_pm_opp_put -EXPORT_SYMBOL_GPL vmlinux 0xe6e20fb0 ata_host_alloc_pinfo -EXPORT_SYMBOL_GPL vmlinux 0xe6e23e25 sock_gen_put -EXPORT_SYMBOL_GPL vmlinux 0xe6e40502 rcu_get_gp_seq -EXPORT_SYMBOL_GPL vmlinux 0xe6e8373d meson8_pmx_ops -EXPORT_SYMBOL_GPL vmlinux 0xe6e988c5 k3_ringacc_get_tisci_dev_id -EXPORT_SYMBOL_GPL vmlinux 0xe6ea4cde pci_device_is_present -EXPORT_SYMBOL_GPL vmlinux 0xe6f83837 acpi_bus_attach_private_data -EXPORT_SYMBOL_GPL vmlinux 0xe700d767 reset_control_bulk_deassert -EXPORT_SYMBOL_GPL vmlinux 0xe70549b2 devm_gpiod_get_array_optional -EXPORT_SYMBOL_GPL vmlinux 0xe70d5c7b xenbus_match -EXPORT_SYMBOL_GPL vmlinux 0xe719f3a6 __traceiter_pelt_irq_tp -EXPORT_SYMBOL_GPL vmlinux 0xe71c1e7f amba_bustype -EXPORT_SYMBOL_GPL vmlinux 0xe72669a8 pm_runtime_force_suspend -EXPORT_SYMBOL_GPL vmlinux 0xe7296cb9 wm831x_device_shutdown -EXPORT_SYMBOL_GPL vmlinux 0xe72e173a tcp_twsk_destructor -EXPORT_SYMBOL_GPL vmlinux 0xe743e142 handle_simple_irq -EXPORT_SYMBOL_GPL vmlinux 0xe74b5cc9 tty_find_polling_driver -EXPORT_SYMBOL_GPL vmlinux 0xe753b68d devlink_fmsg_arr_pair_nest_end -EXPORT_SYMBOL_GPL vmlinux 0xe75483eb pm_clk_resume -EXPORT_SYMBOL_GPL vmlinux 0xe75eb9b6 dev_pm_set_dedicated_wake_irq_reverse -EXPORT_SYMBOL_GPL vmlinux 0xe769232e sprint_symbol_no_offset -EXPORT_SYMBOL_GPL vmlinux 0xe7715922 __traceiter_sched_update_nr_running_tp -EXPORT_SYMBOL_GPL vmlinux 0xe783e261 sysfs_emit -EXPORT_SYMBOL_GPL vmlinux 0xe78c90a9 skcipher_register_instance -EXPORT_SYMBOL_GPL vmlinux 0xe791df1f rcu_nocb_cpu_deoffload -EXPORT_SYMBOL_GPL vmlinux 0xe7936243 zynqmp_pm_clock_getstate -EXPORT_SYMBOL_GPL vmlinux 0xe7a3c10d sk_msg_free -EXPORT_SYMBOL_GPL vmlinux 0xe7ad8c2e crypto_shash_finup -EXPORT_SYMBOL_GPL vmlinux 0xe7bef849 dev_pm_opp_find_freq_floor -EXPORT_SYMBOL_GPL vmlinux 0xe7cd034d gpiod_set_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0xe7d5f992 wbc_attach_and_unlock_inode -EXPORT_SYMBOL_GPL vmlinux 0xe7d6d2d4 filter_match_preds -EXPORT_SYMBOL_GPL vmlinux 0xe7ef1b29 xfrm_audit_state_icvfail -EXPORT_SYMBOL_GPL vmlinux 0xe81008ab unregister_trace_event -EXPORT_SYMBOL_GPL vmlinux 0xe818b32b ata_bmdma_interrupt -EXPORT_SYMBOL_GPL vmlinux 0xe81cad7a bpf_offload_dev_netdev_unregister -EXPORT_SYMBOL_GPL vmlinux 0xe8201450 ulpi_viewport_access_ops -EXPORT_SYMBOL_GPL vmlinux 0xe8329837 led_trigger_unregister -EXPORT_SYMBOL_GPL vmlinux 0xe83e6041 security_path_rmdir -EXPORT_SYMBOL_GPL vmlinux 0xe8428712 power_supply_get_by_name -EXPORT_SYMBOL_GPL vmlinux 0xe84e6990 acpi_dev_get_memory_resources -EXPORT_SYMBOL_GPL vmlinux 0xe84f6e5c pciserial_remove_ports -EXPORT_SYMBOL_GPL vmlinux 0xe85a9fd3 cpu_cluster_pm_exit -EXPORT_SYMBOL_GPL vmlinux 0xe85e497b strp_data_ready -EXPORT_SYMBOL_GPL vmlinux 0xe862c4b7 dpm_suspend_start -EXPORT_SYMBOL_GPL vmlinux 0xe863818a pci_disable_pasid -EXPORT_SYMBOL_GPL vmlinux 0xe863c83f xfrm_dev_state_add -EXPORT_SYMBOL_GPL vmlinux 0xe867a176 device_get_named_child_node -EXPORT_SYMBOL_GPL vmlinux 0xe8705b25 ata_sas_port_suspend -EXPORT_SYMBOL_GPL vmlinux 0xe8784b4a bio_add_zone_append_page -EXPORT_SYMBOL_GPL vmlinux 0xe89e3ade __regmap_init -EXPORT_SYMBOL_GPL vmlinux 0xe89ea2ad thermal_zone_device_enable -EXPORT_SYMBOL_GPL vmlinux 0xe8a7d632 net_ns_type_operations -EXPORT_SYMBOL_GPL vmlinux 0xe8aeb001 phy_calibrate -EXPORT_SYMBOL_GPL vmlinux 0xe8b5ef61 devm_regulator_bulk_register_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0xe8bd887a usb_hub_claim_port -EXPORT_SYMBOL_GPL vmlinux 0xe8c0065d memory_group_register_static -EXPORT_SYMBOL_GPL vmlinux 0xe8d12286 ping_get_port -EXPORT_SYMBOL_GPL vmlinux 0xe8d97edf kernfs_notify -EXPORT_SYMBOL_GPL vmlinux 0xe90272fe get_current_tty -EXPORT_SYMBOL_GPL vmlinux 0xe90c7659 k3_udma_glue_rx_dma_to_cppi5_addr -EXPORT_SYMBOL_GPL vmlinux 0xe911df29 eventfd_ctx_do_read -EXPORT_SYMBOL_GPL vmlinux 0xe9200ada fat_time_fat2unix -EXPORT_SYMBOL_GPL vmlinux 0xe92de8d3 pci_acpi_set_companion_lookup_hook -EXPORT_SYMBOL_GPL vmlinux 0xe93e49c3 devres_free -EXPORT_SYMBOL_GPL vmlinux 0xe94cb94f skb_mpls_update_lse -EXPORT_SYMBOL_GPL vmlinux 0xe956a75c pl320_ipc_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0xe9622602 debugfs_create_u8 -EXPORT_SYMBOL_GPL vmlinux 0xe9658f17 regulator_map_voltage_pickable_linear_range -EXPORT_SYMBOL_GPL vmlinux 0xe9741bd1 mddev_suspend -EXPORT_SYMBOL_GPL vmlinux 0xe98ed3eb hisi_clk_init -EXPORT_SYMBOL_GPL vmlinux 0xe98f55f2 arm_smccc_get_version -EXPORT_SYMBOL_GPL vmlinux 0xe9d1b7cf irq_to_pcap -EXPORT_SYMBOL_GPL vmlinux 0xe9d63a0d k3_udma_glue_enable_tx_chn -EXPORT_SYMBOL_GPL vmlinux 0xe9fd5c09 nvdimm_volatile_region_create -EXPORT_SYMBOL_GPL vmlinux 0xea018bbb mpi_test_bit -EXPORT_SYMBOL_GPL vmlinux 0xea0714a6 serial8250_em485_stop_tx -EXPORT_SYMBOL_GPL vmlinux 0xea124bd1 gcd -EXPORT_SYMBOL_GPL vmlinux 0xea38036f ring_buffer_entries -EXPORT_SYMBOL_GPL vmlinux 0xea3a23f3 public_key_free -EXPORT_SYMBOL_GPL vmlinux 0xea44675b sata_lpm_ignore_phy_events -EXPORT_SYMBOL_GPL vmlinux 0xea50dad3 ahci_ignore_sss -EXPORT_SYMBOL_GPL vmlinux 0xea54f2b0 xhci_run -EXPORT_SYMBOL_GPL vmlinux 0xea59a571 blk_poll -EXPORT_SYMBOL_GPL vmlinux 0xea636eb2 devm_add_action -EXPORT_SYMBOL_GPL vmlinux 0xea661851 xhci_suspend -EXPORT_SYMBOL_GPL vmlinux 0xea67a5c7 tps6586x_writes -EXPORT_SYMBOL_GPL vmlinux 0xea6b6331 ahci_dev_classify -EXPORT_SYMBOL_GPL vmlinux 0xea77311a crypto_shoot_alg -EXPORT_SYMBOL_GPL vmlinux 0xea7fa0c9 blk_mq_sched_try_merge -EXPORT_SYMBOL_GPL vmlinux 0xeaa159b0 dm_internal_resume -EXPORT_SYMBOL_GPL vmlinux 0xeab06d5f tcp_bpf_update_proto -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 0xeadd4a6d i2c_new_dummy_device -EXPORT_SYMBOL_GPL vmlinux 0xeae0f496 clean_acked_data_flush -EXPORT_SYMBOL_GPL vmlinux 0xeae361c7 do_unregister_con_driver -EXPORT_SYMBOL_GPL vmlinux 0xeae5c1d0 regmap_get_raw_write_max -EXPORT_SYMBOL_GPL vmlinux 0xeae7f61c phy_select_page -EXPORT_SYMBOL_GPL vmlinux 0xeaf0a57c look_up_OID -EXPORT_SYMBOL_GPL vmlinux 0xeaf8469d hv_do_fast_hypercall8 -EXPORT_SYMBOL_GPL vmlinux 0xeb1c6c1c dma_buf_end_cpu_access -EXPORT_SYMBOL_GPL vmlinux 0xeb337fe4 mtk_paris_pinctrl_probe -EXPORT_SYMBOL_GPL vmlinux 0xeb4221e4 trace_clock -EXPORT_SYMBOL_GPL vmlinux 0xeb58f83b tty_port_unregister_device -EXPORT_SYMBOL_GPL vmlinux 0xeb688a5f iommu_unregister_device_fault_handler -EXPORT_SYMBOL_GPL vmlinux 0xeb73ba62 bpf_trace_run9 -EXPORT_SYMBOL_GPL vmlinux 0xeb78b1ed unregister_kprobe -EXPORT_SYMBOL_GPL vmlinux 0xeb8a148b udp_tunnel_nic_ops -EXPORT_SYMBOL_GPL vmlinux 0xebc9a09f lock_system_sleep -EXPORT_SYMBOL_GPL vmlinux 0xebd4cc11 mctrl_gpio_enable_ms -EXPORT_SYMBOL_GPL vmlinux 0xebdd8212 regmap_write_async -EXPORT_SYMBOL_GPL vmlinux 0xebe0128d btree_init_mempool -EXPORT_SYMBOL_GPL vmlinux 0xebe35248 virtio_check_driver_offered_feature -EXPORT_SYMBOL_GPL vmlinux 0xebe5ed12 ata_sff_port_intr -EXPORT_SYMBOL_GPL vmlinux 0xebec6516 srcu_torture_stats_print -EXPORT_SYMBOL_GPL vmlinux 0xebeffa76 tty_port_tty_hangup -EXPORT_SYMBOL_GPL vmlinux 0xebf15b49 cgroup_attach_task_all -EXPORT_SYMBOL_GPL vmlinux 0xec06309e power_supply_external_power_changed -EXPORT_SYMBOL_GPL vmlinux 0xec0816b4 raw_hash_sk -EXPORT_SYMBOL_GPL vmlinux 0xec0a2501 __blkg_prfill_u64 -EXPORT_SYMBOL_GPL vmlinux 0xec0ce9bb fsnotify_find_mark -EXPORT_SYMBOL_GPL vmlinux 0xec156c19 cpufreq_cpu_put -EXPORT_SYMBOL_GPL vmlinux 0xec20b55a fs_dax_get_by_bdev -EXPORT_SYMBOL_GPL vmlinux 0xec2b22f0 unregister_virtio_device -EXPORT_SYMBOL_GPL vmlinux 0xec37e002 ata_sas_tport_delete -EXPORT_SYMBOL_GPL vmlinux 0xec406f9a regmap_add_irq_chip_fwnode -EXPORT_SYMBOL_GPL vmlinux 0xec42a53d netdev_walk_all_lower_dev -EXPORT_SYMBOL_GPL vmlinux 0xec4694e6 __platform_driver_probe -EXPORT_SYMBOL_GPL vmlinux 0xec510f48 dm_send_uevents -EXPORT_SYMBOL_GPL vmlinux 0xec5668f6 dax_zero_page_range -EXPORT_SYMBOL_GPL vmlinux 0xec5ad73b trace_seq_bitmask -EXPORT_SYMBOL_GPL vmlinux 0xec774acb cpufreq_frequency_table_verify -EXPORT_SYMBOL_GPL vmlinux 0xec7c12cb usb_get_dev -EXPORT_SYMBOL_GPL vmlinux 0xec87db7f spi_controller_dma_map_mem_op_data -EXPORT_SYMBOL_GPL vmlinux 0xec8cfc25 n_tty_inherit_ops -EXPORT_SYMBOL_GPL vmlinux 0xeca2ee32 list_lru_count_one -EXPORT_SYMBOL_GPL vmlinux 0xecaf4e60 devm_of_phy_provider_unregister -EXPORT_SYMBOL_GPL vmlinux 0xecb671fc tegra210_sata_pll_hw_sequence_start -EXPORT_SYMBOL_GPL vmlinux 0xecba68e3 gnttab_batch_map -EXPORT_SYMBOL_GPL vmlinux 0xecbc51d9 xfrm_audit_state_replay_overflow -EXPORT_SYMBOL_GPL vmlinux 0xecbdf854 rio_add_net -EXPORT_SYMBOL_GPL vmlinux 0xecc04889 stmpe_set_bits -EXPORT_SYMBOL_GPL vmlinux 0xecc1fd5b power_supply_get_property -EXPORT_SYMBOL_GPL vmlinux 0xecce96c6 switchdev_handle_fdb_add_to_device -EXPORT_SYMBOL_GPL vmlinux 0xecd8f23d xenbus_read -EXPORT_SYMBOL_GPL vmlinux 0xecdc5b52 request_firmware_direct -EXPORT_SYMBOL_GPL vmlinux 0xece288e4 badblocks_store -EXPORT_SYMBOL_GPL vmlinux 0xece397ae dev_pm_opp_of_get_sharing_cpus -EXPORT_SYMBOL_GPL vmlinux 0xecfb8acb rio_request_dma -EXPORT_SYMBOL_GPL vmlinux 0xed159aa6 crypto_unregister_acomp -EXPORT_SYMBOL_GPL vmlinux 0xed1e38f2 fat_truncate_time -EXPORT_SYMBOL_GPL vmlinux 0xed258038 __devm_irq_alloc_descs -EXPORT_SYMBOL_GPL vmlinux 0xed39b7b8 parse_OID -EXPORT_SYMBOL_GPL vmlinux 0xed3a26ff mbox_send_message -EXPORT_SYMBOL_GPL vmlinux 0xed48ec09 input_ff_erase -EXPORT_SYMBOL_GPL vmlinux 0xed81c781 blk_queue_write_cache -EXPORT_SYMBOL_GPL vmlinux 0xed901a34 ip_valid_fib_dump_req -EXPORT_SYMBOL_GPL vmlinux 0xedbb13b0 freq_qos_add_notifier -EXPORT_SYMBOL_GPL vmlinux 0xedbd4fd3 of_console_check -EXPORT_SYMBOL_GPL vmlinux 0xedbf3d72 devres_open_group -EXPORT_SYMBOL_GPL vmlinux 0xedc75e94 rdev_get_dev -EXPORT_SYMBOL_GPL vmlinux 0xedceaa94 pci_epc_linkup -EXPORT_SYMBOL_GPL vmlinux 0xedf1efae rtc_read_alarm -EXPORT_SYMBOL_GPL vmlinux 0xedf68ba6 pci_epc_mem_free_addr -EXPORT_SYMBOL_GPL vmlinux 0xee1f5126 __tracepoint_neigh_timer_handler -EXPORT_SYMBOL_GPL vmlinux 0xee282e67 devm_pinctrl_put -EXPORT_SYMBOL_GPL vmlinux 0xee2ed1cf devm_kasprintf -EXPORT_SYMBOL_GPL vmlinux 0xee2ef201 xhci_reset_bandwidth -EXPORT_SYMBOL_GPL vmlinux 0xee38ef57 register_switchdev_blocking_notifier -EXPORT_SYMBOL_GPL vmlinux 0xee4c3acd pci_epc_set_msi -EXPORT_SYMBOL_GPL vmlinux 0xee4cf163 dprc_remove_devices -EXPORT_SYMBOL_GPL vmlinux 0xee4e5ded usb_hcd_pci_remove -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 0xee6f31c5 spi_mem_exec_op -EXPORT_SYMBOL_GPL vmlinux 0xee782f69 usb_role_switch_find_by_fwnode -EXPORT_SYMBOL_GPL vmlinux 0xee7cc922 ftrace_set_notrace -EXPORT_SYMBOL_GPL vmlinux 0xee7e768c skb_gso_validate_mac_len -EXPORT_SYMBOL_GPL vmlinux 0xee86149d sysfs_remove_files -EXPORT_SYMBOL_GPL vmlinux 0xeeadf510 fsverity_ioctl_measure -EXPORT_SYMBOL_GPL vmlinux 0xeec77bff tty_buffer_space_avail -EXPORT_SYMBOL_GPL vmlinux 0xeecd4eb8 efivars_unregister -EXPORT_SYMBOL_GPL vmlinux 0xeed0cea4 kernel_read_file_from_fd -EXPORT_SYMBOL_GPL vmlinux 0xeedd987e phy_10gbit_features_array -EXPORT_SYMBOL_GPL vmlinux 0xeededb06 devm_ti_sci_get_of_resource -EXPORT_SYMBOL_GPL vmlinux 0xeedfa079 sk_msg_free_partial -EXPORT_SYMBOL_GPL vmlinux 0xeedfcec3 task_work_run -EXPORT_SYMBOL_GPL vmlinux 0xeee274c7 device_add_software_node -EXPORT_SYMBOL_GPL vmlinux 0xeee35af5 spi_new_device -EXPORT_SYMBOL_GPL vmlinux 0xeeeb0bd1 fat_update_time -EXPORT_SYMBOL_GPL vmlinux 0xef048a2f pm_genpd_remove_subdomain -EXPORT_SYMBOL_GPL vmlinux 0xef059206 blk_trace_startstop -EXPORT_SYMBOL_GPL vmlinux 0xef1f6e23 apei_resources_request -EXPORT_SYMBOL_GPL vmlinux 0xef27aeb8 usb_get_maximum_speed -EXPORT_SYMBOL_GPL vmlinux 0xef29fcdd clk_bulk_put -EXPORT_SYMBOL_GPL vmlinux 0xef2af5c1 __page_file_mapping -EXPORT_SYMBOL_GPL vmlinux 0xef426f33 ip4_datagram_release_cb -EXPORT_SYMBOL_GPL vmlinux 0xef464c28 getboottime64 -EXPORT_SYMBOL_GPL vmlinux 0xef46e129 blk_mq_unquiesce_queue -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 0xef7ca199 wakeup_source_unregister -EXPORT_SYMBOL_GPL vmlinux 0xef7cfa3b crypto_register_instance -EXPORT_SYMBOL_GPL vmlinux 0xef864611 trace_array_destroy -EXPORT_SYMBOL_GPL vmlinux 0xef8f87bb put_iova_domain -EXPORT_SYMBOL_GPL vmlinux 0xefa2c27d register_tracepoint_module_notifier -EXPORT_SYMBOL_GPL vmlinux 0xefbbd0cf xas_split -EXPORT_SYMBOL_GPL vmlinux 0xefc2184d phy_resolve_aneg_pause -EXPORT_SYMBOL_GPL vmlinux 0xefce2250 thermal_remove_hwmon_sysfs -EXPORT_SYMBOL_GPL vmlinux 0xefd81c36 get_pid_task -EXPORT_SYMBOL_GPL vmlinux 0xefdc4f56 devlink_dpipe_entry_ctx_append -EXPORT_SYMBOL_GPL vmlinux 0xefeafcf1 edac_has_mcs -EXPORT_SYMBOL_GPL vmlinux 0xeff54105 clk_hw_register_fixed_factor -EXPORT_SYMBOL_GPL vmlinux 0xeffdf83a nf_ct_hook -EXPORT_SYMBOL_GPL vmlinux 0xf0037e36 device_create_bin_file -EXPORT_SYMBOL_GPL vmlinux 0xf0229215 tty_port_register_device -EXPORT_SYMBOL_GPL vmlinux 0xf04429b4 acpi_bus_get_status_handle -EXPORT_SYMBOL_GPL vmlinux 0xf04b224d rio_mport_get_efb -EXPORT_SYMBOL_GPL vmlinux 0xf04beb16 fsl_mc_cleanup_irq_pool -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 0xf075b414 acpi_subsys_freeze -EXPORT_SYMBOL_GPL vmlinux 0xf0910075 sfp_bus_del_upstream -EXPORT_SYMBOL_GPL vmlinux 0xf091cc6f of_dma_controller_free -EXPORT_SYMBOL_GPL vmlinux 0xf0aacc51 dm_table_set_type -EXPORT_SYMBOL_GPL vmlinux 0xf0c11182 ata_common_sdev_attrs -EXPORT_SYMBOL_GPL vmlinux 0xf0c37ede ata_sas_port_alloc -EXPORT_SYMBOL_GPL vmlinux 0xf0d2bf50 __put_net -EXPORT_SYMBOL_GPL vmlinux 0xf0fbf25b crypto_larval_alloc -EXPORT_SYMBOL_GPL vmlinux 0xf11eed25 ip6_datagram_connect_v6_only -EXPORT_SYMBOL_GPL vmlinux 0xf12180fd imx_1443x_dram_pll -EXPORT_SYMBOL_GPL vmlinux 0xf1265228 gpiochip_add_pingroup_range -EXPORT_SYMBOL_GPL vmlinux 0xf127085c init_uts_ns -EXPORT_SYMBOL_GPL vmlinux 0xf129deeb divider_ro_determine_rate -EXPORT_SYMBOL_GPL vmlinux 0xf149603f virtqueue_kick -EXPORT_SYMBOL_GPL vmlinux 0xf15d6eec crypto_comp_decompress -EXPORT_SYMBOL_GPL vmlinux 0xf16c09e3 i2c_dw_validate_speed -EXPORT_SYMBOL_GPL vmlinux 0xf17859e3 ata_port_desc -EXPORT_SYMBOL_GPL vmlinux 0xf1838b82 generic_fh_to_dentry -EXPORT_SYMBOL_GPL vmlinux 0xf184d189 kernel_power_off -EXPORT_SYMBOL_GPL vmlinux 0xf18568f2 class_destroy -EXPORT_SYMBOL_GPL vmlinux 0xf18953a0 sata_pmp_error_handler -EXPORT_SYMBOL_GPL vmlinux 0xf1f1b543 strp_check_rcv -EXPORT_SYMBOL_GPL vmlinux 0xf1f6219e i2c_acpi_client_count -EXPORT_SYMBOL_GPL vmlinux 0xf2115ea7 __traceiter_devlink_hwerr -EXPORT_SYMBOL_GPL vmlinux 0xf21459e2 tpm_tis_remove -EXPORT_SYMBOL_GPL vmlinux 0xf218ae5b tcp_done -EXPORT_SYMBOL_GPL vmlinux 0xf21caf22 stmpe_reg_write -EXPORT_SYMBOL_GPL vmlinux 0xf21e1f9b disable_percpu_irq -EXPORT_SYMBOL_GPL vmlinux 0xf241e46f topology_set_thermal_pressure -EXPORT_SYMBOL_GPL vmlinux 0xf253fcea phy_create -EXPORT_SYMBOL_GPL vmlinux 0xf257c82c crypto_stats_akcipher_decrypt -EXPORT_SYMBOL_GPL vmlinux 0xf25c14f8 _proc_mkdir -EXPORT_SYMBOL_GPL vmlinux 0xf25d7973 usb_root_hub_lost_power -EXPORT_SYMBOL_GPL vmlinux 0xf26618ff vma_kernel_pagesize -EXPORT_SYMBOL_GPL vmlinux 0xf273b3bf pci_assign_unassigned_bridge_resources -EXPORT_SYMBOL_GPL vmlinux 0xf27d0a7b gnttab_grant_foreign_access_ref -EXPORT_SYMBOL_GPL vmlinux 0xf281b6d0 __fscrypt_inode_uses_inline_crypto -EXPORT_SYMBOL_GPL vmlinux 0xf2967796 ring_buffer_record_on -EXPORT_SYMBOL_GPL vmlinux 0xf2b33cb7 memory_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0xf2bf3377 proc_get_parent_data -EXPORT_SYMBOL_GPL vmlinux 0xf2c21d69 filemap_read -EXPORT_SYMBOL_GPL vmlinux 0xf2d53830 debugfs_file_put -EXPORT_SYMBOL_GPL vmlinux 0xf2e0a6e1 pinconf_generic_dt_subnode_to_map -EXPORT_SYMBOL_GPL vmlinux 0xf2f20211 sbitmap_queue_wake_up -EXPORT_SYMBOL_GPL vmlinux 0xf2f20f42 devm_thermal_zone_of_sensor_register -EXPORT_SYMBOL_GPL vmlinux 0xf2fb61bd vprintk_default -EXPORT_SYMBOL_GPL vmlinux 0xf30a5502 cpufreq_enable_boost_support -EXPORT_SYMBOL_GPL vmlinux 0xf311e156 key_being_used_for -EXPORT_SYMBOL_GPL vmlinux 0xf31632e0 ezx_pcap_read -EXPORT_SYMBOL_GPL vmlinux 0xf31b3fd1 workqueue_set_max_active -EXPORT_SYMBOL_GPL vmlinux 0xf322d4ab user_destroy -EXPORT_SYMBOL_GPL vmlinux 0xf3247557 ata_std_postreset -EXPORT_SYMBOL_GPL vmlinux 0xf328420a of_reserved_mem_lookup -EXPORT_SYMBOL_GPL vmlinux 0xf32bdc5d unregister_xenstore_notifier -EXPORT_SYMBOL_GPL vmlinux 0xf32d512f fsl_mc_bus_dpseci_type -EXPORT_SYMBOL_GPL vmlinux 0xf331236f btree_geo32 -EXPORT_SYMBOL_GPL vmlinux 0xf34f37c2 acpi_kobj -EXPORT_SYMBOL_GPL vmlinux 0xf352023f memory_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0xf3547a5d xenbus_dev_probe -EXPORT_SYMBOL_GPL vmlinux 0xf3626782 net_rwsem -EXPORT_SYMBOL_GPL vmlinux 0xf371062c list_lru_count_node -EXPORT_SYMBOL_GPL vmlinux 0xf373dfe3 acpi_register_gsi -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 0xf38c269e ahci_platform_ops -EXPORT_SYMBOL_GPL vmlinux 0xf39d878d pm_genpd_init -EXPORT_SYMBOL_GPL vmlinux 0xf39fc844 irq_domain_associate -EXPORT_SYMBOL_GPL vmlinux 0xf3a43dad sk_msg_alloc -EXPORT_SYMBOL_GPL vmlinux 0xf3adfac5 genphy_c45_restart_aneg -EXPORT_SYMBOL_GPL vmlinux 0xf3b451ca kdb_poll_funcs -EXPORT_SYMBOL_GPL vmlinux 0xf3c03421 devm_gpio_request -EXPORT_SYMBOL_GPL vmlinux 0xf3d7f956 devm_power_supply_register -EXPORT_SYMBOL_GPL vmlinux 0xf3dc331b of_property_read_string -EXPORT_SYMBOL_GPL vmlinux 0xf3df040e dma_buf_vmap -EXPORT_SYMBOL_GPL vmlinux 0xf3e48006 pinctrl_generic_get_group -EXPORT_SYMBOL_GPL vmlinux 0xf418b128 irq_create_of_mapping -EXPORT_SYMBOL_GPL vmlinux 0xf43fa596 fat_dir_empty -EXPORT_SYMBOL_GPL vmlinux 0xf43fc525 regulator_get_error_flags -EXPORT_SYMBOL_GPL vmlinux 0xf4674d76 ata_wait_after_reset -EXPORT_SYMBOL_GPL vmlinux 0xf4689d50 linkmode_set_pause -EXPORT_SYMBOL_GPL vmlinux 0xf47654df irq_check_status_bit -EXPORT_SYMBOL_GPL vmlinux 0xf48646f6 fsl_mc_device_add -EXPORT_SYMBOL_GPL vmlinux 0xf48a3a23 powercap_register_zone -EXPORT_SYMBOL_GPL vmlinux 0xf49a846c udp6_lib_lookup -EXPORT_SYMBOL_GPL vmlinux 0xf4a00349 __tracepoint_block_rq_insert -EXPORT_SYMBOL_GPL vmlinux 0xf4af35c2 rcu_gp_is_normal -EXPORT_SYMBOL_GPL vmlinux 0xf4baa999 lwtunnel_input -EXPORT_SYMBOL_GPL vmlinux 0xf4c00379 ahci_platform_resume -EXPORT_SYMBOL_GPL vmlinux 0xf4cd9f8f reset_control_bulk_release -EXPORT_SYMBOL_GPL vmlinux 0xf4ed7b3c irq_domain_create_simple -EXPORT_SYMBOL_GPL vmlinux 0xf4ff9fe8 bpf_trace_run2 -EXPORT_SYMBOL_GPL vmlinux 0xf513ebf6 bio_iov_iter_get_pages -EXPORT_SYMBOL_GPL vmlinux 0xf532953b dmaengine_unmap_put -EXPORT_SYMBOL_GPL vmlinux 0xf535bce7 of_address_to_resource -EXPORT_SYMBOL_GPL vmlinux 0xf548cc9d sdio_align_size -EXPORT_SYMBOL_GPL vmlinux 0xf54bd49b lcm -EXPORT_SYMBOL_GPL vmlinux 0xf54c3ffb handle_bad_irq -EXPORT_SYMBOL_GPL vmlinux 0xf553318d cpuidle_pause_and_lock -EXPORT_SYMBOL_GPL vmlinux 0xf5549071 serial8250_do_get_mctrl -EXPORT_SYMBOL_GPL vmlinux 0xf5573a13 ata_dummy_port_info -EXPORT_SYMBOL_GPL vmlinux 0xf5750ad2 badblocks_exit -EXPORT_SYMBOL_GPL vmlinux 0xf57c223e regulator_set_voltage_time -EXPORT_SYMBOL_GPL vmlinux 0xf58dfc76 __iptunnel_pull_header -EXPORT_SYMBOL_GPL vmlinux 0xf58ef7bc devres_for_each_res -EXPORT_SYMBOL_GPL vmlinux 0xf5a3ba99 linear_range_values_in_range -EXPORT_SYMBOL_GPL vmlinux 0xf5a691cd invalidate_bh_lrus -EXPORT_SYMBOL_GPL vmlinux 0xf5b218a6 clk_mux_ro_ops -EXPORT_SYMBOL_GPL vmlinux 0xf5c17d20 smpboot_unregister_percpu_thread -EXPORT_SYMBOL_GPL vmlinux 0xf5cbd609 sdio_memcpy_fromio -EXPORT_SYMBOL_GPL vmlinux 0xf5d330d1 tpm_chip_stop -EXPORT_SYMBOL_GPL vmlinux 0xf5d4b06c ata_msleep -EXPORT_SYMBOL_GPL vmlinux 0xf5e2c378 blkg_rwstat_recursive_sum -EXPORT_SYMBOL_GPL vmlinux 0xf5e4dac4 fib6_new_table -EXPORT_SYMBOL_GPL vmlinux 0xf5e9abd6 debugfs_create_x64 -EXPORT_SYMBOL_GPL vmlinux 0xf5eb67c7 regulator_set_load -EXPORT_SYMBOL_GPL vmlinux 0xf5f2fbf1 debugfs_create_atomic_t -EXPORT_SYMBOL_GPL vmlinux 0xf5f370e0 async_schedule_node -EXPORT_SYMBOL_GPL vmlinux 0xf5fddab3 xfrm_audit_policy_delete -EXPORT_SYMBOL_GPL vmlinux 0xf5ff155f fwnode_get_next_available_child_node -EXPORT_SYMBOL_GPL vmlinux 0xf5ffb0f4 of_property_read_variable_u8_array -EXPORT_SYMBOL_GPL vmlinux 0xf6050b80 dpcon_open -EXPORT_SYMBOL_GPL vmlinux 0xf6146663 devm_nvmem_cell_get -EXPORT_SYMBOL_GPL vmlinux 0xf616316e usb_enable_intel_xhci_ports -EXPORT_SYMBOL_GPL vmlinux 0xf61c6b74 hv_do_hypercall -EXPORT_SYMBOL_GPL vmlinux 0xf63a4a84 handle_irq_desc -EXPORT_SYMBOL_GPL vmlinux 0xf6400992 usb_poison_urb -EXPORT_SYMBOL_GPL vmlinux 0xf646d783 get_user_pages_fast -EXPORT_SYMBOL_GPL vmlinux 0xf64ad24b pm_runtime_barrier -EXPORT_SYMBOL_GPL vmlinux 0xf64ffe89 devlink_flash_update_status_notify -EXPORT_SYMBOL_GPL vmlinux 0xf654a9b5 vp_modern_config_vector -EXPORT_SYMBOL_GPL vmlinux 0xf663ee2f pcap_adc_sync -EXPORT_SYMBOL_GPL vmlinux 0xf664529b pktgen_xfrm_outer_mode_output -EXPORT_SYMBOL_GPL vmlinux 0xf666cab4 devm_kstrdup_const -EXPORT_SYMBOL_GPL vmlinux 0xf66d82df fscrypt_file_open -EXPORT_SYMBOL_GPL vmlinux 0xf6828d71 sdio_readw -EXPORT_SYMBOL_GPL vmlinux 0xf6a28554 region_intersects -EXPORT_SYMBOL_GPL vmlinux 0xf6aec3a9 gen10g_config_aneg -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 0xf6d4ec06 dma_buf_unpin -EXPORT_SYMBOL_GPL vmlinux 0xf6e27f58 blk_queue_max_discard_segments -EXPORT_SYMBOL_GPL vmlinux 0xf6e874f5 ata_timing_merge -EXPORT_SYMBOL_GPL vmlinux 0xf6e9f78c __xdp_build_skb_from_frame -EXPORT_SYMBOL_GPL vmlinux 0xf6f16c56 rcu_barrier_tasks -EXPORT_SYMBOL_GPL vmlinux 0xf6f4c799 regulator_bulk_free -EXPORT_SYMBOL_GPL vmlinux 0xf6f72ea8 __fat_fs_error -EXPORT_SYMBOL_GPL vmlinux 0xf6fac670 fsl_mc_bus_dpdmux_type -EXPORT_SYMBOL_GPL vmlinux 0xf6fea269 ata_bmdma_status -EXPORT_SYMBOL_GPL vmlinux 0xf70291b7 uart_insert_char -EXPORT_SYMBOL_GPL vmlinux 0xf70e4a4d preempt_schedule_notrace -EXPORT_SYMBOL_GPL vmlinux 0xf7111889 gpiochip_irq_domain_activate -EXPORT_SYMBOL_GPL vmlinux 0xf72a65ea tty_get_char_size -EXPORT_SYMBOL_GPL vmlinux 0xf72c43e6 to_nd_blk_region -EXPORT_SYMBOL_GPL vmlinux 0xf73088e6 __sock_recv_wifi_status -EXPORT_SYMBOL_GPL vmlinux 0xf730fb4a qcom_smem_state_update_bits -EXPORT_SYMBOL_GPL vmlinux 0xf73baf83 blk_ksm_register -EXPORT_SYMBOL_GPL vmlinux 0xf744cd84 blk_mq_quiesce_queue -EXPORT_SYMBOL_GPL vmlinux 0xf7455c16 input_event_to_user -EXPORT_SYMBOL_GPL vmlinux 0xf749debc md5_zero_message_hash -EXPORT_SYMBOL_GPL vmlinux 0xf74ba06b mptcp_token_iter_next -EXPORT_SYMBOL_GPL vmlinux 0xf74bb274 mod_delayed_work_on -EXPORT_SYMBOL_GPL vmlinux 0xf74e7c93 jump_label_rate_limit -EXPORT_SYMBOL_GPL vmlinux 0xf7727a6a fl6_merge_options -EXPORT_SYMBOL_GPL vmlinux 0xf77578b3 acpi_device_fwnode_ops -EXPORT_SYMBOL_GPL vmlinux 0xf7780867 bus_rescan_devices -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 0xf7898372 __udp_enqueue_schedule_skb -EXPORT_SYMBOL_GPL vmlinux 0xf795fbae irq_gc_set_wake -EXPORT_SYMBOL_GPL vmlinux 0xf7975647 pci_add_dynid -EXPORT_SYMBOL_GPL vmlinux 0xf7bc95b0 devlink_fmsg_pair_nest_start -EXPORT_SYMBOL_GPL vmlinux 0xf7c3f273 xen_resume_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0xf7ce1c54 netlink_add_tap -EXPORT_SYMBOL_GPL vmlinux 0xf7d8837e ehci_cf_port_reset_rwsem -EXPORT_SYMBOL_GPL vmlinux 0xf7d961d8 clk_hw_unregister_composite -EXPORT_SYMBOL_GPL vmlinux 0xf7e8fc27 devm_nvdimm_memremap -EXPORT_SYMBOL_GPL vmlinux 0xf7e9f4a9 crypto_stats_kpp_generate_public_key -EXPORT_SYMBOL_GPL vmlinux 0xf7eb468f of_platform_depopulate -EXPORT_SYMBOL_GPL vmlinux 0xf7fc3661 sched_trace_cfs_rq_avg -EXPORT_SYMBOL_GPL vmlinux 0xf8132d45 vtime_guest_exit -EXPORT_SYMBOL_GPL vmlinux 0xf82207ba xdp_master_redirect -EXPORT_SYMBOL_GPL vmlinux 0xf825c98e dev_fwnode -EXPORT_SYMBOL_GPL vmlinux 0xf82f3657 work_on_cpu -EXPORT_SYMBOL_GPL vmlinux 0xf8300273 inverse_translate -EXPORT_SYMBOL_GPL vmlinux 0xf837d473 nf_hooks_lwtunnel_sysctl_handler -EXPORT_SYMBOL_GPL vmlinux 0xf852d746 __tracepoint_tcp_send_reset -EXPORT_SYMBOL_GPL vmlinux 0xf86b377d md_submit_discard_bio -EXPORT_SYMBOL_GPL vmlinux 0xf887bc7a crypto_grab_shash -EXPORT_SYMBOL_GPL vmlinux 0xf8946028 mmc_pwrseq_unregister -EXPORT_SYMBOL_GPL vmlinux 0xf89c7a79 ata_std_error_handler -EXPORT_SYMBOL_GPL vmlinux 0xf8a161fb extcon_get_state -EXPORT_SYMBOL_GPL vmlinux 0xf8a8e6ae of_icc_bulk_get -EXPORT_SYMBOL_GPL vmlinux 0xf8f3a0fb ata_ratelimit -EXPORT_SYMBOL_GPL vmlinux 0xf900c77d zynqmp_pm_clock_disable -EXPORT_SYMBOL_GPL vmlinux 0xf9089dd7 serial8250_update_uartclk -EXPORT_SYMBOL_GPL vmlinux 0xf9093f5b __tracepoint_cpu_frequency -EXPORT_SYMBOL_GPL vmlinux 0xf909e356 vchan_dma_desc_free_list -EXPORT_SYMBOL_GPL vmlinux 0xf91ac11e devm_rtc_nvmem_register -EXPORT_SYMBOL_GPL vmlinux 0xf922b8ec divider_round_rate_parent -EXPORT_SYMBOL_GPL vmlinux 0xf92e6b7b alloc_iova -EXPORT_SYMBOL_GPL vmlinux 0xf9343f3f sysfs_change_owner -EXPORT_SYMBOL_GPL vmlinux 0xf93fef0a dw_pcie_ep_init_complete -EXPORT_SYMBOL_GPL vmlinux 0xf94c1fb4 sysfs_remove_file_from_group -EXPORT_SYMBOL_GPL vmlinux 0xf94f0e6f __vfs_setxattr_locked -EXPORT_SYMBOL_GPL vmlinux 0xf95322f4 kthread_parkme -EXPORT_SYMBOL_GPL vmlinux 0xf955e9c5 bprintf -EXPORT_SYMBOL_GPL vmlinux 0xf959f813 usb_set_interface -EXPORT_SYMBOL_GPL vmlinux 0xf95a1491 fat_scan -EXPORT_SYMBOL_GPL vmlinux 0xf967422b HYPERVISOR_xen_version -EXPORT_SYMBOL_GPL vmlinux 0xf967d7fd dst_cache_get_ip4 -EXPORT_SYMBOL_GPL vmlinux 0xf96a1978 devm_namespace_disable -EXPORT_SYMBOL_GPL vmlinux 0xf96e5c70 phy_led_triggers_register -EXPORT_SYMBOL_GPL vmlinux 0xf972511f alloc_empty_file -EXPORT_SYMBOL_GPL vmlinux 0xf976449c devm_tegra_core_dev_init_opp_table -EXPORT_SYMBOL_GPL vmlinux 0xf994e666 ata_sff_postreset -EXPORT_SYMBOL_GPL vmlinux 0xf9a054b5 __round_jiffies -EXPORT_SYMBOL_GPL vmlinux 0xf9a3c5dc zynqmp_pm_load_pdi -EXPORT_SYMBOL_GPL vmlinux 0xf9a83f10 cpufreq_dbs_governor_exit -EXPORT_SYMBOL_GPL vmlinux 0xf9b34a0b iopf_queue_free -EXPORT_SYMBOL_GPL vmlinux 0xf9c2499f bpf_prog_put -EXPORT_SYMBOL_GPL vmlinux 0xf9d34a72 ahci_platform_disable_resources -EXPORT_SYMBOL_GPL vmlinux 0xf9dbc938 vring_new_virtqueue -EXPORT_SYMBOL_GPL vmlinux 0xf9dd2148 of_dma_simple_xlate -EXPORT_SYMBOL_GPL vmlinux 0xf9e667aa debugfs_create_file -EXPORT_SYMBOL_GPL vmlinux 0xf9ebe553 pci_bridge_emul_init -EXPORT_SYMBOL_GPL vmlinux 0xf9ee0a9c fscrypt_ioctl_remove_key -EXPORT_SYMBOL_GPL vmlinux 0xf9f52ab4 pinctrl_enable -EXPORT_SYMBOL_GPL vmlinux 0xfa02aa31 devm_qcom_smem_state_get -EXPORT_SYMBOL_GPL vmlinux 0xfa0ee3fc sched_trace_rq_cpu -EXPORT_SYMBOL_GPL vmlinux 0xfa1189b4 vring_transport_features -EXPORT_SYMBOL_GPL vmlinux 0xfa15cbde of_devfreq_cooling_register -EXPORT_SYMBOL_GPL vmlinux 0xfa1eb910 unregister_syscore_ops -EXPORT_SYMBOL_GPL vmlinux 0xfa268f4e cpufreq_driver_target -EXPORT_SYMBOL_GPL vmlinux 0xfa2b94da tty_ldisc_deref -EXPORT_SYMBOL_GPL vmlinux 0xfa349688 aer_recover_queue -EXPORT_SYMBOL_GPL vmlinux 0xfa3e90a2 mm_kobj -EXPORT_SYMBOL_GPL vmlinux 0xfa49f5a7 xas_load -EXPORT_SYMBOL_GPL vmlinux 0xfa51614a public_key_subtype -EXPORT_SYMBOL_GPL vmlinux 0xfa52903a tracing_cond_snapshot_data -EXPORT_SYMBOL_GPL vmlinux 0xfa63db07 device_add_properties -EXPORT_SYMBOL_GPL vmlinux 0xfa666974 queue_work_node -EXPORT_SYMBOL_GPL vmlinux 0xfa690589 netdev_cmd_to_name -EXPORT_SYMBOL_GPL vmlinux 0xfa914b2c devm_of_clk_add_hw_provider -EXPORT_SYMBOL_GPL vmlinux 0xfa964668 ahci_qc_issue -EXPORT_SYMBOL_GPL vmlinux 0xfa9cb2f2 regulator_desc_list_voltage_linear -EXPORT_SYMBOL_GPL vmlinux 0xfa9fe9c4 vp_modern_remove -EXPORT_SYMBOL_GPL vmlinux 0xfab30dc0 mdio_bus_exit -EXPORT_SYMBOL_GPL vmlinux 0xfab368b7 tps65912_regmap_config -EXPORT_SYMBOL_GPL vmlinux 0xfab53ed9 pinctrl_gpio_can_use_line -EXPORT_SYMBOL_GPL vmlinux 0xfab7fa79 filemap_range_needs_writeback -EXPORT_SYMBOL_GPL vmlinux 0xfabdfd61 __rio_local_write_config_32 -EXPORT_SYMBOL_GPL vmlinux 0xfac40f2f component_add_typed -EXPORT_SYMBOL_GPL vmlinux 0xfad05433 srcu_barrier -EXPORT_SYMBOL_GPL vmlinux 0xfad99c71 devlink_params_unregister -EXPORT_SYMBOL_GPL vmlinux 0xfad9c827 kill_dax -EXPORT_SYMBOL_GPL vmlinux 0xfaf0a6b4 devlink_unregister -EXPORT_SYMBOL_GPL vmlinux 0xfaf55695 tpm2_get_cc_attrs_tbl -EXPORT_SYMBOL_GPL vmlinux 0xfafc0d89 cpufreq_dbs_governor_limits -EXPORT_SYMBOL_GPL vmlinux 0xfb09d128 usb_autopm_put_interface_no_suspend -EXPORT_SYMBOL_GPL vmlinux 0xfb11a65d fscrypt_get_symlink -EXPORT_SYMBOL_GPL vmlinux 0xfb2f26e9 genphy_c45_read_status -EXPORT_SYMBOL_GPL vmlinux 0xfb32b30f ring_buffer_read_prepare_sync -EXPORT_SYMBOL_GPL vmlinux 0xfb3d1599 crypto_remove_spawns -EXPORT_SYMBOL_GPL vmlinux 0xfb4ecd00 device_release_driver -EXPORT_SYMBOL_GPL vmlinux 0xfb67ff8f clk_hw_get_parent_index -EXPORT_SYMBOL_GPL vmlinux 0xfb6ccdfb tpm_chip_alloc -EXPORT_SYMBOL_GPL vmlinux 0xfb6eedf9 power_group_name -EXPORT_SYMBOL_GPL vmlinux 0xfb939712 lwtunnel_cmp_encap -EXPORT_SYMBOL_GPL vmlinux 0xfbb370b5 kill_device -EXPORT_SYMBOL_GPL vmlinux 0xfbb56709 usb_deregister_dev -EXPORT_SYMBOL_GPL vmlinux 0xfbb8083b md_kick_rdev_from_array -EXPORT_SYMBOL_GPL vmlinux 0xfbbd41ca no_action -EXPORT_SYMBOL_GPL vmlinux 0xfbc3ff23 regmap_test_bits -EXPORT_SYMBOL_GPL vmlinux 0xfbdc5834 altr_sysmgr_regmap_lookup_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0xfbddd37b disk_update_readahead -EXPORT_SYMBOL_GPL vmlinux 0xfbeeb13c phy_gbit_all_ports_features -EXPORT_SYMBOL_GPL vmlinux 0xfbfbdcb5 dev_pm_opp_free_cpufreq_table -EXPORT_SYMBOL_GPL vmlinux 0xfbffd601 net_prio_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0xfc03d97a page_is_ram -EXPORT_SYMBOL_GPL vmlinux 0xfc03fb32 usb_anchor_urb -EXPORT_SYMBOL_GPL vmlinux 0xfc0fff96 led_trigger_set_default -EXPORT_SYMBOL_GPL vmlinux 0xfc14bb2e dm_get_dev_t -EXPORT_SYMBOL_GPL vmlinux 0xfc1769b3 blk_set_pm_only -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 0xfc37d396 iommu_aux_detach_device -EXPORT_SYMBOL_GPL vmlinux 0xfc3b4246 acpi_bus_update_power -EXPORT_SYMBOL_GPL vmlinux 0xfc4650ed pinconf_generic_dt_node_to_map -EXPORT_SYMBOL_GPL vmlinux 0xfc573b94 fwnode_get_name -EXPORT_SYMBOL_GPL vmlinux 0xfc59cf96 __root_device_register -EXPORT_SYMBOL_GPL vmlinux 0xfc734cbb bio_start_io_acct_time -EXPORT_SYMBOL_GPL vmlinux 0xfc77c76b pci_user_write_config_dword -EXPORT_SYMBOL_GPL vmlinux 0xfc9477b5 zynqmp_pm_set_pll_frac_data -EXPORT_SYMBOL_GPL vmlinux 0xfc963831 __traceiter_tcp_send_reset -EXPORT_SYMBOL_GPL vmlinux 0xfc96707e iommu_present -EXPORT_SYMBOL_GPL vmlinux 0xfc9e980a of_icc_get_by_index -EXPORT_SYMBOL_GPL vmlinux 0xfcaec8d5 xfrm_dev_resume -EXPORT_SYMBOL_GPL vmlinux 0xfcb1fbf0 tps6586x_irq_get_virq -EXPORT_SYMBOL_GPL vmlinux 0xfcbfec70 add_memory_driver_managed -EXPORT_SYMBOL_GPL vmlinux 0xfcc1edd3 memory_block_size_bytes -EXPORT_SYMBOL_GPL vmlinux 0xfcc86580 fwnode_get_named_child_node -EXPORT_SYMBOL_GPL vmlinux 0xfcda2f02 ima_file_check -EXPORT_SYMBOL_GPL vmlinux 0xfcf9ef73 hw_protection_shutdown -EXPORT_SYMBOL_GPL vmlinux 0xfd068326 register_kretprobes -EXPORT_SYMBOL_GPL vmlinux 0xfd0ddfa2 tegra_bpmp_transfer -EXPORT_SYMBOL_GPL vmlinux 0xfd195774 k3_udma_glue_disable_tx_chn -EXPORT_SYMBOL_GPL vmlinux 0xfd266ae1 iomap_bmap -EXPORT_SYMBOL_GPL vmlinux 0xfd3a2794 pm_generic_runtime_suspend -EXPORT_SYMBOL_GPL vmlinux 0xfd3dbc2a irqchip_fwnode_ops -EXPORT_SYMBOL_GPL vmlinux 0xfd3f9674 dst_cache_get -EXPORT_SYMBOL_GPL vmlinux 0xfd7243c7 erst_disable -EXPORT_SYMBOL_GPL vmlinux 0xfd72bc70 crypto_register_acomp -EXPORT_SYMBOL_GPL vmlinux 0xfd877f6b fscrypt_drop_inode -EXPORT_SYMBOL_GPL vmlinux 0xfd8952f2 param_set_uint_minmax -EXPORT_SYMBOL_GPL vmlinux 0xfdb2c942 tty_save_termios -EXPORT_SYMBOL_GPL vmlinux 0xfdbd7a17 crypto_get_attr_type -EXPORT_SYMBOL_GPL vmlinux 0xfdd5477b of_usb_host_tpl_support -EXPORT_SYMBOL_GPL vmlinux 0xfdd77235 power_supply_class -EXPORT_SYMBOL_GPL vmlinux 0xfde4560c trace_event_buffer_commit -EXPORT_SYMBOL_GPL vmlinux 0xfdefd971 device_driver_attach -EXPORT_SYMBOL_GPL vmlinux 0xfdf0ec44 blk_rq_err_bytes -EXPORT_SYMBOL_GPL vmlinux 0xfdfe05db __srcu_read_unlock -EXPORT_SYMBOL_GPL vmlinux 0xfe0b9092 thermal_add_hwmon_sysfs -EXPORT_SYMBOL_GPL vmlinux 0xfe0e7cd3 apei_exec_post_unmap_gars -EXPORT_SYMBOL_GPL vmlinux 0xfe16248a usb_hcd_end_port_resume -EXPORT_SYMBOL_GPL vmlinux 0xfe1a7a7b mpi_point_release -EXPORT_SYMBOL_GPL vmlinux 0xfe1da1d7 wm8400_reset_codec_reg_cache -EXPORT_SYMBOL_GPL vmlinux 0xfe1e7b1a platform_get_irq_optional -EXPORT_SYMBOL_GPL vmlinux 0xfe20cee0 edac_device_alloc_ctl_info -EXPORT_SYMBOL_GPL vmlinux 0xfe297471 skb_partial_csum_set -EXPORT_SYMBOL_GPL vmlinux 0xfe2d46a4 devm_hwrng_unregister -EXPORT_SYMBOL_GPL vmlinux 0xfe40002a fuse_do_ioctl -EXPORT_SYMBOL_GPL vmlinux 0xfe476039 ktime_get_resolution_ns -EXPORT_SYMBOL_GPL vmlinux 0xfe5e93f9 pm_wakeup_ws_event -EXPORT_SYMBOL_GPL vmlinux 0xfe64d9e3 powercap_register_control_type -EXPORT_SYMBOL_GPL vmlinux 0xfe77effc sdio_retune_crc_disable -EXPORT_SYMBOL_GPL vmlinux 0xfe8cdb84 ring_buffer_alloc_read_page -EXPORT_SYMBOL_GPL vmlinux 0xfe990052 gpio_free -EXPORT_SYMBOL_GPL vmlinux 0xfeb89468 espintcp_push_skb -EXPORT_SYMBOL_GPL vmlinux 0xfebf7583 power_supply_get_drvdata -EXPORT_SYMBOL_GPL vmlinux 0xfec13e7b devm_platform_ioremap_resource -EXPORT_SYMBOL_GPL vmlinux 0xfec3bf84 icst_clk_setup -EXPORT_SYMBOL_GPL vmlinux 0xfed11ed1 usb_mon_deregister -EXPORT_SYMBOL_GPL vmlinux 0xfed34fcf of_pci_find_child_device -EXPORT_SYMBOL_GPL vmlinux 0xfed8e559 page_cache_sync_ra -EXPORT_SYMBOL_GPL vmlinux 0xfede9222 __tracepoint_suspend_resume -EXPORT_SYMBOL_GPL vmlinux 0xfeeecd05 apei_read -EXPORT_SYMBOL_GPL vmlinux 0xfef386d9 ohci_hub_status_data -EXPORT_SYMBOL_GPL vmlinux 0xfefafd46 device_store_ulong -EXPORT_SYMBOL_GPL vmlinux 0xff05fa13 vring_interrupt -EXPORT_SYMBOL_GPL vmlinux 0xff09a762 sk_msg_trim -EXPORT_SYMBOL_GPL vmlinux 0xff13427f regmap_get_max_register -EXPORT_SYMBOL_GPL vmlinux 0xff1666f3 reset_control_bulk_assert -EXPORT_SYMBOL_GPL vmlinux 0xff211c34 cpufreq_generic_attr -EXPORT_SYMBOL_GPL vmlinux 0xff291ecf clk_unregister_divider -EXPORT_SYMBOL_GPL vmlinux 0xff365c21 tpm2_flush_context -EXPORT_SYMBOL_GPL vmlinux 0xff372808 gnttab_page_cache_init -EXPORT_SYMBOL_GPL vmlinux 0xff42c374 usb_role_switch_get_role -EXPORT_SYMBOL_GPL vmlinux 0xff4c9bed bpf_offload_dev_match -EXPORT_SYMBOL_GPL vmlinux 0xff6cb7c0 usb_get_descriptor -EXPORT_SYMBOL_GPL vmlinux 0xff73cb85 sbitmap_queue_init_node -EXPORT_SYMBOL_GPL vmlinux 0xff77bc7e device_create_managed_software_node -EXPORT_SYMBOL_GPL vmlinux 0xff7e33bf mpi_sub_ui -EXPORT_SYMBOL_GPL vmlinux 0xff7fd126 usb_scuttle_anchored_urbs -EXPORT_SYMBOL_GPL vmlinux 0xff81487d gpiod_remove_lookup_table -EXPORT_SYMBOL_GPL vmlinux 0xff938125 __rio_local_write_config_8 -EXPORT_SYMBOL_GPL vmlinux 0xff97ac43 devm_krealloc -EXPORT_SYMBOL_GPL vmlinux 0xff9e23d1 hugetlb_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0xffae8e8b nsecs_to_jiffies -EXPORT_SYMBOL_GPL vmlinux 0xffd011c3 trace_array_printk -EXPORT_SYMBOL_GPL vmlinux 0xffe0ceed dev_set_name -FIRMWARE_LOADER_PRIVATE EXPORT_SYMBOL_GPL 0xd3ae7756 fw_fallback_config vmlinux -IIO_ADISLIB EXPORT_SYMBOL 0x194746c6 adis_debugfs_reg_access drivers/iio/imu/adis_lib -IIO_ADISLIB EXPORT_SYMBOL 0xe1f1329f __adis_enable_irq drivers/iio/imu/adis_lib -IIO_ADISLIB EXPORT_SYMBOL_GPL 0x00476de8 __adis_read_reg drivers/iio/imu/adis_lib -IIO_ADISLIB EXPORT_SYMBOL_GPL 0x59895ef7 __adis_update_bits_base drivers/iio/imu/adis_lib -IIO_ADISLIB EXPORT_SYMBOL_GPL 0x70198de2 __adis_initial_startup drivers/iio/imu/adis_lib -IIO_ADISLIB EXPORT_SYMBOL_GPL 0x73bee84b __adis_write_reg drivers/iio/imu/adis_lib -IIO_ADISLIB EXPORT_SYMBOL_GPL 0x78b45714 adis_init drivers/iio/imu/adis_lib -IIO_ADISLIB EXPORT_SYMBOL_GPL 0xabfdcb9b __adis_check_status drivers/iio/imu/adis_lib -IIO_ADISLIB EXPORT_SYMBOL_GPL 0xd43dba57 devm_adis_probe_trigger drivers/iio/imu/adis_lib -IIO_ADISLIB EXPORT_SYMBOL_GPL 0xeacd570f devm_adis_setup_buffer_and_trigger drivers/iio/imu/adis_lib -IIO_ADISLIB EXPORT_SYMBOL_GPL 0xefae6933 adis_single_conversion drivers/iio/imu/adis_lib -IIO_ADISLIB EXPORT_SYMBOL_GPL 0xf1b87db1 adis_update_scan_mode drivers/iio/imu/adis_lib -IIO_ADIS_LIB EXPORT_SYMBOL_GPL 0x7d1078f5 __adis_reset drivers/iio/imu/adis_lib -IIO_HID EXPORT_SYMBOL 0x0aa8790d hid_sensor_write_samp_freq_value drivers/iio/common/hid-sensors/hid-sensor-iio-common -IIO_HID EXPORT_SYMBOL 0x195ed4df hid_sensor_remove_trigger drivers/iio/common/hid-sensors/hid-sensor-trigger -IIO_HID EXPORT_SYMBOL 0x27849909 hid_sensor_write_raw_hyst_value drivers/iio/common/hid-sensors/hid-sensor-iio-common -IIO_HID EXPORT_SYMBOL 0x27ad9ccd hid_sensor_parse_common_attributes drivers/iio/common/hid-sensors/hid-sensor-iio-common -IIO_HID EXPORT_SYMBOL 0x331635e3 hid_sensor_read_raw_hyst_value drivers/iio/common/hid-sensors/hid-sensor-iio-common -IIO_HID EXPORT_SYMBOL 0x4778886a hid_sensor_setup_trigger drivers/iio/common/hid-sensors/hid-sensor-trigger -IIO_HID EXPORT_SYMBOL 0x5d1b82db hid_sensor_write_raw_hyst_rel_value drivers/iio/common/hid-sensors/hid-sensor-iio-common -IIO_HID EXPORT_SYMBOL 0x7a705e0d 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 0x9bb3ecd9 hid_sensor_read_raw_hyst_rel_value drivers/iio/common/hid-sensors/hid-sensor-iio-common -IIO_HID EXPORT_SYMBOL 0xad9c7c9e hid_sensor_power_state drivers/iio/common/hid-sensors/hid-sensor-trigger -IIO_HID EXPORT_SYMBOL 0xb572aca4 hid_sensor_read_samp_freq_value drivers/iio/common/hid-sensors/hid-sensor-iio-common -IIO_HID EXPORT_SYMBOL 0xcb1d9786 hid_sensor_convert_timestamp drivers/iio/common/hid-sensors/hid-sensor-iio-common -IIO_HID_ATTRIBUTES EXPORT_SYMBOL 0x1bbe7558 hid_sensor_batch_mode_supported drivers/iio/common/hid-sensors/hid-sensor-iio-common -IIO_HID_ATTRIBUTES EXPORT_SYMBOL 0x3a685b19 hid_sensor_read_poll_value drivers/iio/common/hid-sensors/hid-sensor-iio-common -IIO_HID_ATTRIBUTES EXPORT_SYMBOL 0x67d734a6 hid_sensor_get_report_latency drivers/iio/common/hid-sensors/hid-sensor-iio-common -IIO_HID_ATTRIBUTES EXPORT_SYMBOL 0xd571518a hid_sensor_set_report_latency drivers/iio/common/hid-sensors/hid-sensor-iio-common -LTC2497 EXPORT_SYMBOL 0x2a2b6bab ltc2497core_probe drivers/iio/adc/ltc2497-core -LTC2497 EXPORT_SYMBOL 0xa9747e4d ltc2497core_remove drivers/iio/adc/ltc2497-core -MCB EXPORT_SYMBOL_GPL 0x14fe4fc0 mcb_alloc_bus drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0x336f487f mcb_free_dev drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0x3687583e mcb_bus_get drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0x3d7d91e6 chameleon_parse_cells drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0x44766cf9 mcb_get_resource drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0x49e9f2fa __mcb_register_driver drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0x570d6593 mcb_bus_put drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0x57c8e92a mcb_request_mem drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0x5d36219e mcb_unregister_driver drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0x78c9e523 mcb_bus_add_devices drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0x865b8d03 mcb_device_register drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0x99633606 mcb_release_bus drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0x9c713172 mcb_alloc_dev drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0xd6bd7959 mcb_get_irq drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0xeb2c8905 mcb_release_mem drivers/mcb/mcb -NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x6f08784a nvme_put_ns drivers/nvme/host/nvme-core -NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x9fe74221 nvme_find_get_ns drivers/nvme/host/nvme-core -NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0xa8b9e95c nvme_execute_passthru_rq drivers/nvme/host/nvme-core -NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0xb70557f1 nvme_ctrl_from_file drivers/nvme/host/nvme-core -NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0xc1dc9b0f nvme_command_effects drivers/nvme/host/nvme-core -PMBUS EXPORT_SYMBOL_GPL 0x016672e3 pmbus_get_debugfs_dir drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0x164b41af pmbus_set_update drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0x1c429fd8 pmbus_check_word_register drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0x2e49b0c4 pmbus_get_fan_rate_device drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0x2ef89fe6 pmbus_update_fan drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0x375caa12 pmbus_read_word_data drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0x47a49231 pmbus_check_byte_register drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0x4f254602 pmbus_do_probe drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0x57ea3b87 pmbus_clear_cache drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0x743de183 pmbus_get_driver_info drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0x75d0a2b5 pmbus_write_byte_data drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0x7ac7beea pmbus_write_word_data drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0x885f6ac2 pmbus_get_fan_rate_cached drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0x9942e713 pmbus_write_byte drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0x99bdf5c9 pmbus_read_byte_data drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0xa0ba719c pmbus_update_byte_data drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0xb68bd3df pmbus_clear_faults drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0xc20598f1 pmbus_set_page drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0xeac43612 pmbus_regulator_ops drivers/hwmon/pmbus/pmbus_core -SND_HDA_SCODEC_CS35L41 EXPORT_SYMBOL_GPL 0x33c58f6a cs35l41_hda_remove sound/pci/hda/snd-hda-scodec-cs35l41 -SND_HDA_SCODEC_CS35L41 EXPORT_SYMBOL_GPL 0xe9479c52 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 0x103129d0 sof_xtensa_arch_ops sound/soc/sof/xtensa/snd-sof-xtensa-dsp -SOUNDWIRE_INTEL_INIT EXPORT_SYMBOL 0x495f6390 sdw_intel_process_wakeen_event drivers/soundwire/soundwire-intel -SOUNDWIRE_INTEL_INIT EXPORT_SYMBOL 0x5af438eb sdw_intel_enable_irq drivers/soundwire/soundwire-intel -SOUNDWIRE_INTEL_INIT EXPORT_SYMBOL 0x64f7ae16 sdw_intel_probe drivers/soundwire/soundwire-intel -SOUNDWIRE_INTEL_INIT EXPORT_SYMBOL 0x6c545df5 sdw_intel_startup drivers/soundwire/soundwire-intel -SOUNDWIRE_INTEL_INIT EXPORT_SYMBOL 0xaa52eba1 sdw_intel_thread drivers/soundwire/soundwire-intel -SOUNDWIRE_INTEL_INIT EXPORT_SYMBOL 0xb95dd8fb sdw_intel_exit drivers/soundwire/soundwire-intel -USB_STORAGE EXPORT_SYMBOL_GPL 0x04a682b6 usb_stor_disconnect drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x0d936f13 usb_stor_CB_reset drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x1501f528 usb_stor_control_msg drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x15260501 usb_stor_resume drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x1bc3edc2 usb_stor_sense_invalidCDB drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x1d334890 usb_stor_bulk_transfer_sg drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x20277515 usb_stor_post_reset drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x282234e8 usb_stor_set_xfer_buf drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x2893713b usb_stor_probe2 drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x2b3e9179 usb_stor_adjust_quirks drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x2e96a2c3 usb_stor_CB_transport drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x42feb7a0 usb_stor_ctrl_transfer drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x4779ef0c usb_stor_suspend drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x54c21195 usb_stor_transparent_scsi_command drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x6058c85d usb_stor_Bulk_reset drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x74802982 usb_stor_probe1 drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x8e9b5c0b usb_stor_access_xfer_buf drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x9805cbc3 usb_stor_Bulk_transport drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0xb62e7bdb usb_stor_reset_resume drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0xd05d4053 usb_stor_host_template_init drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0xd3a3b2e2 usb_stor_clear_halt drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0xd9b5a71f usb_stor_bulk_transfer_buf drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0xde6cd035 usb_stor_pre_reset drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0xe6fa2edf usb_stor_bulk_srb drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0xf1d5a966 fill_inquiry_response drivers/usb/storage/usb-storage reverted: --- linux-nvidia-tegra-5.15.0/debian.realtime/abi/arm64/realtime.compiler +++ linux-nvidia-tegra-5.15.0.orig/debian.realtime/abi/arm64/realtime.compiler @@ -1 +0,0 @@ -GCC: (Ubuntu 11.4.0-1ubuntu1~22.04) 11.4.0 reverted: --- linux-nvidia-tegra-5.15.0/debian.realtime/abi/arm64/realtime.modules +++ linux-nvidia-tegra-5.15.0.orig/debian.realtime/abi/arm64/realtime.modules @@ -1,6882 +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 -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-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 -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 -irqbypass -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 -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-secure-pwrc -meson-vdec -meson_dw_hdmi -meson_gxbb_wdt -meson_nand -meson_saradc -meson_sm -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 -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 -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 -zynqmp-aes-gcm -zynqmp-dpsub -zynqmp-fpga -zynqmp_dma reverted: --- linux-nvidia-tegra-5.15.0/debian.realtime/abi/arm64/realtime.modules.builtin +++ linux-nvidia-tegra-5.15.0.orig/debian.realtime/abi/arm64/realtime.modules.builtin @@ -1,468 +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 -jbd2 -jitterentropy_rng -kgdboc -kpp -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-nvidia-tegra-5.15.0/debian.realtime/abi/arm64/realtime.retpoline +++ linux-nvidia-tegra-5.15.0.orig/debian.realtime/abi/arm64/realtime.retpoline @@ -1 +0,0 @@ -# RETPOLINE NOT ENABLED reverted: --- linux-nvidia-tegra-5.15.0/debian.realtime/abi/fwinfo +++ linux-nvidia-tegra-5.15.0.orig/debian.realtime/abi/fwinfo @@ -1,1954 +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: 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: idt82p33xxx.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/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_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: 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-nvidia-tegra-5.15.0/debian.realtime/abi/version +++ linux-nvidia-tegra-5.15.0.orig/debian.realtime/abi/version @@ -1 +0,0 @@ -5.15.0-1054.60 diff -u linux-nvidia-tegra-5.15.0/debian.realtime/changelog linux-nvidia-tegra-5.15.0/debian.realtime/changelog --- linux-nvidia-tegra-5.15.0/debian.realtime/changelog +++ linux-nvidia-tegra-5.15.0/debian.realtime/changelog @@ -1,3 +1,2074 @@ +linux-realtime (5.15.0-1061.69) jammy; urgency=medium + + * jammy/linux-realtime: 5.15.0-1061.69 -proposed tracker (LP: #2061497) + + [ Ubuntu: 5.15.0-105.115 ] + + * jammy/linux: 5.15.0-105.115 -proposed tracker (LP: #2061372) + * Jammy update: v5.15.149 upstream stable release (LP: #2059014) // CIFS + stopped working/is unstable with kernel update to 5.15.0-102.112 + (LP: #2060780) + - smb3: Replace smb2pdu 1-element arrays with flex-arrays + + -- Roxana Nicolescu Mon, 15 Apr 2024 20:48:04 +0200 + +linux-realtime (5.15.0-1059.67) jammy; urgency=medium + + * jammy/linux-realtime: 5.15.0-1059.67 -proposed tracker (LP: #2059663) + + * Packaging resync (LP: #1786013) + - [Packaging]: realtime: drop getabis data + + [ Ubuntu: 5.15.0-103.113 ] + + * jammy/linux: 5.15.0-103.113 -proposed tracker (LP: #2059683) + * Packaging resync (LP: #1786013) + - [Packaging] drop getabis data + * Remove getabis scripts (LP: #2059143) + - [Packaging] Remove getabis + * CVE-2023-24023 + - Bluetooth: Add more enc key size check + * CVE-2023-52600 + - jfs: fix uaf in jfs_evict_inode + * Jammy update: v5.15.149 upstream stable release (LP: #2059014) // + CVE-2023-52603 + - UBSAN: array-index-out-of-bounds in dtSplitRoot + * CVE-2024-26581 + - netfilter: nft_set_rbtree: skip end interval element from gc + + -- Kevin Becker Wed, 03 Apr 2024 08:47:57 -0400 + +linux-realtime (5.15.0-1058.66) jammy; urgency=medium + + * jammy/linux-realtime: 5.15.0-1058.66 -proposed tracker (LP: #2055612) + + * Packaging resync (LP: #1786013) + - [Packaging] drop ABI data + - debian.realtime/dkms-versions -- update from kernel-versions + (main/2024.03.04) + + * linux: please move erofs.ko (CONFIG_EROFS for EROFS support) from linux- + modules-extra to linux-modules (LP: #2054809) + - [Packaging]: realtime: Include erofs in linux-modules instead of linux- + modules-extra + + * linux: please move dmi-sysfs.ko (CONFIG_DMI_SYSFS for SMBIOS support) from + linux-modules-extra to linux-modules (LP: #2045561) + - [Packaging]: realtime: Move dmi-sysfs.ko into linux-modules + + [ 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() + + -- Kevin Becker Mon, 18 Mar 2024 10:34:54 -0400 + +linux-realtime (5.15.0-1057.64) jammy; urgency=medium + + * jammy/linux-realtime: 5.15.0-1057.64 -proposed tracker (LP: #2056006) + + [ Ubuntu: 5.15.0-101.111 ] + + * jammy/linux: 5.15.0-101.111 -proposed tracker (LP: #2056026) + * Packaging resync (LP: #1786013) + - [Packaging] update annotations scripts + - debian/dkms-versions -- update from kernel-versions (main/s2024.02.05) + * CVE-2024-24855 + - scsi: lpfc: Fix a possible data race in lpfc_unregister_fcf_rescan() + * CVE-2024-1086 + - netfilter: nf_tables: reject QUEUE/DROP verdict parameters + * CVE-2024-1085 + - netfilter: nf_tables: check if catch-all set element is active in next + generation + * CVE-2023-32247 + - ksmbd: destroy expired sessions + * CVE-2023-23000 + - phy: tegra: xusb: Fix return value of tegra_xusb_find_port_node function + + -- Kevin Becker Fri, 08 Mar 2024 16:55:44 -0500 + +linux-realtime (5.15.0-1056.63) jammy; urgency=medium + + * jammy/linux-realtime: 5.15.0-1056.63 -proposed tracker (LP: #2052069) + + [ 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 + + -- Kevin Becker Fri, 16 Feb 2024 17:04:51 -0500 + linux-realtime (5.15.0-1055.62) jammy; urgency=medium * jammy/linux-realtime: 5.15.0-1055.62 -proposed tracker (LP: #2052611) diff -u linux-nvidia-tegra-5.15.0/debian.realtime/control.d/realtime.inclusion-list linux-nvidia-tegra-5.15.0/debian.realtime/control.d/realtime.inclusion-list --- linux-nvidia-tegra-5.15.0/debian.realtime/control.d/realtime.inclusion-list +++ linux-nvidia-tegra-5.15.0/debian.realtime/control.d/realtime.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 @@ -231,6 +232,7 @@ fs/dlm/dlm.ko fs/ecryptfs/* fs/efivarfs/* +fs/erofs/* fs/exofs/libore.ko fs/ext4/* fs/fat/* reverted: --- linux-nvidia-tegra-5.15.0/debian.realtime/etc/getabis +++ linux-nvidia-tegra-5.15.0.orig/debian.realtime/etc/getabis @@ -1,26 +0,0 @@ -getabis_ppa="${HOME}/.getabis.jammy-realtime" -getabis_source="$(dpkg-parsechangelog -l$DEBIAN/changelog -SSource)" - -if ! [ -e "${getabis_ppa}" ] ; then - cat <&2 -Error: No private PPA URL(s) found, unable to fetch ABI information. - -This kernel is built and delivered using private PPA(s). You need to add the -PPA repo URL(s) (including the username and password) to the file -${getabis_ppa}. - -One URL per line, like: - -https://:@private-ppa.launchpad.net///ubuntu - -EOF - exit 1 -fi - -readarray -t repo_list < <(sed "s,\s*$,/pool/main/l/${getabis_source}," \ - "${getabis_ppa}") - -package_prefixes linux-buildinfo - -getall amd64 realtime -getall arm64 realtime diff -u linux-nvidia-tegra-5.15.0/debian.realtime/reconstruct linux-nvidia-tegra-5.15.0/debian.realtime/reconstruct --- linux-nvidia-tegra-5.15.0/debian.realtime/reconstruct +++ linux-nvidia-tegra-5.15.0/debian.realtime/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' @@ -19,7 +18,6 @@ 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 +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' @@ -52,8 +48,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 +93,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-nvidia-tegra-5.15.0/debian.realtime/tracking-bug linux-nvidia-tegra-5.15.0/debian.realtime/tracking-bug --- linux-nvidia-tegra-5.15.0/debian.realtime/tracking-bug +++ linux-nvidia-tegra-5.15.0/debian.realtime/tracking-bug @@ -1 +1 @@ -2052611 s2024.01.08-2 +2061497 s2024.03.04-2 diff -u linux-nvidia-tegra-5.15.0/debian/changelog linux-nvidia-tegra-5.15.0/debian/changelog --- linux-nvidia-tegra-5.15.0/debian/changelog +++ linux-nvidia-tegra-5.15.0/debian/changelog @@ -1,3 +1,2139 @@ +linux-nvidia-tegra (5.15.0-1025.25) jammy; urgency=medium + + * jammy/linux-nvidia-tegra: 5.15.0-1025.25 -proposed tracker (LP: #2063258) + + * apply NVIDIA patches April 6-16, 2024 (LP: #2061900) + - NVIDIA: SAUCE: phy: xusb: Disable USB2 tracking for T234 + - NVIDIA: SAUCE: enable handling of macronix block protection + - PCI: dwc: Restore MSI Receiver mask during resume + + * apply NVIDIA patches Mar 22 - April 5, 2024 (LP: #2060337) + - NVIDIA: SAUCE: arm64: configs: enable hidraw + - NVIDIA: SAUCE: PCI: tegra194: Fix probe path for Endpoint mode + - NVIDIA: SAUCE: arm64: defconfig: Enable DMATEST + - NVIDIA: SAUCE: arm64: configs: Enable CONFIG_CRYPTO_USER_API_* as module + - NVIDIA: SAUCE: soc/tegra: fuse: Update Tegra234 nvmem keepout list + - NVIDIA: SAUCE: soc/tegra: fuse: Remove security_mode fuse from keepout list + - [Config] Enable DMATEST + + -- Jacob Martin Tue, 23 Apr 2024 15:45:58 -0500 + +linux-nvidia-tegra (5.15.0-1024.24) jammy; urgency=medium + + * jammy/linux-nvidia-tegra: 5.15.0-1024.24 -proposed tracker (LP: #2061683) + + * Packaging resync (LP: #1786013) + - [Packaging] drop getabis data + + [ Ubuntu: 5.15.0-1061.69 ] + + * jammy/linux-realtime: 5.15.0-1061.69 -proposed tracker (LP: #2061497) + * jammy/linux: 5.15.0-105.115 -proposed tracker (LP: #2061372) + * Jammy update: v5.15.149 upstream stable release (LP: #2059014) // CIFS + stopped working/is unstable with kernel update to 5.15.0-102.112 + (LP: #2060780) + - smb3: Replace smb2pdu 1-element arrays with flex-arrays + + [ Ubuntu: 5.15.0-1059.67 ] + + * jammy/linux-realtime: 5.15.0-1059.67 -proposed tracker (LP: #2059663) + * Packaging resync (LP: #1786013) + - [Packaging]: realtime: drop getabis data + * jammy/linux: 5.15.0-103.113 -proposed tracker (LP: #2059683) + * Packaging resync (LP: #1786013) + - [Packaging] drop getabis data + * Remove getabis scripts (LP: #2059143) + - [Packaging] Remove getabis + * CVE-2023-24023 + - Bluetooth: Add more enc key size check + * CVE-2023-52600 + - jfs: fix uaf in jfs_evict_inode + * Jammy update: v5.15.149 upstream stable release (LP: #2059014) // + CVE-2023-52603 + - UBSAN: array-index-out-of-bounds in dtSplitRoot + * CVE-2024-26581 + - netfilter: nft_set_rbtree: skip end interval element from gc + + -- Jacob Martin Mon, 15 Apr 2024 15:35:14 -0500 + +linux-nvidia-tegra (5.15.0-1023.23) jammy; urgency=medium + + * jammy/linux-nvidia-tegra: 5.15.0-1023.23 -proposed tracker (LP: #2059811) + + * Packaging resync (LP: #1786013) + - [Packaging] drop ABI data + - [Packaging] debian.nvidia-tegra/dkms-versions -- update from kernel-versions + (main/2024.03.04) + + * linux: please move erofs.ko (CONFIG_EROFS for EROFS support) from linux- + modules-extra to linux-modules (LP: #2054809) + - [Packaging]: nvidia-tegra: Include erofs in linux-modules instead of linux- + modules-extra + + * linux: please move dmi-sysfs.ko (CONFIG_DMI_SYSFS for SMBIOS support) from + linux-modules-extra to linux-modules (LP: #2045561) + - [Packaging]: nvidia-tegra: Move dmi-sysfs.ko into linux-modules + + * apply nvidia-tegra patches 2024 Mar 9-20 (LP: #2058550) + - drm: Call drm_atomic_helper_shutdown() at shutdown time for misc drivers + - NVIDIA: SAUCE: drm: Call drm_dev_unregister() at shutdown for AST + - NVIDIA: SAUCE: arch: arm64: Update CONFIG_LSM in defconfig + - NVIDIA: SAUCE: pinctrl: tegra: Add config property GPIO mode + + * apply nvidia-tegra patches 2024 Mar 8 (LP: #2056594) + - NVIDIA: SAUCE: phy: tegra194-p2u: Fix device-tree backward compatibility + + * apply nvidia-tegra patches 2024 Mar 1-7 (LP: #2056486) + - docs: tegra194-hte.rst: don't include gpiolib.c twice + - tegra194-hte.rst: fix reference to its binding + - gpiolib: cdev: fix null pointer dereference in linereq_free() + - gpiolib: cdev: simplify linereq_free + - gpiolib: cdev: simplify parameter in call to hte_edge_setup + - gpiolib: cdev: replace if-else chains with switches + - gpiolib: cdev: simplify line event identification + - gpiolib: cdev: consolidate edge detector configuration flags + - gpiolib: cdev: compile out HTE unless CONFIG_HTE selected + - gpiolib: cdev: Fix typo in kernel doc for struct line + - MAINTAINERS: Add HTE/timestamp subsystem details + - dt-bindings: timestamp: Add Tegra234 support + - dt-bindings: timestamp: Deprecate nvidia,slices property + - arm64: tegra: Add Tegra234 GTE nodes + - hte: Re-phrase tegra API document + - hte: Add Tegra234 provider + - hte: Deprecate nvidia,slices property + - hte: handle nvidia,gpio-controller property + - gpio: tegra186: Add Tegra234 hte support + - hte: tegra: fix 'struct of_device_id' build error + - hte: tegra-194: Fix off by one in tegra_hte_map_to_line_id() + - hte: Use device_match_of_node() + - hte: tegra-194: Use proper includes + - NVIDIA: SAUCE: hte: modify gpio controller match function + - NVIDIA: SAUCE: WAR: tee: optee: Fix race condition + - kbuild: Modify default INSTALL_MOD_DIR from extra to updates + + * apply nvidia-tegra patches 2024 Feb 6-29 (LP: #2055468) + - NVIDIA: SAUCE: mmc: host: program SPARE0 register field even if supplies are + not populated + - NVIDIA: SAUCE: arm64: configs: enable joystick driver + - NVIDIA: SAUCE: arm64: configs: Enable aQuantia driver in rel-36. + - NVIDIA: SAUCE: spi: Remove compatible string for T234 + - NVIDIA: SAUCE: arm64: configs: enable Android configs + + [ Ubuntu: 5.15.0-1058.66 ] + + * jammy/linux-realtime: 5.15.0-1058.66 -proposed tracker (LP: #2055612) + * Packaging resync (LP: #1786013) + - [Packaging] drop ABI data + - debian.realtime/dkms-versions -- update from kernel-versions + (main/2024.03.04) + * linux: please move erofs.ko (CONFIG_EROFS for EROFS support) from linux- + modules-extra to linux-modules (LP: #2054809) + - [Packaging]: realtime: Include erofs in linux-modules instead of linux- + modules-extra + * linux: please move dmi-sysfs.ko (CONFIG_DMI_SYSFS for SMBIOS support) from + linux-modules-extra to linux-modules (LP: #2045561) + - [Packaging]: realtime: Move dmi-sysfs.ko into linux-modules + * 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-1057.64 ] + + * jammy/linux-realtime: 5.15.0-1057.64 -proposed tracker (LP: #2056006) + * jammy/linux: 5.15.0-101.111 -proposed tracker (LP: #2056026) + * Packaging resync (LP: #1786013) + - [Packaging] update annotations scripts + - debian/dkms-versions -- update from kernel-versions (main/s2024.02.05) + * CVE-2024-24855 + - scsi: lpfc: Fix a possible data race in lpfc_unregister_fcf_rescan() + * CVE-2024-1086 + - netfilter: nf_tables: reject QUEUE/DROP verdict parameters + * CVE-2024-1085 + - netfilter: nf_tables: check if catch-all set element is active in next + generation + * CVE-2023-32247 + - ksmbd: destroy expired sessions + * CVE-2023-23000 + - phy: tegra: xusb: Fix return value of tegra_xusb_find_port_node function + + [ Ubuntu: 5.15.0-1056.63 ] + + * jammy/linux-realtime: 5.15.0-1056.63 -proposed tracker (LP: #2052069) + * 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 + + -- Jacob Martin Fri, 29 Mar 2024 15:57:13 -0500 + linux-nvidia-tegra (5.15.0-1022.22) jammy; urgency=medium * jammy/linux-nvidia-tegra: 5.15.0-1022.22 -proposed tracker (LP: #2053284) diff -u linux-nvidia-tegra-5.15.0/debian/control linux-nvidia-tegra-5.15.0/debian/control --- linux-nvidia-tegra-5.15.0/debian/control +++ linux-nvidia-tegra-5.15.0/debian/control @@ -62,7 +62,7 @@ XS-Testsuite: autopkgtest #XS-Testsuite-Depends: gcc-4.7 binutils -Package: linux-nvidia-tegra-headers-5.15.0-1022 +Package: linux-nvidia-tegra-headers-5.15.0-1025 Build-Profiles: Architecture: all Multi-Arch: foreign @@ -72,7 +72,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-nvidia-tegra-headers-5.15.0-1022/debian.README.gz for details + /usr/share/doc/linux-nvidia-tegra-headers-5.15.0-1025/debian.README.gz for details Package: linux-nvidia-tegra-tools-common Build-Profiles: @@ -86,18 +86,18 @@ version locked tools (such as perf and x86_energy_perf_policy) for version 5.15.0. -Package: linux-nvidia-tegra-tools-5.15.0-1022 +Package: linux-nvidia-tegra-tools-5.15.0-1025 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-1022 +Description: Linux kernel version specific tools for version 5.15.0-1025 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-1022 on + version 5.15.0-1025 on . - You probably want to install linux-tools-5.15.0-1022-. + You probably want to install linux-tools-5.15.0-1025-. Package: linux-nvidia-tegra-cloud-tools-common Build-Profiles: @@ -110,17 +110,17 @@ This package provides the architecture independent parts for kernel version locked tools for cloud tools for version 5.15.0. -Package: linux-nvidia-tegra-cloud-tools-5.15.0-1022 +Package: linux-nvidia-tegra-cloud-tools-5.15.0-1025 Build-Profiles: Architecture: arm64 Section: devel Priority: optional Depends: ${misc:Depends}, ${shlibs:Depends}, linux-cloud-tools-common -Description: Linux kernel version specific cloud tools for version 5.15.0-1022 +Description: Linux kernel version specific cloud tools for version 5.15.0-1025 This package provides the architecture dependant parts for kernel - version locked tools for cloud tools for version 5.15.0-1022 on + version locked tools for cloud tools for version 5.15.0-1025 on . - You probably want to install linux-cloud-tools-5.15.0-1022-. + You probably want to install linux-cloud-tools-5.15.0-1025-. Package: linux-nvidia-tegra-tools-host Build-Profiles: @@ -134,17 +134,17 @@ -Package: linux-image-5.15.0-1022-nvidia-tegra +Package: linux-image-5.15.0-1025-nvidia-tegra Build-Profiles: Architecture: arm64 Section: kernel Priority: optional Provides: linux-image, fuse-module, kvm-api-4, redhat-cluster-modules, ivtv-modules, ${linux:rprovides} -Depends: ${misc:Depends}, ${shlibs:Depends}, kmod, linux-base (>= 4.5ubuntu1~16.04.1), linux-modules-5.15.0-1022-nvidia-tegra +Depends: ${misc:Depends}, ${shlibs:Depends}, kmod, linux-base (>= 4.5ubuntu1~16.04.1), linux-modules-5.15.0-1025-nvidia-tegra Recommends: flash-kernel [arm64] | grub-efi-arm64 [arm64], initramfs-tools | linux-initramfs-tool Breaks: flash-kernel (<< 3.90ubuntu2) [arm64 armhf], s390-tools (<< 2.3.0-0ubuntu3) [s390x] -Conflicts: linux-image-unsigned-5.15.0-1022-nvidia-tegra -Suggests: fdutils, linux-doc | linux-nvidia-tegra-source-5.15.0, linux-nvidia-tegra-tools, linux-headers-5.15.0-1022-nvidia-tegra, linux-modules-extra-5.15.0-1022-nvidia-tegra +Conflicts: linux-image-unsigned-5.15.0-1025-nvidia-tegra +Suggests: fdutils, linux-doc | linux-nvidia-tegra-source-5.15.0, linux-nvidia-tegra-tools, linux-headers-5.15.0-1025-nvidia-tegra, linux-modules-extra-5.15.0-1025-nvidia-tegra 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. @@ -157,12 +157,12 @@ the linux-nvidia-tegra meta-package, which will ensure that upgrades work correctly, and that supporting packages are also installed. -Package: linux-modules-5.15.0-1022-nvidia-tegra +Package: linux-modules-5.15.0-1025-nvidia-tegra Build-Profiles: Architecture: arm64 Section: kernel Priority: optional -Depends: ${misc:Depends}, ${shlibs:Depends}, linux-image-5.15.0-1022-nvidia-tegra | linux-image-unsigned-5.15.0-1022-nvidia-tegra +Depends: ${misc:Depends}, ${shlibs:Depends}, linux-image-5.15.0-1025-nvidia-tegra | linux-image-unsigned-5.15.0-1025-nvidia-tegra 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 @@ -177,12 +177,12 @@ the linux-nvidia-tegra meta-package, which will ensure that upgrades work correctly, and that supporting packages are also installed. -Package: linux-modules-extra-5.15.0-1022-nvidia-tegra +Package: linux-modules-extra-5.15.0-1025-nvidia-tegra Build-Profiles: Architecture: arm64 Section: kernel Priority: optional -Depends: ${misc:Depends}, ${shlibs:Depends}, linux-image-5.15.0-1022-nvidia-tegra | linux-image-unsigned-5.15.0-1022-nvidia-tegra, wireless-regdb +Depends: ${misc:Depends}, ${shlibs:Depends}, linux-image-5.15.0-1025-nvidia-tegra | linux-image-unsigned-5.15.0-1025-nvidia-tegra, wireless-regdb 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. @@ -199,21 +199,21 @@ the linux-nvidia-tegra meta-package, which will ensure that upgrades work correctly, and that supporting packages are also installed. -Package: linux-headers-5.15.0-1022-nvidia-tegra +Package: linux-headers-5.15.0-1025-nvidia-tegra Build-Profiles: Architecture: arm64 Section: devel Priority: optional -Depends: ${misc:Depends}, linux-nvidia-tegra-headers-5.15.0-1022, ${shlibs:Depends} +Depends: ${misc:Depends}, linux-nvidia-tegra-headers-5.15.0-1025, ${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-1022/debian.README.gz for details. + /usr/share/doc/linux-headers-5.15.0-1025/debian.README.gz for details. -Package: linux-image-5.15.0-1022-nvidia-tegra-dbgsym +Package: linux-image-5.15.0-1025-nvidia-tegra-dbgsym Build-Profiles: Architecture: arm64 Section: devel @@ -230,30 +230,30 @@ is uncompressed, and unstripped. This package also includes the unstripped modules. -Package: linux-tools-5.15.0-1022-nvidia-tegra +Package: linux-tools-5.15.0-1025-nvidia-tegra Build-Profiles: Architecture: arm64 Section: devel Priority: optional -Depends: ${misc:Depends}, linux-nvidia-tegra-tools-5.15.0-1022 -Description: Linux kernel version specific tools for version 5.15.0-1022 +Depends: ${misc:Depends}, linux-nvidia-tegra-tools-5.15.0-1025 +Description: Linux kernel version specific tools for version 5.15.0-1025 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-1022 on + version 5.15.0-1025 on . -Package: linux-cloud-tools-5.15.0-1022-nvidia-tegra +Package: linux-cloud-tools-5.15.0-1025-nvidia-tegra Build-Profiles: Architecture: arm64 Section: devel Priority: optional -Depends: ${misc:Depends}, linux-nvidia-tegra-cloud-tools-5.15.0-1022 -Description: Linux kernel version specific cloud tools for version 5.15.0-1022 +Depends: ${misc:Depends}, linux-nvidia-tegra-cloud-tools-5.15.0-1025 +Description: Linux kernel version specific cloud tools for version 5.15.0-1025 This package provides the architecture dependant parts for kernel - version locked tools for cloud for version 5.15.0-1022 on + version locked tools for cloud for version 5.15.0-1025 on . -Package: linux-buildinfo-5.15.0-1022-nvidia-tegra +Package: linux-buildinfo-5.15.0-1025-nvidia-tegra Build-Profiles: Architecture: arm64 Section: kernel @@ -267,18 +267,18 @@ You likely do not want to install this package. -Package: linux-modules-iwlwifi-5.15.0-1022-nvidia-tegra +Package: linux-modules-iwlwifi-5.15.0-1025-nvidia-tegra Build-Profiles: Architecture: arm64 Section: kernel Priority: optional Depends: ${misc:Depends}, - linux-image-5.15.0-1022-nvidia-tegra | linux-image-unsigned-5.15.0-1022-nvidia-tegra, + linux-image-5.15.0-1025-nvidia-tegra | linux-image-unsigned-5.15.0-1025-nvidia-tegra, Built-Using: ${linux:BuiltUsing} -Description: Linux kernel iwlwifi modules for version 5.15.0-1022 +Description: Linux kernel iwlwifi modules for version 5.15.0-1025 This package provides the Linux kernel iwlwifi modules for version - 5.15.0-1022. + 5.15.0-1025. . You likely do not want to install this package directly. Instead, install the one of the linux-modules-iwlwifi-nvidia-tegra* meta-packages, @@ -286,17 +286,17 @@ also installed. -Package: linux-image-5.15.0-1022-nvidia-tegra-rt +Package: linux-image-5.15.0-1025-nvidia-tegra-rt Build-Profiles: Architecture: arm64 Section: kernel Priority: optional Provides: linux-image, fuse-module, kvm-api-4, redhat-cluster-modules, ivtv-modules, ${linux:rprovides} -Depends: ${misc:Depends}, ${shlibs:Depends}, kmod, linux-base (>= 4.5ubuntu1~16.04.1), linux-modules-5.15.0-1022-nvidia-tegra-rt +Depends: ${misc:Depends}, ${shlibs:Depends}, kmod, linux-base (>= 4.5ubuntu1~16.04.1), linux-modules-5.15.0-1025-nvidia-tegra-rt Recommends: flash-kernel [arm64] | grub-efi-arm64 [arm64], initramfs-tools | linux-initramfs-tool Breaks: flash-kernel (<< 3.90ubuntu2) [arm64 armhf], s390-tools (<< 2.3.0-0ubuntu3) [s390x] -Conflicts: linux-image-unsigned-5.15.0-1022-nvidia-tegra-rt -Suggests: fdutils, linux-doc | linux-nvidia-tegra-source-5.15.0, linux-nvidia-tegra-tools, linux-headers-5.15.0-1022-nvidia-tegra-rt, linux-modules-extra-5.15.0-1022-nvidia-tegra-rt +Conflicts: linux-image-unsigned-5.15.0-1025-nvidia-tegra-rt +Suggests: fdutils, linux-doc | linux-nvidia-tegra-source-5.15.0, linux-nvidia-tegra-tools, linux-headers-5.15.0-1025-nvidia-tegra-rt, linux-modules-extra-5.15.0-1025-nvidia-tegra-rt 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. @@ -309,12 +309,12 @@ the linux-nvidia-tegra-rt meta-package, which will ensure that upgrades work correctly, and that supporting packages are also installed. -Package: linux-modules-5.15.0-1022-nvidia-tegra-rt +Package: linux-modules-5.15.0-1025-nvidia-tegra-rt Build-Profiles: Architecture: arm64 Section: kernel Priority: optional -Depends: ${misc:Depends}, ${shlibs:Depends}, linux-image-5.15.0-1022-nvidia-tegra-rt | linux-image-unsigned-5.15.0-1022-nvidia-tegra-rt +Depends: ${misc:Depends}, ${shlibs:Depends}, linux-image-5.15.0-1025-nvidia-tegra-rt | linux-image-unsigned-5.15.0-1025-nvidia-tegra-rt 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 @@ -329,12 +329,12 @@ the linux-nvidia-tegra-rt meta-package, which will ensure that upgrades work correctly, and that supporting packages are also installed. -Package: linux-modules-extra-5.15.0-1022-nvidia-tegra-rt +Package: linux-modules-extra-5.15.0-1025-nvidia-tegra-rt Build-Profiles: Architecture: arm64 Section: kernel Priority: optional -Depends: ${misc:Depends}, ${shlibs:Depends}, linux-image-5.15.0-1022-nvidia-tegra-rt | linux-image-unsigned-5.15.0-1022-nvidia-tegra-rt, wireless-regdb +Depends: ${misc:Depends}, ${shlibs:Depends}, linux-image-5.15.0-1025-nvidia-tegra-rt | linux-image-unsigned-5.15.0-1025-nvidia-tegra-rt, wireless-regdb 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. @@ -351,21 +351,21 @@ the linux-nvidia-tegra-rt meta-package, which will ensure that upgrades work correctly, and that supporting packages are also installed. -Package: linux-headers-5.15.0-1022-nvidia-tegra-rt +Package: linux-headers-5.15.0-1025-nvidia-tegra-rt Build-Profiles: Architecture: arm64 Section: devel Priority: optional -Depends: ${misc:Depends}, linux-nvidia-tegra-headers-5.15.0-1022, ${shlibs:Depends} +Depends: ${misc:Depends}, linux-nvidia-tegra-headers-5.15.0-1025, ${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-1022/debian.README.gz for details. + /usr/share/doc/linux-headers-5.15.0-1025/debian.README.gz for details. -Package: linux-image-5.15.0-1022-nvidia-tegra-rt-dbgsym +Package: linux-image-5.15.0-1025-nvidia-tegra-rt-dbgsym Build-Profiles: Architecture: arm64 Section: devel @@ -382,30 +382,30 @@ is uncompressed, and unstripped. This package also includes the unstripped modules. -Package: linux-tools-5.15.0-1022-nvidia-tegra-rt +Package: linux-tools-5.15.0-1025-nvidia-tegra-rt Build-Profiles: Architecture: arm64 Section: devel Priority: optional -Depends: ${misc:Depends}, linux-nvidia-tegra-tools-5.15.0-1022 -Description: Linux kernel version specific tools for version 5.15.0-1022 +Depends: ${misc:Depends}, linux-nvidia-tegra-tools-5.15.0-1025 +Description: Linux kernel version specific tools for version 5.15.0-1025 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-1022 on + version 5.15.0-1025 on . -Package: linux-cloud-tools-5.15.0-1022-nvidia-tegra-rt +Package: linux-cloud-tools-5.15.0-1025-nvidia-tegra-rt Build-Profiles: Architecture: arm64 Section: devel Priority: optional -Depends: ${misc:Depends}, linux-nvidia-tegra-cloud-tools-5.15.0-1022 -Description: Linux kernel version specific cloud tools for version 5.15.0-1022 +Depends: ${misc:Depends}, linux-nvidia-tegra-cloud-tools-5.15.0-1025 +Description: Linux kernel version specific cloud tools for version 5.15.0-1025 This package provides the architecture dependant parts for kernel - version locked tools for cloud for version 5.15.0-1022 on + version locked tools for cloud for version 5.15.0-1025 on . -Package: linux-buildinfo-5.15.0-1022-nvidia-tegra-rt +Package: linux-buildinfo-5.15.0-1025-nvidia-tegra-rt Build-Profiles: Architecture: arm64 Section: kernel @@ -419,18 +419,18 @@ You likely do not want to install this package. -Package: linux-modules-iwlwifi-5.15.0-1022-nvidia-tegra-rt +Package: linux-modules-iwlwifi-5.15.0-1025-nvidia-tegra-rt Build-Profiles: Architecture: arm64 Section: kernel Priority: optional Depends: ${misc:Depends}, - linux-image-5.15.0-1022-nvidia-tegra-rt | linux-image-unsigned-5.15.0-1022-nvidia-tegra-rt, + linux-image-5.15.0-1025-nvidia-tegra-rt | linux-image-unsigned-5.15.0-1025-nvidia-tegra-rt, Built-Using: ${linux:BuiltUsing} -Description: Linux kernel iwlwifi modules for version 5.15.0-1022 +Description: Linux kernel iwlwifi modules for version 5.15.0-1025 This package provides the Linux kernel iwlwifi modules for version - 5.15.0-1022. + 5.15.0-1025. . You likely do not want to install this package directly. Instead, install the one of the linux-modules-iwlwifi-nvidia-tegra-rt* meta-packages, reverted: --- linux-nvidia-tegra-5.15.0/debian/dkms-versions +++ linux-nvidia-tegra-5.15.0.orig/debian/dkms-versions @@ -1,3 +0,0 @@ -zfs-linux 2.1.5-1ubuntu6~22.04.2 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 diff -u linux-nvidia-tegra-5.15.0/debian/rules linux-nvidia-tegra-5.15.0/debian/rules --- linux-nvidia-tegra-5.15.0/debian/rules +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/debian/rules.d/0-common-vars.mk linux-nvidia-tegra-5.15.0/debian/rules.d/0-common-vars.mk --- linux-nvidia-tegra-5.15.0/debian/rules.d/0-common-vars.mk +++ linux-nvidia-tegra-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 @@ -292,7 +291,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-nvidia-tegra-5.15.0/debian/rules.d/3-binary-indep.mk linux-nvidia-tegra-5.15.0/debian/rules.d/3-binary-indep.mk --- linux-nvidia-tegra-5.15.0/debian/rules.d/3-binary-indep.mk +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/debian/rules.d/4-checks.mk linux-nvidia-tegra-5.15.0/debian/rules.d/4-checks.mk --- linux-nvidia-tegra-5.15.0/debian/rules.d/4-checks.mk +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/debian/scripts/abi-check +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/debian/scripts/control-create linux-nvidia-tegra-5.15.0/debian/scripts/control-create --- linux-nvidia-tegra-5.15.0/debian/scripts/control-create +++ linux-nvidia-tegra-5.15.0/debian/scripts/control-create @@ -67 +67 @@ -done <"debian/dkms-versions" +done <"${DEBIAN}/dkms-versions" diff -u linux-nvidia-tegra-5.15.0/debian/scripts/misc/final-checks linux-nvidia-tegra-5.15.0/debian/scripts/misc/final-checks --- linux-nvidia-tegra-5.15.0/debian/scripts/misc/final-checks +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/debian/scripts/misc/getabis +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/debian/scripts/misc/kconfig/annotations.py linux-nvidia-tegra-5.15.0/debian/scripts/misc/kconfig/annotations.py --- linux-nvidia-tegra-5.15.0/debian/scripts/misc/kconfig/annotations.py +++ linux-nvidia-tegra-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 @@ -227,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-nvidia-tegra-5.15.0/debian/scripts/misc/kconfig/run.py linux-nvidia-tegra-5.15.0/debian/scripts/misc/kconfig/run.py --- linux-nvidia-tegra-5.15.0/debian/scripts/misc/kconfig/run.py +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/debian/scripts/module-check +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/debian/scripts/retpoline-check +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/acpi/acpi_extlog.c linux-nvidia-tegra-5.15.0/drivers/acpi/acpi_extlog.c --- linux-nvidia-tegra-5.15.0/drivers/acpi/acpi_extlog.c +++ linux-nvidia-tegra-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; diff -u linux-nvidia-tegra-5.15.0/drivers/acpi/acpi_fpdt.c linux-nvidia-tegra-5.15.0/drivers/acpi/acpi_fpdt.c --- linux-nvidia-tegra-5.15.0/drivers/acpi/acpi_fpdt.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/acpi/acpi_lpss.c linux-nvidia-tegra-5.15.0/drivers/acpi/acpi_lpss.c --- linux-nvidia-tegra-5.15.0/drivers/acpi/acpi_lpss.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/acpi/acpi_video.c linux-nvidia-tegra-5.15.0/drivers/acpi/acpi_video.c --- linux-nvidia-tegra-5.15.0/drivers/acpi/acpi_video.c +++ linux-nvidia-tegra-5.15.0/drivers/acpi/acpi_video.c @@ -1793,12 +1793,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-nvidia-tegra-5.15.0/drivers/acpi/resource.c linux-nvidia-tegra-5.15.0/drivers/acpi/resource.c --- linux-nvidia-tegra-5.15.0/drivers/acpi/resource.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/android/binder.c linux-nvidia-tegra-5.15.0/drivers/android/binder.c --- linux-nvidia-tegra-5.15.0/drivers/android/binder.c +++ linux-nvidia-tegra-5.15.0/drivers/android/binder.c @@ -4627,6 +4627,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 +4843,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-nvidia-tegra-5.15.0/drivers/android/binder_alloc.c linux-nvidia-tegra-5.15.0/drivers/android/binder_alloc.c --- linux-nvidia-tegra-5.15.0/drivers/android/binder_alloc.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/ata/libata-core.c linux-nvidia-tegra-5.15.0/drivers/ata/libata-core.c --- linux-nvidia-tegra-5.15.0/drivers/ata/libata-core.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/ata/libata-eh.c linux-nvidia-tegra-5.15.0/drivers/ata/libata-eh.c --- linux-nvidia-tegra-5.15.0/drivers/ata/libata-eh.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/base/dd.c linux-nvidia-tegra-5.15.0/drivers/base/dd.c --- linux-nvidia-tegra-5.15.0/drivers/base/dd.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/base/platform.c linux-nvidia-tegra-5.15.0/drivers/base/platform.c --- linux-nvidia-tegra-5.15.0/drivers/base/platform.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/base/property.c linux-nvidia-tegra-5.15.0/drivers/base/property.c --- linux-nvidia-tegra-5.15.0/drivers/base/property.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/base/regmap/regcache.c linux-nvidia-tegra-5.15.0/drivers/base/regmap/regcache.c --- linux-nvidia-tegra-5.15.0/drivers/base/regmap/regcache.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/base/regmap/regmap.c linux-nvidia-tegra-5.15.0/drivers/base/regmap/regmap.c --- linux-nvidia-tegra-5.15.0/drivers/base/regmap/regmap.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/base/swnode.c linux-nvidia-tegra-5.15.0/drivers/base/swnode.c --- linux-nvidia-tegra-5.15.0/drivers/base/swnode.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/block/loop.c linux-nvidia-tegra-5.15.0/drivers/block/loop.c --- linux-nvidia-tegra-5.15.0/drivers/block/loop.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/block/null_blk/main.c linux-nvidia-tegra-5.15.0/drivers/block/null_blk/main.c --- linux-nvidia-tegra-5.15.0/drivers/block/null_blk/main.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/block/virtio_blk.c linux-nvidia-tegra-5.15.0/drivers/block/virtio_blk.c --- linux-nvidia-tegra-5.15.0/drivers/block/virtio_blk.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/bluetooth/btmtkuart.c linux-nvidia-tegra-5.15.0/drivers/bluetooth/btmtkuart.c --- linux-nvidia-tegra-5.15.0/drivers/bluetooth/btmtkuart.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/bluetooth/btusb.c linux-nvidia-tegra-5.15.0/drivers/bluetooth/btusb.c --- linux-nvidia-tegra-5.15.0/drivers/bluetooth/btusb.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/bluetooth/hci_vhci.c linux-nvidia-tegra-5.15.0/drivers/bluetooth/hci_vhci.c --- linux-nvidia-tegra-5.15.0/drivers/bluetooth/hci_vhci.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/bus/ti-sysc.c linux-nvidia-tegra-5.15.0/drivers/bus/ti-sysc.c --- linux-nvidia-tegra-5.15.0/drivers/bus/ti-sysc.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/char/hw_random/geode-rng.c linux-nvidia-tegra-5.15.0/drivers/char/hw_random/geode-rng.c --- linux-nvidia-tegra-5.15.0/drivers/char/hw_random/geode-rng.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/clk/clk-si5341.c linux-nvidia-tegra-5.15.0/drivers/clk/clk-si5341.c --- linux-nvidia-tegra-5.15.0/drivers/clk/clk-si5341.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/clk/clk.c linux-nvidia-tegra-5.15.0/drivers/clk/clk.c --- linux-nvidia-tegra-5.15.0/drivers/clk/clk.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/clk/imx/clk-imx8qxp.c linux-nvidia-tegra-5.15.0/drivers/clk/imx/clk-imx8qxp.c --- linux-nvidia-tegra-5.15.0/drivers/clk/imx/clk-imx8qxp.c +++ linux-nvidia-tegra-5.15.0/drivers/clk/imx/clk-imx8qxp.c @@ -148,10 +148,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); diff -u linux-nvidia-tegra-5.15.0/drivers/clk/keystone/pll.c linux-nvidia-tegra-5.15.0/drivers/clk/keystone/pll.c --- linux-nvidia-tegra-5.15.0/drivers/clk/keystone/pll.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/clk/qcom/Kconfig linux-nvidia-tegra-5.15.0/drivers/clk/qcom/Kconfig --- linux-nvidia-tegra-5.15.0/drivers/clk/qcom/Kconfig +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/clk/qcom/clk-rcg2.c linux-nvidia-tegra-5.15.0/drivers/clk/qcom/clk-rcg2.c --- linux-nvidia-tegra-5.15.0/drivers/clk/qcom/clk-rcg2.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/clk/qcom/gcc-ipq6018.c linux-nvidia-tegra-5.15.0/drivers/clk/qcom/gcc-ipq6018.c --- linux-nvidia-tegra-5.15.0/drivers/clk/qcom/gcc-ipq6018.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/clk/qcom/gcc-ipq8074.c linux-nvidia-tegra-5.15.0/drivers/clk/qcom/gcc-ipq8074.c --- linux-nvidia-tegra-5.15.0/drivers/clk/qcom/gcc-ipq8074.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/clk/renesas/rzg2l-cpg.c linux-nvidia-tegra-5.15.0/drivers/clk/renesas/rzg2l-cpg.c --- linux-nvidia-tegra-5.15.0/drivers/clk/renesas/rzg2l-cpg.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/clk/ti/clk-dra7-atl.c linux-nvidia-tegra-5.15.0/drivers/clk/ti/clk-dra7-atl.c --- linux-nvidia-tegra-5.15.0/drivers/clk/ti/clk-dra7-atl.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/clk/ti/clk.c linux-nvidia-tegra-5.15.0/drivers/clk/ti/clk.c --- linux-nvidia-tegra-5.15.0/drivers/clk/ti/clk.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/clk/ti/clkctrl.c linux-nvidia-tegra-5.15.0/drivers/clk/ti/clkctrl.c --- linux-nvidia-tegra-5.15.0/drivers/clk/ti/clkctrl.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/cpufreq/cpufreq-dt-platdev.c linux-nvidia-tegra-5.15.0/drivers/cpufreq/cpufreq-dt-platdev.c --- linux-nvidia-tegra-5.15.0/drivers/cpufreq/cpufreq-dt-platdev.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/cpufreq/intel_pstate.c linux-nvidia-tegra-5.15.0/drivers/cpufreq/intel_pstate.c --- linux-nvidia-tegra-5.15.0/drivers/cpufreq/intel_pstate.c +++ linux-nvidia-tegra-5.15.0/drivers/cpufreq/intel_pstate.c @@ -2281,12 +2281,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 +2299,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) { diff -u linux-nvidia-tegra-5.15.0/drivers/crypto/caam/caamalg.c linux-nvidia-tegra-5.15.0/drivers/crypto/caam/caamalg.c --- linux-nvidia-tegra-5.15.0/drivers/crypto/caam/caamalg.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/crypto/caam/caamalg_qi2.c linux-nvidia-tegra-5.15.0/drivers/crypto/caam/caamalg_qi2.c --- linux-nvidia-tegra-5.15.0/drivers/crypto/caam/caamalg_qi2.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/crypto/hisilicon/hpre/hpre_main.c linux-nvidia-tegra-5.15.0/drivers/crypto/hisilicon/hpre/hpre_main.c --- linux-nvidia-tegra-5.15.0/drivers/crypto/hisilicon/hpre/hpre_main.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/crypto/qat/qat_common/adf_accel_devices.h linux-nvidia-tegra-5.15.0/drivers/crypto/qat/qat_common/adf_accel_devices.h --- linux-nvidia-tegra-5.15.0/drivers/crypto/qat/qat_common/adf_accel_devices.h +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/crypto/qat/qat_common/qat_algs_send.c linux-nvidia-tegra-5.15.0/drivers/crypto/qat/qat_common/qat_algs_send.c --- linux-nvidia-tegra-5.15.0/drivers/crypto/qat/qat_common/qat_algs_send.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/crypto/sahara.c linux-nvidia-tegra-5.15.0/drivers/crypto/sahara.c --- linux-nvidia-tegra-5.15.0/drivers/crypto/sahara.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/dma/pxa_dma.c linux-nvidia-tegra-5.15.0/drivers/dma/pxa_dma.c --- linux-nvidia-tegra-5.15.0/drivers/dma/pxa_dma.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/dma/ste_dma40.c linux-nvidia-tegra-5.15.0/drivers/dma/ste_dma40.c --- linux-nvidia-tegra-5.15.0/drivers/dma/ste_dma40.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/dma/stm32-mdma.c linux-nvidia-tegra-5.15.0/drivers/dma/stm32-mdma.c --- linux-nvidia-tegra-5.15.0/drivers/dma/stm32-mdma.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/firmware/arm_ffa/bus.c linux-nvidia-tegra-5.15.0/drivers/firmware/arm_ffa/bus.c --- linux-nvidia-tegra-5.15.0/drivers/firmware/arm_ffa/bus.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/firmware/imx/imx-dsp.c linux-nvidia-tegra-5.15.0/drivers/firmware/imx/imx-dsp.c --- linux-nvidia-tegra-5.15.0/drivers/firmware/imx/imx-dsp.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/firmware/meson/meson_sm.c linux-nvidia-tegra-5.15.0/drivers/firmware/meson/meson_sm.c --- linux-nvidia-tegra-5.15.0/drivers/firmware/meson/meson_sm.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/firmware/qcom_scm.c linux-nvidia-tegra-5.15.0/drivers/firmware/qcom_scm.c --- linux-nvidia-tegra-5.15.0/drivers/firmware/qcom_scm.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/gpio/gpio-dwapb.c linux-nvidia-tegra-5.15.0/drivers/gpio/gpio-dwapb.c --- linux-nvidia-tegra-5.15.0/drivers/gpio/gpio-dwapb.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/gpio/gpio-tegra186.c linux-nvidia-tegra-5.15.0/drivers/gpio/gpio-tegra186.c --- linux-nvidia-tegra-5.15.0/drivers/gpio/gpio-tegra186.c +++ linux-nvidia-tegra-5.15.0/drivers/gpio/gpio-tegra186.c @@ -1207,6 +1207,7 @@ .num_irqs_per_bank = 8, .has_vm_support = false, .is_hw_ts_sup = true, + .has_gte = true, }; static const struct of_device_id tegra186_gpio_of_match[] = { diff -u linux-nvidia-tegra-5.15.0/drivers/gpio/gpio-vf610.c linux-nvidia-tegra-5.15.0/drivers/gpio/gpio-vf610.c --- linux-nvidia-tegra-5.15.0/drivers/gpio/gpio-vf610.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/gpio/gpiolib-cdev.c linux-nvidia-tegra-5.15.0/drivers/gpio/gpiolib-cdev.c --- linux-nvidia-tegra-5.15.0/drivers/gpio/gpiolib-cdev.c +++ linux-nvidia-tegra-5.15.0/drivers/gpio/gpiolib-cdev.c @@ -466,7 +466,7 @@ * @desc: the GPIO descriptor for this line. * @req: the corresponding line request * @irq: the interrupt triggered in response to events on this GPIO - * @eflags: the edge flags, GPIO_V2_LINE_FLAG_EDGE_RISING and/or + * @edflags: the edge flags, GPIO_V2_LINE_FLAG_EDGE_RISING and/or * GPIO_V2_LINE_FLAG_EDGE_FALLING, indicating the edge detection applied * @timestamp_ns: cache for the timestamp storing it between hardirq and * IRQ thread, used to bring the timestamp close to the actual event @@ -490,12 +490,15 @@ struct linereq *req; unsigned int irq; /* - * eflags is set by edge_detector_setup(), edge_detector_stop() and - * edge_detector_update(), which are themselves mutually exclusive, - * and is accessed by edge_irq_thread() and debounce_work_func(), - * which can both live with a slightly stale value. + * The flags for the active edge detector configuration. + * + * edflags is set by linereq_create(), linereq_free(), and + * linereq_set_config_unlocked(), which are themselves mutually + * exclusive, and is accessed by edge_irq_thread(), + * process_hw_ts_thread() and debounce_work_func(), + * which can all live with a slightly stale value. */ - u64 eflags; + u64 edflags; /* * timestamp_ns and req_seqno are accessed only by * edge_irq_handler() and edge_irq_thread(), which are themselves @@ -525,9 +528,7 @@ * stale value. */ unsigned int level; - /* - * -- hte specific fields -- - */ +#ifdef CONFIG_HTE struct hte_ts_desc hdesc; /* * HTE provider sets line level at the time of event. The valid @@ -544,6 +545,7 @@ * last sequence number before debounce period expires. */ u32 last_seqno; +#endif /* CONFIG_HTE */ }; /** @@ -601,6 +603,12 @@ GPIO_V2_LINE_FLAG_EVENT_CLOCK_HTE | \ GPIO_V2_LINE_BIAS_FLAGS) +/* subset of flags relevant for edge detector configuration */ +#define GPIO_V2_LINE_EDGE_DETECTOR_FLAGS \ + (GPIO_V2_LINE_FLAG_ACTIVE_LOW | \ + GPIO_V2_LINE_FLAG_EVENT_CLOCK_HTE | \ + GPIO_V2_LINE_EDGE_FLAGS) + static void linereq_put_event(struct linereq *lr, struct gpio_v2_line_event *le) { @@ -623,19 +631,28 @@ { if (test_bit(FLAG_EVENT_CLOCK_REALTIME, &line->desc->flags)) return ktime_get_real_ns(); - else if (test_bit(FLAG_EVENT_CLOCK_HTE, &line->desc->flags)) + else if (IS_ENABLED(CONFIG_HTE) && + test_bit(FLAG_EVENT_CLOCK_HTE, &line->desc->flags)) return line->timestamp_ns; return ktime_get_ns(); } +static u32 line_event_id(int level) +{ + return level ? GPIO_V2_LINE_EVENT_RISING_EDGE : + GPIO_V2_LINE_EVENT_FALLING_EDGE; +} + +#ifdef CONFIG_HTE + static enum hte_return process_hw_ts_thread(void *p) { struct line *line; struct linereq *lr; struct gpio_v2_line_event le; + u64 edflags; int level; - u64 eflags; if (!p) return HTE_CB_HANDLED; @@ -646,29 +663,26 @@ memset(&le, 0, sizeof(le)); le.timestamp_ns = line->timestamp_ns; - eflags = READ_ONCE(line->eflags); - - if (eflags == GPIO_V2_LINE_FLAG_EDGE_BOTH) { - if (line->raw_level >= 0) { - if (test_bit(FLAG_ACTIVE_LOW, &line->desc->flags)) - level = !line->raw_level; - else - level = line->raw_level; - } else { - level = gpiod_get_value_cansleep(line->desc); - } + edflags = READ_ONCE(line->edflags); - if (level) - le.id = GPIO_V2_LINE_EVENT_RISING_EDGE; - else - le.id = GPIO_V2_LINE_EVENT_FALLING_EDGE; - } else if (eflags == GPIO_V2_LINE_FLAG_EDGE_RISING) { - /* Emit low-to-high event */ + switch (edflags & GPIO_V2_LINE_EDGE_FLAGS) { + case GPIO_V2_LINE_FLAG_EDGE_BOTH: + level = (line->raw_level >= 0) ? + line->raw_level : + gpiod_get_raw_value_cansleep(line->desc); + + if (edflags & GPIO_V2_LINE_FLAG_ACTIVE_LOW) + level = !level; + + le.id = line_event_id(level); + break; + case GPIO_V2_LINE_FLAG_EDGE_RISING: le.id = GPIO_V2_LINE_EVENT_RISING_EDGE; - } else if (eflags == GPIO_V2_LINE_FLAG_EDGE_FALLING) { - /* Emit high-to-low event */ + break; + case GPIO_V2_LINE_FLAG_EDGE_FALLING: le.id = GPIO_V2_LINE_EVENT_FALLING_EDGE; - } else { + break; + default: return HTE_CB_HANDLED; } le.line_seqno = line->line_seqno; @@ -715,12 +729,47 @@ return HTE_CB_HANDLED; } +static int hte_edge_setup(struct line *line, u64 eflags) +{ + int ret; + unsigned long flags = 0; + struct hte_ts_desc *hdesc = &line->hdesc; + + if (eflags & GPIO_V2_LINE_FLAG_EDGE_RISING) + flags |= test_bit(FLAG_ACTIVE_LOW, &line->desc->flags) ? + HTE_FALLING_EDGE_TS : + HTE_RISING_EDGE_TS; + if (eflags & GPIO_V2_LINE_FLAG_EDGE_FALLING) + flags |= test_bit(FLAG_ACTIVE_LOW, &line->desc->flags) ? + HTE_RISING_EDGE_TS : + HTE_FALLING_EDGE_TS; + + line->total_discard_seq = 0; + + hte_init_line_attr(hdesc, desc_to_gpio(line->desc), flags, NULL, + line->desc); + + ret = hte_ts_get(NULL, hdesc, 0); + if (ret) + return ret; + + return hte_request_ts_ns(hdesc, process_hw_ts, process_hw_ts_thread, + line); +} + +#else + +static int hte_edge_setup(struct line *line, u64 eflags) +{ + return 0; +} +#endif /* CONFIG_HTE */ + static irqreturn_t edge_irq_thread(int irq, void *p) { struct line *line = p; struct linereq *lr = line->req; struct gpio_v2_line_event le; - u64 eflags; /* Do not leak kernel stack to userspace */ memset(&le, 0, sizeof(le)); @@ -739,23 +788,17 @@ } line->timestamp_ns = 0; - eflags = READ_ONCE(line->eflags); - if (eflags == GPIO_V2_LINE_FLAG_EDGE_BOTH) { - int level = gpiod_get_value_cansleep(line->desc); - - if (level) - /* Emit low-to-high event */ - le.id = GPIO_V2_LINE_EVENT_RISING_EDGE; - else - /* Emit high-to-low event */ - le.id = GPIO_V2_LINE_EVENT_FALLING_EDGE; - } else if (eflags == GPIO_V2_LINE_FLAG_EDGE_RISING) { - /* Emit low-to-high event */ + switch (READ_ONCE(line->edflags) & GPIO_V2_LINE_EDGE_FLAGS) { + case GPIO_V2_LINE_FLAG_EDGE_BOTH: + le.id = line_event_id(gpiod_get_value_cansleep(line->desc)); + break; + case GPIO_V2_LINE_FLAG_EDGE_RISING: le.id = GPIO_V2_LINE_EVENT_RISING_EDGE; - } else if (eflags == GPIO_V2_LINE_FLAG_EDGE_FALLING) { - /* Emit high-to-low event */ + break; + case GPIO_V2_LINE_FLAG_EDGE_FALLING: le.id = GPIO_V2_LINE_EVENT_FALLING_EDGE; - } else { + break; + default: return IRQ_NONE; } line->line_seqno++; @@ -820,16 +863,16 @@ struct gpio_v2_line_event le; struct line *line = container_of(work, struct line, work.work); struct linereq *lr; - int level, diff_seqno; - u64 eflags; + u64 eflags, edflags = READ_ONCE(line->edflags); + int level = -1; +#ifdef CONFIG_HTE + int diff_seqno; - if (test_bit(FLAG_EVENT_CLOCK_HTE, &line->desc->flags)) { + if (edflags & GPIO_V2_LINE_FLAG_EVENT_CLOCK_HTE) level = line->raw_level; - if (level < 0) - level = gpiod_get_raw_value_cansleep(line->desc); - } else { +#endif + if (level < 0) level = gpiod_get_raw_value_cansleep(line->desc); - } if (level < 0) { pr_debug_ratelimited("debouncer failed to read line value\n"); return; @@ -841,12 +884,12 @@ WRITE_ONCE(line->level, level); /* -- edge detection -- */ - eflags = READ_ONCE(line->eflags); + eflags = edflags & GPIO_V2_LINE_EDGE_FLAGS; if (!eflags) return; /* switch from physical level to logical - if they differ */ - if (test_bit(FLAG_ACTIVE_LOW, &line->desc->flags)) + if (edflags & GPIO_V2_LINE_FLAG_ACTIVE_LOW) level = !level; /* ignore edges that are not being monitored */ @@ -860,7 +903,8 @@ lr = line->req; le.timestamp_ns = line_event_timestamp(line); le.offset = gpio_chip_hwgpio(line->desc); - if (test_bit(FLAG_EVENT_CLOCK_HTE, &line->desc->flags)) { +#ifdef CONFIG_HTE + if (edflags & GPIO_V2_LINE_FLAG_EVENT_CLOCK_HTE) { /* discard events except the last one */ line->total_discard_seq -= 1; diff_seqno = line->last_seqno - line->total_discard_seq - @@ -869,51 +913,21 @@ le.line_seqno = line->line_seqno; le.seqno = (lr->num_lines == 1) ? le.line_seqno : atomic_add_return(diff_seqno, &lr->seqno); - } else { + } else +#endif /* CONFIG_HTE */ + { line->line_seqno++; le.line_seqno = line->line_seqno; le.seqno = (lr->num_lines == 1) ? le.line_seqno : atomic_inc_return(&lr->seqno); } - if (level) - /* Emit low-to-high event */ - le.id = GPIO_V2_LINE_EVENT_RISING_EDGE; - else - /* Emit high-to-low event */ - le.id = GPIO_V2_LINE_EVENT_FALLING_EDGE; + le.id = line_event_id(level); linereq_put_event(lr, &le); } -static int hte_edge_setup(struct line *line, u64 eflags) -{ - int ret; - unsigned long flags = 0; - struct hte_ts_desc *hdesc = &line->hdesc; - - if (eflags & GPIO_V2_LINE_FLAG_EDGE_RISING) - flags |= test_bit(FLAG_ACTIVE_LOW, &line->desc->flags) ? - HTE_FALLING_EDGE_TS : HTE_RISING_EDGE_TS; - if (eflags & GPIO_V2_LINE_FLAG_EDGE_FALLING) - flags |= test_bit(FLAG_ACTIVE_LOW, &line->desc->flags) ? - HTE_RISING_EDGE_TS : HTE_FALLING_EDGE_TS; - - line->total_discard_seq = 0; - - hte_init_line_attr(hdesc, desc_to_gpio(line->desc), flags, - NULL, line->desc); - - ret = hte_ts_get(NULL, hdesc, 0); - if (ret) - return ret; - - return hte_request_ts_ns(hdesc, process_hw_ts, - process_hw_ts_thread, line); -} - -static int debounce_setup(struct line *line, - unsigned int debounce_period_us, bool hte_req) +static int debounce_setup(struct line *line, unsigned int debounce_period_us) { unsigned long irqflags; int ret, level, irq; @@ -933,7 +947,8 @@ if (level < 0) return level; - if (!hte_req) { + if (!(IS_ENABLED(CONFIG_HTE) && + test_bit(FLAG_EVENT_CLOCK_HTE, &line->desc->flags))) { irq = gpiod_to_irq(line->desc); if (irq < 0) return -ENXIO; @@ -945,9 +960,7 @@ return ret; line->irq = irq; } else { - ret = hte_edge_setup(line, - GPIO_V2_LINE_FLAG_EDGE_RISING | - GPIO_V2_LINE_FLAG_EDGE_FALLING); + ret = hte_edge_setup(line, GPIO_V2_LINE_FLAG_EDGE_BOTH); if (ret) return ret; } @@ -986,19 +999,21 @@ return 0; } -static void edge_detector_stop(struct line *line, bool hte_en) +static void edge_detector_stop(struct line *line) { - if (line->irq && !hte_en) { + if (line->irq) { free_irq(line->irq, line); line->irq = 0; } - if (hte_en) +#ifdef CONFIG_HTE + if (READ_ONCE(line->edflags) & GPIO_V2_LINE_FLAG_EVENT_CLOCK_HTE) hte_ts_put(&line->hdesc); +#endif cancel_delayed_work_sync(&line->work); WRITE_ONCE(line->sw_debounced, 0); - WRITE_ONCE(line->eflags, 0); + WRITE_ONCE(line->edflags, 0); if (line->desc) WRITE_ONCE(line->desc->debounce_period_us, 0); /* do not change line->level - see comment in debounced_value() */ @@ -1006,23 +1021,23 @@ static int edge_detector_setup(struct line *line, struct gpio_v2_line_config *lc, - unsigned int line_idx, - u64 eflags, bool hte_req) + unsigned int line_idx, u64 edflags) { u32 debounce_period_us; unsigned long irqflags = 0; + u64 eflags; int irq, ret; + eflags = edflags & GPIO_V2_LINE_EDGE_FLAGS; if (eflags && !kfifo_initialized(&line->req->events)) { ret = kfifo_alloc(&line->req->events, line->req->event_buffer_size, GFP_KERNEL); if (ret) return ret; } - WRITE_ONCE(line->eflags, eflags); if (gpio_v2_line_config_debounced(lc, line_idx)) { debounce_period_us = gpio_v2_line_config_debounce_period(lc, line_idx); - ret = debounce_setup(line, debounce_period_us, hte_req); + ret = debounce_setup(line, debounce_period_us); if (ret) return ret; WRITE_ONCE(line->desc->debounce_period_us, debounce_period_us); @@ -1032,8 +1047,9 @@ if (!eflags || READ_ONCE(line->sw_debounced)) return 0; - if (hte_req) - return hte_edge_setup(line, eflags); + if (IS_ENABLED(CONFIG_HTE) && + (edflags & GPIO_V2_LINE_FLAG_EVENT_CLOCK_HTE)) + return hte_edge_setup(line, edflags); irq = gpiod_to_irq(line->desc); if (irq < 0) @@ -1059,35 +1075,29 @@ static int edge_detector_update(struct line *line, struct gpio_v2_line_config *lc, - unsigned int line_idx, - u64 flags, bool polarity_change, - bool prev_hte_flag) + unsigned int line_idx, u64 edflags) { - u64 eflags = flags & GPIO_V2_LINE_EDGE_FLAGS; + u64 active_edflags = READ_ONCE(line->edflags); unsigned int debounce_period_us = gpio_v2_line_config_debounce_period(lc, line_idx); - bool hte_change = (prev_hte_flag != - ((flags & GPIO_V2_LINE_FLAG_EVENT_CLOCK_HTE) != 0)); - if ((READ_ONCE(line->eflags) == eflags) && !polarity_change && - (READ_ONCE(line->desc->debounce_period_us) == debounce_period_us) - && !hte_change) + if ((active_edflags == edflags) && + (READ_ONCE(line->desc->debounce_period_us) == debounce_period_us)) return 0; /* sw debounced and still will be...*/ if (debounce_period_us && READ_ONCE(line->sw_debounced)) { - WRITE_ONCE(line->eflags, eflags); WRITE_ONCE(line->desc->debounce_period_us, debounce_period_us); return 0; } /* reconfiguring edge detection or sw debounce being disabled */ - if ((line->irq && !READ_ONCE(line->sw_debounced)) || prev_hte_flag || + if ((line->irq && !READ_ONCE(line->sw_debounced)) || + (active_edflags & GPIO_V2_LINE_FLAG_EVENT_CLOCK_HTE) || (!debounce_period_us && READ_ONCE(line->sw_debounced))) - edge_detector_stop(line, prev_hte_flag); + edge_detector_stop(line); - return edge_detector_setup(line, lc, line_idx, eflags, - flags & GPIO_V2_LINE_FLAG_EVENT_CLOCK_HTE); + return edge_detector_setup(line, lc, line_idx, edflags); } static u64 gpio_v2_line_config_flags(struct gpio_v2_line_config *lc, @@ -1123,6 +1133,11 @@ /* Return an error if an unknown flag is set */ if (flags & ~GPIO_V2_LINE_VALID_FLAGS) return -EINVAL; + + if (!IS_ENABLED(CONFIG_HTE) && + (flags & GPIO_V2_LINE_FLAG_EVENT_CLOCK_HTE)) + return -EOPNOTSUPP; + /* * Do not allow both INPUT and OUTPUT flags to be set as they are * contradictory. @@ -1132,7 +1147,8 @@ return -EINVAL; /* Only allow one event clock source */ - if ((flags & GPIO_V2_LINE_FLAG_EVENT_CLOCK_REALTIME) && + if (IS_ENABLED(CONFIG_HTE) && + (flags & GPIO_V2_LINE_FLAG_EVENT_CLOCK_REALTIME) && (flags & GPIO_V2_LINE_FLAG_EVENT_CLOCK_HTE)) return -EINVAL; @@ -1356,22 +1372,17 @@ struct gpio_v2_line_config *lc) { struct gpio_desc *desc; + struct line *line; unsigned int i; - u64 flags; - bool polarity_change; - bool prev_hte_flag; + u64 flags, edflags; int ret; for (i = 0; i < lr->num_lines; i++) { + line = &lr->lines[i]; desc = lr->lines[i].desc; flags = gpio_v2_line_config_flags(lc, i); - polarity_change = - (!!test_bit(FLAG_ACTIVE_LOW, &desc->flags) != - ((flags & GPIO_V2_LINE_FLAG_ACTIVE_LOW) != 0)); - - prev_hte_flag = !!test_bit(FLAG_EVENT_CLOCK_HTE, &desc->flags); - gpio_v2_line_config_flags_to_desc_flags(flags, &desc->flags); + edflags = flags & GPIO_V2_LINE_EDGE_DETECTOR_FLAGS; /* * Lines have to be requested explicitly for input * or output, else the line will be treated "as is". @@ -1379,7 +1390,7 @@ if (flags & GPIO_V2_LINE_FLAG_OUTPUT) { int val = gpio_v2_line_config_output_value(lc, i); - edge_detector_stop(&lr->lines[i], prev_hte_flag); + edge_detector_stop(line); ret = gpiod_direction_output(desc, val); if (ret) return ret; @@ -1388,12 +1399,13 @@ if (ret) return ret; - ret = edge_detector_update(&lr->lines[i], lc, i, - flags, polarity_change, prev_hte_flag); + ret = edge_detector_update(line, lc, i, edflags); if (ret) return ret; } + WRITE_ONCE(line->edflags, edflags); + blocking_notifier_call_chain(&desc->gdev->notifier, GPIO_V2_LINE_CHANGED_CONFIG, desc); @@ -1553,14 +1565,12 @@ static void linereq_free(struct linereq *lr) { unsigned int i; - bool hte; for (i = 0; i < lr->num_lines; i++) { - hte = !!test_bit(FLAG_EVENT_CLOCK_HTE, - &lr->lines[i].desc->flags); - edge_detector_stop(&lr->lines[i], hte); - if (lr->lines[i].desc) + if (lr->lines[i].desc) { + edge_detector_stop(&lr->lines[i]); gpiod_free(lr->lines[i].desc); + } } kfifo_free(&lr->events); kfree(lr->label); @@ -1594,7 +1604,7 @@ struct gpio_v2_line_config *lc; struct linereq *lr; struct file *file; - u64 flags; + u64 flags, edflags; unsigned int i; int fd, ret; @@ -1668,6 +1678,7 @@ if (ret < 0) goto out_free_linereq; + edflags = flags & GPIO_V2_LINE_EDGE_DETECTOR_FLAGS; /* * Lines have to be requested explicitly for input * or output, else the line will be treated "as is". @@ -1684,12 +1695,13 @@ goto out_free_linereq; ret = edge_detector_setup(&lr->lines[i], lc, i, - flags & GPIO_V2_LINE_EDGE_FLAGS, - flags & GPIO_V2_LINE_FLAG_EVENT_CLOCK_HTE); + edflags); if (ret) goto out_free_linereq; } + lr->lines[i].edflags = edflags; + blocking_notifier_call_chain(&desc->gdev->notifier, GPIO_V2_LINE_CHANGED_REQUESTED, desc); @@ -2414,10 +2426,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; @@ -2456,2 +2465,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-nvidia-tegra-5.15.0/drivers/gpio/gpiolib-sysfs.c linux-nvidia-tegra-5.15.0/drivers/gpio/gpiolib-sysfs.c --- linux-nvidia-tegra-5.15.0/drivers/gpio/gpiolib-sysfs.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/gpu/drm/amd/amdgpu/amdgpu.h linux-nvidia-tegra-5.15.0/drivers/gpu/drm/amd/amdgpu/amdgpu.h --- linux-nvidia-tegra-5.15.0/drivers/gpu/drm/amd/amdgpu/amdgpu.h +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/gpu/drm/amd/amdgpu/amdgpu_bios.c linux-nvidia-tegra-5.15.0/drivers/gpu/drm/amd/amdgpu/amdgpu_bios.c --- linux-nvidia-tegra-5.15.0/drivers/gpu/drm/amd/amdgpu/amdgpu_bios.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/gpu/drm/amd/amdgpu/amdgpu_bo_list.c linux-nvidia-tegra-5.15.0/drivers/gpu/drm/amd/amdgpu/amdgpu_bo_list.c --- linux-nvidia-tegra-5.15.0/drivers/gpu/drm/amd/amdgpu/amdgpu_bo_list.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/gpu/drm/amd/amdgpu/amdgpu_cs.c linux-nvidia-tegra-5.15.0/drivers/gpu/drm/amd/amdgpu/amdgpu_cs.c --- linux-nvidia-tegra-5.15.0/drivers/gpu/drm/amd/amdgpu/amdgpu_cs.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/gpu/drm/amd/amdgpu/amdgpu_debugfs.c linux-nvidia-tegra-5.15.0/drivers/gpu/drm/amd/amdgpu/amdgpu_debugfs.c --- linux-nvidia-tegra-5.15.0/drivers/gpu/drm/amd/amdgpu/amdgpu_debugfs.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/gpu/drm/amd/amdgpu/amdgpu_device.c linux-nvidia-tegra-5.15.0/drivers/gpu/drm/amd/amdgpu/amdgpu_device.c --- linux-nvidia-tegra-5.15.0/drivers/gpu/drm/amd/amdgpu/amdgpu_device.c +++ linux-nvidia-tegra-5.15.0/drivers/gpu/drm/amd/amdgpu/amdgpu_device.c @@ -1319,6 +1319,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 * @@ -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-nvidia-tegra-5.15.0/drivers/gpu/drm/amd/amdgpu/amdgpu_display.c linux-nvidia-tegra-5.15.0/drivers/gpu/drm/amd/amdgpu/amdgpu_display.c --- linux-nvidia-tegra-5.15.0/drivers/gpu/drm/amd/amdgpu/amdgpu_display.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/gpu/drm/amd/amdgpu/amdgpu_vkms.c linux-nvidia-tegra-5.15.0/drivers/gpu/drm/amd/amdgpu/amdgpu_vkms.c --- linux-nvidia-tegra-5.15.0/drivers/gpu/drm/amd/amdgpu/amdgpu_vkms.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/gpu/drm/amd/amdgpu/sdma_v5_2.c linux-nvidia-tegra-5.15.0/drivers/gpu/drm/amd/amdgpu/sdma_v5_2.c --- linux-nvidia-tegra-5.15.0/drivers/gpu/drm/amd/amdgpu/sdma_v5_2.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/gpu/drm/amd/amdgpu/soc15.c linux-nvidia-tegra-5.15.0/drivers/gpu/drm/amd/amdgpu/soc15.c --- linux-nvidia-tegra-5.15.0/drivers/gpu/drm/amd/amdgpu/soc15.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/gpu/drm/amd/amdgpu/vi.c linux-nvidia-tegra-5.15.0/drivers/gpu/drm/amd/amdgpu/vi.c --- linux-nvidia-tegra-5.15.0/drivers/gpu/drm/amd/amdgpu/vi.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/gpu/drm/amd/amdkfd/kfd_svm.c linux-nvidia-tegra-5.15.0/drivers/gpu/drm/amd/amdkfd/kfd_svm.c --- linux-nvidia-tegra-5.15.0/drivers/gpu/drm/amd/amdkfd/kfd_svm.c +++ linux-nvidia-tegra-5.15.0/drivers/gpu/drm/amd/amdkfd/kfd_svm.c @@ -433,11 +433,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 +550,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 +698,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?"); diff -u linux-nvidia-tegra-5.15.0/drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm.c linux-nvidia-tegra-5.15.0/drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm.c --- linux-nvidia-tegra-5.15.0/drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/gpu/drm/amd/display/dc/core/dc.c linux-nvidia-tegra-5.15.0/drivers/gpu/drm/amd/display/dc/core/dc.c --- linux-nvidia-tegra-5.15.0/drivers/gpu/drm/amd/display/dc/core/dc.c +++ linux-nvidia-tegra-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; @@ -2148,6 +2149,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 +2184,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 +2227,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-nvidia-tegra-5.15.0/drivers/gpu/drm/amd/display/dc/dc.h linux-nvidia-tegra-5.15.0/drivers/gpu/drm/amd/display/dc/dc.h --- linux-nvidia-tegra-5.15.0/drivers/gpu/drm/amd/display/dc/dc.h +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/gpu/drm/amd/display/dmub/dmub_srv.h linux-nvidia-tegra-5.15.0/drivers/gpu/drm/amd/display/dmub/dmub_srv.h --- linux-nvidia-tegra-5.15.0/drivers/gpu/drm/amd/display/dmub/dmub_srv.h +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/gpu/drm/amd/display/dmub/src/dmub_srv.c linux-nvidia-tegra-5.15.0/drivers/gpu/drm/amd/display/dmub/src/dmub_srv.c --- linux-nvidia-tegra-5.15.0/drivers/gpu/drm/amd/display/dmub/src/dmub_srv.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/gpu/drm/amd/pm/amdgpu_pm.c linux-nvidia-tegra-5.15.0/drivers/gpu/drm/amd/pm/amdgpu_pm.c --- linux-nvidia-tegra-5.15.0/drivers/gpu/drm/amd/pm/amdgpu_pm.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/gpu/drm/amd/pm/powerplay/hwmgr/smu7_hwmgr.c linux-nvidia-tegra-5.15.0/drivers/gpu/drm/amd/pm/powerplay/hwmgr/smu7_hwmgr.c --- linux-nvidia-tegra-5.15.0/drivers/gpu/drm/amd/pm/powerplay/hwmgr/smu7_hwmgr.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/gpu/drm/amd/pm/powerplay/kv_dpm.c linux-nvidia-tegra-5.15.0/drivers/gpu/drm/amd/pm/powerplay/kv_dpm.c --- linux-nvidia-tegra-5.15.0/drivers/gpu/drm/amd/pm/powerplay/kv_dpm.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/gpu/drm/amd/pm/powerplay/si_dpm.c linux-nvidia-tegra-5.15.0/drivers/gpu/drm/amd/pm/powerplay/si_dpm.c --- linux-nvidia-tegra-5.15.0/drivers/gpu/drm/amd/pm/powerplay/si_dpm.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/gpu/drm/arm/display/komeda/komeda_kms.c linux-nvidia-tegra-5.15.0/drivers/gpu/drm/arm/display/komeda/komeda_kms.c --- linux-nvidia-tegra-5.15.0/drivers/gpu/drm/arm/display/komeda/komeda_kms.c +++ linux-nvidia-tegra-5.15.0/drivers/gpu/drm/arm/display/komeda/komeda_kms.c @@ -353,0 +354,7 @@ + +void komeda_kms_shutdown(struct komeda_kms_dev *kms) +{ + struct drm_device *drm = &kms->base; + + drm_atomic_helper_shutdown(drm); +} diff -u linux-nvidia-tegra-5.15.0/drivers/gpu/drm/arm/display/komeda/komeda_kms.h linux-nvidia-tegra-5.15.0/drivers/gpu/drm/arm/display/komeda/komeda_kms.h --- linux-nvidia-tegra-5.15.0/drivers/gpu/drm/arm/display/komeda/komeda_kms.h +++ linux-nvidia-tegra-5.15.0/drivers/gpu/drm/arm/display/komeda/komeda_kms.h @@ -188,4 +188,5 @@ struct komeda_kms_dev *komeda_kms_attach(struct komeda_dev *mdev); void komeda_kms_detach(struct komeda_kms_dev *kms); +void komeda_kms_shutdown(struct komeda_kms_dev *kms); #endif /*_KOMEDA_KMS_H_*/ diff -u linux-nvidia-tegra-5.15.0/drivers/gpu/drm/bridge/lontium-lt8912b.c linux-nvidia-tegra-5.15.0/drivers/gpu/drm/bridge/lontium-lt8912b.c --- linux-nvidia-tegra-5.15.0/drivers/gpu/drm/bridge/lontium-lt8912b.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/gpu/drm/bridge/tc358767.c linux-nvidia-tegra-5.15.0/drivers/gpu/drm/bridge/tc358767.c --- linux-nvidia-tegra-5.15.0/drivers/gpu/drm/bridge/tc358767.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/gpu/drm/bridge/tc358768.c linux-nvidia-tegra-5.15.0/drivers/gpu/drm/bridge/tc358768.c --- linux-nvidia-tegra-5.15.0/drivers/gpu/drm/bridge/tc358768.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/gpu/drm/bridge/ti-sn65dsi86.c linux-nvidia-tegra-5.15.0/drivers/gpu/drm/bridge/ti-sn65dsi86.c --- linux-nvidia-tegra-5.15.0/drivers/gpu/drm/bridge/ti-sn65dsi86.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/gpu/drm/drm_atomic_helper.c linux-nvidia-tegra-5.15.0/drivers/gpu/drm/drm_atomic_helper.c --- linux-nvidia-tegra-5.15.0/drivers/gpu/drm/drm_atomic_helper.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/gpu/drm/drm_dp_mst_topology.c linux-nvidia-tegra-5.15.0/drivers/gpu/drm/drm_dp_mst_topology.c --- linux-nvidia-tegra-5.15.0/drivers/gpu/drm/drm_dp_mst_topology.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/gpu/drm/drm_drv.c linux-nvidia-tegra-5.15.0/drivers/gpu/drm/drm_drv.c --- linux-nvidia-tegra-5.15.0/drivers/gpu/drm/drm_drv.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/gpu/drm/drm_mipi_dsi.c linux-nvidia-tegra-5.15.0/drivers/gpu/drm/drm_mipi_dsi.c --- linux-nvidia-tegra-5.15.0/drivers/gpu/drm/drm_mipi_dsi.c +++ linux-nvidia-tegra-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); @@ -346,6 +392,41 @@ } 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-nvidia-tegra-5.15.0/drivers/gpu/drm/drm_panel_orientation_quirks.c linux-nvidia-tegra-5.15.0/drivers/gpu/drm/drm_panel_orientation_quirks.c --- linux-nvidia-tegra-5.15.0/drivers/gpu/drm/drm_panel_orientation_quirks.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/gpu/drm/drm_syncobj.c linux-nvidia-tegra-5.15.0/drivers/gpu/drm/drm_syncobj.c --- linux-nvidia-tegra-5.15.0/drivers/gpu/drm/drm_syncobj.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/gpu/drm/hyperv/hyperv_drm_drv.c linux-nvidia-tegra-5.15.0/drivers/gpu/drm/hyperv/hyperv_drm_drv.c --- linux-nvidia-tegra-5.15.0/drivers/gpu/drm/hyperv/hyperv_drm_drv.c +++ linux-nvidia-tegra-5.15.0/drivers/gpu/drm/hyperv/hyperv_drm_drv.c @@ -250,6 +250,11 @@ return 0; } +static void hyperv_vmbus_shutdown(struct hv_device *hdev) +{ + drm_atomic_helper_shutdown(hv_get_drvdata(hdev)); +} + static int hyperv_vmbus_suspend(struct hv_device *hdev) { struct drm_device *dev = hv_get_drvdata(hdev); @@ -292,6 +297,7 @@ .id_table = hyperv_vmbus_tbl, .probe = hyperv_vmbus_probe, .remove = hyperv_vmbus_remove, + .shutdown = hyperv_vmbus_shutdown, .suspend = hyperv_vmbus_suspend, .resume = hyperv_vmbus_resume, .driver = { diff -u linux-nvidia-tegra-5.15.0/drivers/gpu/drm/i915/display/icl_dsi.c linux-nvidia-tegra-5.15.0/drivers/gpu/drm/i915/display/icl_dsi.c --- linux-nvidia-tegra-5.15.0/drivers/gpu/drm/i915/display/icl_dsi.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/gpu/drm/i915/display/intel_display.c linux-nvidia-tegra-5.15.0/drivers/gpu/drm/i915/display/intel_display.c --- linux-nvidia-tegra-5.15.0/drivers/gpu/drm/i915/display/intel_display.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/gpu/drm/i915/display/intel_display.h linux-nvidia-tegra-5.15.0/drivers/gpu/drm/i915/display/intel_display.h --- linux-nvidia-tegra-5.15.0/drivers/gpu/drm/i915/display/intel_display.h +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/gpu/drm/i915/display/intel_dp.c linux-nvidia-tegra-5.15.0/drivers/gpu/drm/i915/display/intel_dp.c --- linux-nvidia-tegra-5.15.0/drivers/gpu/drm/i915/display/intel_dp.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/gpu/drm/i915/display/intel_dp_mst.c linux-nvidia-tegra-5.15.0/drivers/gpu/drm/i915/display/intel_dp_mst.c --- linux-nvidia-tegra-5.15.0/drivers/gpu/drm/i915/display/intel_dp_mst.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/gpu/drm/i915/display/intel_hdmi.c linux-nvidia-tegra-5.15.0/drivers/gpu/drm/i915/display/intel_hdmi.c --- linux-nvidia-tegra-5.15.0/drivers/gpu/drm/i915/display/intel_hdmi.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/gpu/drm/i915/display/intel_lvds.c linux-nvidia-tegra-5.15.0/drivers/gpu/drm/i915/display/intel_lvds.c --- linux-nvidia-tegra-5.15.0/drivers/gpu/drm/i915/display/intel_lvds.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/gpu/drm/i915/display/intel_sdvo.c linux-nvidia-tegra-5.15.0/drivers/gpu/drm/i915/display/intel_sdvo.c --- linux-nvidia-tegra-5.15.0/drivers/gpu/drm/i915/display/intel_sdvo.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/gpu/drm/i915/display/vlv_dsi.c linux-nvidia-tegra-5.15.0/drivers/gpu/drm/i915/display/vlv_dsi.c --- linux-nvidia-tegra-5.15.0/drivers/gpu/drm/i915/display/vlv_dsi.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/gpu/drm/i915/gem/i915_gem_context.c linux-nvidia-tegra-5.15.0/drivers/gpu/drm/i915/gem/i915_gem_context.c --- linux-nvidia-tegra-5.15.0/drivers/gpu/drm/i915/gem/i915_gem_context.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/gpu/drm/i915/gem/i915_gem_mman.c linux-nvidia-tegra-5.15.0/drivers/gpu/drm/i915/gem/i915_gem_mman.c --- linux-nvidia-tegra-5.15.0/drivers/gpu/drm/i915/gem/i915_gem_mman.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/gpu/drm/i915/i915_perf.c linux-nvidia-tegra-5.15.0/drivers/gpu/drm/i915/i915_perf.c --- linux-nvidia-tegra-5.15.0/drivers/gpu/drm/i915/i915_perf.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/gpu/drm/mediatek/mtk_drm_crtc.c linux-nvidia-tegra-5.15.0/drivers/gpu/drm/mediatek/mtk_drm_crtc.c --- linux-nvidia-tegra-5.15.0/drivers/gpu/drm/mediatek/mtk_drm_crtc.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/gpu/drm/mediatek/mtk_dsi.c linux-nvidia-tegra-5.15.0/drivers/gpu/drm/mediatek/mtk_dsi.c --- linux-nvidia-tegra-5.15.0/drivers/gpu/drm/mediatek/mtk_dsi.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/gpu/drm/msm/dp/dp_panel.c linux-nvidia-tegra-5.15.0/drivers/gpu/drm/msm/dp/dp_panel.c --- linux-nvidia-tegra-5.15.0/drivers/gpu/drm/msm/dp/dp_panel.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/gpu/drm/msm/dsi/dsi_host.c linux-nvidia-tegra-5.15.0/drivers/gpu/drm/msm/dsi/dsi_host.c --- linux-nvidia-tegra-5.15.0/drivers/gpu/drm/msm/dsi/dsi_host.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/gpu/drm/msm/dsi/phy/dsi_phy.c linux-nvidia-tegra-5.15.0/drivers/gpu/drm/msm/dsi/phy/dsi_phy.c --- linux-nvidia-tegra-5.15.0/drivers/gpu/drm/msm/dsi/phy/dsi_phy.c +++ linux-nvidia-tegra-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) { diff -u linux-nvidia-tegra-5.15.0/drivers/gpu/drm/panel/panel-simple.c linux-nvidia-tegra-5.15.0/drivers/gpu/drm/panel/panel-simple.c --- linux-nvidia-tegra-5.15.0/drivers/gpu/drm/panel/panel-simple.c +++ linux-nvidia-tegra-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, }; diff -u linux-nvidia-tegra-5.15.0/drivers/gpu/drm/qxl/qxl_display.c linux-nvidia-tegra-5.15.0/drivers/gpu/drm/qxl/qxl_display.c --- linux-nvidia-tegra-5.15.0/drivers/gpu/drm/qxl/qxl_display.c +++ linux-nvidia-tegra-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; diff -u linux-nvidia-tegra-5.15.0/drivers/gpu/drm/radeon/si.c linux-nvidia-tegra-5.15.0/drivers/gpu/drm/radeon/si.c --- linux-nvidia-tegra-5.15.0/drivers/gpu/drm/radeon/si.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/gpu/drm/rockchip/cdn-dp-core.c linux-nvidia-tegra-5.15.0/drivers/gpu/drm/rockchip/cdn-dp-core.c --- linux-nvidia-tegra-5.15.0/drivers/gpu/drm/rockchip/cdn-dp-core.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/gpu/drm/rockchip/rockchip_drm_gem.c linux-nvidia-tegra-5.15.0/drivers/gpu/drm/rockchip/rockchip_drm_gem.c --- linux-nvidia-tegra-5.15.0/drivers/gpu/drm/rockchip/rockchip_drm_gem.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/gpu/drm/rockchip/rockchip_drm_vop.c linux-nvidia-tegra-5.15.0/drivers/gpu/drm/rockchip/rockchip_drm_vop.c --- linux-nvidia-tegra-5.15.0/drivers/gpu/drm/rockchip/rockchip_drm_vop.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/gpu/drm/sun4i/sun4i_drv.c linux-nvidia-tegra-5.15.0/drivers/gpu/drm/sun4i/sun4i_drv.c --- linux-nvidia-tegra-5.15.0/drivers/gpu/drm/sun4i/sun4i_drv.c +++ linux-nvidia-tegra-5.15.0/drivers/gpu/drm/sun4i/sun4i_drv.c @@ -416,6 +416,11 @@ return 0; } +static void sun4i_drv_shutdown(struct platform_device *pdev) +{ + drm_atomic_helper_shutdown(platform_get_drvdata(pdev)); +} + static const struct of_device_id sun4i_drv_of_table[] = { { .compatible = "allwinner,sun4i-a10-display-engine" }, { .compatible = "allwinner,sun5i-a10s-display-engine" }, @@ -439,6 +444,7 @@ static struct platform_driver sun4i_drv_platform_driver = { .probe = sun4i_drv_probe, .remove = sun4i_drv_remove, + .shutdown = sun4i_drv_shutdown, .driver = { .name = "sun4i-drm", .of_match_table = sun4i_drv_of_table, diff -u linux-nvidia-tegra-5.15.0/drivers/gpu/drm/tiny/bochs.c linux-nvidia-tegra-5.15.0/drivers/gpu/drm/tiny/bochs.c --- linux-nvidia-tegra-5.15.0/drivers/gpu/drm/tiny/bochs.c +++ linux-nvidia-tegra-5.15.0/drivers/gpu/drm/tiny/bochs.c @@ -682,6 +682,11 @@ drm_dev_put(dev); } +static void bochs_pci_shutdown(struct pci_dev *pdev) +{ + drm_atomic_helper_shutdown(pci_get_drvdata(pdev)); +} + static const struct pci_device_id bochs_pci_tbl[] = { { .vendor = 0x1234, @@ -705,6 +710,7 @@ .id_table = bochs_pci_tbl, .probe = bochs_pci_probe, .remove = bochs_pci_remove, + .shutdown = bochs_pci_shutdown, .driver.pm = &bochs_pm_ops, }; diff -u linux-nvidia-tegra-5.15.0/drivers/gpu/drm/tiny/cirrus.c linux-nvidia-tegra-5.15.0/drivers/gpu/drm/tiny/cirrus.c --- linux-nvidia-tegra-5.15.0/drivers/gpu/drm/tiny/cirrus.c +++ linux-nvidia-tegra-5.15.0/drivers/gpu/drm/tiny/cirrus.c @@ -613,6 +613,11 @@ drm_atomic_helper_shutdown(dev); } +static void cirrus_pci_shutdown(struct pci_dev *pdev) +{ + drm_atomic_helper_shutdown(pci_get_drvdata(pdev)); +} + static const struct pci_device_id pciidlist[] = { { .vendor = PCI_VENDOR_ID_CIRRUS, @@ -634,6 +639,7 @@ .id_table = pciidlist, .probe = cirrus_pci_probe, .remove = cirrus_pci_remove, + .shutdown = cirrus_pci_shutdown, }; static int __init cirrus_init(void) diff -u linux-nvidia-tegra-5.15.0/drivers/hid/hid-asus.c linux-nvidia-tegra-5.15.0/drivers/hid/hid-asus.c --- linux-nvidia-tegra-5.15.0/drivers/hid/hid-asus.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/hid/hid-core.c linux-nvidia-tegra-5.15.0/drivers/hid/hid-core.c --- linux-nvidia-tegra-5.15.0/drivers/hid/hid-core.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/hid/hid-cp2112.c linux-nvidia-tegra-5.15.0/drivers/hid/hid-cp2112.c --- linux-nvidia-tegra-5.15.0/drivers/hid/hid-cp2112.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/hid/hid-debug.c linux-nvidia-tegra-5.15.0/drivers/hid/hid-debug.c --- linux-nvidia-tegra-5.15.0/drivers/hid/hid-debug.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/hid/hid-holtek-kbd.c linux-nvidia-tegra-5.15.0/drivers/hid/hid-holtek-kbd.c --- linux-nvidia-tegra-5.15.0/drivers/hid/hid-holtek-kbd.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/hid/hid-ids.h linux-nvidia-tegra-5.15.0/drivers/hid/hid-ids.h --- linux-nvidia-tegra-5.15.0/drivers/hid/hid-ids.h +++ linux-nvidia-tegra-5.15.0/drivers/hid/hid-ids.h @@ -350,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 @@ -482,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 @@ -708,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 @@ -1094,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-nvidia-tegra-5.15.0/drivers/hid/hid-logitech-hidpp.c linux-nvidia-tegra-5.15.0/drivers/hid/hid-logitech-hidpp.c --- linux-nvidia-tegra-5.15.0/drivers/hid/hid-logitech-hidpp.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/hid/hid-multitouch.c linux-nvidia-tegra-5.15.0/drivers/hid/hid-multitouch.c --- linux-nvidia-tegra-5.15.0/drivers/hid/hid-multitouch.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/hid/hid-quirks.c linux-nvidia-tegra-5.15.0/drivers/hid/hid-quirks.c --- linux-nvidia-tegra-5.15.0/drivers/hid/hid-quirks.c +++ linux-nvidia-tegra-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 }, @@ -67,6 +68,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 }, diff -u linux-nvidia-tegra-5.15.0/drivers/hid/wacom_wac.c linux-nvidia-tegra-5.15.0/drivers/hid/wacom_wac.c --- linux-nvidia-tegra-5.15.0/drivers/hid/wacom_wac.c +++ linux-nvidia-tegra-5.15.0/drivers/hid/wacom_wac.c @@ -2623,8 +2623,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 +2674,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 +2724,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-nvidia-tegra-5.15.0/drivers/hte/hte-tegra194-test.c linux-nvidia-tegra-5.15.0/drivers/hte/hte-tegra194-test.c --- linux-nvidia-tegra-5.15.0/drivers/hte/hte-tegra194-test.c +++ linux-nvidia-tegra-5.15.0/drivers/hte/hte-tegra194-test.c @@ -6,17 +6,17 @@ */ #include -#include -#include +#include +#include #include -#include -#include +#include +#include #include +#include #include -#include /* - * This sample HTE GPIO test driver demonstrates HTE API usage by enabling + * This sample HTE test driver demonstrates HTE API usage by enabling * hardware timestamp on gpio_in and specified LIC IRQ lines. * * Note: gpio_out and gpio_in need to be shorted externally in order for this diff -u linux-nvidia-tegra-5.15.0/drivers/hte/hte-tegra194.c linux-nvidia-tegra-5.15.0/drivers/hte/hte-tegra194.c --- linux-nvidia-tegra-5.15.0/drivers/hte/hte-tegra194.c +++ linux-nvidia-tegra-5.15.0/drivers/hte/hte-tegra194.c @@ -62,6 +62,10 @@ #define NV_AON_HTE_SLICE2_IRQ_GPIO_25 25 #define NV_AON_HTE_SLICE2_IRQ_GPIO_26 26 #define NV_AON_HTE_SLICE2_IRQ_GPIO_27 27 +#define NV_AON_HTE_SLICE2_IRQ_GPIO_28 28 +#define NV_AON_HTE_SLICE2_IRQ_GPIO_29 29 +#define NV_AON_HTE_SLICE2_IRQ_GPIO_30 30 +#define NV_AON_HTE_SLICE2_IRQ_GPIO_31 31 #define HTE_TECTRL 0x0 #define HTE_TETSCH 0x4 @@ -114,6 +118,7 @@ struct tegra_hte_data { enum tegra_hte_type type; + u32 slices; u32 map_sz; u32 sec_map_sz; const struct tegra_hte_line_mapped *map; @@ -220,18 +225,129 @@ [39] = {NV_AON_SLICE_INVALID, 0}, }; -static const struct tegra_hte_data aon_hte = { +static const struct tegra_hte_line_mapped tegra234_aon_gpio_map[] = { + /* gpio, slice, bit_index */ + /* AA port */ + [0] = {2, NV_AON_HTE_SLICE2_IRQ_GPIO_11}, + [1] = {2, NV_AON_HTE_SLICE2_IRQ_GPIO_10}, + [2] = {2, NV_AON_HTE_SLICE2_IRQ_GPIO_9}, + [3] = {2, NV_AON_HTE_SLICE2_IRQ_GPIO_8}, + [4] = {2, NV_AON_HTE_SLICE2_IRQ_GPIO_7}, + [5] = {2, NV_AON_HTE_SLICE2_IRQ_GPIO_6}, + [6] = {2, NV_AON_HTE_SLICE2_IRQ_GPIO_5}, + [7] = {2, NV_AON_HTE_SLICE2_IRQ_GPIO_4}, + /* BB port */ + [8] = {2, NV_AON_HTE_SLICE2_IRQ_GPIO_3}, + [9] = {2, NV_AON_HTE_SLICE2_IRQ_GPIO_2}, + [10] = {2, NV_AON_HTE_SLICE2_IRQ_GPIO_1}, + [11] = {2, NV_AON_HTE_SLICE2_IRQ_GPIO_0}, + /* CC port */ + [12] = {2, NV_AON_HTE_SLICE2_IRQ_GPIO_22}, + [13] = {2, NV_AON_HTE_SLICE2_IRQ_GPIO_21}, + [14] = {2, NV_AON_HTE_SLICE2_IRQ_GPIO_20}, + [15] = {2, NV_AON_HTE_SLICE2_IRQ_GPIO_19}, + [16] = {2, NV_AON_HTE_SLICE2_IRQ_GPIO_18}, + [17] = {2, NV_AON_HTE_SLICE2_IRQ_GPIO_17}, + [18] = {2, NV_AON_HTE_SLICE2_IRQ_GPIO_16}, + [19] = {2, NV_AON_HTE_SLICE2_IRQ_GPIO_15}, + /* DD port */ + [20] = {2, NV_AON_HTE_SLICE2_IRQ_GPIO_14}, + [21] = {2, NV_AON_HTE_SLICE2_IRQ_GPIO_13}, + [22] = {2, NV_AON_HTE_SLICE2_IRQ_GPIO_12}, + /* EE port */ + [23] = {2, NV_AON_HTE_SLICE2_IRQ_GPIO_31}, + [24] = {2, NV_AON_HTE_SLICE2_IRQ_GPIO_30}, + [25] = {2, NV_AON_HTE_SLICE2_IRQ_GPIO_29}, + [26] = {2, NV_AON_HTE_SLICE2_IRQ_GPIO_28}, + [27] = {2, NV_AON_HTE_SLICE2_IRQ_GPIO_27}, + [28] = {2, NV_AON_HTE_SLICE2_IRQ_GPIO_26}, + [29] = {2, NV_AON_HTE_SLICE2_IRQ_GPIO_25}, + [30] = {2, NV_AON_HTE_SLICE2_IRQ_GPIO_24}, + /* GG port */ + [31] = {2, NV_AON_HTE_SLICE2_IRQ_GPIO_23}, +}; + +static const struct tegra_hte_line_mapped tegra234_aon_gpio_sec_map[] = { + /* gpio, slice, bit_index */ + /* AA port */ + [0] = {2, NV_AON_HTE_SLICE2_IRQ_GPIO_11}, + [1] = {2, NV_AON_HTE_SLICE2_IRQ_GPIO_10}, + [2] = {2, NV_AON_HTE_SLICE2_IRQ_GPIO_9}, + [3] = {2, NV_AON_HTE_SLICE2_IRQ_GPIO_8}, + [4] = {2, NV_AON_HTE_SLICE2_IRQ_GPIO_7}, + [5] = {2, NV_AON_HTE_SLICE2_IRQ_GPIO_6}, + [6] = {2, NV_AON_HTE_SLICE2_IRQ_GPIO_5}, + [7] = {2, NV_AON_HTE_SLICE2_IRQ_GPIO_4}, + /* BB port */ + [8] = {2, NV_AON_HTE_SLICE2_IRQ_GPIO_3}, + [9] = {2, NV_AON_HTE_SLICE2_IRQ_GPIO_2}, + [10] = {2, NV_AON_HTE_SLICE2_IRQ_GPIO_1}, + [11] = {2, NV_AON_HTE_SLICE2_IRQ_GPIO_0}, + [12] = {NV_AON_SLICE_INVALID, 0}, + [13] = {NV_AON_SLICE_INVALID, 0}, + [14] = {NV_AON_SLICE_INVALID, 0}, + [15] = {NV_AON_SLICE_INVALID, 0}, + /* CC port */ + [16] = {2, NV_AON_HTE_SLICE2_IRQ_GPIO_22}, + [17] = {2, NV_AON_HTE_SLICE2_IRQ_GPIO_21}, + [18] = {2, NV_AON_HTE_SLICE2_IRQ_GPIO_20}, + [19] = {2, NV_AON_HTE_SLICE2_IRQ_GPIO_19}, + [20] = {2, NV_AON_HTE_SLICE2_IRQ_GPIO_18}, + [21] = {2, NV_AON_HTE_SLICE2_IRQ_GPIO_17}, + [22] = {2, NV_AON_HTE_SLICE2_IRQ_GPIO_16}, + [23] = {2, NV_AON_HTE_SLICE2_IRQ_GPIO_15}, + /* DD port */ + [24] = {2, NV_AON_HTE_SLICE2_IRQ_GPIO_14}, + [25] = {2, NV_AON_HTE_SLICE2_IRQ_GPIO_13}, + [26] = {2, NV_AON_HTE_SLICE2_IRQ_GPIO_12}, + [27] = {NV_AON_SLICE_INVALID, 0}, + [28] = {NV_AON_SLICE_INVALID, 0}, + [29] = {NV_AON_SLICE_INVALID, 0}, + [30] = {NV_AON_SLICE_INVALID, 0}, + [31] = {NV_AON_SLICE_INVALID, 0}, + /* EE port */ + [32] = {2, NV_AON_HTE_SLICE2_IRQ_GPIO_31}, + [33] = {2, NV_AON_HTE_SLICE2_IRQ_GPIO_30}, + [34] = {2, NV_AON_HTE_SLICE2_IRQ_GPIO_29}, + [35] = {2, NV_AON_HTE_SLICE2_IRQ_GPIO_28}, + [36] = {2, NV_AON_HTE_SLICE2_IRQ_GPIO_27}, + [37] = {2, NV_AON_HTE_SLICE2_IRQ_GPIO_26}, + [38] = {2, NV_AON_HTE_SLICE2_IRQ_GPIO_25}, + [39] = {2, NV_AON_HTE_SLICE2_IRQ_GPIO_24}, + /* GG port */ + [40] = {2, NV_AON_HTE_SLICE2_IRQ_GPIO_23}, +}; + +static const struct tegra_hte_data t194_aon_hte = { .map_sz = ARRAY_SIZE(tegra194_aon_gpio_map), .map = tegra194_aon_gpio_map, .sec_map_sz = ARRAY_SIZE(tegra194_aon_gpio_sec_map), .sec_map = tegra194_aon_gpio_sec_map, .type = HTE_TEGRA_TYPE_GPIO, + .slices = 3, }; -static const struct tegra_hte_data lic_hte = { +static const struct tegra_hte_data t234_aon_hte = { + .map_sz = ARRAY_SIZE(tegra234_aon_gpio_map), + .map = tegra234_aon_gpio_map, + .sec_map_sz = ARRAY_SIZE(tegra234_aon_gpio_sec_map), + .sec_map = tegra234_aon_gpio_sec_map, + .type = HTE_TEGRA_TYPE_GPIO, + .slices = 3, +}; + +static const struct tegra_hte_data t194_lic_hte = { + .map_sz = 0, + .map = NULL, + .type = HTE_TEGRA_TYPE_LIC, + .slices = 11, +}; + +static const struct tegra_hte_data t234_lic_hte = { .map_sz = 0, .map = NULL, .type = HTE_TEGRA_TYPE_LIC, + .slices = 17, }; static inline u32 tegra_hte_readl(struct tegra_hte_soc *hte, u32 reg) @@ -251,7 +367,7 @@ { if (m) { - if (eid > map_sz) + if (eid >= map_sz) return -EINVAL; if (m[eid].slice == NV_AON_SLICE_INVALID) return -EINVAL; @@ -534,8 +650,10 @@ } static const struct of_device_id tegra_hte_of_match[] = { - { .compatible = "nvidia,tegra194-gte-lic", .data = &lic_hte}, - { .compatible = "nvidia,tegra194-gte-aon", .data = &aon_hte}, + { .compatible = "nvidia,tegra194-gte-lic", .data = &t194_lic_hte}, + { .compatible = "nvidia,tegra194-gte-aon", .data = &t194_aon_hte}, + { .compatible = "nvidia,tegra234-gte-lic", .data = &t234_lic_hte}, + { .compatible = "nvidia,tegra234-gte-aon", .data = &t234_aon_hte}, { } }; MODULE_DEVICE_TABLE(of, tegra_hte_of_match); @@ -561,6 +679,11 @@ return !strcmp(chip->label, data); } +static int tegra_get_gpiochip_from_of_node(struct gpio_chip *chip, void *data) +{ + return chip->of_node == data; +} + static int tegra_hte_probe(struct platform_device *pdev) { int ret; @@ -569,16 +692,10 @@ struct device *dev; struct tegra_hte_soc *hte_dev; struct hte_chip *gc; + struct device_node *gpio_ctrl; dev = &pdev->dev; - ret = of_property_read_u32(dev->of_node, "nvidia,slices", &slices); - if (ret != 0) { - dev_err(dev, "Could not read slices\n"); - return -EINVAL; - } - nlines = slices << 5; - hte_dev = devm_kzalloc(dev, sizeof(*hte_dev), GFP_KERNEL); if (!hte_dev) return -ENOMEM; @@ -590,6 +707,13 @@ dev_set_drvdata(&pdev->dev, hte_dev); hte_dev->prov_data = of_device_get_match_data(&pdev->dev); + ret = of_property_read_u32(dev->of_node, "nvidia,slices", &slices); + if (ret != 0) + slices = hte_dev->prov_data->slices; + + dev_dbg(dev, "slices:%d\n", slices); + nlines = slices << 5; + hte_dev->regs = devm_platform_ioremap_resource(pdev, 0); if (IS_ERR(hte_dev->regs)) return PTR_ERR(hte_dev->regs); @@ -635,8 +759,25 @@ gc->match_from_linedata = tegra_hte_match_from_linedata; - hte_dev->c = gpiochip_find("tegra194-gpio-aon", - tegra_get_gpiochip_from_name); + if (of_device_is_compatible(dev->of_node, + "nvidia,tegra194-gte-aon")) { + hte_dev->c = gpiochip_find("tegra194-gpio-aon", + tegra_get_gpiochip_from_name); + } else { + gpio_ctrl = of_parse_phandle(dev->of_node, + "nvidia,gpio-controller", + 0); + if (!gpio_ctrl) { + dev_err(dev, + "gpio controller node not found\n"); + return -ENODEV; + } + + hte_dev->c = gpiochip_find(gpio_ctrl, + tegra_get_gpiochip_from_of_node); + of_node_put(gpio_ctrl); + } + if (!hte_dev->c) return dev_err_probe(dev, -EPROBE_DEFER, "wait for gpio controller\n"); diff -u linux-nvidia-tegra-5.15.0/drivers/hte/hte.c linux-nvidia-tegra-5.15.0/drivers/hte/hte.c --- linux-nvidia-tegra-5.15.0/drivers/hte/hte.c +++ linux-nvidia-tegra-5.15.0/drivers/hte/hte.c @@ -444,7 +444,7 @@ list_for_each_entry(gdev, &hte_devices, list) if (gdev->chip && gdev->chip->dev && - gdev->chip->dev->of_node == np) { + device_match_of_node(gdev->chip->dev, np)) { spin_unlock(&hte_lock); return gdev; } diff -u linux-nvidia-tegra-5.15.0/drivers/hwmon/coretemp.c linux-nvidia-tegra-5.15.0/drivers/hwmon/coretemp.c --- linux-nvidia-tegra-5.15.0/drivers/hwmon/coretemp.c +++ linux-nvidia-tegra-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) diff -u linux-nvidia-tegra-5.15.0/drivers/hwmon/corsair-psu.c linux-nvidia-tegra-5.15.0/drivers/hwmon/corsair-psu.c --- linux-nvidia-tegra-5.15.0/drivers/hwmon/corsair-psu.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/hwtracing/coresight/coresight-etm4x-core.c linux-nvidia-tegra-5.15.0/drivers/hwtracing/coresight/coresight-etm4x-core.c --- linux-nvidia-tegra-5.15.0/drivers/hwtracing/coresight/coresight-etm4x-core.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/hwtracing/coresight/coresight-etm4x.h linux-nvidia-tegra-5.15.0/drivers/hwtracing/coresight/coresight-etm4x.h --- linux-nvidia-tegra-5.15.0/drivers/hwtracing/coresight/coresight-etm4x.h +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/i2c/busses/i2c-aspeed.c linux-nvidia-tegra-5.15.0/drivers/i2c/busses/i2c-aspeed.c --- linux-nvidia-tegra-5.15.0/drivers/i2c/busses/i2c-aspeed.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/i2c/busses/i2c-bcm-iproc.c linux-nvidia-tegra-5.15.0/drivers/i2c/busses/i2c-bcm-iproc.c --- linux-nvidia-tegra-5.15.0/drivers/i2c/busses/i2c-bcm-iproc.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/i2c/busses/i2c-designware-common.c linux-nvidia-tegra-5.15.0/drivers/i2c/busses/i2c-designware-common.c --- linux-nvidia-tegra-5.15.0/drivers/i2c/busses/i2c-designware-common.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/i2c/busses/i2c-designware-master.c linux-nvidia-tegra-5.15.0/drivers/i2c/busses/i2c-designware-master.c --- linux-nvidia-tegra-5.15.0/drivers/i2c/busses/i2c-designware-master.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/i2c/busses/i2c-i801.c linux-nvidia-tegra-5.15.0/drivers/i2c/busses/i2c-i801.c --- linux-nvidia-tegra-5.15.0/drivers/i2c/busses/i2c-i801.c +++ linux-nvidia-tegra-5.15.0/drivers/i2c/busses/i2c-i801.c @@ -702,15 +702,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 +729,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)); diff -u linux-nvidia-tegra-5.15.0/drivers/i2c/busses/i2c-rk3x.c linux-nvidia-tegra-5.15.0/drivers/i2c/busses/i2c-rk3x.c --- linux-nvidia-tegra-5.15.0/drivers/i2c/busses/i2c-rk3x.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/i2c/busses/i2c-stm32f7.c linux-nvidia-tegra-5.15.0/drivers/i2c/busses/i2c-stm32f7.c --- linux-nvidia-tegra-5.15.0/drivers/i2c/busses/i2c-stm32f7.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/i2c/i2c-dev.c linux-nvidia-tegra-5.15.0/drivers/i2c/i2c-dev.c --- linux-nvidia-tegra-5.15.0/drivers/i2c/i2c-dev.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/i2c/muxes/i2c-demux-pinctrl.c linux-nvidia-tegra-5.15.0/drivers/i2c/muxes/i2c-demux-pinctrl.c --- linux-nvidia-tegra-5.15.0/drivers/i2c/muxes/i2c-demux-pinctrl.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/i2c/muxes/i2c-mux-gpmux.c linux-nvidia-tegra-5.15.0/drivers/i2c/muxes/i2c-mux-gpmux.c --- linux-nvidia-tegra-5.15.0/drivers/i2c/muxes/i2c-mux-gpmux.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/i3c/master.c linux-nvidia-tegra-5.15.0/drivers/i3c/master.c --- linux-nvidia-tegra-5.15.0/drivers/i3c/master.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/i3c/master/mipi-i3c-hci/dat_v1.c linux-nvidia-tegra-5.15.0/drivers/i3c/master/mipi-i3c-hci/dat_v1.c --- linux-nvidia-tegra-5.15.0/drivers/i3c/master/mipi-i3c-hci/dat_v1.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/i3c/master/svc-i3c-master.c linux-nvidia-tegra-5.15.0/drivers/i3c/master/svc-i3c-master.c --- linux-nvidia-tegra-5.15.0/drivers/i3c/master/svc-i3c-master.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/iio/accel/bmc150-accel-core.c linux-nvidia-tegra-5.15.0/drivers/iio/accel/bmc150-accel-core.c --- linux-nvidia-tegra-5.15.0/drivers/iio/accel/bmc150-accel-core.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/iio/adc/ad7192.c linux-nvidia-tegra-5.15.0/drivers/iio/adc/ad7192.c --- linux-nvidia-tegra-5.15.0/drivers/iio/adc/ad7192.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/iio/adc/adi-axi-adc.c linux-nvidia-tegra-5.15.0/drivers/iio/adc/adi-axi-adc.c --- linux-nvidia-tegra-5.15.0/drivers/iio/adc/adi-axi-adc.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/iio/adc/at91-sama5d2_adc.c linux-nvidia-tegra-5.15.0/drivers/iio/adc/at91-sama5d2_adc.c --- linux-nvidia-tegra-5.15.0/drivers/iio/adc/at91-sama5d2_adc.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/iio/afe/iio-rescale.c linux-nvidia-tegra-5.15.0/drivers/iio/afe/iio-rescale.c --- linux-nvidia-tegra-5.15.0/drivers/iio/afe/iio-rescale.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core.c linux-nvidia-tegra-5.15.0/drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core.c --- linux-nvidia-tegra-5.15.0/drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/iio/imu/adis16475.c linux-nvidia-tegra-5.15.0/drivers/iio/imu/adis16475.c --- linux-nvidia-tegra-5.15.0/drivers/iio/imu/adis16475.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/iio/industrialio-core.c linux-nvidia-tegra-5.15.0/drivers/iio/industrialio-core.c --- linux-nvidia-tegra-5.15.0/drivers/iio/industrialio-core.c +++ linux-nvidia-tegra-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 @@ -2072,6 +2084,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-nvidia-tegra-5.15.0/drivers/infiniband/core/device.c linux-nvidia-tegra-5.15.0/drivers/infiniband/core/device.c --- linux-nvidia-tegra-5.15.0/drivers/infiniband/core/device.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/infiniband/core/sysfs.c linux-nvidia-tegra-5.15.0/drivers/infiniband/core/sysfs.c --- linux-nvidia-tegra-5.15.0/drivers/infiniband/core/sysfs.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/infiniband/core/umem.c linux-nvidia-tegra-5.15.0/drivers/infiniband/core/umem.c --- linux-nvidia-tegra-5.15.0/drivers/infiniband/core/umem.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/infiniband/core/user_mad.c linux-nvidia-tegra-5.15.0/drivers/infiniband/core/user_mad.c --- linux-nvidia-tegra-5.15.0/drivers/infiniband/core/user_mad.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/infiniband/hw/bnxt_re/main.c linux-nvidia-tegra-5.15.0/drivers/infiniband/hw/bnxt_re/main.c --- linux-nvidia-tegra-5.15.0/drivers/infiniband/hw/bnxt_re/main.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/infiniband/hw/hns/hns_roce_hw_v2.c linux-nvidia-tegra-5.15.0/drivers/infiniband/hw/hns/hns_roce_hw_v2.c --- linux-nvidia-tegra-5.15.0/drivers/infiniband/hw/hns/hns_roce_hw_v2.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/infiniband/hw/hns/hns_roce_qp.c linux-nvidia-tegra-5.15.0/drivers/infiniband/hw/hns/hns_roce_qp.c --- linux-nvidia-tegra-5.15.0/drivers/infiniband/hw/hns/hns_roce_qp.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/infiniband/hw/irdma/hw.c linux-nvidia-tegra-5.15.0/drivers/infiniband/hw/irdma/hw.c --- linux-nvidia-tegra-5.15.0/drivers/infiniband/hw/irdma/hw.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/infiniband/hw/irdma/main.c linux-nvidia-tegra-5.15.0/drivers/infiniband/hw/irdma/main.c --- linux-nvidia-tegra-5.15.0/drivers/infiniband/hw/irdma/main.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/infiniband/hw/irdma/main.h linux-nvidia-tegra-5.15.0/drivers/infiniband/hw/irdma/main.h --- linux-nvidia-tegra-5.15.0/drivers/infiniband/hw/irdma/main.h +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/infiniband/hw/irdma/verbs.c linux-nvidia-tegra-5.15.0/drivers/infiniband/hw/irdma/verbs.c --- linux-nvidia-tegra-5.15.0/drivers/infiniband/hw/irdma/verbs.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/infiniband/hw/irdma/verbs.h linux-nvidia-tegra-5.15.0/drivers/infiniband/hw/irdma/verbs.h --- linux-nvidia-tegra-5.15.0/drivers/infiniband/hw/irdma/verbs.h +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/infiniband/hw/mlx5/qp.c linux-nvidia-tegra-5.15.0/drivers/infiniband/hw/mlx5/qp.c --- linux-nvidia-tegra-5.15.0/drivers/infiniband/hw/mlx5/qp.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/infiniband/ulp/rtrs/rtrs-clt.c linux-nvidia-tegra-5.15.0/drivers/infiniband/ulp/rtrs/rtrs-clt.c --- linux-nvidia-tegra-5.15.0/drivers/infiniband/ulp/rtrs/rtrs-clt.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/infiniband/ulp/rtrs/rtrs-srv.c linux-nvidia-tegra-5.15.0/drivers/infiniband/ulp/rtrs/rtrs-srv.c --- linux-nvidia-tegra-5.15.0/drivers/infiniband/ulp/rtrs/rtrs-srv.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/input/joystick/xpad.c linux-nvidia-tegra-5.15.0/drivers/input/joystick/xpad.c --- linux-nvidia-tegra-5.15.0/drivers/input/joystick/xpad.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/input/misc/soc_button_array.c linux-nvidia-tegra-5.15.0/drivers/input/misc/soc_button_array.c --- linux-nvidia-tegra-5.15.0/drivers/input/misc/soc_button_array.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/input/mouse/synaptics.c linux-nvidia-tegra-5.15.0/drivers/input/mouse/synaptics.c --- linux-nvidia-tegra-5.15.0/drivers/input/mouse/synaptics.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/input/serio/i8042-acpipnpio.h linux-nvidia-tegra-5.15.0/drivers/input/serio/i8042-acpipnpio.h --- linux-nvidia-tegra-5.15.0/drivers/input/serio/i8042-acpipnpio.h +++ linux-nvidia-tegra-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."), diff -u linux-nvidia-tegra-5.15.0/drivers/interconnect/core.c linux-nvidia-tegra-5.15.0/drivers/interconnect/core.c --- linux-nvidia-tegra-5.15.0/drivers/interconnect/core.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/iommu/arm/arm-smmu/arm-smmu-qcom.c linux-nvidia-tegra-5.15.0/drivers/iommu/arm/arm-smmu/arm-smmu-qcom.c --- linux-nvidia-tegra-5.15.0/drivers/iommu/arm/arm-smmu/arm-smmu-qcom.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/iommu/dma-iommu.c linux-nvidia-tegra-5.15.0/drivers/iommu/dma-iommu.c --- linux-nvidia-tegra-5.15.0/drivers/iommu/dma-iommu.c +++ linux-nvidia-tegra-5.15.0/drivers/iommu/dma-iommu.c @@ -26,6 +26,7 @@ #include #include #include +#include struct iommu_dma_msi_page { struct list_head list; @@ -821,6 +822,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-nvidia-tegra-5.15.0/drivers/iommu/intel/dmar.c linux-nvidia-tegra-5.15.0/drivers/iommu/intel/dmar.c --- linux-nvidia-tegra-5.15.0/drivers/iommu/intel/dmar.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/iommu/intel/iommu.c linux-nvidia-tegra-5.15.0/drivers/iommu/intel/iommu.c --- linux-nvidia-tegra-5.15.0/drivers/iommu/intel/iommu.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/leds/Kconfig linux-nvidia-tegra-5.15.0/drivers/leds/Kconfig --- linux-nvidia-tegra-5.15.0/drivers/leds/Kconfig +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/leds/leds-pwm.c linux-nvidia-tegra-5.15.0/drivers/leds/leds-pwm.c --- linux-nvidia-tegra-5.15.0/drivers/leds/leds-pwm.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/leds/trigger/ledtrig-tty.c linux-nvidia-tegra-5.15.0/drivers/leds/trigger/ledtrig-tty.c --- linux-nvidia-tegra-5.15.0/drivers/leds/trigger/ledtrig-tty.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/mcb/mcb-core.c linux-nvidia-tegra-5.15.0/drivers/mcb/mcb-core.c --- linux-nvidia-tegra-5.15.0/drivers/mcb/mcb-core.c +++ linux-nvidia-tegra-5.15.0/drivers/mcb/mcb-core.c @@ -246,6 +246,7 @@ return 0; out: + put_device(&dev->dev); return ret; } diff -u linux-nvidia-tegra-5.15.0/drivers/mcb/mcb-parse.c linux-nvidia-tegra-5.15.0/drivers/mcb/mcb-parse.c --- linux-nvidia-tegra-5.15.0/drivers/mcb/mcb-parse.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/md/bcache/btree.c linux-nvidia-tegra-5.15.0/drivers/md/bcache/btree.c --- linux-nvidia-tegra-5.15.0/drivers/md/bcache/btree.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/md/bcache/super.c linux-nvidia-tegra-5.15.0/drivers/md/bcache/super.c --- linux-nvidia-tegra-5.15.0/drivers/md/bcache/super.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/md/bcache/writeback.c linux-nvidia-tegra-5.15.0/drivers/md/bcache/writeback.c --- linux-nvidia-tegra-5.15.0/drivers/md/bcache/writeback.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/md/dm-core.h linux-nvidia-tegra-5.15.0/drivers/md/dm-core.h --- linux-nvidia-tegra-5.15.0/drivers/md/dm-core.h +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/md/dm-integrity.c linux-nvidia-tegra-5.15.0/drivers/md/dm-integrity.c --- linux-nvidia-tegra-5.15.0/drivers/md/dm-integrity.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/md/dm-ioctl.c linux-nvidia-tegra-5.15.0/drivers/md/dm-ioctl.c --- linux-nvidia-tegra-5.15.0/drivers/md/dm-ioctl.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/md/dm-table.c linux-nvidia-tegra-5.15.0/drivers/md/dm-table.c --- linux-nvidia-tegra-5.15.0/drivers/md/dm-table.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/md/dm-verity-target.c linux-nvidia-tegra-5.15.0/drivers/md/dm-verity-target.c --- linux-nvidia-tegra-5.15.0/drivers/md/dm-verity-target.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/md/md.c linux-nvidia-tegra-5.15.0/drivers/md/md.c --- linux-nvidia-tegra-5.15.0/drivers/md/md.c +++ linux-nvidia-tegra-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); @@ -2680,7 +2692,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; @@ -3953,7 +3965,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 +4171,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 +4280,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 +4403,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 +4445,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 +4490,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 +4531,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 +4832,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 +4905,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 +5137,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 +5853,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 +5957,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 +6033,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 +6052,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 +6142,7 @@ return -ENXIO; if (!mddev->pers) return -EINVAL; - if (!mddev->ro) + if (md_is_rdwr(mddev)) return -EBUSY; rcu_read_lock(); @@ -6149,7 +6161,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 +6188,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 +6239,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 +6311,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 +6326,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 +6338,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 +6410,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 +6427,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); /* @@ -7226,7 +7240,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 +7270,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 +7694,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 +7798,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 +8260,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 +8522,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 +8576,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 +8640,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 +8681,7 @@ { if (!mddev->pers) return; - if (mddev->ro) + if (!md_is_rdwr(mddev)) return; if (!mddev->pers->sync_request) return; @@ -8716,7 +8730,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 +9198,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 +9298,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-nvidia-tegra-5.15.0/drivers/media/dvb-core/dvbdev.c linux-nvidia-tegra-5.15.0/drivers/media/dvb-core/dvbdev.c --- linux-nvidia-tegra-5.15.0/drivers/media/dvb-core/dvbdev.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/media/dvb-frontends/m88ds3103.c linux-nvidia-tegra-5.15.0/drivers/media/dvb-frontends/m88ds3103.c --- linux-nvidia-tegra-5.15.0/drivers/media/dvb-frontends/m88ds3103.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/media/i2c/ccs/ccs-core.c linux-nvidia-tegra-5.15.0/drivers/media/i2c/ccs/ccs-core.c --- linux-nvidia-tegra-5.15.0/drivers/media/i2c/ccs/ccs-core.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/media/i2c/max9286.c linux-nvidia-tegra-5.15.0/drivers/media/i2c/max9286.c --- linux-nvidia-tegra-5.15.0/drivers/media/i2c/max9286.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/media/pci/bt8xx/bttv-driver.c linux-nvidia-tegra-5.15.0/drivers/media/pci/bt8xx/bttv-driver.c --- linux-nvidia-tegra-5.15.0/drivers/media/pci/bt8xx/bttv-driver.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/media/platform/qcom/camss/camss-csid-170.c linux-nvidia-tegra-5.15.0/drivers/media/platform/qcom/camss/camss-csid-170.c --- linux-nvidia-tegra-5.15.0/drivers/media/platform/qcom/camss/camss-csid-170.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/media/platform/qcom/camss/camss-vfe-170.c linux-nvidia-tegra-5.15.0/drivers/media/platform/qcom/camss/camss-vfe-170.c --- linux-nvidia-tegra-5.15.0/drivers/media/platform/qcom/camss/camss-vfe-170.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/media/platform/qcom/venus/hfi_venus.c linux-nvidia-tegra-5.15.0/drivers/media/platform/qcom/venus/hfi_venus.c --- linux-nvidia-tegra-5.15.0/drivers/media/platform/qcom/venus/hfi_venus.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/media/platform/rockchip/rkisp1/rkisp1-dev.c linux-nvidia-tegra-5.15.0/drivers/media/platform/rockchip/rkisp1/rkisp1-dev.c --- linux-nvidia-tegra-5.15.0/drivers/media/platform/rockchip/rkisp1/rkisp1-dev.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/media/rc/imon.c linux-nvidia-tegra-5.15.0/drivers/media/rc/imon.c --- linux-nvidia-tegra-5.15.0/drivers/media/rc/imon.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/media/usb/dvb-usb-v2/af9035.c linux-nvidia-tegra-5.15.0/drivers/media/usb/dvb-usb-v2/af9035.c --- linux-nvidia-tegra-5.15.0/drivers/media/usb/dvb-usb-v2/af9035.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/mfd/dln2.c linux-nvidia-tegra-5.15.0/drivers/mfd/dln2.c --- linux-nvidia-tegra-5.15.0/drivers/mfd/dln2.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/mfd/mfd-core.c linux-nvidia-tegra-5.15.0/drivers/mfd/mfd-core.c --- linux-nvidia-tegra-5.15.0/drivers/mfd/mfd-core.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/misc/fastrpc.c linux-nvidia-tegra-5.15.0/drivers/misc/fastrpc.c --- linux-nvidia-tegra-5.15.0/drivers/misc/fastrpc.c +++ linux-nvidia-tegra-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 */ diff -u linux-nvidia-tegra-5.15.0/drivers/misc/pci_endpoint_test.c linux-nvidia-tegra-5.15.0/drivers/misc/pci_endpoint_test.c --- linux-nvidia-tegra-5.15.0/drivers/misc/pci_endpoint_test.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/mmc/core/block.c linux-nvidia-tegra-5.15.0/drivers/mmc/core/block.c --- linux-nvidia-tegra-5.15.0/drivers/mmc/core/block.c +++ linux-nvidia-tegra-5.15.0/drivers/mmc/core/block.c @@ -839,9 +839,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 +857,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); @@ -1465,6 +1467,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 +3130,0 @@ - diff -u linux-nvidia-tegra-5.15.0/drivers/mmc/core/core.c linux-nvidia-tegra-5.15.0/drivers/mmc/core/core.c --- linux-nvidia-tegra-5.15.0/drivers/mmc/core/core.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/mmc/core/host.c linux-nvidia-tegra-5.15.0/drivers/mmc/core/host.c --- linux-nvidia-tegra-5.15.0/drivers/mmc/core/host.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/mmc/core/sdio.c linux-nvidia-tegra-5.15.0/drivers/mmc/core/sdio.c --- linux-nvidia-tegra-5.15.0/drivers/mmc/core/sdio.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/mmc/host/Kconfig linux-nvidia-tegra-5.15.0/drivers/mmc/host/Kconfig --- linux-nvidia-tegra-5.15.0/drivers/mmc/host/Kconfig +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/mmc/host/meson-gx-mmc.c linux-nvidia-tegra-5.15.0/drivers/mmc/host/meson-gx-mmc.c --- linux-nvidia-tegra-5.15.0/drivers/mmc/host/meson-gx-mmc.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/mmc/host/meson-mx-sdhc-mmc.c linux-nvidia-tegra-5.15.0/drivers/mmc/host/meson-mx-sdhc-mmc.c --- linux-nvidia-tegra-5.15.0/drivers/mmc/host/meson-mx-sdhc-mmc.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/mmc/host/mtk-sd.c linux-nvidia-tegra-5.15.0/drivers/mmc/host/mtk-sd.c --- linux-nvidia-tegra-5.15.0/drivers/mmc/host/mtk-sd.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/mmc/host/sdhci-pci-gli.c linux-nvidia-tegra-5.15.0/drivers/mmc/host/sdhci-pci-gli.c --- linux-nvidia-tegra-5.15.0/drivers/mmc/host/sdhci-pci-gli.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/mmc/host/sdhci-sprd.c linux-nvidia-tegra-5.15.0/drivers/mmc/host/sdhci-sprd.c --- linux-nvidia-tegra-5.15.0/drivers/mmc/host/sdhci-sprd.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/mmc/host/sdhci-tegra.c linux-nvidia-tegra-5.15.0/drivers/mmc/host/sdhci-tegra.c --- linux-nvidia-tegra-5.15.0/drivers/mmc/host/sdhci-tegra.c +++ linux-nvidia-tegra-5.15.0/drivers/mmc/host/sdhci-tegra.c @@ -339,7 +339,17 @@ if (!(tegra_host->soc_data->nvquirks & NVQUIRK_NEEDS_PAD_CONTROL)) return true; - if (IS_ERR(host->mmc->supply.vqmmc)) + /* + * T19x onwards, pad control is supported through PMC and does not depend on the + * VQMMC supplies. SDMMC pads are fed with always on 1.8v and 3.3V supplies that help + * to switch between the signaling voltages based on the PMC register field. + * Return true even if VQMMC regulator is not populated in the DT + */ + + if (PTR_ERR(host->mmc->supply.vqmmc) == -ENODEV) + return true; + + if (IS_ERR_OR_NULL(host->mmc->supply.vqmmc)) return false; has_1v8 = regulator_is_supported_voltage(host->mmc->supply.vqmmc, diff -u linux-nvidia-tegra-5.15.0/drivers/mmc/host/sdhci_am654.c linux-nvidia-tegra-5.15.0/drivers/mmc/host/sdhci_am654.c --- linux-nvidia-tegra-5.15.0/drivers/mmc/host/sdhci_am654.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/mmc/host/vub300.c linux-nvidia-tegra-5.15.0/drivers/mmc/host/vub300.c --- linux-nvidia-tegra-5.15.0/drivers/mmc/host/vub300.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/mtd/nand/raw/arasan-nand-controller.c linux-nvidia-tegra-5.15.0/drivers/mtd/nand/raw/arasan-nand-controller.c --- linux-nvidia-tegra-5.15.0/drivers/mtd/nand/raw/arasan-nand-controller.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/mtd/nand/raw/marvell_nand.c linux-nvidia-tegra-5.15.0/drivers/mtd/nand/raw/marvell_nand.c --- linux-nvidia-tegra-5.15.0/drivers/mtd/nand/raw/marvell_nand.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/mtd/nand/raw/pl35x-nand-controller.c linux-nvidia-tegra-5.15.0/drivers/mtd/nand/raw/pl35x-nand-controller.c --- linux-nvidia-tegra-5.15.0/drivers/mtd/nand/raw/pl35x-nand-controller.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/mtd/nand/raw/qcom_nandc.c linux-nvidia-tegra-5.15.0/drivers/mtd/nand/raw/qcom_nandc.c --- linux-nvidia-tegra-5.15.0/drivers/mtd/nand/raw/qcom_nandc.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/mtd/spi-nor/macronix.c linux-nvidia-tegra-5.15.0/drivers/mtd/spi-nor/macronix.c --- linux-nvidia-tegra-5.15.0/drivers/mtd/spi-nor/macronix.c +++ linux-nvidia-tegra-5.15.0/drivers/mtd/spi-nor/macronix.c @@ -71,6 +71,7 @@ SPI_NOR_QUAD_READ | SPI_NOR_4B_OPCODES) }, { "mx25u51279g", INFO(0xc2953a, 0, 64 * 1024, 1024, SECT_4K | SPI_NOR_DUAL_READ | + SPI_NOR_HAS_LOCK | SPI_NOR_SWP_IS_VOLATILE | SPI_NOR_QUAD_READ | SPI_NOR_4B_OPCODES) }, { "mx25v8035f", INFO(0xc22314, 0, 64 * 1024, 16, SECT_4K | SPI_NOR_DUAL_READ | diff -u linux-nvidia-tegra-5.15.0/drivers/net/arcnet/com20020-pci.c linux-nvidia-tegra-5.15.0/drivers/net/arcnet/com20020-pci.c --- linux-nvidia-tegra-5.15.0/drivers/net/arcnet/com20020-pci.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/net/bonding/bond_main.c linux-nvidia-tegra-5.15.0/drivers/net/bonding/bond_main.c --- linux-nvidia-tegra-5.15.0/drivers/net/bonding/bond_main.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/net/dsa/bcm_sf2.c linux-nvidia-tegra-5.15.0/drivers/net/dsa/bcm_sf2.c --- linux-nvidia-tegra-5.15.0/drivers/net/dsa/bcm_sf2.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/net/dsa/vitesse-vsc73xx-core.c linux-nvidia-tegra-5.15.0/drivers/net/dsa/vitesse-vsc73xx-core.c --- linux-nvidia-tegra-5.15.0/drivers/net/dsa/vitesse-vsc73xx-core.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/net/ethernet/alacritech/slicoss.c linux-nvidia-tegra-5.15.0/drivers/net/ethernet/alacritech/slicoss.c --- linux-nvidia-tegra-5.15.0/drivers/net/ethernet/alacritech/slicoss.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/net/ethernet/altera/altera_tse_main.c linux-nvidia-tegra-5.15.0/drivers/net/ethernet/altera/altera_tse_main.c --- linux-nvidia-tegra-5.15.0/drivers/net/ethernet/altera/altera_tse_main.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/net/ethernet/amazon/ena/ena_netdev.c linux-nvidia-tegra-5.15.0/drivers/net/ethernet/amazon/ena/ena_netdev.c --- linux-nvidia-tegra-5.15.0/drivers/net/ethernet/amazon/ena/ena_netdev.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/net/ethernet/amd/nmclan_cs.c linux-nvidia-tegra-5.15.0/drivers/net/ethernet/amd/nmclan_cs.c --- linux-nvidia-tegra-5.15.0/drivers/net/ethernet/amd/nmclan_cs.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/net/ethernet/amd/xgbe/xgbe-dev.c linux-nvidia-tegra-5.15.0/drivers/net/ethernet/amd/xgbe/xgbe-dev.c --- linux-nvidia-tegra-5.15.0/drivers/net/ethernet/amd/xgbe/xgbe-dev.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/net/ethernet/amd/xgbe/xgbe-drv.c linux-nvidia-tegra-5.15.0/drivers/net/ethernet/amd/xgbe/xgbe-drv.c --- linux-nvidia-tegra-5.15.0/drivers/net/ethernet/amd/xgbe/xgbe-drv.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/net/ethernet/amd/xgbe/xgbe-mdio.c linux-nvidia-tegra-5.15.0/drivers/net/ethernet/amd/xgbe/xgbe-mdio.c --- linux-nvidia-tegra-5.15.0/drivers/net/ethernet/amd/xgbe/xgbe-mdio.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/net/ethernet/amd/xgbe/xgbe.h linux-nvidia-tegra-5.15.0/drivers/net/ethernet/amd/xgbe/xgbe.h --- linux-nvidia-tegra-5.15.0/drivers/net/ethernet/amd/xgbe/xgbe.h +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/net/ethernet/apple/bmac.c linux-nvidia-tegra-5.15.0/drivers/net/ethernet/apple/bmac.c --- linux-nvidia-tegra-5.15.0/drivers/net/ethernet/apple/bmac.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/net/ethernet/aquantia/atlantic/aq_hw.h linux-nvidia-tegra-5.15.0/drivers/net/ethernet/aquantia/atlantic/aq_hw.h --- linux-nvidia-tegra-5.15.0/drivers/net/ethernet/aquantia/atlantic/aq_hw.h +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/net/ethernet/aquantia/atlantic/aq_macsec.c linux-nvidia-tegra-5.15.0/drivers/net/ethernet/aquantia/atlantic/aq_macsec.c --- linux-nvidia-tegra-5.15.0/drivers/net/ethernet/aquantia/atlantic/aq_macsec.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/net/ethernet/aquantia/atlantic/aq_ring.c linux-nvidia-tegra-5.15.0/drivers/net/ethernet/aquantia/atlantic/aq_ring.c --- linux-nvidia-tegra-5.15.0/drivers/net/ethernet/aquantia/atlantic/aq_ring.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/net/ethernet/aquantia/atlantic/hw_atl/hw_atl_b0.c linux-nvidia-tegra-5.15.0/drivers/net/ethernet/aquantia/atlantic/hw_atl/hw_atl_b0.c --- linux-nvidia-tegra-5.15.0/drivers/net/ethernet/aquantia/atlantic/hw_atl/hw_atl_b0.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/net/ethernet/aquantia/atlantic/hw_atl/hw_atl_utils.c linux-nvidia-tegra-5.15.0/drivers/net/ethernet/aquantia/atlantic/hw_atl/hw_atl_utils.c --- linux-nvidia-tegra-5.15.0/drivers/net/ethernet/aquantia/atlantic/hw_atl/hw_atl_utils.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/net/ethernet/aquantia/atlantic/hw_atl/hw_atl_utils_fw2x.c linux-nvidia-tegra-5.15.0/drivers/net/ethernet/aquantia/atlantic/hw_atl/hw_atl_utils_fw2x.c --- linux-nvidia-tegra-5.15.0/drivers/net/ethernet/aquantia/atlantic/hw_atl/hw_atl_utils_fw2x.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/net/ethernet/aquantia/atlantic/hw_atl2/hw_atl2.c linux-nvidia-tegra-5.15.0/drivers/net/ethernet/aquantia/atlantic/hw_atl2/hw_atl2.c --- linux-nvidia-tegra-5.15.0/drivers/net/ethernet/aquantia/atlantic/hw_atl2/hw_atl2.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/net/ethernet/atheros/atl1c/atl1c_main.c linux-nvidia-tegra-5.15.0/drivers/net/ethernet/atheros/atl1c/atl1c_main.c --- linux-nvidia-tegra-5.15.0/drivers/net/ethernet/atheros/atl1c/atl1c_main.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/net/ethernet/atheros/atl1e/atl1e_main.c linux-nvidia-tegra-5.15.0/drivers/net/ethernet/atheros/atl1e/atl1e_main.c --- linux-nvidia-tegra-5.15.0/drivers/net/ethernet/atheros/atl1e/atl1e_main.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/net/ethernet/broadcom/bcmsysport.c linux-nvidia-tegra-5.15.0/drivers/net/ethernet/broadcom/bcmsysport.c --- linux-nvidia-tegra-5.15.0/drivers/net/ethernet/broadcom/bcmsysport.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/net/ethernet/broadcom/bgmac.c linux-nvidia-tegra-5.15.0/drivers/net/ethernet/broadcom/bgmac.c --- linux-nvidia-tegra-5.15.0/drivers/net/ethernet/broadcom/bgmac.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/net/ethernet/broadcom/bnx2.c linux-nvidia-tegra-5.15.0/drivers/net/ethernet/broadcom/bnx2.c --- linux-nvidia-tegra-5.15.0/drivers/net/ethernet/broadcom/bnx2.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/net/ethernet/broadcom/bnx2x/bnx2x.h linux-nvidia-tegra-5.15.0/drivers/net/ethernet/broadcom/bnx2x/bnx2x.h --- linux-nvidia-tegra-5.15.0/drivers/net/ethernet/broadcom/bnx2x/bnx2x.h +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/net/ethernet/broadcom/bnx2x/bnx2x_cmn.c linux-nvidia-tegra-5.15.0/drivers/net/ethernet/broadcom/bnx2x/bnx2x_cmn.c --- linux-nvidia-tegra-5.15.0/drivers/net/ethernet/broadcom/bnx2x/bnx2x_cmn.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/net/ethernet/broadcom/bnx2x/bnx2x_main.c linux-nvidia-tegra-5.15.0/drivers/net/ethernet/broadcom/bnx2x/bnx2x_main.c --- linux-nvidia-tegra-5.15.0/drivers/net/ethernet/broadcom/bnx2x/bnx2x_main.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/net/ethernet/broadcom/bnxt/bnxt.c linux-nvidia-tegra-5.15.0/drivers/net/ethernet/broadcom/bnxt/bnxt.c --- linux-nvidia-tegra-5.15.0/drivers/net/ethernet/broadcom/bnxt/bnxt.c +++ linux-nvidia-tegra-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); @@ -12694,8 +12696,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-nvidia-tegra-5.15.0/drivers/net/ethernet/broadcom/bnxt/bnxt_sriov.c linux-nvidia-tegra-5.15.0/drivers/net/ethernet/broadcom/bnxt/bnxt_sriov.c --- linux-nvidia-tegra-5.15.0/drivers/net/ethernet/broadcom/bnxt/bnxt_sriov.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/net/ethernet/broadcom/bnxt/bnxt_tc.c linux-nvidia-tegra-5.15.0/drivers/net/ethernet/broadcom/bnxt/bnxt_tc.c --- linux-nvidia-tegra-5.15.0/drivers/net/ethernet/broadcom/bnxt/bnxt_tc.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/net/ethernet/broadcom/genet/bcmgenet.c linux-nvidia-tegra-5.15.0/drivers/net/ethernet/broadcom/genet/bcmgenet.c --- linux-nvidia-tegra-5.15.0/drivers/net/ethernet/broadcom/genet/bcmgenet.c +++ linux-nvidia-tegra-5.15.0/drivers/net/ethernet/broadcom/genet/bcmgenet.c @@ -2090,8 +2090,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 +3241,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 +3539,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], diff -u linux-nvidia-tegra-5.15.0/drivers/net/ethernet/broadcom/tg3.c linux-nvidia-tegra-5.15.0/drivers/net/ethernet/broadcom/tg3.c --- linux-nvidia-tegra-5.15.0/drivers/net/ethernet/broadcom/tg3.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/net/ethernet/chelsio/cxgb4/t4_hw.c linux-nvidia-tegra-5.15.0/drivers/net/ethernet/chelsio/cxgb4/t4_hw.c --- linux-nvidia-tegra-5.15.0/drivers/net/ethernet/chelsio/cxgb4/t4_hw.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/net/ethernet/chelsio/inline_crypto/chtls/chtls_cm.c linux-nvidia-tegra-5.15.0/drivers/net/ethernet/chelsio/inline_crypto/chtls/chtls_cm.c --- linux-nvidia-tegra-5.15.0/drivers/net/ethernet/chelsio/inline_crypto/chtls/chtls_cm.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/net/ethernet/cortina/gemini.c linux-nvidia-tegra-5.15.0/drivers/net/ethernet/cortina/gemini.c --- linux-nvidia-tegra-5.15.0/drivers/net/ethernet/cortina/gemini.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/net/ethernet/dnet.c linux-nvidia-tegra-5.15.0/drivers/net/ethernet/dnet.c --- linux-nvidia-tegra-5.15.0/drivers/net/ethernet/dnet.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/net/ethernet/emulex/benet/be_cmds.c linux-nvidia-tegra-5.15.0/drivers/net/ethernet/emulex/benet/be_cmds.c --- linux-nvidia-tegra-5.15.0/drivers/net/ethernet/emulex/benet/be_cmds.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/net/ethernet/emulex/benet/be_cmds.h linux-nvidia-tegra-5.15.0/drivers/net/ethernet/emulex/benet/be_cmds.h --- linux-nvidia-tegra-5.15.0/drivers/net/ethernet/emulex/benet/be_cmds.h +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/net/ethernet/emulex/benet/be_main.c linux-nvidia-tegra-5.15.0/drivers/net/ethernet/emulex/benet/be_main.c --- linux-nvidia-tegra-5.15.0/drivers/net/ethernet/emulex/benet/be_main.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/net/ethernet/ethoc.c linux-nvidia-tegra-5.15.0/drivers/net/ethernet/ethoc.c --- linux-nvidia-tegra-5.15.0/drivers/net/ethernet/ethoc.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/net/ethernet/fealnx.c linux-nvidia-tegra-5.15.0/drivers/net/ethernet/fealnx.c --- linux-nvidia-tegra-5.15.0/drivers/net/ethernet/fealnx.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/net/ethernet/freescale/dpaa/dpaa_eth.c linux-nvidia-tegra-5.15.0/drivers/net/ethernet/freescale/dpaa/dpaa_eth.c --- linux-nvidia-tegra-5.15.0/drivers/net/ethernet/freescale/dpaa/dpaa_eth.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/net/ethernet/freescale/dpaa2/dpaa2-eth.c linux-nvidia-tegra-5.15.0/drivers/net/ethernet/freescale/dpaa2/dpaa2-eth.c --- linux-nvidia-tegra-5.15.0/drivers/net/ethernet/freescale/dpaa2/dpaa2-eth.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/net/ethernet/freescale/dpaa2/dpaa2-switch-flower.c linux-nvidia-tegra-5.15.0/drivers/net/ethernet/freescale/dpaa2/dpaa2-switch-flower.c --- linux-nvidia-tegra-5.15.0/drivers/net/ethernet/freescale/dpaa2/dpaa2-switch-flower.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/net/ethernet/freescale/fec_main.c linux-nvidia-tegra-5.15.0/drivers/net/ethernet/freescale/fec_main.c --- linux-nvidia-tegra-5.15.0/drivers/net/ethernet/freescale/fec_main.c +++ linux-nvidia-tegra-5.15.0/drivers/net/ethernet/freescale/fec_main.c @@ -3436,31 +3436,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-nvidia-tegra-5.15.0/drivers/net/ethernet/google/gve/gve_main.c linux-nvidia-tegra-5.15.0/drivers/net/ethernet/google/gve/gve_main.c --- linux-nvidia-tegra-5.15.0/drivers/net/ethernet/google/gve/gve_main.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/net/ethernet/google/gve/gve_rx_dqo.c linux-nvidia-tegra-5.15.0/drivers/net/ethernet/google/gve/gve_rx_dqo.c --- linux-nvidia-tegra-5.15.0/drivers/net/ethernet/google/gve/gve_rx_dqo.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/net/ethernet/hisilicon/hisi_femac.c linux-nvidia-tegra-5.15.0/drivers/net/ethernet/hisilicon/hisi_femac.c --- linux-nvidia-tegra-5.15.0/drivers/net/ethernet/hisilicon/hisi_femac.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/net/ethernet/hisilicon/hix5hd2_gmac.c linux-nvidia-tegra-5.15.0/drivers/net/ethernet/hisilicon/hix5hd2_gmac.c --- linux-nvidia-tegra-5.15.0/drivers/net/ethernet/hisilicon/hix5hd2_gmac.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/net/ethernet/hisilicon/hns3/hnae3.h linux-nvidia-tegra-5.15.0/drivers/net/ethernet/hisilicon/hns3/hnae3.h --- linux-nvidia-tegra-5.15.0/drivers/net/ethernet/hisilicon/hns3/hnae3.h +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/net/ethernet/hisilicon/hns3/hns3_enet.c linux-nvidia-tegra-5.15.0/drivers/net/ethernet/hisilicon/hns3/hns3_enet.c --- linux-nvidia-tegra-5.15.0/drivers/net/ethernet/hisilicon/hns3/hns3_enet.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/net/ethernet/hisilicon/hns3/hns3pf/hclge_main.c linux-nvidia-tegra-5.15.0/drivers/net/ethernet/hisilicon/hns3/hns3pf/hclge_main.c --- linux-nvidia-tegra-5.15.0/drivers/net/ethernet/hisilicon/hns3/hns3pf/hclge_main.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/net/ethernet/hisilicon/hns3/hns3pf/hclge_mbx.c linux-nvidia-tegra-5.15.0/drivers/net/ethernet/hisilicon/hns3/hns3pf/hclge_mbx.c --- linux-nvidia-tegra-5.15.0/drivers/net/ethernet/hisilicon/hns3/hns3pf/hclge_mbx.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/net/ethernet/hisilicon/hns3/hns3vf/hclgevf_main.c linux-nvidia-tegra-5.15.0/drivers/net/ethernet/hisilicon/hns3/hns3vf/hclgevf_main.c --- linux-nvidia-tegra-5.15.0/drivers/net/ethernet/hisilicon/hns3/hns3vf/hclgevf_main.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/net/ethernet/hisilicon/hns3/hns3vf/hclgevf_main.h linux-nvidia-tegra-5.15.0/drivers/net/ethernet/hisilicon/hns3/hns3vf/hclgevf_main.h --- linux-nvidia-tegra-5.15.0/drivers/net/ethernet/hisilicon/hns3/hns3vf/hclgevf_main.h +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/net/ethernet/hisilicon/hns3/hns3vf/hclgevf_mbx.c linux-nvidia-tegra-5.15.0/drivers/net/ethernet/hisilicon/hns3/hns3vf/hclgevf_mbx.c --- linux-nvidia-tegra-5.15.0/drivers/net/ethernet/hisilicon/hns3/hns3vf/hclgevf_mbx.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/net/ethernet/intel/i40e/i40e.h linux-nvidia-tegra-5.15.0/drivers/net/ethernet/intel/i40e/i40e.h --- linux-nvidia-tegra-5.15.0/drivers/net/ethernet/intel/i40e/i40e.h +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/net/ethernet/intel/i40e/i40e_common.c linux-nvidia-tegra-5.15.0/drivers/net/ethernet/intel/i40e/i40e_common.c --- linux-nvidia-tegra-5.15.0/drivers/net/ethernet/intel/i40e/i40e_common.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/net/ethernet/intel/i40e/i40e_main.c linux-nvidia-tegra-5.15.0/drivers/net/ethernet/intel/i40e/i40e_main.c --- linux-nvidia-tegra-5.15.0/drivers/net/ethernet/intel/i40e/i40e_main.c +++ linux-nvidia-tegra-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) @@ -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-nvidia-tegra-5.15.0/drivers/net/ethernet/intel/i40e/i40e_txrx.c linux-nvidia-tegra-5.15.0/drivers/net/ethernet/intel/i40e/i40e_txrx.c --- linux-nvidia-tegra-5.15.0/drivers/net/ethernet/intel/i40e/i40e_txrx.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/net/ethernet/intel/i40e/i40e_virtchnl_pf.c linux-nvidia-tegra-5.15.0/drivers/net/ethernet/intel/i40e/i40e_virtchnl_pf.c --- linux-nvidia-tegra-5.15.0/drivers/net/ethernet/intel/i40e/i40e_virtchnl_pf.c +++ linux-nvidia-tegra-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 @@ -3427,16 +3453,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; diff -u linux-nvidia-tegra-5.15.0/drivers/net/ethernet/intel/i40e/i40e_virtchnl_pf.h linux-nvidia-tegra-5.15.0/drivers/net/ethernet/intel/i40e/i40e_virtchnl_pf.h --- linux-nvidia-tegra-5.15.0/drivers/net/ethernet/intel/i40e/i40e_virtchnl_pf.h +++ linux-nvidia-tegra-5.15.0/drivers/net/ethernet/intel/i40e/i40e_virtchnl_pf.h @@ -135,6 +135,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-nvidia-tegra-5.15.0/drivers/net/ethernet/intel/ice/ice.h linux-nvidia-tegra-5.15.0/drivers/net/ethernet/intel/ice/ice.h --- linux-nvidia-tegra-5.15.0/drivers/net/ethernet/intel/ice/ice.h +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/net/ethernet/intel/ice/ice_common.c linux-nvidia-tegra-5.15.0/drivers/net/ethernet/intel/ice/ice_common.c --- linux-nvidia-tegra-5.15.0/drivers/net/ethernet/intel/ice/ice_common.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/net/ethernet/intel/ice/ice_lag.c linux-nvidia-tegra-5.15.0/drivers/net/ethernet/intel/ice/ice_lag.c --- linux-nvidia-tegra-5.15.0/drivers/net/ethernet/intel/ice/ice_lag.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/net/ethernet/intel/ice/ice_lib.c linux-nvidia-tegra-5.15.0/drivers/net/ethernet/intel/ice/ice_lib.c --- linux-nvidia-tegra-5.15.0/drivers/net/ethernet/intel/ice/ice_lib.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/net/ethernet/intel/ice/ice_main.c linux-nvidia-tegra-5.15.0/drivers/net/ethernet/intel/ice/ice_main.c --- linux-nvidia-tegra-5.15.0/drivers/net/ethernet/intel/ice/ice_main.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/net/ethernet/intel/igb/igb_ethtool.c linux-nvidia-tegra-5.15.0/drivers/net/ethernet/intel/igb/igb_ethtool.c --- linux-nvidia-tegra-5.15.0/drivers/net/ethernet/intel/igb/igb_ethtool.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/net/ethernet/intel/igc/igc.h linux-nvidia-tegra-5.15.0/drivers/net/ethernet/intel/igc/igc.h --- linux-nvidia-tegra-5.15.0/drivers/net/ethernet/intel/igc/igc.h +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/net/ethernet/intel/igc/igc_ethtool.c linux-nvidia-tegra-5.15.0/drivers/net/ethernet/intel/igc/igc_ethtool.c --- linux-nvidia-tegra-5.15.0/drivers/net/ethernet/intel/igc/igc_ethtool.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/net/ethernet/intel/igc/igc_tsn.c linux-nvidia-tegra-5.15.0/drivers/net/ethernet/intel/igc/igc_tsn.c --- linux-nvidia-tegra-5.15.0/drivers/net/ethernet/intel/igc/igc_tsn.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/net/ethernet/intel/ixgbe/ixgbe_main.c linux-nvidia-tegra-5.15.0/drivers/net/ethernet/intel/ixgbe/ixgbe_main.c --- linux-nvidia-tegra-5.15.0/drivers/net/ethernet/intel/ixgbe/ixgbe_main.c +++ linux-nvidia-tegra-5.15.0/drivers/net/ethernet/intel/ixgbe/ixgbe_main.c @@ -8719,7 +8719,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 { diff -u linux-nvidia-tegra-5.15.0/drivers/net/ethernet/marvell/mv643xx_eth.c linux-nvidia-tegra-5.15.0/drivers/net/ethernet/marvell/mv643xx_eth.c --- linux-nvidia-tegra-5.15.0/drivers/net/ethernet/marvell/mv643xx_eth.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/net/ethernet/marvell/mvneta.c linux-nvidia-tegra-5.15.0/drivers/net/ethernet/marvell/mvneta.c --- linux-nvidia-tegra-5.15.0/drivers/net/ethernet/marvell/mvneta.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/net/ethernet/marvell/octeontx2/af/cgx.c linux-nvidia-tegra-5.15.0/drivers/net/ethernet/marvell/octeontx2/af/cgx.c --- linux-nvidia-tegra-5.15.0/drivers/net/ethernet/marvell/octeontx2/af/cgx.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/net/ethernet/marvell/octeontx2/af/lmac_common.h linux-nvidia-tegra-5.15.0/drivers/net/ethernet/marvell/octeontx2/af/lmac_common.h --- linux-nvidia-tegra-5.15.0/drivers/net/ethernet/marvell/octeontx2/af/lmac_common.h +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/net/ethernet/marvell/octeontx2/af/npc.h linux-nvidia-tegra-5.15.0/drivers/net/ethernet/marvell/octeontx2/af/npc.h --- linux-nvidia-tegra-5.15.0/drivers/net/ethernet/marvell/octeontx2/af/npc.h +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/net/ethernet/marvell/octeontx2/af/rpm.c linux-nvidia-tegra-5.15.0/drivers/net/ethernet/marvell/octeontx2/af/rpm.c --- linux-nvidia-tegra-5.15.0/drivers/net/ethernet/marvell/octeontx2/af/rpm.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/net/ethernet/marvell/octeontx2/af/rpm.h linux-nvidia-tegra-5.15.0/drivers/net/ethernet/marvell/octeontx2/af/rpm.h --- linux-nvidia-tegra-5.15.0/drivers/net/ethernet/marvell/octeontx2/af/rpm.h +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/net/ethernet/marvell/octeontx2/af/rvu.h linux-nvidia-tegra-5.15.0/drivers/net/ethernet/marvell/octeontx2/af/rvu.h --- linux-nvidia-tegra-5.15.0/drivers/net/ethernet/marvell/octeontx2/af/rvu.h +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/net/ethernet/marvell/octeontx2/af/rvu_cgx.c linux-nvidia-tegra-5.15.0/drivers/net/ethernet/marvell/octeontx2/af/rvu_cgx.c --- linux-nvidia-tegra-5.15.0/drivers/net/ethernet/marvell/octeontx2/af/rvu_cgx.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/net/ethernet/marvell/octeontx2/af/rvu_nix.c linux-nvidia-tegra-5.15.0/drivers/net/ethernet/marvell/octeontx2/af/rvu_nix.c --- linux-nvidia-tegra-5.15.0/drivers/net/ethernet/marvell/octeontx2/af/rvu_nix.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/net/ethernet/marvell/octeontx2/af/rvu_npc.c linux-nvidia-tegra-5.15.0/drivers/net/ethernet/marvell/octeontx2/af/rvu_npc.c --- linux-nvidia-tegra-5.15.0/drivers/net/ethernet/marvell/octeontx2/af/rvu_npc.c +++ linux-nvidia-tegra-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, diff -u linux-nvidia-tegra-5.15.0/drivers/net/ethernet/marvell/octeontx2/nic/otx2_common.c linux-nvidia-tegra-5.15.0/drivers/net/ethernet/marvell/octeontx2/nic/otx2_common.c --- linux-nvidia-tegra-5.15.0/drivers/net/ethernet/marvell/octeontx2/nic/otx2_common.c +++ linux-nvidia-tegra-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) { diff -u linux-nvidia-tegra-5.15.0/drivers/net/ethernet/marvell/octeontx2/nic/otx2_flows.c linux-nvidia-tegra-5.15.0/drivers/net/ethernet/marvell/octeontx2/nic/otx2_flows.c --- linux-nvidia-tegra-5.15.0/drivers/net/ethernet/marvell/octeontx2/nic/otx2_flows.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/net/ethernet/marvell/octeontx2/nic/otx2_pf.c linux-nvidia-tegra-5.15.0/drivers/net/ethernet/marvell/octeontx2/nic/otx2_pf.c --- linux-nvidia-tegra-5.15.0/drivers/net/ethernet/marvell/octeontx2/nic/otx2_pf.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/net/ethernet/marvell/octeontx2/nic/otx2_struct.h linux-nvidia-tegra-5.15.0/drivers/net/ethernet/marvell/octeontx2/nic/otx2_struct.h --- linux-nvidia-tegra-5.15.0/drivers/net/ethernet/marvell/octeontx2/nic/otx2_struct.h +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/net/ethernet/marvell/octeontx2/nic/otx2_vf.c linux-nvidia-tegra-5.15.0/drivers/net/ethernet/marvell/octeontx2/nic/otx2_vf.c --- linux-nvidia-tegra-5.15.0/drivers/net/ethernet/marvell/octeontx2/nic/otx2_vf.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/net/ethernet/marvell/pxa168_eth.c linux-nvidia-tegra-5.15.0/drivers/net/ethernet/marvell/pxa168_eth.c --- linux-nvidia-tegra-5.15.0/drivers/net/ethernet/marvell/pxa168_eth.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/net/ethernet/mediatek/mtk_star_emac.c linux-nvidia-tegra-5.15.0/drivers/net/ethernet/mediatek/mtk_star_emac.c --- linux-nvidia-tegra-5.15.0/drivers/net/ethernet/mediatek/mtk_star_emac.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/net/ethernet/mellanox/mlx5/core/diag/fw_tracer.c linux-nvidia-tegra-5.15.0/drivers/net/ethernet/mellanox/mlx5/core/diag/fw_tracer.c --- linux-nvidia-tegra-5.15.0/drivers/net/ethernet/mellanox/mlx5/core/diag/fw_tracer.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/net/ethernet/mellanox/mlx5/core/en/reporter_rx.c linux-nvidia-tegra-5.15.0/drivers/net/ethernet/mellanox/mlx5/core/en/reporter_rx.c --- linux-nvidia-tegra-5.15.0/drivers/net/ethernet/mellanox/mlx5/core/en/reporter_rx.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/net/ethernet/mellanox/mlx5/core/en/tc_ct.c linux-nvidia-tegra-5.15.0/drivers/net/ethernet/mellanox/mlx5/core/en/tc_ct.c --- linux-nvidia-tegra-5.15.0/drivers/net/ethernet/mellanox/mlx5/core/en/tc_ct.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/net/ethernet/mellanox/mlx5/core/en_rep.c linux-nvidia-tegra-5.15.0/drivers/net/ethernet/mellanox/mlx5/core/en_rep.c --- linux-nvidia-tegra-5.15.0/drivers/net/ethernet/mellanox/mlx5/core/en_rep.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/net/ethernet/mellanox/mlx5/core/en_tc.c linux-nvidia-tegra-5.15.0/drivers/net/ethernet/mellanox/mlx5/core/en_tc.c --- linux-nvidia-tegra-5.15.0/drivers/net/ethernet/mellanox/mlx5/core/en_tc.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/net/ethernet/mellanox/mlx5/core/en_tc.h linux-nvidia-tegra-5.15.0/drivers/net/ethernet/mellanox/mlx5/core/en_tc.h --- linux-nvidia-tegra-5.15.0/drivers/net/ethernet/mellanox/mlx5/core/en_tc.h +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/net/ethernet/mellanox/mlx5/core/ipoib/ipoib.c linux-nvidia-tegra-5.15.0/drivers/net/ethernet/mellanox/mlx5/core/ipoib/ipoib.c --- linux-nvidia-tegra-5.15.0/drivers/net/ethernet/mellanox/mlx5/core/ipoib/ipoib.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/net/ethernet/mellanox/mlxbf_gige/mlxbf_gige.h linux-nvidia-tegra-5.15.0/drivers/net/ethernet/mellanox/mlxbf_gige/mlxbf_gige.h --- linux-nvidia-tegra-5.15.0/drivers/net/ethernet/mellanox/mlxbf_gige/mlxbf_gige.h +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/net/ethernet/mellanox/mlxbf_gige/mlxbf_gige_main.c linux-nvidia-tegra-5.15.0/drivers/net/ethernet/mellanox/mlxbf_gige/mlxbf_gige_main.c --- linux-nvidia-tegra-5.15.0/drivers/net/ethernet/mellanox/mlxbf_gige/mlxbf_gige_main.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/net/ethernet/mellanox/mlxbf_gige/mlxbf_gige_rx.c linux-nvidia-tegra-5.15.0/drivers/net/ethernet/mellanox/mlxbf_gige/mlxbf_gige_rx.c --- linux-nvidia-tegra-5.15.0/drivers/net/ethernet/mellanox/mlxbf_gige/mlxbf_gige_rx.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/net/ethernet/micrel/ks8851_common.c linux-nvidia-tegra-5.15.0/drivers/net/ethernet/micrel/ks8851_common.c --- linux-nvidia-tegra-5.15.0/drivers/net/ethernet/micrel/ks8851_common.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/net/ethernet/micrel/ksz884x.c linux-nvidia-tegra-5.15.0/drivers/net/ethernet/micrel/ksz884x.c --- linux-nvidia-tegra-5.15.0/drivers/net/ethernet/micrel/ksz884x.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/net/ethernet/myricom/myri10ge/myri10ge.c linux-nvidia-tegra-5.15.0/drivers/net/ethernet/myricom/myri10ge/myri10ge.c --- linux-nvidia-tegra-5.15.0/drivers/net/ethernet/myricom/myri10ge/myri10ge.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/net/ethernet/neterion/s2io.c linux-nvidia-tegra-5.15.0/drivers/net/ethernet/neterion/s2io.c --- linux-nvidia-tegra-5.15.0/drivers/net/ethernet/neterion/s2io.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/net/ethernet/netronome/nfp/flower/conntrack.c linux-nvidia-tegra-5.15.0/drivers/net/ethernet/netronome/nfp/flower/conntrack.c --- linux-nvidia-tegra-5.15.0/drivers/net/ethernet/netronome/nfp/flower/conntrack.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/net/ethernet/netronome/nfp/flower/tunnel_conf.c linux-nvidia-tegra-5.15.0/drivers/net/ethernet/netronome/nfp/flower/tunnel_conf.c --- linux-nvidia-tegra-5.15.0/drivers/net/ethernet/netronome/nfp/flower/tunnel_conf.c +++ linux-nvidia-tegra-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; @@ -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-nvidia-tegra-5.15.0/drivers/net/ethernet/nxp/lpc_eth.c linux-nvidia-tegra-5.15.0/drivers/net/ethernet/nxp/lpc_eth.c --- linux-nvidia-tegra-5.15.0/drivers/net/ethernet/nxp/lpc_eth.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/net/ethernet/pensando/ionic/ionic_dev.h linux-nvidia-tegra-5.15.0/drivers/net/ethernet/pensando/ionic/ionic_dev.h --- linux-nvidia-tegra-5.15.0/drivers/net/ethernet/pensando/ionic/ionic_dev.h +++ linux-nvidia-tegra-5.15.0/drivers/net/ethernet/pensando/ionic/ionic_dev.h @@ -208,7 +208,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-nvidia-tegra-5.15.0/drivers/net/ethernet/pensando/ionic/ionic_lif.c linux-nvidia-tegra-5.15.0/drivers/net/ethernet/pensando/ionic/ionic_lif.c --- linux-nvidia-tegra-5.15.0/drivers/net/ethernet/pensando/ionic/ionic_lif.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/net/ethernet/qlogic/qed/qed_dev.c linux-nvidia-tegra-5.15.0/drivers/net/ethernet/qlogic/qed/qed_dev.c --- linux-nvidia-tegra-5.15.0/drivers/net/ethernet/qlogic/qed/qed_dev.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/net/ethernet/qlogic/qed/qed_dev_api.h linux-nvidia-tegra-5.15.0/drivers/net/ethernet/qlogic/qed/qed_dev_api.h --- linux-nvidia-tegra-5.15.0/drivers/net/ethernet/qlogic/qed/qed_dev_api.h +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/net/ethernet/qlogic/qed/qed_l2.c linux-nvidia-tegra-5.15.0/drivers/net/ethernet/qlogic/qed/qed_l2.c --- linux-nvidia-tegra-5.15.0/drivers/net/ethernet/qlogic/qed/qed_l2.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/net/ethernet/qlogic/qed/qed_main.c linux-nvidia-tegra-5.15.0/drivers/net/ethernet/qlogic/qed/qed_main.c --- linux-nvidia-tegra-5.15.0/drivers/net/ethernet/qlogic/qed/qed_main.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/net/ethernet/qlogic/qed/qed_mcp.h linux-nvidia-tegra-5.15.0/drivers/net/ethernet/qlogic/qed/qed_mcp.h --- linux-nvidia-tegra-5.15.0/drivers/net/ethernet/qlogic/qed/qed_mcp.h +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/net/ethernet/qlogic/qed/qed_vf.c linux-nvidia-tegra-5.15.0/drivers/net/ethernet/qlogic/qed/qed_vf.c --- linux-nvidia-tegra-5.15.0/drivers/net/ethernet/qlogic/qed/qed_vf.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/net/ethernet/qlogic/qed/qed_vf.h linux-nvidia-tegra-5.15.0/drivers/net/ethernet/qlogic/qed/qed_vf.h --- linux-nvidia-tegra-5.15.0/drivers/net/ethernet/qlogic/qed/qed_vf.h +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/net/ethernet/qlogic/qede/qede_filter.c linux-nvidia-tegra-5.15.0/drivers/net/ethernet/qlogic/qede/qede_filter.c --- linux-nvidia-tegra-5.15.0/drivers/net/ethernet/qlogic/qede/qede_filter.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/net/ethernet/qlogic/qla3xxx.c linux-nvidia-tegra-5.15.0/drivers/net/ethernet/qlogic/qla3xxx.c --- linux-nvidia-tegra-5.15.0/drivers/net/ethernet/qlogic/qla3xxx.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/net/ethernet/qualcomm/qca_spi.c linux-nvidia-tegra-5.15.0/drivers/net/ethernet/qualcomm/qca_spi.c --- linux-nvidia-tegra-5.15.0/drivers/net/ethernet/qualcomm/qca_spi.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/net/ethernet/rdc/r6040.c linux-nvidia-tegra-5.15.0/drivers/net/ethernet/rdc/r6040.c --- linux-nvidia-tegra-5.15.0/drivers/net/ethernet/rdc/r6040.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/net/ethernet/realtek/r8169_main.c linux-nvidia-tegra-5.15.0/drivers/net/ethernet/realtek/r8169_main.c --- linux-nvidia-tegra-5.15.0/drivers/net/ethernet/realtek/r8169_main.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/net/ethernet/renesas/ravb_main.c linux-nvidia-tegra-5.15.0/drivers/net/ethernet/renesas/ravb_main.c --- linux-nvidia-tegra-5.15.0/drivers/net/ethernet/renesas/ravb_main.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/net/ethernet/sfc/ef10.c linux-nvidia-tegra-5.15.0/drivers/net/ethernet/sfc/ef10.c --- linux-nvidia-tegra-5.15.0/drivers/net/ethernet/sfc/ef10.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/net/ethernet/sfc/ef10_sriov.c linux-nvidia-tegra-5.15.0/drivers/net/ethernet/sfc/ef10_sriov.c --- linux-nvidia-tegra-5.15.0/drivers/net/ethernet/sfc/ef10_sriov.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/net/ethernet/sfc/net_driver.h linux-nvidia-tegra-5.15.0/drivers/net/ethernet/sfc/net_driver.h --- linux-nvidia-tegra-5.15.0/drivers/net/ethernet/sfc/net_driver.h +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/net/ethernet/sfc/rx_common.c linux-nvidia-tegra-5.15.0/drivers/net/ethernet/sfc/rx_common.c --- linux-nvidia-tegra-5.15.0/drivers/net/ethernet/sfc/rx_common.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/net/ethernet/smsc/smsc911x.c linux-nvidia-tegra-5.15.0/drivers/net/ethernet/smsc/smsc911x.c --- linux-nvidia-tegra-5.15.0/drivers/net/ethernet/smsc/smsc911x.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/net/ethernet/stmicro/stmmac/common.h linux-nvidia-tegra-5.15.0/drivers/net/ethernet/stmicro/stmmac/common.h --- linux-nvidia-tegra-5.15.0/drivers/net/ethernet/stmicro/stmmac/common.h +++ linux-nvidia-tegra-5.15.0/drivers/net/ethernet/stmicro/stmmac/common.h @@ -545,13 +545,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-nvidia-tegra-5.15.0/drivers/net/ethernet/stmicro/stmmac/dwmac-loongson.c linux-nvidia-tegra-5.15.0/drivers/net/ethernet/stmicro/stmmac/dwmac-loongson.c --- linux-nvidia-tegra-5.15.0/drivers/net/ethernet/stmicro/stmmac/dwmac-loongson.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/net/ethernet/stmicro/stmmac/dwmac-sun8i.c linux-nvidia-tegra-5.15.0/drivers/net/ethernet/stmicro/stmmac/dwmac-sun8i.c --- linux-nvidia-tegra-5.15.0/drivers/net/ethernet/stmicro/stmmac/dwmac-sun8i.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/net/ethernet/stmicro/stmmac/dwmac4_core.c linux-nvidia-tegra-5.15.0/drivers/net/ethernet/stmicro/stmmac/dwmac4_core.c --- linux-nvidia-tegra-5.15.0/drivers/net/ethernet/stmicro/stmmac/dwmac4_core.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/net/ethernet/stmicro/stmmac/dwmac4_lib.c linux-nvidia-tegra-5.15.0/drivers/net/ethernet/stmicro/stmmac/dwmac4_lib.c --- linux-nvidia-tegra-5.15.0/drivers/net/ethernet/stmicro/stmmac/dwmac4_lib.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/net/ethernet/stmicro/stmmac/dwmac5.c linux-nvidia-tegra-5.15.0/drivers/net/ethernet/stmicro/stmmac/dwmac5.c --- linux-nvidia-tegra-5.15.0/drivers/net/ethernet/stmicro/stmmac/dwmac5.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/net/ethernet/stmicro/stmmac/dwmac_lib.c linux-nvidia-tegra-5.15.0/drivers/net/ethernet/stmicro/stmmac/dwmac_lib.c --- linux-nvidia-tegra-5.15.0/drivers/net/ethernet/stmicro/stmmac/dwmac_lib.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/net/ethernet/stmicro/stmmac/stmmac.h linux-nvidia-tegra-5.15.0/drivers/net/ethernet/stmicro/stmmac/stmmac.h --- linux-nvidia-tegra-5.15.0/drivers/net/ethernet/stmicro/stmmac/stmmac.h +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/net/ethernet/stmicro/stmmac/stmmac_ethtool.c linux-nvidia-tegra-5.15.0/drivers/net/ethernet/stmicro/stmmac/stmmac_ethtool.c --- linux-nvidia-tegra-5.15.0/drivers/net/ethernet/stmicro/stmmac/stmmac_ethtool.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/net/ethernet/stmicro/stmmac/stmmac_main.c linux-nvidia-tegra-5.15.0/drivers/net/ethernet/stmicro/stmmac/stmmac_main.c --- linux-nvidia-tegra-5.15.0/drivers/net/ethernet/stmicro/stmmac/stmmac_main.c +++ linux-nvidia-tegra-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; @@ -7237,9 +7240,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 +7402,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-nvidia-tegra-5.15.0/drivers/net/ethernet/stmicro/stmmac/stmmac_selftests.c linux-nvidia-tegra-5.15.0/drivers/net/ethernet/stmicro/stmmac/stmmac_selftests.c --- linux-nvidia-tegra-5.15.0/drivers/net/ethernet/stmicro/stmmac/stmmac_selftests.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/net/ethernet/stmicro/stmmac/stmmac_tc.c linux-nvidia-tegra-5.15.0/drivers/net/ethernet/stmicro/stmmac/stmmac_tc.c --- linux-nvidia-tegra-5.15.0/drivers/net/ethernet/stmicro/stmmac/stmmac_tc.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/net/ethernet/ti/am65-cpsw-nuss.c linux-nvidia-tegra-5.15.0/drivers/net/ethernet/ti/am65-cpsw-nuss.c --- linux-nvidia-tegra-5.15.0/drivers/net/ethernet/ti/am65-cpsw-nuss.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/net/ethernet/xilinx/xilinx_axienet_main.c linux-nvidia-tegra-5.15.0/drivers/net/ethernet/xilinx/xilinx_axienet_main.c --- linux-nvidia-tegra-5.15.0/drivers/net/ethernet/xilinx/xilinx_axienet_main.c +++ linux-nvidia-tegra-5.15.0/drivers/net/ethernet/xilinx/xilinx_axienet_main.c @@ -763,7 +763,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-nvidia-tegra-5.15.0/drivers/net/ethernet/xilinx/xilinx_emaclite.c linux-nvidia-tegra-5.15.0/drivers/net/ethernet/xilinx/xilinx_emaclite.c --- linux-nvidia-tegra-5.15.0/drivers/net/ethernet/xilinx/xilinx_emaclite.c +++ linux-nvidia-tegra-5.15.0/drivers/net/ethernet/xilinx/xilinx_emaclite.c @@ -206,12 +206,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, +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; @@ -470,7 +471,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-nvidia-tegra-5.15.0/drivers/net/ethernet/xircom/xirc2ps_cs.c linux-nvidia-tegra-5.15.0/drivers/net/ethernet/xircom/xirc2ps_cs.c --- linux-nvidia-tegra-5.15.0/drivers/net/ethernet/xircom/xirc2ps_cs.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/net/gtp.c linux-nvidia-tegra-5.15.0/drivers/net/gtp.c --- linux-nvidia-tegra-5.15.0/drivers/net/gtp.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/net/hyperv/netvsc_drv.c linux-nvidia-tegra-5.15.0/drivers/net/hyperv/netvsc_drv.c --- linux-nvidia-tegra-5.15.0/drivers/net/hyperv/netvsc_drv.c +++ linux-nvidia-tegra-5.15.0/drivers/net/hyperv/netvsc_drv.c @@ -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: @@ -2807,12 +2826,17 @@ } netvsc_ring_bytes = ring_size * PAGE_SIZE; + register_netdevice_notifier(&netvsc_netdev_notifier); + ret = vmbus_driver_register(&netvsc_drv); if (ret) - return ret; + goto err_vmbus_reg; - register_netdevice_notifier(&netvsc_netdev_notifier); return 0; + +err_vmbus_reg: + unregister_netdevice_notifier(&netvsc_netdev_notifier); + return ret; } MODULE_LICENSE("GPL"); diff -u linux-nvidia-tegra-5.15.0/drivers/net/ieee802154/adf7242.c linux-nvidia-tegra-5.15.0/drivers/net/ieee802154/adf7242.c --- linux-nvidia-tegra-5.15.0/drivers/net/ieee802154/adf7242.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/net/ipvlan/ipvlan_core.c linux-nvidia-tegra-5.15.0/drivers/net/ipvlan/ipvlan_core.c --- linux-nvidia-tegra-5.15.0/drivers/net/ipvlan/ipvlan_core.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/net/ipvlan/ipvlan_main.c linux-nvidia-tegra-5.15.0/drivers/net/ipvlan/ipvlan_main.c --- linux-nvidia-tegra-5.15.0/drivers/net/ipvlan/ipvlan_main.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/net/macsec.c linux-nvidia-tegra-5.15.0/drivers/net/macsec.c --- linux-nvidia-tegra-5.15.0/drivers/net/macsec.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/net/macvlan.c linux-nvidia-tegra-5.15.0/drivers/net/macvlan.c --- linux-nvidia-tegra-5.15.0/drivers/net/macvlan.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/net/phy/micrel.c linux-nvidia-tegra-5.15.0/drivers/net/phy/micrel.c --- linux-nvidia-tegra-5.15.0/drivers/net/phy/micrel.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/net/phy/mscc/mscc_main.c linux-nvidia-tegra-5.15.0/drivers/net/phy/mscc/mscc_main.c --- linux-nvidia-tegra-5.15.0/drivers/net/phy/mscc/mscc_main.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/net/phy/phylink.c linux-nvidia-tegra-5.15.0/drivers/net/phy/phylink.c --- linux-nvidia-tegra-5.15.0/drivers/net/phy/phylink.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/net/team/team.c linux-nvidia-tegra-5.15.0/drivers/net/team/team.c --- linux-nvidia-tegra-5.15.0/drivers/net/team/team.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/net/tun.c linux-nvidia-tegra-5.15.0/drivers/net/tun.c --- linux-nvidia-tegra-5.15.0/drivers/net/tun.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/net/usb/aqc111.c linux-nvidia-tegra-5.15.0/drivers/net/usb/aqc111.c --- linux-nvidia-tegra-5.15.0/drivers/net/usb/aqc111.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/net/usb/ax88179_178a.c linux-nvidia-tegra-5.15.0/drivers/net/usb/ax88179_178a.c --- linux-nvidia-tegra-5.15.0/drivers/net/usb/ax88179_178a.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/net/usb/dm9601.c linux-nvidia-tegra-5.15.0/drivers/net/usb/dm9601.c --- linux-nvidia-tegra-5.15.0/drivers/net/usb/dm9601.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/net/usb/mcs7830.c linux-nvidia-tegra-5.15.0/drivers/net/usb/mcs7830.c --- linux-nvidia-tegra-5.15.0/drivers/net/usb/mcs7830.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/net/usb/qmi_wwan.c linux-nvidia-tegra-5.15.0/drivers/net/usb/qmi_wwan.c --- linux-nvidia-tegra-5.15.0/drivers/net/usb/qmi_wwan.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/net/usb/r8152.c linux-nvidia-tegra-5.15.0/drivers/net/usb/r8152.c --- linux-nvidia-tegra-5.15.0/drivers/net/usb/r8152.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/net/usb/smsc95xx.c linux-nvidia-tegra-5.15.0/drivers/net/usb/smsc95xx.c --- linux-nvidia-tegra-5.15.0/drivers/net/usb/smsc95xx.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/net/usb/sr9700.c linux-nvidia-tegra-5.15.0/drivers/net/usb/sr9700.c --- linux-nvidia-tegra-5.15.0/drivers/net/usb/sr9700.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/net/wireguard/device.c linux-nvidia-tegra-5.15.0/drivers/net/wireguard/device.c --- linux-nvidia-tegra-5.15.0/drivers/net/wireguard/device.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/net/wireguard/receive.c linux-nvidia-tegra-5.15.0/drivers/net/wireguard/receive.c --- linux-nvidia-tegra-5.15.0/drivers/net/wireguard/receive.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/net/wireguard/send.c linux-nvidia-tegra-5.15.0/drivers/net/wireguard/send.c --- linux-nvidia-tegra-5.15.0/drivers/net/wireguard/send.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/net/wireless/ath/ath10k/snoc.c linux-nvidia-tegra-5.15.0/drivers/net/wireless/ath/ath10k/snoc.c --- linux-nvidia-tegra-5.15.0/drivers/net/wireless/ath/ath10k/snoc.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/net/wireless/ath/ath11k/ahb.c linux-nvidia-tegra-5.15.0/drivers/net/wireless/ath/ath11k/ahb.c --- linux-nvidia-tegra-5.15.0/drivers/net/wireless/ath/ath11k/ahb.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/net/wireless/ath/ath11k/dp_rx.c linux-nvidia-tegra-5.15.0/drivers/net/wireless/ath/ath11k/dp_rx.c --- linux-nvidia-tegra-5.15.0/drivers/net/wireless/ath/ath11k/dp_rx.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/net/wireless/ath/ath11k/wmi.c linux-nvidia-tegra-5.15.0/drivers/net/wireless/ath/ath11k/wmi.c --- linux-nvidia-tegra-5.15.0/drivers/net/wireless/ath/ath11k/wmi.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/net/wireless/ath/ath9k/htc_drv_debug.c linux-nvidia-tegra-5.15.0/drivers/net/wireless/ath/ath9k/htc_drv_debug.c --- linux-nvidia-tegra-5.15.0/drivers/net/wireless/ath/ath9k/htc_drv_debug.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/net/wireless/intel/iwlwifi/mvm/phy-ctxt.c linux-nvidia-tegra-5.15.0/drivers/net/wireless/intel/iwlwifi/mvm/phy-ctxt.c --- linux-nvidia-tegra-5.15.0/drivers/net/wireless/intel/iwlwifi/mvm/phy-ctxt.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/net/wireless/intel/iwlwifi/mvm/tx.c linux-nvidia-tegra-5.15.0/drivers/net/wireless/intel/iwlwifi/mvm/tx.c --- linux-nvidia-tegra-5.15.0/drivers/net/wireless/intel/iwlwifi/mvm/tx.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/net/wireless/intel/iwlwifi/pcie/internal.h linux-nvidia-tegra-5.15.0/drivers/net/wireless/intel/iwlwifi/pcie/internal.h --- linux-nvidia-tegra-5.15.0/drivers/net/wireless/intel/iwlwifi/pcie/internal.h +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/net/wireless/intel/iwlwifi/pcie/rx.c linux-nvidia-tegra-5.15.0/drivers/net/wireless/intel/iwlwifi/pcie/rx.c --- linux-nvidia-tegra-5.15.0/drivers/net/wireless/intel/iwlwifi/pcie/rx.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/net/wireless/intel/iwlwifi/pcie/trans-gen2.c linux-nvidia-tegra-5.15.0/drivers/net/wireless/intel/iwlwifi/pcie/trans-gen2.c --- linux-nvidia-tegra-5.15.0/drivers/net/wireless/intel/iwlwifi/pcie/trans-gen2.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/net/wireless/intel/iwlwifi/pcie/trans.c linux-nvidia-tegra-5.15.0/drivers/net/wireless/intel/iwlwifi/pcie/trans.c --- linux-nvidia-tegra-5.15.0/drivers/net/wireless/intel/iwlwifi/pcie/trans.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/net/wireless/intel/iwlwifi/queue/tx.c linux-nvidia-tegra-5.15.0/drivers/net/wireless/intel/iwlwifi/queue/tx.c --- linux-nvidia-tegra-5.15.0/drivers/net/wireless/intel/iwlwifi/queue/tx.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/net/wireless/intel/iwlwifi/queue/tx.h linux-nvidia-tegra-5.15.0/drivers/net/wireless/intel/iwlwifi/queue/tx.h --- linux-nvidia-tegra-5.15.0/drivers/net/wireless/intel/iwlwifi/queue/tx.h +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/net/wireless/mac80211_hwsim.c linux-nvidia-tegra-5.15.0/drivers/net/wireless/mac80211_hwsim.c --- linux-nvidia-tegra-5.15.0/drivers/net/wireless/mac80211_hwsim.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/net/wireless/marvell/mwifiex/11n_rxreorder.c linux-nvidia-tegra-5.15.0/drivers/net/wireless/marvell/mwifiex/11n_rxreorder.c --- linux-nvidia-tegra-5.15.0/drivers/net/wireless/marvell/mwifiex/11n_rxreorder.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/net/wireless/marvell/mwifiex/cfg80211.c linux-nvidia-tegra-5.15.0/drivers/net/wireless/marvell/mwifiex/cfg80211.c --- linux-nvidia-tegra-5.15.0/drivers/net/wireless/marvell/mwifiex/cfg80211.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/net/wireless/marvell/mwifiex/fw.h linux-nvidia-tegra-5.15.0/drivers/net/wireless/marvell/mwifiex/fw.h --- linux-nvidia-tegra-5.15.0/drivers/net/wireless/marvell/mwifiex/fw.h +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/net/wireless/mediatek/mt76/dma.c linux-nvidia-tegra-5.15.0/drivers/net/wireless/mediatek/mt76/dma.c --- linux-nvidia-tegra-5.15.0/drivers/net/wireless/mediatek/mt76/dma.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/net/wireless/mediatek/mt76/eeprom.c linux-nvidia-tegra-5.15.0/drivers/net/wireless/mediatek/mt76/eeprom.c --- linux-nvidia-tegra-5.15.0/drivers/net/wireless/mediatek/mt76/eeprom.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/net/wireless/mediatek/mt76/mac80211.c linux-nvidia-tegra-5.15.0/drivers/net/wireless/mediatek/mt76/mac80211.c --- linux-nvidia-tegra-5.15.0/drivers/net/wireless/mediatek/mt76/mac80211.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/net/wireless/mediatek/mt76/mt76.h linux-nvidia-tegra-5.15.0/drivers/net/wireless/mediatek/mt76/mt76.h --- linux-nvidia-tegra-5.15.0/drivers/net/wireless/mediatek/mt76/mt76.h +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/net/wireless/mediatek/mt76/mt7603/mac.c linux-nvidia-tegra-5.15.0/drivers/net/wireless/mediatek/mt76/mt7603/mac.c --- linux-nvidia-tegra-5.15.0/drivers/net/wireless/mediatek/mt76/mt7603/mac.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/net/wireless/mediatek/mt76/sdio.c linux-nvidia-tegra-5.15.0/drivers/net/wireless/mediatek/mt76/sdio.c --- linux-nvidia-tegra-5.15.0/drivers/net/wireless/mediatek/mt76/sdio.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/net/wireless/mediatek/mt76/testmode.c linux-nvidia-tegra-5.15.0/drivers/net/wireless/mediatek/mt76/testmode.c --- linux-nvidia-tegra-5.15.0/drivers/net/wireless/mediatek/mt76/testmode.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/net/wireless/mediatek/mt76/tx.c linux-nvidia-tegra-5.15.0/drivers/net/wireless/mediatek/mt76/tx.c --- linux-nvidia-tegra-5.15.0/drivers/net/wireless/mediatek/mt76/tx.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/net/wireless/mediatek/mt76/usb.c linux-nvidia-tegra-5.15.0/drivers/net/wireless/mediatek/mt76/usb.c --- linux-nvidia-tegra-5.15.0/drivers/net/wireless/mediatek/mt76/usb.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/net/wireless/microchip/wilc1000/wlan.c linux-nvidia-tegra-5.15.0/drivers/net/wireless/microchip/wilc1000/wlan.c --- linux-nvidia-tegra-5.15.0/drivers/net/wireless/microchip/wilc1000/wlan.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/net/wireless/realtek/rtlwifi/rtl8192de/phy.c linux-nvidia-tegra-5.15.0/drivers/net/wireless/realtek/rtlwifi/rtl8192de/phy.c --- linux-nvidia-tegra-5.15.0/drivers/net/wireless/realtek/rtlwifi/rtl8192de/phy.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/net/wireless/realtek/rtlwifi/rtl8821ae/phy.c linux-nvidia-tegra-5.15.0/drivers/net/wireless/realtek/rtlwifi/rtl8821ae/phy.c --- linux-nvidia-tegra-5.15.0/drivers/net/wireless/realtek/rtlwifi/rtl8821ae/phy.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/net/wireless/realtek/rtw88/mac80211.c linux-nvidia-tegra-5.15.0/drivers/net/wireless/realtek/rtw88/mac80211.c --- linux-nvidia-tegra-5.15.0/drivers/net/wireless/realtek/rtw88/mac80211.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/net/xen-netback/netback.c linux-nvidia-tegra-5.15.0/drivers/net/xen-netback/netback.c --- linux-nvidia-tegra-5.15.0/drivers/net/xen-netback/netback.c +++ linux-nvidia-tegra-5.15.0/drivers/net/xen-netback/netback.c @@ -463,12 +463,25 @@ } 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)) { + unsigned long flags; + + spin_lock_irqsave(&queue->response_lock, flags); + make_tx_response(queue, txp, 0, XEN_NETIF_RSP_OKAY); + push_tx_responses(queue); + spin_unlock_irqrestore(&queue->response_lock, flags); + ++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 +494,39 @@ 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)) { + unsigned long flags; + + spin_lock_irqsave(&queue->response_lock, flags); + make_tx_response(queue, txp, 0, + XEN_NETIF_RSP_OKAY); + push_tx_responses(queue); + spin_unlock_irqrestore(&queue->response_lock, + flags); + 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); } diff -u linux-nvidia-tegra-5.15.0/drivers/nvdimm/region_devs.c linux-nvidia-tegra-5.15.0/drivers/nvdimm/region_devs.c --- linux-nvidia-tegra-5.15.0/drivers/nvdimm/region_devs.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/nvme/host/core.c linux-nvidia-tegra-5.15.0/drivers/nvme/host/core.c --- linux-nvidia-tegra-5.15.0/drivers/nvme/host/core.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/nvme/host/nvme.h linux-nvidia-tegra-5.15.0/drivers/nvme/host/nvme.h --- linux-nvidia-tegra-5.15.0/drivers/nvme/host/nvme.h +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/nvme/host/pci.c linux-nvidia-tegra-5.15.0/drivers/nvme/host/pci.c --- linux-nvidia-tegra-5.15.0/drivers/nvme/host/pci.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/nvme/host/rdma.c linux-nvidia-tegra-5.15.0/drivers/nvme/host/rdma.c --- linux-nvidia-tegra-5.15.0/drivers/nvme/host/rdma.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/nvme/target/tcp.c linux-nvidia-tegra-5.15.0/drivers/nvme/target/tcp.c --- linux-nvidia-tegra-5.15.0/drivers/nvme/target/tcp.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/of/base.c linux-nvidia-tegra-5.15.0/drivers/of/base.c --- linux-nvidia-tegra-5.15.0/drivers/of/base.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/of/dynamic.c linux-nvidia-tegra-5.15.0/drivers/of/dynamic.c --- linux-nvidia-tegra-5.15.0/drivers/of/dynamic.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/of/unittest.c linux-nvidia-tegra-5.15.0/drivers/of/unittest.c --- linux-nvidia-tegra-5.15.0/drivers/of/unittest.c +++ linux-nvidia-tegra-5.15.0/drivers/of/unittest.c @@ -448,6 +448,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 +540,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 +551,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] = kref_read(&p[i]->kobj.kref); } 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 +579,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 +596,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 +634,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 +683,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] == kref_read(&p[i]->kobj.kref), + "provider%d: expected:%d got:%d\n", + i, prefs[i], kref_read(&p[i]->kobj.kref)); + of_node_put(p[i]); + } } static void __init of_unittest_property_string(void) diff -u linux-nvidia-tegra-5.15.0/drivers/parport/parport_pc.c linux-nvidia-tegra-5.15.0/drivers/parport/parport_pc.c --- linux-nvidia-tegra-5.15.0/drivers/parport/parport_pc.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/pci/controller/dwc/pcie-designware-ep.c linux-nvidia-tegra-5.15.0/drivers/pci/controller/dwc/pcie-designware-ep.c --- linux-nvidia-tegra-5.15.0/drivers/pci/controller/dwc/pcie-designware-ep.c +++ linux-nvidia-tegra-5.15.0/drivers/pci/controller/dwc/pcie-designware-ep.c @@ -581,6 +581,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-nvidia-tegra-5.15.0/drivers/pci/controller/dwc/pcie-designware-host.c linux-nvidia-tegra-5.15.0/drivers/pci/controller/dwc/pcie-designware-host.c --- linux-nvidia-tegra-5.15.0/drivers/pci/controller/dwc/pcie-designware-host.c +++ linux-nvidia-tegra-5.15.0/drivers/pci/controller/dwc/pcie-designware-host.c @@ -358,6 +358,12 @@ if (ret < 0) return ret; } else if (pp->has_msi_ctrl) { + u32 ctrl, num_ctrls; + + num_ctrls = pp->num_vectors / MAX_MSI_IRQS_PER_CTRL; + for (ctrl = 0; ctrl < num_ctrls; ctrl++) + pp->irq_mask[ctrl] = ~0; + if (!pp->msi_irq) { pp->msi_irq = platform_get_irq_byname_optional(pdev, "msi"); if (pp->msi_irq < 0) { @@ -576,7 +582,6 @@ /* Initialize IRQ Status array */ for (ctrl = 0; ctrl < num_ctrls; ctrl++) { - pp->irq_mask[ctrl] = ~0; dw_pcie_writel_dbi(pci, PCIE_MSI_INTR0_MASK + (ctrl * MSI_REG_CTRL_BLOCK_SIZE), pp->irq_mask[ctrl]); diff -u linux-nvidia-tegra-5.15.0/drivers/pci/controller/dwc/pcie-tegra194.c linux-nvidia-tegra-5.15.0/drivers/pci/controller/dwc/pcie-tegra194.c --- linux-nvidia-tegra-5.15.0/drivers/pci/controller/dwc/pcie-tegra194.c +++ linux-nvidia-tegra-5.15.0/drivers/pci/controller/dwc/pcie-tegra194.c @@ -4,11 +4,12 @@ * Tegra194 * Tegra234 * - * Copyright (C) 2019-2023 NVIDIA Corporation. + * Copyright (C) 2019-2024 NVIDIA Corporation. * * Author: Vidya Sagar */ +#include #include #include #include @@ -484,8 +485,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 + @@ -1254,8 +1254,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); @@ -1415,7 +1414,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); /* Clear Slot Clock Configuration bit if SRNS configuration */ @@ -2961,11 +2960,14 @@ ret = tegra_pcie_config_ep(pcie, pdev); if (ret < 0) goto fail; + else + return 0; break; default: dev_err(dev, "Invalid PCIe device type %d\n", pcie->of_data->mode); + ret = -EINVAL; } fail: diff -u linux-nvidia-tegra-5.15.0/drivers/pci/controller/pci-loongson.c linux-nvidia-tegra-5.15.0/drivers/pci/controller/pci-loongson.c --- linux-nvidia-tegra-5.15.0/drivers/pci/controller/pci-loongson.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/pci/controller/pcie-mediatek.c linux-nvidia-tegra-5.15.0/drivers/pci/controller/pcie-mediatek.c --- linux-nvidia-tegra-5.15.0/drivers/pci/controller/pcie-mediatek.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/pci/pci-acpi.c linux-nvidia-tegra-5.15.0/drivers/pci/pci-acpi.c --- linux-nvidia-tegra-5.15.0/drivers/pci/pci-acpi.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/pci/pci-sysfs.c linux-nvidia-tegra-5.15.0/drivers/pci/pci-sysfs.c --- linux-nvidia-tegra-5.15.0/drivers/pci/pci-sysfs.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/pci/pci.c linux-nvidia-tegra-5.15.0/drivers/pci/pci.c --- linux-nvidia-tegra-5.15.0/drivers/pci/pci.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/pci/pci.h linux-nvidia-tegra-5.15.0/drivers/pci/pci.h --- linux-nvidia-tegra-5.15.0/drivers/pci/pci.h +++ linux-nvidia-tegra-5.15.0/drivers/pci/pci.h @@ -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-nvidia-tegra-5.15.0/drivers/pci/pcie/aspm.c linux-nvidia-tegra-5.15.0/drivers/pci/pcie/aspm.c --- linux-nvidia-tegra-5.15.0/drivers/pci/pcie/aspm.c +++ linux-nvidia-tegra-5.15.0/drivers/pci/pcie/aspm.c @@ -1090,0 +1091,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); +} @@ -1293,6 +1312,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-nvidia-tegra-5.15.0/drivers/pci/quirks.c linux-nvidia-tegra-5.15.0/drivers/pci/quirks.c --- linux-nvidia-tegra-5.15.0/drivers/pci/quirks.c +++ linux-nvidia-tegra-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,7 +615,7 @@ * defines as "USB device (not host controller)". The dwc3 driver can then * claim it based on its Vendor and Device ID. */ -static void quirk_amd_nl_class(struct pci_dev *pdev) +static void quirk_amd_dwc_class(struct pci_dev *pdev) { u32 class = pdev->class; @@ -625,7 +625,9 @@ 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 @@ -4599,17 +4601,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); } @@ -5401,6 +5407,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 @@ -5414,14 +5426,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 */ @@ -5444,6 +5452,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-nvidia-tegra-5.15.0/drivers/pcmcia/cs.c linux-nvidia-tegra-5.15.0/drivers/pcmcia/cs.c --- linux-nvidia-tegra-5.15.0/drivers/pcmcia/cs.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/phy/motorola/phy-mapphone-mdm6600.c linux-nvidia-tegra-5.15.0/drivers/phy/motorola/phy-mapphone-mdm6600.c --- linux-nvidia-tegra-5.15.0/drivers/phy/motorola/phy-mapphone-mdm6600.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/phy/tegra/phy-tegra194-p2u.c linux-nvidia-tegra-5.15.0/drivers/phy/tegra/phy-tegra194-p2u.c --- linux-nvidia-tegra-5.15.0/drivers/phy/tegra/phy-tegra194-p2u.c +++ linux-nvidia-tegra-5.15.0/drivers/phy/tegra/phy-tegra194-p2u.c @@ -155,7 +155,7 @@ p2u_writel(phy, val, P2U_DIR_SEARCH_CTRL); } - if (phy->of_data->lane_margin) { + if (phy->of_data->lane_margin && phy->bpmp) { val = P2U_RX_MARGIN_SW_INT_EN_READINESS | P2U_RX_MARGIN_SW_INT_EN_MARGIN_START | P2U_RX_MARGIN_SW_INT_EN_MARGIN_CHANGE | @@ -385,8 +385,8 @@ struct device *dev = &pdev->dev; struct phy *generic_phy; struct tegra_p2u *phy; + int irq = -ENODEV; int ret; - u32 irq; phy = devm_kzalloc(dev, sizeof(*phy), GFP_KERNEL); if (!phy) @@ -420,16 +420,15 @@ if (IS_ERR(phy_provider)) return PTR_ERR(phy_provider); - if (phy->of_data->lane_margin) { + if (phy->of_data->lane_margin) + irq = platform_get_irq_byname(pdev, "intr"); + + if (irq < 0) { + dev_warn(dev, "Device tree update required to enable lane margining\n"); + } else { spin_lock_init(&phy->next_state_lock); INIT_WORK(&phy->rx_margin_work, rx_margin_work_fn); - irq = platform_get_irq_byname(pdev, "intr"); - if (!irq) { - dev_err(dev, "failed to get intr interrupt\n"); - return irq; - } - ret = devm_request_irq(&pdev->dev, irq, tegra_p2u_irq_handler, 0, "tegra-p2u-intr", phy); if (ret) { @@ -456,7 +455,7 @@ { struct tegra_p2u *phy = platform_get_drvdata(pdev); - if (phy->of_data->lane_margin) + if (phy->bpmp) tegra_bpmp_put(phy->bpmp); return 0; diff -u linux-nvidia-tegra-5.15.0/drivers/phy/tegra/xusb-tegra186.c linux-nvidia-tegra-5.15.0/drivers/phy/tegra/xusb-tegra186.c --- linux-nvidia-tegra-5.15.0/drivers/phy/tegra/xusb-tegra186.c +++ linux-nvidia-tegra-5.15.0/drivers/phy/tegra/xusb-tegra186.c @@ -659,6 +659,12 @@ value &= ~CYA_TRK_CODE_UPDATE_ON_IDLE; padctl_writel(padctl, value, XUSB_PADCTL_USB2_BIAS_PAD_CTL2); } else { + /* Disable periodic tracking explicitly before disabling + * the clock to avoid unstable connections + */ + value = padctl_readl(padctl, XUSB_PADCTL_USB2_BIAS_PAD_CTL2); + value &= ~(USB2_TRK_HW_MODE | CYA_TRK_CODE_UPDATE_ON_IDLE); + padctl_writel(padctl, value, XUSB_PADCTL_USB2_BIAS_PAD_CTL2); clk_disable_unprepare(priv->usb2_trk_clk); } @@ -1738,7 +1744,6 @@ .num_supplies = ARRAY_SIZE(tegra194_xusb_padctl_supply_names), .supports_gen2 = true, .poll_trk_completed = true, - .trk_hw_mode = true, .supports_lp_cfg_en = true, }; EXPORT_SYMBOL_GPL(tegra234_xusb_padctl_soc); diff -u linux-nvidia-tegra-5.15.0/drivers/phy/tegra/xusb.c linux-nvidia-tegra-5.15.0/drivers/phy/tegra/xusb.c --- linux-nvidia-tegra-5.15.0/drivers/phy/tegra/xusb.c +++ linux-nvidia-tegra-5.15.0/drivers/phy/tegra/xusb.c @@ -461,7 +461,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-nvidia-tegra-5.15.0/drivers/pinctrl/core.c linux-nvidia-tegra-5.15.0/drivers/pinctrl/core.c --- linux-nvidia-tegra-5.15.0/drivers/pinctrl/core.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/pinctrl/pinctrl-at91-pio4.c linux-nvidia-tegra-5.15.0/drivers/pinctrl/pinctrl-at91-pio4.c --- linux-nvidia-tegra-5.15.0/drivers/pinctrl/pinctrl-at91-pio4.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/pinctrl/qcom/pinctrl-lpass-lpi.c linux-nvidia-tegra-5.15.0/drivers/pinctrl/qcom/pinctrl-lpass-lpi.c --- linux-nvidia-tegra-5.15.0/drivers/pinctrl/qcom/pinctrl-lpass-lpi.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/pinctrl/tegra/pinctrl-tegra.c linux-nvidia-tegra-5.15.0/drivers/pinctrl/tegra/pinctrl-tegra.c --- linux-nvidia-tegra-5.15.0/drivers/pinctrl/tegra/pinctrl-tegra.c +++ linux-nvidia-tegra-5.15.0/drivers/pinctrl/tegra/pinctrl-tegra.c @@ -94,6 +94,7 @@ {"nvidia,slew-rate-falling", TEGRA_PINCONF_PARAM_SLEW_RATE_FALLING}, {"nvidia,slew-rate-rising", TEGRA_PINCONF_PARAM_SLEW_RATE_RISING}, {"nvidia,drive-type", TEGRA_PINCONF_PARAM_DRIVE_TYPE}, + {"nvidia,gpio-mode", TEGRA_PINCONF_PARAM_GPIO_MODE}, }; static int tegra_pinctrl_dt_subnode_to_map(struct pinctrl_dev *pctldev, @@ -472,6 +473,12 @@ *bit = g->drvtype_bit; *width = 2; break; + case TEGRA_PINCONF_PARAM_GPIO_MODE: + *bank = g->mux_bank; + *reg = g->mux_reg; + *bit = g->sfsel_bit; + *width = 1; + break; default: dev_err(pmx->dev, "Invalid config param %04x\n", param); return -ENOTSUPP; diff -u linux-nvidia-tegra-5.15.0/drivers/pinctrl/tegra/pinctrl-tegra.h linux-nvidia-tegra-5.15.0/drivers/pinctrl/tegra/pinctrl-tegra.h --- linux-nvidia-tegra-5.15.0/drivers/pinctrl/tegra/pinctrl-tegra.h +++ linux-nvidia-tegra-5.15.0/drivers/pinctrl/tegra/pinctrl-tegra.h @@ -54,6 +54,8 @@ TEGRA_PINCONF_PARAM_SLEW_RATE_RISING, /* argument: Integer, range is HW-dependant */ TEGRA_PINCONF_PARAM_DRIVE_TYPE, + /* argument: Boolean */ + TEGRA_PINCONF_PARAM_GPIO_MODE, }; enum tegra_pinconf_pull { diff -u linux-nvidia-tegra-5.15.0/drivers/platform/mellanox/mlxbf-pmc.c linux-nvidia-tegra-5.15.0/drivers/platform/mellanox/mlxbf-pmc.c --- linux-nvidia-tegra-5.15.0/drivers/platform/mellanox/mlxbf-pmc.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/platform/mellanox/mlxbf-tmfifo.c linux-nvidia-tegra-5.15.0/drivers/platform/mellanox/mlxbf-tmfifo.c --- linux-nvidia-tegra-5.15.0/drivers/platform/mellanox/mlxbf-tmfifo.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/platform/surface/aggregator/core.c linux-nvidia-tegra-5.15.0/drivers/platform/surface/aggregator/core.c --- linux-nvidia-tegra-5.15.0/drivers/platform/surface/aggregator/core.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/platform/x86/Kconfig linux-nvidia-tegra-5.15.0/drivers/platform/x86/Kconfig --- linux-nvidia-tegra-5.15.0/drivers/platform/x86/Kconfig +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/platform/x86/asus-nb-wmi.c linux-nvidia-tegra-5.15.0/drivers/platform/x86/asus-nb-wmi.c --- linux-nvidia-tegra-5.15.0/drivers/platform/x86/asus-nb-wmi.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/platform/x86/asus-wmi.c linux-nvidia-tegra-5.15.0/drivers/platform/x86/asus-wmi.c --- linux-nvidia-tegra-5.15.0/drivers/platform/x86/asus-wmi.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/platform/x86/thinkpad_acpi.c linux-nvidia-tegra-5.15.0/drivers/platform/x86/thinkpad_acpi.c --- linux-nvidia-tegra-5.15.0/drivers/platform/x86/thinkpad_acpi.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/platform/x86/touchscreen_dmi.c linux-nvidia-tegra-5.15.0/drivers/platform/x86/touchscreen_dmi.c --- linux-nvidia-tegra-5.15.0/drivers/platform/x86/touchscreen_dmi.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/platform/x86/wmi.c linux-nvidia-tegra-5.15.0/drivers/platform/x86/wmi.c --- linux-nvidia-tegra-5.15.0/drivers/platform/x86/wmi.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/ptp/ptp_clock.c linux-nvidia-tegra-5.15.0/drivers/ptp/ptp_clock.c --- linux-nvidia-tegra-5.15.0/drivers/ptp/ptp_clock.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/ptp/ptp_sysfs.c linux-nvidia-tegra-5.15.0/drivers/ptp/ptp_sysfs.c --- linux-nvidia-tegra-5.15.0/drivers/ptp/ptp_sysfs.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/regulator/core.c linux-nvidia-tegra-5.15.0/drivers/regulator/core.c --- linux-nvidia-tegra-5.15.0/drivers/regulator/core.c +++ linux-nvidia-tegra-5.15.0/drivers/regulator/core.c @@ -5649,15 +5649,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-nvidia-tegra-5.15.0/drivers/rpmsg/qcom_glink_native.c linux-nvidia-tegra-5.15.0/drivers/rpmsg/qcom_glink_native.c --- linux-nvidia-tegra-5.15.0/drivers/rpmsg/qcom_glink_native.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/rpmsg/rpmsg_core.c linux-nvidia-tegra-5.15.0/drivers/rpmsg/rpmsg_core.c --- linux-nvidia-tegra-5.15.0/drivers/rpmsg/rpmsg_core.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/s390/block/dasd.c linux-nvidia-tegra-5.15.0/drivers/s390/block/dasd.c --- linux-nvidia-tegra-5.15.0/drivers/s390/block/dasd.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/s390/cio/css.c linux-nvidia-tegra-5.15.0/drivers/s390/cio/css.c --- linux-nvidia-tegra-5.15.0/drivers/s390/cio/css.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/s390/crypto/ap_bus.c linux-nvidia-tegra-5.15.0/drivers/s390/crypto/ap_bus.c --- linux-nvidia-tegra-5.15.0/drivers/s390/crypto/ap_bus.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/scsi/be2iscsi/be_main.c linux-nvidia-tegra-5.15.0/drivers/scsi/be2iscsi/be_main.c --- linux-nvidia-tegra-5.15.0/drivers/scsi/be2iscsi/be_main.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/scsi/bnx2fc/bnx2fc_fcoe.c linux-nvidia-tegra-5.15.0/drivers/scsi/bnx2fc/bnx2fc_fcoe.c --- linux-nvidia-tegra-5.15.0/drivers/scsi/bnx2fc/bnx2fc_fcoe.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/scsi/hisi_sas/hisi_sas_main.c linux-nvidia-tegra-5.15.0/drivers/scsi/hisi_sas/hisi_sas_main.c --- linux-nvidia-tegra-5.15.0/drivers/scsi/hisi_sas/hisi_sas_main.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/scsi/hisi_sas/hisi_sas_v2_hw.c linux-nvidia-tegra-5.15.0/drivers/scsi/hisi_sas/hisi_sas_v2_hw.c --- linux-nvidia-tegra-5.15.0/drivers/scsi/hisi_sas/hisi_sas_v2_hw.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/scsi/hisi_sas/hisi_sas_v3_hw.c linux-nvidia-tegra-5.15.0/drivers/scsi/hisi_sas/hisi_sas_v3_hw.c --- linux-nvidia-tegra-5.15.0/drivers/scsi/hisi_sas/hisi_sas_v3_hw.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/scsi/ibmvscsi/ibmvfc.c linux-nvidia-tegra-5.15.0/drivers/scsi/ibmvscsi/ibmvfc.c --- linux-nvidia-tegra-5.15.0/drivers/scsi/ibmvscsi/ibmvfc.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/scsi/lpfc/lpfc_hbadisc.c linux-nvidia-tegra-5.15.0/drivers/scsi/lpfc/lpfc_hbadisc.c --- linux-nvidia-tegra-5.15.0/drivers/scsi/lpfc/lpfc_hbadisc.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/scsi/megaraid/megaraid_sas_base.c linux-nvidia-tegra-5.15.0/drivers/scsi/megaraid/megaraid_sas_base.c --- linux-nvidia-tegra-5.15.0/drivers/scsi/megaraid/megaraid_sas_base.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/scsi/mpi3mr/mpi3mr_os.c linux-nvidia-tegra-5.15.0/drivers/scsi/mpi3mr/mpi3mr_os.c --- linux-nvidia-tegra-5.15.0/drivers/scsi/mpi3mr/mpi3mr_os.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/scsi/mpt3sas/mpt3sas_base.c linux-nvidia-tegra-5.15.0/drivers/scsi/mpt3sas/mpt3sas_base.c --- linux-nvidia-tegra-5.15.0/drivers/scsi/mpt3sas/mpt3sas_base.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/scsi/mpt3sas/mpt3sas_scsih.c linux-nvidia-tegra-5.15.0/drivers/scsi/mpt3sas/mpt3sas_scsih.c --- linux-nvidia-tegra-5.15.0/drivers/scsi/mpt3sas/mpt3sas_scsih.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/scsi/qla2xxx/qla_os.c linux-nvidia-tegra-5.15.0/drivers/scsi/qla2xxx/qla_os.c --- linux-nvidia-tegra-5.15.0/drivers/scsi/qla2xxx/qla_os.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/scsi/scsi_error.c linux-nvidia-tegra-5.15.0/drivers/scsi/scsi_error.c --- linux-nvidia-tegra-5.15.0/drivers/scsi/scsi_error.c +++ linux-nvidia-tegra-5.15.0/drivers/scsi/scsi_error.c @@ -1104,6 +1104,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 +2398,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-nvidia-tegra-5.15.0/drivers/scsi/ufs/ufshcd.c linux-nvidia-tegra-5.15.0/drivers/scsi/ufs/ufshcd.c --- linux-nvidia-tegra-5.15.0/drivers/scsi/ufs/ufshcd.c +++ linux-nvidia-tegra-5.15.0/drivers/scsi/ufs/ufshcd.c @@ -3475,7 +3475,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++) diff -u linux-nvidia-tegra-5.15.0/drivers/soc/qcom/llcc-qcom.c linux-nvidia-tegra-5.15.0/drivers/soc/qcom/llcc-qcom.c --- linux-nvidia-tegra-5.15.0/drivers/soc/qcom/llcc-qcom.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/soc/tegra/fuse/fuse-tegra30.c linux-nvidia-tegra-5.15.0/drivers/soc/tegra/fuse/fuse-tegra30.c --- linux-nvidia-tegra-5.15.0/drivers/soc/tegra/fuse/fuse-tegra30.c +++ linux-nvidia-tegra-5.15.0/drivers/soc/tegra/fuse/fuse-tegra30.c @@ -1,6 +1,6 @@ // SPDX-License-Identifier: GPL-2.0-only /* - * Copyright (c) 2013-2014, NVIDIA CORPORATION. All rights reserved. + * Copyright (c) 2013-2024, NVIDIA CORPORATION. All rights reserved. */ #include @@ -633,15 +633,20 @@ }; static const struct nvmem_keepout tegra234_fuse_keepouts[] = { - { .start = 0x01c, .end = 0x0c8 }, - { .start = 0x12c, .end = 0x184 }, + { .start = 0x01c, .end = 0x064 }, + { .start = 0x084, .end = 0x0a0 }, + { .start = 0x0a4, .end = 0x0c8 }, + { .start = 0x12c, .end = 0x164 }, + { .start = 0x16c, .end = 0x184 }, { .start = 0x190, .end = 0x198 }, { .start = 0x1a0, .end = 0x204 }, - { .start = 0x21c, .end = 0x250 }, - { .start = 0x25c, .end = 0x2f0 }, + { .start = 0x21c, .end = 0x2f0 }, { .start = 0x310, .end = 0x3d8 }, - { .start = 0x400, .end = 0x4f0 }, - { .start = 0x4f8, .end = 0x7e8 }, + { .start = 0x400, .end = 0x420 }, + { .start = 0x444, .end = 0x490 }, + { .start = 0x4bc, .end = 0x4f0 }, + { .start = 0x4f8, .end = 0x54c }, + { .start = 0x57c, .end = 0x7e8 }, { .start = 0x8d0, .end = 0x8d8 }, { .start = 0xacc, .end = 0xf00 } }; diff -u linux-nvidia-tegra-5.15.0/drivers/soundwire/stream.c linux-nvidia-tegra-5.15.0/drivers/soundwire/stream.c --- linux-nvidia-tegra-5.15.0/drivers/soundwire/stream.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/spi/Kconfig linux-nvidia-tegra-5.15.0/drivers/spi/Kconfig --- linux-nvidia-tegra-5.15.0/drivers/spi/Kconfig +++ linux-nvidia-tegra-5.15.0/drivers/spi/Kconfig @@ -986,6 +986,7 @@ config SPI_ZYNQ_QSPI tristate "Xilinx Zynq QSPI controller" depends on ARCH_ZYNQ || COMPILE_TEST + depends on SPI_MEM help This enables support for the Zynq Quad SPI controller in master mode. @@ -993,9 +994,10 @@ config SPI_ZYNQMP_GQSPI tristate "Xilinx ZynqMP GQSPI controller" - depends on (SPI_MASTER && HAS_DMA) || COMPILE_TEST + depends on (SPI_MEM && HAS_DMA) || COMPILE_TEST help Enables Xilinx GQSPI controller driver for Zynq UltraScale+ MPSoC. + This controller only supports SPI memory interface. config SPI_AMD tristate "AMD SPI controller" diff -u linux-nvidia-tegra-5.15.0/drivers/spi/spi-nxp-fspi.c linux-nvidia-tegra-5.15.0/drivers/spi/spi-nxp-fspi.c --- linux-nvidia-tegra-5.15.0/drivers/spi/spi-nxp-fspi.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/spi/spi-tegra114.c linux-nvidia-tegra-5.15.0/drivers/spi/spi-tegra114.c --- linux-nvidia-tegra-5.15.0/drivers/spi/spi-tegra114.c +++ linux-nvidia-tegra-5.15.0/drivers/spi/spi-tegra114.c @@ -1301,10 +1301,6 @@ return IRQ_WAKE_THREAD; } -static struct tegra_spi_soc_data tegra234_spi_soc_data = { - .has_intr_mask_reg = true, -}; - static struct tegra_spi_soc_data tegra114_spi_soc_data = { .has_intr_mask_reg = false, }; @@ -1319,9 +1315,6 @@ static const struct of_device_id tegra_spi_of_match[] = { { - .compatible = "nvidia,tegra234-spi", - .data = &tegra234_spi_soc_data, - }, { .compatible = "nvidia,tegra114-spi", .data = &tegra114_spi_soc_data, }, { diff -u linux-nvidia-tegra-5.15.0/drivers/spi/spi-tegra20-slink.c linux-nvidia-tegra-5.15.0/drivers/spi/spi-tegra20-slink.c --- linux-nvidia-tegra-5.15.0/drivers/spi/spi-tegra20-slink.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/spi/spi.c linux-nvidia-tegra-5.15.0/drivers/spi/spi.c --- linux-nvidia-tegra-5.15.0/drivers/spi/spi.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/staging/gdm724x/gdm_lte.c linux-nvidia-tegra-5.15.0/drivers/staging/gdm724x/gdm_lte.c --- linux-nvidia-tegra-5.15.0/drivers/staging/gdm724x/gdm_lte.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/tee/optee/device.c linux-nvidia-tegra-5.15.0/drivers/tee/optee/device.c --- linux-nvidia-tegra-5.15.0/drivers/tee/optee/device.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/tee/optee/rpc.c linux-nvidia-tegra-5.15.0/drivers/tee/optee/rpc.c --- linux-nvidia-tegra-5.15.0/drivers/tee/optee/rpc.c +++ linux-nvidia-tegra-5.15.0/drivers/tee/optee/rpc.c @@ -1,7 +1,7 @@ // SPDX-License-Identifier: GPL-2.0-only /* * Copyright (c) 2015-2016, Linaro Limited - * Copyright (c) 2023, NVIDIA CORPORATION & AFFILIATES. All rights reserved. + * Copyright (c) 2023-2024, NVIDIA CORPORATION & AFFILIATES. All rights reserved. */ #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt @@ -151,8 +151,6 @@ { struct wq_entry *w; - mutex_lock(&wq->mu); - list_for_each_entry(w, &wq->db, link) if (w->key == key) goto out; @@ -164,13 +162,16 @@ list_add_tail(&w->link, &wq->db); } out: - mutex_unlock(&wq->mu); return w; } static void wq_sleep(struct optee_wait_queue *wq, u32 key) { - struct wq_entry *w = wq_entry_get(wq, key); + struct wq_entry *w; + + mutex_lock(&wq->mu); + w = wq_entry_get(wq, key); + mutex_unlock(&wq->mu); if (w) { (void)wait_for_completion_timeout(&w->c, SLEEP_TIMEOUT); @@ -183,10 +184,15 @@ static void wq_wakeup(struct optee_wait_queue *wq, u32 key) { - struct wq_entry *w = wq_entry_get(wq, key); + struct wq_entry *w; + + mutex_lock(&wq->mu); + w = wq_entry_get(wq, key); if (w) complete(&w->c); + + mutex_unlock(&wq->mu); } static void handle_rpc_func_cmd_wq(struct optee *optee, diff -u linux-nvidia-tegra-5.15.0/drivers/thermal/thermal_core.c linux-nvidia-tegra-5.15.0/drivers/thermal/thermal_core.c --- linux-nvidia-tegra-5.15.0/drivers/thermal/thermal_core.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/tty/hvc/hvc_xen.c linux-nvidia-tegra-5.15.0/drivers/tty/hvc/hvc_xen.c --- linux-nvidia-tegra-5.15.0/drivers/tty/hvc/hvc_xen.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/tty/n_gsm.c linux-nvidia-tegra-5.15.0/drivers/tty/n_gsm.c --- linux-nvidia-tegra-5.15.0/drivers/tty/n_gsm.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/tty/serial/8250/8250_omap.c linux-nvidia-tegra-5.15.0/drivers/tty/serial/8250/8250_omap.c --- linux-nvidia-tegra-5.15.0/drivers/tty/serial/8250/8250_omap.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/tty/serial/8250/8250_pci.c linux-nvidia-tegra-5.15.0/drivers/tty/serial/8250/8250_pci.c --- linux-nvidia-tegra-5.15.0/drivers/tty/serial/8250/8250_pci.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/tty/serial/amba-pl011.c linux-nvidia-tegra-5.15.0/drivers/tty/serial/amba-pl011.c --- linux-nvidia-tegra-5.15.0/drivers/tty/serial/amba-pl011.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/tty/serial/imx.c linux-nvidia-tegra-5.15.0/drivers/tty/serial/imx.c --- linux-nvidia-tegra-5.15.0/drivers/tty/serial/imx.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/tty/serial/meson_uart.c linux-nvidia-tegra-5.15.0/drivers/tty/serial/meson_uart.c --- linux-nvidia-tegra-5.15.0/drivers/tty/serial/meson_uart.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/tty/serial/sc16is7xx.c linux-nvidia-tegra-5.15.0/drivers/tty/serial/sc16is7xx.c --- linux-nvidia-tegra-5.15.0/drivers/tty/serial/sc16is7xx.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/tty/sysrq.c linux-nvidia-tegra-5.15.0/drivers/tty/sysrq.c --- linux-nvidia-tegra-5.15.0/drivers/tty/sysrq.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/tty/tty.h linux-nvidia-tegra-5.15.0/drivers/tty/tty.h --- linux-nvidia-tegra-5.15.0/drivers/tty/tty.h +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/tty/tty_io.c linux-nvidia-tegra-5.15.0/drivers/tty/tty_io.c --- linux-nvidia-tegra-5.15.0/drivers/tty/tty_io.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/tty/tty_ioctl.c linux-nvidia-tegra-5.15.0/drivers/tty/tty_ioctl.c --- linux-nvidia-tegra-5.15.0/drivers/tty/tty_ioctl.c +++ linux-nvidia-tegra-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? */ diff -u linux-nvidia-tegra-5.15.0/drivers/usb/cdns3/cdns3-gadget.c linux-nvidia-tegra-5.15.0/drivers/usb/cdns3/cdns3-gadget.c --- linux-nvidia-tegra-5.15.0/drivers/usb/cdns3/cdns3-gadget.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/usb/cdns3/cdns3-gadget.h linux-nvidia-tegra-5.15.0/drivers/usb/cdns3/cdns3-gadget.h --- linux-nvidia-tegra-5.15.0/drivers/usb/cdns3/cdns3-gadget.h +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/usb/cdns3/cdnsp-ring.c linux-nvidia-tegra-5.15.0/drivers/usb/cdns3/cdnsp-ring.c --- linux-nvidia-tegra-5.15.0/drivers/usb/cdns3/cdnsp-ring.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/usb/chipidea/core.c linux-nvidia-tegra-5.15.0/drivers/usb/chipidea/core.c --- linux-nvidia-tegra-5.15.0/drivers/usb/chipidea/core.c +++ linux-nvidia-tegra-5.15.0/drivers/usb/chipidea/core.c @@ -521,6 +521,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-nvidia-tegra-5.15.0/drivers/usb/class/cdc-acm.c linux-nvidia-tegra-5.15.0/drivers/usb/class/cdc-acm.c --- linux-nvidia-tegra-5.15.0/drivers/usb/class/cdc-acm.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/usb/core/config.c linux-nvidia-tegra-5.15.0/drivers/usb/core/config.c --- linux-nvidia-tegra-5.15.0/drivers/usb/core/config.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/usb/dwc2/hcd.c linux-nvidia-tegra-5.15.0/drivers/usb/dwc2/hcd.c --- linux-nvidia-tegra-5.15.0/drivers/usb/dwc2/hcd.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/usb/dwc3/core.c linux-nvidia-tegra-5.15.0/drivers/usb/dwc3/core.c --- linux-nvidia-tegra-5.15.0/drivers/usb/dwc3/core.c +++ linux-nvidia-tegra-5.15.0/drivers/usb/dwc3/core.c @@ -275,48 +275,11 @@ /* * 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. */ if (dwc->current_dr_role == DWC3_GCTL_PRTCAP_HOST) return 0; - /* - * If the dr_mode is host and the dwc->current_dr_role is not the - * corresponding DWC3_GCTL_PRTCAP_HOST, then the dwc3_core_init_mode - * isn't executed yet. Ensure the phy is ready before the controller - * updates the GCTL.PRTCAPDIR or other settings by soft-resetting - * the phy. - * - * Note: GUSB3PIPECTL[n] and GUSB2PHYCFG[n] are port settings where n - * is port index. If this is a multiport host, then we need to reset - * all active ports. - */ - if (dwc->dr_mode == USB_DR_MODE_HOST) { - u32 usb3_port; - u32 usb2_port; - - usb3_port = dwc3_readl(dwc->regs, DWC3_GUSB3PIPECTL(0)); - usb3_port |= DWC3_GUSB3PIPECTL_PHYSOFTRST; - dwc3_writel(dwc->regs, DWC3_GUSB3PIPECTL(0), usb3_port); - - usb2_port = dwc3_readl(dwc->regs, DWC3_GUSB2PHYCFG(0)); - usb2_port |= DWC3_GUSB2PHYCFG_PHYSOFTRST; - dwc3_writel(dwc->regs, DWC3_GUSB2PHYCFG(0), usb2_port); - - /* Small delay for phy reset assertion */ - usleep_range(1000, 2000); - - usb3_port &= ~DWC3_GUSB3PIPECTL_PHYSOFTRST; - dwc3_writel(dwc->regs, DWC3_GUSB3PIPECTL(0), usb3_port); - - usb2_port &= ~DWC3_GUSB2PHYCFG_PHYSOFTRST; - dwc3_writel(dwc->regs, DWC3_GUSB2PHYCFG(0), usb2_port); - - /* Wait for clock synchronization */ - msleep(50); - return 0; - } - reg = dwc3_readl(dwc->regs, DWC3_DCTL); reg |= DWC3_DCTL_CSFTRST; reg &= ~DWC3_DCTL_RUN_STOP; @@ -1701,6 +1664,8 @@ pm_runtime_put(dev); + dma_set_max_seg_size(dev, UINT_MAX); + return 0; err5: diff -u linux-nvidia-tegra-5.15.0/drivers/usb/dwc3/drd.c linux-nvidia-tegra-5.15.0/drivers/usb/dwc3/drd.c --- linux-nvidia-tegra-5.15.0/drivers/usb/dwc3/drd.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/usb/dwc3/dwc3-qcom.c linux-nvidia-tegra-5.15.0/drivers/usb/dwc3/dwc3-qcom.c --- linux-nvidia-tegra-5.15.0/drivers/usb/dwc3/dwc3-qcom.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/usb/gadget/function/f_hid.c linux-nvidia-tegra-5.15.0/drivers/usb/gadget/function/f_hid.c --- linux-nvidia-tegra-5.15.0/drivers/usb/gadget/function/f_hid.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/usb/gadget/function/f_ncm.c linux-nvidia-tegra-5.15.0/drivers/usb/gadget/function/f_ncm.c --- linux-nvidia-tegra-5.15.0/drivers/usb/gadget/function/f_ncm.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/usb/gadget/legacy/raw_gadget.c linux-nvidia-tegra-5.15.0/drivers/usb/gadget/legacy/raw_gadget.c --- linux-nvidia-tegra-5.15.0/drivers/usb/gadget/legacy/raw_gadget.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/usb/gadget/udc/core.c linux-nvidia-tegra-5.15.0/drivers/usb/gadget/udc/core.c --- linux-nvidia-tegra-5.15.0/drivers/usb/gadget/udc/core.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/usb/host/fotg210-hcd.c linux-nvidia-tegra-5.15.0/drivers/usb/host/fotg210-hcd.c --- linux-nvidia-tegra-5.15.0/drivers/usb/host/fotg210-hcd.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/usb/host/xhci-mtk.c linux-nvidia-tegra-5.15.0/drivers/usb/host/xhci-mtk.c --- linux-nvidia-tegra-5.15.0/drivers/usb/host/xhci-mtk.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/usb/host/xhci-pci.c linux-nvidia-tegra-5.15.0/drivers/usb/host/xhci-pci.c --- linux-nvidia-tegra-5.15.0/drivers/usb/host/xhci-pci.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/usb/host/xhci-plat.c linux-nvidia-tegra-5.15.0/drivers/usb/host/xhci-plat.c --- linux-nvidia-tegra-5.15.0/drivers/usb/host/xhci-plat.c +++ linux-nvidia-tegra-5.15.0/drivers/usb/host/xhci-plat.c @@ -466,23 +466,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, PMSG_RESUME); 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-nvidia-tegra-5.15.0/drivers/usb/mon/mon_bin.c linux-nvidia-tegra-5.15.0/drivers/usb/mon/mon_bin.c --- linux-nvidia-tegra-5.15.0/drivers/usb/mon/mon_bin.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/usb/phy/phy-mxs-usb.c linux-nvidia-tegra-5.15.0/drivers/usb/phy/phy-mxs-usb.c --- linux-nvidia-tegra-5.15.0/drivers/usb/phy/phy-mxs-usb.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/usb/serial/ftdi_sio.c linux-nvidia-tegra-5.15.0/drivers/usb/serial/ftdi_sio.c --- linux-nvidia-tegra-5.15.0/drivers/usb/serial/ftdi_sio.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/usb/serial/ftdi_sio_ids.h linux-nvidia-tegra-5.15.0/drivers/usb/serial/ftdi_sio_ids.h --- linux-nvidia-tegra-5.15.0/drivers/usb/serial/ftdi_sio_ids.h +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/usb/serial/option.c linux-nvidia-tegra-5.15.0/drivers/usb/serial/option.c --- linux-nvidia-tegra-5.15.0/drivers/usb/serial/option.c +++ linux-nvidia-tegra-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 */ @@ -2262,8 +2277,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-nvidia-tegra-5.15.0/drivers/usb/typec/class.c linux-nvidia-tegra-5.15.0/drivers/usb/typec/class.c --- linux-nvidia-tegra-5.15.0/drivers/usb/typec/class.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/usb/typec/tcpm/tcpm.c linux-nvidia-tegra-5.15.0/drivers/usb/typec/tcpm/tcpm.c --- linux-nvidia-tegra-5.15.0/drivers/usb/typec/tcpm/tcpm.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/usb/usbip/stub_dev.c linux-nvidia-tegra-5.15.0/drivers/usb/usbip/stub_dev.c --- linux-nvidia-tegra-5.15.0/drivers/usb/usbip/stub_dev.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/vdpa/mlx5/net/mlx5_vnet.c linux-nvidia-tegra-5.15.0/drivers/vdpa/mlx5/net/mlx5_vnet.c --- linux-nvidia-tegra-5.15.0/drivers/vdpa/mlx5/net/mlx5_vnet.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/vhost/vhost.c linux-nvidia-tegra-5.15.0/drivers/vhost/vhost.c --- linux-nvidia-tegra-5.15.0/drivers/vhost/vhost.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/video/fbdev/imsttfb.c linux-nvidia-tegra-5.15.0/drivers/video/fbdev/imsttfb.c --- linux-nvidia-tegra-5.15.0/drivers/video/fbdev/imsttfb.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/video/fbdev/sticore.h linux-nvidia-tegra-5.15.0/drivers/video/fbdev/sticore.h --- linux-nvidia-tegra-5.15.0/drivers/video/fbdev/sticore.h +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/video/fbdev/uvesafb.c linux-nvidia-tegra-5.15.0/drivers/video/fbdev/uvesafb.c --- linux-nvidia-tegra-5.15.0/drivers/video/fbdev/uvesafb.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/virtio/virtio_mmio.c linux-nvidia-tegra-5.15.0/drivers/virtio/virtio_mmio.c --- linux-nvidia-tegra-5.15.0/drivers/virtio/virtio_mmio.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/watchdog/hpwdt.c linux-nvidia-tegra-5.15.0/drivers/watchdog/hpwdt.c --- linux-nvidia-tegra-5.15.0/drivers/watchdog/hpwdt.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/watchdog/rti_wdt.c linux-nvidia-tegra-5.15.0/drivers/watchdog/rti_wdt.c --- linux-nvidia-tegra-5.15.0/drivers/watchdog/rti_wdt.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/watchdog/sbsa_gwdt.c linux-nvidia-tegra-5.15.0/drivers/watchdog/sbsa_gwdt.c --- linux-nvidia-tegra-5.15.0/drivers/watchdog/sbsa_gwdt.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/watchdog/watchdog_dev.c linux-nvidia-tegra-5.15.0/drivers/watchdog/watchdog_dev.c --- linux-nvidia-tegra-5.15.0/drivers/watchdog/watchdog_dev.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/xen/events/events_base.c linux-nvidia-tegra-5.15.0/drivers/xen/events/events_base.c --- linux-nvidia-tegra-5.15.0/drivers/xen/events/events_base.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/xen/swiotlb-xen.c linux-nvidia-tegra-5.15.0/drivers/xen/swiotlb-xen.c --- linux-nvidia-tegra-5.15.0/drivers/xen/swiotlb-xen.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/drivers/xen/xen-pciback/conf_space_capability.c linux-nvidia-tegra-5.15.0/drivers/xen/xen-pciback/conf_space_capability.c --- linux-nvidia-tegra-5.15.0/drivers/xen/xen-pciback/conf_space_capability.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/fs/Kconfig linux-nvidia-tegra-5.15.0/fs/Kconfig --- linux-nvidia-tegra-5.15.0/fs/Kconfig +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/fs/afs/internal.h linux-nvidia-tegra-5.15.0/fs/afs/internal.h --- linux-nvidia-tegra-5.15.0/fs/afs/internal.h +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/fs/afs/rxrpc.c linux-nvidia-tegra-5.15.0/fs/afs/rxrpc.c --- linux-nvidia-tegra-5.15.0/fs/afs/rxrpc.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/fs/afs/super.c linux-nvidia-tegra-5.15.0/fs/afs/super.c --- linux-nvidia-tegra-5.15.0/fs/afs/super.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/fs/btrfs/ctree.c linux-nvidia-tegra-5.15.0/fs/btrfs/ctree.c --- linux-nvidia-tegra-5.15.0/fs/btrfs/ctree.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/fs/btrfs/delalloc-space.c linux-nvidia-tegra-5.15.0/fs/btrfs/delalloc-space.c --- linux-nvidia-tegra-5.15.0/fs/btrfs/delalloc-space.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/fs/btrfs/disk-io.c linux-nvidia-tegra-5.15.0/fs/btrfs/disk-io.c --- linux-nvidia-tegra-5.15.0/fs/btrfs/disk-io.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/fs/btrfs/extent-tree.c linux-nvidia-tegra-5.15.0/fs/btrfs/extent-tree.c --- linux-nvidia-tegra-5.15.0/fs/btrfs/extent-tree.c +++ linux-nvidia-tegra-5.15.0/fs/btrfs/extent-tree.c @@ -1674,12 +1674,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-nvidia-tegra-5.15.0/fs/btrfs/ioctl.c linux-nvidia-tegra-5.15.0/fs/btrfs/ioctl.c --- linux-nvidia-tegra-5.15.0/fs/btrfs/ioctl.c +++ linux-nvidia-tegra-5.15.0/fs/btrfs/ioctl.c @@ -1855,6 +1855,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 +2103,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 +2235,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 +2304,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 +2338,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; @@ -3531,7 +3540,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; @@ -4867,7 +4876,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-nvidia-tegra-5.15.0/fs/btrfs/send.c linux-nvidia-tegra-5.15.0/fs/btrfs/send.c --- linux-nvidia-tegra-5.15.0/fs/btrfs/send.c +++ linux-nvidia-tegra-5.15.0/fs/btrfs/send.c @@ -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-nvidia-tegra-5.15.0/fs/btrfs/tree-log.c linux-nvidia-tegra-5.15.0/fs/btrfs/tree-log.c --- linux-nvidia-tegra-5.15.0/fs/btrfs/tree-log.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/fs/btrfs/volumes.c linux-nvidia-tegra-5.15.0/fs/btrfs/volumes.c --- linux-nvidia-tegra-5.15.0/fs/btrfs/volumes.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/fs/cifs/cifsfs.c linux-nvidia-tegra-5.15.0/fs/cifs/cifsfs.c --- linux-nvidia-tegra-5.15.0/fs/cifs/cifsfs.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/fs/cifs/smb2ops.c linux-nvidia-tegra-5.15.0/fs/cifs/smb2ops.c --- linux-nvidia-tegra-5.15.0/fs/cifs/smb2ops.c +++ linux-nvidia-tegra-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; } @@ -5820,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, @@ -5842,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, @@ -5863,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, @@ -5884,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, @@ -5905,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, @@ -5926,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, @@ -5947,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-nvidia-tegra-5.15.0/fs/cifs/smb2pdu.c linux-nvidia-tegra-5.15.0/fs/cifs/smb2pdu.c --- linux-nvidia-tegra-5.15.0/fs/cifs/smb2pdu.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/fs/cifs/smb2transport.c linux-nvidia-tegra-5.15.0/fs/cifs/smb2transport.c --- linux-nvidia-tegra-5.15.0/fs/cifs/smb2transport.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/fs/cifs/xattr.c linux-nvidia-tegra-5.15.0/fs/cifs/xattr.c --- linux-nvidia-tegra-5.15.0/fs/cifs/xattr.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/fs/debugfs/file.c linux-nvidia-tegra-5.15.0/fs/debugfs/file.c --- linux-nvidia-tegra-5.15.0/fs/debugfs/file.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/fs/debugfs/inode.c linux-nvidia-tegra-5.15.0/fs/debugfs/inode.c --- linux-nvidia-tegra-5.15.0/fs/debugfs/inode.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/fs/exfat/namei.c linux-nvidia-tegra-5.15.0/fs/exfat/namei.c --- linux-nvidia-tegra-5.15.0/fs/exfat/namei.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/fs/ext4/extents.c linux-nvidia-tegra-5.15.0/fs/ext4/extents.c --- linux-nvidia-tegra-5.15.0/fs/ext4/extents.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/fs/ext4/extents_status.c linux-nvidia-tegra-5.15.0/fs/ext4/extents_status.c --- linux-nvidia-tegra-5.15.0/fs/ext4/extents_status.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/fs/ext4/mballoc.c linux-nvidia-tegra-5.15.0/fs/ext4/mballoc.c --- linux-nvidia-tegra-5.15.0/fs/ext4/mballoc.c +++ linux-nvidia-tegra-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; diff -u linux-nvidia-tegra-5.15.0/fs/ext4/resize.c linux-nvidia-tegra-5.15.0/fs/ext4/resize.c --- linux-nvidia-tegra-5.15.0/fs/ext4/resize.c +++ linux-nvidia-tegra-5.15.0/fs/ext4/resize.c @@ -556,13 +556,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 +1171,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 +1565,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 +1578,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; } } @@ -1949,9 +1948,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"); diff -u linux-nvidia-tegra-5.15.0/fs/f2fs/compress.c linux-nvidia-tegra-5.15.0/fs/f2fs/compress.c --- linux-nvidia-tegra-5.15.0/fs/f2fs/compress.c +++ linux-nvidia-tegra-5.15.0/fs/f2fs/compress.c @@ -1906,7 +1906,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-nvidia-tegra-5.15.0/fs/f2fs/data.c linux-nvidia-tegra-5.15.0/fs/f2fs/data.c --- linux-nvidia-tegra-5.15.0/fs/f2fs/data.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/fs/f2fs/file.c linux-nvidia-tegra-5.15.0/fs/f2fs/file.c --- linux-nvidia-tegra-5.15.0/fs/f2fs/file.c +++ linux-nvidia-tegra-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); @@ -2780,6 +2780,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 +3215,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; @@ -4249,6 +4255,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 +4360,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-nvidia-tegra-5.15.0/fs/f2fs/namei.c linux-nvidia-tegra-5.15.0/fs/f2fs/namei.c --- linux-nvidia-tegra-5.15.0/fs/f2fs/namei.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/fs/f2fs/super.c linux-nvidia-tegra-5.15.0/fs/f2fs/super.c --- linux-nvidia-tegra-5.15.0/fs/f2fs/super.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/fs/f2fs/xattr.c linux-nvidia-tegra-5.15.0/fs/f2fs/xattr.c --- linux-nvidia-tegra-5.15.0/fs/f2fs/xattr.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/fs/fs-writeback.c linux-nvidia-tegra-5.15.0/fs/fs-writeback.c --- linux-nvidia-tegra-5.15.0/fs/fs-writeback.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/fs/fuse/fuse_i.h linux-nvidia-tegra-5.15.0/fs/fuse/fuse_i.h --- linux-nvidia-tegra-5.15.0/fs/fuse/fuse_i.h +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/fs/fuse/inode.c linux-nvidia-tegra-5.15.0/fs/fuse/inode.c --- linux-nvidia-tegra-5.15.0/fs/fuse/inode.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/fs/gfs2/inode.c linux-nvidia-tegra-5.15.0/fs/gfs2/inode.c --- linux-nvidia-tegra-5.15.0/fs/gfs2/inode.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/fs/gfs2/quota.c linux-nvidia-tegra-5.15.0/fs/gfs2/quota.c --- linux-nvidia-tegra-5.15.0/fs/gfs2/quota.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/fs/gfs2/rgrp.c linux-nvidia-tegra-5.15.0/fs/gfs2/rgrp.c --- linux-nvidia-tegra-5.15.0/fs/gfs2/rgrp.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/fs/gfs2/super.c linux-nvidia-tegra-5.15.0/fs/gfs2/super.c --- linux-nvidia-tegra-5.15.0/fs/gfs2/super.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/fs/inode.c linux-nvidia-tegra-5.15.0/fs/inode.c --- linux-nvidia-tegra-5.15.0/fs/inode.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/fs/iomap/direct-io.c linux-nvidia-tegra-5.15.0/fs/iomap/direct-io.c --- linux-nvidia-tegra-5.15.0/fs/iomap/direct-io.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/fs/jbd2/commit.c linux-nvidia-tegra-5.15.0/fs/jbd2/commit.c --- linux-nvidia-tegra-5.15.0/fs/jbd2/commit.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/fs/jbd2/journal.c linux-nvidia-tegra-5.15.0/fs/jbd2/journal.c --- linux-nvidia-tegra-5.15.0/fs/jbd2/journal.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/fs/jbd2/recovery.c linux-nvidia-tegra-5.15.0/fs/jbd2/recovery.c --- linux-nvidia-tegra-5.15.0/fs/jbd2/recovery.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/fs/jfs/jfs_dmap.c linux-nvidia-tegra-5.15.0/fs/jfs/jfs_dmap.c --- linux-nvidia-tegra-5.15.0/fs/jfs/jfs_dmap.c +++ linux-nvidia-tegra-5.15.0/fs/jfs/jfs_dmap.c @@ -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) @@ -2989,14 +2996,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 +3028,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-nvidia-tegra-5.15.0/fs/jfs/jfs_imap.c linux-nvidia-tegra-5.15.0/fs/jfs/jfs_imap.c --- linux-nvidia-tegra-5.15.0/fs/jfs/jfs_imap.c +++ linux-nvidia-tegra-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])) { /* diff -u linux-nvidia-tegra-5.15.0/fs/jfs/jfs_mount.c linux-nvidia-tegra-5.15.0/fs/jfs/jfs_mount.c --- linux-nvidia-tegra-5.15.0/fs/jfs/jfs_mount.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/fs/ksmbd/Kconfig linux-nvidia-tegra-5.15.0/fs/ksmbd/Kconfig --- linux-nvidia-tegra-5.15.0/fs/ksmbd/Kconfig +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/fs/ksmbd/auth.c linux-nvidia-tegra-5.15.0/fs/ksmbd/auth.c --- linux-nvidia-tegra-5.15.0/fs/ksmbd/auth.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/fs/ksmbd/auth.h linux-nvidia-tegra-5.15.0/fs/ksmbd/auth.h --- linux-nvidia-tegra-5.15.0/fs/ksmbd/auth.h +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/fs/ksmbd/connection.c linux-nvidia-tegra-5.15.0/fs/ksmbd/connection.c --- linux-nvidia-tegra-5.15.0/fs/ksmbd/connection.c +++ linux-nvidia-tegra-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 @@ -307,7 +305,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 +317,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 +328,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 +345,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 +366,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,7 +413,7 @@ struct ksmbd_transport *t; again: - read_lock(&conn_list_lock); + down_read(&conn_list_lock); list_for_each_entry(conn, &conn_list, conns_list) { struct task_struct *task; @@ -414,12 +424,12 @@ 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-nvidia-tegra-5.15.0/fs/ksmbd/connection.h linux-nvidia-tegra-5.15.0/fs/ksmbd/connection.h --- linux-nvidia-tegra-5.15.0/fs/ksmbd/connection.h +++ linux-nvidia-tegra-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; @@ -116,11 +121,14 @@ 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 { @@ -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-nvidia-tegra-5.15.0/fs/ksmbd/ksmbd_netlink.h linux-nvidia-tegra-5.15.0/fs/ksmbd/ksmbd_netlink.h --- linux-nvidia-tegra-5.15.0/fs/ksmbd/ksmbd_netlink.h +++ linux-nvidia-tegra-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[]; }; @@ -350,6 +352,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 +369,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-nvidia-tegra-5.15.0/fs/ksmbd/mgmt/tree_connect.c linux-nvidia-tegra-5.15.0/fs/ksmbd/mgmt/tree_connect.c --- linux-nvidia-tegra-5.15.0/fs/ksmbd/mgmt/tree_connect.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/fs/ksmbd/mgmt/tree_connect.h linux-nvidia-tegra-5.15.0/fs/ksmbd/mgmt/tree_connect.h --- linux-nvidia-tegra-5.15.0/fs/ksmbd/mgmt/tree_connect.h +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/fs/ksmbd/mgmt/user_config.h linux-nvidia-tegra-5.15.0/fs/ksmbd/mgmt/user_config.h --- linux-nvidia-tegra-5.15.0/fs/ksmbd/mgmt/user_config.h +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/fs/ksmbd/mgmt/user_session.c linux-nvidia-tegra-5.15.0/fs/ksmbd/mgmt/user_session.c --- linux-nvidia-tegra-5.15.0/fs/ksmbd/mgmt/user_session.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/fs/ksmbd/mgmt/user_session.h linux-nvidia-tegra-5.15.0/fs/ksmbd/mgmt/user_session.h --- linux-nvidia-tegra-5.15.0/fs/ksmbd/mgmt/user_session.h +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/fs/ksmbd/oplock.c linux-nvidia-tegra-5.15.0/fs/ksmbd/oplock.c --- linux-nvidia-tegra-5.15.0/fs/ksmbd/oplock.c +++ linux-nvidia-tegra-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); 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,12 +544,13 @@ /* 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->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) { @@ -587,15 +618,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 +632,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 +660,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 +671,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 +720,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 +743,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 +764,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 +780,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 +827,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 +835,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 +902,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 +1035,7 @@ SMB2_LEASE_KEY_SIZE); lease2->duration = lease1->duration; lease2->flags = lease1->flags; + lease2->epoch = lease1->epoch++; } static int add_lease_global_list(struct oplock_info *opinfo) @@ -1069,6 +1085,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,10 +1191,6 @@ 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; - opinfo = alloc_opinfo(work, pid, tid); if (!opinfo) return -ENOMEM; @@ -1135,8 +1230,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 +1241,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 +1316,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 +1351,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 +1387,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 +1440,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 +1465,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 +1484,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 +1552,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 +1700,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 +1728,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 +1803,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-nvidia-tegra-5.15.0/fs/ksmbd/oplock.h linux-nvidia-tegra-5.15.0/fs/ksmbd/oplock.h --- linux-nvidia-tegra-5.15.0/fs/ksmbd/oplock.h +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/fs/ksmbd/server.c linux-nvidia-tegra-5.15.0/fs/ksmbd/server.c --- linux-nvidia-tegra-5.15.0/fs/ksmbd/server.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/fs/ksmbd/smb2misc.c linux-nvidia-tegra-5.15.0/fs/ksmbd/smb2misc.c --- linux-nvidia-tegra-5.15.0/fs/ksmbd/smb2misc.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/fs/ksmbd/smb2ops.c linux-nvidia-tegra-5.15.0/fs/ksmbd/smb2ops.c --- linux-nvidia-tegra-5.15.0/fs/ksmbd/smb2ops.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/fs/ksmbd/smb2pdu.c linux-nvidia-tegra-5.15.0/fs/ksmbd/smb2pdu.c --- linux-nvidia-tegra-5.15.0/fs/ksmbd/smb2pdu.c +++ linux-nvidia-tegra-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; @@ -1438,10 +1441,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 +1467,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); @@ -1537,7 +1539,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 +1577,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 +1595,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 +1612,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 +1625,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 +1657,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 +1668,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 +1677,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,7 +1778,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) || + if (negblob_off < offsetof(struct smb2_sess_setup_req, Buffer) || negblob_len < offsetof(struct negotiate_message, NegotiateFlags)) { rc = -EINVAL; goto out_err; @@ -1794,7 +1799,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 +1813,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 +1894,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 +1929,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 +1948,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 +1991,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 +2015,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 +2036,9 @@ rsp->hdr.Status = STATUS_ACCESS_DENIED; } + if (status.ret != KSMBD_TREE_CONN_STATUS_OK) + smb2_set_err_rsp(work); + return rc; } @@ -2086,28 +2113,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 +2178,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 +2219,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 +2239,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 +2275,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; @@ -2232,7 +2315,7 @@ * 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) { struct user_namespace *user_ns = mnt_user_ns(path->mnt); char *attr_name = NULL, *value; @@ -2279,7 +2362,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 +2376,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 +2409,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 +2441,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 +2469,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 +2481,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 +2500,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 +2516,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 +2543,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 +2572,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 +2583,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 +2606,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 +2638,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 +2663,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 +2685,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 +2696,7 @@ if (rc != -ENOMEM) rc = -ENOENT; name = NULL; - goto err_out1; + goto err_out2; } ksmbd_debug(SMB, "converted name = %s\n", name); @@ -2623,48 +2704,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 +2751,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 +2769,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 +2791,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 +2811,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 +2822,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 +2834,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 +2842,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 +2854,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 +2870,6 @@ if (req->CreateDisposition == FILE_OVERWRITE_IF_LE || req->CreateDisposition == FILE_OPEN_IF_LE) { rc = -EACCES; - path_put(&path); goto err_out; } @@ -2798,27 +2877,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 +2901,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 +2919,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 +2930,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 +2955,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; @@ -2903,7 +2978,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) { @@ -2944,15 +3020,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 +3074,6 @@ goto err_out; } - fp->filename = name; fp->cdoption = req->CreateDisposition; fp->daccess = daccess; fp->saccess = req->ShareAccess; @@ -3009,7 +3085,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 +3101,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 +3141,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 +3167,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 +3176,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 +3229,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 +3248,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 +3257,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 +3275,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 +3301,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 +3322,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 +3342,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 +3362,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 +3380,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 +3394,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 +3442,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 +3560,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 +3589,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 +3716,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 +3840,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 +4014,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 +4024,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 +4038,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 +4048,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 +4071,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 +4142,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 +4157,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 +4201,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 +4232,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 +4245,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 +4259,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 +4304,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 +4443,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 +4457,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 +4486,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 +4510,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 +4521,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 +4543,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 +4584,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 +4606,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 +4617,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 +4705,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 +4719,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 +4754,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 +4765,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 +4776,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 +4787,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 +4808,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 +4826,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 +4851,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 +4897,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 +4909,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 +4982,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 +4998,6 @@ struct kstatfs stfs; struct path path; int rc = 0, len; - int fs_infoclass_size = 0; if (!share->path) return -EIO; @@ -4957,8 +5027,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 +5055,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 +5081,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 +5093,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 +5108,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 +5127,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 +5148,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 +5168,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 +5187,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 +5195,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 +5229,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 +5243,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 +5273,6 @@ return rc; rsp->OutputBufferLength = cpu_to_le32(secdesclen); - inc_rfc1001_len(rsp_org, secdesclen); return 0; } @@ -5236,10 +5285,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 +5295,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 +5311,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 +5326,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 +5336,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 +5348,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; - id = le64_to_cpu(req->VolatileFileId); + WORK_BUFFERS(work, req, rsp); + + id = req->VolatileFileId; ksmbd_session_rpc_close(work->sess, id); rsp->StructureSize = cpu_to_le16(60); @@ -5309,8 +5366,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 +5383,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 +5413,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 +5432,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 +5473,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 +5494,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 +5544,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 +5559,18 @@ } 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); + 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 +5581,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 +5594,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 +5603,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 +5640,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 +5709,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 +5774,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 +5804,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 +5820,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 +5829,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 +5907,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 @@ -6049,7 +6024,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 +6036,30 @@ int smb2_set_info(struct ksmbd_work *work) { struct smb2_set_info_req *req; - struct smb2_set_info_rsp *rsp, *rsp_org; + struct smb2_set_info_rsp *rsp; struct ksmbd_file *fp; 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 (!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 +6094,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 +6137,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 +6182,6 @@ rsp->DataLength = cpu_to_le32(nbytes); rsp->DataRemaining = 0; rsp->Reserved2 = 0; - inc_rfc1001_len(rsp, nbytes); return 0; out: @@ -6205,30 +6191,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 +6247,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 +6264,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 +6321,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 +6354,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 +6374,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 +6413,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 +6461,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 +6477,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 +6511,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 +6528,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 +6573,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 +6594,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 +6604,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 +6618,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 +6654,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 +6684,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 +6699,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 +6711,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 +6721,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 +6797,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 +6851,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 +6869,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 +6903,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 +6923,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 +6935,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 +6944,7 @@ smb_lock = smb2_lock_init(flock, cmd, flags, &lock_list); if (!smb_lock) { err = -EINVAL; + locks_free_lock(flock); goto out; } } @@ -6942,7 +6976,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 +6993,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 +7015,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 +7024,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 +7035,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 +7076,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 +7089,7 @@ smb2_remove_blocked_lock, argv); if (rc) { + kfree(argv); err = -ENOMEM; goto out; } @@ -7070,17 +7101,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 +7118,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 +7126,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 +7150,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 +7172,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 +7224,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 +7346,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 +7357,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 +7395,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 +7406,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 +7430,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 +7439,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 +7594,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 +7611,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 +7632,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 +7723,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 +7772,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 +7950,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 +7977,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 +7987,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 +8085,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 +8124,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 +8133,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 +8221,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 +8233,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 +8260,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 +8315,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 +8334,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 +8377,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 +8408,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 +8466,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 +8489,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 +8522,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 +8540,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 +8561,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); - - iov[0].iov_base = tr_hdr; - iov[0].iov_len = sizeof(struct smb2_transform_hdr); - buf_size += iov[0].iov_len - 4; - - 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; + fill_transform_hdr(tr_buf, work->response_buf, work->conn->cipher_type); - 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; + iov[0].iov_base = tr_buf; + iov[0].iov_len = sizeof(struct smb2_transform_hdr) + 4; + work->tr_buf = tr_buf; - 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 +8614,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 +8622,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 +8639,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-nvidia-tegra-5.15.0/fs/ksmbd/smb2pdu.h linux-nvidia-tegra-5.15.0/fs/ksmbd/smb2pdu.h --- linux-nvidia-tegra-5.15.0/fs/ksmbd/smb2pdu.h +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/fs/ksmbd/smb_common.c linux-nvidia-tegra-5.15.0/fs/ksmbd/smb_common.c --- linux-nvidia-tegra-5.15.0/fs/ksmbd/smb_common.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/fs/ksmbd/smb_common.h linux-nvidia-tegra-5.15.0/fs/ksmbd/smb_common.h --- linux-nvidia-tegra-5.15.0/fs/ksmbd/smb_common.h +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/fs/ksmbd/smbacl.c linux-nvidia-tegra-5.15.0/fs/ksmbd/smbacl.c --- linux-nvidia-tegra-5.15.0/fs/ksmbd/smbacl.c +++ linux-nvidia-tegra-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]) { @@ -991,7 +991,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 +1105,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 +1118,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 +1136,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 +1183,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 +1207,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 +1310,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 +1334,7 @@ } } } - if (posix_acls) + if (!IS_ERR_OR_NULL(posix_acls)) posix_acl_release(posix_acls); } @@ -1352,8 +1374,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 +1403,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 +1434,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-nvidia-tegra-5.15.0/fs/ksmbd/smbacl.h linux-nvidia-tegra-5.15.0/fs/ksmbd/smbacl.h --- linux-nvidia-tegra-5.15.0/fs/ksmbd/smbacl.h +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/fs/ksmbd/transport_ipc.c linux-nvidia-tegra-5.15.0/fs/ksmbd/transport_ipc.c --- linux-nvidia-tegra-5.15.0/fs/ksmbd/transport_ipc.c +++ linux-nvidia-tegra-5.15.0/fs/ksmbd/transport_ipc.c @@ -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; diff -u linux-nvidia-tegra-5.15.0/fs/ksmbd/transport_rdma.c linux-nvidia-tegra-5.15.0/fs/ksmbd/transport_rdma.c --- linux-nvidia-tegra-5.15.0/fs/ksmbd/transport_rdma.c +++ linux-nvidia-tegra-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,7 @@ static int smb_direct_handle_connect_request(struct rdma_cm_id *new_cm_id) { struct smb_direct_transport *t; + int ret; if (!rdma_frwr_is_supported(&new_cm_id->device->attrs)) { ksmbd_debug(RDMA, @@ -1947,18 +2052,23 @@ if (!t) return -ENOMEM; + ret = smb_direct_connect(t); + if (ret) + goto out_err; + KSMBD_TRANS(t)->handler = kthread_run(ksmbd_conn_handler_loop, KSMBD_TRANS(t)->conn, "ksmbd:r%u", - SMB_DIRECT_PORT); + smb_direct_port); if (IS_ERR(KSMBD_TRANS(t)->handler)) { - int ret = PTR_ERR(KSMBD_TRANS(t)->handler); - + ret = PTR_ERR(KSMBD_TRANS(t)->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 +2132,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 +2200,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 +2213,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-nvidia-tegra-5.15.0/fs/ksmbd/transport_rdma.h linux-nvidia-tegra-5.15.0/fs/ksmbd/transport_rdma.h --- linux-nvidia-tegra-5.15.0/fs/ksmbd/transport_rdma.h +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/fs/ksmbd/transport_tcp.c linux-nvidia-tegra-5.15.0/fs/ksmbd/transport_tcp.c --- linux-nvidia-tegra-5.15.0/fs/ksmbd/transport_tcp.c +++ linux-nvidia-tegra-5.15.0/fs/ksmbd/transport_tcp.c @@ -428,7 +428,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 +506,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 +615,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-nvidia-tegra-5.15.0/fs/ksmbd/vfs.c linux-nvidia-tegra-5.15.0/fs/ksmbd/vfs.c --- linux-nvidia-tegra-5.15.0/fs/ksmbd/vfs.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/fs/ksmbd/vfs.h linux-nvidia-tegra-5.15.0/fs/ksmbd/vfs.h --- linux-nvidia-tegra-5.15.0/fs/ksmbd/vfs.h +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/fs/ksmbd/vfs_cache.c linux-nvidia-tegra-5.15.0/fs/ksmbd/vfs_cache.c --- linux-nvidia-tegra-5.15.0/fs/ksmbd/vfs_cache.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/fs/namei.c linux-nvidia-tegra-5.15.0/fs/namei.c --- linux-nvidia-tegra-5.15.0/fs/namei.c +++ linux-nvidia-tegra-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,20 +2986,10 @@ return inode_permission(mnt_userns, dir, MAY_WRITE | MAY_EXEC); } -/* - * p1 and p2 should be directories on the same fs. - */ -struct dentry *lock_rename(struct dentry *p1, struct dentry *p2) +static struct dentry *lock_two_directories(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); - p = d_ancestor(p2, p1); if (p) { inode_lock_nested(p2->d_inode, I_MUTEX_PARENT); @@ -2988,8 +3008,64 @@ I_MUTEX_PARENT, I_MUTEX_PARENT2); return NULL; } + +/* + * p1 and p2 should be directories on the same fs. + */ +struct dentry *lock_rename(struct dentry *p1, struct dentry *p2) +{ + 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); +/* + * 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); + /* + * 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); + } + + 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); + + /* + * 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_child); + void unlock_rename(struct dentry *p1, struct dentry *p2) { inode_unlock(p1->d_inode); @@ -3763,7 +3839,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 +4201,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 +4335,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; @@ -4832,7 +4909,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 +4918,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-nvidia-tegra-5.15.0/fs/namespace.c linux-nvidia-tegra-5.15.0/fs/namespace.c --- linux-nvidia-tegra-5.15.0/fs/namespace.c +++ linux-nvidia-tegra-5.15.0/fs/namespace.c @@ -2672,7 +2672,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); @@ -3006,6 +3011,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-nvidia-tegra-5.15.0/fs/nfs/nfs4proc.c linux-nvidia-tegra-5.15.0/fs/nfs/nfs4proc.c --- linux-nvidia-tegra-5.15.0/fs/nfs/nfs4proc.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/fs/nfs/pnfs.c linux-nvidia-tegra-5.15.0/fs/nfs/pnfs.c --- linux-nvidia-tegra-5.15.0/fs/nfs/pnfs.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/fs/nfsd/nfs4state.c linux-nvidia-tegra-5.15.0/fs/nfsd/nfs4state.c --- linux-nvidia-tegra-5.15.0/fs/nfsd/nfs4state.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/fs/nfsd/vfs.c linux-nvidia-tegra-5.15.0/fs/nfsd/vfs.c --- linux-nvidia-tegra-5.15.0/fs/nfsd/vfs.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/fs/nilfs2/sufile.c linux-nvidia-tegra-5.15.0/fs/nilfs2/sufile.c --- linux-nvidia-tegra-5.15.0/fs/nilfs2/sufile.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/fs/nilfs2/the_nilfs.c linux-nvidia-tegra-5.15.0/fs/nilfs2/the_nilfs.c --- linux-nvidia-tegra-5.15.0/fs/nilfs2/the_nilfs.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/fs/ntfs3/attrib.c linux-nvidia-tegra-5.15.0/fs/ntfs3/attrib.c --- linux-nvidia-tegra-5.15.0/fs/ntfs3/attrib.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/fs/ntfs3/attrlist.c linux-nvidia-tegra-5.15.0/fs/ntfs3/attrlist.c --- linux-nvidia-tegra-5.15.0/fs/ntfs3/attrlist.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/fs/ntfs3/bitmap.c linux-nvidia-tegra-5.15.0/fs/ntfs3/bitmap.c --- linux-nvidia-tegra-5.15.0/fs/ntfs3/bitmap.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/fs/ntfs3/frecord.c linux-nvidia-tegra-5.15.0/fs/ntfs3/frecord.c --- linux-nvidia-tegra-5.15.0/fs/ntfs3/frecord.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/fs/ntfs3/fslog.c linux-nvidia-tegra-5.15.0/fs/ntfs3/fslog.c --- linux-nvidia-tegra-5.15.0/fs/ntfs3/fslog.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/fs/ntfs3/fsntfs.c linux-nvidia-tegra-5.15.0/fs/ntfs3/fsntfs.c --- linux-nvidia-tegra-5.15.0/fs/ntfs3/fsntfs.c +++ linux-nvidia-tegra-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; } @@ -2458,10 +2451,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 +2488,8 @@ out: up_write(&wnd->rw_lock); + if (dirty) + ntfs_set_state(sbi, NTFS_DIRTY_ERROR); } /* diff -u linux-nvidia-tegra-5.15.0/fs/ntfs3/index.c linux-nvidia-tegra-5.15.0/fs/ntfs3/index.c --- linux-nvidia-tegra-5.15.0/fs/ntfs3/index.c +++ linux-nvidia-tegra-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; diff -u linux-nvidia-tegra-5.15.0/fs/ntfs3/super.c linux-nvidia-tegra-5.15.0/fs/ntfs3/super.c --- linux-nvidia-tegra-5.15.0/fs/ntfs3/super.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/fs/ntfs3/xattr.c linux-nvidia-tegra-5.15.0/fs/ntfs3/xattr.c --- linux-nvidia-tegra-5.15.0/fs/ntfs3/xattr.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/fs/overlayfs/copy_up.c linux-nvidia-tegra-5.15.0/fs/overlayfs/copy_up.c --- linux-nvidia-tegra-5.15.0/fs/overlayfs/copy_up.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/fs/overlayfs/super.c linux-nvidia-tegra-5.15.0/fs/overlayfs/super.c --- linux-nvidia-tegra-5.15.0/fs/overlayfs/super.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/fs/proc/proc_sysctl.c linux-nvidia-tegra-5.15.0/fs/proc/proc_sysctl.c --- linux-nvidia-tegra-5.15.0/fs/proc/proc_sysctl.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/fs/pstore/platform.c linux-nvidia-tegra-5.15.0/fs/pstore/platform.c --- linux-nvidia-tegra-5.15.0/fs/pstore/platform.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/fs/pstore/ram_core.c linux-nvidia-tegra-5.15.0/fs/pstore/ram_core.c --- linux-nvidia-tegra-5.15.0/fs/pstore/ram_core.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/fs/quota/dquot.c linux-nvidia-tegra-5.15.0/fs/quota/dquot.c --- linux-nvidia-tegra-5.15.0/fs/quota/dquot.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/fs/xfs/libxfs/xfs_inode_fork.c linux-nvidia-tegra-5.15.0/fs/xfs/libxfs/xfs_inode_fork.c --- linux-nvidia-tegra-5.15.0/fs/xfs/libxfs/xfs_inode_fork.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/fs/xfs/xfs_buf_item_recover.c linux-nvidia-tegra-5.15.0/fs/xfs/xfs_buf_item_recover.c --- linux-nvidia-tegra-5.15.0/fs/xfs/xfs_buf_item_recover.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/fs/xfs/xfs_inode.c linux-nvidia-tegra-5.15.0/fs/xfs/xfs_inode.c --- linux-nvidia-tegra-5.15.0/fs/xfs/xfs_inode.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/fs/xfs/xfs_iops.c linux-nvidia-tegra-5.15.0/fs/xfs/xfs_iops.c --- linux-nvidia-tegra-5.15.0/fs/xfs/xfs_iops.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/fs/xfs/xfs_log.c linux-nvidia-tegra-5.15.0/fs/xfs/xfs_log.c --- linux-nvidia-tegra-5.15.0/fs/xfs/xfs_log.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/fs/xfs/xfs_log_priv.h linux-nvidia-tegra-5.15.0/fs/xfs/xfs_log_priv.h --- linux-nvidia-tegra-5.15.0/fs/xfs/xfs_log_priv.h +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/fs/xfs/xfs_log_recover.c linux-nvidia-tegra-5.15.0/fs/xfs/xfs_log_recover.c --- linux-nvidia-tegra-5.15.0/fs/xfs/xfs_log_recover.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/fs/xfs/xfs_qm.c linux-nvidia-tegra-5.15.0/fs/xfs/xfs_qm.c --- linux-nvidia-tegra-5.15.0/fs/xfs/xfs_qm.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/fs/xfs/xfs_reflink.c linux-nvidia-tegra-5.15.0/fs/xfs/xfs_reflink.c --- linux-nvidia-tegra-5.15.0/fs/xfs/xfs_reflink.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/fs/xfs/xfs_symlink.c linux-nvidia-tegra-5.15.0/fs/xfs/xfs_symlink.c --- linux-nvidia-tegra-5.15.0/fs/xfs/xfs_symlink.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/include/drm/drm_bridge.h linux-nvidia-tegra-5.15.0/include/drm/drm_bridge.h --- linux-nvidia-tegra-5.15.0/include/drm/drm_bridge.h +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/include/drm/drm_mipi_dsi.h linux-nvidia-tegra-5.15.0/include/drm/drm_mipi_dsi.h --- linux-nvidia-tegra-5.15.0/include/drm/drm_mipi_dsi.h +++ linux-nvidia-tegra-5.15.0/include/drm/drm_mipi_dsi.h @@ -227,9 +227,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-nvidia-tegra-5.15.0/include/linux/blkdev.h linux-nvidia-tegra-5.15.0/include/linux/blkdev.h --- linux-nvidia-tegra-5.15.0/include/linux/blkdev.h +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/include/linux/bpf.h linux-nvidia-tegra-5.15.0/include/linux/bpf.h --- linux-nvidia-tegra-5.15.0/include/linux/bpf.h +++ linux-nvidia-tegra-5.15.0/include/linux/bpf.h @@ -2280,6 +2280,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-nvidia-tegra-5.15.0/include/linux/cpuhotplug.h linux-nvidia-tegra-5.15.0/include/linux/cpuhotplug.h --- linux-nvidia-tegra-5.15.0/include/linux/cpuhotplug.h +++ linux-nvidia-tegra-5.15.0/include/linux/cpuhotplug.h @@ -188,10 +188,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-nvidia-tegra-5.15.0/include/linux/cred.h linux-nvidia-tegra-5.15.0/include/linux/cred.h --- linux-nvidia-tegra-5.15.0/include/linux/cred.h +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/include/linux/ethtool.h linux-nvidia-tegra-5.15.0/include/linux/ethtool.h --- linux-nvidia-tegra-5.15.0/include/linux/ethtool.h +++ linux-nvidia-tegra-5.15.0/include/linux/ethtool.h @@ -781,10 +781,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-nvidia-tegra-5.15.0/include/linux/fs.h linux-nvidia-tegra-5.15.0/include/linux/fs.h --- linux-nvidia-tegra-5.15.0/include/linux/fs.h +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/include/linux/genhd.h linux-nvidia-tegra-5.15.0/include/linux/genhd.h --- linux-nvidia-tegra-5.15.0/include/linux/genhd.h +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/include/linux/hid.h linux-nvidia-tegra-5.15.0/include/linux/hid.h --- linux-nvidia-tegra-5.15.0/include/linux/hid.h +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/include/linux/if_vlan.h linux-nvidia-tegra-5.15.0/include/linux/if_vlan.h --- linux-nvidia-tegra-5.15.0/include/linux/if_vlan.h +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/include/linux/kasan.h linux-nvidia-tegra-5.15.0/include/linux/kasan.h --- linux-nvidia-tegra-5.15.0/include/linux/kasan.h +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/include/linux/kprobes.h linux-nvidia-tegra-5.15.0/include/linux/kprobes.h --- linux-nvidia-tegra-5.15.0/include/linux/kprobes.h +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/include/linux/lsm_hook_defs.h linux-nvidia-tegra-5.15.0/include/linux/lsm_hook_defs.h --- linux-nvidia-tegra-5.15.0/include/linux/lsm_hook_defs.h +++ linux-nvidia-tegra-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) @@ -265,7 +265,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-nvidia-tegra-5.15.0/include/linux/memblock.h linux-nvidia-tegra-5.15.0/include/linux/memblock.h --- linux-nvidia-tegra-5.15.0/include/linux/memblock.h +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/include/linux/mm.h linux-nvidia-tegra-5.15.0/include/linux/mm.h --- linux-nvidia-tegra-5.15.0/include/linux/mm.h +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/include/linux/mmc/host.h linux-nvidia-tegra-5.15.0/include/linux/mmc/host.h --- linux-nvidia-tegra-5.15.0/include/linux/mmc/host.h +++ linux-nvidia-tegra-5.15.0/include/linux/mmc/host.h @@ -429,6 +429,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 */ @@ -575,6 +576,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) { diff -u linux-nvidia-tegra-5.15.0/include/linux/namei.h linux-nvidia-tegra-5.15.0/include/linux/namei.h --- linux-nvidia-tegra-5.15.0/include/linux/namei.h +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/include/linux/netdevice.h linux-nvidia-tegra-5.15.0/include/linux/netdevice.h --- linux-nvidia-tegra-5.15.0/include/linux/netdevice.h +++ linux-nvidia-tegra-5.15.0/include/linux/netdevice.h @@ -2974,6 +2974,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); @@ -5495,4 +5496,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-nvidia-tegra-5.15.0/include/linux/of.h linux-nvidia-tegra-5.15.0/include/linux/of.h --- linux-nvidia-tegra-5.15.0/include/linux/of.h +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/include/linux/pci_ids.h linux-nvidia-tegra-5.15.0/include/linux/pci_ids.h --- linux-nvidia-tegra-5.15.0/include/linux/pci_ids.h +++ linux-nvidia-tegra-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 diff -u linux-nvidia-tegra-5.15.0/include/linux/platform_device.h linux-nvidia-tegra-5.15.0/include/linux/platform_device.h --- linux-nvidia-tegra-5.15.0/include/linux/platform_device.h +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/include/linux/preempt.h linux-nvidia-tegra-5.15.0/include/linux/preempt.h --- linux-nvidia-tegra-5.15.0/include/linux/preempt.h +++ linux-nvidia-tegra-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: diff -u linux-nvidia-tegra-5.15.0/include/linux/pwm.h linux-nvidia-tegra-5.15.0/include/linux/pwm.h --- linux-nvidia-tegra-5.15.0/include/linux/pwm.h +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/include/linux/qed/qed_eth_if.h linux-nvidia-tegra-5.15.0/include/linux/qed/qed_eth_if.h --- linux-nvidia-tegra-5.15.0/include/linux/qed/qed_eth_if.h +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/include/linux/qed/qed_if.h linux-nvidia-tegra-5.15.0/include/linux/qed/qed_if.h --- linux-nvidia-tegra-5.15.0/include/linux/qed/qed_if.h +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/include/linux/rpmsg.h linux-nvidia-tegra-5.15.0/include/linux/rpmsg.h --- linux-nvidia-tegra-5.15.0/include/linux/rpmsg.h +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/include/linux/spi/spi.h linux-nvidia-tegra-5.15.0/include/linux/spi/spi.h --- linux-nvidia-tegra-5.15.0/include/linux/spi/spi.h +++ linux-nvidia-tegra-5.15.0/include/linux/spi/spi.h @@ -1506,6 +1506,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-nvidia-tegra-5.15.0/include/linux/stmmac.h linux-nvidia-tegra-5.15.0/include/linux/stmmac.h --- linux-nvidia-tegra-5.15.0/include/linux/stmmac.h +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/include/linux/string.h linux-nvidia-tegra-5.15.0/include/linux/string.h --- linux-nvidia-tegra-5.15.0/include/linux/string.h +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/include/linux/sunrpc/clnt.h linux-nvidia-tegra-5.15.0/include/linux/sunrpc/clnt.h --- linux-nvidia-tegra-5.15.0/include/linux/sunrpc/clnt.h +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/include/linux/sysctl.h linux-nvidia-tegra-5.15.0/include/linux/sysctl.h --- linux-nvidia-tegra-5.15.0/include/linux/sysctl.h +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/include/linux/trace_events.h linux-nvidia-tegra-5.15.0/include/linux/trace_events.h --- linux-nvidia-tegra-5.15.0/include/linux/trace_events.h +++ linux-nvidia-tegra-5.15.0/include/linux/trace_events.h @@ -471,6 +471,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, @@ -609,6 +610,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), @@ -622,6 +624,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 { @@ -650,6 +653,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-nvidia-tegra-5.15.0/include/linux/workqueue.h linux-nvidia-tegra-5.15.0/include/linux/workqueue.h --- linux-nvidia-tegra-5.15.0/include/linux/workqueue.h +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/include/net/addrconf.h linux-nvidia-tegra-5.15.0/include/net/addrconf.h --- linux-nvidia-tegra-5.15.0/include/net/addrconf.h +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/include/net/bluetooth/hci_core.h linux-nvidia-tegra-5.15.0/include/net/bluetooth/hci_core.h --- linux-nvidia-tegra-5.15.0/include/net/bluetooth/hci_core.h +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/include/net/flow.h linux-nvidia-tegra-5.15.0/include/net/flow.h --- linux-nvidia-tegra-5.15.0/include/net/flow.h +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/include/net/if_inet6.h linux-nvidia-tegra-5.15.0/include/net/if_inet6.h --- linux-nvidia-tegra-5.15.0/include/net/if_inet6.h +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/include/net/inet_connection_sock.h linux-nvidia-tegra-5.15.0/include/net/inet_connection_sock.h --- linux-nvidia-tegra-5.15.0/include/net/inet_connection_sock.h +++ linux-nvidia-tegra-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, diff -u linux-nvidia-tegra-5.15.0/include/net/inet_hashtables.h linux-nvidia-tegra-5.15.0/include/net/inet_hashtables.h --- linux-nvidia-tegra-5.15.0/include/net/inet_hashtables.h +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/include/net/ip_fib.h linux-nvidia-tegra-5.15.0/include/net/ip_fib.h --- linux-nvidia-tegra-5.15.0/include/net/ip_fib.h +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/include/net/netfilter/nf_tables.h linux-nvidia-tegra-5.15.0/include/net/netfilter/nf_tables.h --- linux-nvidia-tegra-5.15.0/include/net/netfilter/nf_tables.h +++ linux-nvidia-tegra-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) diff -u linux-nvidia-tegra-5.15.0/include/net/netns/xfrm.h linux-nvidia-tegra-5.15.0/include/net/netns/xfrm.h --- linux-nvidia-tegra-5.15.0/include/net/netns/xfrm.h +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/include/net/sock.h linux-nvidia-tegra-5.15.0/include/net/sock.h --- linux-nvidia-tegra-5.15.0/include/net/sock.h +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/include/net/tcp.h linux-nvidia-tegra-5.15.0/include/net/tcp.h --- linux-nvidia-tegra-5.15.0/include/net/tcp.h +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/include/rdma/ib_umem.h linux-nvidia-tegra-5.15.0/include/rdma/ib_umem.h --- linux-nvidia-tegra-5.15.0/include/rdma/ib_umem.h +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/include/rdma/ib_verbs.h linux-nvidia-tegra-5.15.0/include/rdma/ib_verbs.h --- linux-nvidia-tegra-5.15.0/include/rdma/ib_verbs.h +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/include/sound/soc.h linux-nvidia-tegra-5.15.0/include/sound/soc.h --- linux-nvidia-tegra-5.15.0/include/sound/soc.h +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/include/trace/events/f2fs.h linux-nvidia-tegra-5.15.0/include/trace/events/f2fs.h --- linux-nvidia-tegra-5.15.0/include/trace/events/f2fs.h +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/include/uapi/linux/bpf.h linux-nvidia-tegra-5.15.0/include/uapi/linux/bpf.h --- linux-nvidia-tegra-5.15.0/include/uapi/linux/bpf.h +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/include/uapi/linux/can/isotp.h linux-nvidia-tegra-5.15.0/include/uapi/linux/can/isotp.h --- linux-nvidia-tegra-5.15.0/include/uapi/linux/can/isotp.h +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/include/uapi/linux/perf_event.h linux-nvidia-tegra-5.15.0/include/uapi/linux/perf_event.h --- linux-nvidia-tegra-5.15.0/include/uapi/linux/perf_event.h +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/include/uapi/linux/stddef.h linux-nvidia-tegra-5.15.0/include/uapi/linux/stddef.h --- linux-nvidia-tegra-5.15.0/include/uapi/linux/stddef.h +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/init/do_mounts.c linux-nvidia-tegra-5.15.0/init/do_mounts.c --- linux-nvidia-tegra-5.15.0/init/do_mounts.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/init/main.c linux-nvidia-tegra-5.15.0/init/main.c --- linux-nvidia-tegra-5.15.0/init/main.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/io_uring/io_uring.c linux-nvidia-tegra-5.15.0/io_uring/io_uring.c --- linux-nvidia-tegra-5.15.0/io_uring/io_uring.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/kernel/bpf/arraymap.c linux-nvidia-tegra-5.15.0/kernel/bpf/arraymap.c --- linux-nvidia-tegra-5.15.0/kernel/bpf/arraymap.c +++ linux-nvidia-tegra-5.15.0/kernel/bpf/arraymap.c @@ -957,11 +957,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 +975,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 +994,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 +1007,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); } } } diff -u linux-nvidia-tegra-5.15.0/kernel/bpf/core.c linux-nvidia-tegra-5.15.0/kernel/bpf/core.c --- linux-nvidia-tegra-5.15.0/kernel/bpf/core.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/kernel/bpf/helpers.c linux-nvidia-tegra-5.15.0/kernel/bpf/helpers.c --- linux-nvidia-tegra-5.15.0/kernel/bpf/helpers.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/kernel/bpf/stackmap.c linux-nvidia-tegra-5.15.0/kernel/bpf/stackmap.c --- linux-nvidia-tegra-5.15.0/kernel/bpf/stackmap.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/kernel/bpf/syscall.c linux-nvidia-tegra-5.15.0/kernel/bpf/syscall.c --- linux-nvidia-tegra-5.15.0/kernel/bpf/syscall.c +++ linux-nvidia-tegra-5.15.0/kernel/bpf/syscall.c @@ -2764,6 +2764,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) { /* @@ -2777,6 +2781,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-nvidia-tegra-5.15.0/kernel/bpf/verifier.c linux-nvidia-tegra-5.15.0/kernel/bpf/verifier.c --- linux-nvidia-tegra-5.15.0/kernel/bpf/verifier.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/kernel/cpu.c linux-nvidia-tegra-5.15.0/kernel/cpu.c --- linux-nvidia-tegra-5.15.0/kernel/cpu.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/kernel/cred.c linux-nvidia-tegra-5.15.0/kernel/cred.c --- linux-nvidia-tegra-5.15.0/kernel/cred.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/kernel/debug/debug_core.c linux-nvidia-tegra-5.15.0/kernel/debug/debug_core.c --- linux-nvidia-tegra-5.15.0/kernel/debug/debug_core.c +++ linux-nvidia-tegra-5.15.0/kernel/debug/debug_core.c @@ -1004,6 +1004,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-nvidia-tegra-5.15.0/kernel/debug/kdb/kdb_main.c linux-nvidia-tegra-5.15.0/kernel/debug/kdb/kdb_main.c --- linux-nvidia-tegra-5.15.0/kernel/debug/kdb/kdb_main.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/kernel/events/core.c linux-nvidia-tegra-5.15.0/kernel/events/core.c --- linux-nvidia-tegra-5.15.0/kernel/events/core.c +++ linux-nvidia-tegra-5.15.0/kernel/events/core.c @@ -13325,7 +13325,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-nvidia-tegra-5.15.0/kernel/events/internal.h linux-nvidia-tegra-5.15.0/kernel/events/internal.h --- linux-nvidia-tegra-5.15.0/kernel/events/internal.h +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/kernel/events/ring_buffer.c linux-nvidia-tegra-5.15.0/kernel/events/ring_buffer.c --- linux-nvidia-tegra-5.15.0/kernel/events/ring_buffer.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/kernel/futex/core.c linux-nvidia-tegra-5.15.0/kernel/futex/core.c --- linux-nvidia-tegra-5.15.0/kernel/futex/core.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/kernel/kexec.c linux-nvidia-tegra-5.15.0/kernel/kexec.c --- linux-nvidia-tegra-5.15.0/kernel/kexec.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/kernel/kprobes.c linux-nvidia-tegra-5.15.0/kernel/kprobes.c --- linux-nvidia-tegra-5.15.0/kernel/kprobes.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/kernel/livepatch/core.c linux-nvidia-tegra-5.15.0/kernel/livepatch/core.c --- linux-nvidia-tegra-5.15.0/kernel/livepatch/core.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/kernel/locking/lockdep.c linux-nvidia-tegra-5.15.0/kernel/locking/lockdep.c --- linux-nvidia-tegra-5.15.0/kernel/locking/lockdep.c +++ linux-nvidia-tegra-5.15.0/kernel/locking/lockdep.c @@ -3423,7 +3423,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-nvidia-tegra-5.15.0/kernel/module.c linux-nvidia-tegra-5.15.0/kernel/module.c --- linux-nvidia-tegra-5.15.0/kernel/module.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/kernel/padata.c linux-nvidia-tegra-5.15.0/kernel/padata.c --- linux-nvidia-tegra-5.15.0/kernel/padata.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/kernel/power/snapshot.c linux-nvidia-tegra-5.15.0/kernel/power/snapshot.c --- linux-nvidia-tegra-5.15.0/kernel/power/snapshot.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/kernel/rcu/tree.c linux-nvidia-tegra-5.15.0/kernel/rcu/tree.c --- linux-nvidia-tegra-5.15.0/kernel/rcu/tree.c +++ linux-nvidia-tegra-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); @@ -3598,6 +3611,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-nvidia-tegra-5.15.0/kernel/rcu/tree_plugin.h linux-nvidia-tegra-5.15.0/kernel/rcu/tree_plugin.h --- linux-nvidia-tegra-5.15.0/kernel/rcu/tree_plugin.h +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/kernel/rcu/tree_stall.h linux-nvidia-tegra-5.15.0/kernel/rcu/tree_stall.h --- linux-nvidia-tegra-5.15.0/kernel/rcu/tree_stall.h +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/kernel/sched/core.c linux-nvidia-tegra-5.15.0/kernel/sched/core.c --- linux-nvidia-tegra-5.15.0/kernel/sched/core.c +++ linux-nvidia-tegra-5.15.0/kernel/sched/core.c @@ -2425,9 +2425,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: @@ -2708,12 +2710,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); @@ -2779,12 +2782,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; @@ -9053,9 +9057,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-nvidia-tegra-5.15.0/kernel/sched/deadline.c linux-nvidia-tegra-5.15.0/kernel/sched/deadline.c --- linux-nvidia-tegra-5.15.0/kernel/sched/deadline.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/kernel/sched/fair.c linux-nvidia-tegra-5.15.0/kernel/sched/fair.c --- linux-nvidia-tegra-5.15.0/kernel/sched/fair.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/kernel/sched/rt.c linux-nvidia-tegra-5.15.0/kernel/sched/rt.c --- linux-nvidia-tegra-5.15.0/kernel/sched/rt.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/kernel/sched/sched.h linux-nvidia-tegra-5.15.0/kernel/sched/sched.h --- linux-nvidia-tegra-5.15.0/kernel/sched/sched.h +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/kernel/time/hrtimer.c linux-nvidia-tegra-5.15.0/kernel/time/hrtimer.c --- linux-nvidia-tegra-5.15.0/kernel/time/hrtimer.c +++ linux-nvidia-tegra-5.15.0/kernel/time/hrtimer.c @@ -2216,29 +2216,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 +2242,13 @@ * The migration might have changed the first expiring softirq * timer on this CPU. Update it. */ - hrtimer_update_softirq_timer(new_base, false); + __hrtimer_get_next_event(new_base, HRTIMER_ACTIVE_SOFT); + /* Tell the other CPU to retrigger the next event */ + smp_call_function_single(ncpu, retrigger_next_event, NULL, 0); - raw_spin_unlock(&old_base->lock); raw_spin_unlock(&new_base->lock); + raw_spin_unlock(&old_base->lock); - /* Check, if we got expired work to do */ - __hrtimer_peek_ahead_timers(); - local_irq_enable(); - local_bh_enable(); return 0; } diff -u linux-nvidia-tegra-5.15.0/kernel/time/tick-sched.c linux-nvidia-tegra-5.15.0/kernel/time/tick-sched.c --- linux-nvidia-tegra-5.15.0/kernel/time/tick-sched.c +++ linux-nvidia-tegra-5.15.0/kernel/time/tick-sched.c @@ -1528,13 +1528,18 @@ void tick_cancel_sched_timer(int cpu) { struct tick_sched *ts = &per_cpu(tick_cpu_sched, cpu); + ktime_t idle_sleeptime, iowait_sleeptime; # 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; memset(ts, 0, sizeof(*ts)); + ts->idle_sleeptime = idle_sleeptime; + ts->iowait_sleeptime = iowait_sleeptime; } #endif diff -u linux-nvidia-tegra-5.15.0/kernel/trace/ring_buffer.c linux-nvidia-tegra-5.15.0/kernel/trace/ring_buffer.c --- linux-nvidia-tegra-5.15.0/kernel/trace/ring_buffer.c +++ linux-nvidia-tegra-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); } /** @@ -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-nvidia-tegra-5.15.0/kernel/trace/synth_event_gen_test.c linux-nvidia-tegra-5.15.0/kernel/trace/synth_event_gen_test.c --- linux-nvidia-tegra-5.15.0/kernel/trace/synth_event_gen_test.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/kernel/trace/trace.c linux-nvidia-tegra-5.15.0/kernel/trace/trace.c --- linux-nvidia-tegra-5.15.0/kernel/trace/trace.c +++ linux-nvidia-tegra-5.15.0/kernel/trace/trace.c @@ -1837,6 +1837,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 +1891,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 @@ -2284,13 +2298,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 +2306,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) @@ -2698,8 +2670,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)); @@ -2713,10 +2688,6 @@ WARN_ON_ONCE(1); preempt_enable(); } - - return; - failed: - trace_buffered_event_disable(); } static void enable_trace_buffered_event(void *data) @@ -2751,11 +2722,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(); @@ -2764,17 +2733,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; @@ -4706,7 +4677,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 @@ -4910,6 +4885,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; @@ -4920,10 +4909,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); @@ -6228,6 +6224,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, @@ -6272,13 +6277,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); @@ -6303,22 +6310,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; } @@ -8415,7 +8417,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-nvidia-tegra-5.15.0/kernel/trace/trace.h linux-nvidia-tegra-5.15.0/kernel/trace/trace.h --- linux-nvidia-tegra-5.15.0/kernel/trace/trace.h +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/kernel/trace/trace_events.c linux-nvidia-tegra-5.15.0/kernel/trace/trace_events.c --- linux-nvidia-tegra-5.15.0/kernel/trace/trace_events.c +++ linux-nvidia-tegra-5.15.0/kernel/trace/trace_events.c @@ -970,26 +970,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); } /* @@ -1362,7 +1374,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 && @@ -1400,7 +1412,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; @@ -1669,7 +1681,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); @@ -2754,6 +2766,7 @@ update_event_fields(call, map[i]); } } + cond_resched(); } up_write(&trace_event_sem); } @@ -2784,6 +2797,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-nvidia-tegra-5.15.0/kernel/trace/trace_events_filter.c linux-nvidia-tegra-5.15.0/kernel/trace/trace_events_filter.c --- linux-nvidia-tegra-5.15.0/kernel/trace/trace_events_filter.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/kernel/trace/trace_events_hist.c linux-nvidia-tegra-5.15.0/kernel/trace/trace_events_hist.c --- linux-nvidia-tegra-5.15.0/kernel/trace/trace_events_hist.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/kernel/trace/trace_events_synth.c linux-nvidia-tegra-5.15.0/kernel/trace/trace_events_synth.c --- linux-nvidia-tegra-5.15.0/kernel/trace/trace_events_synth.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/kernel/trace/trace_kprobe.c linux-nvidia-tegra-5.15.0/kernel/trace/trace_kprobe.c --- linux-nvidia-tegra-5.15.0/kernel/trace/trace_kprobe.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/kernel/trace/trace_output.c linux-nvidia-tegra-5.15.0/kernel/trace/trace_output.c --- linux-nvidia-tegra-5.15.0/kernel/trace/trace_output.c +++ linux-nvidia-tegra-5.15.0/kernel/trace/trace_output.c @@ -1456,11 +1456,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); } @@ -1469,10 +1470,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-nvidia-tegra-5.15.0/kernel/trace/trace_probe.h linux-nvidia-tegra-5.15.0/kernel/trace/trace_probe.h --- linux-nvidia-tegra-5.15.0/kernel/trace/trace_probe.h +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/kernel/watch_queue.c linux-nvidia-tegra-5.15.0/kernel/watch_queue.c --- linux-nvidia-tegra-5.15.0/kernel/watch_queue.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/kernel/watchdog.c linux-nvidia-tegra-5.15.0/kernel/watchdog.c --- linux-nvidia-tegra-5.15.0/kernel/watchdog.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/kernel/workqueue.c linux-nvidia-tegra-5.15.0/kernel/workqueue.c --- linux-nvidia-tegra-5.15.0/kernel/workqueue.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/lib/Kconfig.debug linux-nvidia-tegra-5.15.0/lib/Kconfig.debug --- linux-nvidia-tegra-5.15.0/lib/Kconfig.debug +++ linux-nvidia-tegra-5.15.0/lib/Kconfig.debug @@ -1226,13 +1226,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-nvidia-tegra-5.15.0/lib/errname.c linux-nvidia-tegra-5.15.0/lib/errname.c --- linux-nvidia-tegra-5.15.0/lib/errname.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/lib/kunit/debugfs.c linux-nvidia-tegra-5.15.0/lib/kunit/debugfs.c --- linux-nvidia-tegra-5.15.0/lib/kunit/debugfs.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/lib/vsprintf.c linux-nvidia-tegra-5.15.0/lib/vsprintf.c --- linux-nvidia-tegra-5.15.0/lib/vsprintf.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/mm/cma.c linux-nvidia-tegra-5.15.0/mm/cma.c --- linux-nvidia-tegra-5.15.0/mm/cma.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/mm/filemap.c linux-nvidia-tegra-5.15.0/mm/filemap.c --- linux-nvidia-tegra-5.15.0/mm/filemap.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/mm/kasan/report.c linux-nvidia-tegra-5.15.0/mm/kasan/report.c --- linux-nvidia-tegra-5.15.0/mm/kasan/report.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/mm/memblock.c linux-nvidia-tegra-5.15.0/mm/memblock.c --- linux-nvidia-tegra-5.15.0/mm/memblock.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/mm/memcontrol.c linux-nvidia-tegra-5.15.0/mm/memcontrol.c --- linux-nvidia-tegra-5.15.0/mm/memcontrol.c +++ linux-nvidia-tegra-5.15.0/mm/memcontrol.c @@ -691,7 +691,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); } } @@ -2847,7 +2854,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-nvidia-tegra-5.15.0/mm/memory-failure.c linux-nvidia-tegra-5.15.0/mm/memory-failure.c --- linux-nvidia-tegra-5.15.0/mm/memory-failure.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/mm/memory.c linux-nvidia-tegra-5.15.0/mm/memory.c --- linux-nvidia-tegra-5.15.0/mm/memory.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/mm/memory_hotplug.c linux-nvidia-tegra-5.15.0/mm/memory_hotplug.c --- linux-nvidia-tegra-5.15.0/mm/memory_hotplug.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/mm/migrate.c linux-nvidia-tegra-5.15.0/mm/migrate.c --- linux-nvidia-tegra-5.15.0/mm/migrate.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/mm/page_alloc.c linux-nvidia-tegra-5.15.0/mm/page_alloc.c --- linux-nvidia-tegra-5.15.0/mm/page_alloc.c +++ linux-nvidia-tegra-5.15.0/mm/page_alloc.c @@ -9478,6 +9478,7 @@ next_page = page; current_buddy = page + size; } + page = next_page; if (set_page_guard(zone, current_buddy, high, migratetype)) continue; @@ -9485,7 +9486,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-nvidia-tegra-5.15.0/net/8021q/vlan_dev.c linux-nvidia-tegra-5.15.0/net/8021q/vlan_dev.c --- linux-nvidia-tegra-5.15.0/net/8021q/vlan_dev.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/net/9p/client.c linux-nvidia-tegra-5.15.0/net/9p/client.c --- linux-nvidia-tegra-5.15.0/net/9p/client.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/net/9p/protocol.c linux-nvidia-tegra-5.15.0/net/9p/protocol.c --- linux-nvidia-tegra-5.15.0/net/9p/protocol.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/net/9p/trans_fd.c linux-nvidia-tegra-5.15.0/net/9p/trans_fd.c --- linux-nvidia-tegra-5.15.0/net/9p/trans_fd.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/net/batman-adv/soft-interface.c linux-nvidia-tegra-5.15.0/net/batman-adv/soft-interface.c --- linux-nvidia-tegra-5.15.0/net/batman-adv/soft-interface.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/net/bluetooth/af_bluetooth.c linux-nvidia-tegra-5.15.0/net/bluetooth/af_bluetooth.c --- linux-nvidia-tegra-5.15.0/net/bluetooth/af_bluetooth.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/net/bluetooth/hci_conn.c linux-nvidia-tegra-5.15.0/net/bluetooth/hci_conn.c --- linux-nvidia-tegra-5.15.0/net/bluetooth/hci_conn.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/net/bluetooth/hci_core.c linux-nvidia-tegra-5.15.0/net/bluetooth/hci_core.c --- linux-nvidia-tegra-5.15.0/net/bluetooth/hci_core.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/net/bluetooth/hci_event.c linux-nvidia-tegra-5.15.0/net/bluetooth/hci_event.c --- linux-nvidia-tegra-5.15.0/net/bluetooth/hci_event.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/net/bluetooth/hci_sock.c linux-nvidia-tegra-5.15.0/net/bluetooth/hci_sock.c --- linux-nvidia-tegra-5.15.0/net/bluetooth/hci_sock.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/net/bluetooth/hci_sysfs.c linux-nvidia-tegra-5.15.0/net/bluetooth/hci_sysfs.c --- linux-nvidia-tegra-5.15.0/net/bluetooth/hci_sysfs.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/net/bluetooth/l2cap_core.c linux-nvidia-tegra-5.15.0/net/bluetooth/l2cap_core.c --- linux-nvidia-tegra-5.15.0/net/bluetooth/l2cap_core.c +++ linux-nvidia-tegra-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,24 @@ if (len > skb->len || !cmd->ident) { BT_DBG("corrupted command"); + l2cap_sig_send_rej(conn, cmd->ident); break; } err = l2cap_bredr_sig_cmd(conn, cmd, len, skb->data); if (err) { - struct l2cap_cmd_rej_unk rej; - BT_ERR("Wrong link type (%d)", err); - - rej.reason = cpu_to_le16(L2CAP_REJ_NOT_UNDERSTOOD); - l2cap_send_cmd(conn, cmd->ident, L2CAP_COMMAND_REJ, - sizeof(rej), &rej); + l2cap_sig_send_rej(conn, cmd->ident); } skb_pull(skb, len); } + if (skb->len > 0) { + BT_DBG("corrupted command"); + l2cap_sig_send_rej(conn, 0); + } + drop: kfree_skb(skb); } diff -u linux-nvidia-tegra-5.15.0/net/bluetooth/mgmt.c linux-nvidia-tegra-5.15.0/net/bluetooth/mgmt.c --- linux-nvidia-tegra-5.15.0/net/bluetooth/mgmt.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/net/can/isotp.c linux-nvidia-tegra-5.15.0/net/can/isotp.c --- linux-nvidia-tegra-5.15.0/net/can/isotp.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/net/can/raw.c linux-nvidia-tegra-5.15.0/net/can/raw.c --- linux-nvidia-tegra-5.15.0/net/can/raw.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/net/core/dev.c linux-nvidia-tegra-5.15.0/net/core/dev.c --- linux-nvidia-tegra-5.15.0/net/core/dev.c +++ linux-nvidia-tegra-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; } /** @@ -3522,6 +3542,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; @@ -11156,6 +11179,7 @@ const char *pat, int new_ifindex) { struct net *net_old = dev_net(dev); + char new_name[IFNAMSIZ] = {}; int err, new_nsid; ASSERT_RTNL(); @@ -11178,11 +11202,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; } @@ -11250,6 +11274,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); @@ -11531,7 +11558,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-nvidia-tegra-5.15.0/net/core/drop_monitor.c linux-nvidia-tegra-5.15.0/net/core/drop_monitor.c --- linux-nvidia-tegra-5.15.0/net/core/drop_monitor.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/net/core/filter.c linux-nvidia-tegra-5.15.0/net/core/filter.c --- linux-nvidia-tegra-5.15.0/net/core/filter.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/net/core/neighbour.c linux-nvidia-tegra-5.15.0/net/core/neighbour.c --- linux-nvidia-tegra-5.15.0/net/core/neighbour.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/net/core/netpoll.c linux-nvidia-tegra-5.15.0/net/core/netpoll.c --- linux-nvidia-tegra-5.15.0/net/core/netpoll.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/net/core/scm.c linux-nvidia-tegra-5.15.0/net/core/scm.c --- linux-nvidia-tegra-5.15.0/net/core/scm.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/net/core/sock.c linux-nvidia-tegra-5.15.0/net/core/sock.c --- linux-nvidia-tegra-5.15.0/net/core/sock.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/net/dccp/ipv4.c linux-nvidia-tegra-5.15.0/net/dccp/ipv4.c --- linux-nvidia-tegra-5.15.0/net/dccp/ipv4.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/net/dccp/ipv6.c linux-nvidia-tegra-5.15.0/net/dccp/ipv6.c --- linux-nvidia-tegra-5.15.0/net/dccp/ipv6.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/net/dccp/proto.c linux-nvidia-tegra-5.15.0/net/dccp/proto.c --- linux-nvidia-tegra-5.15.0/net/dccp/proto.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/net/hsr/hsr_forward.c linux-nvidia-tegra-5.15.0/net/hsr/hsr_forward.c --- linux-nvidia-tegra-5.15.0/net/hsr/hsr_forward.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/net/ipv4/esp4.c linux-nvidia-tegra-5.15.0/net/ipv4/esp4.c --- linux-nvidia-tegra-5.15.0/net/ipv4/esp4.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/net/ipv4/fib_semantics.c linux-nvidia-tegra-5.15.0/net/ipv4/fib_semantics.c --- linux-nvidia-tegra-5.15.0/net/ipv4/fib_semantics.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/net/ipv4/fib_trie.c linux-nvidia-tegra-5.15.0/net/ipv4/fib_trie.c --- linux-nvidia-tegra-5.15.0/net/ipv4/fib_trie.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/net/ipv4/inet_diag.c linux-nvidia-tegra-5.15.0/net/ipv4/inet_diag.c --- linux-nvidia-tegra-5.15.0/net/ipv4/inet_diag.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/net/ipv4/inet_hashtables.c linux-nvidia-tegra-5.15.0/net/ipv4/inet_hashtables.c --- linux-nvidia-tegra-5.15.0/net/ipv4/inet_hashtables.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/net/ipv4/ip_gre.c linux-nvidia-tegra-5.15.0/net/ipv4/ip_gre.c --- linux-nvidia-tegra-5.15.0/net/ipv4/ip_gre.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/net/ipv4/ip_output.c linux-nvidia-tegra-5.15.0/net/ipv4/ip_output.c --- linux-nvidia-tegra-5.15.0/net/ipv4/ip_output.c +++ linux-nvidia-tegra-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; diff -u linux-nvidia-tegra-5.15.0/net/ipv4/route.c linux-nvidia-tegra-5.15.0/net/ipv4/route.c --- linux-nvidia-tegra-5.15.0/net/ipv4/route.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/net/ipv4/syncookies.c linux-nvidia-tegra-5.15.0/net/ipv4/syncookies.c --- linux-nvidia-tegra-5.15.0/net/ipv4/syncookies.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/net/ipv4/tcp.c linux-nvidia-tegra-5.15.0/net/ipv4/tcp.c --- linux-nvidia-tegra-5.15.0/net/ipv4/tcp.c +++ linux-nvidia-tegra-5.15.0/net/ipv4/tcp.c @@ -953,8 +953,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 +1109,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 +1332,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 +1431,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; @@ -4563,7 +4556,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-nvidia-tegra-5.15.0/net/ipv4/tcp_input.c linux-nvidia-tegra-5.15.0/net/ipv4/tcp_input.c --- linux-nvidia-tegra-5.15.0/net/ipv4/tcp_input.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/net/ipv4/tcp_ipv4.c linux-nvidia-tegra-5.15.0/net/ipv4/tcp_ipv4.c --- linux-nvidia-tegra-5.15.0/net/ipv4/tcp_ipv4.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/net/ipv4/tcp_metrics.c linux-nvidia-tegra-5.15.0/net/ipv4/tcp_metrics.c --- linux-nvidia-tegra-5.15.0/net/ipv4/tcp_metrics.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/net/ipv4/tcp_output.c linux-nvidia-tegra-5.15.0/net/ipv4/tcp_output.c --- linux-nvidia-tegra-5.15.0/net/ipv4/tcp_output.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/net/ipv4/tcp_recovery.c linux-nvidia-tegra-5.15.0/net/ipv4/tcp_recovery.c --- linux-nvidia-tegra-5.15.0/net/ipv4/tcp_recovery.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/net/ipv4/udp.c linux-nvidia-tegra-5.15.0/net/ipv4/udp.c --- linux-nvidia-tegra-5.15.0/net/ipv4/udp.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/net/ipv6/addrconf.c linux-nvidia-tegra-5.15.0/net/ipv6/addrconf.c --- linux-nvidia-tegra-5.15.0/net/ipv6/addrconf.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/net/ipv6/esp6.c linux-nvidia-tegra-5.15.0/net/ipv6/esp6.c --- linux-nvidia-tegra-5.15.0/net/ipv6/esp6.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/net/ipv6/inet6_hashtables.c linux-nvidia-tegra-5.15.0/net/ipv6/inet6_hashtables.c --- linux-nvidia-tegra-5.15.0/net/ipv6/inet6_hashtables.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/net/ipv6/ip6_fib.c linux-nvidia-tegra-5.15.0/net/ipv6/ip6_fib.c --- linux-nvidia-tegra-5.15.0/net/ipv6/ip6_fib.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/net/ipv6/ip6_output.c linux-nvidia-tegra-5.15.0/net/ipv6/ip6_output.c --- linux-nvidia-tegra-5.15.0/net/ipv6/ip6_output.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/net/ipv6/ip6_tunnel.c linux-nvidia-tegra-5.15.0/net/ipv6/ip6_tunnel.c --- linux-nvidia-tegra-5.15.0/net/ipv6/ip6_tunnel.c +++ linux-nvidia-tegra-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; diff -u linux-nvidia-tegra-5.15.0/net/ipv6/mcast.c linux-nvidia-tegra-5.15.0/net/ipv6/mcast.c --- linux-nvidia-tegra-5.15.0/net/ipv6/mcast.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/net/ipv6/route.c linux-nvidia-tegra-5.15.0/net/ipv6/route.c --- linux-nvidia-tegra-5.15.0/net/ipv6/route.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/net/ipv6/syncookies.c linux-nvidia-tegra-5.15.0/net/ipv6/syncookies.c --- linux-nvidia-tegra-5.15.0/net/ipv6/syncookies.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/net/ipv6/xfrm6_policy.c linux-nvidia-tegra-5.15.0/net/ipv6/xfrm6_policy.c --- linux-nvidia-tegra-5.15.0/net/ipv6/xfrm6_policy.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/net/llc/llc_input.c linux-nvidia-tegra-5.15.0/net/llc/llc_input.c --- linux-nvidia-tegra-5.15.0/net/llc/llc_input.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/net/mac80211/cfg.c linux-nvidia-tegra-5.15.0/net/mac80211/cfg.c --- linux-nvidia-tegra-5.15.0/net/mac80211/cfg.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/net/mac80211/mesh_plink.c linux-nvidia-tegra-5.15.0/net/mac80211/mesh_plink.c --- linux-nvidia-tegra-5.15.0/net/mac80211/mesh_plink.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/net/mac80211/tx.c linux-nvidia-tegra-5.15.0/net/mac80211/tx.c --- linux-nvidia-tegra-5.15.0/net/mac80211/tx.c +++ linux-nvidia-tegra-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 && diff -u linux-nvidia-tegra-5.15.0/net/mctp/route.c linux-nvidia-tegra-5.15.0/net/mctp/route.c --- linux-nvidia-tegra-5.15.0/net/mctp/route.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/net/mptcp/options.c linux-nvidia-tegra-5.15.0/net/mptcp/options.c --- linux-nvidia-tegra-5.15.0/net/mptcp/options.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/net/mptcp/protocol.c linux-nvidia-tegra-5.15.0/net/mptcp/protocol.c --- linux-nvidia-tegra-5.15.0/net/mptcp/protocol.c +++ linux-nvidia-tegra-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; } diff -u linux-nvidia-tegra-5.15.0/net/mptcp/protocol.h linux-nvidia-tegra-5.15.0/net/mptcp/protocol.h --- linux-nvidia-tegra-5.15.0/net/mptcp/protocol.h +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/net/mptcp/subflow.c linux-nvidia-tegra-5.15.0/net/mptcp/subflow.c --- linux-nvidia-tegra-5.15.0/net/mptcp/subflow.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/net/ncsi/ncsi-aen.c linux-nvidia-tegra-5.15.0/net/ncsi/ncsi-aen.c --- linux-nvidia-tegra-5.15.0/net/ncsi/ncsi-aen.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/net/ncsi/ncsi-netlink.c linux-nvidia-tegra-5.15.0/net/ncsi/ncsi-netlink.c --- linux-nvidia-tegra-5.15.0/net/ncsi/ncsi-netlink.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/net/ncsi/ncsi-rsp.c linux-nvidia-tegra-5.15.0/net/ncsi/ncsi-rsp.c --- linux-nvidia-tegra-5.15.0/net/ncsi/ncsi-rsp.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/net/netfilter/ipset/ip_set_core.c linux-nvidia-tegra-5.15.0/net/netfilter/ipset/ip_set_core.c --- linux-nvidia-tegra-5.15.0/net/netfilter/ipset/ip_set_core.c +++ linux-nvidia-tegra-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 @@ -1399,6 +1396,9 @@ ip_set(inst, to_id) = from; write_unlock_bh(&ip_set_ref_lock); + /* Make sure all readers of the old set pointers are completed. */ + synchronize_rcu(); + return 0; } diff -u linux-nvidia-tegra-5.15.0/net/netfilter/ipvs/ip_vs_xmit.c linux-nvidia-tegra-5.15.0/net/netfilter/ipvs/ip_vs_xmit.c --- linux-nvidia-tegra-5.15.0/net/netfilter/ipvs/ip_vs_xmit.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/net/netfilter/nf_tables_api.c linux-nvidia-tegra-5.15.0/net/netfilter/nf_tables_api.c --- linux-nvidia-tegra-5.15.0/net/netfilter/nf_tables_api.c +++ linux-nvidia-tegra-5.15.0/net/netfilter/nf_tables_api.c @@ -753,7 +753,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 +761,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 +1486,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 +3212,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 @@ -4456,8 +4453,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 +4469,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 +4687,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 +5352,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 +5904,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 +6050,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); @@ -9078,16 +9091,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 +9108,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 +9756,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 +10246,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 +10284,8 @@ data->verdict.chain = chain; break; + default: + return -EINVAL; } desc->len = sizeof(data->verdict); diff -u linux-nvidia-tegra-5.15.0/net/netfilter/nfnetlink_log.c linux-nvidia-tegra-5.15.0/net/netfilter/nfnetlink_log.c --- linux-nvidia-tegra-5.15.0/net/netfilter/nfnetlink_log.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/net/netfilter/nft_byteorder.c linux-nvidia-tegra-5.15.0/net/netfilter/nft_byteorder.c --- linux-nvidia-tegra-5.15.0/net/netfilter/nft_byteorder.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/net/netfilter/nft_exthdr.c linux-nvidia-tegra-5.15.0/net/netfilter/nft_exthdr.c --- linux-nvidia-tegra-5.15.0/net/netfilter/nft_exthdr.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/net/netfilter/nft_immediate.c linux-nvidia-tegra-5.15.0/net/netfilter/nft_immediate.c --- linux-nvidia-tegra-5.15.0/net/netfilter/nft_immediate.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/net/netfilter/nft_meta.c linux-nvidia-tegra-5.15.0/net/netfilter/nft_meta.c --- linux-nvidia-tegra-5.15.0/net/netfilter/nft_meta.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/net/netfilter/nft_osf.c linux-nvidia-tegra-5.15.0/net/netfilter/nft_osf.c --- linux-nvidia-tegra-5.15.0/net/netfilter/nft_osf.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/net/netfilter/nft_payload.c linux-nvidia-tegra-5.15.0/net/netfilter/nft_payload.c --- linux-nvidia-tegra-5.15.0/net/netfilter/nft_payload.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/net/netfilter/nft_redir.c linux-nvidia-tegra-5.15.0/net/netfilter/nft_redir.c --- linux-nvidia-tegra-5.15.0/net/netfilter/nft_redir.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/net/netfilter/nft_set_rbtree.c linux-nvidia-tegra-5.15.0/net/netfilter/nft_set_rbtree.c --- linux-nvidia-tegra-5.15.0/net/netfilter/nft_set_rbtree.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/net/netfilter/nft_socket.c linux-nvidia-tegra-5.15.0/net/netfilter/nft_socket.c --- linux-nvidia-tegra-5.15.0/net/netfilter/nft_socket.c +++ linux-nvidia-tegra-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; } diff -u linux-nvidia-tegra-5.15.0/net/netfilter/nft_tproxy.c linux-nvidia-tegra-5.15.0/net/netfilter/nft_tproxy.c --- linux-nvidia-tegra-5.15.0/net/netfilter/nft_tproxy.c +++ linux-nvidia-tegra-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; diff -u linux-nvidia-tegra-5.15.0/net/netlink/genetlink.c linux-nvidia-tegra-5.15.0/net/netlink/genetlink.c --- linux-nvidia-tegra-5.15.0/net/netlink/genetlink.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/net/nfc/llcp_core.c linux-nvidia-tegra-5.15.0/net/nfc/llcp_core.c --- linux-nvidia-tegra-5.15.0/net/nfc/llcp_core.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/net/packet/af_packet.c linux-nvidia-tegra-5.15.0/net/packet/af_packet.c --- linux-nvidia-tegra-5.15.0/net/packet/af_packet.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/net/packet/internal.h linux-nvidia-tegra-5.15.0/net/packet/internal.h --- linux-nvidia-tegra-5.15.0/net/packet/internal.h +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/net/qrtr/ns.c linux-nvidia-tegra-5.15.0/net/qrtr/ns.c --- linux-nvidia-tegra-5.15.0/net/qrtr/ns.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/net/rose/af_rose.c linux-nvidia-tegra-5.15.0/net/rose/af_rose.c --- linux-nvidia-tegra-5.15.0/net/rose/af_rose.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/net/sched/act_ct.c linux-nvidia-tegra-5.15.0/net/sched/act_ct.c --- linux-nvidia-tegra-5.15.0/net/sched/act_ct.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/net/sched/cls_u32.c linux-nvidia-tegra-5.15.0/net/sched/cls_u32.c --- linux-nvidia-tegra-5.15.0/net/sched/cls_u32.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/net/sched/sch_hfsc.c linux-nvidia-tegra-5.15.0/net/sched/sch_hfsc.c --- linux-nvidia-tegra-5.15.0/net/sched/sch_hfsc.c +++ linux-nvidia-tegra-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; @@ -1066,6 +1070,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-nvidia-tegra-5.15.0/net/smc/af_smc.c linux-nvidia-tegra-5.15.0/net/smc/af_smc.c --- linux-nvidia-tegra-5.15.0/net/smc/af_smc.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/net/smc/smc.h linux-nvidia-tegra-5.15.0/net/smc/smc.h --- linux-nvidia-tegra-5.15.0/net/smc/smc.h +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/net/smc/smc_cdc.c linux-nvidia-tegra-5.15.0/net/smc/smc_cdc.c --- linux-nvidia-tegra-5.15.0/net/smc/smc_cdc.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/net/smc/smc_close.c linux-nvidia-tegra-5.15.0/net/smc/smc_close.c --- linux-nvidia-tegra-5.15.0/net/smc/smc_close.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/net/socket.c linux-nvidia-tegra-5.15.0/net/socket.c --- linux-nvidia-tegra-5.15.0/net/socket.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/net/sunrpc/clnt.c linux-nvidia-tegra-5.15.0/net/sunrpc/clnt.c --- linux-nvidia-tegra-5.15.0/net/sunrpc/clnt.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/net/sunrpc/xprtrdma/svc_rdma_recvfrom.c linux-nvidia-tegra-5.15.0/net/sunrpc/xprtrdma/svc_rdma_recvfrom.c --- linux-nvidia-tegra-5.15.0/net/sunrpc/xprtrdma/svc_rdma_recvfrom.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/net/tipc/link.c linux-nvidia-tegra-5.15.0/net/tipc/link.c --- linux-nvidia-tegra-5.15.0/net/tipc/link.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/net/tipc/netlink_compat.c linux-nvidia-tegra-5.15.0/net/tipc/netlink_compat.c --- linux-nvidia-tegra-5.15.0/net/tipc/netlink_compat.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/net/unix/af_unix.c linux-nvidia-tegra-5.15.0/net/unix/af_unix.c --- linux-nvidia-tegra-5.15.0/net/unix/af_unix.c +++ linux-nvidia-tegra-5.15.0/net/unix/af_unix.c @@ -2529,15 +2529,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-nvidia-tegra-5.15.0/net/vmw_vsock/virtio_transport.c linux-nvidia-tegra-5.15.0/net/vmw_vsock/virtio_transport.c --- linux-nvidia-tegra-5.15.0/net/vmw_vsock/virtio_transport.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/net/vmw_vsock/virtio_transport_common.c linux-nvidia-tegra-5.15.0/net/vmw_vsock/virtio_transport_common.c --- linux-nvidia-tegra-5.15.0/net/vmw_vsock/virtio_transport_common.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/net/wireless/core.c linux-nvidia-tegra-5.15.0/net/wireless/core.c --- linux-nvidia-tegra-5.15.0/net/wireless/core.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/net/wireless/nl80211.c linux-nvidia-tegra-5.15.0/net/wireless/nl80211.c --- linux-nvidia-tegra-5.15.0/net/wireless/nl80211.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/net/wireless/scan.c linux-nvidia-tegra-5.15.0/net/wireless/scan.c --- linux-nvidia-tegra-5.15.0/net/wireless/scan.c +++ linux-nvidia-tegra-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; diff -u linux-nvidia-tegra-5.15.0/net/xfrm/xfrm_interface_core.c linux-nvidia-tegra-5.15.0/net/xfrm/xfrm_interface_core.c --- linux-nvidia-tegra-5.15.0/net/xfrm/xfrm_interface_core.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/net/xfrm/xfrm_policy.c linux-nvidia-tegra-5.15.0/net/xfrm/xfrm_policy.c --- linux-nvidia-tegra-5.15.0/net/xfrm/xfrm_policy.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/scripts/Makefile.modinst linux-nvidia-tegra-5.15.0/scripts/Makefile.modinst --- linux-nvidia-tegra-5.15.0/scripts/Makefile.modinst +++ linux-nvidia-tegra-5.15.0/scripts/Makefile.modinst @@ -14,7 +14,7 @@ ifeq ($(KBUILD_EXTMOD),) dst := $(MODLIB)/kernel else -INSTALL_MOD_DIR ?= extra +INSTALL_MOD_DIR ?= updates dst := $(MODLIB)/$(INSTALL_MOD_DIR) endif diff -u linux-nvidia-tegra-5.15.0/scripts/mod/file2alias.c linux-nvidia-tegra-5.15.0/scripts/mod/file2alias.c --- linux-nvidia-tegra-5.15.0/scripts/mod/file2alias.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/scripts/pahole-flags.sh linux-nvidia-tegra-5.15.0/scripts/pahole-flags.sh --- linux-nvidia-tegra-5.15.0/scripts/pahole-flags.sh +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/scripts/sign-file.c linux-nvidia-tegra-5.15.0/scripts/sign-file.c --- linux-nvidia-tegra-5.15.0/scripts/sign-file.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/security/apparmor/policy_unpack.c linux-nvidia-tegra-5.15.0/security/apparmor/policy_unpack.c --- linux-nvidia-tegra-5.15.0/security/apparmor/policy_unpack.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/security/integrity/iint.c linux-nvidia-tegra-5.15.0/security/integrity/iint.c --- linux-nvidia-tegra-5.15.0/security/integrity/iint.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/security/integrity/ima/ima_api.c linux-nvidia-tegra-5.15.0/security/integrity/ima/ima_api.c --- linux-nvidia-tegra-5.15.0/security/integrity/ima/ima_api.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/security/integrity/ima/ima_main.c linux-nvidia-tegra-5.15.0/security/integrity/ima/ima_main.c --- linux-nvidia-tegra-5.15.0/security/integrity/ima/ima_main.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/security/keys/trusted-keys/trusted_core.c linux-nvidia-tegra-5.15.0/security/keys/trusted-keys/trusted_core.c --- linux-nvidia-tegra-5.15.0/security/keys/trusted-keys/trusted_core.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/security/selinux/hooks.c linux-nvidia-tegra-5.15.0/security/selinux/hooks.c --- linux-nvidia-tegra-5.15.0/security/selinux/hooks.c +++ linux-nvidia-tegra-5.15.0/security/selinux/hooks.c @@ -4774,6 +4774,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 */ diff -u linux-nvidia-tegra-5.15.0/sound/core/info.c linux-nvidia-tegra-5.15.0/sound/core/info.c --- linux-nvidia-tegra-5.15.0/sound/core/info.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/sound/core/pcm.c linux-nvidia-tegra-5.15.0/sound/core/pcm.c --- linux-nvidia-tegra-5.15.0/sound/core/pcm.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/sound/hda/hdac_stream.c linux-nvidia-tegra-5.15.0/sound/hda/hdac_stream.c --- linux-nvidia-tegra-5.15.0/sound/hda/hdac_stream.c +++ linux-nvidia-tegra-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) { diff -u linux-nvidia-tegra-5.15.0/sound/hda/intel-dsp-config.c linux-nvidia-tegra-5.15.0/sound/hda/intel-dsp-config.c --- linux-nvidia-tegra-5.15.0/sound/hda/intel-dsp-config.c +++ linux-nvidia-tegra-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"), + } + }, {} } }, diff -u linux-nvidia-tegra-5.15.0/sound/pci/hda/hda_intel.c linux-nvidia-tegra-5.15.0/sound/pci/hda/hda_intel.c --- linux-nvidia-tegra-5.15.0/sound/pci/hda/hda_intel.c +++ linux-nvidia-tegra-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 */ diff -u linux-nvidia-tegra-5.15.0/sound/pci/hda/patch_cs8409.c linux-nvidia-tegra-5.15.0/sound/pci/hda/patch_cs8409.c --- linux-nvidia-tegra-5.15.0/sound/pci/hda/patch_cs8409.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/sound/pci/hda/patch_hdmi.c linux-nvidia-tegra-5.15.0/sound/pci/hda/patch_hdmi.c --- linux-nvidia-tegra-5.15.0/sound/pci/hda/patch_hdmi.c +++ linux-nvidia-tegra-5.15.0/sound/pci/hda/patch_hdmi.c @@ -1966,7 +1966,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-nvidia-tegra-5.15.0/sound/pci/hda/patch_realtek.c linux-nvidia-tegra-5.15.0/sound/pci/hda/patch_realtek.c --- linux-nvidia-tegra-5.15.0/sound/pci/hda/patch_realtek.c +++ linux-nvidia-tegra-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); @@ -7005,6 +7017,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, @@ -7311,6 +7324,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[]) { @@ -9249,9 +9270,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), @@ -9286,6 +9309,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 +9366,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), @@ -9625,6 +9650,7 @@ 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(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 +10231,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 +10274,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}), diff -u linux-nvidia-tegra-5.15.0/sound/soc/atmel/sam9g20_wm8731.c linux-nvidia-tegra-5.15.0/sound/soc/atmel/sam9g20_wm8731.c --- linux-nvidia-tegra-5.15.0/sound/soc/atmel/sam9g20_wm8731.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/sound/soc/codecs/da7219-aad.c linux-nvidia-tegra-5.15.0/sound/soc/codecs/da7219-aad.c --- linux-nvidia-tegra-5.15.0/sound/soc/codecs/da7219-aad.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/sound/soc/codecs/hdmi-codec.c linux-nvidia-tegra-5.15.0/sound/soc/codecs/hdmi-codec.c --- linux-nvidia-tegra-5.15.0/sound/soc/codecs/hdmi-codec.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/sound/soc/codecs/lpass-wsa-macro.c linux-nvidia-tegra-5.15.0/sound/soc/codecs/lpass-wsa-macro.c --- linux-nvidia-tegra-5.15.0/sound/soc/codecs/lpass-wsa-macro.c +++ linux-nvidia-tegra-5.15.0/sound/soc/codecs/lpass-wsa-macro.c @@ -1678,6 +1678,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-nvidia-tegra-5.15.0/sound/soc/codecs/nau8822.c linux-nvidia-tegra-5.15.0/sound/soc/codecs/nau8822.c --- linux-nvidia-tegra-5.15.0/sound/soc/codecs/nau8822.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/sound/soc/codecs/rt5645.c linux-nvidia-tegra-5.15.0/sound/soc/codecs/rt5645.c --- linux-nvidia-tegra-5.15.0/sound/soc/codecs/rt5645.c +++ linux-nvidia-tegra-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) { @@ -3293,7 +3300,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 +3356,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 +3828,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 +4120,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-nvidia-tegra-5.15.0/sound/soc/codecs/wcd938x.c linux-nvidia-tegra-5.15.0/sound/soc/codecs/wcd938x.c --- linux-nvidia-tegra-5.15.0/sound/soc/codecs/wcd938x.c +++ linux-nvidia-tegra-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); } @@ -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-nvidia-tegra-5.15.0/sound/soc/codecs/wm_adsp.c linux-nvidia-tegra-5.15.0/sound/soc/codecs/wm_adsp.c --- linux-nvidia-tegra-5.15.0/sound/soc/codecs/wm_adsp.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/sound/soc/fsl/fsl_easrc.c linux-nvidia-tegra-5.15.0/sound/soc/fsl/fsl_easrc.c --- linux-nvidia-tegra-5.15.0/sound/soc/fsl/fsl_easrc.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/sound/soc/generic/simple-card.c linux-nvidia-tegra-5.15.0/sound/soc/generic/simple-card.c --- linux-nvidia-tegra-5.15.0/sound/soc/generic/simple-card.c +++ linux-nvidia-tegra-5.15.0/sound/soc/generic/simple-card.c @@ -679,10 +679,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 || @@ -691,7 +693,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-nvidia-tegra-5.15.0/sound/soc/intel/boards/bytcr_rt5640.c linux-nvidia-tegra-5.15.0/sound/soc/intel/boards/bytcr_rt5640.c --- linux-nvidia-tegra-5.15.0/sound/soc/intel/boards/bytcr_rt5640.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/sound/soc/intel/skylake/skl-pcm.c linux-nvidia-tegra-5.15.0/sound/soc/intel/skylake/skl-pcm.c --- linux-nvidia-tegra-5.15.0/sound/soc/intel/skylake/skl-pcm.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/sound/soc/meson/g12a-tohdmitx.c linux-nvidia-tegra-5.15.0/sound/soc/meson/g12a-tohdmitx.c --- linux-nvidia-tegra-5.15.0/sound/soc/meson/g12a-tohdmitx.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/sound/soc/soc-ops.c linux-nvidia-tegra-5.15.0/sound/soc/soc-ops.c --- linux-nvidia-tegra-5.15.0/sound/soc/soc-ops.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/sound/soc/sof/sof-pci-dev.c linux-nvidia-tegra-5.15.0/sound/soc/sof/sof-pci-dev.c --- linux-nvidia-tegra-5.15.0/sound/soc/sof/sof-pci-dev.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/sound/usb/mixer_quirks.c linux-nvidia-tegra-5.15.0/sound/usb/mixer_quirks.c --- linux-nvidia-tegra-5.15.0/sound/usb/mixer_quirks.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/sound/usb/quirks.c linux-nvidia-tegra-5.15.0/sound/usb/quirks.c --- linux-nvidia-tegra-5.15.0/sound/usb/quirks.c +++ linux-nvidia-tegra-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); } diff -u linux-nvidia-tegra-5.15.0/tools/iio/iio_generic_buffer.c linux-nvidia-tegra-5.15.0/tools/iio/iio_generic_buffer.c --- linux-nvidia-tegra-5.15.0/tools/iio/iio_generic_buffer.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/tools/include/uapi/linux/bpf.h linux-nvidia-tegra-5.15.0/tools/include/uapi/linux/bpf.h --- linux-nvidia-tegra-5.15.0/tools/include/uapi/linux/bpf.h +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/tools/objtool/check.c linux-nvidia-tegra-5.15.0/tools/objtool/check.c --- linux-nvidia-tegra-5.15.0/tools/objtool/check.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/tools/perf/util/bpf-event.c linux-nvidia-tegra-5.15.0/tools/perf/util/bpf-event.c --- linux-nvidia-tegra-5.15.0/tools/perf/util/bpf-event.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/tools/perf/util/env.c linux-nvidia-tegra-5.15.0/tools/perf/util/env.c --- linux-nvidia-tegra-5.15.0/tools/perf/util/env.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/tools/perf/util/env.h linux-nvidia-tegra-5.15.0/tools/perf/util/env.h --- linux-nvidia-tegra-5.15.0/tools/perf/util/env.h +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/tools/perf/util/genelf.c linux-nvidia-tegra-5.15.0/tools/perf/util/genelf.c --- linux-nvidia-tegra-5.15.0/tools/perf/util/genelf.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/tools/perf/util/genelf.h linux-nvidia-tegra-5.15.0/tools/perf/util/genelf.h --- linux-nvidia-tegra-5.15.0/tools/perf/util/genelf.h +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/tools/perf/util/header.c linux-nvidia-tegra-5.15.0/tools/perf/util/header.c --- linux-nvidia-tegra-5.15.0/tools/perf/util/header.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/tools/perf/util/hist.c linux-nvidia-tegra-5.15.0/tools/perf/util/hist.c --- linux-nvidia-tegra-5.15.0/tools/perf/util/hist.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/tools/perf/util/intel-pt.c linux-nvidia-tegra-5.15.0/tools/perf/util/intel-pt.c --- linux-nvidia-tegra-5.15.0/tools/perf/util/intel-pt.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/tools/perf/util/machine.c linux-nvidia-tegra-5.15.0/tools/perf/util/machine.c --- linux-nvidia-tegra-5.15.0/tools/perf/util/machine.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/tools/power/x86/turbostat/turbostat.c linux-nvidia-tegra-5.15.0/tools/power/x86/turbostat/turbostat.c --- linux-nvidia-tegra-5.15.0/tools/power/x86/turbostat/turbostat.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/tools/testing/selftests/bpf/prog_tests/bpf_iter.c linux-nvidia-tegra-5.15.0/tools/testing/selftests/bpf/prog_tests/bpf_iter.c --- linux-nvidia-tegra-5.15.0/tools/testing/selftests/bpf/prog_tests/bpf_iter.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/tools/testing/selftests/net/pmtu.sh linux-nvidia-tegra-5.15.0/tools/testing/selftests/net/pmtu.sh --- linux-nvidia-tegra-5.15.0/tools/testing/selftests/net/pmtu.sh +++ linux-nvidia-tegra-5.15.0/tools/testing/selftests/net/pmtu.sh @@ -1880,7 +1880,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-nvidia-tegra-5.15.0/tools/testing/selftests/pidfd/pidfd_fdinfo_test.c linux-nvidia-tegra-5.15.0/tools/testing/selftests/pidfd/pidfd_fdinfo_test.c --- linux-nvidia-tegra-5.15.0/tools/testing/selftests/pidfd/pidfd_fdinfo_test.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/tools/testing/selftests/pidfd/pidfd_test.c linux-nvidia-tegra-5.15.0/tools/testing/selftests/pidfd/pidfd_test.c --- linux-nvidia-tegra-5.15.0/tools/testing/selftests/pidfd/pidfd_test.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/tools/testing/selftests/resctrl/Makefile linux-nvidia-tegra-5.15.0/tools/testing/selftests/resctrl/Makefile --- linux-nvidia-tegra-5.15.0/tools/testing/selftests/resctrl/Makefile +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/tools/testing/selftests/resctrl/cmt_test.c linux-nvidia-tegra-5.15.0/tools/testing/selftests/resctrl/cmt_test.c --- linux-nvidia-tegra-5.15.0/tools/testing/selftests/resctrl/cmt_test.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/tools/testing/selftests/resctrl/mba_test.c linux-nvidia-tegra-5.15.0/tools/testing/selftests/resctrl/mba_test.c --- linux-nvidia-tegra-5.15.0/tools/testing/selftests/resctrl/mba_test.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/tools/testing/selftests/resctrl/mbm_test.c linux-nvidia-tegra-5.15.0/tools/testing/selftests/resctrl/mbm_test.c --- linux-nvidia-tegra-5.15.0/tools/testing/selftests/resctrl/mbm_test.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/tools/testing/selftests/resctrl/resctrl.h linux-nvidia-tegra-5.15.0/tools/testing/selftests/resctrl/resctrl.h --- linux-nvidia-tegra-5.15.0/tools/testing/selftests/resctrl/resctrl.h +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/tools/testing/selftests/resctrl/resctrl_tests.c linux-nvidia-tegra-5.15.0/tools/testing/selftests/resctrl/resctrl_tests.c --- linux-nvidia-tegra-5.15.0/tools/testing/selftests/resctrl/resctrl_tests.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/tools/testing/selftests/sgx/Makefile linux-nvidia-tegra-5.15.0/tools/testing/selftests/sgx/Makefile --- linux-nvidia-tegra-5.15.0/tools/testing/selftests/sgx/Makefile +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/tools/testing/selftests/vm/charge_reserved_hugetlb.sh linux-nvidia-tegra-5.15.0/tools/testing/selftests/vm/charge_reserved_hugetlb.sh --- linux-nvidia-tegra-5.15.0/tools/testing/selftests/vm/charge_reserved_hugetlb.sh +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/tools/testing/selftests/vm/hugetlb_reparenting_test.sh linux-nvidia-tegra-5.15.0/tools/testing/selftests/vm/hugetlb_reparenting_test.sh --- linux-nvidia-tegra-5.15.0/tools/testing/selftests/vm/hugetlb_reparenting_test.sh +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/update-dkms-versions +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0/update-version-dkms +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/Documentation/ABI/testing/sysfs-bus-optee-devices +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/Documentation/devicetree/bindings/nvmem/mxs-ocotp.yaml +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/Documentation/driver-api/hte/tegra-hte.rst +++ linux-nvidia-tegra-5.15.0/Documentation/driver-api/hte/tegra-hte.rst @@ -0,0 +1,47 @@ +.. SPDX-License-Identifier: GPL-2.0+ + +HTE Kernel provider driver +========================== + +Description +----------- +The Nvidia tegra HTE provider also known as GTE (Generic Timestamping Engine) +driver implements two GTE instances: 1) GPIO GTE and 2) LIC +(Legacy Interrupt Controller) IRQ GTE. Both GTE instances get the timestamp +from the system counter TSC which has 31.25MHz clock rate, and the driver +converts clock tick rate to nanoseconds before storing it as timestamp value. + +GPIO GTE +-------- + +This GTE instance timestamps GPIO in real time. For that to happen GPIO +needs to be configured as input. Only the always on (AON) GPIO controller +instance supports timestamping GPIOs in real time as it is tightly coupled with +the GPIO GTE. To support this, GPIOLIB adds two optional APIs as mentioned +below. The GPIO GTE code supports both kernel and userspace consumers. The +kernel space consumers can directly talk to HTE subsystem while userspace +consumers timestamp requests go through GPIOLIB CDEV framework to HTE +subsystem. The hte devicetree binding described at +``Documentation/devicetree/bindings/timestamp`` provides an example of how a +consumer can request an GPIO line. + +See gpiod_enable_hw_timestamp_ns() and gpiod_disable_hw_timestamp_ns(). + +For userspace consumers, GPIO_V2_LINE_FLAG_EVENT_CLOCK_HTE flag must be +specified during IOCTL calls. Refer to ``tools/gpio/gpio-event-mon.c``, which +returns the timestamp in nanoseconds. + +LIC (Legacy Interrupt Controller) IRQ GTE +----------------------------------------- + +This GTE instance timestamps LIC IRQ lines in real time. The hte devicetree +binding described at ``Documentation/devicetree/bindings/timestamp`` +provides an example of how a consumer can request an IRQ line. Since it is a +one-to-one mapping with IRQ GTE provider, consumers can simply specify the IRQ +number that they are interested in. There is no userspace consumer support for +this GTE instance in the HTE framework. + +The provider source code of both IRQ and GPIO GTE instances is located at +``drivers/hte/hte-tegra194.c``. The test driver +``drivers/hte/hte-tegra194-test.c`` demonstrates HTE API usage for both IRQ +and GPIO GTE. only in patch2: unchanged: --- linux-nvidia-tegra-5.15.0.orig/Documentation/process/howto.rst +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/Documentation/translations/it_IT/process/howto.rst +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/Documentation/translations/ja_JP/howto.rst +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/Documentation/translations/ko_KR/howto.rst +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/Documentation/translations/zh_CN/process/howto.rst +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/Documentation/translations/zh_TW/process/howto.rst +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/arch/arc/kernel/signal.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/arch/arc/mm/init.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/arch/arm/boot/dts/imx28-xea.dts +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/arch/arm/boot/dts/imx6ul-pico.dtsi +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/arch/arm/boot/dts/r8a7792-blanche.dts +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/arch/arm/include/asm/exception.h +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/arch/arm/lib/memset.S +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/arch/arm/mach-davinci/Kconfig +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/arch/arm/mach-omap2/id.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/arch/arm/mach-sunxi/mc_smp.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/arch/arm/xen/enlighten.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/arch/arm64/boot/dts/freescale/imx8qm-ss-img.dtsi +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/arch/arm64/boot/dts/marvell/cn9130-crb.dtsi +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/arch/arm64/boot/dts/marvell/cn9130-db.dtsi +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/arch/arm64/boot/dts/mediatek/mt7622-rfb1.dts +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/arch/arm64/boot/dts/mediatek/mt8173-evb.dts +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/arch/arm64/boot/dts/mediatek/mt8173.dtsi +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/arch/arm64/boot/dts/mediatek/mt8183-evb.dts +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/arch/arm64/boot/dts/mediatek/mt8183-kukui-jacuzzi.dtsi +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/arch/arm64/boot/dts/mediatek/mt8183-pumpkin.dts +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/arch/arm64/boot/dts/qcom/sdm845-mtp.dts +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/arch/arm64/boot/dts/qcom/sm8150-hdk.dts +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/arch/arm64/kvm/vgic/vgic-init.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/arch/arm64/kvm/vgic/vgic-mmio-v3.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/arch/ia64/mm/init.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/arch/m68k/mm/mcfmmu.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/arch/m68k/mm/motorola.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/arch/mips/alchemy/devboards/db1550.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/arch/mips/boot/dts/loongson/loongson64-2k1000.dtsi +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/arch/mips/boot/dts/loongson/ls7a-pch.dtsi +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/arch/mips/include/asm/dmi.h +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/arch/mips/include/asm/mach-loongson64/boot_param.h +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/arch/mips/kvm/mmu.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/arch/mips/loongson64/env.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/arch/mips/loongson64/init.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/arch/mips/sgi-ip27/ip27-memory.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/arch/parisc/include/uapi/asm/errno.h +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/arch/parisc/include/uapi/asm/pdc.h +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/arch/powerpc/boot/zImage.lds.S +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/arch/powerpc/include/asm/book3s/32/kup.h +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/arch/powerpc/include/asm/kup.h +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/arch/powerpc/include/asm/nohash/32/pte-40x.h +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/arch/powerpc/kernel/fpu.S +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/arch/powerpc/kernel/head_64.S +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/arch/powerpc/kernel/head_book3s_32.S +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/arch/powerpc/kernel/head_fsl_booke.S +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/arch/powerpc/kernel/vector.S +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/arch/powerpc/mm/book3s32/kuep.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/arch/powerpc/platforms/44x/Kconfig +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/arch/powerpc/platforms/powernv/opal-irqchip.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/arch/powerpc/platforms/powernv/opal-powercap.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/arch/powerpc/platforms/powernv/opal-xscom.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/arch/powerpc/platforms/pseries/hotplug-memory.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/arch/powerpc/sysdev/xive/native.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/arch/riscv/include/asm/sections.h +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/arch/riscv/kernel/traps_misaligned.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/arch/riscv/kernel/vmlinux-xip.lds.S +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/arch/riscv/kernel/vmlinux.lds.S +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/arch/s390/include/asm/fpu/api.h +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/arch/s390/mm/page-states.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/arch/s390/pci/pci_dma.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/arch/sparc/lib/checksum_32.S +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/arch/x86/crypto/sha1_ssse3_glue.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/arch/x86/crypto/sha256_ssse3_glue.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/arch/x86/events/Makefile +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/arch/x86/events/intel/uncore_discovery.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/arch/x86/events/utils.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/arch/x86/include/asm/i8259.h +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/arch/x86/include/asm/numa.h +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/arch/x86/include/asm/page.h +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/arch/x86/include/asm/setup.h +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/arch/x86/kernel/kvmclock.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/arch/x86/lib/copy_mc.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/arch/x86/lib/misc.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/arch/x86/mm/maccess.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/crypto/af_alg.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/crypto/scompress.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/debian.master/dkms-versions +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/debian.nvidia-tegra/dkms-versions +++ linux-nvidia-tegra-5.15.0/debian.nvidia-tegra/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-nvidia-tegra-5.15.0.orig/debian.realtime/dkms-versions +++ linux-nvidia-tegra-5.15.0/debian.realtime/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-nvidia-tegra-5.15.0.orig/drivers/acpi/acpi_lpit.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/acpi/device_sysfs.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/acpi/irq.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/ata/pata_isapnp.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/atm/iphase.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/atm/solos-pci.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/base/devcoredump.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/base/driver.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/base/regmap/regmap-debugfs.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/clk/clk-asm9260.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/clk/clk-fixed-rate.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/clk/clk-npcm7xx.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/clk/clk-scmi.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/clk/imx/Kconfig +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/clk/imx/clk-imx8mq.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/clk/mediatek/clk-mt2701.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/clk/mediatek/clk-mt6765.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/clk/mediatek/clk-mt6779.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/clk/mediatek/clk-mt6797.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/clk/mediatek/clk-mt7629-eth.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/clk/mediatek/clk-mt7629.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/clk/qcom/gcc-sm8150.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/clk/qcom/gpucc-sm8150.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/clk/qcom/mmcc-msm8998.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/clk/qcom/videocc-sm8150.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/clk/rockchip/clk-rk3128.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/clk/socfpga/stratix10-clk.h +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/clk/ti/apll.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/clk/ti/autoidle.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/clk/ti/clock.h +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/clk/ti/clockdomain.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/clk/ti/composite.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/clk/ti/divider.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/clk/ti/dpll.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/clk/ti/fapll.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/clk/ti/fixed-factor.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/clk/ti/gate.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/clk/ti/interface.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/clk/ti/mux.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/clk/zynqmp/clk-mux-zynqmp.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/clk/zynqmp/divider.c +++ linux-nvidia-tegra-5.15.0/drivers/clk/zynqmp/divider.c @@ -110,49 +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, - int *bestdiv) -{ - int div1; - int div2; - long error = LONG_MAX; - unsigned long div1_prate; - struct clk_hw *div1_parent_hw; - struct clk_hw *div2_parent_hw = clk_hw_get_parent(hw); - struct zynqmp_clk_divider *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 @@ -171,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) { @@ -190,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; } only in patch2: unchanged: --- linux-nvidia-tegra-5.15.0.orig/drivers/clocksource/timer-atmel-tcb.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/clocksource/timer-imx-gpt.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/cpufreq/cpufreq_stats.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/cpufreq/imx-cpufreq-dt.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/cpufreq/imx6q-cpufreq.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/cpufreq/scmi-cpufreq.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/cpufreq/tegra20-cpufreq.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/crypto/ccp/ccp-ops.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/crypto/qat/qat_common/adf_transport_debug.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/crypto/sa2ul.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/crypto/virtio/virtio_crypto_algs.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/crypto/virtio/virtio_crypto_common.h +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/crypto/virtio/virtio_crypto_core.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/cxl/core/memdev.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/devfreq/event/rockchip-dfi.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/dma/idxd/Makefile +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/dma/ti/edma.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/edac/thunderx_edac.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/firewire/core-device.c +++ linux-nvidia-tegra-5.15.0/drivers/firewire/core-device.c @@ -719,14 +719,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-nvidia-tegra-5.15.0.orig/drivers/firewire/ohci.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/firmware/ti_sci.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/gpio/gpio-timberdale.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/gpu/drm/amd/amdgpu/amdgpu_ras.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/gpu/drm/amd/display/dc/core/dc_stream.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/gpu/drm/amd/include/pptable.h +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/gpu/drm/amd/pm/powerplay/hwmgr/pptable_v1_0.h +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/gpu/drm/arm/display/komeda/komeda_drv.c +++ linux-nvidia-tegra-5.15.0/drivers/gpu/drm/arm/display/komeda/komeda_drv.c @@ -111,6 +111,14 @@ } } +static void komeda_platform_shutdown(struct platform_device *pdev) +{ + struct device *dev = &pdev->dev; + struct komeda_drv *mdrv = dev_get_drvdata(dev); + + komeda_kms_shutdown(mdrv->kms); +} + static int komeda_platform_probe(struct platform_device *pdev) { struct device *dev = &pdev->dev; @@ -191,6 +199,7 @@ static struct platform_driver komeda_platform_driver = { .probe = komeda_platform_probe, .remove = komeda_platform_remove, + .shutdown = komeda_platform_shutdown, .driver = { .name = "komeda", .of_match_table = komeda_of_match, only in patch2: unchanged: --- linux-nvidia-tegra-5.15.0.orig/drivers/gpu/drm/arm/display/komeda/komeda_pipeline_state.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/gpu/drm/arm/hdlcd_drv.c +++ linux-nvidia-tegra-5.15.0/drivers/gpu/drm/arm/hdlcd_drv.c @@ -400,6 +400,11 @@ return 0; } +static void hdlcd_shutdown(struct platform_device *pdev) +{ + drm_atomic_helper_shutdown(platform_get_drvdata(pdev)); +} + static const struct of_device_id hdlcd_of_match[] = { { .compatible = "arm,hdlcd" }, {}, @@ -427,6 +432,7 @@ static struct platform_driver hdlcd_platform_driver = { .probe = hdlcd_probe, .remove = hdlcd_remove, + .shutdown = hdlcd_shutdown, .driver = { .name = "hdlcd", .pm = &hdlcd_pm_ops, only in patch2: unchanged: --- linux-nvidia-tegra-5.15.0.orig/drivers/gpu/drm/arm/malidp_drv.c +++ linux-nvidia-tegra-5.15.0/drivers/gpu/drm/arm/malidp_drv.c @@ -959,6 +959,11 @@ return 0; } +static void malidp_platform_shutdown(struct platform_device *pdev) +{ + drm_atomic_helper_shutdown(platform_get_drvdata(pdev)); +} + static int __maybe_unused malidp_pm_suspend(struct device *dev) { struct drm_device *drm = dev_get_drvdata(dev); @@ -1000,6 +1005,7 @@ static struct platform_driver malidp_platform_driver = { .probe = malidp_platform_probe, .remove = malidp_platform_remove, + .shutdown = malidp_platform_shutdown, .driver = { .name = "mali-dp", .pm = &malidp_pm_ops, only in patch2: unchanged: --- linux-nvidia-tegra-5.15.0.orig/drivers/gpu/drm/ast/ast_drv.c +++ linux-nvidia-tegra-5.15.0/drivers/gpu/drm/ast/ast_drv.c @@ -139,6 +139,14 @@ drm_atomic_helper_shutdown(dev); } +static void ast_pci_shutdown(struct pci_dev *pdev) +{ + struct drm_device *dev = pci_get_drvdata(pdev); + + drm_dev_unregister(dev); + drm_atomic_helper_shutdown(dev); +} + static int ast_drm_freeze(struct drm_device *dev) { int error; @@ -228,6 +236,7 @@ .id_table = ast_pciidlist, .probe = ast_pci_probe, .remove = ast_pci_remove, + .shutdown = ast_pci_shutdown, .driver.pm = &ast_pm_ops, }; only in patch2: unchanged: --- linux-nvidia-tegra-5.15.0.orig/drivers/gpu/drm/atmel-hlcdc/atmel_hlcdc_dc.c +++ linux-nvidia-tegra-5.15.0/drivers/gpu/drm/atmel-hlcdc/atmel_hlcdc_dc.c @@ -783,6 +783,11 @@ return 0; } +static void atmel_hlcdc_dc_drm_shutdown(struct platform_device *pdev) +{ + drm_atomic_helper_shutdown(platform_get_drvdata(pdev)); +} + #ifdef CONFIG_PM_SLEEP static int atmel_hlcdc_dc_drm_suspend(struct device *dev) { @@ -827,6 +832,7 @@ static struct platform_driver atmel_hlcdc_dc_platform_driver = { .probe = atmel_hlcdc_dc_drm_probe, .remove = atmel_hlcdc_dc_drm_remove, + .shutdown = atmel_hlcdc_dc_drm_shutdown, .driver = { .name = "atmel-hlcdc-display-controller", .pm = &atmel_hlcdc_dc_drm_pm_ops, only in patch2: unchanged: --- linux-nvidia-tegra-5.15.0.orig/drivers/gpu/drm/bridge/cadence/cdns-mhdp8546-hdcp.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/gpu/drm/bridge/ti-tpd12s015.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/gpu/drm/drm_crtc.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/gpu/drm/exynos/exynos_drm_dma.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/gpu/drm/exynos/exynos_hdmi.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/gpu/drm/fsl-dcu/fsl_dcu_drm_drv.c +++ linux-nvidia-tegra-5.15.0/drivers/gpu/drm/fsl-dcu/fsl_dcu_drm_drv.c @@ -358,9 +358,17 @@ return 0; } +static void fsl_dcu_drm_shutdown(struct platform_device *pdev) +{ + struct fsl_dcu_drm_device *fsl_dev = platform_get_drvdata(pdev); + + drm_atomic_helper_shutdown(fsl_dev->drm); +} + static struct platform_driver fsl_dcu_drm_platform_driver = { .probe = fsl_dcu_drm_probe, .remove = fsl_dcu_drm_remove, + .shutdown = fsl_dcu_drm_shutdown, .driver = { .name = "fsl-dcu", .pm = &fsl_dcu_drm_pm_ops, only in patch2: unchanged: --- linux-nvidia-tegra-5.15.0.orig/drivers/gpu/drm/hisilicon/hibmc/hibmc_drm_drv.c +++ linux-nvidia-tegra-5.15.0/drivers/gpu/drm/hisilicon/hibmc/hibmc_drm_drv.c @@ -366,6 +366,11 @@ hibmc_unload(dev); } +static void hibmc_pci_shutdown(struct pci_dev *pdev) +{ + drm_atomic_helper_shutdown(pci_get_drvdata(pdev)); +} + static const struct pci_device_id hibmc_pci_table[] = { { PCI_VDEVICE(HUAWEI, 0x1711) }, {0,} @@ -376,6 +381,7 @@ .id_table = hibmc_pci_table, .probe = hibmc_pci_probe, .remove = hibmc_pci_remove, + .shutdown = hibmc_pci_shutdown, .driver.pm = &hibmc_pm_ops, }; only in patch2: unchanged: --- linux-nvidia-tegra-5.15.0.orig/drivers/gpu/drm/i915/display/intel_atomic.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/gpu/drm/i915/display/intel_atomic.h +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/gpu/drm/i915/display/intel_crt.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/gpu/drm/i915/display/intel_dvo.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/gpu/drm/i915/display/intel_tv.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/gpu/drm/i915/display/skl_scaler.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/gpu/drm/i915/display/skl_scaler.h +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/gpu/drm/i915/i915_pmu.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/gpu/drm/mcde/mcde_drv.c +++ linux-nvidia-tegra-5.15.0/drivers/gpu/drm/mcde/mcde_drv.c @@ -469,6 +469,14 @@ return 0; } +static void mcde_shutdown(struct platform_device *pdev) +{ + struct drm_device *drm = platform_get_drvdata(pdev); + + if (drm->registered) + drm_atomic_helper_shutdown(drm); +} + static const struct of_device_id mcde_of_match[] = { { .compatible = "ste,mcde", @@ -483,6 +491,7 @@ }, .probe = mcde_probe, .remove = mcde_remove, + .shutdown = mcde_shutdown, }; static struct platform_driver *const component_drivers[] = { only in patch2: unchanged: --- linux-nvidia-tegra-5.15.0.orig/drivers/gpu/drm/mediatek/mtk_drm_plane.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/gpu/drm/msm/disp/mdp4/mdp4_crtc.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/gpu/drm/nouveau/nv04_fence.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/gpu/drm/nouveau/nvkm/subdev/mmu/vmmtu102.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/gpu/drm/omapdrm/omap_drv.c +++ linux-nvidia-tegra-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 @@ -686,6 +685,13 @@ return 0; } +static void pdev_shutdown(struct platform_device *pdev) +{ + struct omap_drm_private *priv = platform_get_drvdata(pdev); + + drm_atomic_helper_shutdown(priv->ddev); +} + #ifdef CONFIG_PM_SLEEP static int omap_drm_suspend(struct device *dev) { @@ -715,6 +721,7 @@ }, .probe = pdev_probe, .remove = pdev_remove, + .shutdown = pdev_shutdown, }; static struct platform_driver * const drivers[] = { only in patch2: unchanged: --- linux-nvidia-tegra-5.15.0.orig/drivers/gpu/drm/panel/panel-arm-versatile.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/gpu/drm/panel/panel-boe-tv101wum-nl6.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/gpu/drm/panel/panel-elida-kd35t133.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/gpu/drm/panel/panel-sitronix-st7703.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/gpu/drm/panel/panel-tpo-tpg110.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/gpu/drm/qxl/qxl_drv.c +++ linux-nvidia-tegra-5.15.0/drivers/gpu/drm/qxl/qxl_drv.c @@ -162,6 +162,12 @@ vga_put(pdev, VGA_RSRC_LEGACY_IO); } +static void +qxl_pci_shutdown(struct pci_dev *pdev) +{ + drm_atomic_helper_shutdown(pci_get_drvdata(pdev)); +} + DEFINE_DRM_GEM_FOPS(qxl_fops); static int qxl_drm_freeze(struct drm_device *dev) @@ -267,6 +273,7 @@ .id_table = pciidlist, .probe = qxl_pci_probe, .remove = qxl_pci_remove, + .shutdown = qxl_pci_shutdown, .driver.pm = &qxl_pm_ops, }; only in patch2: unchanged: --- linux-nvidia-tegra-5.15.0.orig/drivers/gpu/drm/radeon/evergreen.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/gpu/drm/radeon/r100.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/gpu/drm/radeon/r600_cs.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/gpu/drm/radeon/radeon_display.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/gpu/drm/radeon/radeon_vm.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/gpu/drm/radeon/sumo_dpm.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/gpu/drm/radeon/trinity_dpm.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/gpu/drm/sti/sti_drv.c +++ linux-nvidia-tegra-5.15.0/drivers/gpu/drm/sti/sti_drv.c @@ -178,6 +178,7 @@ drm_atomic_helper_shutdown(ddev); drm_mode_config_cleanup(ddev); component_unbind_all(ddev->dev, ddev); + dev_set_drvdata(ddev->dev, NULL); kfree(private); ddev->dev_private = NULL; } @@ -259,6 +260,11 @@ return 0; } +static void sti_platform_shutdown(struct platform_device *pdev) +{ + drm_atomic_helper_shutdown(platform_get_drvdata(pdev)); +} + static const struct of_device_id sti_dt_ids[] = { { .compatible = "st,sti-display-subsystem", }, { /* end node */ }, @@ -268,6 +274,7 @@ static struct platform_driver sti_platform_driver = { .probe = sti_platform_probe, .remove = sti_platform_remove, + .shutdown = sti_platform_shutdown, .driver = { .name = DRIVER_NAME, .of_match_table = sti_dt_ids, only in patch2: unchanged: --- linux-nvidia-tegra-5.15.0.orig/drivers/gpu/drm/tidss/tidss_kms.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/gpu/drm/tilcdc/tilcdc_drv.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/gpu/drm/ttm/ttm_device.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/gpu/drm/vmwgfx/vmwgfx_surface.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/hid/hid-glorious.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/hid/hid-lenovo.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/hwmon/acpi_power_meter.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/hwmon/axi-fan-control.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/hwmon/nzxt-kraken2.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/i2c/busses/i2c-pxa.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/i2c/busses/i2c-s3c2410.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/i2c/busses/i2c-sun6i-p2wi.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/i2c/i2c-core.h +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/i2c/i2c-mux.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/i2c/muxes/i2c-mux-pinctrl.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/i3c/master/i3c-master-cdns.c +++ linux-nvidia-tegra-5.15.0/drivers/i3c/master/i3c-master-cdns.c @@ -192,7 +192,7 @@ #define SLV_STATUS1_HJ_DIS BIT(18) #define SLV_STATUS1_MR_DIS BIT(17) #define SLV_STATUS1_PROT_ERR BIT(16) -#define SLV_STATUS1_DA(x) (((s) & GENMASK(15, 9)) >> 9) +#define SLV_STATUS1_DA(s) (((s) & GENMASK(15, 9)) >> 9) #define SLV_STATUS1_HAS_DA BIT(8) #define SLV_STATUS1_DDR_RX_FULL BIT(7) #define SLV_STATUS1_DDR_TX_FULL BIT(6) @@ -1624,13 +1624,13 @@ /* 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-nvidia-tegra-5.15.0.orig/drivers/i3c/master/mipi-i3c-hci/dma.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/iio/adc/ad7091r-base.c +++ linux-nvidia-tegra-5.15.0/drivers/iio/adc/ad7091r-base.c @@ -174,8 +174,8 @@ 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); @@ -234,7 +234,7 @@ if (irq) { 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; } only in patch2: unchanged: --- linux-nvidia-tegra-5.15.0.orig/drivers/iio/adc/ad9467.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/iio/adc/exynos_adc.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/iio/adc/ti_am335x_adc.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/iio/adc/xilinx-xadc-core.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/iio/adc/xilinx-xadc.h +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/iio/buffer/industrialio-triggered-buffer.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/iio/common/ms_sensors/ms_sensors_i2c.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/iio/imu/inv_mpu6050/inv_mpu_core.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/infiniband/core/sa_query.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/infiniband/hw/hfi1/efivar.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/infiniband/hw/hfi1/pcie.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/infiniband/hw/hns/hns_roce_pd.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/infiniband/hw/mthca/mthca_cmd.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/infiniband/hw/mthca/mthca_main.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/infiniband/ulp/iser/iscsi_iser.h +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/infiniband/ulp/iser/iser_initiator.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/infiniband/ulp/iser/iser_memory.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/infiniband/ulp/iser/iser_verbs.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/input/keyboard/atkbd.c +++ linux-nvidia-tegra-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. */ @@ -764,6 +802,7 @@ { struct ps2dev *ps2dev = &atkbd->ps2dev; unsigned char param[2]; + bool skip_getid; /* * Some systems, where the bit-twiddling when testing the io-lines of the @@ -785,17 +824,18 @@ */ param[0] = param[1] = 0xa5; /* initialize with invalid values */ - if (ps2_command(ps2dev, param, ATKBD_CMD_GETID)) { + skip_getid = atkbd_skip_getid(atkbd); + if (skip_getid || 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 was skipped or 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)) return -1; - atkbd->id = 0xabba; + atkbd->id = skip_getid ? 0xab83 : 0xabba; return 0; } only in patch2: unchanged: --- linux-nvidia-tegra-5.15.0.orig/drivers/input/keyboard/ipaq-micro-keys.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/input/rmi4/rmi_bus.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/input/rmi4/rmi_smbus.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/input/touchscreen/cyttsp4_core.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/irqchip/irq-riscv-intc.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/irqchip/irq-stm32-exti.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/leds/leds-turris-omnia.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/leds/trigger/ledtrig-cpu.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/mcb/mcb-lpc.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/md/bcache/bcache.h +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/md/bcache/sysfs.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/md/dm-delay.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/md/dm-verity-fec.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/md/dm-verity.h +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/media/cec/platform/Makefile +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/media/i2c/ccs/ccs-quirk.h +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/media/pci/cobalt/cobalt-driver.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/media/platform/cadence/cdns-csi2rx.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/media/platform/qcom/camss/camss-csid.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/media/platform/qcom/camss/camss-csid.h +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/media/platform/qcom/camss/camss-vfe.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/media/platform/qcom/camss/camss.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/media/platform/qcom/venus/hfi_msgs.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/media/platform/qcom/venus/hfi_parser.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/media/platform/s3c-camif/camif-capture.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/media/rc/ir-sharp-decoder.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/media/rc/lirc_dev.c +++ linux-nvidia-tegra-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) { only in patch2: unchanged: --- linux-nvidia-tegra-5.15.0.orig/drivers/media/test-drivers/vidtv/vidtv_mux.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/media/test-drivers/vidtv/vidtv_psi.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/media/test-drivers/vivid/vivid-rds-gen.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/media/usb/cx231xx/cx231xx-core.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/media/usb/gspca/cpia1.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/media/usb/pvrusb2/pvrusb2-context.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/mfd/arizona-spi.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/mfd/intel-lpss.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/mfd/syscon.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/misc/mei/client.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/misc/ti-st/st_core.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/mmc/core/regulator.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/mmc/host/cqhci-core.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/mtd/chips/cfi_cmdset_0001.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/mtd/maps/physmap-core.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/mtd/mtd_blkdevs.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/mtd/nand/raw/fsl_ifc_nand.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/mtd/nand/spi/micron.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/net/arcnet/arcdevice.h +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/net/can/dev/dev.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/net/can/dev/skb.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/net/dsa/lan9303_mdio.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/net/ethernet/actions/owl-emac.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/net/ethernet/adaptec/starfire.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/net/ethernet/alteon/acenic.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/net/ethernet/amazon/ena/ena_eth_com.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/net/ethernet/amd/xgbe/xgbe-ethtool.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/net/ethernet/apm/xgene-v2/mac.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/net/ethernet/apm/xgene/xgene_enet_hw.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/net/ethernet/apm/xgene/xgene_enet_sgmac.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/net/ethernet/apm/xgene/xgene_enet_xgmac.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/net/ethernet/aquantia/atlantic/hw_atl/hw_atl_a0.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/net/ethernet/aquantia/atlantic/hw_atl/hw_atl_b0.h +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/net/ethernet/atheros/atl1c/atl1c.h +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/net/ethernet/broadcom/b44.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/net/ethernet/broadcom/bnx2x/bnx2x_sriov.h +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/net/ethernet/broadcom/bnx2x/bnx2x_vfpf.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/net/ethernet/broadcom/bnxt/bnxt_sriov.h +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/net/ethernet/broadcom/tg3.h +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/net/ethernet/calxeda/xgmac.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/net/ethernet/chelsio/cxgb/gmac.h +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/net/ethernet/chelsio/cxgb/pm3393.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/net/ethernet/chelsio/cxgb/vsc7326.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/net/ethernet/chelsio/cxgb3/common.h +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/net/ethernet/chelsio/cxgb3/xgmac.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/net/ethernet/cisco/enic/enic_pp.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/net/ethernet/cortina/gemini.h +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/net/ethernet/dlink/dl2k.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/net/ethernet/freescale/dpaa2/dpaa2-eth.h +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/net/ethernet/freescale/fman/fman_dtsec.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/net/ethernet/freescale/fman/fman_dtsec.h +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/net/ethernet/freescale/fman/fman_memac.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/net/ethernet/freescale/fman/fman_memac.h +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/net/ethernet/freescale/fman/fman_tgec.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/net/ethernet/freescale/fman/fman_tgec.h +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/net/ethernet/freescale/fman/mac.h +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/net/ethernet/hisilicon/hns/hnae.h +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/net/ethernet/hisilicon/hns/hns_ae_adapt.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/net/ethernet/hisilicon/hns/hns_dsaf_gmac.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/net/ethernet/hisilicon/hns/hns_dsaf_mac.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/net/ethernet/hisilicon/hns/hns_dsaf_mac.h +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/net/ethernet/hisilicon/hns/hns_dsaf_xgmac.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/net/ethernet/hisilicon/hns3/hclge_mbx.h +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/net/ethernet/hisilicon/hns3/hns3pf/hclge_trace.h +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/net/ethernet/hisilicon/hns3/hns3vf/hclgevf_trace.h +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/net/ethernet/i825xx/sun3_82586.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/net/ethernet/intel/ice/ice_adminq_cmd.h +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/net/ethernet/intel/ice/ice_lib.h +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/net/ethernet/intel/ice/ice_type.h +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/net/ethernet/intel/ixgb/ixgb_hw.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/net/ethernet/intel/ixgb/ixgb_hw.h +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/net/ethernet/marvell/octeontx2/af/rvu_devlink.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/net/ethernet/marvell/octeontx2/af/rvu_reg.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/net/ethernet/marvell/octeontx2/nic/otx2_ethtool.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/net/ethernet/marvell/sky2.h +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/net/ethernet/mellanox/mlx5/core/en/fs_tt_redirect.c +++ linux-nvidia-tegra-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; } only in patch2: unchanged: --- linux-nvidia-tegra-5.15.0.orig/drivers/net/ethernet/mellanox/mlx5/core/en/mod_hdr.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/net/ethernet/mellanox/mlx5/core/en/mod_hdr.h +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/net/ethernet/mellanox/mlx5/core/en/tc/sample.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/net/ethernet/mellanox/mlx5/core/en_fs.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/net/ethernet/mellanox/mlx5/core/esw/indir_table.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/net/ethernet/mellanox/mlx5/core/vport.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/net/ethernet/mellanox/mlxbf_gige/Makefile +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/net/ethernet/mellanox/mlxsw/spectrum_acl_atcam.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/net/ethernet/mellanox/mlxsw/spectrum_acl_bloom_filter.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/net/ethernet/mellanox/mlxsw/spectrum_acl_erp.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/net/ethernet/mellanox/mlxsw/spectrum_acl_tcam.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/net/ethernet/mellanox/mlxsw/spectrum_cnt.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/net/ethernet/mellanox/mlxsw/spectrum_switchdev.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/net/ethernet/micrel/ks8842.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/net/ethernet/micrel/ks8851.h +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/net/ethernet/micrel/ks8851_spi.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/net/ethernet/microsoft/Kconfig +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/net/ethernet/neterion/s2io.h +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/net/ethernet/netronome/nfp/flower/cmsg.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/net/ethernet/netronome/nfp/flower/main.h +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/net/ethernet/netronome/nfp/flower/metadata.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/net/ethernet/netronome/nfp/flower/offload.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/net/ethernet/netronome/nfp/flower/qos_conf.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/net/ethernet/qlogic/netxen/netxen_nic_main.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/net/ethernet/qlogic/qed/qed_cxt.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/net/ethernet/qlogic/qed/qed_ll2.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/net/ethernet/qlogic/qed/qed_mcp.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/net/ethernet/qlogic/qed/qed_rdma.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/net/ethernet/qlogic/qlcnic/qlcnic_io.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/net/ethernet/qualcomm/emac/emac-mac.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/net/ethernet/qualcomm/qca_debug.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/net/ethernet/qualcomm/rmnet/rmnet_config.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/net/ethernet/samsung/sxgbe/sxgbe_common.h +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/net/ethernet/samsung/sxgbe/sxgbe_core.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/net/ethernet/sfc/ef10_sriov.h +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/net/ethernet/sfc/siena_sriov.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/net/ethernet/sfc/siena_sriov.h +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/net/ethernet/sfc/tx_tso.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/net/ethernet/sis/sis900.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/net/ethernet/smsc/smsc9420.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/net/ethernet/stmicro/stmmac/Kconfig +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/net/ethernet/stmicro/stmmac/dwmac1000_core.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/net/ethernet/stmicro/stmmac/dwmac100_core.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/net/ethernet/stmicro/stmmac/dwmac5.h +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/net/ethernet/stmicro/stmmac/dwxgmac2.h +++ linux-nvidia-tegra-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) only in patch2: unchanged: --- linux-nvidia-tegra-5.15.0.orig/drivers/net/ethernet/stmicro/stmmac/dwxgmac2_core.c +++ linux-nvidia-tegra-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; @@ -1134,7 +1135,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 +1441,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-nvidia-tegra-5.15.0.orig/drivers/net/ethernet/stmicro/stmmac/hwif.h +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/net/ethernet/stmicro/stmmac/mmc_core.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/net/ethernet/stmicro/stmmac/stmmac_mdio.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/net/ethernet/sun/sunbmac.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/net/ethernet/sun/sunqe.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/net/ethernet/synopsys/dwc-xlgmac-hw.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/net/ethernet/synopsys/dwc-xlgmac.h +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/net/ethernet/ti/tlan.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/net/ethernet/toshiba/ps3_gelic_wireless.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/net/ethernet/toshiba/spider_net.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/net/ethernet/toshiba/tc35815.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/net/hyperv/Kconfig +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/net/ppp/ppp_synctty.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/net/usb/ax88172a.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/net/usb/catc.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/net/wireless/ath/ath10k/debug.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/net/wireless/ath/ath9k/debug.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/net/wireless/intel/iwlwifi/dvm/tx.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/net/wireless/intel/iwlwifi/iwl-trans.h +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/net/wireless/marvell/libertas/Kconfig +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/net/wireless/marvell/mwifiex/ioctl.h +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/net/wireless/marvell/mwifiex/uap_cmd.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/net/wireless/mediatek/mt76/mt7603/beacon.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/net/wireless/mediatek/mt76/mt7603/core.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/net/wireless/mediatek/mt76/mt7603/regs.h +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/net/wireless/mediatek/mt76/mt76x02_mmio.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/net/wireless/realtek/rtlwifi/pci.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/net/wireless/realtek/rtlwifi/pci.h +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/net/wireless/realtek/rtlwifi/rtl8188ee/dm.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/net/wireless/realtek/rtlwifi/rtl8188ee/phy.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/net/wireless/realtek/rtlwifi/rtl8192c/dm_common.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/net/wireless/realtek/rtlwifi/rtl8192c/phy_common.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/net/wireless/realtek/rtlwifi/rtl8192c/phy_common.h +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/net/wireless/realtek/rtlwifi/rtl8192ce/phy.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/net/wireless/realtek/rtlwifi/rtl8192ce/phy.h +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/net/wireless/realtek/rtlwifi/rtl8192cu/phy.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/net/wireless/realtek/rtlwifi/rtl8192ee/phy.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/net/wireless/realtek/rtlwifi/rtl8192se/phy.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/net/wireless/realtek/rtlwifi/rtl8723ae/dm.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/net/wireless/realtek/rtlwifi/wifi.h +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/net/wireless/realtek/rtw88/debug.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/nvdimm/of_pmem.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/nvme/target/fabrics-cmd.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/nvme/target/trace.h +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/nvmem/imx-ocotp.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/of/unittest-data/tests-phandle.dtsi +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/parport/parport_serial.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/pci/controller/dwc/pci-exynos.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/pci/controller/dwc/pci-keystone.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/pcmcia/ds.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/perf/hisilicon/hisi_uncore_pa_pmu.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/perf/hisilicon/hisi_uncore_sllc_pmu.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/pinctrl/cirrus/Kconfig +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/platform/mellanox/mlxbf-bootctl.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/platform/surface/surface_platform_profile.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/platform/x86/asus-wmi.h +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/platform/x86/intel/telemetry/core.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/platform/x86/intel/vbtn.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/power/supply/bq256xx_charger.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/power/supply/cw2015_battery.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/ptp/ptp_chardev.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/ptp/ptp_private.h +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/pwm/pwm-brcmstb.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/pwm/pwm-jz4740.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/pwm/pwm-sti.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/pwm/pwm-stm32.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/reset/core.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/reset/hisilicon/hi6220_reset.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/rpmsg/rpmsg_internal.h +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/rpmsg/rpmsg_ns.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/rtc/rtc-pcf85363.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/s390/block/scm_blk.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/scsi/fnic/fnic_debugfs.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/scsi/hisi_sas/hisi_sas.h +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/scsi/hisi_sas/hisi_sas_v1_hw.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/scsi/libfc/fc_lport.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/spi/spi-npcm-fiu.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/spi/spi-sh-msiof.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/staging/media/sunxi/cedrus/cedrus_hw.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/tty/serial/8250/8250_early.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/tty/tty_jobctrl.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/tty/vcc.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/uio/uio.c +++ linux-nvidia-tegra-5.15.0/drivers/uio/uio.c @@ -464,13 +464,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; @@ -1062,9 +1062,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; } only in patch2: unchanged: --- linux-nvidia-tegra-5.15.0.orig/drivers/usb/chipidea/host.c +++ linux-nvidia-tegra-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[]; }; @@ -372,59 +371,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; @@ -441,7 +433,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; } @@ -449,7 +441,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) only in patch2: unchanged: --- linux-nvidia-tegra-5.15.0.orig/drivers/usb/dwc2/hcd_intr.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/usb/dwc3/ep0.c +++ linux-nvidia-tegra-5.15.0/drivers/usb/dwc3/ep0.c @@ -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; only in patch2: unchanged: --- linux-nvidia-tegra-5.15.0.orig/drivers/usb/host/xhci-mtk.h +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/usb/storage/unusual_cypress.h +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/video/fbdev/aty/atyfb_base.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/video/fbdev/core/fb_defio.c +++ linux-nvidia-tegra-5.15.0/drivers/video/fbdev/core/fb_defio.c @@ -78,11 +78,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; only in patch2: unchanged: --- linux-nvidia-tegra-5.15.0.orig/drivers/video/fbdev/fsl-diu-fb.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/virtio/virtio_balloon.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/watchdog/bcm2835_wdt.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/xen/xen-pciback/conf_space.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/drivers/xen/xen-pciback/conf_space_header.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/fs/9p/xattr.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/fs/afs/cell.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/fs/afs/cmservice.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/fs/afs/dynroot.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/fs/afs/proc.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/fs/afs/server.c +++ linux-nvidia-tegra-5.15.0/fs/afs/server.c @@ -228,7 +228,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 +352,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 +365,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 +381,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 +397,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 +441,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 +492,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 +558,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 +638,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-nvidia-tegra-5.15.0.orig/fs/afs/server_list.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/fs/afs/vl_list.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/fs/afs/vl_rotate.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/fs/afs/volume.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/fs/btrfs/ref-verify.c +++ linux-nvidia-tegra-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; } only in patch2: unchanged: --- linux-nvidia-tegra-5.15.0.orig/fs/cifs/cifs_spnego.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/fs/cifs/smb2misc.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/fs/cifs/smb2pdu.h +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/fs/debugfs/internal.h +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/fs/efivarfs/super.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/fs/ext4/acl.h +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/fs/ext4/mballoc.h +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/fs/fuse/dax.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/fs/jfs/jfs_dtree.c +++ linux-nvidia-tegra-5.15.0/fs/jfs/jfs_dtree.c @@ -1970,7 +1970,7 @@ do { f = &rp->slot[fsi]; fsi = f->next; - } while (fsi != -1); + } while (fsi >= 0); f->next = n; } only in patch2: unchanged: --- linux-nvidia-tegra-5.15.0.orig/fs/ksmbd/asn1.c +++ linux-nvidia-tegra-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,56 @@ 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); + conn->mechToken = kmemdup_nul(value, vlen, GFP_KERNEL); if (!conn->mechToken) return -ENOMEM; - memcpy(conn->mechToken, value, vlen); - conn->mechToken[vlen] = '\0'; 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-nvidia-tegra-5.15.0.orig/fs/ksmbd/ksmbd_work.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/fs/ksmbd/ksmbd_work.h +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/fs/ksmbd/mgmt/share_config.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/fs/ksmbd/mgmt/share_config.h +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/fs/ksmbd/misc.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/fs/ksmbd/misc.h +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/fs/ksmbd/unicode.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/fs/ksmbd/unicode.h +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/fs/ksmbd/vfs_cache.h +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/fs/nfs/blocklayout/blocklayout.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/fs/ntfs3/dir.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/fs/xfs/libxfs/xfs_dir2_leaf.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/fs/xfs/libxfs/xfs_log_recover.h +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/fs/xfs/libxfs/xfs_trans_resv.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/fs/xfs/xfs_attr_inactive.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/fs/xfs/xfs_error.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/fs/xfs/xfs_sysfs.h +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/include/asm-generic/qspinlock.h +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/include/crypto/if_alg.h +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/include/dt-bindings/clock/qcom,videocc-sm8150.h +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/include/linux/clk-provider.h +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/include/linux/device/driver.h +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/include/linux/dma-map-ops.h +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/include/linux/hrtimer.h +++ linux-nvidia-tegra-5.15.0/include/linux/hrtimer.h @@ -531,9 +531,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-nvidia-tegra-5.15.0.orig/include/linux/idr.h +++ linux-nvidia-tegra-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) /* only in patch2: unchanged: --- linux-nvidia-tegra-5.15.0.orig/include/linux/iio/adc/adi-axi-adc.h +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/include/linux/iio/afe/rescale.h +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/include/linux/iio/iio.h +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/include/linux/kallsyms.h +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/include/linux/key-type.h +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/include/linux/mfd/core.h +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/include/linux/module.h +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/include/linux/platform_data/x86/asus-wmi.h +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/include/linux/platform_data/x86/soc.h +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/include/linux/property.h +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/include/linux/qed/qed_rdma_if.h +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/include/linux/trace_recursion.h +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/include/linux/usb/r8152.h +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/include/net/bluetooth/hci_mon.h +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/include/net/dst_ops.h +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/include/net/genetlink.h +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/include/net/netfilter/nf_nat_redirect.h +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/include/sound/soc-card.h +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/include/trace/events/afs.h +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/include/trace/events/neigh.h +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/include/uapi/linux/gtp.h +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/kernel/audit_watch.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/kernel/bpf/lpm_trie.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/kernel/dma/coherent.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/kernel/irq/generic-chip.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/kernel/irq/matrix.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/kernel/kallsyms.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/kernel/locking/test-ww_mutex.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/kernel/rcu/tree.h +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/kernel/reboot.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/mm/percpu-internal.h +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/mm/readahead.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/net/8021q/vlan.h +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/net/8021q/vlan_core.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/net/8021q/vlan_netlink.c +++ linux-nvidia-tegra-5.15.0/net/8021q/vlan_netlink.c @@ -183,10 +183,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-nvidia-tegra-5.15.0.orig/net/bluetooth/hci_debugfs.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/net/bluetooth/smp.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/net/bridge/netfilter/nf_conntrack_bridge.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/net/bridge/netfilter/nft_meta_bridge.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/net/core/dst.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/net/core/pktgen.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/net/dns_resolver/dns_key.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/net/ethtool/features.c +++ linux-nvidia-tegra-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(); dev_put(dev); only in patch2: unchanged: --- linux-nvidia-tegra-5.15.0.orig/net/ife/ife.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/net/llc/llc_s_ac.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/net/llc/llc_station.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/net/mptcp/mptcp_diag.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/net/ncsi/internal.h +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/net/ncsi/ncsi-pkt.h +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/net/netfilter/nf_nat_redirect.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/net/netfilter/nft_connlimit.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/net/netfilter/nft_counter.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/net/netfilter/nft_fib.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/net/netfilter/nft_last.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/net/netfilter/nft_limit.c +++ linux-nvidia-tegra-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,102 @@ 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) { + bool invert = false; u64 unit, tokens; 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])); unit = be64_to_cpu(nla_get_be64(tb[NFTA_LIMIT_UNIT])); - limit->nsecs = unit * NSEC_PER_SEC; - if (limit->rate == 0 || limit->nsecs < unit) + priv->nsecs = unit * NSEC_PER_SEC; + if (priv->rate == 0 || priv->nsecs < unit) 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 (priv->rate + priv->burst < priv->rate) return -EOVERFLOW; if (pkts) { - tokens = div64_u64(limit->nsecs, limit->rate) * limit->burst; + tokens = div64_u64(priv->nsecs, priv->rate) * priv->burst; } else { /* 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); + tokens = div64_u64(priv->nsecs * (priv->rate + priv->burst), + priv->rate); } - limit->tokens = tokens; - limit->tokens_max = limit->tokens; - 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 +134,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 +169,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 +187,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 +200,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 +238,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 +249,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 +257,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 +317,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 +327,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 +342,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 +369,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 +380,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 +389,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-nvidia-tegra-5.15.0.orig/net/netfilter/nft_quota.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/net/netfilter/nft_xfrm.c +++ linux-nvidia-tegra-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; } only in patch2: unchanged: --- linux-nvidia-tegra-5.15.0.orig/net/netfilter/xt_REDIRECT.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/net/netfilter/xt_owner.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/net/netfilter/xt_recent.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/net/netlabel/netlabel_calipso.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/net/nfc/nci/spi.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/net/psample/psample.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/net/rfkill/rfkill-gpio.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/net/sched/em_text.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/net/sunrpc/rpcb_clnt.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/net/tipc/netlink.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/net/wireless/certs/wens.hex +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/scripts/Makefile.compiler +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/scripts/checkstack.pl +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/scripts/gcc-plugins/randomize_layout_plugin.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/scripts/kconfig/symbol.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/security/integrity/integrity.h +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/security/keys/gc.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/security/keys/internal.h +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/security/keys/key.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/security/keys/proc.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/sound/pci/oxygen/oxygen_mixer.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/sound/soc/codecs/cs35l33.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/sound/soc/codecs/cs35l34.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/sound/soc/codecs/cs43130.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/sound/soc/codecs/wcd938x-sdw.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/sound/soc/codecs/wm8974.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/sound/soc/fsl/fsl_rpmsg.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/sound/soc/fsl/mpc5200_dma.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/sound/soc/intel/common/soc-intel-quirks.h +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/sound/soc/intel/skylake/skl-sst-ipc.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/sound/soc/intel/skylake/skl-sst-utils.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/sound/soc/meson/g12a-toacodec.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/sound/soc/pxa/pxa-ssp.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/sound/soc/ti/ams-delta.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/sound/soc/ti/omap-mcbsp.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/sound/usb/mixer_scarlett_gen2.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/tools/arch/parisc/include/uapi/asm/errno.h +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/tools/include/uapi/linux/perf_event.h +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/tools/lib/api/io.h +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/tools/perf/util/bpf-event.h +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/tools/perf/util/branch.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/tools/testing/selftests/bpf/prog_tests/tailcalls.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/tools/testing/selftests/bpf/progs/bpf_iter_task_stack.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/tools/testing/selftests/drivers/net/mlxsw/qos_pfc.sh +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/tools/testing/selftests/drivers/net/mlxsw/spectrum-2/tc_flower.sh +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/tools/testing/selftests/efivarfs/create-read.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/tools/testing/selftests/ftrace/test.d/kprobe/kprobe_non_uniq_symbol.tc +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/tools/testing/selftests/net/fib_nexthop_multiprefix.sh +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/tools/testing/selftests/net/ipsec.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/tools/testing/selftests/powerpc/math/fpu_preempt.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/tools/testing/selftests/powerpc/math/vmx_preempt.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/tools/testing/selftests/sgx/sigstruct.c +++ linux-nvidia-tegra-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-nvidia-tegra-5.15.0.orig/tools/testing/selftests/vm/memfd_secret.c +++ linux-nvidia-tegra-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");